From 8fe1b7acea52252294e0368696680c2e33c195e2 Mon Sep 17 00:00:00 2001 From: Devin Cowan Date: Fri, 20 Jun 2025 13:15:14 -0400 Subject: [PATCH] fake commit for comments --- Dockerfile | 16 - Dockerfile-testing | 15 - api/cache.py | 86 - api/database.py | 105 - api/main.py | 57 - api/routers/access_control_changed.py | 59 - api/routers/minio.py | 163 - api/routers/service_accounts.py | 121 - docker-compose.yml | 63 - requirements.txt | 5 - .../hydroshare-staged-snapshot.sql | 33625 ---------------- .../from_discoverable/to_private.json | 12 - .../from_discoverable/to_private_sharing.json | 12 - .../from_discoverable/to_public.json | 12 - .../from_private/to_discoverable.json | 12 - .../from_private/to_private_sharing.json | 12 - .../from_private/to_public.json | 12 - .../from_private_link/to_discoverable.json | 12 - .../from_private_link/to_private.json | 12 - .../from_private_link/to_public.json | 12 - .../from_public/to_discoverable.json | 12 - .../from_public/to_private.json | 12 - .../from_public/to_private_sharing.json | 12 - .../user_access/to_edit.json | 15 - .../user_access/to_view.json | 15 - .../user1_delete_object.json | 75 - .../user1_delete_objects.json | 75 - .../edit_authorization/user1_put_object.json | 75 - .../user1_put_object_legal_hold.json | 75 - .../edit_authorization/user1_upload_part.json | 75 - tests/json_payloads/minio_admin_request.json | 72 - .../view_authorization/user1_get_object.json | 120 - .../user1_get_object_legal_hold.json | 120 - .../user1_get_object_retention.json | 120 - .../view_authorization/user1_list_bucket.json | 81 - .../user1_list_objects.json | 81 - .../user1_list_objects_v2.json | 81 - ...ccess_control_changed_from_discoverable.py | 210 - ...est_access_control_changed_from_private.py | 187 - ...ccess_control_changed_from_private_link.py | 187 - ...test_access_control_changed_from_public.py | 187 - tests/test_access_control_changed_user.py | 86 - tests/test_minio_authorization_webhook.py | 590 - tests/test_minio_service_accounts.py | 52 - 44 files changed, 37038 deletions(-) delete mode 100644 Dockerfile delete mode 100644 Dockerfile-testing delete mode 100644 api/cache.py delete mode 100644 api/database.py delete mode 100644 api/main.py delete mode 100644 api/routers/access_control_changed.py delete mode 100644 api/routers/minio.py delete mode 100644 api/routers/service_accounts.py delete mode 100644 docker-compose.yml delete mode 100644 requirements.txt delete mode 100644 tests/init-scripts/hydroshare-staged-snapshot.sql delete mode 100644 tests/json_payloads/access_control_changed/from_discoverable/to_private.json delete mode 100644 tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json delete mode 100644 tests/json_payloads/access_control_changed/from_discoverable/to_public.json delete mode 100644 tests/json_payloads/access_control_changed/from_private/to_discoverable.json delete mode 100644 tests/json_payloads/access_control_changed/from_private/to_private_sharing.json delete mode 100644 tests/json_payloads/access_control_changed/from_private/to_public.json delete mode 100644 tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json delete mode 100644 tests/json_payloads/access_control_changed/from_private_link/to_private.json delete mode 100644 tests/json_payloads/access_control_changed/from_private_link/to_public.json delete mode 100644 tests/json_payloads/access_control_changed/from_public/to_discoverable.json delete mode 100644 tests/json_payloads/access_control_changed/from_public/to_private.json delete mode 100644 tests/json_payloads/access_control_changed/from_public/to_private_sharing.json delete mode 100644 tests/json_payloads/access_control_changed/user_access/to_edit.json delete mode 100644 tests/json_payloads/access_control_changed/user_access/to_view.json delete mode 100644 tests/json_payloads/edit_authorization/user1_delete_object.json delete mode 100644 tests/json_payloads/edit_authorization/user1_delete_objects.json delete mode 100644 tests/json_payloads/edit_authorization/user1_put_object.json delete mode 100644 tests/json_payloads/edit_authorization/user1_put_object_legal_hold.json delete mode 100644 tests/json_payloads/edit_authorization/user1_upload_part.json delete mode 100644 tests/json_payloads/minio_admin_request.json delete mode 100644 tests/json_payloads/view_authorization/user1_get_object.json delete mode 100644 tests/json_payloads/view_authorization/user1_get_object_legal_hold.json delete mode 100644 tests/json_payloads/view_authorization/user1_get_object_retention.json delete mode 100644 tests/json_payloads/view_authorization/user1_list_bucket.json delete mode 100644 tests/json_payloads/view_authorization/user1_list_objects.json delete mode 100644 tests/json_payloads/view_authorization/user1_list_objects_v2.json delete mode 100644 tests/test_access_control_changed_from_discoverable.py delete mode 100644 tests/test_access_control_changed_from_private.py delete mode 100644 tests/test_access_control_changed_from_private_link.py delete mode 100644 tests/test_access_control_changed_from_public.py delete mode 100644 tests/test_access_control_changed_user.py delete mode 100644 tests/test_minio_authorization_webhook.py delete mode 100644 tests/test_minio_service_accounts.py diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 3038bae..0000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM python:3.11 - -WORKDIR /app - -RUN curl https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc -RUN chmod +x /usr/local/bin/mc - -COPY ./requirements.txt /code/requirements.txt - -RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt - -ENV PYTHONPATH "${PYTHONPATH}:/" - -COPY ./api /app/api - -CMD ["fastapi", "run", "api/main.py", "--port", "80", "--workers", "4"] diff --git a/Dockerfile-testing b/Dockerfile-testing deleted file mode 100644 index 5e3db8f..0000000 --- a/Dockerfile-testing +++ /dev/null @@ -1,15 +0,0 @@ -FROM python:3.11 - -WORKDIR /app - -RUN curl https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc -RUN chmod +x /usr/local/bin/mc - -COPY ./requirements.txt /code/requirements.txt - -RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt -RUN pip install pytest - -ENV PYTHONPATH "${PYTHONPATH}:/" - -CMD ["fastapi", "run", "api/main.py", "--port", "80", "--workers", "4"] diff --git a/api/cache.py b/api/cache.py deleted file mode 100644 index 0a67972..0000000 --- a/api/cache.py +++ /dev/null @@ -1,86 +0,0 @@ -import os - -import redis - -# Redis configuration -REDIS_HOST = os.getenv('REDIS_HOST', 'localhost') -REDIS_PORT = os.getenv('REDIS_PORT', 6379) -REDIS_TTL = os.getenv('REDIS_TTL', 3600) - -# Initialize Redis connection -redis_client = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, decode_responses=True) - - -def set_cache_xx(key, value): - redis_client.set(key, value, xx=True, ex=REDIS_TTL) - - -def hset_cache_xx(key, mapping): - if redis_client.exists(key): - redis_client.hset(key, mapping=mapping) - - -def is_superuser_and_id_cache(username): - # disable cache access for now - is_superuser, user_id = redis_client.hmget(username, ["is_superuser", "user_id"]) - if is_superuser is None: - raise Exception - # is_superuser is stored as a byte - return is_superuser == b'\x00', int(user_id) - - -def resource_discoverability_cache(resource_id): - # disable cache access for now - access = redis_client.hmget(resource_id, ["access", "private_sharing"]) - if access[0] == "DISCOVERABLE": - # public, allow_private_sharing, discoverable - return False, access[1] == "ENABLED", True - elif access[0] == "PUBLIC": - return True, access[1] == "ENABLED", True - elif access[0] == "PRIVATE": - return False, access[1] == "ENABLED", False - elif access[0] == None: - raise Exception - - -def user_has_view_access_cache(user_id, resource_id): - # disable cache access for now - access = redis_client.get(f"{user_id}:{resource_id}") - if access is None: - raise Exception - else: - return access in ["VIEW", "EDIT"] - - -def user_has_edit_access_cache(user_id, resource_id): - # disable cache access for now - access = redis_client.get(f"{user_id}:{resource_id}") - if access is None: - raise Exception - else: - return access == "EDIT" - - -def backfill_superuser_and_id(username, is_superuser, user_id): - redis_client.hmset(username, {"is_superuser": bytes(is_superuser), "user_id": user_id}) - - -def backfill_resource_discoverability(resource_id, public, allow_private_sharing, discoverable): - if public: - access = "PUBLIC" - elif discoverable: - access = "DISCOVERABLE" - else: - access = "PRIVATE" - redis_client.hmset( - resource_id, - {"access": access, "private_sharing": "ENABLED" if allow_private_sharing else "DISABLED"}, - ) - - -def backfill_view_access(user_id, resource_id, view_access): - redis_client.set(f"{user_id}:{resource_id}", "VIEW" if view_access else "NONE", ex=REDIS_TTL) - - -def backfill_edit_access(user_id, resource_id, edit_access): - redis_client.set(f"{user_id}:{resource_id}", "EDIT" if edit_access else "VIEW", ex=REDIS_TTL) diff --git a/api/database.py b/api/database.py deleted file mode 100644 index 74852eb..0000000 --- a/api/database.py +++ /dev/null @@ -1,105 +0,0 @@ -import os - -from sqlalchemy import create_engine, text - -DATABASE_URL = os.environ.get("HS_DATABASE_URL") -engine = create_engine(DATABASE_URL) - - -def is_superuser_and_id(username: str): - # return is_superuser and user_id as tuple - query = """SELECT auth_user.is_superuser, auth_user.id - FROM auth_user - WHERE auth_user.username = :username""" - - with engine.connect() as con: - rs = con.execute(statement=text(query), parameters=dict(username=username)) - row = rs.fetchone() - if row: - return row - return {False, None} - - -def resource_discoverability(resource_id: str): - # return public, allow_private_sharing, discoverable as tuple - query = """SELECT hs_access_control_resourceaccess.public, hs_access_control_resourceaccess.allow_private_sharing, hs_access_control_resourceaccess.discoverable - FROM hs_access_control_resourceaccess - INNER JOIN hs_core_genericresource - ON (hs_core_genericresource.page_ptr_id = hs_access_control_resourceaccess.resource_id) - WHERE hs_core_genericresource.short_id = :resource_id""" - - with engine.connect() as con: - rs = con.execute(statement=text(query), parameters=dict(resource_id=resource_id)) - row = rs.fetchone() - if row: - return row - return (False, False, False) - - -def user_has_view_access(user_id: int, resource_id: str): - query = """SELECT DISTINCT hs_core_genericresource.short_id - FROM hs_core_genericresource - LEFT OUTER JOIN hs_access_control_userresourceprivilege - ON (hs_core_genericresource.page_ptr_id = hs_access_control_userresourceprivilege.resource_id) - LEFT OUTER JOIN hs_access_control_groupresourceprivilege - ON (hs_core_genericresource.page_ptr_id = hs_access_control_groupresourceprivilege.resource_id) - LEFT OUTER JOIN auth_group - ON (hs_access_control_groupresourceprivilege.group_id = auth_group.id) - LEFT OUTER JOIN hs_access_control_usergroupprivilege - ON (auth_group.id = hs_access_control_usergroupprivilege.group_id) - LEFT OUTER JOIN hs_access_control_groupaccess - ON (auth_group.id = hs_access_control_groupaccess.group_id) - INNER JOIN pages_page - ON (hs_core_genericresource.page_ptr_id = pages_page.id) - WHERE (hs_access_control_userresourceprivilege.user_id = :user_id - OR (hs_access_control_usergroupprivilege.user_id = :user_id - AND hs_access_control_groupaccess.active)) - AND hs_core_genericresource.short_id = :resource_id""" - - with engine.connect() as con: - rs = con.execute( - statement=text(query), - parameters=dict(user_id=user_id, resource_id=resource_id), - ) - result = rs.fetchone() - if result: - return True - return False - - -def user_has_edit_access(user_id: int, resource_id: str): - query = """SELECT DISTINCT hs_core_genericresource.short_id - FROM hs_core_genericresource - LEFT OUTER JOIN hs_access_control_userresourceprivilege - ON (hs_core_genericresource.page_ptr_id = hs_access_control_userresourceprivilege.resource_id) - LEFT OUTER JOIN hs_access_control_resourceaccess - ON (hs_core_genericresource.page_ptr_id = hs_access_control_resourceaccess.resource_id) - LEFT OUTER JOIN hs_access_control_groupresourceprivilege - ON (hs_core_genericresource.page_ptr_id = hs_access_control_groupresourceprivilege.resource_id) - LEFT OUTER JOIN auth_group - ON (hs_access_control_groupresourceprivilege.group_id = auth_group.id) - LEFT OUTER JOIN hs_access_control_usergroupprivilege - ON (auth_group.id = hs_access_control_usergroupprivilege.group_id) - LEFT OUTER JOIN hs_access_control_groupaccess - ON (auth_group.id = hs_access_control_groupaccess.group_id) - INNER JOIN pages_page - ON (hs_core_genericresource.page_ptr_id = pages_page.id) - WHERE ((hs_access_control_userresourceprivilege.privilege = 1 - AND hs_access_control_userresourceprivilege.user_id = :user_id) - OR (hs_access_control_userresourceprivilege.privilege <= 2 - AND hs_access_control_userresourceprivilege.user_id = :user_id - AND NOT hs_access_control_resourceaccess.immutable) - OR (hs_access_control_usergroupprivilege.user_id = :user_id - AND hs_access_control_groupaccess.active - AND hs_access_control_groupresourceprivilege.privilege = 2 - AND NOT hs_access_control_resourceaccess.immutable)) - AND hs_core_genericresource.short_id = :resource_id""" - with engine.connect() as con: - rs = con.execute( - statement=text(query), - parameters=dict(user_id=user_id, resource_id=resource_id), - ) - result = rs.fetchone() - if result: - return True - return False diff --git a/api/main.py b/api/main.py deleted file mode 100644 index 9e09bd9..0000000 --- a/api/main.py +++ /dev/null @@ -1,57 +0,0 @@ -import asyncio -import logging -from contextlib import asynccontextmanager - -import uvicorn -from fastapi import FastAPI -from fastapi.middleware.cors import CORSMiddleware -from fastapi.openapi.utils import get_openapi - -from api.routers.access_control_changed import router as access_control_changed_router -from api.routers.minio import router as minio_router -from api.routers.service_accounts import router as service_accounts_router - -logger = logging.getLogger("micro-auth") - -app = FastAPI() - -app.add_middleware( - CORSMiddleware, - allow_origins=['*'], - allow_credentials=True, - allow_methods=["*"], - allow_headers=["*"], -) - - -app.include_router(minio_router, tags=["HS S3 Authorization"], prefix="/minio") -app.include_router(service_accounts_router, tags=["Service Account Management"], prefix="/sa") -app.include_router(access_control_changed_router, tags=["Access Control Webhook"], prefix="/access") - -openapi_schema = get_openapi( - title="S3 Authorization API", - version="1.0", - description="Authorization and Service Account Management for HydroShare on S3", - routes=app.routes, -) -app.openapi_schema = openapi_schema - - -class Server(uvicorn.Server): - def handle_exit(self, sig: int, frame) -> None: - return super().handle_exit(sig, frame) - - -async def main(): - """Run FastAPI""" - - server = Server( - config=uvicorn.Config(app, workers=1, loop="asyncio", host="0.0.0.0", port=8001, forwarded_allow_ips="*") - ) - api = asyncio.create_task(server.serve()) - - await asyncio.wait([api]) - - -if __name__ == "__main__": - asyncio.run(main()) diff --git a/api/routers/access_control_changed.py b/api/routers/access_control_changed.py deleted file mode 100644 index bc58839..0000000 --- a/api/routers/access_control_changed.py +++ /dev/null @@ -1,59 +0,0 @@ -import logging -from typing import List - -from fastapi import APIRouter, Response, status -from pydantic import BaseModel - -import api.cache as cache - -router = APIRouter() -logger = logging.getLogger("micro-auth") - - -class UserAccess(BaseModel): - id: str - access: str - - -class ResourceAccess(BaseModel): - id: str - user_access: List[UserAccess] - public: bool - discoverable: bool - allow_private_sharing: bool - bucket_name: str - - -class AccessControlChanged(BaseModel): - resources: List[ResourceAccess] - - -@router.post("/hook/") -async def set_auth(access_control_changed: AccessControlChanged, response: Response): - try: - for resource in access_control_changed.resources: - resource_id = resource.id - for user_access in resource.user_access: - user_id = user_access.id - access = user_access.access - cache.set_cache_xx(f"{user_id}:{resource_id}", access) - - if resource.public: - resource_access = "PUBLIC" - elif resource.discoverable: - resource_access = "DISCOVERABLE" - else: - resource_access = "PRIVATE" - cache.hset_cache_xx( - resource_id, - { - "access": resource_access, - "private_sharing": "ENABLED" if resource.allow_private_sharing else "DISABLED", - "bucket_name": resource.bucket_name, - }, - ) - response.status_code = status.HTTP_204_NO_CONTENT - - except Exception as e: - logger.exception("Error processing request") - raise diff --git a/api/routers/minio.py b/api/routers/minio.py deleted file mode 100644 index 6801b51..0000000 --- a/api/routers/minio.py +++ /dev/null @@ -1,163 +0,0 @@ -import logging -import os -from typing import AnyStr, List, Optional - -from fastapi import APIRouter -from pydantic import BaseModel - -from api.cache import ( - backfill_edit_access, - backfill_resource_discoverability, - backfill_superuser_and_id, - backfill_view_access, - is_superuser_and_id_cache, - resource_discoverability_cache, - user_has_edit_access_cache, - user_has_view_access_cache, -) -from api.database import is_superuser_and_id, resource_discoverability, user_has_edit_access, user_has_view_access - -router = APIRouter() -logger = logging.getLogger("micro-auth") - -VIEW_ACTIONS = os.environ.get( - "MINIO_VIEW_ACTIONS", - "s3:GetObject,s3:ListObjects,s3:ListObjectsV2,s3:ListBucket,s3:GetObjectRetention,s3:GetObjectLegalHold", -).split(",") -EDIT_ACTIONS = os.environ.get( - "MINIO_EDIT_ACTIONS", "s3:PutObject,s3:DeleteObject,s3:DeleteObjects,s3:UploadPart,s3:PutObjectLegalHold" -).split(",") - - -class AllowBaseModel(BaseModel, extra='allow'): - pass - - -class Conditions(AllowBaseModel): - preferred_username: Optional[List[AnyStr]] = [] - username: Optional[List[AnyStr]] = [] - Prefix: Optional[List[AnyStr]] = [] - prefix: Optional[List[AnyStr]] = [] - - @property - def users(self): - if self.preferred_username: - return self.preferred_username - else: - return self.username - - @property - def user(self): - users = self.users - if len(users) != 1: - logger.warning(f"Exactly one user must be specified {users}") - raise ValueError("Exactly one user must be specified") - return self.users[0] - - @property - def prefixes(self): - if self.Prefix: - return [prefix for prefix in self.Prefix if prefix] - elif self.prefix: - return [prefix for prefix in self.prefix if prefix] - else: - return [] - - -class Input(AllowBaseModel): - conditions: Conditions - # https://min.io/docs/minio/linux/administration/identity-access-management/policy-based-access-control.html - action: AnyStr - bucket: AnyStr - object: AnyStr - - -class AuthRequest(AllowBaseModel): - input: Input - - -@router.post("/authorization/") -async def hs_s3_authorization_check(auth_request: AuthRequest): - - username = auth_request.input.conditions.user - bucket = auth_request.input.bucket - action = auth_request.input.action - - if username == "cuahsi" or username == "minioadmin": - # allow cuahsi admin account always - return {"result": {"allow": True}} - - if auth_request.input.action in ["s3:GetBucketLocation", "s3:GetBucketObjectLockConfiguration"]: - # This is needed by mc to list buckets and does not contain a prefix - return {"result": {"allow": True}} - - try: - user_is_superuser, user_id = is_superuser_and_id_cache(username) - except: - user_is_superuser, user_id = is_superuser_and_id(username) - logger.warning(f"Backfilling cache: {username}:(is_superuser:{user_is_superuser},user_id:{user_id})") - backfill_superuser_and_id(username, user_is_superuser, user_id) - if user_is_superuser: - return {"result": {"allow": True}} - - # users access the objects in these buckets through presigned urls, admins are approved above - if bucket in ["zips", "tmp", "bags"]: - return {"result": {"allow": False}} - - # prefixes are paths to (folders/set of) objects in the bucket - prefixes = auth_request.input.conditions.prefixes - if not prefixes: - if auth_request.input.object: - # if there is an object but no prefix, it is a file in the root of the bucket - prefixes = [auth_request.input.object] - else: - return {"result": {"allow": False}} - - resource_ids = [prefix.split("/")[0] for prefix in prefixes] - # check the user and each resource against the action - for resource_id in resource_ids: - if not _check_user_authorization(user_id, resource_id, action): - return {"result": {"allow": False}} - if resource_ids: - return {"result": {"allow": True}} - - return {"result": {"allow": False}} - - -def _check_user_authorization(user_id, resource_id, action): - # Break this down into just view and edit for now. - # We may need to make owners distinct from edit at some point - - # List of actions https://docs.aws.amazon.com/AmazonS3/latest/API/API_Operations.html - - # view actions - if action in VIEW_ACTIONS: - try: - public, allow_private_sharing, discoverable = resource_discoverability_cache(resource_id) - except: - public, allow_private_sharing, discoverable = resource_discoverability(resource_id) - backfill_resource_discoverability(resource_id, public, allow_private_sharing, discoverable) - - try: - view_access = user_has_view_access_cache(user_id, resource_id) - except: - view_access = user_has_view_access(user_id, resource_id) - backfill_view_access(user_id, resource_id, view_access) - - if action in ["s3:GetObject", "s3:GetObjectRetention", "s3:GetObjectLegalHold"]: - return public or allow_private_sharing or view_access - # view and discoverable actions - if action in ["s3:ListObjects", "s3:ListObjectsV2", "s3:ListBucket"]: - return public or allow_private_sharing or discoverable or view_access - - # edit actions - if action in EDIT_ACTIONS: - try: - edit_access = user_has_edit_access_cache(user_id, resource_id) - except: - edit_access = user_has_edit_access(user_id, resource_id) - backfill_edit_access(user_id, resource_id, edit_access) - print(f"Edit access {user_id} {resource_id} {edit_access}") - return edit_access - - return False diff --git a/api/routers/service_accounts.py b/api/routers/service_accounts.py deleted file mode 100644 index f1866d8..0000000 --- a/api/routers/service_accounts.py +++ /dev/null @@ -1,121 +0,0 @@ -import logging -import secrets -import subprocess - -from fastapi import APIRouter, Response, status -from pydantic import BaseModel - -router = APIRouter() -logger = logging.getLogger("micro-auth") - - -class KeyRequest(BaseModel): - username: str - - -class ServiceAccountResponse(BaseModel): - access_key: str - secret_key: str - - -class AccessKeyAndExpiry(BaseModel): - access_key: str - expiry: str - - -class ServiceAccountListResponse(BaseModel): - service_accounts: list[AccessKeyAndExpiry] - - -@router.post("/auth/minio/sa/") -async def create_service_account(key_request: KeyRequest, response: Response) -> ServiceAccountResponse: - try: - # mc admin user add myminio newuser newusersecret - print(f"Creating user for {key_request.username}") - result = subprocess.run( - ["mc", "admin", "user", "add", "hydroshare", key_request.username, secrets.token_urlsafe(16)], - check=True, - capture_output=True, - text=True, - ) - print(f"Creating Service Account for {key_request.username}") - result = subprocess.run( - ["mc", "admin", "user", "svcacct", "add", "hydroshare", key_request.username], - check=True, - capture_output=True, - text=True, - ) - output = result.stdout - except Exception as e: - logger.error(f"CLI command failed with error: {e.stderr}") - raise e - access_key = output.split("Access Key: ")[1].split("\n")[0] - secret_key = output.split("Secret Key: ")[1].split("\n")[0] - response.status_code = status.HTTP_201_CREATED - return ServiceAccountResponse(access_key=access_key, secret_key=secret_key) - - -@router.get("/auth/minio/sa/{access_key}") -async def get_service_accounts(access_key: str) -> ServiceAccountListResponse: - try: - result = subprocess.run( - ["mc", "admin", "user", "svcacct", "list", "hydroshare", access_key], - check=True, - capture_output=True, - text=True, - ) - except Exception as e: - logger.error(f"CLI command failed with error: {e.stderr}") - raise e - lines = result.stdout.splitlines()[1:] # Skip the header line - service_accounts = [] - for line in lines: - parts = line.split() - service_account = {"access_key": parts[0].strip(), "expiry": parts[1].strip()} - service_accounts.append(service_account) - return {"service_accounts": service_accounts} - - -@router.delete("/auth/minio/sa/{service_account_key}") -async def delete_service_account(service_account_key: str, response: Response): - try: - print(f"Deleting Service Account {service_account_key}") - subprocess.run( - ["mc", "admin", "user", "svcacct", "remove", "hydroshare", service_account_key], - check=True, - capture_output=True, - text=True, - ) - print("Service Account deleted successfully") - response.status_code = status.HTTP_204_NO_CONTENT - except Exception as e: - logger.error(f"CLI command failed with error: {e.stderr}") - raise e - print - - -# TODO: This is not ready for prime time yet, needs more testing -@router.post("/auth/minio/sa/argo/") -async def save_access_key_argo(key_request: KeyRequest): - service_account = await create_service_account(key_request) - secret_name = f"{key_request.username}-credentials" - try: - result = subprocess.run( - [ - "kubectl", - "create", - "secret", - "generic", - secret_name, - "--namespace", - "workflows", - f"--from-literal=access_key={service_account.access_key}", - f"--from-literal=secret_key={service_account.secret_key}", - ], - check=True, - capture_output=True, - text=True, - ) - except subprocess.CalledProcessError as e: - logger.error(f"CLI command failed with error: {e.stderr}") - raise e diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 44cf29b..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,63 +0,0 @@ -version: '3' - -services: - micro-auth: - volumes: - - ./api:/app/api - - ./tests:/app/tests - build: - dockerfile: ./Dockerfile-testing - environment: - - HS_DATABASE_URL=postgresql://postgres:postgres@postgres:5432/postgres - - REDIS_HOST=redis - - REDIS_PORT=6379 - - MC_HOST_hydroshare=http://minioadmin:minioadmin@minio:9000 - links: - - postgres - - redis - - minio - ports: - - 8001:8001 - restart: on-failure - postgres: - image: postgis/postgis:15-3.3 - platform: linux/amd64 - ports: - - "5432:5432" - environment: - POSTGRES_PASSWORD: postgres - POSTGRES_DB: postgres - POSTGRES_USER: postgres - volumes: - - ./tests/init-scripts:/docker-entrypoint-initdb.d - - postgres_data:/var/lib/postgresql/data - redis: - image: redis:7.4-alpine - ports: - - "6379:6379" - restart: on-failure - volumes: - - redis_data:/data - minio: - image: minio/minio - platform: linux/amd64 - ports: - - "9000:9000" - - "9001:9001" - expose: - - "9000" - - "9001" - volumes: - - minio_data_vol:/data - environment: - MINIO_ROOT_USER: minioadmin - MINIO_ROOT_PASSWORD: minioadmin - MINIO_BROWSER_REDIRECT: "false" - MINIO_SCANNER_SPEED: "fastest" - MINIO_POLICY_PLUGIN_URL: "http://micro-auth/minio/authorization/" - command: server --console-address ":9001" /data - -volumes: - postgres_data: - redis_data: - minio_data_vol: diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index ffeafde..0000000 --- a/requirements.txt +++ /dev/null @@ -1,5 +0,0 @@ -fastapi[standard]>=0.113.0,<0.114.0 -psycopg2 -pydantic>=2.7.0,<3.0.0 -redis -sqlmodel \ No newline at end of file diff --git a/tests/init-scripts/hydroshare-staged-snapshot.sql b/tests/init-scripts/hydroshare-staged-snapshot.sql deleted file mode 100644 index 35e1560..0000000 --- a/tests/init-scripts/hydroshare-staged-snapshot.sql +++ /dev/null @@ -1,33625 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 15.4 (Debian 15.4-1.pgdg110+1) --- Dumped by pg_dump version 15.4 (Debian 15.4-1.pgdg110+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Name: tiger; Type: SCHEMA; Schema: -; Owner: postgres --- - -CREATE SCHEMA tiger; - - -ALTER SCHEMA tiger OWNER TO postgres; - --- --- Name: tiger_data; Type: SCHEMA; Schema: -; Owner: postgres --- - -CREATE SCHEMA tiger_data; - - -ALTER SCHEMA tiger_data OWNER TO postgres; - --- --- Name: topology; Type: SCHEMA; Schema: -; Owner: postgres --- - -CREATE SCHEMA topology; - - -ALTER SCHEMA topology OWNER TO postgres; - --- --- Name: SCHEMA topology; Type: COMMENT; Schema: -; Owner: postgres --- - -COMMENT ON SCHEMA topology IS 'PostGIS Topology schema'; - - --- --- Name: fuzzystrmatch; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS fuzzystrmatch WITH SCHEMA public; - - --- --- Name: EXTENSION fuzzystrmatch; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION fuzzystrmatch IS 'determine similarities and distance between strings'; - - --- --- Name: hstore; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS hstore WITH SCHEMA public; - - --- --- Name: EXTENSION hstore; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION hstore IS 'data type for storing sets of (key, value) pairs'; - - --- --- Name: postgis; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS postgis WITH SCHEMA public; - - --- --- Name: EXTENSION postgis; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION postgis IS 'PostGIS geometry, geography, and raster spatial types and functions'; - - --- --- Name: postgis_tiger_geocoder; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS postgis_tiger_geocoder WITH SCHEMA tiger; - - --- --- Name: EXTENSION postgis_tiger_geocoder; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION postgis_tiger_geocoder IS 'PostGIS tiger geocoder and reverse geocoder'; - - --- --- Name: postgis_topology; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS postgis_topology WITH SCHEMA topology; - - --- --- Name: EXTENSION postgis_topology; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION postgis_topology IS 'PostGIS topology spatial types and functions'; - - -SET default_tablespace = ''; - -SET default_table_access_method = heap; - --- --- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.auth_group ( - id integer NOT NULL, - name character varying(150) NOT NULL -); - - -ALTER TABLE public.auth_group OWNER TO postgres; - --- --- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.auth_group_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.auth_group_id_seq OWNER TO postgres; - --- --- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.auth_group_id_seq OWNED BY public.auth_group.id; - - --- --- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.auth_group_permissions ( - id integer NOT NULL, - group_id integer NOT NULL, - permission_id integer NOT NULL -); - - -ALTER TABLE public.auth_group_permissions OWNER TO postgres; - --- --- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.auth_group_permissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.auth_group_permissions_id_seq OWNER TO postgres; - --- --- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.auth_group_permissions_id_seq OWNED BY public.auth_group_permissions.id; - - --- --- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.auth_permission ( - id integer NOT NULL, - name character varying(255) NOT NULL, - content_type_id integer NOT NULL, - codename character varying(100) NOT NULL -); - - -ALTER TABLE public.auth_permission OWNER TO postgres; - --- --- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.auth_permission_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.auth_permission_id_seq OWNER TO postgres; - --- --- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.auth_permission_id_seq OWNED BY public.auth_permission.id; - - --- --- Name: auth_user; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.auth_user ( - id integer NOT NULL, - password character varying(128) NOT NULL, - last_login timestamp with time zone, - is_superuser boolean NOT NULL, - username character varying(150) NOT NULL, - first_name character varying(150) NOT NULL, - last_name character varying(150) NOT NULL, - email character varying(254) NOT NULL, - is_staff boolean NOT NULL, - is_active boolean NOT NULL, - date_joined timestamp with time zone NOT NULL -); - - -ALTER TABLE public.auth_user OWNER TO postgres; - --- --- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.auth_user_groups ( - id integer NOT NULL, - user_id integer NOT NULL, - group_id integer NOT NULL -); - - -ALTER TABLE public.auth_user_groups OWNER TO postgres; - --- --- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.auth_user_groups_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.auth_user_groups_id_seq OWNER TO postgres; - --- --- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.auth_user_groups_id_seq OWNED BY public.auth_user_groups.id; - - --- --- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.auth_user_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.auth_user_id_seq OWNER TO postgres; - --- --- Name: auth_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.auth_user_id_seq OWNED BY public.auth_user.id; - - --- --- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.auth_user_user_permissions ( - id integer NOT NULL, - user_id integer NOT NULL, - permission_id integer NOT NULL -); - - -ALTER TABLE public.auth_user_user_permissions OWNER TO postgres; - --- --- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.auth_user_user_permissions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.auth_user_user_permissions_id_seq OWNER TO postgres; - --- --- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.auth_user_user_permissions_id_seq OWNED BY public.auth_user_user_permissions.id; - - --- --- Name: blog_blogcategory; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.blog_blogcategory ( - id integer NOT NULL, - site_id integer NOT NULL, - title character varying(500) NOT NULL, - slug character varying(2000) NOT NULL -); - - -ALTER TABLE public.blog_blogcategory OWNER TO postgres; - --- --- Name: blog_blogcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.blog_blogcategory_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.blog_blogcategory_id_seq OWNER TO postgres; - --- --- Name: blog_blogcategory_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.blog_blogcategory_id_seq OWNED BY public.blog_blogcategory.id; - - --- --- Name: blog_blogpost; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.blog_blogpost ( - id integer NOT NULL, - comments_count integer NOT NULL, - keywords_string character varying(500) NOT NULL, - rating_count integer NOT NULL, - rating_sum integer NOT NULL, - rating_average double precision NOT NULL, - site_id integer NOT NULL, - title character varying(500) NOT NULL, - slug character varying(2000) NOT NULL, - _meta_title character varying(500), - description text NOT NULL, - gen_description boolean NOT NULL, - created timestamp with time zone, - updated timestamp with time zone, - status integer NOT NULL, - publish_date timestamp with time zone, - expiry_date timestamp with time zone, - short_url character varying(200), - in_sitemap boolean NOT NULL, - content text NOT NULL, - user_id integer NOT NULL, - allow_comments boolean NOT NULL, - featured_image character varying(255) -); - - -ALTER TABLE public.blog_blogpost OWNER TO postgres; - --- --- Name: blog_blogpost_categories; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.blog_blogpost_categories ( - id integer NOT NULL, - blogpost_id integer NOT NULL, - blogcategory_id integer NOT NULL -); - - -ALTER TABLE public.blog_blogpost_categories OWNER TO postgres; - --- --- Name: blog_blogpost_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.blog_blogpost_categories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.blog_blogpost_categories_id_seq OWNER TO postgres; - --- --- Name: blog_blogpost_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.blog_blogpost_categories_id_seq OWNED BY public.blog_blogpost_categories.id; - - --- --- Name: blog_blogpost_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.blog_blogpost_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.blog_blogpost_id_seq OWNER TO postgres; - --- --- Name: blog_blogpost_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.blog_blogpost_id_seq OWNED BY public.blog_blogpost.id; - - --- --- Name: blog_blogpost_related_posts; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.blog_blogpost_related_posts ( - id integer NOT NULL, - from_blogpost_id integer NOT NULL, - to_blogpost_id integer NOT NULL -); - - -ALTER TABLE public.blog_blogpost_related_posts OWNER TO postgres; - --- --- Name: blog_blogpost_related_posts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.blog_blogpost_related_posts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.blog_blogpost_related_posts_id_seq OWNER TO postgres; - --- --- Name: blog_blogpost_related_posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.blog_blogpost_related_posts_id_seq OWNED BY public.blog_blogpost_related_posts.id; - - --- --- Name: celery_taskmeta; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.celery_taskmeta ( - id integer NOT NULL, - task_id character varying(255) NOT NULL, - status character varying(50) NOT NULL, - result text, - date_done timestamp with time zone NOT NULL, - traceback text, - hidden boolean NOT NULL, - meta text -); - - -ALTER TABLE public.celery_taskmeta OWNER TO postgres; - --- --- Name: celery_taskmeta_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.celery_taskmeta_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.celery_taskmeta_id_seq OWNER TO postgres; - --- --- Name: celery_taskmeta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.celery_taskmeta_id_seq OWNED BY public.celery_taskmeta.id; - - --- --- Name: celery_tasksetmeta; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.celery_tasksetmeta ( - id integer NOT NULL, - taskset_id character varying(255) NOT NULL, - result text NOT NULL, - date_done timestamp with time zone NOT NULL, - hidden boolean NOT NULL -); - - -ALTER TABLE public.celery_tasksetmeta OWNER TO postgres; - --- --- Name: celery_tasksetmeta_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.celery_tasksetmeta_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.celery_tasksetmeta_id_seq OWNER TO postgres; - --- --- Name: celery_tasksetmeta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.celery_tasksetmeta_id_seq OWNED BY public.celery_tasksetmeta.id; - - --- --- Name: conf_setting; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.conf_setting ( - id integer NOT NULL, - site_id integer NOT NULL, - name character varying(50) NOT NULL, - value character varying(2000) NOT NULL -); - - -ALTER TABLE public.conf_setting OWNER TO postgres; - --- --- Name: conf_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.conf_setting_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.conf_setting_id_seq OWNER TO postgres; - --- --- Name: conf_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.conf_setting_id_seq OWNED BY public.conf_setting.id; - - --- --- Name: core_sitepermission; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.core_sitepermission ( - id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.core_sitepermission OWNER TO postgres; - --- --- Name: core_sitepermission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.core_sitepermission_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.core_sitepermission_id_seq OWNER TO postgres; - --- --- Name: core_sitepermission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.core_sitepermission_id_seq OWNED BY public.core_sitepermission.id; - - --- --- Name: core_sitepermission_sites; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.core_sitepermission_sites ( - id integer NOT NULL, - sitepermission_id integer NOT NULL, - site_id integer NOT NULL -); - - -ALTER TABLE public.core_sitepermission_sites OWNER TO postgres; - --- --- Name: core_sitepermission_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.core_sitepermission_sites_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.core_sitepermission_sites_id_seq OWNER TO postgres; - --- --- Name: core_sitepermission_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.core_sitepermission_sites_id_seq OWNED BY public.core_sitepermission_sites.id; - - --- --- Name: corsheaders_corsmodel; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.corsheaders_corsmodel ( - id integer NOT NULL, - cors character varying(255) NOT NULL -); - - -ALTER TABLE public.corsheaders_corsmodel OWNER TO postgres; - --- --- Name: corsheaders_corsmodel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.corsheaders_corsmodel_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.corsheaders_corsmodel_id_seq OWNER TO postgres; - --- --- Name: corsheaders_corsmodel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.corsheaders_corsmodel_id_seq OWNED BY public.corsheaders_corsmodel.id; - - --- --- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_admin_log ( - id integer NOT NULL, - action_time timestamp with time zone NOT NULL, - object_id text, - object_repr character varying(200) NOT NULL, - action_flag smallint NOT NULL, - change_message text NOT NULL, - content_type_id integer, - user_id integer NOT NULL, - CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) -); - - -ALTER TABLE public.django_admin_log OWNER TO postgres; - --- --- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_admin_log_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_admin_log_id_seq OWNER TO postgres; - --- --- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_admin_log_id_seq OWNED BY public.django_admin_log.id; - - --- --- Name: django_comment_flags; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_comment_flags ( - id integer NOT NULL, - user_id integer NOT NULL, - comment_id integer NOT NULL, - flag character varying(30) NOT NULL, - flag_date timestamp with time zone NOT NULL -); - - -ALTER TABLE public.django_comment_flags OWNER TO postgres; - --- --- Name: django_comment_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_comment_flags_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_comment_flags_id_seq OWNER TO postgres; - --- --- Name: django_comment_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_comment_flags_id_seq OWNED BY public.django_comment_flags.id; - - --- --- Name: django_comments; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_comments ( - id integer NOT NULL, - content_type_id integer NOT NULL, - object_pk character varying(64) NOT NULL, - site_id integer NOT NULL, - user_id integer, - user_name character varying(50) NOT NULL, - user_email character varying(254) NOT NULL, - user_url character varying(200) NOT NULL, - comment text NOT NULL, - submit_date timestamp with time zone NOT NULL, - ip_address inet, - is_public boolean NOT NULL, - is_removed boolean NOT NULL -); - - -ALTER TABLE public.django_comments OWNER TO postgres; - --- --- Name: django_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_comments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_comments_id_seq OWNER TO postgres; - --- --- Name: django_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_comments_id_seq OWNED BY public.django_comments.id; - - --- --- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_content_type ( - id integer NOT NULL, - app_label character varying(100) NOT NULL, - model character varying(100) NOT NULL -); - - -ALTER TABLE public.django_content_type OWNER TO postgres; - --- --- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_content_type_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_content_type_id_seq OWNER TO postgres; - --- --- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_content_type_id_seq OWNED BY public.django_content_type.id; - - --- --- Name: django_docker_processes_containeroverrides; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_containeroverrides ( - id integer NOT NULL, - name character varying(256) NOT NULL, - command text, - working_dir character varying(65536), - "user" character varying(65536), - entrypoint character varying(65536), - privileged boolean NOT NULL, - lxc_conf character varying(65536), - memory_limit integer NOT NULL, - cpu_shares integer, - dns text, - net character varying(8), - docker_profile_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_containeroverrides OWNER TO postgres; - --- --- Name: django_docker_processes_containeroverrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_containeroverrides_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_containeroverrides_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_containeroverrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_containeroverrides_id_seq OWNED BY public.django_docker_processes_containeroverrides.id; - - --- --- Name: django_docker_processes_dockerenvvar; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_dockerenvvar ( - id integer NOT NULL, - name character varying(1024) NOT NULL, - value text NOT NULL, - docker_profile_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_dockerenvvar OWNER TO postgres; - --- --- Name: django_docker_processes_dockerenvvar_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_dockerenvvar_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_dockerenvvar_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_dockerenvvar_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_dockerenvvar_id_seq OWNED BY public.django_docker_processes_dockerenvvar.id; - - --- --- Name: django_docker_processes_dockerlink; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_dockerlink ( - id integer NOT NULL, - link_name character varying(256) NOT NULL, - docker_overrides_id integer, - docker_profile_id integer NOT NULL, - docker_profile_from_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_dockerlink OWNER TO postgres; - --- --- Name: django_docker_processes_dockerlink_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_dockerlink_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_dockerlink_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_dockerlink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_dockerlink_id_seq OWNED BY public.django_docker_processes_dockerlink.id; - - --- --- Name: django_docker_processes_dockerport; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_dockerport ( - id integer NOT NULL, - host character varying(65536) NOT NULL, - container character varying(65536) NOT NULL, - docker_profile_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_dockerport OWNER TO postgres; - --- --- Name: django_docker_processes_dockerport_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_dockerport_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_dockerport_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_dockerport_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_dockerport_id_seq OWNED BY public.django_docker_processes_dockerport.id; - - --- --- Name: django_docker_processes_dockerprocess; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_dockerprocess ( - id integer NOT NULL, - container_id character varying(128), - token character varying(128) NOT NULL, - logs text, - finished boolean NOT NULL, - error boolean NOT NULL, - profile_id integer NOT NULL, - user_id integer -); - - -ALTER TABLE public.django_docker_processes_dockerprocess OWNER TO postgres; - --- --- Name: django_docker_processes_dockerprocess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_dockerprocess_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_dockerprocess_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_dockerprocess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_dockerprocess_id_seq OWNED BY public.django_docker_processes_dockerprocess.id; - - --- --- Name: django_docker_processes_dockerprofile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_dockerprofile ( - id integer NOT NULL, - name character varying(1024) NOT NULL, - git_repository character varying(16384) NOT NULL, - git_use_submodules boolean NOT NULL, - git_username character varying(256), - git_password character varying(64), - commit_id character varying(64), - branch character varying(1024) -); - - -ALTER TABLE public.django_docker_processes_dockerprofile OWNER TO postgres; - --- --- Name: django_docker_processes_dockerprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_dockerprofile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_dockerprofile_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_dockerprofile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_dockerprofile_id_seq OWNED BY public.django_docker_processes_dockerprofile.id; - - --- --- Name: django_docker_processes_dockervolume; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_dockervolume ( - id integer NOT NULL, - host character varying(65536), - container character varying(65536) NOT NULL, - readonly boolean NOT NULL, - docker_profile_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_dockervolume OWNER TO postgres; - --- --- Name: django_docker_processes_dockervolume_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_dockervolume_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_dockervolume_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_dockervolume_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_dockervolume_id_seq OWNED BY public.django_docker_processes_dockervolume.id; - - --- --- Name: django_docker_processes_overrideenvvar; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_overrideenvvar ( - id integer NOT NULL, - name character varying(1024) NOT NULL, - value text NOT NULL, - container_overrides_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_overrideenvvar OWNER TO postgres; - --- --- Name: django_docker_processes_overrideenvvar_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_overrideenvvar_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_overrideenvvar_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_overrideenvvar_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_overrideenvvar_id_seq OWNED BY public.django_docker_processes_overrideenvvar.id; - - --- --- Name: django_docker_processes_overridelink; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_overridelink ( - id integer NOT NULL, - link_name character varying(256) NOT NULL, - container_overrides_id integer NOT NULL, - docker_profile_from_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_overridelink OWNER TO postgres; - --- --- Name: django_docker_processes_overridelink_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_overridelink_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_overridelink_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_overridelink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_overridelink_id_seq OWNED BY public.django_docker_processes_overridelink.id; - - --- --- Name: django_docker_processes_overrideport; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_overrideport ( - id integer NOT NULL, - host character varying(65536) NOT NULL, - container character varying(65536) NOT NULL, - container_overrides_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_overrideport OWNER TO postgres; - --- --- Name: django_docker_processes_overrideport_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_overrideport_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_overrideport_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_overrideport_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_overrideport_id_seq OWNED BY public.django_docker_processes_overrideport.id; - - --- --- Name: django_docker_processes_overridevolume; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_docker_processes_overridevolume ( - id integer NOT NULL, - host character varying(65536) NOT NULL, - container character varying(65536) NOT NULL, - container_overrides_id integer NOT NULL -); - - -ALTER TABLE public.django_docker_processes_overridevolume OWNER TO postgres; - --- --- Name: django_docker_processes_overridevolume_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_docker_processes_overridevolume_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_docker_processes_overridevolume_id_seq OWNER TO postgres; - --- --- Name: django_docker_processes_overridevolume_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_docker_processes_overridevolume_id_seq OWNED BY public.django_docker_processes_overridevolume.id; - - --- --- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_migrations ( - id integer NOT NULL, - app character varying(255) NOT NULL, - name character varying(255) NOT NULL, - applied timestamp with time zone NOT NULL -); - - -ALTER TABLE public.django_migrations OWNER TO postgres; - --- --- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_migrations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_migrations_id_seq OWNER TO postgres; - --- --- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_migrations_id_seq OWNED BY public.django_migrations.id; - - --- --- Name: django_redirect; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_redirect ( - id integer NOT NULL, - site_id integer NOT NULL, - old_path character varying(200) NOT NULL, - new_path character varying(200) NOT NULL -); - - -ALTER TABLE public.django_redirect OWNER TO postgres; - --- --- Name: django_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_redirect_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_redirect_id_seq OWNER TO postgres; - --- --- Name: django_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_redirect_id_seq OWNED BY public.django_redirect.id; - - --- --- Name: django_s3_avu; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_s3_avu ( - id integer NOT NULL, - name text NOT NULL, - "attName" text NOT NULL, - "attVal" text -); - - -ALTER TABLE public.django_s3_avu OWNER TO postgres; - --- --- Name: django_s3_avu_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.django_s3_avu ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.django_s3_avu_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: django_session; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_session ( - session_key character varying(40) NOT NULL, - session_data text NOT NULL, - expire_date timestamp with time zone NOT NULL -); - - -ALTER TABLE public.django_session OWNER TO postgres; - --- --- Name: django_site; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.django_site ( - id integer NOT NULL, - domain character varying(100) NOT NULL, - name character varying(50) NOT NULL -); - - -ALTER TABLE public.django_site OWNER TO postgres; - --- --- Name: django_site_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.django_site_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.django_site_id_seq OWNER TO postgres; - --- --- Name: django_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.django_site_id_seq OWNED BY public.django_site.id; - - --- --- Name: djcelery_crontabschedule; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.djcelery_crontabschedule ( - id integer NOT NULL, - minute character varying(64) NOT NULL, - hour character varying(64) NOT NULL, - day_of_week character varying(64) NOT NULL, - day_of_month character varying(64) NOT NULL, - month_of_year character varying(64) NOT NULL -); - - -ALTER TABLE public.djcelery_crontabschedule OWNER TO postgres; - --- --- Name: djcelery_crontabschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.djcelery_crontabschedule_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.djcelery_crontabschedule_id_seq OWNER TO postgres; - --- --- Name: djcelery_crontabschedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.djcelery_crontabschedule_id_seq OWNED BY public.djcelery_crontabschedule.id; - - --- --- Name: djcelery_intervalschedule; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.djcelery_intervalschedule ( - id integer NOT NULL, - every integer NOT NULL, - period character varying(24) NOT NULL -); - - -ALTER TABLE public.djcelery_intervalschedule OWNER TO postgres; - --- --- Name: djcelery_intervalschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.djcelery_intervalschedule_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.djcelery_intervalschedule_id_seq OWNER TO postgres; - --- --- Name: djcelery_intervalschedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.djcelery_intervalschedule_id_seq OWNED BY public.djcelery_intervalschedule.id; - - --- --- Name: djcelery_periodictask; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.djcelery_periodictask ( - id integer NOT NULL, - name character varying(200) NOT NULL, - task character varying(200) NOT NULL, - interval_id integer, - crontab_id integer, - args text NOT NULL, - kwargs text NOT NULL, - queue character varying(200), - exchange character varying(200), - routing_key character varying(200), - expires timestamp with time zone, - enabled boolean NOT NULL, - last_run_at timestamp with time zone, - total_run_count integer NOT NULL, - date_changed timestamp with time zone NOT NULL, - description text NOT NULL, - CONSTRAINT djcelery_periodictask_total_run_count_check CHECK ((total_run_count >= 0)) -); - - -ALTER TABLE public.djcelery_periodictask OWNER TO postgres; - --- --- Name: djcelery_periodictask_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.djcelery_periodictask_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.djcelery_periodictask_id_seq OWNER TO postgres; - --- --- Name: djcelery_periodictask_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.djcelery_periodictask_id_seq OWNED BY public.djcelery_periodictask.id; - - --- --- Name: djcelery_periodictasks; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.djcelery_periodictasks ( - ident smallint NOT NULL, - last_update timestamp with time zone NOT NULL -); - - -ALTER TABLE public.djcelery_periodictasks OWNER TO postgres; - --- --- Name: djcelery_taskstate; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.djcelery_taskstate ( - id integer NOT NULL, - state character varying(64) NOT NULL, - task_id character varying(36) NOT NULL, - name character varying(200), - tstamp timestamp with time zone NOT NULL, - args text, - kwargs text, - eta timestamp with time zone, - expires timestamp with time zone, - result text, - traceback text, - runtime double precision, - retries integer NOT NULL, - worker_id integer, - hidden boolean NOT NULL -); - - -ALTER TABLE public.djcelery_taskstate OWNER TO postgres; - --- --- Name: djcelery_taskstate_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.djcelery_taskstate_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.djcelery_taskstate_id_seq OWNER TO postgres; - --- --- Name: djcelery_taskstate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.djcelery_taskstate_id_seq OWNED BY public.djcelery_taskstate.id; - - --- --- Name: djcelery_workerstate; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.djcelery_workerstate ( - id integer NOT NULL, - hostname character varying(255) NOT NULL, - last_heartbeat timestamp with time zone -); - - -ALTER TABLE public.djcelery_workerstate OWNER TO postgres; - --- --- Name: djcelery_workerstate_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.djcelery_workerstate_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.djcelery_workerstate_id_seq OWNER TO postgres; - --- --- Name: djcelery_workerstate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.djcelery_workerstate_id_seq OWNED BY public.djcelery_workerstate.id; - - --- --- Name: forms_field; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.forms_field ( - id integer NOT NULL, - _order integer, - form_id integer NOT NULL, - label text NOT NULL, - field_type integer NOT NULL, - required boolean NOT NULL, - visible boolean NOT NULL, - choices character varying(1000) NOT NULL, - "default" character varying(2000) NOT NULL, - placeholder_text character varying(100) NOT NULL, - help_text text NOT NULL -); - - -ALTER TABLE public.forms_field OWNER TO postgres; - --- --- Name: forms_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.forms_field_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.forms_field_id_seq OWNER TO postgres; - --- --- Name: forms_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.forms_field_id_seq OWNED BY public.forms_field.id; - - --- --- Name: forms_fieldentry; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.forms_fieldentry ( - id integer NOT NULL, - entry_id integer NOT NULL, - field_id integer NOT NULL, - value character varying(2000) -); - - -ALTER TABLE public.forms_fieldentry OWNER TO postgres; - --- --- Name: forms_fieldentry_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.forms_fieldentry_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.forms_fieldentry_id_seq OWNER TO postgres; - --- --- Name: forms_fieldentry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.forms_fieldentry_id_seq OWNED BY public.forms_fieldentry.id; - - --- --- Name: forms_form; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.forms_form ( - page_ptr_id integer NOT NULL, - content text NOT NULL, - button_text character varying(50) NOT NULL, - response text NOT NULL, - send_email boolean NOT NULL, - email_from character varying(254) NOT NULL, - email_copies character varying(200) NOT NULL, - email_subject character varying(200) NOT NULL, - email_message text NOT NULL -); - - -ALTER TABLE public.forms_form OWNER TO postgres; - --- --- Name: forms_formentry; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.forms_formentry ( - id integer NOT NULL, - form_id integer NOT NULL, - entry_time timestamp with time zone NOT NULL -); - - -ALTER TABLE public.forms_formentry OWNER TO postgres; - --- --- Name: forms_formentry_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.forms_formentry_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.forms_formentry_id_seq OWNER TO postgres; - --- --- Name: forms_formentry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.forms_formentry_id_seq OWNED BY public.forms_formentry.id; - - --- --- Name: ga_ows_ogrdataset; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_ows_ogrdataset ( - id integer NOT NULL, - location text NOT NULL, - checksum character varying(32) NOT NULL, - name character varying(255) NOT NULL, - human_name text, - extent public.geometry(Polygon,4326) NOT NULL, - collection_id integer NOT NULL -); - - -ALTER TABLE public.ga_ows_ogrdataset OWNER TO postgres; - --- --- Name: ga_ows_ogrdataset_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.ga_ows_ogrdataset_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ga_ows_ogrdataset_id_seq OWNER TO postgres; - --- --- Name: ga_ows_ogrdataset_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.ga_ows_ogrdataset_id_seq OWNED BY public.ga_ows_ogrdataset.id; - - --- --- Name: ga_ows_ogrdatasetcollection; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_ows_ogrdatasetcollection ( - id integer NOT NULL, - name character varying(255) NOT NULL -); - - -ALTER TABLE public.ga_ows_ogrdatasetcollection OWNER TO postgres; - --- --- Name: ga_ows_ogrdatasetcollection_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.ga_ows_ogrdatasetcollection_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ga_ows_ogrdatasetcollection_id_seq OWNER TO postgres; - --- --- Name: ga_ows_ogrdatasetcollection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.ga_ows_ogrdatasetcollection_id_seq OWNED BY public.ga_ows_ogrdatasetcollection.id; - - --- --- Name: ga_ows_ogrlayer; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_ows_ogrlayer ( - id integer NOT NULL, - name character varying(255) NOT NULL, - human_name text, - extent public.geometry(Polygon,4326) NOT NULL, - dataset_id integer NOT NULL -); - - -ALTER TABLE public.ga_ows_ogrlayer OWNER TO postgres; - --- --- Name: ga_ows_ogrlayer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.ga_ows_ogrlayer_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ga_ows_ogrlayer_id_seq OWNER TO postgres; - --- --- Name: ga_ows_ogrlayer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.ga_ows_ogrlayer_id_seq OWNED BY public.ga_ows_ogrlayer.id; - - --- --- Name: ga_resources_catalogpage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_catalogpage ( - page_ptr_id integer NOT NULL, - public boolean NOT NULL, - owner_id integer -); - - -ALTER TABLE public.ga_resources_catalogpage OWNER TO postgres; - --- --- Name: ga_resources_dataresource; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_dataresource ( - page_ptr_id integer NOT NULL, - content text NOT NULL, - resource_file character varying(100), - resource_url character varying(200), - resource_config text, - last_change timestamp with time zone, - last_refresh timestamp with time zone, - next_refresh timestamp with time zone, - refresh_every interval, - md5sum character varying(64), - metadata_url character varying(200), - metadata_xml text, - native_bounding_box public.geometry(Polygon,4326), - bounding_box public.geometry(Polygon,4326), - three_d boolean NOT NULL, - native_srs text, - public boolean NOT NULL, - driver character varying(255) NOT NULL, - big boolean NOT NULL, - owner_id integer -); - - -ALTER TABLE public.ga_resources_dataresource OWNER TO postgres; - --- --- Name: ga_resources_orderedresource; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_orderedresource ( - id integer NOT NULL, - ordering integer NOT NULL, - data_resource_id integer NOT NULL, - resource_group_id integer NOT NULL -); - - -ALTER TABLE public.ga_resources_orderedresource OWNER TO postgres; - --- --- Name: ga_resources_orderedresource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.ga_resources_orderedresource_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ga_resources_orderedresource_id_seq OWNER TO postgres; - --- --- Name: ga_resources_orderedresource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.ga_resources_orderedresource_id_seq OWNED BY public.ga_resources_orderedresource.id; - - --- --- Name: ga_resources_relatedresource; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_relatedresource ( - page_ptr_id integer NOT NULL, - content text NOT NULL, - resource_file character varying(100) NOT NULL, - foreign_key character varying(64), - local_key character varying(64), - left_index boolean NOT NULL, - right_index boolean NOT NULL, - how character varying(8) NOT NULL, - driver character varying(255) NOT NULL, - key_transform integer, - foreign_resource_id integer NOT NULL -); - - -ALTER TABLE public.ga_resources_relatedresource OWNER TO postgres; - --- --- Name: ga_resources_renderedlayer; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_renderedlayer ( - page_ptr_id integer NOT NULL, - content text NOT NULL, - default_class character varying(255) NOT NULL, - public boolean NOT NULL, - data_resource_id integer NOT NULL, - default_style_id integer NOT NULL, - owner_id integer -); - - -ALTER TABLE public.ga_resources_renderedlayer OWNER TO postgres; - --- --- Name: ga_resources_renderedlayer_styles; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_renderedlayer_styles ( - id integer NOT NULL, - renderedlayer_id integer NOT NULL, - style_id integer NOT NULL -); - - -ALTER TABLE public.ga_resources_renderedlayer_styles OWNER TO postgres; - --- --- Name: ga_resources_renderedlayer_styles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.ga_resources_renderedlayer_styles_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ga_resources_renderedlayer_styles_id_seq OWNER TO postgres; - --- --- Name: ga_resources_renderedlayer_styles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.ga_resources_renderedlayer_styles_id_seq OWNED BY public.ga_resources_renderedlayer_styles.id; - - --- --- Name: ga_resources_resourcegroup; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_resourcegroup ( - page_ptr_id integer NOT NULL, - is_timeseries boolean NOT NULL, - min_time timestamp with time zone, - max_time timestamp with time zone -); - - -ALTER TABLE public.ga_resources_resourcegroup OWNER TO postgres; - --- --- Name: ga_resources_style; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ga_resources_style ( - page_ptr_id integer NOT NULL, - legend character varying(100), - legend_width integer, - legend_height integer, - stylesheet text NOT NULL, - public boolean NOT NULL, - owner_id integer -); - - -ALTER TABLE public.ga_resources_style OWNER TO postgres; - --- --- Name: galleries_gallery; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.galleries_gallery ( - page_ptr_id integer NOT NULL, - content text NOT NULL, - zip_import character varying(100) NOT NULL -); - - -ALTER TABLE public.galleries_gallery OWNER TO postgres; - --- --- Name: galleries_galleryimage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.galleries_galleryimage ( - id integer NOT NULL, - _order integer, - gallery_id integer NOT NULL, - file character varying(200) NOT NULL, - description character varying(1000) NOT NULL -); - - -ALTER TABLE public.galleries_galleryimage OWNER TO postgres; - --- --- Name: galleries_galleryimage_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.galleries_galleryimage_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.galleries_galleryimage_id_seq OWNER TO postgres; - --- --- Name: galleries_galleryimage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.galleries_galleryimage_id_seq OWNED BY public.galleries_galleryimage.id; - - --- --- Name: generic_assignedkeyword; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.generic_assignedkeyword ( - id integer NOT NULL, - _order integer, - keyword_id integer NOT NULL, - content_type_id integer NOT NULL, - object_pk integer NOT NULL -); - - -ALTER TABLE public.generic_assignedkeyword OWNER TO postgres; - --- --- Name: generic_assignedkeyword_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.generic_assignedkeyword_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.generic_assignedkeyword_id_seq OWNER TO postgres; - --- --- Name: generic_assignedkeyword_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.generic_assignedkeyword_id_seq OWNED BY public.generic_assignedkeyword.id; - - --- --- Name: generic_keyword; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.generic_keyword ( - id integer NOT NULL, - site_id integer NOT NULL, - title character varying(500) NOT NULL, - slug character varying(2000) NOT NULL -); - - -ALTER TABLE public.generic_keyword OWNER TO postgres; - --- --- Name: generic_keyword_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.generic_keyword_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.generic_keyword_id_seq OWNER TO postgres; - --- --- Name: generic_keyword_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.generic_keyword_id_seq OWNED BY public.generic_keyword.id; - - --- --- Name: generic_rating; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.generic_rating ( - id integer NOT NULL, - value integer NOT NULL, - rating_date timestamp with time zone, - content_type_id integer NOT NULL, - object_pk integer NOT NULL, - user_id integer -); - - -ALTER TABLE public.generic_rating OWNER TO postgres; - --- --- Name: generic_rating_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.generic_rating_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.generic_rating_id_seq OWNER TO postgres; - --- --- Name: generic_rating_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.generic_rating_id_seq OWNED BY public.generic_rating.id; - - --- --- Name: generic_threadedcomment; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.generic_threadedcomment ( - comment_ptr_id integer NOT NULL, - rating_count integer NOT NULL, - rating_sum integer NOT NULL, - rating_average double precision NOT NULL, - by_author boolean NOT NULL, - replied_to_id integer -); - - -ALTER TABLE public.generic_threadedcomment OWNER TO postgres; - --- --- Name: health_check_db_testmodel; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.health_check_db_testmodel ( - id integer NOT NULL, - title character varying(128) NOT NULL -); - - -ALTER TABLE public.health_check_db_testmodel OWNER TO postgres; - --- --- Name: health_check_db_testmodel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.health_check_db_testmodel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.health_check_db_testmodel_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: hs_access_control_community; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_community ( - id integer NOT NULL, - name text NOT NULL, - description text NOT NULL, - purpose text, - auto_approve_group boolean NOT NULL, - date_created timestamp with time zone NOT NULL, - picture character varying(100), - closed boolean NOT NULL, - email text, - url text, - active boolean NOT NULL, - auto_approve_resource boolean NOT NULL, - banner character varying(100) -); - - -ALTER TABLE public.hs_access_control_community OWNER TO postgres; - --- --- Name: hs_access_control_community_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_community_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_community_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_community_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_community_id_seq OWNED BY public.hs_access_control_community.id; - - --- --- Name: hs_access_control_communityresourceprivilege; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_communityresourceprivilege ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - community_id integer NOT NULL, - grantor_id integer NOT NULL, - resource_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_communityresourceprivilege OWNER TO postgres; - --- --- Name: hs_access_control_communityresourceprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_communityresourceprivilege_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_communityresourceprivilege_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_communityresourceprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_communityresourceprivilege_id_seq OWNED BY public.hs_access_control_communityresourceprivilege.id; - - --- --- Name: hs_access_control_communityresourceprovenance; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_communityresourceprovenance ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - undone boolean NOT NULL, - community_id integer NOT NULL, - grantor_id integer, - resource_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_communityresourceprovenance OWNER TO postgres; - --- --- Name: hs_access_control_communityresourceprovenance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_communityresourceprovenance_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_communityresourceprovenance_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_communityresourceprovenance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_communityresourceprovenance_id_seq OWNED BY public.hs_access_control_communityresourceprovenance.id; - - --- --- Name: hs_access_control_feature; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_feature ( - id integer NOT NULL, - feature integer NOT NULL, - enabled boolean NOT NULL, - user_id integer -); - - -ALTER TABLE public.hs_access_control_feature OWNER TO postgres; - --- --- Name: hs_access_control_feature_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_feature_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_feature_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_feature_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_feature_id_seq OWNED BY public.hs_access_control_feature.id; - - --- --- Name: hs_access_control_groupaccess; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupaccess ( - id integer NOT NULL, - active boolean NOT NULL, - discoverable boolean NOT NULL, - public boolean NOT NULL, - shareable boolean NOT NULL, - group_id integer NOT NULL, - date_created timestamp with time zone NOT NULL, - description text NOT NULL, - picture character varying(100), - purpose text, - auto_approve boolean NOT NULL, - requires_explanation boolean NOT NULL, - email character varying(254), - url character varying(200) -); - - -ALTER TABLE public.hs_access_control_groupaccess OWNER TO postgres; - --- --- Name: hs_access_control_groupaccess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupaccess_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupaccess_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupaccess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupaccess_id_seq OWNED BY public.hs_access_control_groupaccess.id; - - --- --- Name: hs_access_control_groupcommunityprivilege; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupcommunityprivilege ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - community_id integer NOT NULL, - grantor_id integer NOT NULL, - group_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_groupcommunityprivilege OWNER TO postgres; - --- --- Name: hs_access_control_groupcommunityprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupcommunityprivilege_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupcommunityprivilege_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupcommunityprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupcommunityprivilege_id_seq OWNED BY public.hs_access_control_groupcommunityprivilege.id; - - --- --- Name: hs_access_control_groupcommunityprovenance; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupcommunityprovenance ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - undone boolean NOT NULL, - community_id integer NOT NULL, - grantor_id integer, - group_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_groupcommunityprovenance OWNER TO postgres; - --- --- Name: hs_access_control_groupcommunityprovenance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupcommunityprovenance_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupcommunityprovenance_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupcommunityprovenance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupcommunityprovenance_id_seq OWNED BY public.hs_access_control_groupcommunityprovenance.id; - - --- --- Name: hs_access_control_groupcommunityrequest; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupcommunityrequest ( - id integer NOT NULL, - privilege integer, - redeemed boolean NOT NULL, - approved boolean NOT NULL, - community_id integer NOT NULL, - community_owner_id integer, - group_id integer NOT NULL, - group_owner_id integer, - when_community timestamp with time zone, - when_group timestamp with time zone -); - - -ALTER TABLE public.hs_access_control_groupcommunityrequest OWNER TO postgres; - --- --- Name: hs_access_control_groupcommunityrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupcommunityrequest_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupcommunityrequest_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupcommunityrequest_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupcommunityrequest_id_seq OWNED BY public.hs_access_control_groupcommunityrequest.id; - - --- --- Name: hs_access_control_groupmembershiprequest; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupmembershiprequest ( - id integer NOT NULL, - date_requested timestamp with time zone NOT NULL, - group_to_join_id integer NOT NULL, - invitation_to_id integer, - request_from_id integer NOT NULL, - redeemed boolean NOT NULL, - explanation text -); - - -ALTER TABLE public.hs_access_control_groupmembershiprequest OWNER TO postgres; - --- --- Name: hs_access_control_groupmembershiprequest_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupmembershiprequest_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupmembershiprequest_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupmembershiprequest_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupmembershiprequest_id_seq OWNED BY public.hs_access_control_groupmembershiprequest.id; - - --- --- Name: hs_access_control_groupresourceprivilege; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupresourceprivilege ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - grantor_id integer NOT NULL, - group_id integer NOT NULL, - resource_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_groupresourceprivilege OWNER TO postgres; - --- --- Name: hs_access_control_groupresourceprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupresourceprivilege_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupresourceprivilege_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupresourceprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupresourceprivilege_id_seq OWNED BY public.hs_access_control_groupresourceprivilege.id; - - --- --- Name: hs_access_control_groupresourceprovenance; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_groupresourceprovenance ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - grantor_id integer, - group_id integer NOT NULL, - resource_id integer NOT NULL, - undone boolean NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_groupresourceprovenance OWNER TO postgres; - --- --- Name: hs_access_control_groupresourceprovenance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_groupresourceprovenance_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_groupresourceprovenance_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_groupresourceprovenance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_groupresourceprovenance_id_seq OWNED BY public.hs_access_control_groupresourceprovenance.id; - - --- --- Name: hs_access_control_requestcommunity; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_requestcommunity ( - id integer NOT NULL, - date_requested timestamp with time zone NOT NULL, - date_processed timestamp with time zone, - pending_approval boolean NOT NULL, - declined boolean NOT NULL, - decline_reason text, - community_to_approve_id integer NOT NULL, - requested_by_id integer NOT NULL, - cancelled boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_requestcommunity OWNER TO postgres; - --- --- Name: hs_access_control_requestcommunity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.hs_access_control_requestcommunity ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.hs_access_control_requestcommunity_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: hs_access_control_resourceaccess; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_resourceaccess ( - id integer NOT NULL, - active boolean NOT NULL, - discoverable boolean NOT NULL, - public boolean NOT NULL, - shareable boolean NOT NULL, - published boolean NOT NULL, - immutable boolean NOT NULL, - resource_id integer NOT NULL, - require_download_agreement boolean NOT NULL, - allow_private_sharing boolean NOT NULL, - review_pending boolean DEFAULT false NOT NULL -); - - -ALTER TABLE public.hs_access_control_resourceaccess OWNER TO postgres; - --- --- Name: hs_access_control_resourceaccess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_resourceaccess_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_resourceaccess_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_resourceaccess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_resourceaccess_id_seq OWNED BY public.hs_access_control_resourceaccess.id; - - --- --- Name: hs_access_control_useraccess; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_useraccess ( - id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_access_control_useraccess OWNER TO postgres; - --- --- Name: hs_access_control_useraccess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_useraccess_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_useraccess_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_useraccess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_useraccess_id_seq OWNED BY public.hs_access_control_useraccess.id; - - --- --- Name: hs_access_control_usercommunityprivilege; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_usercommunityprivilege ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - community_id integer NOT NULL, - grantor_id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_access_control_usercommunityprivilege OWNER TO postgres; - --- --- Name: hs_access_control_usercommunityprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_usercommunityprivilege_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_usercommunityprivilege_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_usercommunityprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_usercommunityprivilege_id_seq OWNED BY public.hs_access_control_usercommunityprivilege.id; - - --- --- Name: hs_access_control_usercommunityprovenance; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_usercommunityprovenance ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - undone boolean NOT NULL, - community_id integer NOT NULL, - grantor_id integer, - user_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_usercommunityprovenance OWNER TO postgres; - --- --- Name: hs_access_control_usercommunityprovenance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_usercommunityprovenance_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_usercommunityprovenance_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_usercommunityprovenance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_usercommunityprovenance_id_seq OWNED BY public.hs_access_control_usercommunityprovenance.id; - - --- --- Name: hs_access_control_usergroupprivilege; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_usergroupprivilege ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - grantor_id integer NOT NULL, - group_id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_access_control_usergroupprivilege OWNER TO postgres; - --- --- Name: hs_access_control_usergroupprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_usergroupprivilege_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_usergroupprivilege_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_usergroupprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_usergroupprivilege_id_seq OWNED BY public.hs_access_control_usergroupprivilege.id; - - --- --- Name: hs_access_control_usergroupprovenance; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_usergroupprovenance ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - grantor_id integer, - group_id integer NOT NULL, - user_id integer NOT NULL, - undone boolean NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_usergroupprovenance OWNER TO postgres; - --- --- Name: hs_access_control_usergroupprovenance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_usergroupprovenance_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_usergroupprovenance_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_usergroupprovenance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_usergroupprovenance_id_seq OWNED BY public.hs_access_control_usergroupprovenance.id; - - --- --- Name: hs_access_control_userresourceprivilege; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_userresourceprivilege ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - grantor_id integer NOT NULL, - resource_id integer NOT NULL, - user_id integer NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_userresourceprivilege OWNER TO postgres; - --- --- Name: hs_access_control_userresourceprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_userresourceprivilege_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_userresourceprivilege_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_userresourceprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_userresourceprivilege_id_seq OWNED BY public.hs_access_control_userresourceprivilege.id; - - --- --- Name: hs_access_control_userresourceprovenance; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_access_control_userresourceprovenance ( - id integer NOT NULL, - privilege integer NOT NULL, - start timestamp with time zone NOT NULL, - grantor_id integer, - resource_id integer NOT NULL, - user_id integer NOT NULL, - undone boolean NOT NULL, - exhibit boolean NOT NULL -); - - -ALTER TABLE public.hs_access_control_userresourceprovenance OWNER TO postgres; - --- --- Name: hs_access_control_userresourceprovenance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_access_control_userresourceprovenance_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_access_control_userresourceprovenance_id_seq OWNER TO postgres; - --- --- Name: hs_access_control_userresourceprovenance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_access_control_userresourceprovenance_id_seq OWNED BY public.hs_access_control_userresourceprovenance.id; - - --- --- Name: hs_file_types_originalcoverage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_originalcoverage ( - id integer NOT NULL, - object_id integer NOT NULL, - _value character varying(1024), - projection_string_type character varying(20), - projection_string_text text, - content_type_id integer NOT NULL, - datum character varying(300) NOT NULL, - CONSTRAINT "hs_app_netCDF_originalcoverage_object_id_check" CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_originalcoverage OWNER TO postgres; - --- --- Name: hs_app_netCDF_originalcoverage_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public."hs_app_netCDF_originalcoverage_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public."hs_app_netCDF_originalcoverage_id_seq" OWNER TO postgres; - --- --- Name: hs_app_netCDF_originalcoverage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public."hs_app_netCDF_originalcoverage_id_seq" OWNED BY public.hs_file_types_originalcoverage.id; - - --- --- Name: hs_file_types_variable; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_variable ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(1000) NOT NULL, - unit character varying(1000) NOT NULL, - type character varying(1000) NOT NULL, - shape character varying(1000) NOT NULL, - descriptive_name character varying(1000), - method text, - missing_value character varying(1000), - content_type_id integer NOT NULL, - CONSTRAINT "hs_app_netCDF_variable_object_id_check" CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_variable OWNER TO postgres; - --- --- Name: hs_app_netCDF_variable_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public."hs_app_netCDF_variable_id_seq" - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public."hs_app_netCDF_variable_id_seq" OWNER TO postgres; - --- --- Name: hs_app_netCDF_variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public."hs_app_netCDF_variable_id_seq" OWNED BY public.hs_file_types_variable.id; - - --- --- Name: hs_file_types_method; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_method ( - id integer NOT NULL, - object_id integer NOT NULL, - method_code character varying(50) NOT NULL, - method_name character varying(200) NOT NULL, - method_type character varying(200) NOT NULL, - method_description text, - method_link character varying(200), - content_type_id integer NOT NULL, - is_dirty boolean NOT NULL, - series_ids character varying(36)[] NOT NULL, - CONSTRAINT hs_app_timeseries_method_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_method OWNER TO postgres; - --- --- Name: hs_app_timeseries_method_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_app_timeseries_method_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_app_timeseries_method_id_seq OWNER TO postgres; - --- --- Name: hs_app_timeseries_method_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_app_timeseries_method_id_seq OWNED BY public.hs_file_types_method.id; - - --- --- Name: hs_file_types_processinglevel; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_processinglevel ( - id integer NOT NULL, - object_id integer NOT NULL, - processing_level_code character varying(50) NOT NULL, - definition character varying(200), - explanation text, - content_type_id integer NOT NULL, - is_dirty boolean NOT NULL, - series_ids character varying(36)[] NOT NULL, - CONSTRAINT hs_app_timeseries_processinglevel_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_processinglevel OWNER TO postgres; - --- --- Name: hs_app_timeseries_processinglevel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_app_timeseries_processinglevel_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_app_timeseries_processinglevel_id_seq OWNER TO postgres; - --- --- Name: hs_app_timeseries_processinglevel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_app_timeseries_processinglevel_id_seq OWNED BY public.hs_file_types_processinglevel.id; - - --- --- Name: hs_file_types_site; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_site ( - id integer NOT NULL, - object_id integer NOT NULL, - site_code character varying(200) NOT NULL, - site_name character varying(255), - elevation_m double precision, - elevation_datum character varying(50), - site_type character varying(100), - content_type_id integer NOT NULL, - is_dirty boolean NOT NULL, - series_ids character varying(36)[] NOT NULL, - latitude double precision, - longitude double precision, - CONSTRAINT hs_app_timeseries_site_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_site OWNER TO postgres; - --- --- Name: hs_app_timeseries_site_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_app_timeseries_site_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_app_timeseries_site_id_seq OWNER TO postgres; - --- --- Name: hs_app_timeseries_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_app_timeseries_site_id_seq OWNED BY public.hs_file_types_site.id; - - --- --- Name: hs_file_types_timeseriesresult; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_timeseriesresult ( - id integer NOT NULL, - object_id integer NOT NULL, - units_type character varying(255) NOT NULL, - units_name character varying(255) NOT NULL, - units_abbreviation character varying(20) NOT NULL, - status character varying(255), - sample_medium character varying(255) NOT NULL, - value_count integer NOT NULL, - aggregation_statistics character varying(255) NOT NULL, - content_type_id integer NOT NULL, - is_dirty boolean NOT NULL, - series_ids character varying(36)[] NOT NULL, - series_label character varying(255), - CONSTRAINT hs_app_timeseries_timeseriesresult_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_timeseriesresult OWNER TO postgres; - --- --- Name: hs_app_timeseries_timeseriesresult_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_app_timeseries_timeseriesresult_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_app_timeseries_timeseriesresult_id_seq OWNER TO postgres; - --- --- Name: hs_app_timeseries_timeseriesresult_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_app_timeseries_timeseriesresult_id_seq OWNED BY public.hs_file_types_timeseriesresult.id; - - --- --- Name: hs_file_types_utcoffset; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_utcoffset ( - id integer NOT NULL, - object_id integer NOT NULL, - series_ids character varying(36)[] NOT NULL, - is_dirty boolean NOT NULL, - value double precision NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_app_timeseries_utcoffset_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_utcoffset OWNER TO postgres; - --- --- Name: hs_app_timeseries_utcoffset_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_app_timeseries_utcoffset_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_app_timeseries_utcoffset_id_seq OWNER TO postgres; - --- --- Name: hs_app_timeseries_utcoffset_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_app_timeseries_utcoffset_id_seq OWNED BY public.hs_file_types_utcoffset.id; - - --- --- Name: hs_file_types_variabletimeseries; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_variabletimeseries ( - id integer NOT NULL, - object_id integer NOT NULL, - variable_code character varying(50) NOT NULL, - variable_name character varying(100) NOT NULL, - variable_type character varying(100) NOT NULL, - no_data_value integer NOT NULL, - variable_definition character varying(255), - speciation character varying(255), - content_type_id integer NOT NULL, - is_dirty boolean NOT NULL, - series_ids character varying(36)[] NOT NULL, - CONSTRAINT hs_app_timeseries_variable_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_variabletimeseries OWNER TO postgres; - --- --- Name: hs_app_timeseries_variable_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_app_timeseries_variable_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_app_timeseries_variable_id_seq OWNER TO postgres; - --- --- Name: hs_app_timeseries_variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_app_timeseries_variable_id_seq OWNED BY public.hs_file_types_variabletimeseries.id; - - --- --- Name: hs_collection_resource_collectiondeletedresource; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_collection_resource_collectiondeletedresource ( - id integer NOT NULL, - resource_title text NOT NULL, - date_deleted timestamp with time zone NOT NULL, - resource_id character varying(32) NOT NULL, - resource_type character varying(50) NOT NULL, - collection_id integer NOT NULL, - deleted_by_id integer NOT NULL -); - - -ALTER TABLE public.hs_collection_resource_collectiondeletedresource OWNER TO postgres; - --- --- Name: hs_collection_resource_collectiondeletedresource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_collection_resource_collectiondeletedresource_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_collection_resource_collectiondeletedresource_id_seq OWNER TO postgres; - --- --- Name: hs_collection_resource_collectiondeletedresource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_collection_resource_collectiondeletedresource_id_seq OWNED BY public.hs_collection_resource_collectiondeletedresource.id; - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_od9f5; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_collection_resource_collectiondeletedresource_resource_od9f5 ( - id integer NOT NULL, - collectiondeletedresource_id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_collection_resource_collectiondeletedresource_resource_od9f5 OWNER TO postgres; - --- --- Name: hs_collection_resource_collectiondeletedresource_resourc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_collection_resource_collectiondeletedresource_resourc_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_collection_resource_collectiondeletedresource_resourc_id_seq OWNER TO postgres; - --- --- Name: hs_collection_resource_collectiondeletedresource_resourc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_collection_resource_collectiondeletedresource_resourc_id_seq OWNED BY public.hs_collection_resource_collectiondeletedresource_resource_od9f5.id; - - --- --- Name: hs_communities_topic; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_communities_topic ( - id integer NOT NULL, - name character varying(255) NOT NULL -); - - -ALTER TABLE public.hs_communities_topic OWNER TO postgres; - --- --- Name: hs_communities_topic_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_communities_topic_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_communities_topic_id_seq OWNER TO postgres; - --- --- Name: hs_communities_topic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_communities_topic_id_seq OWNED BY public.hs_communities_topic.id; - - --- --- Name: hs_core_citation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_citation ( - id integer NOT NULL, - object_id integer NOT NULL, - value text NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_citation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_citation OWNER TO postgres; - --- --- Name: hs_core_citation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_citation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_citation_id_seq OWNER TO postgres; - --- --- Name: hs_core_citation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_citation_id_seq OWNED BY public.hs_core_citation.id; - - --- --- Name: hs_core_contributor; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_contributor ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(100), - organization character varying(200), - email character varying(254), - address character varying(250), - phone character varying(25), - homepage character varying(200), - content_type_id integer NOT NULL, - identifiers public.hstore NOT NULL, - hydroshare_user_id integer, - is_active_user boolean DEFAULT false NOT NULL, - CONSTRAINT hs_core_contributor_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_contributor OWNER TO postgres; - --- --- Name: hs_core_contributor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_contributor_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_contributor_id_seq OWNER TO postgres; - --- --- Name: hs_core_contributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_contributor_id_seq OWNED BY public.hs_core_contributor.id; - - --- --- Name: hs_core_coremetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_coremetadata ( - id integer NOT NULL -); - - -ALTER TABLE public.hs_core_coremetadata OWNER TO postgres; - --- --- Name: hs_core_coremetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_coremetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_coremetadata_id_seq OWNER TO postgres; - --- --- Name: hs_core_coremetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_coremetadata_id_seq OWNED BY public.hs_core_coremetadata.id; - - --- --- Name: hs_core_coverage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_coverage ( - id integer NOT NULL, - object_id integer NOT NULL, - type character varying(20) NOT NULL, - _value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_coverage_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_coverage OWNER TO postgres; - --- --- Name: hs_core_coverage_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_coverage_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_coverage_id_seq OWNER TO postgres; - --- --- Name: hs_core_coverage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_coverage_id_seq OWNED BY public.hs_core_coverage.id; - - --- --- Name: hs_core_creator; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_creator ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(100), - organization character varying(200), - email character varying(254), - address character varying(250), - phone character varying(25), - homepage character varying(200), - "order" integer NOT NULL, - content_type_id integer NOT NULL, - identifiers public.hstore NOT NULL, - hydroshare_user_id integer, - is_active_user boolean DEFAULT false NOT NULL, - CONSTRAINT hs_core_creator_object_id_check CHECK ((object_id >= 0)), - CONSTRAINT hs_core_creator_order_check CHECK (("order" >= 0)) -); - - -ALTER TABLE public.hs_core_creator OWNER TO postgres; - --- --- Name: hs_core_creator_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_creator_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_creator_id_seq OWNER TO postgres; - --- --- Name: hs_core_creator_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_creator_id_seq OWNED BY public.hs_core_creator.id; - - --- --- Name: hs_core_date; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_date ( - id integer NOT NULL, - object_id integer NOT NULL, - type character varying(20) NOT NULL, - start_date timestamp with time zone NOT NULL, - end_date timestamp with time zone, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_date_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_date OWNER TO postgres; - --- --- Name: hs_core_date_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_date_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_date_id_seq OWNER TO postgres; - --- --- Name: hs_core_date_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_date_id_seq OWNED BY public.hs_core_date.id; - - --- --- Name: hs_core_description; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_description ( - id integer NOT NULL, - object_id integer NOT NULL, - abstract text NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_description_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_description OWNER TO postgres; - --- --- Name: hs_core_description_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_description_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_description_id_seq OWNER TO postgres; - --- --- Name: hs_core_description_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_description_id_seq OWNED BY public.hs_core_description.id; - - --- --- Name: hs_core_format; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_format ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(150) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_format_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_format OWNER TO postgres; - --- --- Name: hs_core_format_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_format_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_format_id_seq OWNER TO postgres; - --- --- Name: hs_core_format_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_format_id_seq OWNED BY public.hs_core_format.id; - - --- --- Name: hs_core_fundingagency; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_fundingagency ( - id integer NOT NULL, - object_id integer NOT NULL, - agency_name text NOT NULL, - award_title text, - award_number text, - agency_url character varying(200), - content_type_id integer NOT NULL, - CONSTRAINT hs_core_fundingagency_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_fundingagency OWNER TO postgres; - --- --- Name: hs_core_fundingagency_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_fundingagency_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_fundingagency_id_seq OWNER TO postgres; - --- --- Name: hs_core_fundingagency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_fundingagency_id_seq OWNED BY public.hs_core_fundingagency.id; - - --- --- Name: hs_core_genericresource; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_genericresource ( - page_ptr_id integer NOT NULL, - comments_count integer NOT NULL, - rating_count integer NOT NULL, - rating_sum integer NOT NULL, - rating_average double precision NOT NULL, - content text NOT NULL, - short_id character varying(32) NOT NULL, - doi character varying(128) NOT NULL, - object_id integer, - content_type_id integer, - creator_id integer NOT NULL, - last_changed_by_id integer NOT NULL, - user_id integer NOT NULL, - resource_type character varying(50) NOT NULL, - file_unpack_message text, - file_unpack_status character varying(7), - locked_time timestamp with time zone, - extra_metadata public.hstore NOT NULL, - extra_data public.hstore NOT NULL, - download_count integer NOT NULL, - view_count integer NOT NULL, - repaired timestamp with time zone, - files_checked timestamp with time zone, - spam_allowlisted boolean NOT NULL, - bag_last_downloaded timestamp with time zone, - quota_holder_id integer, - CONSTRAINT hs_core_genericresource_download_count_check CHECK ((download_count >= 0)), - CONSTRAINT hs_core_genericresource_object_id_check CHECK ((object_id >= 0)), - CONSTRAINT hs_core_genericresource_view_count_check CHECK ((view_count >= 0)) -); - - -ALTER TABLE public.hs_core_genericresource OWNER TO postgres; - --- --- Name: hs_core_genericresource_collections; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_genericresource_collections ( - id integer NOT NULL, - from_baseresource_id integer NOT NULL, - to_baseresource_id integer NOT NULL -); - - -ALTER TABLE public.hs_core_genericresource_collections OWNER TO postgres; - --- --- Name: hs_core_genericresource_collections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_genericresource_collections_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_genericresource_collections_id_seq OWNER TO postgres; - --- --- Name: hs_core_genericresource_collections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_genericresource_collections_id_seq OWNED BY public.hs_core_genericresource_collections.id; - - --- --- Name: hs_core_geospatialrelation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_geospatialrelation ( - id integer NOT NULL, - object_id integer NOT NULL, - type character varying(100) NOT NULL, - value text NOT NULL, - text text NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_geospatialrelation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_geospatialrelation OWNER TO postgres; - --- --- Name: hs_core_geospatialrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.hs_core_geospatialrelation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.hs_core_geospatialrelation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: hs_core_groupownership; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_groupownership ( - id integer NOT NULL, - group_id integer NOT NULL, - owner_id integer NOT NULL -); - - -ALTER TABLE public.hs_core_groupownership OWNER TO postgres; - --- --- Name: hs_core_groupownership_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_groupownership_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_groupownership_id_seq OWNER TO postgres; - --- --- Name: hs_core_groupownership_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_groupownership_id_seq OWNED BY public.hs_core_groupownership.id; - - --- --- Name: hs_core_identifier; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_identifier ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(100) NOT NULL, - url character varying(200) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_identifier_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_identifier OWNER TO postgres; - --- --- Name: hs_core_identifier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_identifier_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_identifier_id_seq OWNER TO postgres; - --- --- Name: hs_core_identifier_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_identifier_id_seq OWNED BY public.hs_core_identifier.id; - - --- --- Name: hs_core_language; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_language ( - id integer NOT NULL, - object_id integer NOT NULL, - code character varying(7) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_language_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_language OWNER TO postgres; - --- --- Name: hs_core_language_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_language_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_language_id_seq OWNER TO postgres; - --- --- Name: hs_core_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_language_id_seq OWNED BY public.hs_core_language.id; - - --- --- Name: hs_core_publisher; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_publisher ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(200) NOT NULL, - url character varying(200) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_publisher_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_publisher OWNER TO postgres; - --- --- Name: hs_core_publisher_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_publisher_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_publisher_id_seq OWNER TO postgres; - --- --- Name: hs_core_publisher_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_publisher_id_seq OWNED BY public.hs_core_publisher.id; - - --- --- Name: hs_core_relation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_relation ( - id integer NOT NULL, - object_id integer NOT NULL, - type character varying(100) NOT NULL, - value text NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_relation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_relation OWNER TO postgres; - --- --- Name: hs_core_relation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_relation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_relation_id_seq OWNER TO postgres; - --- --- Name: hs_core_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_relation_id_seq OWNED BY public.hs_core_relation.id; - - --- --- Name: hs_core_resourcefile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_resourcefile ( - id integer NOT NULL, - object_id integer NOT NULL, - resource_file character varying(4096) NOT NULL, - content_type_id integer NOT NULL, - file_folder character varying(4096) NOT NULL, - logical_file_content_type_id integer, - logical_file_object_id integer, - _size bigint NOT NULL, - _checksum character varying(255), - _modified_time timestamp with time zone, - filesize_cache_updated timestamp with time zone, - CONSTRAINT hs_core_resourcefile_logical_file_object_id_check CHECK ((logical_file_object_id >= 0)), - CONSTRAINT hs_core_resourcefile_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_resourcefile OWNER TO postgres; - --- --- Name: hs_core_resourcefile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_resourcefile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_resourcefile_id_seq OWNER TO postgres; - --- --- Name: hs_core_resourcefile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_resourcefile_id_seq OWNED BY public.hs_core_resourcefile.id; - - --- --- Name: hs_core_rights; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_rights ( - id integer NOT NULL, - object_id integer NOT NULL, - statement text NOT NULL, - url character varying(200), - content_type_id integer NOT NULL, - CONSTRAINT hs_core_rights_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_rights OWNER TO postgres; - --- --- Name: hs_core_rights_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_rights_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_rights_id_seq OWNER TO postgres; - --- --- Name: hs_core_rights_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_rights_id_seq OWNED BY public.hs_core_rights.id; - - --- --- Name: hs_core_subject; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_subject ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(100) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_subject_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_subject OWNER TO postgres; - --- --- Name: hs_core_subject_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_subject_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_subject_id_seq OWNER TO postgres; - --- --- Name: hs_core_subject_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_subject_id_seq OWNED BY public.hs_core_subject.id; - - --- --- Name: hs_core_tasknotification; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_tasknotification ( - id integer NOT NULL, - task_id character varying(50) NOT NULL, - name character varying(1000) NOT NULL, - payload character varying(1000) NOT NULL, - status character varying(20) NOT NULL, - username character varying(150) NOT NULL, - created timestamp with time zone NOT NULL -); - - -ALTER TABLE public.hs_core_tasknotification OWNER TO postgres; - --- --- Name: hs_core_tasknotification_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_tasknotification_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_tasknotification_id_seq OWNER TO postgres; - --- --- Name: hs_core_tasknotification_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_tasknotification_id_seq OWNED BY public.hs_core_tasknotification.id; - - --- --- Name: hs_core_title; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_title ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(300) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_title_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_title OWNER TO postgres; - --- --- Name: hs_core_title_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_title_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_title_id_seq OWNER TO postgres; - --- --- Name: hs_core_title_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_title_id_seq OWNED BY public.hs_core_title.id; - - --- --- Name: hs_core_type; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_core_type ( - id integer NOT NULL, - object_id integer NOT NULL, - url character varying(200) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_core_type_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_core_type OWNER TO postgres; - --- --- Name: hs_core_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_core_type_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_core_type_id_seq OWNER TO postgres; - --- --- Name: hs_core_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_core_type_id_seq OWNED BY public.hs_core_type.id; - - --- --- Name: hs_dictionary_subjectarea; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_dictionary_subjectarea ( - id integer NOT NULL, - name character varying(255) NOT NULL -); - - -ALTER TABLE public.hs_dictionary_subjectarea OWNER TO postgres; - --- --- Name: hs_dictionary_subjectarea_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.hs_dictionary_subjectarea ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.hs_dictionary_subjectarea_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: hs_dictionary_uncategorizedterm; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_dictionary_uncategorizedterm ( - id integer NOT NULL, - name character varying(255) NOT NULL -); - - -ALTER TABLE public.hs_dictionary_uncategorizedterm OWNER TO postgres; - --- --- Name: hs_dictionary_uncategorizedterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_dictionary_uncategorizedterm_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_dictionary_uncategorizedterm_id_seq OWNER TO postgres; - --- --- Name: hs_dictionary_uncategorizedterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_dictionary_uncategorizedterm_id_seq OWNED BY public.hs_dictionary_uncategorizedterm.id; - - --- --- Name: hs_dictionary_university; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_dictionary_university ( - id integer NOT NULL, - country_code character varying(2) NOT NULL, - name character varying(255) NOT NULL, - url character varying(255) NOT NULL -); - - -ALTER TABLE public.hs_dictionary_university OWNER TO postgres; - --- --- Name: hs_dictionary_university_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_dictionary_university_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_dictionary_university_id_seq OWNER TO postgres; - --- --- Name: hs_dictionary_university_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_dictionary_university_id_seq OWNED BY public.hs_dictionary_university.id; - - --- --- Name: hs_file_types_bandinformation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_bandinformation ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(500), - "variableName" text, - "variableUnit" character varying(50), - method text, - comment text, - content_type_id integer NOT NULL, - "maximumValue" text, - "minimumValue" text, - "noDataValue" text, - CONSTRAINT hs_geo_raster_resource_bandinformation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_bandinformation OWNER TO postgres; - --- --- Name: hs_file_types_cellinformation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cellinformation ( - id integer NOT NULL, - object_id integer NOT NULL, - name character varying(500), - rows integer, - columns integer, - "cellSizeXValue" double precision, - "cellSizeYValue" double precision, - "cellDataType" character varying(50), - content_type_id integer NOT NULL, - CONSTRAINT hs_geo_raster_resource_cellinformation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_cellinformation OWNER TO postgres; - --- --- Name: hs_file_types_csvfilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_csvfilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL, - "tableSchema" jsonb NOT NULL -); - - -ALTER TABLE public.hs_file_types_csvfilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_csvfilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.hs_file_types_csvfilemetadata ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.hs_file_types_csvfilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: hs_file_types_csvlogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_csvlogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - extra_data public.hstore NOT NULL, - preview_data text NOT NULL, - metadata_id integer NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_csvlogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_csvlogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.hs_file_types_csvlogicalfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.hs_file_types_csvlogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: hs_file_types_cvaggregationstatistic; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvaggregationstatistic ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvaggregationstatistic OWNER TO postgres; - --- --- Name: hs_file_types_cvaggregationstatistic_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvaggregationstatistic_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvaggregationstatistic_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvaggregationstatistic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvaggregationstatistic_id_seq OWNED BY public.hs_file_types_cvaggregationstatistic.id; - - --- --- Name: hs_file_types_cvelevationdatum; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvelevationdatum ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvelevationdatum OWNER TO postgres; - --- --- Name: hs_file_types_cvelevationdatum_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvelevationdatum_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvelevationdatum_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvelevationdatum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvelevationdatum_id_seq OWNED BY public.hs_file_types_cvelevationdatum.id; - - --- --- Name: hs_file_types_cvmedium; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvmedium ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvmedium OWNER TO postgres; - --- --- Name: hs_file_types_cvmedium_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvmedium_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvmedium_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvmedium_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvmedium_id_seq OWNED BY public.hs_file_types_cvmedium.id; - - --- --- Name: hs_file_types_cvmethodtype; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvmethodtype ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvmethodtype OWNER TO postgres; - --- --- Name: hs_file_types_cvmethodtype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvmethodtype_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvmethodtype_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvmethodtype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvmethodtype_id_seq OWNED BY public.hs_file_types_cvmethodtype.id; - - --- --- Name: hs_file_types_cvsitetype; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvsitetype ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvsitetype OWNER TO postgres; - --- --- Name: hs_file_types_cvsitetype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvsitetype_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvsitetype_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvsitetype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvsitetype_id_seq OWNED BY public.hs_file_types_cvsitetype.id; - - --- --- Name: hs_file_types_cvspeciation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvspeciation ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvspeciation OWNER TO postgres; - --- --- Name: hs_file_types_cvspeciation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvspeciation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvspeciation_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvspeciation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvspeciation_id_seq OWNED BY public.hs_file_types_cvspeciation.id; - - --- --- Name: hs_file_types_cvstatus; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvstatus ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvstatus OWNER TO postgres; - --- --- Name: hs_file_types_cvstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvstatus_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvstatus_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvstatus_id_seq OWNED BY public.hs_file_types_cvstatus.id; - - --- --- Name: hs_file_types_cvunitstype; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvunitstype ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvunitstype OWNER TO postgres; - --- --- Name: hs_file_types_cvunitstype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvunitstype_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvunitstype_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvunitstype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvunitstype_id_seq OWNED BY public.hs_file_types_cvunitstype.id; - - --- --- Name: hs_file_types_cvvariablename; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvvariablename ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvvariablename OWNER TO postgres; - --- --- Name: hs_file_types_cvvariablename_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvvariablename_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvvariablename_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvvariablename_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvvariablename_id_seq OWNED BY public.hs_file_types_cvvariablename.id; - - --- --- Name: hs_file_types_cvvariabletype; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_cvvariabletype ( - id integer NOT NULL, - term character varying(255) NOT NULL, - name character varying(255) NOT NULL, - is_dirty boolean NOT NULL, - metadata_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_cvvariabletype OWNER TO postgres; - --- --- Name: hs_file_types_cvvariabletype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_cvvariabletype_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_cvvariabletype_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_cvvariabletype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_cvvariabletype_id_seq OWNED BY public.hs_file_types_cvvariabletype.id; - - --- --- Name: hs_file_types_fieldinformation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_fieldinformation ( - id integer NOT NULL, - object_id integer NOT NULL, - "fieldName" character varying(128) NOT NULL, - "fieldType" character varying(128) NOT NULL, - "fieldTypeCode" character varying(50), - "fieldWidth" integer, - "fieldPrecision" integer, - content_type_id integer NOT NULL, - CONSTRAINT hs_geographic_feature_resource_fieldinformation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_fieldinformation OWNER TO postgres; - --- --- Name: hs_file_types_filesetlogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_filesetlogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - extra_data public.hstore NOT NULL, - folder character varying(4096) NOT NULL, - metadata_id integer NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_filesetlogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_filesetlogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_filesetlogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_filesetlogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_filesetlogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_filesetlogicalfile_id_seq OWNED BY public.hs_file_types_filesetlogicalfile.id; - - --- --- Name: hs_file_types_filesetmetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_filesetmetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL -); - - -ALTER TABLE public.hs_file_types_filesetmetadata OWNER TO postgres; - --- --- Name: hs_file_types_filesetmetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_filesetmetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_filesetmetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_filesetmetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_filesetmetadata_id_seq OWNED BY public.hs_file_types_filesetmetadata.id; - - --- --- Name: hs_file_types_genericfilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_genericfilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL -); - - -ALTER TABLE public.hs_file_types_genericfilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_genericfilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_genericfilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_genericfilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_genericfilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_genericfilemetadata_id_seq OWNED BY public.hs_file_types_genericfilemetadata.id; - - --- --- Name: hs_file_types_genericlogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_genericlogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - metadata_id integer NOT NULL, - extra_data public.hstore NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_genericlogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_genericlogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_genericlogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_genericlogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_genericlogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_genericlogicalfile_id_seq OWNED BY public.hs_file_types_genericlogicalfile.id; - - --- --- Name: hs_file_types_geofeaturefilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_geofeaturefilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL -); - - -ALTER TABLE public.hs_file_types_geofeaturefilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_geofeaturefilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_geofeaturefilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_geofeaturefilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_geofeaturefilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_geofeaturefilemetadata_id_seq OWNED BY public.hs_file_types_geofeaturefilemetadata.id; - - --- --- Name: hs_file_types_geofeaturelogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_geofeaturelogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - metadata_id integer NOT NULL, - extra_data public.hstore NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_geofeaturelogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_geofeaturelogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_geofeaturelogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_geofeaturelogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_geofeaturelogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_geofeaturelogicalfile_id_seq OWNED BY public.hs_file_types_geofeaturelogicalfile.id; - - --- --- Name: hs_file_types_geometryinformation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_geometryinformation ( - id integer NOT NULL, - object_id integer NOT NULL, - "featureCount" integer NOT NULL, - "geometryType" character varying(128) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_geographic_feature_resource_geometryinformat_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_geometryinformation OWNER TO postgres; - --- --- Name: hs_file_types_georasterfilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_georasterfilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL -); - - -ALTER TABLE public.hs_file_types_georasterfilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_georasterfilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_georasterfilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_georasterfilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_georasterfilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_georasterfilemetadata_id_seq OWNED BY public.hs_file_types_georasterfilemetadata.id; - - --- --- Name: hs_file_types_georasterlogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_georasterlogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - metadata_id integer NOT NULL, - extra_data public.hstore NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_georasterlogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_georasterlogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_georasterlogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_georasterlogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_georasterlogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_georasterlogicalfile_id_seq OWNED BY public.hs_file_types_georasterlogicalfile.id; - - --- --- Name: hs_file_types_modelinstancefilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_modelinstancefilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL, - has_model_output boolean NOT NULL, - metadata_json jsonb NOT NULL, - executed_by_id integer -); - - -ALTER TABLE public.hs_file_types_modelinstancefilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_modelinstancefilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_modelinstancefilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_modelinstancefilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_modelinstancefilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_modelinstancefilemetadata_id_seq OWNED BY public.hs_file_types_modelinstancefilemetadata.id; - - --- --- Name: hs_file_types_modelinstancelogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_modelinstancelogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - extra_data public.hstore NOT NULL, - folder character varying(4096), - metadata_schema_json jsonb NOT NULL, - metadata_id integer NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_modelinstancelogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_modelinstancelogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_modelinstancelogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_modelinstancelogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_modelinstancelogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_modelinstancelogicalfile_id_seq OWNED BY public.hs_file_types_modelinstancelogicalfile.id; - - --- --- Name: hs_file_types_modelprogramfilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_modelprogramfilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL, - version character varying(255), - programming_languages character varying(100)[] NOT NULL, - operating_systems character varying(100)[] NOT NULL, - release_date date, - website character varying(255), - code_repository character varying(255) -); - - -ALTER TABLE public.hs_file_types_modelprogramfilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_modelprogramfilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_modelprogramfilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_modelprogramfilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_modelprogramfilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_modelprogramfilemetadata_id_seq OWNED BY public.hs_file_types_modelprogramfilemetadata.id; - - --- --- Name: hs_file_types_modelprogramlogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_modelprogramlogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - extra_data public.hstore NOT NULL, - folder character varying(4096), - metadata_schema_json jsonb NOT NULL, - metadata_id integer NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_modelprogramlogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_modelprogramlogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_modelprogramlogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_modelprogramlogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_modelprogramlogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_modelprogramlogicalfile_id_seq OWNED BY public.hs_file_types_modelprogramlogicalfile.id; - - --- --- Name: hs_file_types_modelprogramresourcefiletype; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_modelprogramresourcefiletype ( - id integer NOT NULL, - file_type smallint NOT NULL, - mp_metadata_id integer NOT NULL, - res_file_id integer NOT NULL, - CONSTRAINT hs_file_types_modelprogramresourcefiletype_file_type_check CHECK ((file_type >= 0)) -); - - -ALTER TABLE public.hs_file_types_modelprogramresourcefiletype OWNER TO postgres; - --- --- Name: hs_file_types_modelprogramresourcefiletype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_modelprogramresourcefiletype_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_modelprogramresourcefiletype_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_modelprogramresourcefiletype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_modelprogramresourcefiletype_id_seq OWNED BY public.hs_file_types_modelprogramresourcefiletype.id; - - --- --- Name: hs_file_types_netcdffilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_netcdffilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL, - is_update_file boolean NOT NULL -); - - -ALTER TABLE public.hs_file_types_netcdffilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_netcdffilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_netcdffilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_netcdffilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_netcdffilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_netcdffilemetadata_id_seq OWNED BY public.hs_file_types_netcdffilemetadata.id; - - --- --- Name: hs_file_types_netcdflogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_netcdflogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - metadata_id integer NOT NULL, - extra_data public.hstore NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_netcdflogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_netcdflogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_netcdflogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_netcdflogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_netcdflogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_netcdflogicalfile_id_seq OWNED BY public.hs_file_types_netcdflogicalfile.id; - - --- --- Name: hs_file_types_originalcoveragegeofeature; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_originalcoveragegeofeature ( - id integer NOT NULL, - object_id integer NOT NULL, - northlimit double precision NOT NULL, - southlimit double precision NOT NULL, - westlimit double precision NOT NULL, - eastlimit double precision NOT NULL, - projection_string text, - projection_name text, - datum text, - unit text, - content_type_id integer NOT NULL, - CONSTRAINT hs_geographic_feature_resource_originalcoverage_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_originalcoveragegeofeature OWNER TO postgres; - --- --- Name: hs_file_types_originalcoverageraster; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_originalcoverageraster ( - id integer NOT NULL, - object_id integer NOT NULL, - _value character varying(10000), - content_type_id integer NOT NULL, - CONSTRAINT hs_geo_raster_resource_originalcoverage_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_file_types_originalcoverageraster OWNER TO postgres; - --- --- Name: hs_file_types_reftimeseriesfilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_reftimeseriesfilemetadata ( - id integer NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL, - json_file_content text NOT NULL, - abstract text -); - - -ALTER TABLE public.hs_file_types_reftimeseriesfilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_reftimeseriesfilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_reftimeseriesfilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_reftimeseriesfilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_reftimeseriesfilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_reftimeseriesfilemetadata_id_seq OWNED BY public.hs_file_types_reftimeseriesfilemetadata.id; - - --- --- Name: hs_file_types_reftimeserieslogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_reftimeserieslogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - metadata_id integer NOT NULL, - extra_data public.hstore NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_reftimeserieslogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_reftimeserieslogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_reftimeserieslogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_reftimeserieslogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_reftimeserieslogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_reftimeserieslogicalfile_id_seq OWNED BY public.hs_file_types_reftimeserieslogicalfile.id; - - --- --- Name: hs_file_types_timeseriesfilemetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_timeseriesfilemetadata ( - id integer NOT NULL, - value_counts public.hstore NOT NULL, - extra_metadata public.hstore NOT NULL, - keywords character varying(100)[] NOT NULL, - is_dirty boolean NOT NULL, - abstract text, - is_update_file boolean NOT NULL -); - - -ALTER TABLE public.hs_file_types_timeseriesfilemetadata OWNER TO postgres; - --- --- Name: hs_file_types_timeseriesfilemetadata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_timeseriesfilemetadata_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_timeseriesfilemetadata_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_timeseriesfilemetadata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_timeseriesfilemetadata_id_seq OWNED BY public.hs_file_types_timeseriesfilemetadata.id; - - --- --- Name: hs_file_types_timeserieslogicalfile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_file_types_timeserieslogicalfile ( - id integer NOT NULL, - dataset_name character varying(255), - metadata_id integer NOT NULL, - extra_data public.hstore NOT NULL, - resource_id integer NOT NULL -); - - -ALTER TABLE public.hs_file_types_timeserieslogicalfile OWNER TO postgres; - --- --- Name: hs_file_types_timeserieslogicalfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_file_types_timeserieslogicalfile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_file_types_timeserieslogicalfile_id_seq OWNER TO postgres; - --- --- Name: hs_file_types_timeserieslogicalfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_file_types_timeserieslogicalfile_id_seq OWNED BY public.hs_file_types_timeserieslogicalfile.id; - - --- --- Name: hs_geo_raster_resource_bandinformation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_geo_raster_resource_bandinformation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_geo_raster_resource_bandinformation_id_seq OWNER TO postgres; - --- --- Name: hs_geo_raster_resource_bandinformation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_geo_raster_resource_bandinformation_id_seq OWNED BY public.hs_file_types_bandinformation.id; - - --- --- Name: hs_geo_raster_resource_cellinformation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_geo_raster_resource_cellinformation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_geo_raster_resource_cellinformation_id_seq OWNER TO postgres; - --- --- Name: hs_geo_raster_resource_cellinformation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_geo_raster_resource_cellinformation_id_seq OWNED BY public.hs_file_types_cellinformation.id; - - --- --- Name: hs_geo_raster_resource_originalcoverage_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_geo_raster_resource_originalcoverage_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_geo_raster_resource_originalcoverage_id_seq OWNER TO postgres; - --- --- Name: hs_geo_raster_resource_originalcoverage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_geo_raster_resource_originalcoverage_id_seq OWNED BY public.hs_file_types_originalcoverageraster.id; - - --- --- Name: hs_geographic_feature_resource_fieldinformation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_geographic_feature_resource_fieldinformation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_geographic_feature_resource_fieldinformation_id_seq OWNER TO postgres; - --- --- Name: hs_geographic_feature_resource_fieldinformation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_geographic_feature_resource_fieldinformation_id_seq OWNED BY public.hs_file_types_fieldinformation.id; - - --- --- Name: hs_geographic_feature_resource_geometryinformation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_geographic_feature_resource_geometryinformation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_geographic_feature_resource_geometryinformation_id_seq OWNER TO postgres; - --- --- Name: hs_geographic_feature_resource_geometryinformation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_geographic_feature_resource_geometryinformation_id_seq OWNED BY public.hs_file_types_geometryinformation.id; - - --- --- Name: hs_geographic_feature_resource_originalcoverage_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_geographic_feature_resource_originalcoverage_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_geographic_feature_resource_originalcoverage_id_seq OWNER TO postgres; - --- --- Name: hs_geographic_feature_resource_originalcoverage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_geographic_feature_resource_originalcoverage_id_seq OWNED BY public.hs_file_types_originalcoveragegeofeature.id; - - --- --- Name: hs_labels_resourcelabels; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_labels_resourcelabels ( - id integer NOT NULL, - resource_id integer -); - - -ALTER TABLE public.hs_labels_resourcelabels OWNER TO postgres; - --- --- Name: hs_labels_resourcelabels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_labels_resourcelabels_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_labels_resourcelabels_id_seq OWNER TO postgres; - --- --- Name: hs_labels_resourcelabels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_labels_resourcelabels_id_seq OWNED BY public.hs_labels_resourcelabels.id; - - --- --- Name: hs_labels_userlabels; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_labels_userlabels ( - id integer NOT NULL, - user_id integer -); - - -ALTER TABLE public.hs_labels_userlabels OWNER TO postgres; - --- --- Name: hs_labels_userlabels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_labels_userlabels_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_labels_userlabels_id_seq OWNER TO postgres; - --- --- Name: hs_labels_userlabels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_labels_userlabels_id_seq OWNED BY public.hs_labels_userlabels.id; - - --- --- Name: hs_labels_userresourceflags; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_labels_userresourceflags ( - id integer NOT NULL, - kind integer NOT NULL, - start timestamp with time zone NOT NULL, - resource_id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_labels_userresourceflags OWNER TO postgres; - --- --- Name: hs_labels_userresourceflags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_labels_userresourceflags_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_labels_userresourceflags_id_seq OWNER TO postgres; - --- --- Name: hs_labels_userresourceflags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_labels_userresourceflags_id_seq OWNED BY public.hs_labels_userresourceflags.id; - - --- --- Name: hs_labels_userresourcelabels; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_labels_userresourcelabels ( - id integer NOT NULL, - start timestamp with time zone NOT NULL, - label text NOT NULL, - resource_id integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_labels_userresourcelabels OWNER TO postgres; - --- --- Name: hs_labels_userresourcelabels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_labels_userresourcelabels_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_labels_userresourcelabels_id_seq OWNER TO postgres; - --- --- Name: hs_labels_userresourcelabels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_labels_userresourcelabels_id_seq OWNED BY public.hs_labels_userresourcelabels.id; - - --- --- Name: hs_labels_userstoredlabels; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_labels_userstoredlabels ( - id integer NOT NULL, - label text NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.hs_labels_userstoredlabels OWNER TO postgres; - --- --- Name: hs_labels_userstoredlabels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_labels_userstoredlabels_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_labels_userstoredlabels_id_seq OWNER TO postgres; - --- --- Name: hs_labels_userstoredlabels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_labels_userstoredlabels_id_seq OWNED BY public.hs_labels_userstoredlabels.id; - - --- --- Name: hs_odm2_odm2variable; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_odm2_odm2variable ( - id integer NOT NULL, - name character varying(256) NOT NULL, - definition text NOT NULL, - provenance_uri text NOT NULL, - resource_uri text NOT NULL -); - - -ALTER TABLE public.hs_odm2_odm2variable OWNER TO postgres; - --- --- Name: hs_odm2_odm2variable_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_odm2_odm2variable_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_odm2_odm2variable_id_seq OWNER TO postgres; - --- --- Name: hs_odm2_odm2variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_odm2_odm2variable_id_seq OWNED BY public.hs_odm2_odm2variable.id; - - --- --- Name: hs_tools_resource_apphomepageurl; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_apphomepageurl ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_apphomepageurl_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_apphomepageurl OWNER TO postgres; - --- --- Name: hs_tools_resource_apphomepageurl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_apphomepageurl_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_apphomepageurl_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_apphomepageurl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_apphomepageurl_id_seq OWNED BY public.hs_tools_resource_apphomepageurl.id; - - --- --- Name: hs_tools_resource_helppageurl; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_helppageurl ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_helppageurl_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_helppageurl OWNER TO postgres; - --- --- Name: hs_tools_resource_helppageurl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_helppageurl_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_helppageurl_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_helppageurl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_helppageurl_id_seq OWNED BY public.hs_tools_resource_helppageurl.id; - - --- --- Name: hs_tools_resource_issuespageurl; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_issuespageurl ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_issuespageurl_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_issuespageurl OWNER TO postgres; - --- --- Name: hs_tools_resource_issuespageurl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_issuespageurl_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_issuespageurl_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_issuespageurl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_issuespageurl_id_seq OWNED BY public.hs_tools_resource_issuespageurl.id; - - --- --- Name: hs_tools_resource_mailinglisturl; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_mailinglisturl ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_mailinglisturl_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_mailinglisturl OWNER TO postgres; - --- --- Name: hs_tools_resource_mailinglisturl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_mailinglisturl_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_mailinglisturl_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_mailinglisturl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_mailinglisturl_id_seq OWNED BY public.hs_tools_resource_mailinglisturl.id; - - --- --- Name: hs_tools_resource_requesturlbase; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_requesturlbase ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_requesturlbase_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_requesturlbase OWNER TO postgres; - --- --- Name: hs_tools_resource_requesturlbase_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_requesturlbase_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_requesturlbase_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_requesturlbase_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_requesturlbase_id_seq OWNED BY public.hs_tools_resource_requesturlbase.id; - - --- --- Name: hs_tools_resource_requesturlbaseaggregation; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_requesturlbaseaggregation ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_requesturlbaseaggregation_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_requesturlbaseaggregation OWNER TO postgres; - --- --- Name: hs_tools_resource_requesturlbaseaggregation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_requesturlbaseaggregation_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_requesturlbaseaggregation_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_requesturlbaseaggregation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_requesturlbaseaggregation_id_seq OWNED BY public.hs_tools_resource_requesturlbaseaggregation.id; - - --- --- Name: hs_tools_resource_requesturlbasefile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_requesturlbasefile ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_requesturlbasefile_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_requesturlbasefile OWNER TO postgres; - --- --- Name: hs_tools_resource_requesturlbasefile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_requesturlbasefile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_requesturlbasefile_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_requesturlbasefile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_requesturlbasefile_id_seq OWNED BY public.hs_tools_resource_requesturlbasefile.id; - - --- --- Name: hs_tools_resource_roadmap; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_roadmap ( - id integer NOT NULL, - object_id integer NOT NULL, - value text NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_roadmap_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_roadmap OWNER TO postgres; - --- --- Name: hs_tools_resource_roadmap_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_roadmap_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_roadmap_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_roadmap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_roadmap_id_seq OWNED BY public.hs_tools_resource_roadmap.id; - - --- --- Name: hs_tools_resource_showonopenwithlist; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_showonopenwithlist ( - id integer NOT NULL, - object_id integer NOT NULL, - value boolean NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_showonopenwithlist_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_showonopenwithlist OWNER TO postgres; - --- --- Name: hs_tools_resource_showonopenwithlist_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_showonopenwithlist_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_showonopenwithlist_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_showonopenwithlist_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_showonopenwithlist_id_seq OWNED BY public.hs_tools_resource_showonopenwithlist.id; - - --- --- Name: hs_tools_resource_sourcecodeurl; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_sourcecodeurl ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_sourcecodeurl_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_sourcecodeurl OWNER TO postgres; - --- --- Name: hs_tools_resource_sourcecodeurl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_sourcecodeurl_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_sourcecodeurl_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_sourcecodeurl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_sourcecodeurl_id_seq OWNED BY public.hs_tools_resource_sourcecodeurl.id; - - --- --- Name: hs_tools_resource_supportedaggtypechoices; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedaggtypechoices ( - id integer NOT NULL, - description character varying(128) NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_supportedaggtypechoices OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedaggtypechoices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedaggtypechoices_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedaggtypechoices_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedaggtypechoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedaggtypechoices_id_seq OWNED BY public.hs_tools_resource_supportedaggtypechoices.id; - - --- --- Name: hs_tools_resource_supportedaggtypes; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedaggtypes ( - id integer NOT NULL, - object_id integer NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_supportedaggtypes_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_supportedaggtypes OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedaggtypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedaggtypes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedaggtypes_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedaggtypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedaggtypes_id_seq OWNED BY public.hs_tools_resource_supportedaggtypes.id; - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedaggtypes_supported_agg_types ( - id integer NOT NULL, - supportedaggtypes_id integer NOT NULL, - supportedaggtypechoices_id integer NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_supportedaggtypes_supported_agg_types OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq OWNED BY public.hs_tools_resource_supportedaggtypes_supported_agg_types.id; - - --- --- Name: hs_tools_resource_supportedfileextensions; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedfileextensions ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_supportedfileextensions_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_supportedfileextensions OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedfileextensions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedfileextensions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedfileextensions_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedfileextensions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedfileextensions_id_seq OWNED BY public.hs_tools_resource_supportedfileextensions.id; - - --- --- Name: hs_tools_resource_supportedrestypechoices; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedrestypechoices ( - id integer NOT NULL, - description character varying(128) NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_supportedrestypechoices OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedrestypechoices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedrestypechoices_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedrestypechoices_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedrestypechoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedrestypechoices_id_seq OWNED BY public.hs_tools_resource_supportedrestypechoices.id; - - --- --- Name: hs_tools_resource_supportedrestypes; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedrestypes ( - id integer NOT NULL, - object_id integer NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_supportedrestypes_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_supportedrestypes OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedrestypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedrestypes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedrestypes_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedrestypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedrestypes_id_seq OWNED BY public.hs_tools_resource_supportedrestypes.id; - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedrestypes_supported_res_types ( - id integer NOT NULL, - supportedrestypes_id integer NOT NULL, - supportedrestypechoices_id integer NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_supportedrestypes_supported_res_types OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedrestypes_supported_res_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedrestypes_supported_res_types_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedrestypes_supported_res_types_id_seq OWNED BY public.hs_tools_resource_supportedrestypes_supported_res_types.id; - - --- --- Name: hs_tools_resource_supportedsharingstatus; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedsharingstatus ( - id integer NOT NULL, - object_id integer NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_supportedsharingstatus_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_supportedsharingstatus OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedsharingstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedsharingstatus_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedsharingstatus_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedsharingstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedsharingstatus_id_seq OWNED BY public.hs_tools_resource_supportedsharingstatus.id; - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedsharingstatus_sharing_status ( - id integer NOT NULL, - supportedsharingstatus_id integer NOT NULL, - supportedsharingstatuschoices_id integer NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_supportedsharingstatus_sharing_status OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedsharingstatus_sharing_status_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedsharingstatus_sharing_status_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedsharingstatus_sharing_status_id_seq OWNED BY public.hs_tools_resource_supportedsharingstatus_sharing_status.id; - - --- --- Name: hs_tools_resource_supportedsharingstatuschoices; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_supportedsharingstatuschoices ( - id integer NOT NULL, - description character varying(128) NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_supportedsharingstatuschoices OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedsharingstatuschoices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_supportedsharingstatuschoices_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_supportedsharingstatuschoices_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_supportedsharingstatuschoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_supportedsharingstatuschoices_id_seq OWNED BY public.hs_tools_resource_supportedsharingstatuschoices.id; - - --- --- Name: hs_tools_resource_testingprotocolurl; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_testingprotocolurl ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(1024) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_testingprotocolurl_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_testingprotocolurl OWNER TO postgres; - --- --- Name: hs_tools_resource_testingprotocolurl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_testingprotocolurl_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_testingprotocolurl_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_testingprotocolurl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_testingprotocolurl_id_seq OWNED BY public.hs_tools_resource_testingprotocolurl.id; - - --- --- Name: hs_tools_resource_toolicon; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_toolicon ( - id integer NOT NULL, - object_id integer NOT NULL, - content_type_id integer NOT NULL, - value character varying(1024) NOT NULL, - data_url text NOT NULL, - CONSTRAINT hs_tools_resource_toolicon_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_toolicon OWNER TO postgres; - --- --- Name: hs_tools_resource_toolicon_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_toolicon_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_toolicon_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_toolicon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_toolicon_id_seq OWNED BY public.hs_tools_resource_toolicon.id; - - --- --- Name: hs_tools_resource_toolmetadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_toolmetadata ( - coremetadata_ptr_id integer NOT NULL, - approved boolean NOT NULL -); - - -ALTER TABLE public.hs_tools_resource_toolmetadata OWNER TO postgres; - --- --- Name: hs_tools_resource_toolversion; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tools_resource_toolversion ( - id integer NOT NULL, - object_id integer NOT NULL, - value character varying(128) NOT NULL, - content_type_id integer NOT NULL, - CONSTRAINT hs_tools_resource_toolversion_object_id_check CHECK ((object_id >= 0)) -); - - -ALTER TABLE public.hs_tools_resource_toolversion OWNER TO postgres; - --- --- Name: hs_tools_resource_toolversion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tools_resource_toolversion_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tools_resource_toolversion_id_seq OWNER TO postgres; - --- --- Name: hs_tools_resource_toolversion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tools_resource_toolversion_id_seq OWNED BY public.hs_tools_resource_toolversion.id; - - --- --- Name: hs_tracking_session; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tracking_session ( - id integer NOT NULL, - begin timestamp with time zone NOT NULL, - visitor_id integer NOT NULL -); - - -ALTER TABLE public.hs_tracking_session OWNER TO postgres; - --- --- Name: hs_tracking_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tracking_session_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tracking_session_id_seq OWNER TO postgres; - --- --- Name: hs_tracking_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tracking_session_id_seq OWNED BY public.hs_tracking_session.id; - - --- --- Name: hs_tracking_variable; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tracking_variable ( - id integer NOT NULL, - "timestamp" timestamp with time zone NOT NULL, - name character varying(32) NOT NULL, - type integer NOT NULL, - value text NOT NULL, - session_id integer NOT NULL, - last_resource_id character varying(32), - resource_id integer, - rest boolean NOT NULL, - landing boolean NOT NULL -); - - -ALTER TABLE public.hs_tracking_variable OWNER TO postgres; - --- --- Name: hs_tracking_variable_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tracking_variable_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tracking_variable_id_seq OWNER TO postgres; - --- --- Name: hs_tracking_variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tracking_variable_id_seq OWNED BY public.hs_tracking_variable.id; - - --- --- Name: hs_tracking_visitor; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.hs_tracking_visitor ( - id integer NOT NULL, - first_seen timestamp with time zone NOT NULL, - user_id integer -); - - -ALTER TABLE public.hs_tracking_visitor OWNER TO postgres; - --- --- Name: hs_tracking_visitor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.hs_tracking_visitor_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.hs_tracking_visitor_id_seq OWNER TO postgres; - --- --- Name: hs_tracking_visitor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.hs_tracking_visitor_id_seq OWNED BY public.hs_tracking_visitor.id; - - --- --- Name: oauth2_provider_accesstoken_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.oauth2_provider_accesstoken_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.oauth2_provider_accesstoken_id_seq OWNER TO postgres; - --- --- Name: oauth2_provider_accesstoken; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.oauth2_provider_accesstoken ( - id bigint DEFAULT nextval('public.oauth2_provider_accesstoken_id_seq'::regclass) NOT NULL, - token text NOT NULL, - expires timestamp with time zone NOT NULL, - scope text NOT NULL, - application_id bigint, - user_id integer, - created timestamp with time zone NOT NULL, - updated timestamp with time zone NOT NULL, - source_refresh_token_id bigint, - id_token_id bigint, - token_checksum character varying(64) NOT NULL -); - - -ALTER TABLE public.oauth2_provider_accesstoken OWNER TO postgres; - --- --- Name: oauth2_provider_application_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.oauth2_provider_application_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.oauth2_provider_application_id_seq OWNER TO postgres; - --- --- Name: oauth2_provider_application; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.oauth2_provider_application ( - id bigint DEFAULT nextval('public.oauth2_provider_application_id_seq'::regclass) NOT NULL, - client_id character varying(100) NOT NULL, - redirect_uris text NOT NULL, - client_type character varying(32) NOT NULL, - authorization_grant_type character varying(32) NOT NULL, - client_secret character varying(255) NOT NULL, - name character varying(255) NOT NULL, - user_id integer, - skip_authorization boolean NOT NULL, - created timestamp with time zone NOT NULL, - updated timestamp with time zone NOT NULL, - algorithm character varying(5) NOT NULL, - post_logout_redirect_uris text NOT NULL, - hash_client_secret boolean NOT NULL, - allowed_origins text NOT NULL -); - - -ALTER TABLE public.oauth2_provider_application OWNER TO postgres; - --- --- Name: oauth2_provider_grant_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.oauth2_provider_grant_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.oauth2_provider_grant_id_seq OWNER TO postgres; - --- --- Name: oauth2_provider_grant; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.oauth2_provider_grant ( - id bigint DEFAULT nextval('public.oauth2_provider_grant_id_seq'::regclass) NOT NULL, - code character varying(255) NOT NULL, - expires timestamp with time zone NOT NULL, - redirect_uri text NOT NULL, - scope text NOT NULL, - application_id bigint NOT NULL, - user_id integer NOT NULL, - created timestamp with time zone NOT NULL, - updated timestamp with time zone NOT NULL, - code_challenge character varying(128) NOT NULL, - code_challenge_method character varying(10) NOT NULL, - nonce character varying(255) NOT NULL, - claims text NOT NULL -); - - -ALTER TABLE public.oauth2_provider_grant OWNER TO postgres; - --- --- Name: oauth2_provider_idtoken; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.oauth2_provider_idtoken ( - id bigint NOT NULL, - jti uuid NOT NULL, - expires timestamp with time zone NOT NULL, - scope text NOT NULL, - created timestamp with time zone NOT NULL, - updated timestamp with time zone NOT NULL, - application_id bigint, - user_id integer -); - - -ALTER TABLE public.oauth2_provider_idtoken OWNER TO postgres; - --- --- Name: oauth2_provider_idtoken_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.oauth2_provider_idtoken ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.oauth2_provider_idtoken_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: oauth2_provider_refreshtoken_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.oauth2_provider_refreshtoken_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.oauth2_provider_refreshtoken_id_seq OWNER TO postgres; - --- --- Name: oauth2_provider_refreshtoken; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.oauth2_provider_refreshtoken ( - id bigint DEFAULT nextval('public.oauth2_provider_refreshtoken_id_seq'::regclass) NOT NULL, - token character varying(255) NOT NULL, - access_token_id bigint, - application_id bigint NOT NULL, - user_id integer NOT NULL, - created timestamp with time zone NOT NULL, - updated timestamp with time zone NOT NULL, - revoked timestamp with time zone, - token_family uuid -); - - -ALTER TABLE public.oauth2_provider_refreshtoken OWNER TO postgres; - --- --- Name: pages_link; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pages_link ( - page_ptr_id integer NOT NULL -); - - -ALTER TABLE public.pages_link OWNER TO postgres; - --- --- Name: pages_page; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pages_page ( - id integer NOT NULL, - keywords_string character varying(500) NOT NULL, - site_id integer NOT NULL, - title character varying(500) NOT NULL, - slug character varying(2000) NOT NULL, - _meta_title character varying(500), - description text NOT NULL, - gen_description boolean NOT NULL, - created timestamp with time zone, - updated timestamp with time zone, - status integer NOT NULL, - publish_date timestamp with time zone, - expiry_date timestamp with time zone, - short_url character varying(200), - in_sitemap boolean NOT NULL, - _order integer, - parent_id integer, - in_menus character varying(100), - titles character varying(1000), - content_model character varying(50), - login_required boolean NOT NULL -); - - -ALTER TABLE public.pages_page OWNER TO postgres; - --- --- Name: pages_page_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.pages_page_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.pages_page_id_seq OWNER TO postgres; - --- --- Name: pages_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.pages_page_id_seq OWNED BY public.pages_page.id; - - --- --- Name: pages_richtextpage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pages_richtextpage ( - page_ptr_id integer NOT NULL, - content text NOT NULL -); - - -ALTER TABLE public.pages_richtextpage OWNER TO postgres; - --- --- Name: robots_rule; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.robots_rule ( - id bigint NOT NULL, - robot character varying(255) NOT NULL, - crawl_delay numeric(3,1) -); - - -ALTER TABLE public.robots_rule OWNER TO postgres; - --- --- Name: robots_rule_allowed; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.robots_rule_allowed ( - id integer NOT NULL, - rule_id bigint NOT NULL, - url_id bigint NOT NULL -); - - -ALTER TABLE public.robots_rule_allowed OWNER TO postgres; - --- --- Name: robots_rule_allowed_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.robots_rule_allowed_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.robots_rule_allowed_id_seq OWNER TO postgres; - --- --- Name: robots_rule_allowed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.robots_rule_allowed_id_seq OWNED BY public.robots_rule_allowed.id; - - --- --- Name: robots_rule_disallowed; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.robots_rule_disallowed ( - id integer NOT NULL, - rule_id bigint NOT NULL, - url_id bigint NOT NULL -); - - -ALTER TABLE public.robots_rule_disallowed OWNER TO postgres; - --- --- Name: robots_rule_disallowed_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.robots_rule_disallowed_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.robots_rule_disallowed_id_seq OWNER TO postgres; - --- --- Name: robots_rule_disallowed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.robots_rule_disallowed_id_seq OWNED BY public.robots_rule_disallowed.id; - - --- --- Name: robots_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.robots_rule_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.robots_rule_id_seq OWNER TO postgres; - --- --- Name: robots_rule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.robots_rule_id_seq OWNED BY public.robots_rule.id; - - --- --- Name: robots_rule_sites; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.robots_rule_sites ( - id integer NOT NULL, - rule_id bigint NOT NULL, - site_id integer NOT NULL -); - - -ALTER TABLE public.robots_rule_sites OWNER TO postgres; - --- --- Name: robots_rule_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.robots_rule_sites_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.robots_rule_sites_id_seq OWNER TO postgres; - --- --- Name: robots_rule_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.robots_rule_sites_id_seq OWNED BY public.robots_rule_sites.id; - - --- --- Name: robots_url; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.robots_url ( - id bigint NOT NULL, - pattern character varying(255) NOT NULL -); - - -ALTER TABLE public.robots_url OWNER TO postgres; - --- --- Name: robots_url_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.robots_url_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.robots_url_id_seq OWNER TO postgres; - --- --- Name: robots_url_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.robots_url_id_seq OWNED BY public.robots_url.id; - - --- --- Name: security_cspreport; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.security_cspreport ( - id integer NOT NULL, - document_uri character varying(1000) NOT NULL, - referrer character varying(1000) NOT NULL, - blocked_uri character varying(1000) NOT NULL, - violated_directive character varying(1000) NOT NULL, - original_policy text, - date_received timestamp with time zone NOT NULL, - sender_ip inet NOT NULL, - user_agent character varying(1000) NOT NULL -); - - -ALTER TABLE public.security_cspreport OWNER TO postgres; - --- --- Name: security_cspreport_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.security_cspreport_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.security_cspreport_id_seq OWNER TO postgres; - --- --- Name: security_cspreport_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.security_cspreport_id_seq OWNED BY public.security_cspreport.id; - - --- --- Name: security_passwordexpiry; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.security_passwordexpiry ( - id integer NOT NULL, - password_expiry_date timestamp with time zone, - user_id integer NOT NULL -); - - -ALTER TABLE public.security_passwordexpiry OWNER TO postgres; - --- --- Name: security_passwordexpiry_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.security_passwordexpiry_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.security_passwordexpiry_id_seq OWNER TO postgres; - --- --- Name: security_passwordexpiry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.security_passwordexpiry_id_seq OWNED BY public.security_passwordexpiry.id; - - --- --- Name: theme_homepage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_homepage ( - page_ptr_id integer NOT NULL, - heading character varying(100) NOT NULL, - slide_in_one_icon character varying(50) NOT NULL, - slide_in_one character varying(200) NOT NULL, - slide_in_two_icon character varying(50) NOT NULL, - slide_in_two character varying(200) NOT NULL, - slide_in_three_icon character varying(50) NOT NULL, - slide_in_three character varying(200) NOT NULL, - header_background character varying(255) NOT NULL, - header_image character varying(255), - welcome_heading character varying(100) NOT NULL, - content text NOT NULL, - recent_blog_heading character varying(100) NOT NULL, - number_recent_posts integer NOT NULL, - message_end_date date, - message_start_date date, - message_type character varying(100) NOT NULL, - show_message boolean NOT NULL, - CONSTRAINT theme_homepage_number_recent_posts_check CHECK ((number_recent_posts >= 0)) -); - - -ALTER TABLE public.theme_homepage OWNER TO postgres; - --- --- Name: theme_iconbox; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_iconbox ( - id integer NOT NULL, - _order integer, - icon character varying(50) NOT NULL, - title character varying(200) NOT NULL, - link_text character varying(100) NOT NULL, - link character varying(2000) NOT NULL, - homepage_id integer NOT NULL -); - - -ALTER TABLE public.theme_iconbox OWNER TO postgres; - --- --- Name: theme_iconbox_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.theme_iconbox_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.theme_iconbox_id_seq OWNER TO postgres; - --- --- Name: theme_iconbox_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.theme_iconbox_id_seq OWNED BY public.theme_iconbox.id; - - --- --- Name: theme_quotamessage; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_quotamessage ( - id integer NOT NULL, - warning_content_prepend text NOT NULL, - enforce_content_prepend text NOT NULL, - content text NOT NULL, - soft_limit_percent integer NOT NULL, - published_resource_percent integer NOT NULL, - quota_usage_info text NOT NULL -); - - -ALTER TABLE public.theme_quotamessage OWNER TO postgres; - --- --- Name: theme_quotamessage_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.theme_quotamessage_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.theme_quotamessage_id_seq OWNER TO postgres; - --- --- Name: theme_quotamessage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.theme_quotamessage_id_seq OWNED BY public.theme_quotamessage.id; - - --- --- Name: theme_quotarequest; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_quotarequest ( - id integer NOT NULL, - date_requested timestamp with time zone NOT NULL, - justification text, - storage integer NOT NULL, - quota_id integer NOT NULL, - request_from_id integer NOT NULL, - status character varying(20) NOT NULL -); - - -ALTER TABLE public.theme_quotarequest OWNER TO postgres; - --- --- Name: theme_quotarequest_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -ALTER TABLE public.theme_quotarequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( - SEQUENCE NAME public.theme_quotarequest_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1 -); - - --- --- Name: theme_siteconfiguration; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_siteconfiguration ( - id integer NOT NULL, - col1_heading character varying(200) NOT NULL, - col1_content text NOT NULL, - col2_heading character varying(200) NOT NULL, - col2_content text NOT NULL, - col3_heading character varying(200) NOT NULL, - col3_content text NOT NULL, - twitter_link character varying(2000) NOT NULL, - facebook_link character varying(2000) NOT NULL, - pinterest_link character varying(2000) NOT NULL, - youtube_link character varying(2000) NOT NULL, - github_link character varying(2000) NOT NULL, - linkedin_link character varying(2000) NOT NULL, - vk_link character varying(2000) NOT NULL, - gplus_link character varying(2000) NOT NULL, - has_social_network_links boolean NOT NULL, - copyright text NOT NULL, - site_id integer NOT NULL -); - - -ALTER TABLE public.theme_siteconfiguration OWNER TO postgres; - --- --- Name: theme_siteconfiguration_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.theme_siteconfiguration_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.theme_siteconfiguration_id_seq OWNER TO postgres; - --- --- Name: theme_siteconfiguration_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.theme_siteconfiguration_id_seq OWNED BY public.theme_siteconfiguration.id; - - --- --- Name: theme_userprofile; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_userprofile ( - id integer NOT NULL, - picture character varying(100), - title character varying(1024), - subject_areas character varying(1024)[], - organization character varying(1024), - phone_1 character varying(32), - phone_1_type character varying(1024), - phone_2 character varying(32), - phone_2_type character varying(1024), - public boolean NOT NULL, - cv character varying(100), - details text, - user_id integer NOT NULL, - country character varying(1024), - middle_name character varying(1024), - state character varying(1024), - user_type character varying(1024), - website character varying(200), - identifiers public.hstore, - email_opt_out boolean NOT NULL, - _bucket_name character varying(63), - minio_access_key character varying(64), - minio_secret_key character varying(64) -); - - -ALTER TABLE public.theme_userprofile OWNER TO postgres; - --- --- Name: theme_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.theme_userprofile_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.theme_userprofile_id_seq OWNER TO postgres; - --- --- Name: theme_userprofile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.theme_userprofile_id_seq OWNED BY public.theme_userprofile.id; - - --- --- Name: theme_userquota; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.theme_userquota ( - id integer NOT NULL, - zone character varying(100) NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.theme_userquota OWNER TO postgres; - --- --- Name: theme_userquota_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.theme_userquota_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.theme_userquota_id_seq OWNER TO postgres; - --- --- Name: theme_userquota_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.theme_userquota_id_seq OWNED BY public.theme_userquota.id; - - --- --- Name: thumbnail_kvstore; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.thumbnail_kvstore ( - key character varying(200) NOT NULL, - value text NOT NULL -); - - -ALTER TABLE public.thumbnail_kvstore OWNER TO postgres; - --- --- Name: auth_group id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group ALTER COLUMN id SET DEFAULT nextval('public.auth_group_id_seq'::regclass); - - --- --- Name: auth_group_permissions id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_group_permissions_id_seq'::regclass); - - --- --- Name: auth_permission id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_permission ALTER COLUMN id SET DEFAULT nextval('public.auth_permission_id_seq'::regclass); - - --- --- Name: auth_user id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user ALTER COLUMN id SET DEFAULT nextval('public.auth_user_id_seq'::regclass); - - --- --- Name: auth_user_groups id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_groups ALTER COLUMN id SET DEFAULT nextval('public.auth_user_groups_id_seq'::regclass); - - --- --- Name: auth_user_user_permissions id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_user_user_permissions_id_seq'::regclass); - - --- --- Name: blog_blogcategory id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogcategory ALTER COLUMN id SET DEFAULT nextval('public.blog_blogcategory_id_seq'::regclass); - - --- --- Name: blog_blogpost id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost ALTER COLUMN id SET DEFAULT nextval('public.blog_blogpost_id_seq'::regclass); - - --- --- Name: blog_blogpost_categories id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_categories ALTER COLUMN id SET DEFAULT nextval('public.blog_blogpost_categories_id_seq'::regclass); - - --- --- Name: blog_blogpost_related_posts id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_related_posts ALTER COLUMN id SET DEFAULT nextval('public.blog_blogpost_related_posts_id_seq'::regclass); - - --- --- Name: celery_taskmeta id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.celery_taskmeta ALTER COLUMN id SET DEFAULT nextval('public.celery_taskmeta_id_seq'::regclass); - - --- --- Name: celery_tasksetmeta id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.celery_tasksetmeta ALTER COLUMN id SET DEFAULT nextval('public.celery_tasksetmeta_id_seq'::regclass); - - --- --- Name: conf_setting id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.conf_setting ALTER COLUMN id SET DEFAULT nextval('public.conf_setting_id_seq'::regclass); - - --- --- Name: core_sitepermission id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission ALTER COLUMN id SET DEFAULT nextval('public.core_sitepermission_id_seq'::regclass); - - --- --- Name: core_sitepermission_sites id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission_sites ALTER COLUMN id SET DEFAULT nextval('public.core_sitepermission_sites_id_seq'::regclass); - - --- --- Name: corsheaders_corsmodel id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.corsheaders_corsmodel ALTER COLUMN id SET DEFAULT nextval('public.corsheaders_corsmodel_id_seq'::regclass); - - --- --- Name: django_admin_log id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_admin_log ALTER COLUMN id SET DEFAULT nextval('public.django_admin_log_id_seq'::regclass); - - --- --- Name: django_comment_flags id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_comment_flags ALTER COLUMN id SET DEFAULT nextval('public.django_comment_flags_id_seq'::regclass); - - --- --- Name: django_comments id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_comments ALTER COLUMN id SET DEFAULT nextval('public.django_comments_id_seq'::regclass); - - --- --- Name: django_content_type id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_content_type ALTER COLUMN id SET DEFAULT nextval('public.django_content_type_id_seq'::regclass); - - --- --- Name: django_docker_processes_containeroverrides id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_containeroverrides ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_containeroverrides_id_seq'::regclass); - - --- --- Name: django_docker_processes_dockerenvvar id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerenvvar ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_dockerenvvar_id_seq'::regclass); - - --- --- Name: django_docker_processes_dockerlink id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerlink ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_dockerlink_id_seq'::regclass); - - --- --- Name: django_docker_processes_dockerport id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerport ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_dockerport_id_seq'::regclass); - - --- --- Name: django_docker_processes_dockerprocess id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprocess ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_dockerprocess_id_seq'::regclass); - - --- --- Name: django_docker_processes_dockerprofile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprofile ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_dockerprofile_id_seq'::regclass); - - --- --- Name: django_docker_processes_dockervolume id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockervolume ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_dockervolume_id_seq'::regclass); - - --- --- Name: django_docker_processes_overrideenvvar id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overrideenvvar ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_overrideenvvar_id_seq'::regclass); - - --- --- Name: django_docker_processes_overridelink id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridelink ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_overridelink_id_seq'::regclass); - - --- --- Name: django_docker_processes_overrideport id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overrideport ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_overrideport_id_seq'::regclass); - - --- --- Name: django_docker_processes_overridevolume id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridevolume ALTER COLUMN id SET DEFAULT nextval('public.django_docker_processes_overridevolume_id_seq'::regclass); - - --- --- Name: django_migrations id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_migrations ALTER COLUMN id SET DEFAULT nextval('public.django_migrations_id_seq'::regclass); - - --- --- Name: django_redirect id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_redirect ALTER COLUMN id SET DEFAULT nextval('public.django_redirect_id_seq'::regclass); - - --- --- Name: django_site id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_site ALTER COLUMN id SET DEFAULT nextval('public.django_site_id_seq'::regclass); - - --- --- Name: djcelery_crontabschedule id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_crontabschedule ALTER COLUMN id SET DEFAULT nextval('public.djcelery_crontabschedule_id_seq'::regclass); - - --- --- Name: djcelery_intervalschedule id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_intervalschedule ALTER COLUMN id SET DEFAULT nextval('public.djcelery_intervalschedule_id_seq'::regclass); - - --- --- Name: djcelery_periodictask id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_periodictask ALTER COLUMN id SET DEFAULT nextval('public.djcelery_periodictask_id_seq'::regclass); - - --- --- Name: djcelery_taskstate id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_taskstate ALTER COLUMN id SET DEFAULT nextval('public.djcelery_taskstate_id_seq'::regclass); - - --- --- Name: djcelery_workerstate id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_workerstate ALTER COLUMN id SET DEFAULT nextval('public.djcelery_workerstate_id_seq'::regclass); - - --- --- Name: forms_field id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_field ALTER COLUMN id SET DEFAULT nextval('public.forms_field_id_seq'::regclass); - - --- --- Name: forms_fieldentry id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_fieldentry ALTER COLUMN id SET DEFAULT nextval('public.forms_fieldentry_id_seq'::regclass); - - --- --- Name: forms_formentry id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_formentry ALTER COLUMN id SET DEFAULT nextval('public.forms_formentry_id_seq'::regclass); - - --- --- Name: ga_ows_ogrdataset id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrdataset ALTER COLUMN id SET DEFAULT nextval('public.ga_ows_ogrdataset_id_seq'::regclass); - - --- --- Name: ga_ows_ogrdatasetcollection id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrdatasetcollection ALTER COLUMN id SET DEFAULT nextval('public.ga_ows_ogrdatasetcollection_id_seq'::regclass); - - --- --- Name: ga_ows_ogrlayer id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrlayer ALTER COLUMN id SET DEFAULT nextval('public.ga_ows_ogrlayer_id_seq'::regclass); - - --- --- Name: ga_resources_orderedresource id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_orderedresource ALTER COLUMN id SET DEFAULT nextval('public.ga_resources_orderedresource_id_seq'::regclass); - - --- --- Name: ga_resources_renderedlayer_styles id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer_styles ALTER COLUMN id SET DEFAULT nextval('public.ga_resources_renderedlayer_styles_id_seq'::regclass); - - --- --- Name: galleries_galleryimage id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.galleries_galleryimage ALTER COLUMN id SET DEFAULT nextval('public.galleries_galleryimage_id_seq'::regclass); - - --- --- Name: generic_assignedkeyword id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_assignedkeyword ALTER COLUMN id SET DEFAULT nextval('public.generic_assignedkeyword_id_seq'::regclass); - - --- --- Name: generic_keyword id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_keyword ALTER COLUMN id SET DEFAULT nextval('public.generic_keyword_id_seq'::regclass); - - --- --- Name: generic_rating id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_rating ALTER COLUMN id SET DEFAULT nextval('public.generic_rating_id_seq'::regclass); - - --- --- Name: hs_access_control_community id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_community ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_community_id_seq'::regclass); - - --- --- Name: hs_access_control_communityresourceprivilege id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprivilege ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_communityresourceprivilege_id_seq'::regclass); - - --- --- Name: hs_access_control_communityresourceprovenance id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprovenance ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_communityresourceprovenance_id_seq'::regclass); - - --- --- Name: hs_access_control_feature id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_feature ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_feature_id_seq'::regclass); - - --- --- Name: hs_access_control_groupaccess id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupaccess ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupaccess_id_seq'::regclass); - - --- --- Name: hs_access_control_groupcommunityprivilege id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprivilege ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupcommunityprivilege_id_seq'::regclass); - - --- --- Name: hs_access_control_groupcommunityprovenance id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprovenance ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupcommunityprovenance_id_seq'::regclass); - - --- --- Name: hs_access_control_groupcommunityrequest id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityrequest ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupcommunityrequest_id_seq'::regclass); - - --- --- Name: hs_access_control_groupmembershiprequest id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupmembershiprequest ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupmembershiprequest_id_seq'::regclass); - - --- --- Name: hs_access_control_groupresourceprivilege id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprivilege ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupresourceprivilege_id_seq'::regclass); - - --- --- Name: hs_access_control_groupresourceprovenance id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprovenance ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_groupresourceprovenance_id_seq'::regclass); - - --- --- Name: hs_access_control_resourceaccess id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_resourceaccess ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_resourceaccess_id_seq'::regclass); - - --- --- Name: hs_access_control_useraccess id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_useraccess ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_useraccess_id_seq'::regclass); - - --- --- Name: hs_access_control_usercommunityprivilege id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprivilege ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_usercommunityprivilege_id_seq'::regclass); - - --- --- Name: hs_access_control_usercommunityprovenance id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprovenance ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_usercommunityprovenance_id_seq'::regclass); - - --- --- Name: hs_access_control_usergroupprivilege id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprivilege ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_usergroupprivilege_id_seq'::regclass); - - --- --- Name: hs_access_control_usergroupprovenance id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprovenance ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_usergroupprovenance_id_seq'::regclass); - - --- --- Name: hs_access_control_userresourceprivilege id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprivilege ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_userresourceprivilege_id_seq'::regclass); - - --- --- Name: hs_access_control_userresourceprovenance id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprovenance ALTER COLUMN id SET DEFAULT nextval('public.hs_access_control_userresourceprovenance_id_seq'::regclass); - - --- --- Name: hs_collection_resource_collectiondeletedresource id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource ALTER COLUMN id SET DEFAULT nextval('public.hs_collection_resource_collectiondeletedresource_id_seq'::regclass); - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_od9f5 id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource_resource_od9f5 ALTER COLUMN id SET DEFAULT nextval('public.hs_collection_resource_collectiondeletedresource_resourc_id_seq'::regclass); - - --- --- Name: hs_communities_topic id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_communities_topic ALTER COLUMN id SET DEFAULT nextval('public.hs_communities_topic_id_seq'::regclass); - - --- --- Name: hs_core_citation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_citation ALTER COLUMN id SET DEFAULT nextval('public.hs_core_citation_id_seq'::regclass); - - --- --- Name: hs_core_contributor id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_contributor ALTER COLUMN id SET DEFAULT nextval('public.hs_core_contributor_id_seq'::regclass); - - --- --- Name: hs_core_coremetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_coremetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_core_coremetadata_id_seq'::regclass); - - --- --- Name: hs_core_coverage id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_coverage ALTER COLUMN id SET DEFAULT nextval('public.hs_core_coverage_id_seq'::regclass); - - --- --- Name: hs_core_creator id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_creator ALTER COLUMN id SET DEFAULT nextval('public.hs_core_creator_id_seq'::regclass); - - --- --- Name: hs_core_date id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_date ALTER COLUMN id SET DEFAULT nextval('public.hs_core_date_id_seq'::regclass); - - --- --- Name: hs_core_description id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_description ALTER COLUMN id SET DEFAULT nextval('public.hs_core_description_id_seq'::regclass); - - --- --- Name: hs_core_format id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_format ALTER COLUMN id SET DEFAULT nextval('public.hs_core_format_id_seq'::regclass); - - --- --- Name: hs_core_fundingagency id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_fundingagency ALTER COLUMN id SET DEFAULT nextval('public.hs_core_fundingagency_id_seq'::regclass); - - --- --- Name: hs_core_genericresource_collections id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource_collections ALTER COLUMN id SET DEFAULT nextval('public.hs_core_genericresource_collections_id_seq'::regclass); - - --- --- Name: hs_core_groupownership id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_groupownership ALTER COLUMN id SET DEFAULT nextval('public.hs_core_groupownership_id_seq'::regclass); - - --- --- Name: hs_core_identifier id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_identifier ALTER COLUMN id SET DEFAULT nextval('public.hs_core_identifier_id_seq'::regclass); - - --- --- Name: hs_core_language id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_language ALTER COLUMN id SET DEFAULT nextval('public.hs_core_language_id_seq'::regclass); - - --- --- Name: hs_core_publisher id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_publisher ALTER COLUMN id SET DEFAULT nextval('public.hs_core_publisher_id_seq'::regclass); - - --- --- Name: hs_core_relation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_relation ALTER COLUMN id SET DEFAULT nextval('public.hs_core_relation_id_seq'::regclass); - - --- --- Name: hs_core_resourcefile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_resourcefile ALTER COLUMN id SET DEFAULT nextval('public.hs_core_resourcefile_id_seq'::regclass); - - --- --- Name: hs_core_rights id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_rights ALTER COLUMN id SET DEFAULT nextval('public.hs_core_rights_id_seq'::regclass); - - --- --- Name: hs_core_subject id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_subject ALTER COLUMN id SET DEFAULT nextval('public.hs_core_subject_id_seq'::regclass); - - --- --- Name: hs_core_tasknotification id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_tasknotification ALTER COLUMN id SET DEFAULT nextval('public.hs_core_tasknotification_id_seq'::regclass); - - --- --- Name: hs_core_title id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_title ALTER COLUMN id SET DEFAULT nextval('public.hs_core_title_id_seq'::regclass); - - --- --- Name: hs_core_type id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_type ALTER COLUMN id SET DEFAULT nextval('public.hs_core_type_id_seq'::regclass); - - --- --- Name: hs_dictionary_uncategorizedterm id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_dictionary_uncategorizedterm ALTER COLUMN id SET DEFAULT nextval('public.hs_dictionary_uncategorizedterm_id_seq'::regclass); - - --- --- Name: hs_dictionary_university id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_dictionary_university ALTER COLUMN id SET DEFAULT nextval('public.hs_dictionary_university_id_seq'::regclass); - - --- --- Name: hs_file_types_bandinformation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_bandinformation ALTER COLUMN id SET DEFAULT nextval('public.hs_geo_raster_resource_bandinformation_id_seq'::regclass); - - --- --- Name: hs_file_types_cellinformation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cellinformation ALTER COLUMN id SET DEFAULT nextval('public.hs_geo_raster_resource_cellinformation_id_seq'::regclass); - - --- --- Name: hs_file_types_cvaggregationstatistic id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvaggregationstatistic ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvaggregationstatistic_id_seq'::regclass); - - --- --- Name: hs_file_types_cvelevationdatum id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvelevationdatum ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvelevationdatum_id_seq'::regclass); - - --- --- Name: hs_file_types_cvmedium id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvmedium ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvmedium_id_seq'::regclass); - - --- --- Name: hs_file_types_cvmethodtype id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvmethodtype ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvmethodtype_id_seq'::regclass); - - --- --- Name: hs_file_types_cvsitetype id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvsitetype ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvsitetype_id_seq'::regclass); - - --- --- Name: hs_file_types_cvspeciation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvspeciation ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvspeciation_id_seq'::regclass); - - --- --- Name: hs_file_types_cvstatus id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvstatus ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvstatus_id_seq'::regclass); - - --- --- Name: hs_file_types_cvunitstype id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvunitstype ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvunitstype_id_seq'::regclass); - - --- --- Name: hs_file_types_cvvariablename id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvvariablename ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvvariablename_id_seq'::regclass); - - --- --- Name: hs_file_types_cvvariabletype id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvvariabletype ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_cvvariabletype_id_seq'::regclass); - - --- --- Name: hs_file_types_fieldinformation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_fieldinformation ALTER COLUMN id SET DEFAULT nextval('public.hs_geographic_feature_resource_fieldinformation_id_seq'::regclass); - - --- --- Name: hs_file_types_filesetlogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetlogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_filesetlogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_filesetmetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetmetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_filesetmetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_genericfilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericfilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_genericfilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_genericlogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericlogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_genericlogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_geofeaturefilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturefilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_geofeaturefilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_geofeaturelogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturelogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_geofeaturelogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_geometryinformation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geometryinformation ALTER COLUMN id SET DEFAULT nextval('public.hs_geographic_feature_resource_geometryinformation_id_seq'::regclass); - - --- --- Name: hs_file_types_georasterfilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterfilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_georasterfilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_georasterlogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterlogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_georasterlogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_method id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_method ALTER COLUMN id SET DEFAULT nextval('public.hs_app_timeseries_method_id_seq'::regclass); - - --- --- Name: hs_file_types_modelinstancefilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancefilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_modelinstancefilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_modelinstancelogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancelogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_modelinstancelogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_modelprogramfilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramfilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_modelprogramfilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_modelprogramlogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramlogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_modelprogramlogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_modelprogramresourcefiletype id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramresourcefiletype ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_modelprogramresourcefiletype_id_seq'::regclass); - - --- --- Name: hs_file_types_netcdffilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdffilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_netcdffilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_netcdflogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdflogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_netcdflogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_originalcoverage id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverage ALTER COLUMN id SET DEFAULT nextval('public."hs_app_netCDF_originalcoverage_id_seq"'::regclass); - - --- --- Name: hs_file_types_originalcoveragegeofeature id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoveragegeofeature ALTER COLUMN id SET DEFAULT nextval('public.hs_geographic_feature_resource_originalcoverage_id_seq'::regclass); - - --- --- Name: hs_file_types_originalcoverageraster id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverageraster ALTER COLUMN id SET DEFAULT nextval('public.hs_geo_raster_resource_originalcoverage_id_seq'::regclass); - - --- --- Name: hs_file_types_processinglevel id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_processinglevel ALTER COLUMN id SET DEFAULT nextval('public.hs_app_timeseries_processinglevel_id_seq'::regclass); - - --- --- Name: hs_file_types_reftimeseriesfilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeseriesfilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_reftimeseriesfilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_reftimeserieslogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeserieslogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_reftimeserieslogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_site id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_site ALTER COLUMN id SET DEFAULT nextval('public.hs_app_timeseries_site_id_seq'::regclass); - - --- --- Name: hs_file_types_timeseriesfilemetadata id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeseriesfilemetadata ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_timeseriesfilemetadata_id_seq'::regclass); - - --- --- Name: hs_file_types_timeserieslogicalfile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeserieslogicalfile ALTER COLUMN id SET DEFAULT nextval('public.hs_file_types_timeserieslogicalfile_id_seq'::regclass); - - --- --- Name: hs_file_types_timeseriesresult id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeseriesresult ALTER COLUMN id SET DEFAULT nextval('public.hs_app_timeseries_timeseriesresult_id_seq'::regclass); - - --- --- Name: hs_file_types_utcoffset id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_utcoffset ALTER COLUMN id SET DEFAULT nextval('public.hs_app_timeseries_utcoffset_id_seq'::regclass); - - --- --- Name: hs_file_types_variable id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_variable ALTER COLUMN id SET DEFAULT nextval('public."hs_app_netCDF_variable_id_seq"'::regclass); - - --- --- Name: hs_file_types_variabletimeseries id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_variabletimeseries ALTER COLUMN id SET DEFAULT nextval('public.hs_app_timeseries_variable_id_seq'::regclass); - - --- --- Name: hs_labels_resourcelabels id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_resourcelabels ALTER COLUMN id SET DEFAULT nextval('public.hs_labels_resourcelabels_id_seq'::regclass); - - --- --- Name: hs_labels_userlabels id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userlabels ALTER COLUMN id SET DEFAULT nextval('public.hs_labels_userlabels_id_seq'::regclass); - - --- --- Name: hs_labels_userresourceflags id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourceflags ALTER COLUMN id SET DEFAULT nextval('public.hs_labels_userresourceflags_id_seq'::regclass); - - --- --- Name: hs_labels_userresourcelabels id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourcelabels ALTER COLUMN id SET DEFAULT nextval('public.hs_labels_userresourcelabels_id_seq'::regclass); - - --- --- Name: hs_labels_userstoredlabels id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userstoredlabels ALTER COLUMN id SET DEFAULT nextval('public.hs_labels_userstoredlabels_id_seq'::regclass); - - --- --- Name: hs_odm2_odm2variable id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_odm2_odm2variable ALTER COLUMN id SET DEFAULT nextval('public.hs_odm2_odm2variable_id_seq'::regclass); - - --- --- Name: hs_tools_resource_apphomepageurl id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_apphomepageurl ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_apphomepageurl_id_seq'::regclass); - - --- --- Name: hs_tools_resource_helppageurl id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_helppageurl ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_helppageurl_id_seq'::regclass); - - --- --- Name: hs_tools_resource_issuespageurl id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_issuespageurl ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_issuespageurl_id_seq'::regclass); - - --- --- Name: hs_tools_resource_mailinglisturl id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_mailinglisturl ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_mailinglisturl_id_seq'::regclass); - - --- --- Name: hs_tools_resource_requesturlbase id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbase ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_requesturlbase_id_seq'::regclass); - - --- --- Name: hs_tools_resource_requesturlbaseaggregation id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbaseaggregation ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_requesturlbaseaggregation_id_seq'::regclass); - - --- --- Name: hs_tools_resource_requesturlbasefile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbasefile ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_requesturlbasefile_id_seq'::regclass); - - --- --- Name: hs_tools_resource_roadmap id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_roadmap ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_roadmap_id_seq'::regclass); - - --- --- Name: hs_tools_resource_showonopenwithlist id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_showonopenwithlist ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_showonopenwithlist_id_seq'::regclass); - - --- --- Name: hs_tools_resource_sourcecodeurl id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_sourcecodeurl ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_sourcecodeurl_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedaggtypechoices id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypechoices ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedaggtypechoices_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedaggtypes id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedaggtypes_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes_supported_agg_types ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedfileextensions id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedfileextensions ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedfileextensions_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedrestypechoices id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypechoices ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedrestypechoices_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedrestypes id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedrestypes_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes_supported_res_types ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedrestypes_supported_res_types_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedsharingstatus id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedsharingstatus_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus_sharing_status ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedsharingstatus_sharing_status_id_seq'::regclass); - - --- --- Name: hs_tools_resource_supportedsharingstatuschoices id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatuschoices ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_supportedsharingstatuschoices_id_seq'::regclass); - - --- --- Name: hs_tools_resource_testingprotocolurl id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_testingprotocolurl ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_testingprotocolurl_id_seq'::regclass); - - --- --- Name: hs_tools_resource_toolicon id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolicon ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_toolicon_id_seq'::regclass); - - --- --- Name: hs_tools_resource_toolversion id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolversion ALTER COLUMN id SET DEFAULT nextval('public.hs_tools_resource_toolversion_id_seq'::regclass); - - --- --- Name: hs_tracking_session id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_session ALTER COLUMN id SET DEFAULT nextval('public.hs_tracking_session_id_seq'::regclass); - - --- --- Name: hs_tracking_variable id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_variable ALTER COLUMN id SET DEFAULT nextval('public.hs_tracking_variable_id_seq'::regclass); - - --- --- Name: hs_tracking_visitor id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_visitor ALTER COLUMN id SET DEFAULT nextval('public.hs_tracking_visitor_id_seq'::regclass); - - --- --- Name: pages_page id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_page ALTER COLUMN id SET DEFAULT nextval('public.pages_page_id_seq'::regclass); - - --- --- Name: robots_rule id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule ALTER COLUMN id SET DEFAULT nextval('public.robots_rule_id_seq'::regclass); - - --- --- Name: robots_rule_allowed id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_allowed ALTER COLUMN id SET DEFAULT nextval('public.robots_rule_allowed_id_seq'::regclass); - - --- --- Name: robots_rule_disallowed id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_disallowed ALTER COLUMN id SET DEFAULT nextval('public.robots_rule_disallowed_id_seq'::regclass); - - --- --- Name: robots_rule_sites id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_sites ALTER COLUMN id SET DEFAULT nextval('public.robots_rule_sites_id_seq'::regclass); - - --- --- Name: robots_url id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_url ALTER COLUMN id SET DEFAULT nextval('public.robots_url_id_seq'::regclass); - - --- --- Name: security_cspreport id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.security_cspreport ALTER COLUMN id SET DEFAULT nextval('public.security_cspreport_id_seq'::regclass); - - --- --- Name: security_passwordexpiry id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.security_passwordexpiry ALTER COLUMN id SET DEFAULT nextval('public.security_passwordexpiry_id_seq'::regclass); - - --- --- Name: theme_iconbox id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_iconbox ALTER COLUMN id SET DEFAULT nextval('public.theme_iconbox_id_seq'::regclass); - - --- --- Name: theme_quotamessage id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_quotamessage ALTER COLUMN id SET DEFAULT nextval('public.theme_quotamessage_id_seq'::regclass); - - --- --- Name: theme_siteconfiguration id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_siteconfiguration ALTER COLUMN id SET DEFAULT nextval('public.theme_siteconfiguration_id_seq'::regclass); - - --- --- Name: theme_userprofile id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userprofile ALTER COLUMN id SET DEFAULT nextval('public.theme_userprofile_id_seq'::regclass); - - --- --- Name: theme_userquota id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userquota ALTER COLUMN id SET DEFAULT nextval('public.theme_userquota_id_seq'::regclass); - - --- --- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.auth_group (id, name) FROM stdin; -1 Hydroshare Author -2 test -13 CZO IML -3 CZO Boulder -4 CZO Eel -5 CZO Catalina-Jemez -6 CZO Reynolds -7 CZO Luquillo -8 CZO Sierra -9 CZO Christina -10 CZO Shale-Hills -11 CZO Calhoun -12 CZO National -15 minio edit group -14 minio view group -\. - - --- --- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; -2137 1 412 -2138 1 413 -2139 1 414 -2140 1 415 -2141 1 416 -2142 1 417 -2143 1 418 -2144 1 419 -2145 1 420 -2146 1 421 -2147 1 422 -2148 1 423 -2149 1 424 -2150 1 425 -2151 1 426 -2152 1 427 -2153 1 428 -2154 1 429 -2155 1 430 -2156 1 431 -2157 1 432 -2158 1 433 -2159 1 434 -2160 1 435 -2161 1 436 -2162 1 437 -2163 1 438 -2164 1 439 -2165 1 440 -2166 1 441 -2167 1 442 -2168 1 443 -2169 1 444 -2170 1 445 -2171 1 446 -2172 1 447 -2173 1 448 -2174 1 449 -2175 1 450 -2176 1 451 -2177 1 452 -2178 1 453 -2179 1 454 -2180 1 455 -2181 1 456 -2182 1 457 -2183 1 458 -2184 1 459 -2185 1 460 -2186 1 461 -2187 1 462 -2188 1 463 -2189 1 464 -2190 1 465 -2191 1 476 -2192 1 477 -2193 1 478 -2194 1 479 -2195 1 480 -2196 1 481 -2197 1 482 -2198 1 483 -2199 1 484 -2200 1 485 -2201 1 486 -2202 1 487 -2203 1 488 -2204 1 489 -2205 1 490 -2206 1 491 -2207 1 492 -2208 1 493 -2209 1 494 -2210 1 495 -2211 1 496 -2212 1 497 -2213 1 498 -2214 1 499 -2215 1 500 -2216 1 501 -2217 1 502 -2218 1 503 -2219 1 504 -2220 1 505 -2221 1 506 -2222 1 507 -2223 1 508 -2224 1 509 -2225 1 510 -2226 1 511 -2227 1 512 -2228 1 513 -2229 1 514 -2230 1 522 -2231 1 523 -2232 1 524 -2233 1 528 -2234 1 529 -2235 1 530 -2236 1 531 -2237 1 532 -2238 1 533 -2239 1 543 -2240 1 544 -2241 1 545 -2242 1 552 -2243 1 553 -2244 1 554 -2245 1 555 -2246 1 556 -2247 1 557 -2248 1 558 -2249 1 559 -2250 1 560 -2251 1 561 -2252 1 562 -2253 1 563 -2254 1 564 -2255 1 565 -2256 1 566 -2257 1 567 -2258 1 568 -2259 1 569 -2260 1 570 -2261 1 571 -2262 1 572 -2263 1 573 -2264 1 574 -2265 1 575 -2266 1 576 -2267 1 577 -2268 1 578 -2269 1 579 -2270 1 580 -2271 1 581 -2272 1 582 -2273 1 583 -2274 1 584 -2275 1 585 -2276 1 586 -2277 1 587 -2278 1 588 -2279 1 589 -2280 1 590 -2281 1 591 -2282 1 592 -2283 1 593 -2284 1 594 -2285 1 595 -2286 1 596 -2287 1 597 -2288 1 598 -2289 1 599 -2290 1 600 -2291 1 601 -2292 1 602 -2293 1 603 -2294 1 604 -2295 1 605 -2296 1 606 -2297 1 607 -2298 1 608 -2299 1 609 -2300 1 610 -2301 1 611 -2302 1 612 -2303 1 613 -2304 1 614 -1957 1 139 -1958 1 140 -1959 1 141 -1960 1 142 -1961 1 143 -1962 1 144 -1963 1 145 -1964 1 146 -1965 1 147 -1966 1 148 -1967 1 149 -1968 1 150 -1969 1 151 -1970 1 152 -1971 1 153 -1972 1 154 -1973 1 155 -1974 1 156 -1975 1 157 -1976 1 158 -1977 1 159 -1978 1 160 -1979 1 161 -1980 1 162 -1981 1 163 -1982 1 164 -1983 1 165 -1984 1 166 -1985 1 167 -1986 1 168 -1987 1 169 -1988 1 170 -1989 1 171 -1990 1 172 -1991 1 173 -1992 1 174 -1993 1 175 -1994 1 176 -1995 1 177 -1996 1 178 -1997 1 179 -1998 1 180 -1999 1 181 -2000 1 182 -2001 1 183 -2002 1 184 -2003 1 185 -2004 1 186 -2005 1 187 -2006 1 188 -2007 1 189 -2008 1 190 -2009 1 191 -2010 1 192 -2011 1 193 -2012 1 194 -2013 1 195 -2014 1 196 -2015 1 197 -2016 1 198 -2017 1 199 -2018 1 200 -2019 1 201 -2020 1 202 -2021 1 203 -2022 1 204 -2023 1 271 -2024 1 272 -2025 1 273 -2026 1 274 -2027 1 275 -2028 1 276 -2029 1 277 -2030 1 278 -2031 1 279 -2032 1 280 -2033 1 281 -2034 1 282 -2035 1 283 -2036 1 284 -2037 1 285 -2038 1 313 -2039 1 314 -2040 1 315 -2041 1 316 -2042 1 317 -2043 1 318 -2044 1 319 -2045 1 320 -2046 1 321 -2047 1 322 -2048 1 323 -2049 1 324 -2050 1 325 -2051 1 326 -2052 1 327 -2053 1 328 -2054 1 329 -2055 1 330 -2056 1 331 -2057 1 332 -2058 1 333 -2059 1 334 -2060 1 335 -2061 1 336 -2062 1 337 -2063 1 338 -2064 1 339 -2065 1 340 -2066 1 341 -2067 1 342 -2068 1 343 -2069 1 344 -2070 1 345 -2071 1 346 -2072 1 347 -2073 1 348 -2074 1 349 -2075 1 350 -2076 1 351 -2077 1 352 -2078 1 353 -2079 1 354 -2080 1 355 -2081 1 356 -2082 1 357 -2083 1 358 -2084 1 359 -2085 1 360 -2086 1 361 -2087 1 362 -2088 1 363 -2089 1 364 -2090 1 365 -2091 1 366 -2092 1 367 -2093 1 368 -2094 1 369 -2095 1 370 -2096 1 371 -2097 1 372 -2098 1 373 -2099 1 374 -2100 1 375 -2101 1 376 -2102 1 377 -2103 1 378 -2104 1 379 -2105 1 380 -2106 1 381 -2107 1 382 -2108 1 383 -2109 1 384 -2110 1 385 -2111 1 386 -2112 1 387 -2113 1 388 -2114 1 389 -2115 1 390 -2116 1 391 -2117 1 392 -2118 1 393 -2119 1 394 -2120 1 395 -2121 1 396 -2122 1 397 -2123 1 398 -2124 1 399 -2125 1 400 -2126 1 401 -2127 1 402 -2128 1 403 -2129 1 404 -2130 1 405 -2131 1 406 -2132 1 407 -2133 1 408 -2134 1 409 -2135 1 410 -2136 1 411 -2305 1 615 -2306 1 616 -2307 1 617 -2308 1 618 -2309 1 619 -2310 1 620 -2311 1 621 -2312 1 622 -2313 1 623 -2314 1 624 -2315 1 625 -2316 1 626 -2317 1 627 -2318 1 628 -2319 1 629 -2320 1 630 -2321 1 631 -2322 1 632 -2323 1 633 -2324 1 634 -2325 1 635 -2326 1 636 -2327 1 637 -2328 1 638 -2329 1 639 -2330 1 640 -2331 1 641 -2332 1 642 -2333 1 643 -2334 1 644 -2335 1 645 -2336 1 646 -2337 1 647 -2338 1 648 -2339 1 649 -2340 1 650 -2341 1 651 -2342 1 652 -2343 1 653 -2344 1 654 -2345 1 655 -2346 1 656 -2347 1 657 -2348 1 658 -2349 1 659 -2350 1 660 -2351 1 661 -2352 1 662 -\. - - --- --- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; -1 Can add permission 1 add_permission -2 Can change permission 1 change_permission -3 Can delete permission 1 delete_permission -4 Can add group 2 add_group -5 Can change group 2 change_group -6 Can delete group 2 delete_group -7 Can add user 3 add_user -8 Can change user 3 change_user -9 Can delete user 3 delete_user -10 Can add application 4 add_application -11 Can change application 4 change_application -12 Can delete application 4 delete_application -13 Can add grant 5 add_grant -14 Can change grant 5 change_grant -15 Can delete grant 5 delete_grant -16 Can add access token 6 add_accesstoken -17 Can change access token 6 change_accesstoken -18 Can delete access token 6 delete_accesstoken -19 Can add refresh token 7 add_refreshtoken -20 Can change refresh token 7 change_refreshtoken -21 Can delete refresh token 7 delete_refreshtoken -22 Can add cors model 8 add_corsmodel -23 Can change cors model 8 change_corsmodel -24 Can delete cors model 8 delete_corsmodel -25 Can add content type 9 add_contenttype -26 Can change content type 9 change_contenttype -27 Can delete content type 9 delete_contenttype -28 Can add redirect 10 add_redirect -29 Can change redirect 10 change_redirect -30 Can delete redirect 10 delete_redirect -31 Can add session 11 add_session -32 Can change session 11 change_session -33 Can delete session 11 delete_session -34 Can add site 12 add_site -35 Can change site 12 change_site -36 Can delete site 12 delete_site -37 Can add post gis geometry columns 13 add_postgisgeometrycolumns -38 Can change post gis geometry columns 13 change_postgisgeometrycolumns -39 Can delete post gis geometry columns 13 delete_postgisgeometrycolumns -40 Can add post gis spatial ref sys 14 add_postgisspatialrefsys -41 Can change post gis spatial ref sys 14 change_postgisspatialrefsys -42 Can delete post gis spatial ref sys 14 delete_postgisspatialrefsys -43 Can add iRODS Environment 15 add_rodsenvironment -44 Can change iRODS Environment 15 change_rodsenvironment -45 Can delete iRODS Environment 15 delete_rodsenvironment -46 Can add Site Configuration 16 add_siteconfiguration -47 Can change Site Configuration 16 change_siteconfiguration -48 Can delete Site Configuration 16 delete_siteconfiguration -49 Can add Home page 17 add_homepage -50 Can change Home page 17 change_homepage -51 Can delete Home page 17 delete_homepage -52 Can add icon box 18 add_iconbox -53 Can change icon box 18 change_iconbox -54 Can delete icon box 18 delete_iconbox -55 Can add user profile 19 add_userprofile -56 Can change user profile 19 change_userprofile -57 Can delete user profile 19 delete_userprofile -58 Can add Setting 20 add_setting -59 Can change Setting 20 change_setting -60 Can delete Setting 20 delete_setting -61 Can add Site permission 21 add_sitepermission -62 Can change Site permission 21 change_sitepermission -63 Can delete Site permission 21 delete_sitepermission -64 Can add Comment 22 add_threadedcomment -65 Can change Comment 22 change_threadedcomment -66 Can delete Comment 22 delete_threadedcomment -67 Can add Keyword 23 add_keyword -68 Can change Keyword 23 change_keyword -69 Can delete Keyword 23 delete_keyword -70 Can add assigned keyword 24 add_assignedkeyword -71 Can change assigned keyword 24 change_assignedkeyword -72 Can delete assigned keyword 24 delete_assignedkeyword -73 Can add Rating 25 add_rating -74 Can change Rating 25 change_rating -75 Can delete Rating 25 delete_rating -76 Can add Blog post 26 add_blogpost -77 Can change Blog post 26 change_blogpost -78 Can delete Blog post 26 delete_blogpost -79 Can add Blog Category 27 add_blogcategory -80 Can change Blog Category 27 change_blogcategory -81 Can delete Blog Category 27 delete_blogcategory -82 Can add Form 28 add_form -83 Can change Form 28 change_form -84 Can delete Form 28 delete_form -85 Can add Field 29 add_field -86 Can change Field 29 change_field -87 Can delete Field 29 delete_field -88 Can add Form entry 30 add_formentry -89 Can change Form entry 30 change_formentry -90 Can delete Form entry 30 delete_formentry -91 Can add Form field entry 31 add_fieldentry -92 Can change Form field entry 31 change_fieldentry -93 Can delete Form field entry 31 delete_fieldentry -94 Can add Page 32 add_page -95 Can change Page 32 change_page -96 Can delete Page 32 delete_page -97 Can add Rich text page 33 add_richtextpage -98 Can change Rich text page 33 change_richtextpage -99 Can delete Rich text page 33 delete_richtextpage -100 Can add Link 34 add_link -101 Can change Link 34 change_link -102 Can delete Link 34 delete_link -103 Can add Gallery 35 add_gallery -104 Can change Gallery 35 change_gallery -105 Can delete Gallery 35 delete_gallery -106 Can add Image 36 add_galleryimage -107 Can change Image 36 change_galleryimage -108 Can delete Image 36 delete_galleryimage -109 Can add ogr dataset collection 37 add_ogrdatasetcollection -110 Can change ogr dataset collection 37 change_ogrdatasetcollection -111 Can delete ogr dataset collection 37 delete_ogrdatasetcollection -112 Can add ogr dataset 38 add_ogrdataset -113 Can change ogr dataset 38 change_ogrdataset -114 Can delete ogr dataset 38 delete_ogrdataset -115 Can add ogr layer 39 add_ogrlayer -116 Can change ogr layer 39 change_ogrlayer -117 Can delete ogr layer 39 delete_ogrlayer -118 Can add catalog page 40 add_catalogpage -119 Can change catalog page 40 change_catalogpage -120 Can delete catalog page 40 delete_catalogpage -121 Can add data resource 41 add_dataresource -122 Can change data resource 41 change_dataresource -123 Can delete data resource 41 delete_dataresource -124 Can add ordered resource 42 add_orderedresource -125 Can change ordered resource 42 change_orderedresource -126 Can delete ordered resource 42 delete_orderedresource -127 Can add resource group 43 add_resourcegroup -128 Can change resource group 43 change_resourcegroup -129 Can delete resource group 43 delete_resourcegroup -130 Can add related resource 44 add_relatedresource -131 Can change related resource 44 change_relatedresource -132 Can delete related resource 44 delete_relatedresource -133 Can add style 45 add_style -134 Can change style 45 change_style -135 Can delete style 45 delete_style -136 Can add rendered layer 46 add_renderedlayer -137 Can change rendered layer 46 change_renderedlayer -138 Can delete rendered layer 46 delete_renderedlayer -139 Can add group ownership 47 add_groupownership -140 Can change group ownership 47 change_groupownership -141 Can delete group ownership 47 delete_groupownership -142 Can add external profile link 48 add_externalprofilelink -143 Can change external profile link 48 change_externalprofilelink -144 Can delete external profile link 48 delete_externalprofilelink -145 Can add contributor 49 add_contributor -146 Can change contributor 49 change_contributor -147 Can delete contributor 49 delete_contributor -148 Can add creator 50 add_creator -149 Can change creator 50 change_creator -150 Can delete creator 50 delete_creator -151 Can add description 51 add_description -152 Can change description 51 change_description -153 Can delete description 51 delete_description -154 Can add title 52 add_title -155 Can change title 52 change_title -156 Can delete title 52 delete_title -157 Can add type 53 add_type -158 Can change type 53 change_type -159 Can delete type 53 delete_type -160 Can add date 54 add_date -161 Can change date 54 change_date -162 Can delete date 54 delete_date -163 Can add relation 55 add_relation -164 Can change relation 55 change_relation -165 Can delete relation 55 delete_relation -166 Can add identifier 56 add_identifier -167 Can change identifier 56 change_identifier -168 Can delete identifier 56 delete_identifier -169 Can add publisher 57 add_publisher -170 Can change publisher 57 change_publisher -171 Can delete publisher 57 delete_publisher -172 Can add language 58 add_language -173 Can change language 58 change_language -174 Can delete language 58 delete_language -175 Can add coverage 59 add_coverage -176 Can change coverage 59 change_coverage -177 Can delete coverage 59 delete_coverage -178 Can add format 60 add_format -179 Can change format 60 change_format -180 Can delete format 60 delete_format -181 Can add subject 61 add_subject -182 Can change subject 61 change_subject -183 Can delete subject 61 delete_subject -184 Can add source 62 add_source -185 Can change source 62 change_source -186 Can delete source 62 delete_source -187 Can add rights 63 add_rights -188 Can change rights 63 change_rights -189 Can delete rights 63 delete_rights -190 Can add resource file 64 add_resourcefile -191 Can change resource file 64 change_resourcefile -192 Can delete resource file 64 delete_resourcefile -193 Can add bags 65 add_bags -194 Can change bags 65 change_bags -195 Can delete bags 65 delete_bags -196 Can add Generic 66 add_baseresource -197 Can change Generic 66 change_baseresource -198 Can delete Generic 66 delete_baseresource -199 Can add Generic 67 add_genericresource -200 Can change Generic 67 change_genericresource -201 Can delete Generic 67 delete_genericresource -202 Can add core meta data 68 add_coremetadata -203 Can change core meta data 68 change_coremetadata -204 Can delete core meta data 68 delete_coremetadata -205 Can add user group privilege 69 add_usergroupprivilege -206 Can change user group privilege 69 change_usergroupprivilege -207 Can delete user group privilege 69 delete_usergroupprivilege -208 Can add user resource privilege 70 add_userresourceprivilege -209 Can change user resource privilege 70 change_userresourceprivilege -210 Can delete user resource privilege 70 delete_userresourceprivilege -211 Can add group resource privilege 71 add_groupresourceprivilege -212 Can change group resource privilege 71 change_groupresourceprivilege -213 Can delete group resource privilege 71 delete_groupresourceprivilege -214 Can add user access 72 add_useraccess -215 Can change user access 72 change_useraccess -216 Can delete user access 72 delete_useraccess -217 Can add group access 73 add_groupaccess -218 Can change group access 73 change_groupaccess -219 Can delete group access 73 delete_groupaccess -220 Can add resource access 74 add_resourceaccess -221 Can change resource access 74 change_resourceaccess -222 Can delete resource access 74 delete_resourceaccess -223 Can add user resource labels 75 add_userresourcelabels -224 Can change user resource labels 75 change_userresourcelabels -225 Can delete user resource labels 75 delete_userresourcelabels -226 Can add user resource flags 76 add_userresourceflags -227 Can change user resource flags 76 change_userresourceflags -228 Can delete user resource flags 76 delete_userresourceflags -229 Can add user stored labels 77 add_userstoredlabels -230 Can change user stored labels 77 change_userstoredlabels -231 Can delete user stored labels 77 delete_userstoredlabels -232 Can add user labels 78 add_userlabels -233 Can change user labels 78 change_userlabels -234 Can delete user labels 78 delete_userlabels -235 Can add resource labels 79 add_resourcelabels -236 Can change resource labels 79 change_resourcelabels -237 Can delete resource labels 79 delete_resourcelabels -238 Can add docker profile 80 add_dockerprofile -239 Can change docker profile 80 change_dockerprofile -240 Can delete docker profile 80 delete_dockerprofile -241 Can add container overrides 81 add_containeroverrides -242 Can change container overrides 81 change_containeroverrides -243 Can delete container overrides 81 delete_containeroverrides -244 Can add override env var 82 add_overrideenvvar -245 Can change override env var 82 change_overrideenvvar -246 Can delete override env var 82 delete_overrideenvvar -247 Can add override volume 83 add_overridevolume -248 Can change override volume 83 change_overridevolume -249 Can delete override volume 83 delete_overridevolume -250 Can add override link 84 add_overridelink -251 Can change override link 84 change_overridelink -252 Can delete override link 84 delete_overridelink -253 Can add override port 85 add_overrideport -254 Can change override port 85 change_overrideport -255 Can delete override port 85 delete_overrideport -256 Can add docker link 86 add_dockerlink -257 Can change docker link 86 change_dockerlink -258 Can delete docker link 86 delete_dockerlink -259 Can add docker env var 87 add_dockerenvvar -260 Can change docker env var 87 change_dockerenvvar -261 Can delete docker env var 87 delete_dockerenvvar -262 Can add docker volume 88 add_dockervolume -263 Can change docker volume 88 change_dockervolume -264 Can delete docker volume 88 delete_dockervolume -265 Can add docker port 89 add_dockerport -266 Can change docker port 89 change_dockerport -267 Can delete docker port 89 delete_dockerport -268 Can add docker process 90 add_dockerprocess -269 Can change docker process 90 change_dockerprocess -270 Can delete docker process 90 delete_dockerprocess -271 Can add original coverage 91 add_originalcoverage -272 Can change original coverage 91 change_originalcoverage -273 Can delete original coverage 91 delete_originalcoverage -274 Can add band information 92 add_bandinformation -275 Can change band information 92 change_bandinformation -276 Can delete band information 92 delete_bandinformation -277 Can add cell information 93 add_cellinformation -278 Can change cell information 93 change_cellinformation -279 Can delete cell information 93 delete_cellinformation -280 Can add Geographic Raster 94 add_rasterresource -281 Can change Geographic Raster 94 change_rasterresource -282 Can delete Geographic Raster 94 delete_rasterresource -283 Can add raster meta data 95 add_rastermetadata -284 Can change raster meta data 95 change_rastermetadata -285 Can delete raster meta data 95 delete_rastermetadata -286 Can add task state 96 add_taskmeta -287 Can change task state 96 change_taskmeta -288 Can delete task state 96 delete_taskmeta -289 Can add saved group result 97 add_tasksetmeta -290 Can change saved group result 97 change_tasksetmeta -291 Can delete saved group result 97 delete_tasksetmeta -292 Can add interval 98 add_intervalschedule -293 Can change interval 98 change_intervalschedule -294 Can delete interval 98 delete_intervalschedule -295 Can add crontab 99 add_crontabschedule -296 Can change crontab 99 change_crontabschedule -297 Can delete crontab 99 delete_crontabschedule -298 Can add periodic tasks 100 add_periodictasks -299 Can change periodic tasks 100 change_periodictasks -300 Can delete periodic tasks 100 delete_periodictasks -301 Can add periodic task 101 add_periodictask -302 Can change periodic task 101 change_periodictask -303 Can delete periodic task 101 delete_periodictask -304 Can add worker 102 add_workerstate -305 Can change worker 102 change_workerstate -306 Can delete worker 102 delete_workerstate -307 Can add task 103 add_taskstate -308 Can change task 103 change_taskstate -309 Can delete task 103 delete_taskstate -313 Can add reference url 105 add_referenceurl -314 Can change reference url 105 change_referenceurl -315 Can delete reference url 105 delete_referenceurl -316 Can add method 106 add_method -317 Can change method 106 change_method -318 Can delete method 106 delete_method -319 Can add quality control level 107 add_qualitycontrollevel -320 Can change quality control level 107 change_qualitycontrollevel -321 Can delete quality control level 107 delete_qualitycontrollevel -322 Can add variable 108 add_variable -323 Can change variable 108 change_variable -324 Can delete variable 108 delete_variable -325 Can add site 109 add_site -326 Can change site 109 change_site -327 Can delete site 109 delete_site -328 Can add ref ts metadata 110 add_reftsmetadata -329 Can change ref ts metadata 110 change_reftsmetadata -330 Can delete ref ts metadata 110 delete_reftsmetadata -331 Can add site 111 add_site -332 Can change site 111 change_site -333 Can delete site 111 delete_site -334 Can add variable 112 add_variable -335 Can change variable 112 change_variable -336 Can delete variable 112 delete_variable -337 Can add method 113 add_method -338 Can change method 113 change_method -339 Can delete method 113 delete_method -340 Can add processing level 114 add_processinglevel -341 Can change processing level 114 change_processinglevel -342 Can delete processing level 114 delete_processinglevel -343 Can add time series result 115 add_timeseriesresult -344 Can change time series result 115 change_timeseriesresult -345 Can delete time series result 115 delete_timeseriesresult -346 Can add Time Series 116 add_timeseriesresource -347 Can change Time Series 116 change_timeseriesresource -348 Can delete Time Series 116 delete_timeseriesresource -349 Can add time series meta data 117 add_timeseriesmetadata -350 Can change time series meta data 117 change_timeseriesmetadata -351 Can delete time series meta data 117 delete_timeseriesmetadata -352 Can add original coverage 118 add_originalcoverage -353 Can change original coverage 118 change_originalcoverage -354 Can delete original coverage 118 delete_originalcoverage -355 Can add variable 119 add_variable -356 Can change variable 119 change_variable -357 Can delete variable 119 delete_variable -358 Can add Multidimensional (NetCDF) 120 add_netcdfresource -359 Can change Multidimensional (NetCDF) 120 change_netcdfresource -360 Can delete Multidimensional (NetCDF) 120 delete_netcdfresource -361 Can add netcdf meta data 121 add_netcdfmetadata -362 Can change netcdf meta data 121 change_netcdfmetadata -363 Can delete netcdf meta data 121 delete_netcdfmetadata -364 Can add mp metadata 122 add_mpmetadata -365 Can change mp metadata 122 change_mpmetadata -366 Can delete mp metadata 122 delete_mpmetadata -367 Can add Model Program Resource 123 add_modelprogramresource -368 Can change Model Program Resource 123 change_modelprogramresource -369 Can delete Model Program Resource 123 delete_modelprogramresource -370 Can add model program meta data 124 add_modelprogrammetadata -371 Can change model program meta data 124 change_modelprogrammetadata -372 Can delete model program meta data 124 delete_modelprogrammetadata -373 Can add model output 125 add_modeloutput -374 Can change model output 125 change_modeloutput -375 Can delete model output 125 delete_modeloutput -376 Can add executed by 126 add_executedby -377 Can change executed by 126 change_executedby -378 Can delete executed by 126 delete_executedby -379 Can add Model Instance Resource 127 add_modelinstanceresource -380 Can change Model Instance Resource 127 change_modelinstanceresource -381 Can delete Model Instance Resource 127 delete_modelinstanceresource -382 Can add model instance meta data 128 add_modelinstancemetadata -383 Can change model instance meta data 128 change_modelinstancemetadata -384 Can delete model instance meta data 128 delete_modelinstancemetadata -385 Can add Web App Resource 129 add_toolresource -386 Can change Web App Resource 129 change_toolresource -387 Can delete Web App Resource 129 delete_toolresource -388 Can add request url base 130 add_requesturlbase -389 Can change request url base 130 change_requesturlbase -390 Can delete request url base 130 delete_requesturlbase -391 Can add tool version 131 add_toolversion -392 Can change tool version 131 change_toolversion -393 Can delete tool version 131 delete_toolversion -394 Can add supported res type choices 132 add_supportedrestypechoices -395 Can change supported res type choices 132 change_supportedrestypechoices -396 Can delete supported res type choices 132 delete_supportedrestypechoices -397 Can add supported res types 133 add_supportedrestypes -398 Can change supported res types 133 change_supportedrestypes -399 Can delete supported res types 133 delete_supportedrestypes -400 Can add tool icon 134 add_toolicon -401 Can change tool icon 134 change_toolicon -402 Can delete tool icon 134 delete_toolicon -403 Can add tool meta data 135 add_toolmetadata -404 Can change tool meta data 135 change_toolmetadata -405 Can delete tool meta data 135 delete_toolmetadata -406 Can add model output 136 add_modeloutput -407 Can change model output 136 change_modeloutput -408 Can delete model output 136 delete_modeloutput -409 Can add executed by 137 add_executedby -410 Can change executed by 137 change_executedby -411 Can delete executed by 137 delete_executedby -412 Can add model objective choices 138 add_modelobjectivechoices -413 Can change model objective choices 138 change_modelobjectivechoices -414 Can delete model objective choices 138 delete_modelobjectivechoices -415 Can add model objective 139 add_modelobjective -416 Can change model objective 139 change_modelobjective -417 Can delete model objective 139 delete_modelobjective -418 Can add simulation type 140 add_simulationtype -419 Can change simulation type 140 change_simulationtype -420 Can delete simulation type 140 delete_simulationtype -421 Can add model method 141 add_modelmethod -422 Can change model method 141 change_modelmethod -423 Can delete model method 141 delete_modelmethod -424 Can add model parameters choices 142 add_modelparameterschoices -425 Can change model parameters choices 142 change_modelparameterschoices -426 Can delete model parameters choices 142 delete_modelparameterschoices -427 Can add model parameter 143 add_modelparameter -428 Can change model parameter 143 change_modelparameter -429 Can delete model parameter 143 delete_modelparameter -430 Can add model input 144 add_modelinput -431 Can change model input 144 change_modelinput -432 Can delete model input 144 delete_modelinput -433 Can add SWAT Model Instance Resource 145 add_swatmodelinstanceresource -434 Can change SWAT Model Instance Resource 145 change_swatmodelinstanceresource -435 Can delete SWAT Model Instance Resource 145 delete_swatmodelinstanceresource -436 Can add swat model instance meta data 146 add_swatmodelinstancemetadata -437 Can change swat model instance meta data 146 change_swatmodelinstancemetadata -438 Can delete swat model instance meta data 146 delete_swatmodelinstancemetadata -439 Can add original file info 147 add_originalfileinfo -440 Can change original file info 147 change_originalfileinfo -441 Can delete original file info 147 delete_originalfileinfo -442 Can add original coverage 148 add_originalcoverage -443 Can change original coverage 148 change_originalcoverage -444 Can delete original coverage 148 delete_originalcoverage -445 Can add field information 149 add_fieldinformation -446 Can change field information 149 change_fieldinformation -447 Can delete field information 149 delete_fieldinformation -448 Can add geometry information 150 add_geometryinformation -449 Can change geometry information 150 change_geometryinformation -450 Can delete geometry information 150 delete_geometryinformation -451 Can add Geographic Feature (ESRI Shapefiles) 151 add_geographicfeatureresource -452 Can change Geographic Feature (ESRI Shapefiles) 151 change_geographicfeatureresource -453 Can delete Geographic Feature (ESRI Shapefiles) 151 delete_geographicfeatureresource -454 Can add geographic feature meta data 152 add_geographicfeaturemetadata -455 Can change geographic feature meta data 152 change_geographicfeaturemetadata -456 Can delete geographic feature meta data 152 delete_geographicfeaturemetadata -457 Can add Script Resource 153 add_scriptresource -458 Can change Script Resource 153 change_scriptresource -459 Can delete Script Resource 153 delete_scriptresource -460 Can add script specific metadata 154 add_scriptspecificmetadata -461 Can change script specific metadata 154 change_scriptspecificmetadata -462 Can delete script specific metadata 154 delete_scriptspecificmetadata -463 Can add script meta data 155 add_scriptmetadata -464 Can change script meta data 155 change_scriptmetadata -465 Can delete script meta data 155 delete_scriptmetadata -466 Can add log entry 156 add_logentry -467 Can change log entry 156 change_logentry -468 Can delete log entry 156 delete_logentry -469 Can add comment 157 add_comment -470 Can change comment 157 change_comment -471 Can delete comment 157 delete_comment -472 Can moderate comments 157 can_moderate -473 Can add comment flag 158 add_commentflag -474 Can change comment flag 158 change_commentflag -475 Can delete comment flag 158 delete_commentflag -476 Can add Generic 66 add_genericresource -477 Can change Generic 66 change_genericresource -478 Can delete Generic 66 delete_genericresource -479 Can add Geographic Raster 66 add_rasterresource -480 Can change Geographic Raster 66 change_rasterresource -481 Can delete Geographic Raster 66 delete_rasterresource -482 Can add HIS Referenced Time Series 66 add_reftimeseriesresource -483 Can change HIS Referenced Time Series 66 change_reftimeseriesresource -484 Can delete HIS Referenced Time Series 66 delete_reftimeseriesresource -485 Can add data source 159 add_datasource -486 Can change data source 159 change_datasource -487 Can delete data source 159 delete_datasource -488 Can add Time Series 66 add_timeseriesresource -489 Can change Time Series 66 change_timeseriesresource -490 Can delete Time Series 66 delete_timeseriesresource -491 Can add Multidimensional (NetCDF) 66 add_netcdfresource -492 Can change Multidimensional (NetCDF) 66 change_netcdfresource -493 Can delete Multidimensional (NetCDF) 66 delete_netcdfresource -494 Can add Model Program Resource 66 add_modelprogramresource -495 Can change Model Program Resource 66 change_modelprogramresource -496 Can delete Model Program Resource 66 delete_modelprogramresource -497 Can add Model Instance Resource 66 add_modelinstanceresource -498 Can change Model Instance Resource 66 change_modelinstanceresource -499 Can delete Model Instance Resource 66 delete_modelinstanceresource -500 Can add Web App Resource 66 add_toolresource -501 Can change Web App Resource 66 change_toolresource -502 Can delete Web App Resource 66 delete_toolresource -503 Can add SWAT Model Instance Resource 66 add_swatmodelinstanceresource -504 Can change SWAT Model Instance Resource 66 change_swatmodelinstanceresource -505 Can delete SWAT Model Instance Resource 66 delete_swatmodelinstanceresource -506 Can add Geographic Feature (ESRI Shapefiles) 66 add_geographicfeatureresource -507 Can change Geographic Feature (ESRI Shapefiles) 66 change_geographicfeatureresource -508 Can delete Geographic Feature (ESRI Shapefiles) 66 delete_geographicfeatureresource -509 Can add Script Resource 66 add_scriptresource -510 Can change Script Resource 66 change_scriptresource -511 Can delete Script Resource 66 delete_scriptresource -512 Can add HIS Referenced Time Series 160 add_reftimeseriesresource -513 Can change HIS Referenced Time Series 160 change_reftimeseriesresource -514 Can delete HIS Referenced Time Series 160 delete_reftimeseriesresource -515 Can add comment 161 add_comment -516 Can change comment 161 change_comment -517 Can delete comment 161 delete_comment -518 Can moderate comments 161 can_moderate -519 Can add comment flag 162 add_commentflag -520 Can change comment flag 162 change_commentflag -521 Can delete comment flag 162 delete_commentflag -522 Can add funding agency 163 add_fundingagency -523 Can change funding agency 163 change_fundingagency -524 Can delete funding agency 163 delete_fundingagency -525 Can add group membership request 164 add_groupmembershiprequest -526 Can change group membership request 164 change_groupmembershiprequest -527 Can delete group membership request 164 delete_groupmembershiprequest -528 Can add Collection Resource 66 add_collectionresource -529 Can change Collection Resource 66 change_collectionresource -530 Can delete Collection Resource 66 delete_collectionresource -531 Can add collection deleted resource 165 add_collectiondeletedresource -532 Can change collection deleted resource 165 change_collectiondeletedresource -533 Can delete collection deleted resource 165 delete_collectiondeletedresource -534 Can add visitor 167 add_visitor -535 Can change visitor 167 change_visitor -536 Can delete visitor 167 delete_visitor -537 Can add session 168 add_session -538 Can change session 168 change_session -539 Can delete session 168 delete_session -540 Can add variable 169 add_variable -541 Can change variable 169 change_variable -542 Can delete variable 169 delete_variable -543 Can add Collection Resource 166 add_collectionresource -544 Can change Collection Resource 166 change_collectionresource -545 Can delete Collection Resource 166 delete_collectionresource -546 Can add url 170 add_url -547 Can change url 170 change_url -548 Can delete url 170 delete_url -549 Can add rule 171 add_rule -550 Can change rule 171 change_rule -551 Can delete rule 171 delete_rule -552 Can add utc off set 172 add_utcoffset -553 Can change utc off set 172 change_utcoffset -554 Can delete utc off set 172 delete_utcoffset -555 Can add cv variable type 173 add_cvvariabletype -556 Can change cv variable type 173 change_cvvariabletype -557 Can delete cv variable type 173 delete_cvvariabletype -558 Can add cv variable name 174 add_cvvariablename -559 Can change cv variable name 174 change_cvvariablename -560 Can delete cv variable name 174 delete_cvvariablename -561 Can add cv speciation 175 add_cvspeciation -562 Can change cv speciation 175 change_cvspeciation -563 Can delete cv speciation 175 delete_cvspeciation -564 Can add cv elevation datum 176 add_cvelevationdatum -565 Can change cv elevation datum 176 change_cvelevationdatum -566 Can delete cv elevation datum 176 delete_cvelevationdatum -567 Can add cv site type 177 add_cvsitetype -568 Can change cv site type 177 change_cvsitetype -569 Can delete cv site type 177 delete_cvsitetype -570 Can add cv method type 178 add_cvmethodtype -571 Can change cv method type 178 change_cvmethodtype -572 Can delete cv method type 178 delete_cvmethodtype -920 Can view rule 171 view_rule -573 Can add cv units type 179 add_cvunitstype -574 Can change cv units type 179 change_cvunitstype -575 Can delete cv units type 179 delete_cvunitstype -576 Can add cv status 180 add_cvstatus -577 Can change cv status 180 change_cvstatus -578 Can delete cv status 180 delete_cvstatus -579 Can add cv medium 181 add_cvmedium -580 Can change cv medium 181 change_cvmedium -581 Can delete cv medium 181 delete_cvmedium -582 Can add cv aggregation statistic 182 add_cvaggregationstatistic -583 Can change cv aggregation statistic 182 change_cvaggregationstatistic -584 Can delete cv aggregation statistic 182 delete_cvaggregationstatistic -585 Can add app home page url 183 add_apphomepageurl -586 Can change app home page url 183 change_apphomepageurl -587 Can delete app home page url 183 delete_apphomepageurl -588 Can add supported sharing status choices 184 add_supportedsharingstatuschoices -589 Can change supported sharing status choices 184 change_supportedsharingstatuschoices -590 Can delete supported sharing status choices 184 delete_supportedsharingstatuschoices -591 Can add supported sharing status 185 add_supportedsharingstatus -592 Can change supported sharing status 185 change_supportedsharingstatus -593 Can delete supported sharing status 185 delete_supportedsharingstatus -594 Can add study area 186 add_studyarea -595 Can change study area 186 change_studyarea -596 Can delete study area 186 delete_studyarea -597 Can add grid dimensions 187 add_griddimensions -598 Can change grid dimensions 187 change_griddimensions -599 Can delete grid dimensions 187 delete_griddimensions -600 Can add stress period 188 add_stressperiod -601 Can change stress period 188 change_stressperiod -602 Can delete stress period 188 delete_stressperiod -603 Can add ground water flow 189 add_groundwaterflow -604 Can change ground water flow 189 change_groundwaterflow -605 Can delete ground water flow 189 delete_groundwaterflow -606 Can add specified head boundary package choices 190 add_specifiedheadboundarypackagechoices -607 Can change specified head boundary package choices 190 change_specifiedheadboundarypackagechoices -608 Can delete specified head boundary package choices 190 delete_specifiedheadboundarypackagechoices -609 Can add specified flux boundary package choices 191 add_specifiedfluxboundarypackagechoices -610 Can change specified flux boundary package choices 191 change_specifiedfluxboundarypackagechoices -611 Can delete specified flux boundary package choices 191 delete_specifiedfluxboundarypackagechoices -612 Can add head dependent flux boundary package choices 192 add_headdependentfluxboundarypackagechoices -613 Can change head dependent flux boundary package choices 192 change_headdependentfluxboundarypackagechoices -614 Can delete head dependent flux boundary package choices 192 delete_headdependentfluxboundarypackagechoices -615 Can add boundary condition 193 add_boundarycondition -616 Can change boundary condition 193 change_boundarycondition -617 Can delete boundary condition 193 delete_boundarycondition -618 Can add model calibration 194 add_modelcalibration -619 Can change model calibration 194 change_modelcalibration -620 Can delete model calibration 194 delete_modelcalibration -621 Can add model input 195 add_modelinput -622 Can change model input 195 change_modelinput -623 Can delete model input 195 delete_modelinput -624 Can add output control package choices 196 add_outputcontrolpackagechoices -625 Can change output control package choices 196 change_outputcontrolpackagechoices -626 Can delete output control package choices 196 delete_outputcontrolpackagechoices -627 Can add general elements 197 add_generalelements -628 Can change general elements 197 change_generalelements -629 Can delete general elements 197 delete_generalelements -630 Can add MODFLOW Model Instance Resource 66 add_modflowmodelinstanceresource -631 Can change MODFLOW Model Instance Resource 66 change_modflowmodelinstanceresource -632 Can delete MODFLOW Model Instance Resource 66 delete_modflowmodelinstanceresource -633 Can add modflow model instance meta data 198 add_modflowmodelinstancemetadata -634 Can change modflow model instance meta data 198 change_modflowmodelinstancemetadata -635 Can delete modflow model instance meta data 198 delete_modflowmodelinstancemetadata -636 Can add generic file meta data 202 add_genericfilemetadata -637 Can change generic file meta data 202 change_genericfilemetadata -638 Can delete generic file meta data 202 delete_genericfilemetadata -639 Can add generic logical file 203 add_genericlogicalfile -640 Can change generic logical file 203 change_genericlogicalfile -641 Can delete generic logical file 203 delete_genericlogicalfile -642 Can add geo raster file meta data 204 add_georasterfilemetadata -643 Can change geo raster file meta data 204 change_georasterfilemetadata -644 Can delete geo raster file meta data 204 delete_georasterfilemetadata -645 Can add geo raster logical file 205 add_georasterlogicalfile -646 Can change geo raster logical file 205 change_georasterlogicalfile -647 Can delete geo raster logical file 205 delete_georasterlogicalfile -648 Can add Composite Resource 66 add_compositeresource -649 Can change Composite Resource 66 change_compositeresource -650 Can delete Composite Resource 66 delete_compositeresource -651 Can add model output 201 add_modeloutput -652 Can change model output 201 change_modeloutput -653 Can delete model output 201 delete_modeloutput -654 Can add executed by 200 add_executedby -655 Can change executed by 200 change_executedby -656 Can delete executed by 200 delete_executedby -657 Can add MODFLOW Model Instance Resource 199 add_modflowmodelinstanceresource -658 Can change MODFLOW Model Instance Resource 199 change_modflowmodelinstanceresource -659 Can delete MODFLOW Model Instance Resource 199 delete_modflowmodelinstanceresource -660 Can add Composite Resource 206 add_compositeresource -661 Can change Composite Resource 206 change_compositeresource -662 Can delete Composite Resource 206 delete_compositeresource -663 Can add quota message 207 add_quotamessage -664 Can change quota message 207 change_quotamessage -665 Can delete quota message 207 delete_quotamessage -666 Can add User quota 208 add_userquota -667 Can change User quota 208 change_userquota -668 Can delete User quota 208 delete_userquota -669 Can add user group provenance 209 add_usergroupprovenance -670 Can change user group provenance 209 change_usergroupprovenance -671 Can delete user group provenance 209 delete_usergroupprovenance -672 Can add user resource provenance 210 add_userresourceprovenance -673 Can change user resource provenance 210 change_userresourceprovenance -674 Can delete user resource provenance 210 delete_userresourceprovenance -675 Can add group resource provenance 211 add_groupresourceprovenance -676 Can change group resource provenance 211 change_groupresourceprovenance -677 Can delete group resource provenance 211 delete_groupresourceprovenance -678 Can add net cdf file meta data 212 add_netcdffilemetadata -679 Can change net cdf file meta data 212 change_netcdffilemetadata -680 Can delete net cdf file meta data 212 delete_netcdffilemetadata -681 Can add net cdf logical file 213 add_netcdflogicalfile -682 Can change net cdf logical file 213 change_netcdflogicalfile -683 Can delete net cdf logical file 213 delete_netcdflogicalfile -684 Can add password expiry 214 add_passwordexpiry -685 Can change password expiry 214 change_passwordexpiry -686 Can delete password expiry 214 delete_passwordexpiry -687 Can add csp report 215 add_cspreport -688 Can change csp report 215 change_cspreport -689 Can delete csp report 215 delete_cspreport -690 Can add geo feature file meta data 216 add_geofeaturefilemetadata -691 Can change geo feature file meta data 216 change_geofeaturefilemetadata -692 Can delete geo feature file meta data 216 delete_geofeaturefilemetadata -693 Can add geo feature logical file 217 add_geofeaturelogicalfile -694 Can change geo feature logical file 217 change_geofeaturelogicalfile -695 Can delete geo feature logical file 217 delete_geofeaturelogicalfile -696 Can add ref timeseries file meta data 218 add_reftimeseriesfilemetadata -697 Can change ref timeseries file meta data 218 change_reftimeseriesfilemetadata -698 Can delete ref timeseries file meta data 218 delete_reftimeseriesfilemetadata -699 Can add ref timeseries logical file 219 add_reftimeserieslogicalfile -700 Can change ref timeseries logical file 219 change_reftimeserieslogicalfile -701 Can delete ref timeseries logical file 219 delete_reftimeserieslogicalfile -702 Can add user community privilege 220 add_usercommunityprivilege -703 Can change user community privilege 220 change_usercommunityprivilege -704 Can delete user community privilege 220 delete_usercommunityprivilege -705 Can add group community provenance 221 add_groupcommunityprovenance -706 Can change group community provenance 221 change_groupcommunityprovenance -707 Can delete group community provenance 221 delete_groupcommunityprovenance -708 Can add group community privilege 222 add_groupcommunityprivilege -709 Can change group community privilege 222 change_groupcommunityprivilege -710 Can delete group community privilege 222 delete_groupcommunityprivilege -711 Can add community 223 add_community -712 Can change community 223 change_community -713 Can delete community 223 delete_community -714 Can add user community provenance 224 add_usercommunityprovenance -715 Can change user community provenance 224 change_usercommunityprovenance -716 Can delete user community provenance 224 delete_usercommunityprovenance -717 Can add request url base aggregation 225 add_requesturlbaseaggregation -718 Can change request url base aggregation 225 change_requesturlbaseaggregation -719 Can delete request url base aggregation 225 delete_requesturlbaseaggregation -720 Can add supported agg types 226 add_supportedaggtypes -721 Can change supported agg types 226 change_supportedaggtypes -722 Can delete supported agg types 226 delete_supportedaggtypes -723 Can add help page url 227 add_helppageurl -724 Can change help page url 227 change_helppageurl -725 Can delete help page url 227 delete_helppageurl -726 Can add supported file extensions 228 add_supportedfileextensions -727 Can change supported file extensions 228 change_supportedfileextensions -728 Can delete supported file extensions 228 delete_supportedfileextensions -729 Can add supported agg type choices 229 add_supportedaggtypechoices -730 Can change supported agg type choices 229 change_supportedaggtypechoices -731 Can delete supported agg type choices 229 delete_supportedaggtypechoices -732 Can add issues page url 230 add_issuespageurl -733 Can change issues page url 230 change_issuespageurl -734 Can delete issues page url 230 delete_issuespageurl -735 Can add request url base file 231 add_requesturlbasefile -736 Can change request url base file 231 change_requesturlbasefile -737 Can delete request url base file 231 delete_requesturlbasefile -738 Can add roadmap 232 add_roadmap -739 Can change roadmap 232 change_roadmap -740 Can delete roadmap 232 delete_roadmap -741 Can add mailing list url 233 add_mailinglisturl -742 Can change mailing list url 233 change_mailinglisturl -743 Can delete mailing list url 233 delete_mailinglisturl -744 Can add source code url 234 add_sourcecodeurl -745 Can change source code url 234 change_sourcecodeurl -746 Can delete source code url 234 delete_sourcecodeurl -747 Can add show on open with list 235 add_showonopenwithlist -748 Can change show on open with list 235 change_showonopenwithlist -749 Can delete show on open with list 235 delete_showonopenwithlist -750 Can add testing protocol url 236 add_testingprotocolurl -751 Can change testing protocol url 236 change_testingprotocolurl -752 Can delete testing protocol url 236 delete_testingprotocolurl -753 Can add cv method type 237 add_cvmethodtype -754 Can change cv method type 237 change_cvmethodtype -755 Can delete cv method type 237 delete_cvmethodtype -756 Can add time series logical file 238 add_timeserieslogicalfile -757 Can change time series logical file 238 change_timeserieslogicalfile -758 Can delete time series logical file 238 delete_timeserieslogicalfile -759 Can add cv aggregation statistic 239 add_cvaggregationstatistic -760 Can change cv aggregation statistic 239 change_cvaggregationstatistic -761 Can delete cv aggregation statistic 239 delete_cvaggregationstatistic -762 Can add cv variable type 240 add_cvvariabletype -763 Can change cv variable type 240 change_cvvariabletype -764 Can delete cv variable type 240 delete_cvvariabletype -765 Can add cv medium 241 add_cvmedium -766 Can change cv medium 241 change_cvmedium -767 Can delete cv medium 241 delete_cvmedium -768 Can add cv speciation 242 add_cvspeciation -769 Can change cv speciation 242 change_cvspeciation -770 Can delete cv speciation 242 delete_cvspeciation -771 Can add cv units type 243 add_cvunitstype -772 Can change cv units type 243 change_cvunitstype -773 Can delete cv units type 243 delete_cvunitstype -774 Can add cv variable name 244 add_cvvariablename -775 Can change cv variable name 244 change_cvvariablename -776 Can delete cv variable name 244 delete_cvvariablename -777 Can add file set logical file 245 add_filesetlogicalfile -778 Can change file set logical file 245 change_filesetlogicalfile -779 Can delete file set logical file 245 delete_filesetlogicalfile -780 Can add cv status 246 add_cvstatus -781 Can change cv status 246 change_cvstatus -782 Can delete cv status 246 delete_cvstatus -783 Can add file set meta data 247 add_filesetmetadata -784 Can change file set meta data 247 change_filesetmetadata -785 Can delete file set meta data 247 delete_filesetmetadata -786 Can add time series file meta data 248 add_timeseriesfilemetadata -787 Can change time series file meta data 248 change_timeseriesfilemetadata -788 Can delete time series file meta data 248 delete_timeseriesfilemetadata -789 Can add cv elevation datum 249 add_cvelevationdatum -790 Can change cv elevation datum 249 change_cvelevationdatum -791 Can delete cv elevation datum 249 delete_cvelevationdatum -792 Can add cv site type 250 add_cvsitetype -793 Can change cv site type 250 change_cvsitetype -794 Can delete cv site type 250 delete_cvsitetype -795 Can add university 251 add_university -796 Can change university 251 change_university -797 Can delete university 251 delete_university -798 Can add uncategorized term 252 add_uncategorizedterm -799 Can change uncategorized term 252 change_uncategorizedterm -800 Can delete uncategorized term 252 delete_uncategorizedterm -801 Can add od m2 variable 253 add_odm2variable -802 Can change od m2 variable 253 change_odm2variable -803 Can delete od m2 variable 253 delete_odm2variable -804 Can add topic 254 add_topic -805 Can change topic 254 change_topic -806 Can delete topic 254 delete_topic -807 Can add feature 255 add_feature -808 Can change feature 255 change_feature -809 Can delete feature 255 delete_feature -810 Can add kv store 256 add_kvstore -811 Can change kv store 256 change_kvstore -812 Can delete kv store 256 delete_kvstore -813 Can add task notification 257 add_tasknotification -814 Can change task notification 257 change_tasknotification -815 Can delete task notification 257 delete_tasknotification -816 Can add citation 258 add_citation -817 Can change citation 258 change_citation -818 Can delete citation 258 delete_citation -819 Can add community resource privilege 259 add_communityresourceprivilege -820 Can change community resource privilege 259 change_communityresourceprivilege -821 Can delete community resource privilege 259 delete_communityresourceprivilege -822 Can add community resource provenance 260 add_communityresourceprovenance -823 Can change community resource provenance 260 change_communityresourceprovenance -824 Can delete community resource provenance 260 delete_communityresourceprovenance -825 Can add group community request 261 add_groupcommunityrequest -826 Can change group community request 261 change_groupcommunityrequest -827 Can delete group community request 261 delete_groupcommunityrequest -828 Can add model instance file meta data 262 add_modelinstancefilemetadata -829 Can change model instance file meta data 262 change_modelinstancefilemetadata -830 Can delete model instance file meta data 262 delete_modelinstancefilemetadata -831 Can add model instance logical file 263 add_modelinstancelogicalfile -832 Can change model instance logical file 263 change_modelinstancelogicalfile -833 Can delete model instance logical file 263 delete_modelinstancelogicalfile -834 Can add model program file meta data 264 add_modelprogramfilemetadata -835 Can change model program file meta data 264 change_modelprogramfilemetadata -836 Can delete model program file meta data 264 delete_modelprogramfilemetadata -837 Can add model program logical file 265 add_modelprogramlogicalfile -838 Can change model program logical file 265 change_modelprogramlogicalfile -839 Can delete model program logical file 265 delete_modelprogramlogicalfile -840 Can add model program resource file type 266 add_modelprogramresourcefiletype -841 Can change model program resource file type 266 change_modelprogramresourcefiletype -842 Can delete model program resource file type 266 delete_modelprogramresourcefiletype -843 Can add original coverage 267 add_originalcoverage -844 Can change original coverage 267 change_originalcoverage -845 Can delete original coverage 267 delete_originalcoverage -846 Can add variable 268 add_variable -847 Can change variable 268 change_variable -848 Can delete variable 268 delete_variable -849 Can add band information 269 add_bandinformation -850 Can change band information 269 change_bandinformation -851 Can delete band information 269 delete_bandinformation -852 Can add cell information 270 add_cellinformation -853 Can change cell information 270 change_cellinformation -854 Can delete cell information 270 delete_cellinformation -855 Can add original coverage raster 271 add_originalcoverageraster -856 Can change original coverage raster 271 change_originalcoverageraster -857 Can delete original coverage raster 271 delete_originalcoverageraster -858 Can add field information 272 add_fieldinformation -859 Can change field information 272 change_fieldinformation -860 Can delete field information 272 delete_fieldinformation -861 Can add geometry information 273 add_geometryinformation -862 Can change geometry information 273 change_geometryinformation -863 Can delete geometry information 273 delete_geometryinformation -864 Can add original coverage geofeature 274 add_originalcoveragegeofeature -865 Can change original coverage geofeature 274 change_originalcoveragegeofeature -866 Can delete original coverage geofeature 274 delete_originalcoveragegeofeature -867 Can add method 275 add_method -868 Can change method 275 change_method -869 Can delete method 275 delete_method -870 Can add processing level 276 add_processinglevel -871 Can change processing level 276 change_processinglevel -872 Can delete processing level 276 delete_processinglevel -873 Can add site 277 add_site -874 Can change site 277 change_site -875 Can delete site 277 delete_site -876 Can add time series result 278 add_timeseriesresult -877 Can change time series result 278 change_timeseriesresult -878 Can delete time series result 278 delete_timeseriesresult -879 Can add utc off set 279 add_utcoffset -880 Can change utc off set 279 change_utcoffset -881 Can delete utc off set 279 delete_utcoffset -882 Can add variable timeseries 280 add_variabletimeseries -883 Can change variable timeseries 280 change_variabletimeseries -884 Can delete variable timeseries 280 delete_variabletimeseries -885 Can view permission 1 view_permission -886 Can view group 2 view_group -887 Can view user 3 view_user -888 Can view application 4 view_application -889 Can view access token 6 view_accesstoken -890 Can view grant 5 view_grant -891 Can view refresh token 7 view_refreshtoken -892 Can view content type 9 view_contenttype -893 Can view redirect 10 view_redirect -894 Can view session 11 view_session -895 Can view site 12 view_site -896 Can view iRODS Environment 15 view_rodsenvironment -897 Can view Home page 17 view_homepage -898 Can view icon box 18 view_iconbox -899 Can view Site Configuration 16 view_siteconfiguration -900 Can view user profile 19 view_userprofile -901 Can view User quota 208 view_userquota -902 Can view quota message 207 view_quotamessage -903 Can view Setting 20 view_setting -904 Can view Site permission 21 view_sitepermission -905 Can view assigned keyword 24 view_assignedkeyword -906 Can view Keyword 23 view_keyword -907 Can view Rating 25 view_rating -908 Can view Comment 22 view_threadedcomment -909 Can view Blog Category 27 view_blogcategory -910 Can view Blog post 26 view_blogpost -911 Can view Field 29 view_field -912 Can view Form field entry 31 view_fieldentry -913 Can view Form 28 view_form -914 Can view Form entry 30 view_formentry -915 Can view Page 32 view_page -916 Can view Link 34 view_link -917 Can view Rich text page 33 view_richtextpage -918 Can view Gallery 35 view_gallery -919 Can view Image 36 view_galleryimage -921 Can view url 170 view_url -922 Can view kv store 256 view_kvstore -923 Can view contributor 49 view_contributor -924 Can view core meta data 68 view_coremetadata -925 Can view coverage 59 view_coverage -926 Can view creator 50 view_creator -927 Can view date 54 view_date -928 Can view description 51 view_description -929 Can view format 60 view_format -930 Can view group ownership 47 view_groupownership -931 Can view identifier 56 view_identifier -932 Can view language 58 view_language -933 Can view publisher 57 view_publisher -934 Can view relation 55 view_relation -935 Can view resource file 64 view_resourcefile -936 Can view rights 63 view_rights -937 Can view subject 61 view_subject -938 Can view title 52 view_title -939 Can view type 53 view_type -940 Can view Generic 66 view_baseresource -941 Can view Generic 67 view_genericresource -942 Can view funding agency 163 view_fundingagency -943 Can view task notification 257 view_tasknotification -944 Can view citation 258 view_citation -945 Can view group access 73 view_groupaccess -946 Can view group resource privilege 71 view_groupresourceprivilege -947 Can view resource access 74 view_resourceaccess -948 Can view user access 72 view_useraccess -949 Can view user group privilege 69 view_usergroupprivilege -950 Can view user resource privilege 70 view_userresourceprivilege -951 Can view group membership request 164 view_groupmembershiprequest -952 Can view group resource provenance 211 view_groupresourceprovenance -953 Can view user group provenance 209 view_usergroupprovenance -954 Can view user resource provenance 210 view_userresourceprovenance -955 Can view community 223 view_community -956 Can view group community privilege 222 view_groupcommunityprivilege -957 Can view group community provenance 221 view_groupcommunityprovenance -958 Can view user community privilege 220 view_usercommunityprivilege -959 Can view user community provenance 224 view_usercommunityprovenance -960 Can view feature 255 view_feature -961 Can view community resource privilege 259 view_communityresourceprivilege -962 Can view community resource provenance 260 view_communityresourceprovenance -963 Can view group community request 261 view_groupcommunityrequest -964 Can view resource labels 79 view_resourcelabels -965 Can view user labels 78 view_userlabels -966 Can view user resource flags 76 view_userresourceflags -967 Can view user resource labels 75 view_userresourcelabels -968 Can view user stored labels 77 view_userstoredlabels -969 Can view request url base 130 view_requesturlbase -970 Can view Application Approval 135 view_toolmetadata -971 Can view tool version 131 view_toolversion -972 Can view Web App Resource 129 view_toolresource -973 Can view supported res type choices 132 view_supportedrestypechoices -974 Can view supported res types 133 view_supportedrestypes -975 Can view tool icon 134 view_toolicon -976 Can view supported sharing status 185 view_supportedsharingstatus -977 Can view supported sharing status choices 184 view_supportedsharingstatuschoices -978 Can view app home page url 183 view_apphomepageurl -979 Can view help page url 227 view_helppageurl -980 Can view issues page url 230 view_issuespageurl -981 Can view mailing list url 233 view_mailinglisturl -982 Can view roadmap 232 view_roadmap -983 Can view source code url 234 view_sourcecodeurl -984 Can view testing protocol url 236 view_testingprotocolurl -985 Can view show on open with list 235 view_showonopenwithlist -986 Can view supported agg type choices 229 view_supportedaggtypechoices -987 Can view supported agg types 226 view_supportedaggtypes -988 Can view supported file extensions 228 view_supportedfileextensions -989 Can view request url base aggregation 225 view_requesturlbaseaggregation -990 Can view request url base file 231 view_requesturlbasefile -991 Can view collection deleted resource 165 view_collectiondeletedresource -992 Can view Collection Resource 166 view_collectionresource -993 Can view session 168 view_session -994 Can view variable 169 view_variable -995 Can view visitor 167 view_visitor -996 Can view generic file meta data 202 view_genericfilemetadata -997 Can view generic logical file 203 view_genericlogicalfile -998 Can view geo raster file meta data 204 view_georasterfilemetadata -999 Can view geo raster logical file 205 view_georasterlogicalfile -1000 Can view net cdf file meta data 212 view_netcdffilemetadata -1001 Can view net cdf logical file 213 view_netcdflogicalfile -1002 Can view geo feature file meta data 216 view_geofeaturefilemetadata -1003 Can view geo feature logical file 217 view_geofeaturelogicalfile -1004 Can view ref timeseries file meta data 218 view_reftimeseriesfilemetadata -1005 Can view ref timeseries logical file 219 view_reftimeserieslogicalfile -1006 Can view cv aggregation statistic 239 view_cvaggregationstatistic -1007 Can view cv elevation datum 249 view_cvelevationdatum -1008 Can view cv medium 241 view_cvmedium -1009 Can view cv method type 237 view_cvmethodtype -1010 Can view cv site type 250 view_cvsitetype -1011 Can view cv speciation 242 view_cvspeciation -1012 Can view cv status 246 view_cvstatus -1013 Can view cv units type 243 view_cvunitstype -1014 Can view cv variable name 244 view_cvvariablename -1015 Can view cv variable type 240 view_cvvariabletype -1016 Can view time series file meta data 248 view_timeseriesfilemetadata -1017 Can view time series logical file 238 view_timeserieslogicalfile -1018 Can view file set logical file 245 view_filesetlogicalfile -1019 Can view file set meta data 247 view_filesetmetadata -1020 Can view model instance file meta data 262 view_modelinstancefilemetadata -1021 Can view model instance logical file 263 view_modelinstancelogicalfile -1022 Can view model program file meta data 264 view_modelprogramfilemetadata -1023 Can view model program logical file 265 view_modelprogramlogicalfile -1024 Can view model program resource file type 266 view_modelprogramresourcefiletype -1025 Can view original coverage 267 view_originalcoverage -1026 Can view variable 268 view_variable -1027 Can view band information 269 view_bandinformation -1028 Can view cell information 270 view_cellinformation -1029 Can view original coverage raster 271 view_originalcoverageraster -1030 Can view field information 272 view_fieldinformation -1031 Can view geometry information 273 view_geometryinformation -1032 Can view original coverage geofeature 274 view_originalcoveragegeofeature -1033 Can view method 275 view_method -1034 Can view processing level 276 view_processinglevel -1035 Can view site 277 view_site -1036 Can view time series result 278 view_timeseriesresult -1037 Can view utc off set 279 view_utcoffset -1038 Can view variable timeseries 280 view_variabletimeseries -1039 Can view Composite Resource 206 view_compositeresource -1040 Can view university 251 view_university -1041 Can view uncategorized term 252 view_uncategorizedterm -1042 Can view od m2 variable 253 view_odm2variable -1043 Can view csp report 215 view_cspreport -1044 Can view password expiry 214 view_passwordexpiry -1045 Can view topic 254 view_topic -1046 Can view log entry 156 view_logentry -1047 Can view comment 161 view_comment -1048 Can view comment flag 162 view_commentflag -1049 Can add id token 281 add_idtoken -1050 Can change id token 281 change_idtoken -1051 Can delete id token 281 delete_idtoken -1052 Can view id token 281 view_idtoken -1053 Can add AVU 282 add_avu -1054 Can change AVU 282 change_avu -1055 Can delete AVU 282 delete_avu -1056 Can view AVU 282 view_avu -1057 Can add quota request 283 add_quotarequest -1058 Can change quota request 283 change_quotarequest -1059 Can delete quota request 283 delete_quotarequest -1060 Can view quota request 283 view_quotarequest -1061 Can add geospatial relation 284 add_geospatialrelation -1062 Can change geospatial relation 284 change_geospatialrelation -1063 Can delete geospatial relation 284 delete_geospatialrelation -1064 Can view geospatial relation 284 view_geospatialrelation -1065 Can add request community 285 add_requestcommunity -1066 Can change request community 285 change_requestcommunity -1067 Can delete request community 285 delete_requestcommunity -1068 Can view request community 285 view_requestcommunity -1069 Can add csv file meta data 286 add_csvfilemetadata -1070 Can change csv file meta data 286 change_csvfilemetadata -1071 Can delete csv file meta data 286 delete_csvfilemetadata -1072 Can view csv file meta data 286 view_csvfilemetadata -1073 Can add csv logical file 287 add_csvlogicalfile -1074 Can change csv logical file 287 change_csvlogicalfile -1075 Can delete csv logical file 287 delete_csvlogicalfile -1076 Can view csv logical file 287 view_csvlogicalfile -1077 Can add subject area 288 add_subjectarea -1078 Can change subject area 288 change_subjectarea -1079 Can delete subject area 288 delete_subjectarea -1080 Can view subject area 288 view_subjectarea -1081 Can add test model 289 add_testmodel -1082 Can change test model 289 change_testmodel -1083 Can delete test model 289 delete_testmodel -1084 Can view test model 289 view_testmodel -1085 Can view post gis geometry columns 13 view_postgisgeometrycolumns -1086 Can view post gis spatial ref sys 14 view_postgisspatialrefsys -\. - - --- --- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; -5 pbkdf2_sha256$36000$WSw1gHgY7fDm$F8P0mHmvNimp0paOEaJCVyl9nuuJM99eMqwHwXsGatk= 2019-09-30 18:13:23.083531+00 f asdf asdf asdf asdf@asdf.asdf f t 2019-09-30 17:58:17.622678+00 -17 pbkdf2_sha256$36000$KbKKALVOyvFF$rgM+8Wnv1aKT2LFn/RL6Jm2MI8lSY0sFu4bbpPBAv+0= 2019-12-11 20:06:35.837434+00 f czo_iml CZO IML czoiml@noreply.org f t 2019-12-11 18:19:19.603719+00 -7 pbkdf2_sha256$36000$yrCAXSJAFJVn$he/+avTvWYF0aWDtIukaFRvtE2XrNzpEHwC2NCTiaSc= 2019-12-11 18:51:30.831587+00 f czo_boulder CZO Boulder czoboulder@noreply.org f t 2019-09-30 18:17:11.143995+00 -8 pbkdf2_sha256$36000$z1MGjTEjVdN6$QUfaqlxjzcXamiJD1CBsvzHKYwRThnIJmGvWUE1/x3A= 2019-12-11 18:53:53.049402+00 f czo_eel CZO Eel czoeel@noreply.org f t 2019-09-30 18:17:54.553497+00 -9 pbkdf2_sha256$36000$FDEu9FCzNI9q$UZFDg+jYJULbURBt933hNAsOAEb7djt3oWsnzAcnvzg= 2019-12-11 18:55:20.198591+00 f czo_catalina-jemez CZO Catalina-Jemez czocj@noreply.org f t 2019-09-30 18:18:43.474317+00 -10 pbkdf2_sha256$36000$HEsD2lAQkvKA$HHw5ejti9dAUl5WV1UwiRLoDXKGQcJn3S2WZlNEYxeA= 2019-12-11 18:56:06.046836+00 f czo_reynolds CZO Reynolds czoreyn@noreply.org f t 2019-09-30 18:19:27.370725+00 -11 pbkdf2_sha256$36000$c5iOCttRZ38f$5rn92AUXn+h1dM9QQgR9r3YlNMuuQuoBvd8HjoiPmag= 2019-12-11 18:56:58.188188+00 f czo_luquillo CZO Luquillo czoluq@noreply.org f t 2019-09-30 18:20:10.910639+00 -12 pbkdf2_sha256$36000$JqPQhnSpLTGh$uKhgU9v+PLEPwKKH8XyJ97FQByu95XYGWon6yHmcRPo= 2019-12-11 18:57:58.462281+00 f czo_sierra CZO Sierra czosier@noreply.org f t 2019-09-30 18:20:53.697721+00 -13 pbkdf2_sha256$36000$AfMJU64HzRgO$zUYSHXo6JXrScoW/Z70/xxFUJQh1Wul7X1N5nsaFp7I= 2019-12-11 19:02:19.418236+00 f czo_christina CZO Christina czochr@noreply.org f t 2019-09-30 18:21:45.119001+00 -14 pbkdf2_sha256$36000$aJ6W4X7qgCRq$GMpeCHWnY5Tp/4DgmOv6+I+sjk0e902BEWAF/GcxkJE= 2019-12-11 19:07:17.828461+00 f czo_shale-hills CZO Shale-Hills czosh@noreply.org f t 2019-09-30 18:22:26.661902+00 -15 pbkdf2_sha256$36000$Cnpajji9lyBB$/RkElvxwJoIbRwlP/hbeOSeDKUCEVBry0IU8VGvpJWg= 2019-12-11 19:08:06.306799+00 f czo_calhoun CZO Calhoun czocal@noreply.org f t 2019-09-30 18:23:26.010694+00 -6 pbkdf2_sha256$36000$9XNl8kxBmJJx$GH5oyljtmBqH28icRe8NoBc5MWEgubmBuRmGex1VxE4= 2019-12-11 19:08:57.679021+00 f czo_national CZO National czonational@noreply.com f t 2019-09-30 18:16:28.302142+00 -16 pbkdf2_sha256$36000$ZzdIp9MWeEx8$LIaH51xFoewvpAHuUujbGVVjyUESzgJgrJx+M7e6t9M= 2019-12-11 20:21:26.016073+00 f czo CZO Default czo@noreply.org f t 2019-09-30 18:24:12.689202+00 -19 pbkdf2_sha256$600000$Exxq1VCKtuOCjFdXOAzqV5$yLKmmax+GTUoAq6BE47sX03quwbfViDOrDQJVEcKOX4= \N f user2 user2 last user2@mail.com f t 2025-06-10 23:50:38+00 -24 pbkdf2_sha256$600000$XgkVEErTX1LkD2pkEe2jWW$iG3q6VO08ON6sibdUHj50BFfuTR5hx2XYujxwq+pHl0= 2025-06-11 15:56:51.932983+00 f user6 user6 last user6@mail.com f t 2025-06-11 15:53:12+00 -25 pbkdf2_sha256$600000$aRcbSq0TPVUfXPyA3DkbjH$+ELuTA9uGLpRZ8VDoTSkgSE1WgYh4raRI95Xik5oD2s= 2025-06-11 15:57:16.983276+00 f user7 user7 last user7@mail.com f t 2025-06-11 15:56:30+00 -18 pbkdf2_sha256$600000$pGmhSBCBxPEh7uCBvAYxB8$EbjfTPYVFCkGgtxaPMrFYyeZGQdK4EmAlOq7nAxOzS8= 2025-06-11 15:57:32.763991+00 f user1 user1 last user1@mail.com f t 2025-06-10 23:14:52+00 -20 pbkdf2_sha256$600000$idcF3PietvfXPbySf5sQpY$hH9g+3vzrRoXaAd5uakteXjZ3bR75H41kC+92zO6d70= \N f user3 user3 last user3@mail.com f t 2025-06-11 02:13:08+00 -21 pbkdf2_sha256$600000$x7TgjQooZOJZy0o0NPGmJF$Q5D3Nea4gjLvPH+LzHQWqtnDt9Ojpp2j85OOlOV+8cs= \N f group_user group_user last group_user@mail.com f t 2025-06-11 02:13:38+00 -4 pbkdf2_sha256$600000$9OdHJLYIvtaGjoKli0k3sY$58ZxzkxZyXHXKu+IWNole3siS/a6egLBqDLbRheD9Mg= 2025-06-11 02:50:52.202811+00 t admin HydroShare Administrator admin@example.com t t 2016-01-25 19:47:54+00 -22 pbkdf2_sha256$600000$CwbBLQxCvUrt6W7UhWCzSv$UNQLZFcgUOuIS2EE/YaZLia3eVkSZzmIaJwKhR5sxY4= \N f user4 user4 last user4@mail.com f t 2025-06-11 02:51:31+00 -23 pbkdf2_sha256$600000$QSj5tsBZxkS7fjxYmNG1wt$Vj1adVUjcQJYflc2S25lE7J1TYQZ3FPWNVBFP/f72qQ= \N f user5 user5 last user5@mail.com f t 2025-06-11 02:55:30+00 -\. - - --- --- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.auth_user_groups (id, user_id, group_id) FROM stdin; -2 4 1 -3 5 1 -4 6 1 -5 7 1 -6 8 1 -7 9 1 -8 10 1 -9 11 1 -10 12 1 -11 13 1 -12 14 1 -13 15 1 -14 16 1 -15 17 1 -16 18 1 -17 19 1 -18 20 1 -19 21 1 -20 22 1 -21 23 1 -22 24 1 -23 25 1 -\. - - --- --- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin; -\. - - --- --- Data for Name: blog_blogcategory; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.blog_blogcategory (id, site_id, title, slug) FROM stdin; -\. - - --- --- Data for Name: blog_blogpost; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.blog_blogpost (id, comments_count, keywords_string, rating_count, rating_sum, rating_average, site_id, title, slug, _meta_title, description, gen_description, created, updated, status, publish_date, expiry_date, short_url, in_sitemap, content, user_id, allow_comments, featured_image) FROM stdin; -\. - - --- --- Data for Name: blog_blogpost_categories; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.blog_blogpost_categories (id, blogpost_id, blogcategory_id) FROM stdin; -\. - - --- --- Data for Name: blog_blogpost_related_posts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.blog_blogpost_related_posts (id, from_blogpost_id, to_blogpost_id) FROM stdin; -\. - - --- --- Data for Name: celery_taskmeta; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.celery_taskmeta (id, task_id, status, result, date_done, traceback, hidden, meta) FROM stdin; -\. - - --- --- Data for Name: celery_tasksetmeta; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.celery_tasksetmeta (id, taskset_id, result, date_done, hidden) FROM stdin; -\. - - --- --- Data for Name: conf_setting; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.conf_setting (id, site_id, name, value) FROM stdin; -\. - - --- --- Data for Name: core_sitepermission; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.core_sitepermission (id, user_id) FROM stdin; -\. - - --- --- Data for Name: core_sitepermission_sites; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.core_sitepermission_sites (id, sitepermission_id, site_id) FROM stdin; -\. - - --- --- Data for Name: corsheaders_corsmodel; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.corsheaders_corsmodel (id, cors) FROM stdin; -\. - - --- --- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; -31 2016-01-25 19:51:43.038754+00 4 Discover 2 Changed _meta_title and keywords. 33 4 -32 2016-01-25 19:52:16.941687+00 4 Discover 2 Changed slug and keywords. 33 4 -33 2016-01-25 19:52:37.395438+00 4 Discover 2 Changed _meta_title and keywords. 33 4 -34 2016-01-25 19:54:21.104577+00 2 root 3 3 4 -35 2016-02-24 17:41:41.504891+00 1 Hydroshare Author 2 Changed permissions. 2 4 -36 2016-06-23 17:07:04.049586+00 13 Collaborate 1 33 4 -37 2017-02-02 17:25:53.744625+00 1 Hydroshare Author 2 Changed permissions. 2 4 -38 2017-02-02 17:26:10.173151+00 1 Hydroshare Author 2 Changed permissions. 2 4 -39 2017-02-02 17:26:32.707066+00 1 Hydroshare Author 2 Changed permissions. 2 4 -40 2017-02-02 17:26:47.958444+00 1 Hydroshare Author 2 Changed permissions. 2 4 -41 2017-09-01 18:12:16.42384+00 5 Help 3 33 4 -42 2017-09-01 18:12:49.58398+00 14 Help 1 34 4 -43 2017-09-01 18:13:41.541669+00 15 About 1 34 4 -44 2017-09-01 18:13:50.020573+00 14 Help 2 Changed slug. 34 4 -45 2017-09-01 18:25:48.020365+00 9 Terms of Use 2 Changed content, in_menus, slug, description and keywords. 33 4 -46 2017-09-01 18:26:27.338099+00 10 Statement of Privacy 2 Changed content, in_menus, slug, description and keywords. 33 4 -47 2017-09-01 18:30:38.121036+00 1 terms-of-use ---> https://help.hydroshare.org/about-hydroshare/policies/terms-of-use/ 1 10 4 -48 2017-09-01 18:33:16.492416+00 2 /privacy/ ---> https://help.hydroshare.org/about-hydroshare/policies/statement-of-privacy/ 1 10 4 -49 2017-09-01 18:33:32.402925+00 1 /terms-of-use/ ---> https://help.hydroshare.org/about-hydroshare/policies/terms-of-use/ 2 Changed old_path. 10 4 -50 2025-06-10 23:15:33.256778+00 18 user1 2 [{"changed": {"fields": ["Active"]}}] 3 4 -51 2025-06-10 23:51:05.779659+00 19 user2 2 [{"changed": {"fields": ["Active"]}}] 3 4 -52 2025-06-11 02:14:13.916957+00 20 user3 2 [{"changed": {"fields": ["Active"]}}] 3 4 -53 2025-06-11 02:14:21.471575+00 21 group_user 2 [{"changed": {"fields": ["Active"]}}] 3 4 -54 2025-06-11 02:51:41.543786+00 22 user4 2 [{"changed": {"fields": ["Active"]}}] 3 4 -55 2025-06-11 02:56:29.33009+00 23 user5 2 [{"changed": {"fields": ["Active"]}}] 3 4 -56 2025-06-11 15:53:23.190325+00 24 user6 2 [{"changed": {"fields": ["Active"]}}] 3 4 -57 2025-06-11 15:56:42.243748+00 25 user7 2 [{"changed": {"fields": ["Active"]}}] 3 4 -\. - - --- --- Data for Name: django_comment_flags; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_comment_flags (id, user_id, comment_id, flag, flag_date) FROM stdin; -\. - - --- --- Data for Name: django_comments; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_comments (id, content_type_id, object_pk, site_id, user_id, user_name, user_email, user_url, comment, submit_date, ip_address, is_public, is_removed) FROM stdin; -\. - - --- --- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_content_type (id, app_label, model) FROM stdin; -1 auth permission -2 auth group -3 auth user -4 oauth2_provider application -5 oauth2_provider grant -6 oauth2_provider accesstoken -7 oauth2_provider refreshtoken -8 corsheaders corsmodel -9 contenttypes contenttype -10 redirects redirect -11 sessions session -12 sites site -13 gis postgisgeometrycolumns -14 gis postgisspatialrefsys -16 theme siteconfiguration -17 theme homepage -18 theme iconbox -19 theme userprofile -20 conf setting -21 core sitepermission -22 generic threadedcomment -23 generic keyword -24 generic assignedkeyword -25 generic rating -26 blog blogpost -27 blog blogcategory -28 forms form -29 forms field -30 forms formentry -31 forms fieldentry -32 pages page -33 pages richtextpage -34 pages link -35 galleries gallery -36 galleries galleryimage -37 ga_ows ogrdatasetcollection -38 ga_ows ogrdataset -39 ga_ows ogrlayer -40 ga_resources catalogpage -41 ga_resources dataresource -42 ga_resources orderedresource -43 ga_resources resourcegroup -44 ga_resources relatedresource -45 ga_resources style -46 ga_resources renderedlayer -47 hs_core groupownership -48 hs_core externalprofilelink -49 hs_core contributor -50 hs_core creator -51 hs_core description -52 hs_core title -53 hs_core type -54 hs_core date -55 hs_core relation -56 hs_core identifier -57 hs_core publisher -58 hs_core language -59 hs_core coverage -60 hs_core format -61 hs_core subject -62 hs_core source -63 hs_core rights -64 hs_core resourcefile -65 hs_core bags -66 hs_core baseresource -67 hs_core genericresource -68 hs_core coremetadata -69 hs_access_control usergroupprivilege -70 hs_access_control userresourceprivilege -71 hs_access_control groupresourceprivilege -72 hs_access_control useraccess -73 hs_access_control groupaccess -74 hs_access_control resourceaccess -75 hs_labels userresourcelabels -76 hs_labels userresourceflags -77 hs_labels userstoredlabels -78 hs_labels userlabels -79 hs_labels resourcelabels -80 django_docker_processes dockerprofile -81 django_docker_processes containeroverrides -82 django_docker_processes overrideenvvar -83 django_docker_processes overridevolume -84 django_docker_processes overridelink -85 django_docker_processes overrideport -86 django_docker_processes dockerlink -87 django_docker_processes dockerenvvar -88 django_docker_processes dockervolume -89 django_docker_processes dockerport -90 django_docker_processes dockerprocess -91 hs_geo_raster_resource originalcoverage -92 hs_geo_raster_resource bandinformation -93 hs_geo_raster_resource cellinformation -94 hs_geo_raster_resource rasterresource -95 hs_geo_raster_resource rastermetadata -96 djcelery taskmeta -97 djcelery tasksetmeta -98 djcelery intervalschedule -99 djcelery crontabschedule -100 djcelery periodictasks -101 djcelery periodictask -102 djcelery workerstate -103 djcelery taskstate -105 ref_ts referenceurl -106 ref_ts method -107 ref_ts qualitycontrollevel -108 ref_ts variable -109 ref_ts site -110 ref_ts reftsmetadata -111 hs_app_timeseries site -112 hs_app_timeseries variable -113 hs_app_timeseries method -114 hs_app_timeseries processinglevel -115 hs_app_timeseries timeseriesresult -116 hs_app_timeseries timeseriesresource -117 hs_app_timeseries timeseriesmetadata -118 hs_app_netCDF originalcoverage -119 hs_app_netCDF variable -120 hs_app_netCDF netcdfresource -121 hs_app_netCDF netcdfmetadata -122 hs_model_program mpmetadata -123 hs_model_program modelprogramresource -124 hs_model_program modelprogrammetadata -125 hs_modelinstance modeloutput -126 hs_modelinstance executedby -127 hs_modelinstance modelinstanceresource -128 hs_modelinstance modelinstancemetadata -129 hs_tools_resource toolresource -130 hs_tools_resource requesturlbase -131 hs_tools_resource toolversion -132 hs_tools_resource supportedrestypechoices -133 hs_tools_resource supportedrestypes -134 hs_tools_resource toolicon -135 hs_tools_resource toolmetadata -136 hs_swat_modelinstance modeloutput -137 hs_swat_modelinstance executedby -138 hs_swat_modelinstance modelobjectivechoices -139 hs_swat_modelinstance modelobjective -140 hs_swat_modelinstance simulationtype -141 hs_swat_modelinstance modelmethod -142 hs_swat_modelinstance modelparameterschoices -143 hs_swat_modelinstance modelparameter -144 hs_swat_modelinstance modelinput -145 hs_swat_modelinstance swatmodelinstanceresource -146 hs_swat_modelinstance swatmodelinstancemetadata -147 hs_geographic_feature_resource originalfileinfo -148 hs_geographic_feature_resource originalcoverage -149 hs_geographic_feature_resource fieldinformation -150 hs_geographic_feature_resource geometryinformation -151 hs_geographic_feature_resource geographicfeatureresource -152 hs_geographic_feature_resource geographicfeaturemetadata -153 hs_script_resource scriptresource -154 hs_script_resource scriptspecificmetadata -155 hs_script_resource scriptmetadata -156 admin logentry -157 comments comment -158 comments commentflag -159 ref_ts datasource -160 ref_ts reftimeseriesresource -161 django_comments comment -162 django_comments commentflag -163 hs_core fundingagency -164 hs_access_control groupmembershiprequest -165 hs_collection_resource collectiondeletedresource -166 hs_collection_resource collectionresource -167 hs_tracking visitor -168 hs_tracking session -169 hs_tracking variable -170 robots url -171 robots rule -172 hs_app_timeseries utcoffset -173 hs_app_timeseries cvvariabletype -174 hs_app_timeseries cvvariablename -175 hs_app_timeseries cvspeciation -176 hs_app_timeseries cvelevationdatum -177 hs_app_timeseries cvsitetype -178 hs_app_timeseries cvmethodtype -179 hs_app_timeseries cvunitstype -180 hs_app_timeseries cvstatus -181 hs_app_timeseries cvmedium -182 hs_app_timeseries cvaggregationstatistic -183 hs_tools_resource apphomepageurl -184 hs_tools_resource supportedsharingstatuschoices -185 hs_tools_resource supportedsharingstatus -186 hs_modflow_modelinstance studyarea -187 hs_modflow_modelinstance griddimensions -188 hs_modflow_modelinstance stressperiod -189 hs_modflow_modelinstance groundwaterflow -190 hs_modflow_modelinstance specifiedheadboundarypackagechoices -191 hs_modflow_modelinstance specifiedfluxboundarypackagechoices -192 hs_modflow_modelinstance headdependentfluxboundarypackagechoices -193 hs_modflow_modelinstance boundarycondition -194 hs_modflow_modelinstance modelcalibration -195 hs_modflow_modelinstance modelinput -196 hs_modflow_modelinstance outputcontrolpackagechoices -197 hs_modflow_modelinstance generalelements -198 hs_modflow_modelinstance modflowmodelinstancemetadata -199 hs_modflow_modelinstance modflowmodelinstanceresource -200 hs_modflow_modelinstance executedby -201 hs_modflow_modelinstance modeloutput -202 hs_file_types genericfilemetadata -203 hs_file_types genericlogicalfile -204 hs_file_types georasterfilemetadata -205 hs_file_types georasterlogicalfile -206 hs_composite_resource compositeresource -207 theme quotamessage -208 theme userquota -209 hs_access_control usergroupprovenance -210 hs_access_control userresourceprovenance -211 hs_access_control groupresourceprovenance -212 hs_file_types netcdffilemetadata -213 hs_file_types netcdflogicalfile -214 security passwordexpiry -215 security cspreport -216 hs_file_types geofeaturefilemetadata -217 hs_file_types geofeaturelogicalfile -218 hs_file_types reftimeseriesfilemetadata -219 hs_file_types reftimeserieslogicalfile -220 hs_access_control usercommunityprivilege -221 hs_access_control groupcommunityprovenance -222 hs_access_control groupcommunityprivilege -223 hs_access_control community -224 hs_access_control usercommunityprovenance -225 hs_tools_resource requesturlbaseaggregation -226 hs_tools_resource supportedaggtypes -227 hs_tools_resource helppageurl -228 hs_tools_resource supportedfileextensions -229 hs_tools_resource supportedaggtypechoices -230 hs_tools_resource issuespageurl -231 hs_tools_resource requesturlbasefile -232 hs_tools_resource roadmap -233 hs_tools_resource mailinglisturl -234 hs_tools_resource sourcecodeurl -235 hs_tools_resource showonopenwithlist -236 hs_tools_resource testingprotocolurl -237 hs_file_types cvmethodtype -238 hs_file_types timeserieslogicalfile -239 hs_file_types cvaggregationstatistic -240 hs_file_types cvvariabletype -241 hs_file_types cvmedium -242 hs_file_types cvspeciation -243 hs_file_types cvunitstype -244 hs_file_types cvvariablename -245 hs_file_types filesetlogicalfile -246 hs_file_types cvstatus -247 hs_file_types filesetmetadata -248 hs_file_types timeseriesfilemetadata -249 hs_file_types cvelevationdatum -250 hs_file_types cvsitetype -251 hs_dictionary university -252 hs_dictionary uncategorizedterm -253 hs_odm2 odm2variable -254 hs_communities topic -255 hs_access_control feature -256 thumbnail kvstore -257 hs_core tasknotification -258 hs_core citation -259 hs_access_control communityresourceprivilege -260 hs_access_control communityresourceprovenance -261 hs_access_control groupcommunityrequest -262 hs_file_types modelinstancefilemetadata -263 hs_file_types modelinstancelogicalfile -264 hs_file_types modelprogramfilemetadata -265 hs_file_types modelprogramlogicalfile -266 hs_file_types modelprogramresourcefiletype -267 hs_file_types originalcoverage -268 hs_file_types variable -269 hs_file_types bandinformation -270 hs_file_types cellinformation -271 hs_file_types originalcoverageraster -272 hs_file_types fieldinformation -273 hs_file_types geometryinformation -274 hs_file_types originalcoveragegeofeature -275 hs_file_types method -276 hs_file_types processinglevel -277 hs_file_types site -278 hs_file_types timeseriesresult -279 hs_file_types utcoffset -280 hs_file_types variabletimeseries -15 django_s3 rodsenvironment -281 oauth2_provider idtoken -282 django_s3 avu -283 theme quotarequest -284 hs_core geospatialrelation -285 hs_access_control requestcommunity -286 hs_file_types csvfilemetadata -287 hs_file_types csvlogicalfile -288 hs_dictionary subjectarea -289 db testmodel -\. - - --- --- Data for Name: django_docker_processes_containeroverrides; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_containeroverrides (id, name, command, working_dir, "user", entrypoint, privileged, lxc_conf, memory_limit, cpu_shares, dns, net, docker_profile_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_dockerenvvar; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_dockerenvvar (id, name, value, docker_profile_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_dockerlink; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_dockerlink (id, link_name, docker_overrides_id, docker_profile_id, docker_profile_from_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_dockerport; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_dockerport (id, host, container, docker_profile_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_dockerprocess; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_dockerprocess (id, container_id, token, logs, finished, error, profile_id, user_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_dockerprofile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_dockerprofile (id, name, git_repository, git_use_submodules, git_username, git_password, commit_id, branch) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_dockervolume; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_dockervolume (id, host, container, readonly, docker_profile_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_overrideenvvar; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_overrideenvvar (id, name, value, container_overrides_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_overridelink; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_overridelink (id, link_name, container_overrides_id, docker_profile_from_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_overrideport; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_overrideport (id, host, container, container_overrides_id) FROM stdin; -\. - - --- --- Data for Name: django_docker_processes_overridevolume; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_docker_processes_overridevolume (id, host, container, container_overrides_id) FROM stdin; -\. - - --- --- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_migrations (id, app, name, applied) FROM stdin; -1 contenttypes 0001_initial 2016-01-25 19:11:56.863948+00 -2 auth 0001_initial 2016-01-25 19:11:57.121386+00 -3 admin 0001_initial 2016-01-25 19:11:57.247222+00 -4 django_docker_processes 0001_initial 2016-01-25 19:11:58.730572+00 -6 ga_ows 0001_initial 2016-01-25 19:11:59.076346+00 -7 ga_resources 0001_initial 2016-01-25 19:11:59.934826+00 -8 hs_core 0001_initial 2016-01-25 19:12:02.460395+00 -9 hs_core 0002_genericresource_resource_type 2016-01-25 19:12:02.728512+00 -10 hs_core 0003_auto_20150721_1122 2016-01-25 19:12:03.719141+00 -11 hs_core 0004_auto_20150721_1125 2016-01-25 19:12:06.140491+00 -12 hs_access_control 0001_initial 2016-01-25 19:12:08.794606+00 -13 hs_access_control 0002_auto_20150817_1150 2016-01-25 19:12:09.31385+00 -14 hs_access_control 0003_auto_20150824_2215 2016-01-25 19:12:11.708885+00 -15 hs_access_control 0004_remove_useraccess_admin 2016-01-25 19:12:12.265732+00 -16 hs_access_control 0005_remove_useraccess_active 2016-01-25 19:12:13.040689+00 -17 hs_app_netCDF 0001_initial 2016-01-25 19:12:13.857061+00 -18 hs_app_netCDF 0002_auto_20150813_1215 2016-01-25 19:12:14.103772+00 -19 hs_app_netCDF 0003_netcdfresource 2016-01-25 19:12:14.661719+00 -20 hs_app_timeseries 0001_initial 2016-01-25 19:12:16.317675+00 -21 hs_app_timeseries 0002_auto_20150813_1247 2016-01-25 19:12:16.691335+00 -22 hs_app_timeseries 0003_timeseriesresource 2016-01-25 19:12:17.197022+00 -23 hs_core 0005_auto_20150910_0233 2016-01-25 19:12:18.452997+00 -24 hs_core 0006_auto_20150917_1515 2016-01-25 19:12:18.931433+00 -25 hs_core 0007_auto_20151114_1618 2016-01-25 19:12:19.812616+00 -26 hs_core 0008_auto_20151114_2024 2016-01-25 19:12:20.502906+00 -27 hs_core 0009_auto_20151114_2105 2016-01-25 19:12:21.100168+00 -28 hs_core 0010_auto_20151114_2205 2016-01-25 19:12:21.824277+00 -29 hs_core 0011_auto_20151114_2231 2016-01-25 19:12:22.505024+00 -30 hs_core 0012_auto_20151114_2243 2016-01-25 19:12:23.188598+00 -31 hs_core 0013_auto_20151114_2314 2016-01-25 19:12:23.976933+00 -32 hs_core 0014_auto_20151123_1451 2016-01-25 19:12:24.680615+00 -33 hs_geo_raster_resource 0001_initial 2016-01-25 19:12:25.732457+00 -34 hs_geo_raster_resource 0002_auto_20150813_1313 2016-01-25 19:12:25.870148+00 -35 hs_geo_raster_resource 0003_auto_20150813_1315 2016-01-25 19:12:27.812284+00 -36 hs_geo_raster_resource 0004_auto_20151116_2257 2016-01-25 19:12:28.582408+00 -37 hs_geographic_feature_resource 0001_initial 2016-01-25 19:12:29.947073+00 -38 hs_labels 0001_initial 2016-01-25 19:12:31.044383+00 -39 hs_labels 0002_custom_migration 2016-01-25 19:12:31.760094+00 -40 hs_labels 0003_manual_delete_duplicates 2016-01-25 19:12:32.577078+00 -41 hs_labels 0004_auto_add_constraints 2016-01-25 19:12:33.85641+00 -42 hs_model_program 0001_initial 2016-01-25 19:12:34.545962+00 -43 hs_modelinstance 0001_initial 2016-01-25 19:12:35.220586+00 -44 hs_modelinstance 0002_auto_20150813_1345 2016-01-25 19:12:37.414321+00 -45 hs_model_program 0002_auto_20150813_1729 2016-01-25 19:12:37.561396+00 -46 hs_model_program 0003_auto_20150813_1730 2016-01-25 19:12:39.677772+00 -47 hs_model_program 0004_auto_20151012_1656 2016-01-25 19:12:42.639648+00 -48 hs_model_program 0005_auto_20151104_1604 2016-01-25 19:12:44.21169+00 -49 hs_model_program 0006_auto_20151216_1511 2016-01-25 19:12:45.172674+00 -50 hs_modelinstance 0002_auto_20150914_1902 2016-01-25 19:12:45.807549+00 -51 hs_modelinstance 0003_merge 2016-01-25 19:12:46.401464+00 -52 hs_modelinstance 0004_auto_20151110_1920 2016-01-25 19:12:47.492696+00 -53 hs_modelinstance 0005_auto_20151111_2129 2016-01-25 19:12:48.432108+00 -54 hs_modelinstance 0006_auto_20151216_1511 2016-01-25 19:12:49.41211+00 -55 hs_script_resource 0001_initial 2016-01-25 19:12:50.367661+00 -56 hs_swat_modelinstance 0001_initial 2016-01-25 19:12:52.143662+00 -57 hs_swat_modelinstance 0002_auto_20150813_1726 2016-01-25 19:12:52.435242+00 -58 hs_swat_modelinstance 0003_auto_20151013_1955 2016-01-25 19:12:54.130572+00 -59 hs_swat_modelinstance 0004_auto_20151106_1932 2016-01-25 19:12:57.702306+00 -60 hs_swat_modelinstance 0005_auto_20151110_1945 2016-01-25 19:13:02.692517+00 -61 hs_swat_modelinstance 0006_auto_20160114_1508 2016-01-25 19:13:04.238265+00 -62 sites 0001_initial 2016-01-25 19:13:04.325634+00 -63 hs_tools_resource 0001_initial 2016-01-25 19:13:05.12026+00 -64 hs_tools_resource 0002_auto_20150724_1422 2016-01-25 19:13:05.543658+00 -65 hs_tools_resource 0003_auto_20150724_1501 2016-01-25 19:13:06.249824+00 -66 hs_tools_resource 0004_auto_20151204_2301 2016-01-25 19:13:08.134296+00 -67 hs_tools_resource 0005_remove_requesturlbase_resshortid 2016-01-25 19:13:08.852496+00 -68 hs_tools_resource 0006_auto_20160113_2003 2016-01-25 19:13:09.597931+00 -69 oauth2_provider 0001_initial 2016-01-25 19:13:10.030944+00 -70 oauth2_provider 0002_08_updates 2016-01-25 19:13:10.364442+00 -71 redirects 0001_initial 2016-01-25 19:13:10.46622+00 -72 ref_ts 0001_initial 2016-01-25 19:13:11.526706+00 -73 ref_ts 0002_auto_20150813_1336 2016-01-25 19:13:11.788654+00 -74 ref_ts 0003_reftimeseries 2016-01-25 19:13:12.394768+00 -75 sessions 0001_initial 2016-01-25 19:13:12.483043+00 -76 theme 0001_initial 2016-01-25 19:13:12.791757+00 -77 hs_access_control 0006_auto_add_new_fields 2016-02-10 17:25:26.82944+00 -78 hs_access_control 0007_manual_populate_new_fields 2016-02-10 17:25:27.760025+00 -79 hs_access_control 0008_auto_remove_many2many_relationships 2016-02-10 17:25:29.190215+00 -80 hs_access_control 0009_auto_remove_original_fields 2016-02-10 17:25:31.50817+00 -81 hs_access_control 0010_auto_rename_related_names 2016-02-10 17:25:33.418051+00 -82 hs_access_control 0011_auto_rename_new_fields_to_original_names 2016-02-10 17:25:35.520652+00 -83 hs_access_control 0012_auto_disallow_nulls 2016-02-10 17:25:37.776682+00 -84 hs_access_control 0013_auto_add_uniqueness_constraints 2016-02-10 17:25:39.232351+00 -85 hs_core 0015_auto_20160210_1725 2016-02-10 17:25:39.984521+00 -86 hs_tools_resource 0007_auto_20160122_2240 2016-02-10 17:25:40.949761+00 -87 ref_ts 0004_auto_20160114_0252 2016-02-10 17:25:44.189374+00 -88 hs_core 0015_auto_20160122_1939 2016-02-24 16:49:13.981508+00 -89 hs_core 0016_merge 2016-02-24 16:49:14.629004+00 -90 contenttypes 0002_remove_content_type_name 2016-04-05 15:52:48.840448+00 -91 auth 0002_alter_permission_name_max_length 2016-04-05 15:52:48.861207+00 -92 auth 0003_alter_user_email_max_length 2016-04-05 15:52:48.882309+00 -93 auth 0004_alter_user_username_opts 2016-04-05 15:52:48.902771+00 -94 auth 0005_alter_user_last_login_null 2016-04-05 15:52:48.924684+00 -95 auth 0006_require_contenttypes_0002 2016-04-05 15:52:48.928046+00 -96 blog 0001_initial 2016-04-05 15:52:48.96178+00 -97 blog 0002_auto_20150527_1555 2016-04-05 15:52:48.995833+00 -98 conf 0001_initial 2016-04-05 15:52:49.030144+00 -99 core 0001_initial 2016-04-05 15:52:49.069188+00 -100 core 0002_auto_20150414_2140 2016-04-05 15:52:49.123848+00 -101 django_comments 0001_initial 2016-04-05 15:52:49.232336+00 -102 django_comments 0002_update_user_email_field_length 2016-04-05 15:52:49.274936+00 -103 pages 0001_initial 2016-04-05 15:52:49.381683+00 -104 forms 0001_initial 2016-04-05 15:52:49.704962+00 -105 forms 0002_auto_20141227_0224 2016-04-05 15:52:49.791646+00 -106 forms 0003_emailfield 2016-04-05 15:52:49.882541+00 -107 forms 0004_auto_20150517_0510 2016-04-05 15:52:50.202042+00 -108 forms 0005_auto_20151026_1600 2016-04-05 15:52:50.279381+00 -109 galleries 0001_initial 2016-04-05 15:52:50.490778+00 -110 galleries 0002_auto_20141227_0224 2016-04-05 15:52:50.601395+00 -111 generic 0001_initial 2016-04-05 15:52:51.13465+00 -112 generic 0002_auto_20141227_0224 2016-04-05 15:52:51.2577+00 -113 hs_core 0017_auto_20160219_2039 2016-04-05 15:52:51.697456+00 -114 hs_core 0017_auto_20160217_1629 2016-04-05 15:52:52.108399+00 -115 hs_core 0018_merge 2016-04-05 15:52:52.111171+00 -116 hs_core 0019_baseresource_locked_time 2016-04-05 15:52:52.318958+00 -117 hs_geo_raster_resource custom_migration_for_tif_to_vrt_20160223 2016-04-05 15:52:52.337656+00 -118 pages 0002_auto_20141227_0224 2016-04-05 15:52:53.062688+00 -119 pages 0003_auto_20150527_1555 2016-04-05 15:52:53.439151+00 -120 theme 0002_auto_20160219_2039 2016-04-05 15:52:53.861018+00 -121 theme 0003_auto_20160302_0453 2016-04-05 15:52:57.426205+00 -122 hs_access_control 0014_auto_20160424_1628 2016-06-23 17:05:42.044535+00 -123 hs_app_timeseries 0004_auto_20160526_2026 2016-06-23 17:05:42.29096+00 -124 hs_core 0020_baseresource_collections 2016-06-23 17:05:42.53999+00 -125 hs_collection_resource 0001_initial 2016-06-23 17:05:43.761938+00 -126 hs_core 0021_auto_20160427_1807 2016-06-23 17:05:44.237364+00 -127 hs_core 0022_resourcefile_resource_file_size 2016-06-23 17:05:44.493421+00 -128 hs_core 0021_hstore_extension 2016-06-23 17:05:44.529228+00 -129 hs_core 0022_baseresource_extra_metadata 2016-06-23 17:05:44.825073+00 -130 hs_core 0021_fundingagency 2016-06-23 17:05:45.254751+00 -131 hs_core 0023_merge 2016-06-23 17:05:45.259316+00 -132 hs_core 0024_baseresource_resource_federation_path 2016-06-23 17:05:45.599503+00 -133 hs_core 0025_resourcefile_fed_resource_file 2016-06-23 17:05:46.122748+00 -134 hs_core 0024_custom_migration_metadata_namespace_20160527 2016-06-23 17:05:46.14658+00 -135 hs_core 0026_merge 2016-06-23 17:05:46.150181+00 -136 hs_geo_raster_resource 0005_auto_20160509_2116 2016-06-23 17:05:47.213331+00 -137 hs_geo_raster_resource custom_migration_for_raster_meta_update_20160512 2016-06-23 17:05:47.239339+00 -138 hs_swat_modelinstance 0007_auto_20160428_1843 2016-06-23 17:05:48.065251+00 -139 hs_tracking 0001_initial 2016-06-23 17:05:50.044085+00 -140 hs_tracking 0002_auto_20160406_1244 2016-06-23 17:05:50.486671+00 -141 theme 0004_userprofile_create_irods_user_account 2016-06-23 17:05:51.001845+00 -142 hs_tracking 0003_auto_20160623_1718 2016-06-23 17:23:54.498282+00 -143 hs_access_control 0015_manual_remove_redundant_privileges 2017-02-02 16:15:22.054515+00 -144 hs_access_control 0016_auto_enforce_constraints 2017-02-02 16:15:22.98605+00 -145 hs_app_netCDF 0004_auto_20160921_2320 2017-02-02 16:15:24.056952+00 -146 hs_app_netCDF 0005_auto_20161111_2322 2017-02-02 16:15:24.452244+00 -147 hs_app_netCDF 0006_auto_20170120_1445 2017-02-02 16:15:24.660859+00 -148 hs_app_timeseries 0005_auto_20160713_1905 2017-02-02 16:15:29.521167+00 -149 hs_app_timeseries custom_data_migration_20160718 2017-02-02 16:15:29.545735+00 -150 hs_app_timeseries 0001_auto_20160829_2156 2017-02-02 16:15:30.482925+00 -151 hs_collection_resource 0002_collectiondeletedresource_resource_owners 2017-02-02 16:15:30.743707+00 -152 hs_core 0027_auto_20160818_2308 2017-02-02 16:15:31.282057+00 -153 hs_core 0028_baseresource_extra_data 2017-02-02 16:15:31.860804+00 -154 hs_core 0029_auto_20161123_1858 2017-02-02 16:15:32.30716+00 -155 hs_core 0030_resourcefile_file_folder 2017-02-02 16:15:32.540543+00 -156 hs_core 0031_auto_20170112_2202 2017-02-02 16:15:33.085424+00 -157 hs_composite_resource 0001_initial 2017-02-02 16:15:33.111575+00 -158 hs_core 0032_auto_20170120_1445 2017-02-02 16:15:33.378996+00 -159 hs_file_types 0001_initial 2017-02-02 16:15:33.540703+00 -160 hs_geo_raster_resource 0006_auto_20161129_0121 2017-02-02 16:15:33.815668+00 -161 hs_modflow_modelinstance 0001_initial 2017-02-02 16:15:48.455375+00 -162 hs_modflow_modelinstance 0002_executedby_modeloutput_modflowmodelinstancemetadata_modflowmodelinstanceresource 2017-02-02 16:15:48.614609+00 -163 hs_tools_resource 0008_auto_20160729_1811 2017-02-02 16:15:49.637362+00 -164 hs_tools_resource 0009_auto_20160929_1543 2017-02-02 16:15:50.902935+00 -165 hs_tools_resource 0010_auto_20161203_1913 2017-02-02 16:15:54.219542+00 -166 hs_tracking 0004_auto_20161010_1402 2017-02-02 16:15:54.69361+00 -167 robots 0001_initial 2017-02-02 16:15:58.401584+00 -168 hs_access_control 0017_auto_add_provenance 2017-05-18 23:34:10.356163+00 -169 hs_access_control 0018_auto_tune_provenance 2017-05-18 23:34:12.131222+00 -170 hs_access_control 0019_manual_populate_provenance 2017-05-18 23:34:12.160846+00 -171 hs_access_control 0017_groupaccess_auto_approve 2017-05-18 23:34:12.404434+00 -172 hs_access_control 0020_merge 2017-05-18 23:34:12.407975+00 -173 hs_access_control 0021_auto_20170506_1538 2017-05-18 23:34:12.571445+00 -174 hs_app_netCDF 0007_netcdfmetadata_is_dirty 2017-05-18 23:34:12.622232+00 -175 hs_core 0033_resourcefile_attributes 2017-05-18 23:34:13.328468+00 -176 hs_core 0034_manual_migrate_file_paths 2017-05-18 23:34:13.344792+00 -177 hs_core 0035_remove_deprecated_fields 2017-05-18 23:34:13.770136+00 -178 hs_file_types 0002_auto_20170216_1904 2017-05-18 23:34:14.190622+00 -179 hs_file_types 0003_auto_20170302_2257 2017-05-18 23:34:14.296269+00 -180 hs_script_resource 0002_repo_charfield_to_urlfield 2017-05-18 23:34:14.684829+00 -181 hs_tools_resource 0011_toolicon_data_url 2017-05-18 23:34:15.088274+00 -182 hs_tracking 0005_auto_20170506_1538 2017-05-18 23:34:15.545637+00 -183 security 0001_initial 2017-05-18 23:34:17.232353+00 -184 theme 0005_userquota 2017-05-18 23:34:18.968212+00 -185 theme 0006_auto_20170309_1516 2017-05-18 23:34:18.99764+00 -186 theme 0007_auto_20170427_1553 2017-05-18 23:34:22.056523+00 -187 hs_access_control 0022_resourceaccess_require_download_agreement 2017-08-17 21:08:41.410271+00 -188 hs_app_timeseries 0002_auto_20170602_2007 2017-08-17 21:08:41.607018+00 -189 hs_file_types 0004_geofeaturefilemetadata_geofeaturelogicalfile 2017-08-17 21:08:41.659203+00 -190 hs_file_types 0005_reftimeseriesfilemetadata_reftimeserieslogicalfile 2017-08-17 21:08:41.719251+00 -191 hs_geographic_feature_resource 0002_auto_20170612_2159 2017-08-17 21:08:42.181189+00 -192 theme 0008_auto_20170622_2141 2017-08-17 21:08:43.301783+00 -193 sites 0002_alter_domain_unique 2019-09-30 17:50:07.593815+00 -194 admin 0002_logentry_remove_auto_add 2019-09-30 17:50:18.584955+00 -195 auth 0007_alter_validators_add_error_messages 2019-09-30 17:50:18.65952+00 -196 auth 0008_alter_user_username_max_length 2019-09-30 17:50:18.853236+00 -197 blog 0003_auto_20170411_0504 2019-09-30 17:50:18.996963+00 -198 django_comments 0003_add_submit_date_index 2019-09-30 17:50:19.084151+00 -199 forms 0006_auto_20170425_2225 2019-09-30 17:50:19.15729+00 -200 generic 0003_auto_20170411_0504 2019-09-30 17:50:19.193518+00 -201 hs_access_control 0023_auto_20190131_1523 2019-09-30 17:50:20.525731+00 -202 hs_access_control 0024_remove_groupcommunityprivilege_allow_view 2019-09-30 17:50:20.608441+00 -203 hs_app_timeseries 0003_auto_20180621_0159 2019-09-30 17:50:20.655361+00 -204 hs_app_timeseries 0003_auto_20180623_2049 2019-09-30 17:50:20.772982+00 -205 hs_communities 0001_initial 2019-09-30 17:50:20.914208+00 -206 hs_communities 0002_auto_20190903_1547 2019-09-30 17:50:21.04231+00 -207 hs_communities 0003_auto_20190903_1548 2019-09-30 17:50:21.22037+00 -208 hs_communities 0004_remove_topic_order 2019-09-30 17:50:21.500436+00 -209 hs_core 0036_auto_20171117_0422 2019-09-30 17:50:21.755776+00 -210 hs_core 0037_auto_20180209_0309 2019-09-30 17:50:22.054464+00 -211 hs_core 0038_auto_20180831_2201 2019-09-30 17:50:22.134894+00 -212 hs_core 0039_doi_url 2019-09-30 17:50:22.658133+00 -213 hs_core 0040_auto_20190105_1844 2019-09-30 17:50:22.859648+00 -214 hs_core 0041_resourcefile__size 2019-09-30 17:50:22.926125+00 -215 hs_core 0042_auto_20190402_1339 2019-09-30 17:50:22.972304+00 -216 hs_core 0043_auto_20190621_0308 2019-09-30 17:50:23.074986+00 -217 hs_core 0044_auto_20190701_2207 2019-09-30 17:50:23.189199+00 -218 hs_core 0045_delete_topics 2019-09-30 17:50:23.214184+00 -219 hs_dictionary 0001_initial 2019-09-30 17:50:23.265523+00 -220 hs_dictionary 0002_auto_20170824_1900 2019-09-30 17:50:31.891024+00 -221 hs_dictionary 0003_auto_20171023_1550 2019-09-30 17:50:31.918155+00 -222 hs_dictionary 0003_auto_20170908_1943 2019-09-30 17:50:31.972462+00 -223 hs_dictionary 0004_merge 2019-09-30 17:50:31.977752+00 -224 hs_dictionary 0005_reimport_universities 2019-09-30 17:50:40.331543+00 -225 hs_file_types 0006_auto_20170812_1621 2019-09-30 17:50:41.457865+00 -226 hs_file_types 0006_reftimeseriesfilemetadata_abstract 2019-09-30 17:50:41.489481+00 -227 hs_file_types 0007_timeseriesfilemetadata_abstract 2019-09-30 17:50:41.531134+00 -228 hs_file_types 0008_auto_20180910_1731 2019-09-30 17:50:41.741841+00 -229 hs_file_types 0009_auto_20181028_1554 2019-09-30 17:50:44.163115+00 -230 hs_file_types set_aggregation_resource 2019-09-30 17:50:44.478654+00 -231 hs_file_types 0010_auto_20181209_0255 2019-09-30 17:50:46.672917+00 -232 hs_labels 0005_auto_20171127_1952 2019-09-30 17:50:46.771131+00 -233 hs_modflow_modelinstance 0003_auto_20170501_1700 2019-09-30 17:50:46.929771+00 -234 hs_odm2 0001_initial 2019-09-30 17:50:46.980015+00 -235 hs_odm2 0002_auto_20190723_1644 2019-09-30 17:50:47.067579+00 -236 hs_tools_resource 0012_toolmetadata_approved 2019-09-30 17:50:47.103314+00 -237 hs_tools_resource 0013_auto_20171023_1724 2019-09-30 17:50:47.135144+00 -238 hs_tools_resource 0014_auto_20171101_1812 2019-09-30 17:50:48.750638+00 -239 hs_tools_resource 0015_auto_20171101_1819 2019-09-30 17:50:48.903573+00 -240 hs_tools_resource 0012_auto_20171110_1559 2019-09-30 17:50:48.998454+00 -241 hs_tools_resource 0016_merge 2019-09-30 17:50:49.003662+00 -242 hs_tools_resource 0017_auto_20171128_1852 2019-09-30 17:50:49.238714+00 -243 hs_tools_resource 0018_auto_20180530_2246 2019-09-30 17:50:49.777111+00 -244 hs_tools_resource 0019_auto_20180531_2304 2019-09-30 17:50:50.213978+00 -245 hs_tools_resource 0020_auto_20180604_1845 2019-09-30 17:50:50.785758+00 -246 hs_tracking 0006_auto_20190407_1436 2019-09-30 17:50:51.443831+00 -247 hs_tracking 0007_auto_20190503_1724 2019-09-30 17:50:51.59153+00 -248 oauth2_provider 0003_auto_20160316_1503 2019-09-30 17:50:51.808916+00 -249 oauth2_provider 0004_auto_20160525_1623 2019-09-30 17:50:52.622689+00 -250 oauth2_provider 0005_auto_20170514_1141 2019-09-30 17:50:55.02825+00 -251 oauth2_provider 0006_auto_20171214_2232 2019-09-30 17:50:55.689011+00 -252 pages 0004_auto_20170411_0504 2019-09-30 17:50:55.731493+00 -253 theme 0009_quotamessage_enforce_quota 2019-09-30 17:50:55.789992+00 -254 theme 0010_auto_20180207_1845 2019-09-30 17:50:55.986646+00 -255 theme 0011_auto_20180211_0105 2019-09-30 17:50:56.754884+00 -256 theme 0009_userprofile_identifiers 2019-09-30 17:50:56.882068+00 -257 theme 0012_1_15_RC_merge 2019-09-30 17:50:56.886327+00 -258 theme 0013_auto_20180222_1700 2019-09-30 17:50:57.00372+00 -259 theme 0014_comma_semicolon_delimiter 2019-09-30 17:50:57.220111+00 -260 hs_access_control 0025_auto_20190924_1622 2019-10-01 18:20:37.61755+00 -262 hs_core 0046_auto_20191104_2035 2022-09-12 14:34:00.556444+00 -263 hs_core 0047_auto_20200512_1509 2022-09-12 14:34:00.836919+00 -264 hs_core 0048_auto_20200603_2110 2022-09-12 14:34:01.914728+00 -265 hs_core 0049_auto_20200610_1938 2022-09-12 14:34:02.479463+00 -266 hs_core 0050_auto_20200611_1912 2022-09-12 14:34:02.85743+00 -267 hs_core 0051_tasknotification 2022-09-12 14:34:02.941321+00 -268 hs_core 0052_tasknotification_username 2022-09-12 14:34:03.040543+00 -269 hs_core 0053_auto_20200826_1629 2022-09-12 14:34:03.077498+00 -270 hs_core 0054_auto_20201028_1432 2022-09-12 14:34:03.128004+00 -271 hs_core 0055_auto_20201031_1727 2022-09-12 14:34:03.630336+00 -272 hs_core 0056_auto_citations 2022-09-12 14:34:04.095508+00 -273 hs_core 0057_auto_20210104_2106 2022-09-12 14:34:04.24198+00 -274 hs_access_control 0026_auto_20200603_2110 2022-09-12 14:34:04.336068+00 -275 hs_access_control 0027_groupmembershiprequest_redeemed 2022-09-12 14:34:04.536277+00 -276 hs_access_control 0028_auto_20210528_1427 2022-09-12 14:34:06.120062+00 -277 hs_access_control 0029_auto_20210604_1143 2022-09-12 14:34:08.848554+00 -278 hs_access_control 0030_groupcommunityinvite_groupcommunityrequest 2022-09-12 14:34:09.250879+00 -279 hs_access_control 0031_auto_20210606_2052 2022-09-12 14:34:09.703359+00 -280 hs_access_control 0032_auto_20210607_2027 2022-09-12 14:34:10.902556+00 -281 hs_access_control 0033_auto_20220217_2304 2022-09-12 14:34:10.968931+00 -282 hs_access_control 0034_resourceaccess_allow_private_sharing 2022-09-12 14:34:11.062682+00 -283 hs_access_control 0035_auto_20220322_1313 2022-09-12 14:34:11.220207+00 -284 hs_access_control 0036_auto_20220510_1213 2022-09-12 14:34:11.291231+00 -285 hs_app_netCDF 0008_auto_20220228_2158 2022-09-12 14:34:11.656191+00 -286 hs_app_timeseries 0004_auto_20220502_1850 2022-09-12 14:34:12.638183+00 -287 hs_app_timeseries 0005_auto_20220502_2107 2022-09-12 14:34:16.071023+00 -288 hs_core 0058_cite with_text_field 2022-09-12 14:34:16.313715+00 -289 hs_core 0059_auto_20211216_1427 2022-09-12 14:34:16.434535+00 -290 hs_core 0060_auto_20220202_1732 2022-09-12 14:34:16.900509+00 -291 hs_core 0061_auto_20220404_1415 2022-09-12 14:34:18.314527+00 -292 hs_core 0062_auto_20220520_1449 2022-09-12 14:34:18.442319+00 -293 hs_core 0063_auto_20220601_2014 2022-09-12 14:34:18.665424+00 -294 hs_core 0064_auto_20220620_1633 2022-09-12 14:34:18.773885+00 -295 hs_file_types 0011_auto_20201212_1554 2022-09-12 14:34:20.270268+00 -296 hs_file_types 0012_auto_20220228_2239 2022-09-12 14:34:21.100653+00 -297 hs_file_types 0013_netcdffilemetadata_is_update_file 2022-09-12 14:34:21.163739+00 -298 hs_file_types 0014_timeseriesfilemetadata_is_update_file 2022-09-12 14:34:21.241008+00 -299 hs_file_types 0015_auto_20220329_2149 2022-09-12 14:34:22.457821+00 -300 hs_file_types 0016_auto_20220413_1959 2022-09-12 14:34:23.393037+00 -301 hs_file_types 0017_timeseries_metadata_models 2022-09-12 14:34:24.90135+00 -302 hs_file_types 0018_auto_20220713_2042 2022-09-12 14:34:25.042389+00 -303 hs_geo_raster_resource 0007_auto_20220302_1514 2022-09-12 14:34:25.28076+00 -304 hs_geo_raster_resource 0008_auto_20220306_2128 2022-09-12 14:34:26.412277+00 -305 hs_geographic_feature_resource 0003_auto_20220413_1838 2022-09-12 14:34:27.179225+00 -306 hs_geographic_feature_resource 0004_auto_20220413_1852 2022-09-12 14:34:29.208729+00 -307 hs_labels 0006_auto_20220311_1827 2022-09-12 14:34:29.2993+00 -308 hs_swat_modelinstance 0008_auto_20220726_1833 2022-09-12 14:34:30.018072+00 -309 hs_modflow_modelinstance 0004_auto_20200603_2110 2022-09-12 14:34:30.085868+00 -310 hs_modflow_modelinstance 0005_auto_20220701_1531 2022-09-12 14:34:32.545697+00 -311 hs_modelinstance 0007_auto_20220803_1528 2022-09-12 14:34:33.433083+00 -312 hs_model_program 0007_auto_20220811_1953 2022-09-12 14:34:33.680274+00 -313 hs_script_resource 0003_auto_20220609_1327 2022-09-12 14:34:34.264604+00 -314 hs_tools_resource 0021_url_rename 2022-09-12 14:34:34.273865+00 -315 ref_ts 0005_auto_20220526_1548 2022-09-12 14:34:35.978454+00 -316 theme 0015_auto_20200603_2110 2022-09-12 14:34:36.100866+00 -317 theme 0016_userprofile_phone_validations 2022-09-12 14:34:36.455307+00 -318 theme 0017_phone_validation_message 2022-09-12 14:34:36.66976+00 -319 theme 0018_auto_20220217_2304 2022-09-12 14:34:36.752301+00 -320 theme 0019_auto_20220510_1213 2022-09-12 14:34:36.850045+00 -321 thumbnail 0001_initial 2022-09-12 14:34:36.925219+00 -5 django_s3 0001_initial 2016-01-25 19:11:58.841429+00 -261 django_s3 0002_auto_20200603_2110 2022-09-12 14:34:00.17392+00 -322 admin 0003_logentry_add_action_flag_choices 2025-06-10 22:58:40.545171+00 -323 auth 0009_alter_user_last_name_max_length 2025-06-10 22:58:40.605969+00 -324 auth 0010_alter_group_name_max_length 2025-06-10 22:58:40.677605+00 -325 auth 0011_update_proxy_permissions 2025-06-10 22:58:40.746617+00 -326 auth 0012_alter_user_first_name_max_length 2025-06-10 22:58:40.806056+00 -327 health_check_db 0001_initial 2025-06-10 22:58:40.826347+00 -328 django_comments 0004_add_object_pk_is_removed_index 2025-06-10 22:58:40.921548+00 -329 django_s3 0003_auto_20240809_1412 2025-06-10 22:58:40.937568+00 -330 django_s3 0004_delete_rodsenvironment 2025-06-10 22:58:40.946097+00 -331 django_s3 0005_alter_avu_attval 2025-06-10 22:58:40.957244+00 -332 hs_access_control 0033_auto_20211018_1440 2025-06-10 22:58:41.303358+00 -333 hs_access_control 0034_auto_20211018_1707 2025-06-10 22:58:41.525163+00 -334 hs_access_control 0035_auto_20211025_1948 2025-06-10 22:58:41.679986+00 -335 hs_access_control 0033_auto_20211118_1919 2025-06-10 22:58:41.708967+00 -336 hs_access_control 0036_merge_20220401_2241 2025-06-10 22:58:41.715033+00 -337 hs_access_control 0037_auto_20220401_2243 2025-06-10 22:58:41.728131+00 -338 hs_access_control 0038_merge_20220403_1230 2025-06-10 22:58:41.734884+00 -339 hs_access_control 0039_community_email 2025-06-10 22:58:41.749592+00 -340 hs_access_control 0040_community_url 2025-06-10 22:58:41.765631+00 -341 hs_access_control 0041_community_active 2025-06-10 22:58:41.781658+00 -342 hs_access_control 0042_communityrequest 2025-06-10 22:58:41.857337+00 -343 hs_access_control 0043_auto_20220520_2047 2025-06-10 22:58:41.909638+00 -344 hs_access_control 0037_resourceaccess_review_pending 2025-06-10 22:58:41.928944+00 -345 hs_access_control 0044_merge_20220729_2007 2025-06-10 22:58:41.934192+00 -346 hs_access_control 0045_auto_20221103_0330 2025-06-10 22:58:42.145264+00 -347 hs_access_control 0046_requestcommunity_cancelled 2025-06-10 22:58:42.171848+00 -348 hs_core 0065_auto_20221004_2012 2025-06-10 22:58:42.285775+00 -349 hs_core 0065_auto_20221004_1707 2025-06-10 22:58:42.390538+00 -350 hs_core 0066_merge_20221014_1428 2025-06-10 22:58:42.407075+00 -351 hs_core 0065_auto_20220922_1352 2025-06-10 22:58:42.851146+00 -352 hs_core 0067_merge_20221104_1342 2025-06-10 22:58:42.856718+00 -353 hs_core 0068_alter_date_type 2025-06-10 22:58:42.884706+00 -354 hs_core 0067_auto_20221107_1513 2025-06-10 22:58:42.970652+00 -355 hs_core 0069_merge_0067_auto_20221107_1513_0068_alter_date_type 2025-06-10 22:58:42.975587+00 -356 hs_core 0070_delete_genericresource 2025-06-10 22:58:42.982196+00 -357 hs_core 0071_alter_date_type 2025-06-10 22:58:43.010787+00 -358 hs_core 0072_baseresource_repaired 2025-06-10 22:58:43.060591+00 -359 hs_core 0073_baseresource_checked 2025-06-10 22:58:43.113021+00 -360 hs_core 0074_auto_20230905_1959 2025-06-10 22:58:43.169469+00 -361 hs_core 0075_remove_duplicate_res_files 2025-06-10 22:58:43.239461+00 -362 hs_core 0076_resource_file_unique_constraint 2025-06-10 22:58:43.272869+00 -363 hs_core 0077_baseresource_spam_allowlisted 2025-06-10 22:58:43.432176+00 -364 hs_core 0078_alter_description_abstract 2025-06-10 22:58:43.460487+00 -365 hs_core 0079_baseresource_bag_last_downloaded 2025-06-10 22:58:43.506421+00 -366 hs_core 0080_baseresource_quota_holder 2025-06-10 22:58:43.567569+00 -367 hs_core 0081_alter_baseresource_quota_holder 2025-06-10 22:58:43.624607+00 -368 hs_core 0080_resourcefile_filesize_cache_updated 2025-06-10 22:58:43.652213+00 -369 hs_core 0082_merge_20240509_1646 2025-06-10 22:58:43.657766+00 -370 hs_core 0083_auto_20240702_2038 2025-06-10 22:58:43.792106+00 -371 hs_core 0084_remove_federation_from_db 2025-06-10 22:58:43.80167+00 -372 hs_core 0085_alter_baseresource_creator_and_more 2025-06-10 22:58:45.15067+00 -373 hs_dictionary 0006_subjectarea 2025-06-10 22:58:45.160283+00 -374 hs_file_types 0019_auto_20220922_1356 2025-06-10 22:58:45.59973+00 -375 hs_file_types 0020_csvfilemetadata_csvlogicalfile 2025-06-10 22:58:45.716754+00 -376 hs_file_types 0021_alter_bandinformation_content_type_and_more 2025-06-10 22:58:46.662931+00 -377 hs_tools_resource 0022_alter_apphomepageurl_content_type_and_more 2025-06-10 22:58:47.763622+00 -378 oauth2_provider 0002_auto_20190406_1805 2025-06-10 22:58:47.808595+00 -379 oauth2_provider 0003_auto_20201211_1314 2025-06-10 22:58:47.83427+00 -380 oauth2_provider 0004_auto_20200902_2022 2025-06-10 22:58:48.15556+00 -381 oauth2_provider 0005_auto_20211222_2352 2025-06-10 22:58:48.528816+00 -382 oauth2_provider 0006_alter_application_client_secret 2025-06-10 22:58:48.612015+00 -383 oauth2_provider 0007_application_post_logout_redirect_uris 2025-06-10 22:58:48.642052+00 -384 oauth2_provider 0008_alter_accesstoken_token 2025-06-10 22:58:48.668956+00 -385 oauth2_provider 0009_add_hash_client_secret 2025-06-10 22:58:48.699687+00 -386 oauth2_provider 0010_application_allowed_origins 2025-06-10 22:58:48.73018+00 -387 oauth2_provider 0011_refreshtoken_token_family 2025-06-10 22:58:48.76026+00 -388 oauth2_provider 0012_add_token_checksum 2025-06-10 22:58:49.01451+00 -389 redirects 0002_alter_redirect_new_path_help_text 2025-06-10 22:58:49.034965+00 -390 robots 0002_alter_id_fields 2025-06-10 22:58:49.244423+00 -391 security 0002_convert_pass_expiry_user_to_one2one 2025-06-10 22:58:49.31183+00 -392 theme 0020_auto_20220922_1400 2025-06-10 22:58:49.351045+00 -393 theme 0021_auto_20221229_2200 2025-06-10 22:58:49.401434+00 -394 theme 0022_alter_userprofile_subject_areas 2025-06-10 22:58:49.434826+00 -395 theme 0023_alter_userprofile_subject_areas 2025-06-10 22:58:49.801746+00 -396 theme 0024_quotamessage_published_resource_percent 2025-06-10 22:58:49.812315+00 -397 theme 0025_quotarequest 2025-06-10 22:58:49.881786+00 -398 theme 0026_auto_20231106_0031 2025-06-10 22:58:49.931146+00 -399 theme 0027_remove_quotarequest_org_info 2025-06-10 22:58:50.07089+00 -400 theme 0028_auto_20240104_2002 2025-06-10 22:58:50.118398+00 -401 theme 0029_auto_20240118_1956 2025-06-10 22:58:50.18544+00 -402 theme 0030_auto_20240125_1422 2025-06-10 22:58:50.234881+00 -403 theme 0032_alter_userquota_grace_period_ends 2025-06-10 22:58:50.261721+00 -404 theme 0033_auto_20240201_1947 2025-06-10 22:58:50.277114+00 -405 theme 0034_auto_20240312_1449 2025-06-10 22:58:50.300706+00 -406 theme 0035_remove_userquota_data_zone_value 2025-06-10 22:58:50.327632+00 -407 theme 0036_auto_20240702_1847 2025-06-10 22:58:50.413666+00 -408 theme 0037_remove_userprofile_create_irods_user_account 2025-06-10 22:58:50.418915+00 -409 theme 0037_remove_userquota_and_userprofile_from_db 2025-06-10 22:58:50.428402+00 -410 theme 0038_userprofile__bucket_name 2025-06-10 22:58:50.460459+00 -411 theme 0039_alter_userprofile__bucket_name 2025-06-10 22:58:50.491575+00 -412 theme 0040_remove_userquota_allocated_value_and_more 2025-06-10 22:58:50.546072+00 -413 theme 0041_remove_quotamessage_enforce_quota_and_more 2025-06-10 22:58:50.583533+00 -414 theme 0036_auto_20240702_1847_squashed_0037_remove_userprofile_create_irods_user_account 2025-06-10 22:58:50.601034+00 -415 db 0001_initial 2025-06-10 22:58:50.606661+00 -416 theme 0042_userprofile_minio_access_key_and_more 2025-06-10 23:14:01.903937+00 -\. - - --- --- Data for Name: django_redirect; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_redirect (id, site_id, old_path, new_path) FROM stdin; -2 1 /privacy/ https://help.hydroshare.org/about-hydroshare/policies/statement-of-privacy/ -1 1 /terms-of-use/ https://help.hydroshare.org/about-hydroshare/policies/terms-of-use/ -\. - - --- --- Data for Name: django_s3_avu; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_s3_avu (id, name, "attName", "attVal") FROM stdin; -1 ad0b5df2e8434a5aaad455a322bc1fd5 isPublic false -2 ad0b5df2e8434a5aaad455a322bc1fd5 resourceType CompositeResource -3 f211b93642f84c55a0bdd1b12880e32e isPublic false -4 f211b93642f84c55a0bdd1b12880e32e resourceType CompositeResource -5 f211b93642f84c55a0bdd1b12880e32e bag_modified true -6 f211b93642f84c55a0bdd1b12880e32e metadata_dirty true -7 d5c432ae01eb4f03a73d589e54d341b3 isPublic false -8 d5c432ae01eb4f03a73d589e54d341b3 resourceType CompositeResource -10 a2c0df5bf3eb4d8c8a34beaffe169f91 resourceType CompositeResource -11 a2c0df5bf3eb4d8c8a34beaffe169f91 bag_modified true -12 a2c0df5bf3eb4d8c8a34beaffe169f91 metadata_dirty true -9 a2c0df5bf3eb4d8c8a34beaffe169f91 isPublic true -13 5670903e39d54026a729abd4cc148f99 isPublic false -14 5670903e39d54026a729abd4cc148f99 resourceType CompositeResource -15 5670903e39d54026a729abd4cc148f99 bag_modified true -16 5670903e39d54026a729abd4cc148f99 metadata_dirty true -\. - - --- --- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_session (session_key, session_data, expire_date) FROM stdin; -iuq13wh2xtsrestc3ixty7cy7pcutc3b ZTIwZWRiZTQzZjI5ODhkYTE0NDQxYzFmZmQzMTRjZDc3MWUxNGUzYTp7Il9hdXRoX3VzZXJfaGFzaCI6IjBkNTY4M2MyYWVkNjA4OWNhMDc5YTE4ZmFlZTNjNjdlMjExNTRmZDciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJtZXp6YW5pbmUuY29yZS5hdXRoX2JhY2tlbmRzLk1lenphbmluZUJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjo0fQ== 2016-02-08 19:50:52.911919+00 -r95gvslruo55bqar11kco2o9ynh41mrq NmM0MTZkOGYzNTBkNDEwMTBiZTc3NTFmODg5ZDU4N2VkNmVkZDJlZTp7fQ== 2016-02-08 19:55:45.734662+00 -yq96gavkvlu0skywfwgvdock65xnq3tc ZTIwZWRiZTQzZjI5ODhkYTE0NDQxYzFmZmQzMTRjZDc3MWUxNGUzYTp7Il9hdXRoX3VzZXJfaGFzaCI6IjBkNTY4M2MyYWVkNjA4OWNhMDc5YTE4ZmFlZTNjNjdlMjExNTRmZDciLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJtZXp6YW5pbmUuY29yZS5hdXRoX2JhY2tlbmRzLk1lenphbmluZUJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjo0fQ== 2016-03-09 17:40:31.568514+00 -5eflr6q0pn7qgkuu6mbo84kuqoxk5plt ZjZmMTlkMThkOGJmNWIzY2IxODNjODM5ZTA2MmFjNTRmNTlmYTRkOTp7InF1ZXJ5X2NoYW5nZWQiOmZhbHNlLCJoc190cmFja2luZ19pZCI6ImV5SnBaQ0k2TW4wOjFiRzg2ZDpGNWs4M3pGcnQ2Mzg5WWMyZUhRc3BNRGVBR2siLCJmYWNldHNfaXRlbXMiOnsiZmllbGRzIjp7ImF1dGhvciI6W10sIm93bmVyc19uYW1lcyI6W10sInN1YmplY3RzIjpbXSwiZGlzY292ZXJhYmxlIjpbXSwicHVibGljIjpbXSwicmVzb3VyY2VfdHlwZSI6W119LCJkYXRlcyI6e30sInF1ZXJpZXMiOnt9fSwidG90YWxfcmVzdWx0cyI6MH0= 2016-07-07 17:17:57.67608+00 -yg9nko1xsebjvcc6wk4ynygw4m8l3ofk ZTg1M2RhMWVmMzk3YTcwYTFlMWE5MDhlNWRiYjAyZGU0Yzk2YmVmYzp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZObjA6MWNaTEJZOnhCdHhZT3oxQ3RXb0lBVFR2aFVqcW5UaDBwOCJ9 2017-02-16 17:28:40.816975+00 -mtzyl7dumuj30g4jb8tmyf7scec5ni6y MmQ4MTVjNDgwY2RlOGVkY2JkZGIyMWU3NzFkMDY4N2JjYmFmMzEyZjp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZOMzA6MWRCVjBMOlFXNHRRWmpRR0xvendJZVJUNUliMWI4YkhvVSJ9 2017-06-01 23:38:49.600605+00 -y094t1jbv59xrxfczsvga85awa6ubxvm MmMzMTRlM2M4OWE3ODc3ZWFiNGUwNzc5MDQ3MDFhYTczMGI4OGY4Yjp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZPSDA6MWRpaVNrOm5YTmU5ZVNtcXowdU5uWTViaEFzdW9PQVdDTSIsIl9hdXRoX3VzZXJfaGFzaCI6IjBjZGYxNDBkN2Q1NDRhMGUyMWMwM2EyMTdjMDJlNGQyMjFhZjhiYTUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJtZXp6YW5pbmUuY29yZS5hdXRoX2JhY2tlbmRzLk1lenphbmluZUJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiNCJ9 2017-09-01 14:43:23.173974+00 -diphhiv8ucfe8it42h9hobejjw96ejc5 NzEwY2NkZGY3MWJjOWQ1MzFmYjcxY2M0NmUzNTZiNGIyNTQ3ZGEzMDp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZNVEI5OjFkbnFsdTo0bFRzQUxPTnh1TnM2czJzWkZ0YWFIZ25VaVUifQ== 2017-09-15 18:34:26.171288+00 -onkyk535a6yrr3bcienbvzhfnjb9mwed YjA1Yjk1MmM1ZDhlNDM5ZTA0MmM4NTE3MmJkNTVlZmI1NjRjNzI2Yjp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZNak45OjFpRjBLcTpfeDlmM3BySS0zeGVXcVQ1VkI4VWVPNFV1TzAiLCJfYXV0aF91c2VyX2hhc2giOiJhNmZiMzdlNWZlYzZmYWRkMDhmMzlmMDQxOGUyY2MwZmMzYzQ3MjBjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoibWV6emFuaW5lLmNvcmUuYXV0aF9iYWNrZW5kcy5NZXp6YW5pbmVCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE2In0= 2019-10-14 18:24:43.005568+00 -ai5pypf6ufbtf1wobzovk50smkh0zt7x YzgxN2U1MTQ3Y2UzZGJiNWUwOGNkOWVhYjQ4YzI3ZGU2MzA1ZTk1Njp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZNelY5OjFpRjBsUjpQQzl1NUo2am1obzQ5WUxMc0RJVFA3YjEwdDQifQ== 2019-10-14 18:51:17.482996+00 -rnct33ybltwnp198u98nduk30s46zh7k Y2IwYjcyMzQ4MmJkMGE5ODM4NTU2OWM5OTFhZjJlNDU1ZGIxNDQ1Mjp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZNemQ5OjFpRk1rSjpsUkRHaHdhUzc2X3RjR2hEX3dySmhjSEpMU2sifQ== 2019-10-15 18:19:35.552835+00 -k8bwx8kmurevqximm9pj97fhxxcor7ew YWNkOWMwY2FlNDhmMjdmN2MwNDJiZmNhNDEwN2EyYzZlNzRlMDdhODp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZOVE45OjFpZjdNZDp5Qy1fQURfWHd3RXQ2ekQzYVZqT2U5ZHM3amcifQ== 2019-12-25 19:09:35.295893+00 -roqyglg95asvcqghfwrzd8zxz36p17kj NTc4ZTU1ZTk5YWZjZDQyM2FiNWQ2YmEyOTJjZTNjOTg0MzU1NTI3Zjp7ImhzX3RyYWNraW5nX2lkIjoiZXlKcFpDSTZOVFo5OjFpZjhVYTpIdkhOWTdvb2h6ZnRvT3hSZERvSWxSNmFndFEifQ== 2019-12-25 20:21:52.612063+00 -bgo29s7ewm37e71l92jxfzyjt5d2do1l .eJxVjl1PwjAYhf9Lr8my2tG33Z0QIGA2DMRovGnete_cKBbdRwgz_ndF8ILb85w853yxqjVdg9bX4c3UjqWMTquP1-lS5sNGp7x_zPdZOnvx2Xar1htvaHycPq0D5Kvn3PvTzLlj96n44mE-Gc93dM9GzGDfVaZvqbkYk9us-F2jcAbvNAwY6kCRPTQU_VWutI2yfzi59m8kFbbV-SzpWMSO7B3wWEqrEgFCywRBSRkLUSQKXKEVWQ26FGBLtIDIeamhFArZ9w9mpFT6:1uPNlM:xbymBQSfeTPGXFNX8oNY5cEq6ViVm6MUyX3O8ZYwRnw 2025-06-25 15:53:16.2599+00 -a2srf4wpsil4htmjvpu2zgj134uqhps2 .eJxVjblywjAURf9FdeLRs542l1BhlpClgUYjJBl5AMFYdhFn8u8hgRS095w594vEbPrOukOb9qb1pCLhs75spzOxGr2uYFivLuuqfxPSTD5Sejmc8vtxultI1tXJL45nuq9nz8vNPEb2KvLWkSdi7NBHM-TQ3YqgHsfd9S6kX3IK42hTm0Lhzl0o_pQ7zcXyH07u_kMk2hyvBYqUAgOJHNFzz6UopWuYU6qxjArmSkF1ybFRSAGCVgAcpYYSQQuUknz_AK0PUxs:1uPNpU:CBXcAlDguVASJYpAX3vpEqgg3Dksli_jP2TAVmKa9vE 2025-06-25 15:57:32.773989+00 -\. - - --- --- Data for Name: django_site; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.django_site (id, domain, name) FROM stdin; -1 localhost:8000 Default -\. - - --- --- Data for Name: djcelery_crontabschedule; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.djcelery_crontabschedule (id, minute, hour, day_of_week, day_of_month, month_of_year) FROM stdin; -\. - - --- --- Data for Name: djcelery_intervalschedule; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.djcelery_intervalschedule (id, every, period) FROM stdin; -\. - - --- --- Data for Name: djcelery_periodictask; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.djcelery_periodictask (id, name, task, interval_id, crontab_id, args, kwargs, queue, exchange, routing_key, expires, enabled, last_run_at, total_run_count, date_changed, description) FROM stdin; -\. - - --- --- Data for Name: djcelery_periodictasks; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.djcelery_periodictasks (ident, last_update) FROM stdin; -\. - - --- --- Data for Name: djcelery_taskstate; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.djcelery_taskstate (id, state, task_id, name, tstamp, args, kwargs, eta, expires, result, traceback, runtime, retries, worker_id, hidden) FROM stdin; -\. - - --- --- Data for Name: djcelery_workerstate; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.djcelery_workerstate (id, hostname, last_heartbeat) FROM stdin; -\. - - --- --- Data for Name: forms_field; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.forms_field (id, _order, form_id, label, field_type, required, visible, choices, "default", placeholder_text, help_text) FROM stdin; -\. - - --- --- Data for Name: forms_fieldentry; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.forms_fieldentry (id, entry_id, field_id, value) FROM stdin; -\. - - --- --- Data for Name: forms_form; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.forms_form (page_ptr_id, content, button_text, response, send_email, email_from, email_copies, email_subject, email_message) FROM stdin; -8

Please give us your email address and we will resend the confirmation

Resend Verification

Verification email sent!

f -\. - - --- --- Data for Name: forms_formentry; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.forms_formentry (id, form_id, entry_time) FROM stdin; -\. - - --- --- Data for Name: ga_ows_ogrdataset; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_ows_ogrdataset (id, location, checksum, name, human_name, extent, collection_id) FROM stdin; -\. - - --- --- Data for Name: ga_ows_ogrdatasetcollection; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_ows_ogrdatasetcollection (id, name) FROM stdin; -\. - - --- --- Data for Name: ga_ows_ogrlayer; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_ows_ogrlayer (id, name, human_name, extent, dataset_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_catalogpage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_catalogpage (page_ptr_id, public, owner_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_dataresource; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_dataresource (page_ptr_id, content, resource_file, resource_url, resource_config, last_change, last_refresh, next_refresh, refresh_every, md5sum, metadata_url, metadata_xml, native_bounding_box, bounding_box, three_d, native_srs, public, driver, big, owner_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_orderedresource; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_orderedresource (id, ordering, data_resource_id, resource_group_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_relatedresource; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_relatedresource (page_ptr_id, content, resource_file, foreign_key, local_key, left_index, right_index, how, driver, key_transform, foreign_resource_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_renderedlayer; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_renderedlayer (page_ptr_id, content, default_class, public, data_resource_id, default_style_id, owner_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_renderedlayer_styles; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_renderedlayer_styles (id, renderedlayer_id, style_id) FROM stdin; -\. - - --- --- Data for Name: ga_resources_resourcegroup; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_resourcegroup (page_ptr_id, is_timeseries, min_time, max_time) FROM stdin; -\. - - --- --- Data for Name: ga_resources_style; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ga_resources_style (page_ptr_id, legend, legend_width, legend_height, stylesheet, public, owner_id) FROM stdin; -\. - - --- --- Data for Name: galleries_gallery; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.galleries_gallery (page_ptr_id, content, zip_import) FROM stdin; -\. - - --- --- Data for Name: galleries_galleryimage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.galleries_galleryimage (id, _order, gallery_id, file, description) FROM stdin; -\. - - --- --- Data for Name: generic_assignedkeyword; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.generic_assignedkeyword (id, _order, keyword_id, content_type_id, object_pk) FROM stdin; -\. - - --- --- Data for Name: generic_keyword; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.generic_keyword (id, site_id, title, slug) FROM stdin; -\. - - --- --- Data for Name: generic_rating; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.generic_rating (id, value, rating_date, content_type_id, object_pk, user_id) FROM stdin; -\. - - --- --- Data for Name: generic_threadedcomment; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.generic_threadedcomment (comment_ptr_id, rating_count, rating_sum, rating_average, by_author, replied_to_id) FROM stdin; -\. - - --- --- Data for Name: health_check_db_testmodel; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.health_check_db_testmodel (id, title) FROM stdin; -\. - - --- --- Data for Name: hs_access_control_community; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_community (id, name, description, purpose, auto_approve_group, date_created, picture, closed, email, url, active, auto_approve_resource, banner) FROM stdin; -1 CZO National Community No description \N f 2019-09-30 18:58:41.754407+00 t \N \N t f \N -\. - - --- --- Data for Name: hs_access_control_communityresourceprivilege; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_communityresourceprivilege (id, privilege, start, community_id, grantor_id, resource_id, exhibit) FROM stdin; -\. - - --- --- Data for Name: hs_access_control_communityresourceprovenance; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_communityresourceprovenance (id, privilege, start, undone, community_id, grantor_id, resource_id, exhibit) FROM stdin; -\. - - --- --- Data for Name: hs_access_control_feature; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_feature (id, feature, enabled, user_id) FROM stdin; -\. - - --- --- Data for Name: hs_access_control_groupaccess; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupaccess (id, active, discoverable, public, shareable, group_id, date_created, description, picture, purpose, auto_approve, requires_explanation, email, url) FROM stdin; -1 f t t t 2 2019-09-30 17:58:37.339406+00 test f f \N \N -12 t t t t 13 2019-12-11 18:21:22.541752+00 CZO f f \N \N -2 t t t t 3 2019-09-30 18:40:46.766027+00 CZO f f \N \N -3 t t t t 4 2019-09-30 18:41:24.748712+00 CZO f f \N \N -4 t t t t 5 2019-09-30 18:42:01.579278+00 CZO f f \N \N -5 t t t t 6 2019-09-30 18:42:35.504115+00 CZO f f \N \N -6 t t t t 7 2019-09-30 18:43:16.453598+00 CZO f f \N \N -7 t t t t 8 2019-09-30 18:44:19.811601+00 CZO f f \N \N -8 t t t t 9 2019-09-30 18:45:36.392849+00 CZO f f \N \N -9 t t t t 10 2019-09-30 18:50:37.898332+00 CZO f f \N \N -10 t t t t 11 2019-09-30 18:51:05.912584+00 CZO f f \N \N -11 t t t t 12 2019-10-01 18:19:20.888702+00 CZO f f \N \N -14 t t t t 15 2025-06-11 15:54:48.028467+00 testing edit sharing with group users f f -13 t t t t 14 2025-06-11 15:51:32.242069+00 test group for minio resource authorization f f user1@mail.com -\. - - --- --- Data for Name: hs_access_control_groupcommunityprivilege; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupcommunityprivilege (id, privilege, start, community_id, grantor_id, group_id, exhibit) FROM stdin; -1 3 2019-09-30 19:12:45.26565+00 1 4 3 f -2 3 2019-09-30 19:13:01.194705+00 1 4 4 f -3 3 2019-09-30 19:13:10.139482+00 1 4 5 f -4 3 2019-09-30 19:13:18.322848+00 1 4 6 f -5 3 2019-09-30 19:13:26.612387+00 1 4 7 f -6 3 2019-09-30 19:13:35.648032+00 1 4 8 f -7 3 2019-09-30 19:13:49.469898+00 1 4 9 f -8 3 2019-09-30 19:13:58.116409+00 1 4 10 f -9 3 2019-09-30 19:14:06.217639+00 1 4 11 f -10 3 2019-10-01 18:20:00.942039+00 1 4 12 f -11 3 2019-12-11 20:09:00.701724+00 1 4 13 f -\. - - --- --- Data for Name: hs_access_control_groupcommunityprovenance; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupcommunityprovenance (id, privilege, start, undone, community_id, grantor_id, group_id, exhibit) FROM stdin; -1 3 2019-09-30 19:12:45.27461+00 f 1 4 3 f -2 3 2019-09-30 19:13:01.203156+00 f 1 4 4 f -3 3 2019-09-30 19:13:10.146263+00 f 1 4 5 f -4 3 2019-09-30 19:13:18.330555+00 f 1 4 6 f -5 3 2019-09-30 19:13:26.619285+00 f 1 4 7 f -6 3 2019-09-30 19:13:35.656081+00 f 1 4 8 f -7 3 2019-09-30 19:13:49.480141+00 f 1 4 9 f -8 3 2019-09-30 19:13:58.123568+00 f 1 4 10 f -9 3 2019-09-30 19:14:06.224192+00 f 1 4 11 f -10 3 2019-10-01 18:20:00.959632+00 f 1 4 12 f -11 3 2019-12-11 20:09:00.710226+00 f 1 4 13 f -\. - - --- --- Data for Name: hs_access_control_groupcommunityrequest; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupcommunityrequest (id, privilege, redeemed, approved, community_id, community_owner_id, group_id, group_owner_id, when_community, when_group) FROM stdin; -\. - - --- --- Data for Name: hs_access_control_groupmembershiprequest; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupmembershiprequest (id, date_requested, group_to_join_id, invitation_to_id, request_from_id, redeemed, explanation) FROM stdin; -1 2025-06-11 15:57:03.686588+00 14 \N 24 t \N -2 2025-06-11 15:57:25.113819+00 15 \N 25 t \N -\. - - --- --- Data for Name: hs_access_control_groupresourceprivilege; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupresourceprivilege (id, privilege, start, grantor_id, group_id, resource_id, exhibit) FROM stdin; -1 3 2025-06-11 15:54:17.468587+00 18 14 17 f -2 2 2025-06-11 15:55:35.327607+00 18 15 17 f -3 3 2025-06-11 16:01:30.785822+00 18 14 20 f -4 2 2025-06-11 16:01:38.419865+00 18 15 20 f -5 3 2025-06-11 16:01:52.127605+00 18 14 19 f -6 2 2025-06-11 16:01:57.809377+00 18 15 19 f -7 3 2025-06-11 16:02:11.939683+00 18 14 18 f -8 2 2025-06-11 16:02:17.494974+00 18 15 18 f -\. - - --- --- Data for Name: hs_access_control_groupresourceprovenance; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_groupresourceprovenance (id, privilege, start, grantor_id, group_id, resource_id, undone, exhibit) FROM stdin; -1 3 2025-06-11 15:54:17.492901+00 18 14 17 f f -2 2 2025-06-11 15:55:35.341345+00 18 15 17 f f -3 3 2025-06-11 16:01:30.801816+00 18 14 20 f f -4 2 2025-06-11 16:01:38.431699+00 18 15 20 f f -5 3 2025-06-11 16:01:52.143472+00 18 14 19 f f -6 2 2025-06-11 16:01:57.82116+00 18 15 19 f f -7 3 2025-06-11 16:02:11.956342+00 18 14 18 f f -8 2 2025-06-11 16:02:17.508731+00 18 15 18 f f -\. - - --- --- Data for Name: hs_access_control_requestcommunity; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_requestcommunity (id, date_requested, date_processed, pending_approval, declined, decline_reason, community_to_approve_id, requested_by_id, cancelled) FROM stdin; -\. - - --- --- Data for Name: hs_access_control_resourceaccess; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_resourceaccess (id, active, discoverable, public, shareable, published, immutable, resource_id, require_download_agreement, allow_private_sharing, review_pending) FROM stdin; -1 t f f t f f 16 f f f -2 t f f t f f 17 f f f -3 t f f t f f 18 f t f -4 t t t t f f 19 f f f -5 t t f t f f 20 f f f -\. - - --- --- Data for Name: hs_access_control_useraccess; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_useraccess (id, user_id) FROM stdin; -1 4 -2 5 -3 6 -4 7 -5 8 -6 9 -7 10 -8 11 -9 12 -10 13 -11 14 -12 15 -13 16 -14 17 -15 18 -16 19 -17 20 -18 21 -19 22 -20 23 -21 24 -22 25 -\. - - --- --- Data for Name: hs_access_control_usercommunityprivilege; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_usercommunityprivilege (id, privilege, start, community_id, grantor_id, user_id) FROM stdin; -1 1 2019-09-30 18:58:41.778812+00 1 4 4 -2 1 2019-12-11 19:11:08.748519+00 1 6 6 -\. - - --- --- Data for Name: hs_access_control_usercommunityprovenance; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_usercommunityprovenance (id, privilege, start, undone, community_id, grantor_id, user_id, exhibit) FROM stdin; -1 1 2019-09-30 18:58:41.783727+00 f 1 4 4 f -2 1 2019-12-11 19:11:08.764307+00 f 1 6 6 f -\. - - --- --- Data for Name: hs_access_control_usergroupprivilege; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_usergroupprivilege (id, privilege, start, grantor_id, group_id, user_id) FROM stdin; -1 1 2019-09-30 17:58:37.346233+00 5 2 5 -2 1 2019-09-30 18:40:46.776984+00 7 3 7 -3 1 2019-09-30 18:41:24.756984+00 8 4 8 -4 1 2019-09-30 18:42:01.586069+00 9 5 9 -5 1 2019-09-30 18:42:35.512481+00 10 6 10 -6 1 2019-09-30 18:43:16.45805+00 11 7 11 -7 1 2019-09-30 18:44:19.817797+00 12 8 12 -8 1 2019-09-30 18:45:36.398136+00 13 9 13 -9 1 2019-09-30 18:50:37.906934+00 14 10 14 -10 1 2019-09-30 18:51:05.922582+00 15 11 15 -11 1 2019-10-01 18:19:20.897835+00 6 12 6 -12 1 2019-12-11 18:21:22.546841+00 17 13 17 -13 1 2025-06-11 15:51:32.249667+00 18 14 18 -14 1 2025-06-11 15:54:48.033106+00 18 15 18 -15 3 2025-06-11 15:57:45.002632+00 18 14 24 -16 3 2025-06-11 15:57:53.988731+00 18 15 25 -\. - - --- --- Data for Name: hs_access_control_usergroupprovenance; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_usergroupprovenance (id, privilege, start, grantor_id, group_id, user_id, undone, exhibit) FROM stdin; -1 1 2019-09-30 17:58:37.349239+00 5 2 5 f f -2 1 2019-09-30 18:40:46.784224+00 7 3 7 f f -3 1 2019-09-30 18:41:24.761228+00 8 4 8 f f -4 1 2019-09-30 18:42:01.591317+00 9 5 9 f f -5 1 2019-09-30 18:42:35.51756+00 10 6 10 f f -6 1 2019-09-30 18:43:16.461094+00 11 7 11 f f -7 1 2019-09-30 18:44:19.822052+00 12 8 12 f f -8 1 2019-09-30 18:45:36.400902+00 13 9 13 f f -9 1 2019-09-30 18:50:37.912029+00 14 10 14 f f -10 1 2019-09-30 18:51:05.927648+00 15 11 15 f f -11 1 2019-10-01 18:19:20.904821+00 6 12 6 f f -12 1 2019-12-11 18:21:22.550158+00 17 13 17 f f -13 1 2025-06-11 15:51:32.256589+00 18 14 18 f f -14 1 2025-06-11 15:54:48.03739+00 18 15 18 f f -15 3 2025-06-11 15:57:45.013034+00 18 14 24 f f -16 3 2025-06-11 15:57:54.003183+00 18 15 25 f f -\. - - --- --- Data for Name: hs_access_control_userresourceprivilege; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_userresourceprivilege (id, privilege, start, grantor_id, resource_id, user_id, exhibit) FROM stdin; -1 1 2025-06-10 23:08:28.251797+00 4 16 4 f -2 1 2025-06-10 23:15:48.086482+00 18 17 18 f -3 3 2025-06-11 02:48:26.912873+00 18 17 20 f -4 2 2025-06-11 02:54:11.168269+00 18 17 22 f -5 1 2025-06-11 03:01:03.56259+00 18 17 23 f -6 1 2025-06-11 03:03:56.920213+00 18 18 18 f -7 3 2025-06-11 15:17:53.815901+00 18 18 20 f -8 2 2025-06-11 15:17:59.467573+00 18 18 22 f -9 1 2025-06-11 15:18:16.800842+00 18 18 23 f -10 1 2025-06-11 15:39:26.347553+00 18 19 18 f -11 3 2025-06-11 15:39:52.623953+00 18 19 20 f -12 2 2025-06-11 15:39:58.686769+00 18 19 22 f -13 1 2025-06-11 15:40:04.56509+00 18 19 23 f -14 1 2025-06-11 15:43:57.70789+00 18 20 18 f -15 3 2025-06-11 15:44:08.97516+00 18 20 20 f -16 2 2025-06-11 15:44:14.661473+00 18 20 22 f -17 1 2025-06-11 15:44:19.820696+00 18 20 23 f -\. - - --- --- Data for Name: hs_access_control_userresourceprovenance; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_access_control_userresourceprovenance (id, privilege, start, grantor_id, resource_id, user_id, undone, exhibit) FROM stdin; -1 1 2025-06-10 23:08:28.262339+00 4 16 4 f f -2 1 2025-06-10 23:15:48.095029+00 18 17 18 f f -3 3 2025-06-11 02:48:26.927073+00 18 17 20 f f -4 2 2025-06-11 02:54:11.203344+00 18 17 22 f f -5 1 2025-06-11 03:01:03.575957+00 18 17 23 f f -6 1 2025-06-11 03:03:56.927933+00 18 18 18 f f -7 3 2025-06-11 15:17:53.828616+00 18 18 20 f f -8 2 2025-06-11 15:17:59.480912+00 18 18 22 f f -9 1 2025-06-11 15:18:16.813333+00 18 18 23 f f -10 1 2025-06-11 15:39:26.357287+00 18 19 18 f f -11 3 2025-06-11 15:39:52.636731+00 18 19 20 f f -12 2 2025-06-11 15:39:58.698648+00 18 19 22 f f -13 1 2025-06-11 15:40:04.577427+00 18 19 23 f f -14 1 2025-06-11 15:43:57.713319+00 18 20 18 f f -15 3 2025-06-11 15:44:08.985664+00 18 20 20 f f -16 2 2025-06-11 15:44:14.673831+00 18 20 22 f f -17 1 2025-06-11 15:44:19.832349+00 18 20 23 f f -\. - - --- --- Data for Name: hs_collection_resource_collectiondeletedresource; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_collection_resource_collectiondeletedresource (id, resource_title, date_deleted, resource_id, resource_type, collection_id, deleted_by_id) FROM stdin; -\. - - --- --- Data for Name: hs_collection_resource_collectiondeletedresource_resource_od9f5; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_collection_resource_collectiondeletedresource_resource_od9f5 (id, collectiondeletedresource_id, user_id) FROM stdin; -\. - - --- --- Data for Name: hs_communities_topic; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_communities_topic (id, name) FROM stdin; -1 Air Temperature -2 Barometric Pressure -3 Chlorophyll -4 Climate -5 Diatoms -6 Digital Elevation Model (DEM) -7 Dissolved Organic Matter (DOM) -8 Ecosystem model -9 Electrical Conductivity -10 Flux Tower -11 Geology -12 Geomorphology -13 Geophysics -14 GIS / Map Data -15 Ground Penetrating Radar (GPR) -16 Groundwater Chemistry -17 Groundwater Depth -18 Groundwater Temperatures -19 Hydropedologic Properties -20 Land Cover -21 Land Use History -22 LiDAR -23 Lysimeter Water Samples Chemistry -24 Matric Potential -25 Meteorology -26 Nutrient Fluxes -27 Overland Water Chemistry -28 Ozone -29 Photographic Imagery -30 Piezometer -31 Precipitation -32 Precipitation Chemistry -33 Rainfall Chemistry -34 Regolith Survey -35 Reservoir Height -36 Rock Moisture -37 Sap Flow -38 Sediment Transport -39 Seismic Refraction -40 Snow Depth -41 Snow Pits -42 Snow Survey -43 Soil Biogeochemistry -44 Soil Electrical Resistivity -45 Soil Evapotranspiration -46 Soil Gas -47 Soil Geochemistry -48 Soil Invertebrates -49 Soil Microbes -50 Soil Mineralogy -51 Soil Moisture -52 Soil Porewater Chemistry -53 Soil Porosity -54 Soil Redox Potential -55 Soil Respiration -56 Soil Survey -57 Soil Temperature -58 Soil Texture -59 Soil Water -60 Soil Water Chemistry -61 Solar Radiation -62 Stable Isotopes -63 Stage -64 Stream Ecology -65 Stream Suspended Sediment -66 Stream Water Chemistry -67 Stream Water Temperatures -68 Streamflow / Discharge -69 Surface Water Chemistry -70 Throughfall Chemistry -71 Topographic Carbon Storage -72 Tree Growth & Physiology -73 Vegetation -74 Water Potential -75 Well Water Levels -\. - - --- --- Data for Name: hs_core_citation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_citation (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_contributor; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_contributor (id, object_id, name, organization, email, address, phone, homepage, content_type_id, identifiers, hydroshare_user_id, is_active_user) FROM stdin; -\. - - --- --- Data for Name: hs_core_coremetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_coremetadata (id) FROM stdin; -1 -2 -3 -4 -5 -\. - - --- --- Data for Name: hs_core_coverage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_coverage (id, object_id, type, _value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_creator; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_creator (id, object_id, name, organization, email, address, phone, homepage, "order", content_type_id, identifiers, hydroshare_user_id, is_active_user) FROM stdin; -1 1 Administrator, HydroShare RENCI admin@example.com \N \N 1 68 4 t -2 2 last, user1 USU user1@mail.com \N \N \N 1 68 18 t -3 3 last, user1 USU user1@mail.com \N \N \N 1 68 18 t -4 4 last, user1 USU user1@mail.com \N \N \N 1 68 18 t -5 5 last, user1 USU user1@mail.com \N \N \N 1 68 18 t -\. - - --- --- Data for Name: hs_core_date; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_date (id, object_id, type, start_date, end_date, content_type_id) FROM stdin; -1 1 created 2025-06-10 23:08:22.518892+00 \N 68 -2 1 modified 2025-06-10 23:08:28.376035+00 \N 68 -3 2 created 2025-06-10 23:15:47.717692+00 \N 68 -4 2 modified 2025-06-11 03:02:45.545997+00 \N 68 -5 3 created 2025-06-11 03:03:56.605768+00 \N 68 -6 3 modified 2025-06-11 03:03:58.024818+00 \N 68 -7 4 created 2025-06-11 15:39:25.83867+00 \N 68 -8 4 modified 2025-06-11 15:39:41.474348+00 \N 68 -9 5 created 2025-06-11 15:43:57.274329+00 \N 68 -10 5 modified 2025-06-11 15:44:37.009957+00 \N 68 -\. - - --- --- Data for Name: hs_core_description; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_description (id, object_id, abstract, content_type_id) FROM stdin; -1 4 asdf 68 -2 5 water 68 -\. - - --- --- Data for Name: hs_core_format; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_format (id, object_id, value, content_type_id) FROM stdin; -1 2 image/png 68 -2 4 image/png 68 -3 5 image/png 68 -4 2 application/pdf 68 -\. - - --- --- Data for Name: hs_core_fundingagency; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_fundingagency (id, object_id, agency_name, award_title, award_number, agency_url, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_genericresource; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_genericresource (page_ptr_id, comments_count, rating_count, rating_sum, rating_average, content, short_id, doi, object_id, content_type_id, creator_id, last_changed_by_id, user_id, resource_type, file_unpack_message, file_unpack_status, locked_time, extra_metadata, extra_data, download_count, view_count, repaired, files_checked, spam_allowlisted, bag_last_downloaded, quota_holder_id) FROM stdin; -16 0 0 0 0 asdf ad0b5df2e8434a5aaad455a322bc1fd5 1 68 4 4 4 CompositeResource \N \N \N 0 0 \N \N f \N 4 -17 0 0 0 0 asdf f211b93642f84c55a0bdd1b12880e32e 2 68 18 18 18 CompositeResource \N \N \N 0 6 \N \N f \N 18 -20 0 0 0 0 discoverable resource 5670903e39d54026a729abd4cc148f99 5 68 18 18 18 CompositeResource \N \N \N 0 2 \N \N f \N 18 -19 0 0 0 0 public resource a2c0df5bf3eb4d8c8a34beaffe169f91 4 68 18 18 18 CompositeResource \N \N \N 0 2 \N \N f \N 18 -18 0 0 0 0 private link sharing resource d5c432ae01eb4f03a73d589e54d341b3 3 68 18 18 18 CompositeResource \N \N \N 0 1 \N \N f \N 18 -\. - - --- --- Data for Name: hs_core_genericresource_collections; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_genericresource_collections (id, from_baseresource_id, to_baseresource_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_geospatialrelation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_geospatialrelation (id, object_id, type, value, text, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_groupownership; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_groupownership (id, group_id, owner_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_identifier; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_identifier (id, object_id, name, url, content_type_id) FROM stdin; -1 1 hydroShareIdentifier http://localhost:8000/resource/ad0b5df2e8434a5aaad455a322bc1fd5 68 -2 2 hydroShareIdentifier http://localhost:8000/resource/f211b93642f84c55a0bdd1b12880e32e 68 -3 3 hydroShareIdentifier http://localhost:8000/resource/d5c432ae01eb4f03a73d589e54d341b3 68 -4 4 hydroShareIdentifier http://localhost:8000/resource/a2c0df5bf3eb4d8c8a34beaffe169f91 68 -5 5 hydroShareIdentifier http://localhost:8000/resource/5670903e39d54026a729abd4cc148f99 68 -\. - - --- --- Data for Name: hs_core_language; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_language (id, object_id, code, content_type_id) FROM stdin; -1 1 eng 68 -2 2 eng 68 -3 3 eng 68 -4 4 eng 68 -5 5 eng 68 -\. - - --- --- Data for Name: hs_core_publisher; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_publisher (id, object_id, name, url, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_relation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_relation (id, object_id, type, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_core_resourcefile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_resourcefile (id, object_id, resource_file, content_type_id, file_folder, logical_file_content_type_id, logical_file_object_id, _size, _checksum, _modified_time, filesize_cache_updated) FROM stdin; -1 17 f211b93642f84c55a0bdd1b12880e32e/data/contents/Screenshot_2025-06-03_at_9.26.17AM.png 66 \N \N 276754 1b199cffa3bfedf037d96a1611471727 2025-06-10 23:15:57+00 2025-06-10 23:15:57.601151+00 -5 19 a2c0df5bf3eb4d8c8a34beaffe169f91/data/contents/Screenshot_2025-06-03_at_9.26.17AM.png 66 \N \N 276754 1b199cffa3bfedf037d96a1611471727 2025-06-11 15:39:41+00 2025-06-11 15:39:41.621755+00 -6 20 5670903e39d54026a729abd4cc148f99/data/contents/Screenshot_2025-06-03_at_9.26.17AM.png 66 \N \N 276754 1b199cffa3bfedf037d96a1611471727 2025-06-11 15:44:36+00 2025-06-11 15:44:37.162796+00 -7 17 f211b93642f84c55a0bdd1b12880e32e/data/contents/nintendo-magazine-holiday2025.pdf 66 \N \N 13470045 \N \N 2025-06-11 15:55:17.68039+00 -\. - - --- --- Data for Name: hs_core_rights; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_rights (id, object_id, statement, url, content_type_id) FROM stdin; -1 1 This resource is shared under the Creative Commons Attribution CC BY. http://creativecommons.org/licenses/by/4.0/ 68 -2 2 This resource is shared under the Creative Commons Attribution CC BY. http://creativecommons.org/licenses/by/4.0/ 68 -3 3 This resource is shared under the Creative Commons Attribution CC BY. http://creativecommons.org/licenses/by/4.0/ 68 -4 4 This resource is shared under the Creative Commons Attribution CC BY. http://creativecommons.org/licenses/by/4.0/ 68 -5 5 This resource is shared under the Creative Commons Attribution CC BY. http://creativecommons.org/licenses/by/4.0/ 68 -\. - - --- --- Data for Name: hs_core_subject; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_subject (id, object_id, value, content_type_id) FROM stdin; -1 4 asdf 68 -2 5 water 68 -\. - - --- --- Data for Name: hs_core_tasknotification; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_tasknotification (id, task_id, name, payload, status, username, created) FROM stdin; -\. - - --- --- Data for Name: hs_core_title; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_title (id, object_id, value, content_type_id) FROM stdin; -1 1 asdf 68 -2 2 private resource 68 -3 3 private link sharing resource 68 -4 4 public resource 68 -5 5 discoverable resource 68 -\. - - --- --- Data for Name: hs_core_type; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_core_type (id, object_id, url, content_type_id) FROM stdin; -1 1 http://localhost:8000/terms/CompositeResource 68 -2 2 http://localhost:8000/terms/CompositeResource 68 -3 3 http://localhost:8000/terms/CompositeResource 68 -4 4 http://localhost:8000/terms/CompositeResource 68 -5 5 http://localhost:8000/terms/CompositeResource 68 -\. - - --- --- Data for Name: hs_dictionary_subjectarea; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_dictionary_subjectarea (id, name) FROM stdin; -1 Aerosol-cloud interaction -2 Aerosol instrumentation development -3 Atmospheric chemistry and aerosols -4 Chemical transport modeling -5 Climate and global change -6 Data assimilation -7 Drought science and applications -8 Frozen solution chemistry -9 Global and regional climate modeling -10 Hurricanes and tropical meteorology -11 Land-atmosphere-ocean interaction -12 Lightning and atmospheric electricity -13 Lightning and detection systems (land- and space-based) -14 Marine atmospheric boundary in climate models -15 North American Monsoon system -16 Numerical weather modeling and ensemble forecasting -17 Precipitation -18 Radiation and remote sensing -19 Role of land and ocean surface processes in seasonal precipitation -20 Urban air quality -21 Weather analysis and predictability of large-scale systems -22 Aqueous geochemistry -23 Biogeochemistry -24 Characterization of contaminated sites -25 Contaminant transport -26 Critical Zone Processes -27 Ecohydrology -28 Ground-water chemistry -29 Hydrochemical modeling -30 Hydrogeochemistry -31 Integrated physical-chemical modeling -32 Isotopic analysis -33 Paleoclimate reconstruction -34 Paleohydrology -35 Soil and groundwater remediation -36 Snow and ice -37 Water quality and quantity -38 Watershed ecohydrology -39 Watershed studies -40 Earth hydrogeologic analogs of Mars and other worlds -41 Exoplanet atmospheres -42 Jovian atmospheric dynamics -43 Large-scale dynamics -44 Mars glacial geomorphology -45 Mars paleohydrology -46 Computational methods -47 Conjunctive use -48 Decision making and uncertainty -49 Extreme value statistics -50 Fractured rock hydrology -51 Geological CO2 storage -52 Geostatistical analysis -53 Ground-water modeling -54 Hydraulics, tracer tomography, and data fusion -55 Hydrobiogeochemistry -56 Hydrogeology -57 Hydrogeophysics -58 Integrated physical-economic modeling -59 Isotopic tracers -60 Mathematical programming and simulation -61 Microbial carbon cycle -62 Multiphase flow and transport in porous media -63 Natural and anthropogenic tracers -64 Network design -65 Numerical modeling -66 Pumping test design and analysis -67 Residence time tracers -68 Scaling of geophysical variables -69 Stochastic subsurface hydrology -70 Subsurface contamination -71 Subsurface flow and transport -72 Unconventional oil/gas production -73 Unsaturated media -74 Vadose zone hydrology -75 Water-rock-microbial reactions -76 Catchment hydrobiogeochemistry -77 Catchment hydrology -78 Cold region hydrology -79 Computational hydraulics -80 Computational river mechanics and sediment transport -81 Evapotranspiration of riparian systems -82 Drought monitoring and prediction -83 Flood forecasting -84 Fluvial geomorphology -85 Hydraulics and river engineering -86 Hydroclimatology -87 Hydrologic extremes -88 Hydrometeorology -89 Mesoscale coupled modeling -90 Mountain hydrology -91 Paleoflood hydrology -92 Parameter estimation -93 Precipitation-runoff modeling -94 Probabilistic precipitation forecasting -95 Remote sensing applications -96 Stochastic surface hydrology -97 Transit time tracers -98 Water quality -99 Climate data record -100 Cold region remote sensing and modeling -101 Coupled modeling -102 Flash flood forecasting -103 Land-atmosphere feedbacks and coupling -104 Mesoscale water, energy, and carbon balances -105 Monsoon predictability -106 Ocean-atmosphere-continent teleconnections -107 Polar region hydrometeorology -108 Predictability of precipitation and convective parameters and indices -109 Remote sensing and in situ snowfall measurement -110 Remote sensing by weather radar -111 Role of ecosystem dynamics -112 Topographic influences -113 Weather and climate extremes -114 Advanced methods for model sensitivity analysis -115 Applications of remotely-sensed data -116 Artificial neural networks -117 Diagnostic analysis of hydrologic models -118 Hazards relationship to climate change -119 Hydrologic impacts of projected climate change -120 Information theory approach to learning -121 International water development -122 Legal and institutional issues -123 Mathematical and goal programming -124 Maximum entropy approach to modeling -125 Merging models with data -126 Model calibration -127 Model structural improvement -128 Parameter and state estimation -129 Risk analysis and uncertainty -130 Stochastic physically-based modeling -131 Stochastic data-based- and hybrid data-physics-based modeling -132 Surface-subsurface water quality modeling -133 Systems approach to hydrologic modeling -134 Transdisciplinary analysis of water issues -135 Water conflict analysis -136 Water resources systems -\. - - --- --- Data for Name: hs_dictionary_uncategorizedterm; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_dictionary_uncategorizedterm (id, name) FROM stdin; -1 asdf -2 asdf -3 CZO -4 CZO -5 CZO -6 CZO -7 CZO -8 CZO -9 CZO -10 CZO -11 CZO -12 CZO -13 CZO -14 CZO -15 CZO -16 CZO -17 CZO -18 CZO -19 CZO -20 CZO -21 CZO -22 CZO -23 CZO -24 CZO -25 CZO -26 CZO -27 USU -28 USU -29 USU -30 USU -31 USU -32 USU -33 USU -34 USU -\. - - --- --- Data for Name: hs_dictionary_university; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_dictionary_university (id, country_code, name, url) FROM stdin; -9364 AD University of Andorra http://www.uda.ad/ -9365 AE Abu Dhabi University http://www.adu.ac.ae/ -9366 AE Ajman University of Science & Technology http://www.ajman.ac.ae/ -9367 AE Alain University of Science and Technology http://www.alainuniversity.ac.ae/ -9368 AE Al Ghurair University http://www.agu.ae/ -9369 AE Alhosn University http://www.alhosnu.ae/ -9370 AE Al Khawarizmi International College http://www.khawarizmi.com/ -9371 AE American College Of Dubai http://www.acd.ac.ae/ -9372 AE American University in Dubai http://www.aud.edu/ -9373 AE American University in the Emirates http://www.aue.ae/ -9374 AE American University of Sharjah http://www.aus.edu/ -9375 AE British University in Dubai http://www.buid.ac.ae/ -9376 AE Dubai Medical College for Girls http://www.dmcg.edu/ -9377 AE Dubai Pharmacy College http://www.dpc.edu/ -9378 AE Etisalat University College http://www.ece.ac.ae/ -9379 AE Gulf Medical University http://www.gmu.ac.ae/ -9380 AE Hamdan Bin Mohammed e-University http://www.hbmeu.ac.ae/ -9381 AE Higher Colleges of Technology http://www.hct.ac.ae/ -9382 AE Ittihad University http://www.ittihad.ac.ae/ -9383 AE Jumeira University http://www.ju.ac.ae/ -9384 AE Khalifa University http://www.kustar.ac.ae/ -9385 AE Khalifa University of Science, Technology and Research http://www.ku.ac.ae/ -9386 AE Masdar University Of Science And Technology http://www.masdar.ac.ae/ -9387 AE New York University, Abu Dhabi http://nyuad.nyu.edu/ -9388 AE Paris-Sorbonne University Abu Dhabi http://www.sorbonne.ae/ -9389 AE Rak Medical & Health Sciences University http://www.rakmhsu.com/ -9390 AE Rochester Institute of Technology, Dubai http://dubai.rit.edu/ -9391 AE Skyline University College, Sharjah http://www.skylineuniversity.com/ -9392 AE Synergy University, Dubai Campus http://www.synergydubai.ae/ -9393 AE The Emirates Academy of Hotel Managment http://www.emiratesacademy.edu/ -9394 AE The Petroleum Institute http://www.pi.ac.ae/ -9395 AE United Arab Emirates University http://www.uaeu.ac.ae/ -9396 AE University Of Dubai http://www.ud.ac.ae/ -9397 AE University of Jazeera http://www.uojazeera.com/ -9398 AE University of Sharjah http://www.sharjah.ac.ae/ -9399 AE University of Wollongong - Dubai Campus http://www.uowdubai.ac.ae/ -9400 AE Zayed University http://www.zu.ac.ae/ -9401 AF Afghan University http://www.afghanuniversity.edu.af/ -9402 AF Al-Birony University http://www.au.edu.af/ -9403 AF American University of Afghanistan http://www.auaf.edu.af/ -9404 AF Aria Institute of Higher Education http://www.aria.edu.af/ -9405 AF Badakhshan University http://www.badakhshan.edu.af/ -9406 AF Baghlan University http://www.baghlan.edu.af/ -9407 AF Bakhtar University http://www.bakhtar.edu.af/ -9408 AF Balkh University http://www.ba.edu.af/ -9409 AF Bamiyan University http://www.bu.edu.af/ -9410 AF Bost University http://www.bost.edu.af/ -9411 AF Dawat University http://www.dawat.edu.af/ -9412 AF Dunya Institute of Higher Education http://www.dunya.edu.af/ -9413 AF Faryab Higher Education Institute http://www.faryab.edu.af/ -9414 AF Ghazni University http://www.gu.edu.af/ -9415 AF Herat University http://www.hu.edu.af/ -9416 AF Ibn Sina University http://www.ibnesina.edu.af/ -9417 AF Jawzjan University http://www.ju.edu.af/ -9418 AF Kaboora Institute of Higher Education http://www.kaboora.edu.af/ -9419 AF Kabul Education University http://www.keu.edu.af/ -9420 AF Kabul Health Sciences Institute http://www.kabuli.edu.af/ -9421 AF Kabul Medical University http://www.kmu.edu.af/ -9422 AF Kabul University http://www.ku.edu.af/ -9423 AF Kandahar University http://www.kan.edu.af/ -9424 AF Kardan University http://www.kardan.edu.af/ -9425 AF Karwan Institute of Higher Education http://www.karwan.edu.af/ -9426 AF Kateb Institute of Higher Education http://www.kateb.edu.af/ -9427 AF Khana-e-Noor Institute of Higher Education http://www.ken.edu.af/ -9428 AF Khurasan University http://www.kumsa.net/ -9429 AF Maryam Institute of Higher Education http://www.maryam.edu.af/ -9430 AF Nangarhar University http://www.nu.edu.af/ -9431 AF National Military Academy of Afghanistan http://www.nmaa.edu.af/ -9432 AF Paktia University http://www.pu.edu.af/ -9433 AF Pamir University http://www.pamir.edu.af/ -9434 AF Parwan University http://www.parwan.edu.af/ -9435 AF Polytechnical University of Kabul http://www.polytechnic-kabul.org/ -9436 AF Rana Institute of Higher Education http://www.rihs.edu.af/ -9437 AF Sadat Institute of Higher Education http://www.sadat.edu.af/ -9438 AF Salam University http://www.salam.edu.af/ -9439 AF Shaikh Zayed University http://www.szu.edu.af/ -9440 AF Taj Institute of Higher Education http://www.taj.edu.af/ -9441 AF Takhar University http://www.tu.edu.af/ -9442 AG American University of Antigua http://www.auamed.org/ -9443 AG University of Health Sciences Antigua http://www.uhsa.ag/ -9444 AL Academy of Arts http://www.akademiaearteve.edu.al/ -9445 AL Academy of Sports and Physical Training http://www.aefs.edu.al/ -9446 AL Agricultural University of Tirane http://www.ubt.edu.al/ -9447 AL American University of Tirana http://www.uat.edu.al/ -9448 AL Beder University http://www.beder.edu.al/ -9449 AL Epoka University http://www.epoka.edu.al/ -9450 AL Polytechnic University of Tirane http://www.upt.al/ -9451 AL University of Elbasan "Aleksander Xhuvani" http://www.uniel.edu.al/ -9452 AL University of Gjirokstra "Eqerem Cabej" http://www.uogj.edu.al/ -9453 AL University of Korca "Fan Noli" http://www.unkorce.edu.al/ -9454 AL University of New York Tirana http://www.unyt.edu.al/ -9455 AL University of Shkodra "Luigj Gurakuqi" http://www.unishk.edu.al/ -9456 AL University of Tirana http://www.unitir.edu.al/ -9457 AL University of Vlora "Ismail Qemali" http://www.univlora.edu.al/ -9458 AL University “Pavaresia” Vlore http://www.unipavaresia.edu.al/ -9459 AM American University of Armenia http://www.aua.am/ -9460 AM Armenian State Agrarian University http://www.asau.am/ -9461 AM Armenian State University of Economics http://www.asue.am/ -9462 AM Eurasia International University http://www.eiu.am/ -9463 AM European Regional Educational Academy of Armenia http://www.eriicta.am/ -9464 AM French University in Armenia (UFAR) http://www.ufar.am/ -9465 AM Mehrabyan Medical Institute and Medical College http://www.armmed.am/ -9466 AM Russian-Armenian (Slavonic) State University http://www.rau.am/ -9467 AM State Engineering University of Armenia http://www.seua.am/ -9468 AM Yerevan Haibusak University http://www.haybusak.org/ -9469 AM Yerevan State Medical University http://www.ysmu.am/ -9470 AM Yerevan State University http://www.ysu.am/ -9471 AN American University of the Caribbean, Sint Maarten http://www.aucmed.edu/ -9472 AN International University School of Medicine (IUSOM) http://www.internationaluniversity-schoolofmedicine.org/ -9473 AN St.James's School of Medicine, Bonaire http://www.sjsm.org/ -9474 AN University of Sint Eustatius School of Medicine http://www.eustatiusmed.edu/ -9475 AN University of the Netherlands Antilles, Curacao http://www.una.an/ -9476 AO Universidade Católica de Angola http://www.ucan.edu/ -9477 AO Universidade Gregorio Semedo http://www.ugs.ed.ao/ -9478 AO Universidade Independente de Angola http://www.unia.ao/ -9479 AO Universidade Lusíada de Angola http://www.ulangola.net/ -9480 AO Universidade Metodista de Angola http://www.uma.co.ao/ -9481 AO Universidade Metropolitana de Angola http://www.unimetroangola.com/ -9482 AO Universidade Tecnica de Angola http://www.utanga.co.ao/ -9483 AO Univesidade Agostinho Neto http://www.uan.ao/ -9484 AR Instituto de Enseñanza Superior del Ejército http://www.iese.edu.ar/ -9485 AR Instituto Nacional de Educación Física "General Manuel Belgrano" http://www.unlu.edu.ar/Belgrano.htm -9486 AR Instituto Tecnológico de Buenos Aires http://www.itba.edu.ar/ -9487 AR Instituto Universitario Aeronáutico http://www.iua.edu.ar/ -9488 AR Instituto Universitario CEMA http://www.cema.edu.ar/ -9489 AR Instituto Universitario de Ciencias de la Salud Fundación H.A. Barceló http://www.barcelo.edu.ar/ -9490 AR Instituto Universitario de Estudios Navales y Marítimos http://www.inun.edu.ar/ -9491 AR Instituto Universitario de la Policia Federal http://www.universidad-policial.edu.ar/ -9492 AR Instituto Universitario Nacional del Arte http://www.iuna.edu.ar/ -9493 AR Universidad Abierta Interamericana http://www.vaneduc.edu.ar/uai/ -9494 AR Universidad Adventista del Plata http://www.uapar.edu/ -9495 AR Universidad Argentina de la Empresa http://www.uade.edu.ar/ -9496 AR Universidad Argentina "John F. Kennedy" http://www.kennedy.edu.ar/ -9497 AR Universidad Atlantida Argentina http://www.atlantida.edu.ar/ -9498 AR Universidad Austral Buenos Aires http://www.austral.edu.ar/ -9499 AR Universidad Autónoma de Entre Ríos http://www.uader.edu.ar/ -9500 AR Universidad Blas Pascal http://www.ubp.edu.ar/ -9501 AR Universidad CAECE, Buenos Aires http://www.caece.edu.ar/ -9502 AR Universidad Católica Argentina Santa Maria de los Buenos Aires http://www.uca.edu.ar/ -9503 AR Universidad Católica de Córdoba http://www.uccor.edu.ar/ -9504 AR Universidad Católica de Cuyo http://www.uccuyo.edu.ar/ -9505 AR Universidad Católica de La Plata http://www.ucalp.edu.ar/ -9506 AR Universidad Católica de Salta http://www.ucasal.edu.ar/ -9507 AR Universidad Católica de Santa Fé http://www.ucsf.edu.ar/ -9508 AR Universidad Católica de Santiago del Estero http://www.ucse.edu.ar/ -9509 AR Universidad Champagnat http://www.uch.edu.ar/ -9510 AR Universidad de Belgrano http://www.ub.edu.ar/ -9511 AR Universidad de Bologna - Representación en Buenos Aires http://www.unibo.edu.ar/ -9512 AR Universidad de Buenos Aires http://www.uba.ar/ -9513 AR Universidad de Ciencias Empresariales y Sociales http://www.uces.edu.ar/ -9514 AR Universidad de Concepción del Uruguay http://www.ucu.edu.ar/ -9515 AR Universidad de Congreso http://www.ucongres.edu.ar/ -9516 AR Universidad de Flores - Buenos Aires http://www.uflo.edu.ar/ -9517 AR Universidad del Aconcagua http://www.uda.edu.ar/ -9518 AR Universidad de la Cuenca del Plata http://www.ucp.edu.ar/ -9519 AR Universidad de la Fraternidad de Agrupaciones Santo Tomas de Aquino (FASTA) http://www.ufasta.edu.ar/ -9520 AR Universidad de la Marina Mercante http://www.udemm.edu.ar/ -9521 AR Universidad del Centro Educativo Latinoamericano Rosario http://www.ucel.edu.ar/ -9522 AR Universidad del Cine - Buenos Aires http://www.ucine.edu.ar/ -9523 AR Universidad del Museo Social Argentino http://www.umsa.edu.ar/ -9524 AR Universidad del Norte "Santo Tomás de Aquino" http://www.unsta.edu.ar/ -9525 AR Universidad del Salvador http://www.salvador.edu.ar/ -9526 AR Universidad de Mendoza http://www.um.edu.ar/ -9527 AR Universidad de Morón http://www.unimoron.edu.ar/ -9528 AR Universidad de Palermo http://www.palermo.edu.ar/ -9529 AR Universidad de San Andres http://www.udesa.edu.ar/ -9530 AR Universidad Empresarial Siglio 21 http://www.uesiglo21.edu.ar/ -9531 AR Universidad ISALUD http://www.isalud.edu.ar/ -9532 AR Universidad "Juan Agustín Maza" http://www.umaza.edu.ar/ -9533 AR Universidad Maimónides http://www.maimonides.edu.ar/ -9534 AR Universidad Nacional de Catamarca http://www.unca.edu.ar/ -9535 AR Universidad Nacional de Córdoba http://www.unc.edu.ar/ -9536 AR Universidad Nacional de Cuyo http://www.uncu.edu.ar/ -9537 AR Universidad Nacional de Entre Ríos http://www.uner.edu.ar/ -9538 AR Universidad Nacional de Formosa http://www.unf.edu.ar/ -9539 AR Universidad Nacional de General San Martín http://www.unsam.edu.ar/ -9540 AR Universidad Nacional de General Sarmiento http://www.ungs.edu.ar/ -9541 AR Universidad Nacional de Jujuy http://www.unju.edu.ar/ -9542 AR Universidad Nacional de La Matanza http://www.unlam.edu.ar/ -9543 AR Universidad Nacional de Lanus http://www.unla.edu.ar/ -9544 AR Universidad Nacional de La Pampa http://www.unlpam.edu.ar/ -9545 AR Universidad Nacional de la Patagonia Austral http://www.unpa.edu.ar/ -9546 AR Universidad Nacional de la Patagonia "San Juan Bosco" http://www.unp.edu.ar/ -9547 AR Universidad Nacional de La Plata http://www.unlp.edu.ar/ -9548 AR Universidad Nacional de La Rioja http://www.unlar.edu.ar/ -9549 AR Universidad Nacional del Centro de la Provincia de Buenos Aires http://www.unicen.edu.ar/ -9550 AR Universidad Nacional del Comahue http://www.uncoma.edu.ar/ -9551 AR Universidad Nacional del Littoral http://www.unl.edu.ar/ -9552 AR Universidad Nacional del Nordeste http://www.unne.edu.ar/ -9553 AR Universidad Nacional del Noroeste de la Provincia de Buenos Aires http://www.unnoba.edu.ar/ -9554 AR Universidad Nacional de Lomas de Zamora http://www.unlz.edu.ar/ -9555 AR Universidad Nacional del Sur http://www.uns.edu.ar/ -9556 AR Universidad Nacional de Luján http://www.unlu.edu.ar/ -9557 AR Universidad Nacional de Mar del Plata http://www.mdp.edu.ar/ -9558 AR Universidad Nacional de Misiones http://www.unam.edu.ar/ -9559 AR Universidad Nacional de Quilmes http://www.unq.edu.ar/ -9560 AR Universidad Nacional de Río Cuarto http://www.unrc.edu.ar/ -9561 AR Universidad Nacional de Rosario http://www.unr.edu.ar/ -9562 AR Universidad Nacional de Salta http://www.unsa.edu.ar/ -9563 AR Universidad Nacional de San Juan http://www.unsj.edu.ar/ -9564 AR Universidad Nacional de San Luis http://www.unsl.edu.ar/ -9565 AR Universidad Nacional de Santiago del Estero http://www.unse.edu.ar/ -9566 AR Universidad Nacional de Tres de Febrero http://www.untref.edu.ar/ -9567 AR Universidad Nacional de Tucumán http://www.unt.edu.ar/ -9568 AR Universidad Nacional de Villa María http://www.unvm.edu.ar/ -9569 AR Universidad Notarial Argentina http://www.universidadnotarial.edu.ar/ -9570 AR Universidad Tecnológica Nacional http://www.utn.edu.ar/ -9571 AR Universidad Torcuato di Tella http://www.utdt.edu/ -9572 AT Akademie der bildenden Künste Wien http://www.akbild.ac.at/ -9573 AT Donau-Universität Krems http://www.donau-uni.ac.at/ -9574 AT Fachhochschule Burgenland http://www.fh-burgenland.at/ -9575 AT Fachhochschule für Bank- und Finanzwirtschaft http://www.fh-vie.ac.at/ -9576 AT Fachhochschule JOANNEUM http://www.fh-joanneum.at/ -9577 AT Fachhochschule Kärnten http://www.fh-kaernten.ac.at/ -9578 AT Fachhochschule Krems http://www.fh-krems.ac.at/ -9579 AT Fachhochschule Kufstein (Tirol) http://www.fh-kufstein.ac.at/ -9580 AT Fachhochschule Salzburg http://www.fh-sbg.ac.at/ -9581 AT Fachhochschule St. Pölten http://www.fh-stpoelten.ac.at/ -9582 AT Fachhochschule Vorarlberg http://www.fhv.at/ -9583 AT Fachhochschule Wiener Neustadt http://www.fhwn.ac.at/ -9584 AT Fachhochschulstudiengänge der Wiener Wirtschaft http://www.fhw.at/ -9585 AT Fachhochschulstudiengänge Hagenberg http://www.fh-hagenberg.at/ -9586 AT Fachhochschulstudiengänge Krems IMC http://www.imc-krems.ac.at/ -9587 AT Fachhochschulstudiengänge Steyr http://www.fh-steyr.at/ -9588 AT Fachhochschulstudiengänge Wels http://www.fh-wels.at/ -9589 AT Institute of Science and Technology http://www.ist.ac.at/ -9590 AT Katholisch-Theologische Privatuniversität Linz http://www.kth-linz.ac.at/ -9591 AT MCI-Management Center Innsbruck http://www.mci.edu/ -9592 AT Medizinische Universität Graz http://www.meduni-graz.at/ -9593 AT Medizinische Universität Innsbruck http://www.i-med.ac.at/ -9594 AT Medizinische Universität Wien http://www.meduniwien.at/ -9595 AT Montanuniversität Leoben http://www.unileoben.ac.at/ -9596 AT Private Universität für Medizinische Informatik und Technik Tirol http://www.umit.at/ -9597 AT Technikum Wien http://www.technikum-wien.at/ -9598 AT Technische Universität Graz http://www.tugraz.at/ -9599 AT Technische Universität Wien http://www.tuwien.ac.at/ -9600 AT Universität für angewandte Kunst Wien http://ns2.uni-ak.ac.at/ -9601 AT Universität für Bodenkultur Wien http://www.boku.ac.at/ -9602 AT Universität für künstlerische und industrielle Gestaltung Linz http://www.khs-linz.ac.at/ -9603 AT Universität für Musik und darstellende Kunst Graz http://www.kug.ac.at/ -9604 AT Universität für Musik und darstellende Kunst Wien http://www.mdw.ac.at/ -9605 AT Universität Graz http://www.kfunigraz.ac.at/ -9606 AT Universität Innsbruck http://www.uibk.ac.at/ -9607 AT Universität Klagenfurt http://www.uni-klu.ac.at/ -9608 AT Universität Linz http://www.uni-linz.ac.at/ -9609 AT Universität Mozarteum Salzburg http://www.moz.ac.at/ -9610 AT Universität Salzburg http://www.sbg.ac.at/ -9611 AT Universität Vienna http://www.univie.ac.at/ -9612 AT Veterinärmedizinische Universität Wien http://www.vu-wien.ac.at/ -9613 AT Webster University, Vienna http://www.webster.ac.at/ -9614 AT Wirtschaftsuniversität Wien http://www.wu-wien.ac.at/ -9615 AU Australian Catholic University http://www.acu.edu.au/ -9616 AU Australian Correspondence Schools http://www.acs.edu.au/ -9617 AU Australian Defence Force Academy http://www.adfa.oz.au/ -9618 AU Australian Lutheran College http://www.alc.edu.au/ -9619 AU Australian Maritime College http://www.amc.edu.au/ -9620 AU Australian National University http://www.anu.edu.au/ -9621 AU Avondale College http://www.avondale.edu.au/ -9622 AU Batchelor Institute of Indigenous Tertiary Education http://www.nt.gov.au/batc/ -9623 AU Blue Mountains Hotel School http://www.hotelschool.com.au/ -9624 AU Bond University http://www.bond.edu.au/ -9625 AU Central Queensland University http://www.cqu.edu.au/ -9626 AU Charles Darwin University http://www.cdu.edu.au/ -9627 AU Charles Sturt University http://www.csu.edu.au/ -9628 AU Curtin University of Technology http://www.curtin.edu.au/ -9629 AU Deakin University http://www.deakin.edu.au/ -9630 AU Edith Cowan University http://www.ecu.edu.au/ -9631 AU Flinders University of South Australia http://www.flinders.edu.au/ -9632 AU Griffith University http://www.gu.edu.au/ -9633 AU Holmes Institute http://www.holmes.edu.au/ -9634 AU Institute Of Technology, Australia http://www.iota.edu.au/ -9635 AU International College of Tourism and Hotel Management http://www.icthm.edu.au/ -9636 AU James Cook University of North Queensland http://www.jcu.edu.au/ -9637 AU La Trobe University http://www.latrobe.edu.au/ -9638 AU Macquarie University http://www.mq.edu.au/ -9639 AU Marcus Oldham College http://www.marcusoldham.vic.edu.au/ -9640 AU Monash University http://www.monash.edu.au/ -9641 AU Murdoch University http://www.murdoch.edu.au/ -9642 AU Queensland University of Technology http://www.qut.edu.au/ -9643 AU Royal Melbourne Institute of Technology http://www.rmit.edu.au/ -9644 AU Southern Cross University http://www.scu.edu.au/ -9645 AU Swinburne University of Technology http://www.swin.edu.au/ -9646 AU University of Adelaide http://www.adelaide.edu.au/ -9647 AU University of Ballarat http://www.ballarat.edu.au/ -9648 AU University of Canberra http://www.canberra.edu.au/ -9649 AU University of Divinity http://www.divinity.edu.au/ -9650 AU University of Melbourne http://www.unimelb.edu.au/ -9651 AU University of Newcastle http://www.newcastle.edu.au/ -9652 AU University of New England http://www.une.edu.au/ -9653 AU University of New South Wales http://www.unsw.edu.au/ -9654 AU University of Notre Dame Australia http://www.nd.edu.au/ -9655 AU University of Queensland http://www.uq.edu.au/ -9656 AU University of South Australia http://www.unisa.edu.au/ -9657 AU University of Southern Queensland http://www.usq.edu.au/ -9658 AU University of Sydney http://www.usyd.edu.au/ -9659 AU University of Tasmania http://www.utas.edu.au/ -9660 AU University of Technology Sydney http://www.uts.edu.au/ -9661 AU University of the Sunshine Coast http://www.usc.edu.au/ -9662 AU University of Western Australia http://www.uwa.edu.au/ -9663 AU University of Western Sydney http://www.uws.edu.au/ -9664 AU University of Wollongong http://www.uow.edu.au/ -9665 AZ Academy of Public Administration http://www.dia.edu.az/ -9666 AZ Azerbaijan Diplomatic Academy http://www.ada.edu.az/ -9667 AZ Azerbaijan International University http://www.abu.az/ -9668 AZ Azerbaijan Medical University http://www.amu.edu.az/ -9669 AZ Azerbaijan National Conservatorie http://www.conservatory.az/ -9670 AZ Azerbaijan State Economic University http://www.aseu.az/ -9671 AZ Azerbaijan State Oil Academy http://adna.jis.az/ -9672 AZ Azerbaijan Technical University http://www.aztu.az/ -9673 AZ Azerbaijan Technology University http://www.aztu.edu.az/ -9674 AZ Azerbaijan Toursim Institute http://www.tourism.edu.az/ -9675 AZ Azerbaijan University http://www.au.edu.az/ -9676 AZ Azerbaijan University ol Languages http://www.adu.edu.az/ -9677 AZ Baki Business University http://www.bbu.edu.az/ -9678 AZ Baku Slavic University http://www.bsu-edu.org/ -9679 AZ Baku State University http://www.bsu.az/ -9680 AZ Ganja State University http://www.gsu.az/ -9681 AZ Khazar University http://www.khazar.org/ -9682 AZ Lankaran State University http://www.lsu.edu.az/ -9683 AZ Nakhchivan Private University http://www.az-npu.org/ -9684 AZ Nakhchivan State University http://www.ndu.edu.az/ -9685 AZ National Aviation Academy http://www.naa.edu.az/ -9686 AZ Odlar Yurdu University http://www.oyu.edu.az/ -9687 AZ Police Academy http://www.pa.edu.az/ -9688 AZ Qafqaz University http://www.qafqaz.edu.az/ -9689 AZ Sumgait State University http://www.sdu.edu.az/ -9690 AZ Western University http://www.wu.edu.az/ -9691 BA American University http://www.aubih.ba/ -9692 BA International Burch University http://www.ibu.edu.ba/ -9693 BA International University of Sarajevo http://www.ius.edu.ba/ -9694 BA International University of Travnik http://www.iu-travnik.com/ -9695 BA Sarajevo Film Academy http://www.sfa.ba/ -9696 BA Slobomir P Univerzitet http://www.spu.ba/ -9697 BA University of Banja Luka http://www.unibl.org/ -9698 BA University of Bihac http://www.unbi.ba/ -9699 BA University of East Srarajevo http://www.unssa.rs.ba/ -9700 BA University of Mostar http://www.sve-mo.ba/ -9701 BA University of Sarajevo http://www.unsa.ba/ -9702 BA University of Tuzla http://www.untz.ba/ -9703 BA University of Zenica http://www.unze.ba/ -9704 BA University Vitez In Travnik http://www.unvi.edu.ba/ -9705 BA Univerzitet u Mostaru "Dzemal Bijedic" http://www.unmo.ba/ -9706 BB University of the West Indies, Cave Hill http://www.uwichill.edu.bb/ -9707 BD Ahsanullah University of Science & Technology http://www.aust.edu/ -9708 BD American International University - Bangladesh http://www.aiub.edu/ -9709 BD Asa University Bangladesh http://www.asaub.edu.bd/ -9710 BD Asian University of Bangladesh http://www.aub-bd.org/ -9711 BD Atish Dipankar University http://www.atishdipankaruniversity.edu.bd/ -9712 BD Bangabandhu Sheikh Mujibur Rahman Agricultural University http://www.bsmrau.edu.bd/ -9713 BD Bangabandhu Sheikh Mujibur Rahman Medical University http://www.bsmmu.edu.bd/ -9714 BD Bangladesh Agricultural University http://www.bau.edu.bd/ -9715 BD Bangladesh Open University http://www.bou.edu.bd/ -9716 BD Bangladesh University http://www.bu.edu.bd/ -9717 BD Bangladesh University of Business & Technology http://www.bubt.edu.bd/ -9718 BD Bangladesh University of Engineering and Technology http://www.buet.ac.bd/ -9719 BD Bangladesh University of Professionals http://www.bup.edu.bd/ -9720 BD Bangladesh University of Textiles http://www.butex.edu.bd/ -9721 BD Begum Rokeya University, Rangpur http://www.brur.ac.bd/ -9722 BD BGC Trust University, Bangladesh http://www.bgctrustbd.org/btub/ -9723 BD Brac University http://www.bracuniversity.net/ -9724 BD Chittagong Independent University http://www.ciu.edu.bd/ -9725 BD Chittagong University of Engineering and Technology http://www.cuet.ac.bd/ -9726 BD City University http://www.cityuniversity.edu.bd/ -9727 BD Comilla University http://www.cou.ac.bd/ -9728 BD Daffodil International University http://www.daffodilvarsity.edu.bd/ -9729 BD Darul Ihsan University http://www.diu.ac.bd/ -9730 BD Dhaka International University http://www.diu.net.bd/ -9731 BD Dhaka University of Engineering and Technology http://www.duet.ac.bd/ -9732 BD East Delta University http://www.eastdelta.edu.bd/ -9733 BD Eastern University http://www.easternuni.edu.bd/ -9734 BD East West University http://www.ewubd.edu/ -9735 BD East-West University, Mohakhali http://www.ewubd.edu/ -9736 BD Green University of Bangladesh http://www.green.edu.bd/ -9737 BD Hajee Mohammad Danesh Science and Technology University http://www.hstu.ac.bd/ -9738 BD IBAIS University http://www.ibaisuniv.edu.bd/ -9739 BD Independent University, Bangladesh http://www.iub.edu.bd/ -9740 BD International Culture University http://www.icu-edu.org/ -9741 BD International Islamic University Chittagong http://www.iiuc.ac.bd/ -9742 BD International University of Business Agriculture and Technology http://www.iubat.edu/ -9743 BD Islamic University Kushtia http://www.iu.ac.bd/ -9744 BD Islamic University of Technology http://www.iutoic-dhaka.edu/ -9745 BD Jagannath University http://www.jnu.ac.bd/ -9746 BD Jahangirnagar University http://www.juniv.edu/ -9747 BD Jatiya Kabi Kazi Nazrul Islam University http://www.jkkniu.edu.bd/ -9748 BD Khulna University http://www.ku.ac.bd/ -9749 BD Khulna University of Engineering And Technology http://www.kuet.ac.bd/ -9750 BD Leading University http://www.lus.ac.bd/ -9751 BD Manarat International University http://www.manarat.ac.bd/ -9752 BD Mawlana Bhashani Science And Technology University http://www.mbstu.ac.bd/ -9753 BD Metropolitan University http://www.metrouni.edu.bd/ -9754 BD Military Institute of Science and Technology http://www.mist.ac.bd/ -9755 BD National University http://www.nu.edu.bd/ -9756 BD Noakhali University of Science and Technology http://www.nstu.edu.bd/ -9757 BD North East University Bangladesh http://www.neub.edu.bd/ -9758 BD Northern University Bangladesh http://www.nub.ac.bd/ -9759 BD North South University http://www.northsouth.edu/ -9760 BD Pabna University of Science and Technology http://www.pust.ac.bd/ -9761 BD Patuakhali Science and Technology University http://www.pstu.ac.bd/ -9762 BD People's University of Bangladesh http://www.pub.ac.bd/ -9763 BD Premier University http://www.puc.ac.bd/ -9764 BD Presidency University http://www.presidency.edu.bd/ -9765 BD Queens University http://www.queensuniversity.edu.bd/ -9766 BD Rajshahi University of Engineering and Technology http://www.ruet.ac.bd/ -9767 BD Shahjalal University of Science and Technology http://www.sust.edu/ -9768 BD Southeast University http://www.seu.ac.bd/ -9769 BD Southern University Bangladesh http://www.southern.edu.bd/ -9770 BD Stamford University http://www.stamforduniversity.edu.bd/ -9771 BD Sylhet Agricultural University http://www.sau.ac.bd/ -9772 BD Sylhet Engineering College http://www.sec.ac.bd/ -9773 BD Sylhet International University http://www.siu.edu.bd/ -9774 BD United International University http://www.uiu.ac.bd/ -9775 BD University of Asia Pacific, Dhanmondi http://www.uap-bd.edu/ -9776 BD University of Chittagong http://www.cu.ac.bd/ -9777 BD University of Development Alternative http://www.uoda.edu.bd/ -9778 BD University of Dhaka http://www.du.ac.bd/ -9779 BD University of Information Technology & Sciences http://www.uits.edu.bd/ -9780 BD University of Liberal Arts http://www.ulab.edu.bd/ -9781 BD University of Rajshahi http://www.ru.ac.bd/ -9782 BD University of Science & Technology Chittagong http://www.ustc.ac.bd/ -9783 BD World University of Bangladesh http://www.wub.edu/ -9784 BE Brexgata University Academy http://www.brexgata.eu/ -9785 BE Brussels Management School (ICHEC) http://www.ichec.be/ -9786 BE Brussels School of International Studies http://www.ukc.ac.uk/international/bsis/ -9787 BE College of Europe http://www.coleurope.eu/ -9788 BE Continental Theological Seminary http://www.ctsem.edu/ -9789 BE ECAM - Institut Supérieur Industriel http://www.ecam.be/ -9790 BE EHSAL - Europese Hogeschool Brussel http://www.ehsal.be/ -9791 BE Erasmushogeschool Brussel http://www.ehb.be/ -9792 BE European Carolus Magnus University http://www.carolus-magnus-university.eu/ -9793 BE European International University http://www.europeaniu.org/ -9794 BE Evangelische Theologische Faculteit, Leuven http://www.etf.edu/ -9795 BE Faculté Polytechnique de Mons http://www.fpms.ac.be/ -9796 BE Facultés Universitaires Catholiques de Mons http://www.fucam.ac.be/ -9797 BE Facultés Universitaires Notre-Dame de la Paix http://www.fundp.ac.be/ -9798 BE Facultés Universitaires Saint-Louis http://www.fusl.ac.be/ -9799 BE Faculté Universitaire des Sciences Agronomiques de Gembloux http://www.fsagx.ac.be/ -9800 BE Fondation Universitaire Luxembourgeoise http://www.ful.ac.be/ -9801 BE Hasselt University http://www.uhasselt.be/ -9802 BE Hogere Zeevaartschool - Maritime Academy http://www.hzs.be/ -9803 BE Hogeschool Antwerpen http://www.ha.be/ -9804 BE Hogeschool voor Wetenschap en Kunst (VLEKHO), Brussel http://www.vlekho.be/ -9805 BE Hogeschool voor Wetenschap & Kunst http://www.wenk.be/ -9806 BE Hogeschool West-Vlaanderen (TU) http://www.howest.be/ -9807 BE Karel De Grote Hogeschool http://www.kdg.be/ -9808 BE Katholieke Hogeschool Kempen http://www.khk.be/ -9809 BE Katholieke Hogeschool Leuven http://www.khleuven.be/ -9810 BE Katholieke Hogeschool Limburg http://www.khlim.be/ -9811 BE Katholieke Universiteit Brussel http://www.kubrussel.ac.be/ -9812 BE Katholieke Universiteit Leuven http://www.kuleuven.ac.be/ -9813 BE Katholieke Universiteit Leuven, Campus Kortrijk http://www.kulak.ac.be/ -9814 BE Royal Military Academy http://www.rma.ac.be/ -9815 BE Thierry Graduate School of Leadership http://www.thierryschool.org/ -9816 BE United Business Institute http://www.ubi.edu/ -9817 BE Université Catholique de Louvain http://www.ucl.ac.be/ -9818 BE Université de Liège http://www.ulg.ac.be/ -9819 BE Université de Mons-Hainaut http://www.umh.ac.be/ -9820 BE Universiteit Antwerpen http://www.ua.ac.be/ -9821 BE Universiteit Antwerpen Management School http://www.uams.be/ -9822 BE Universiteit Antwerpen, UFSIA http://www.ufsia.ac.be/ -9823 BE Universiteit Gent http://www.rug.ac.be/ -9824 BE Université Libre de Bruxelles http://www.ulb.ac.be/ -9825 BE Vesalius College http://www.vesalius.edu/ -9826 BE Vlerick Leuven Gent Management School http://www.vlerick.be/ -9827 BE Vrije Universiteit Brussel http://www.vub.ac.be/ -9828 BF Université de Ouagadougou http://www.univ-ouaga.bf/ -9829 BG Academy of Economics "Dimitur A. Tscenov" http://www.uni-svishtov.bg/ -9830 BG Academy of Music, Dance and Fine Arts http://amti.hit.bg/ -9831 BG Agricultural University of Plovdiv http://www.au-plovdiv.bg/ -9832 BG American University in Bulgaria http://www.aubg.bg/ -9833 BG Bourgas Free University http://www.bfu.bg/ -9834 BG Bourgas University "Prof. Assen Zlatarov" http://www.btu.bg/ -9835 BG City University Programs in Bulgaria http://www.cityu.bg/ -9836 BG International University College http://www.vumk.eu/ -9837 BG Medical University of Sofia http://www.mu-sofia.bg/ -9838 BG Medical University Pleven http://www.mu-pleven.bg/ -9839 BG Medical University Plovdiv http://www.meduniversity-plovdiv.bg/ -9840 BG Medical University Varna http://www.mu-varna.bg/ -9841 BG Military University Shoumen http://www.pv-ma.bg/ -9842 BG National Academy for Theatre and Film Arts "Krustju Sarafov" http://www.natfiz.bg/ -9843 BG National Academy of Arts http://www.nha-bg.org/ -9844 BG National Academy of Music "Pantcho Vladigerov" http://www.nma.bg/ -9845 BG National Sports Academy Sofia http://www.nsa.bg/ -9846 BG New Bulgarian University http://www.nbu.bg/ -9847 BG Shoumen University "Konstantin Preslavski" http://www.shu-bg.net/ -9848 BG Sofia University "St. Kliment Ohridski" http://www.uni-sofia.bg/ -9849 BG South-West University "Neofit Rilski" http://www.swu.bg/ -9850 BG Technical University of Gabrovo http://www.tugab.bg/ -9851 BG Technical University of Sofia http://www.tu-sofia.bg/ -9852 BG Technical University of Varna http://www.tu-varna.acad.bg/ -9853 BG Trakia University Stara Zagora http://www.uni-sz.bg/ -9854 BG University of Architecture, Civil Engineering and Geodesy http://www.uacg.bg/ -9855 BG University of Chemical Technology and Metallurgy http://www.uctm.edu/ -9856 BG University of Economics Varna http://www.ue-varna.bg/ -9857 BG University of Food Technology http://www.uft-plovdiv.bg/ -9858 BG University of Forestry Sofia http://www.ltu.bg/ -9859 BG University of Mining and Geology "St. Ivan Rils" http://www.mgu.bg/ -9860 BG University of National and World Economy http://www.unwe.acad.bg/ -9861 BG University of Plovdiv http://www.uni-plovdiv.bg/ -9862 BG University of Rousse http://www.ru.acad.bg/ -9863 BG Varna Free University http://www.vfu.bg/ -9864 BG Veliko Turnovo University "Cyril and Methodius" http://www.uni-vt.bg/ -9865 BH Al Ahlia University http://www.ahliauniversity.org/ -9866 BH Ama International University http://www.amaiu.edu.bh/ -9867 BH Applied Science University http://www.asu.edu.bh/ -9868 BH Arabian Gulf University http://www.agu.edu.bh/ -9869 BH Arab Open University http://www.aou.org.bh/ -9870 BH Bahrain Polytechnic http://www.polytechnic.bh/ -9871 BH Gulf University College http://www.gulfuniversity.net/ -9872 BH New York Instiute of Technology http://www.nyit.edu.bh/ -9873 BH RCSI-Medical University of Bahrain http://www.rcsi-mub.com/ -9874 BH The Kingdom University http://www.ku.edu.bh/ -9875 BH University College Bahrain http://www.ucb.edu.bh/ -9876 BH University of Bahrain http://www.uob.edu.bh/ -9877 BI Hope Africa University http://hopeafricauniversity.org/ -9878 BI Université du Burundi http://www.ub.edu.bi/ -9879 BI Université Lumière de Bujumbura http://www.ulbu.bi/ -9880 BJ Espam Formation University http://www.espam-formationuc.org/ -9881 BJ Houdegbe North American University Benin http://www.hnaubenin.org/ -9882 BJ Université d'Abomey-Calavi (UAC) http://www.uac.bj/ -9883 BM Bermuda College http://www.bercol.bm/ -9884 BN Institut Teknologi Brunei http://www.itb.edu.bn/ -9885 BN Universiti Islam Sultan Sharif Ali http://www.unissa.edu.bn/ -9886 BN University of Brunei Darussalam http://www.ubd.edu.bn/ -9887 BO Escuela Militar de Ingeniería http://www.emi.edu.bo/ -9888 BO Universidad Adventista de Bolivia http://www.uab.edu.bo/ -9889 BO Universidad Amazonica de Pando http://www.uapnet.edu.bo/ -9890 BO Universidad Andina Simón Bolivar http://www.uasb.edu.bo/ -9891 BO Universidad Autónoma del Beni "José Ballivián" http://www.uabjb.edu.bo/ -9892 BO Universidad Autónoma Gabriel René Moreno http://www.uagrm.edu.bo/ -9893 BO Universidad Autónoma Juan Misael Saracho http://www.uajms.edu.bo/ -9894 BO Universidad Autónoma Tomás Frías http://www.uatf.edu.bo/ -9895 BO Universidad Católica Boliviana, Cochabamba http://www.ucbcba.edu.bo/ -9896 BO Universidad Católica Boliviana, La Paz http://www.ucb.edu.bo/ -9897 BO Universidad Católica Boliviana, Santa Cruz http://www.ucbscz.edu.bo/ -9898 BO Universidad Católica Boliviana, Tarija http://www.ucbtja.edu.bo/ -9899 BO Universidad Central http://www.unicen.edu.bo/ -9900 BO Universidad de Aquino Bolivia http://www.udabol.edu.bo/ -9901 BO Universidad Domingo Savio http://www.upds.edu.bo/ -9902 BO Universidad Empresarial Mateo Kuljis http://www.unikuljis.edu.bo/ -9903 BO Universidad Juan Misael Saracho http://www.uajms.edu.bo/ -9904 BO Universidad Los Andes http://www.udelosandes.edu.bo/ -9905 BO Universidad Mayor de San Andrés http://www.umsanet.edu.bo/ -9906 BO Universidad Mayor de San Simón http://www.umss.edu.bo/ -9907 BO Universidad Nacional Siglo XX Llallagua http://www.unsxx.edu.bo/ -9908 BO Universidad Nuestra Senora de La Paz http://www.unslp.edu.bo/ -9909 BO Universidad NUR http://www.nur.edu/ -9910 BO Universidad Privada Abierta Latinoamericana http://www.upal.edu/ -9911 BO Universidad Privada Boliviana http://www.upb.edu/ -9912 BO Universidad Privada del Valle http://www.univalle.edu/ -9913 BO Universidad Privada de Santa Cruz de la Sierra http://www.upsa.edu.bo/ -9914 BO Universidad Privada Franz Tamayo (UNIFRANZ) http://www.unifranz.edu.bo/ -9915 BO Universidad Salesiana de Bolivia http://www.usalesiana.edu.bo/ -9916 BO Universidad San Francisco Xavier http://www.usfx.info/ -9917 BO Universidad San Francisco Xavier de Chuquisaca http://www.usfx.edu.bo/ -9918 BO Universidad Técnica de Oruro http://www.uto.edu.bo/ -9919 BR Centro Regional Universitário de Espiríto Santo do Pinhal http://www.creupi.br/ -9920 BR Centro Universitário Adventista de São Paulo http://www.unasp.edu.br/ -9921 BR Centro Universitário Barao de Maua http://www.baraodemaua.br/ -9922 BR Centro Universitário Claretiano http://www.claretiano.edu.br/ -9923 BR Centro Universitário de Araraquara http://www.uniara.com.br/ -9924 BR Centro Universitário de João Pessoa http://www.unipe.br/ -9925 BR Centro Universitário Monte Serrat http://www.unimonte.br/ -9926 BR Centro Universitário Newton Paiva http://www.newtonpaiva.br/ -9927 BR Centro Universitário Plinio Leite http://www.unipli.com.br/ -9928 BR Centro Universitário Senac http://www.sp.senac.br/ -9929 BR Centro Universitário Serra dos Órgãos http://www.unifeso.edu.br/ -9930 BR EMESCAM - Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória http://www.emescam.br/ -9931 BR FAAP - Fundação Armando Alvares Penteado http://www.faap.br/ -9932 BR Faculdade Integradas do Ceará http://www.fic.br/ -9933 BR Faculdade Italo Brasileira http://www.italo.br/ -9934 BR Faculdade Jaguariúna http://www.faj.br/ -9935 BR Faculdades Integradas Curitiba http://www.faculdadescuritiba.br/ -9936 BR Faculdades Integradas do Brasil - UNIBRASIL http://www.unibrasil.com.br/ -9937 BR Faculdades Integradas Toledo http://www.toledo.br/ -9938 BR Faculdades Integradas UPIS http://www.upis.br/ -9939 BR FAE Business School - Faculdade de Administração e Economia http://www.fae.edu/ -9940 BR Fundação Educacional de Ituverava http://www.feituverava.com.br/ -9941 BR Instituto Mauá de Tecnologia http://www.maua.br/ -9942 BR Instituto Nacional de Matemática Pura e Aplicada - IMPA http://www.impa.br/ -9943 BR Instituto Tecnológico de Aeronáutica http://www.ita.br/ -9944 BR Pontifícia Universidade Católica de Campinas http://www.puccamp.br/ -9945 BR Pontifícia Universidade Católica de Minas Gerais http://www.pucminas.br/ -9946 BR Pontifícia Universidade Católica de São Paulo http://www.pucsp.br/ -9947 BR Pontificia Universidade Católica do Paraná http://www.pucpr.br/ -9948 BR Pontifícia Universidade Católica do Rio de Janeiro http://www.puc-rio.br/ -9949 BR Pontifícia Universidade Católica do Rio Grande do Sul http://www.pucrs.br/ -9950 BR Universidade Bandeirante de São Paulo http://www.uniban.br/ -9951 BR Universidade Braz Cubas http://www.brazcubas.br/ -9952 BR Universidade Camilo Castelo Branco http://www.unicastelo.br/ -9953 BR Universidade Candido Mendes http://www.candidomendes.br/ -9954 BR Universidade Castelo Branco http://www.castelobranco.br/ -9955 BR Universidade Católica de Brasília http://www.ucb.br/ -9956 BR Universidade Católica de Goiás http://www.ucg.br/ -9957 BR Universidade Católica de Pelotas http://www.ucpel.tche.br/ -9958 BR Universidade Católica de Pernambuco http://www.unicap.br/ -9959 BR Universidade Católica de Petrópolis http://www.ucp.br/ -9960 BR Universidade Católica de Salvador http://www.ucsal.br/ -9961 BR Universidade Católica de Santos http://www.unisantos.com.br/ -9962 BR Universidade Católica Dom Bosco http://www.unibosco.br/ -9963 BR Universidade Cidade de São Paulo http://www.unicid.br/ -9964 BR Universidade Cruzeiro do Sul http://www.unicsul.br/ -9965 BR Universidade da Amazônia http://www.unama.br/ -9966 BR Universidade da Região da Campanha http://www.urcamp.tche.br/ -9967 BR Universidade de Alfenas http://www.unifenas.br/ -9968 BR Universidade de Brasília http://www.unb.br/ -9969 BR Universidade de Caxias do Sul http://www.ucs.tche.br/ -9970 BR Universidade de Cruz Alta http://www.unicruz.tche.br/ -9971 BR Universidade de Fortaleza http://www.unifor.br/ -9972 BR Universidade de Franca http://www.unifran.br/ -9973 BR Universidade de Guarulhos http://www.ung.br/ -9974 BR Universidade de Itaúna http://web.prover.com.br/fui/ -9975 BR Universidade de Marília http://www.unimar.br/ -9976 BR Universidade de Mogi das Cruzes http://www.umc.br/ -9977 BR Universidade de Nova Iguaçu http://www.unig.br/ -9978 BR Universidade de Passo Fundo http://www.upf.tche.br/ -9979 BR Universidade de Pernambuco http://www.upe.br/ -9980 BR Universidade de Ribeirão Preto http://www.unaerp.br/ -9981 BR Universidade de Santa Cruz do Sul http://www.unisc.br/ -9982 BR Universidade de Santo Amaro http://www.unisa.br/ -9983 BR Universidade de São Paulo http://www.usp.br/ -9984 BR Universidade de Taubaté http://www.unitau.br/ -9985 BR Universidade de Tocantins http://www.pop-to.rnp.br/ -9986 BR Universidade de Uberaba http://www.uniube.br/ -9987 BR Universidade de Vila Velha http://www.uvv.br/ -9988 BR Universidade do Amazonas http://www.fua.br/ -9989 BR Universidade do Estado da Bahia http://www.uneb.br/ -9990 BR Universidade do Estado de Santa Catarina http://www.udesc.br/ -9991 BR Universidade do Estado do Rio de Janeiro http://www.uerj.br/ -9992 BR Universidade do Estado do Rio Grande do Norte http://www.uern.br/ -9993 BR Universidade do Extremo Sul Catarinense http://www.unesc.rct-sc.br/ -9994 BR Universidade do Grande Rio http://www.unigranrio.br/ -9995 BR Universidade do Oeste de Santa Catarina http://www.unoesc.edu.br/ -9996 BR Universidade do Oeste Paulista http://www.unoeste.br/ -9997 BR Universidade do Rio de Janeiro http://www.unirio.br/ -9998 BR Universidade do Rio Grande http://www.furg.br/ -9999 BR Universidade do Sagrado Coração http://www.usc.br/ -10000 BR Universidade do Sul de Santa Catarina http://www.unisul.br/ -10001 BR Universidade do Vale do Itajaí http://www.univali.rct-sc.br/ -10002 BR Universidade Estácio de Sá http://www.estacio.br/ -10003 BR Universidade Estadual da Paraíba http://www.uepb.edu.br/ -10004 BR Universidade Estadual de Campinas http://www.unicamp.br/ -10005 BR Universidade Estadual de Feira de Santana http://www.uefs.br/ -10006 BR Universidade Estadual de Londrina http://www.uel.br/ -10007 BR Universidade Estadual de Maringá http://www.uem.br/ -10008 BR Universidade Estadual de Montes Claros http://www.unimontes.br/ -10009 BR Universidade Estadual de Ponta Grossa http://www.uepg.br/ -10010 BR Universidade Estadual de Santa Cruz http://www.uesc.br/ -10011 BR Universidade Estadual do Ceará http://www.uece.br/ -10012 BR Universidade Estadual do Centro-Oeste http://www.unicentro.br/ -10013 BR Universidade Estadual do Maranhão http://www.uema.br/ -10014 BR Universidade Estadual do Norte Fluminense http://www.uenf.br/ -10015 BR Universidade Estadual do Oeste do Paraná http://www.unioeste.br/ -10016 BR Universidade Estadual do Piauí http://www.uespi.br/ -10017 BR Universidade Estadual do Vale do Acaraú http://www.uvanet.br/ -10018 BR Universidade Estadual Paulista http://www.unesp.br/ -10019 BR Universidade Estadual Sudoeste da Bahia http://www.uesb.br/ -10020 BR Universidade Federal da Bahia http://www.ufba.br/ -10021 BR Universidade Federal da Grande Dourados http://www.ufgd.edu.br/ -10022 BR Universidade Federal da Paraíba http://www.ufpb.br/ -10023 BR Universidade Federal de Alagoas http://www.ufal.br/ -10024 BR Universidade Federal de Campina Grande http://www.ufcg.edu.br/ -10025 BR Universidade Federal de Goiás http://www.ufg.br/ -10026 BR Universidade Federal de Juiz de Fora http://www.ufjf.br/ -10027 BR Universidade Federal de Lavras http://www.ufla.br/ -10028 BR Universidade Federal de Mato Grosso http://www.ufmt.br/ -10029 BR Universidade Federal de Mato Grosso do Sul http://www.ufms.br/ -10030 BR Universidade Federal de Minas Gerais http://www.ufmg.br/ -10031 BR Universidade Federal de Ouro Preto http://www.ufop.br/ -10032 BR Universidade Federal de Pelotas http://www.ufpel.tche.br/ -10033 BR Universidade Federal de Pernambuco http://www.ufpe.br/ -10034 BR Universidade Federal de Rondônia http://www.unir.br/ -10035 BR Universidade Federal de Roraima http://www.technet.com.br/vestibular/ -10036 BR Universidade Federal de Santa Catarina http://www.ufsc.br/ -10037 BR Universidade Federal de Santa Maria http://www.ufsm.br/ -10038 BR Universidade Federal de São Carlos http://www.ufscar.br/ -10039 BR Universidade Federal de São Paulo http://www.epm.br/ -10040 BR Universidade Federal de Sergipe http://www.ufs.br/ -10041 BR Universidade Federal de Uberlândia http://www.ufu.br/ -10042 BR Universidade Federal de Viçosa http://www.ufv.br/ -10043 BR Universidade Federal do ABC http://www.ufabc.edu.br/ -10044 BR Universidade Federal do Acre http://www.ufac.br/ -10045 BR Universidade Federal do Amapá http://www.unifap.br/ -10046 BR Universidade Federal do Ceará http://www.ufc.br/ -10047 BR Universidade Federal do Espírito Santo http://www.ufes.br/ -10048 BR Universidade Federal do Maranhão http://www.ufma.br/ -10049 BR Universidade Federal do Pará http://www.ufpa.br/ -10050 BR Universidade Federal do Paraná http://www.ufpr.br/ -10051 BR Universidade Federal do Piauí http://www.ufpi.br/ -10052 BR Universidade Federal do Rio de Janeiro http://www.ufrj.br/ -10053 BR Universidade Federal do Rio Grande do Norte http://www.ufrn.br/ -10054 BR Universidade Federal do Rio Grande do Sul http://www.ufrgs.br/ -10055 BR Universidade Federal do Vale do São Francisco http://www.univasf.edu.br/ -10056 BR Universidade Federal Fluminense http://www.uff.br/ -10057 BR Universidade Federal Rural de Pernambuco http://www.ufrpe.br/ -10058 BR Universidade Federal Rural do Rio de Janeiro http://www.ufrrj.br/ -10059 BR Universidade Federal Rural do Semi-Árido http://www.ufersa.edu.br/ -10060 BR Universidade Gama Filho http://www.ugf.br/ -10061 BR Universidade Ibirapuera http://www.unib.br/ -10062 BR Universidade Luterana do Brasil http://www.ulbra.br/ -10063 BR Universidade Mackenzie http://www.mackenzie.br/ -10064 BR Universidade Metodista de Piracicaba http://www.unimep.br/ -10065 BR Universidade Metropolitana de Santos http://www.unimes.com.br/ -10066 BR Universidade para o Desenvolvimento do Alto Vale do Itajaí http://www.unidavi.rct-sc.br/ -10067 BR Universidade Paulista http://www.unip-objetivo.br/ -10068 BR Universidade Potiguar http://www.unp.br/ -10069 BR Universidade Regional de Blumenau http://www.furb.rct-sc.br/ -10070 BR Universidade Regional do Cariri http://www.urca.br/ -10071 BR Universidade Regional do Noroeste do Estado do Rio Grande do Sul http://www.unijui.tche.br/ -10072 BR Universidade Regional Integrada do Alto Uruguai e das Missões http://www.uri.br/ -10073 BR Universidade Salgado de Oliveira http://www.universo.br/ -10074 BR Universidade Salvador http://www.unifacs.br/ -10075 BR Universidade Santa Cecília dos Bandeirantes http://www.stcecilia.br/ -10076 BR Universidade Santa Úrsula http://www.usu.br/ -10077 BR Universidade São Francisco http://www.usf.br/ -10078 BR Universidade São Judas Tadeu http://www.saojudas.br/ -10079 BR Universidade São Marcos http://www.smarcos.br/ -10080 BR Universidade Tiradentes http://www.unit.br/ -10081 BR Universidade Vale do Paraiba http://www.univap.br/ -10082 BR Universidade Vale do Rio Doce http://www.univale.br/ -10083 BR Universidade Vale do Rio dos Sinos http://www.unisinos.br/ -10084 BR Universidade Veiga de Almeida http://www.uva.br/ -10085 BS The College of The Bahamas http://www.cob.edu.bs/ -10086 BT Royal University of Bhutan http://www.rub.edu.bt/ -10087 BW ABM University College http://www.abm.ac.bw/ -10088 BW Botho University http://www.bothocollege.ac.bw/ -10089 BW Botswana Accountancy College http://www.bac.ac.bw/ -10090 BW Botswana College of Agriculture http://www.bca.bw/ -10091 BW Botswana International University of Science & Technology http://www.biust.ac.bw/ -10092 BW Gaborone Universal College of Law http://www.guc.co.bw/ -10093 BW New Era College of Arts, Science & Technology http://www.neweracollege.ac.bw/ -10094 BW University of Botswana http://www.ub.bw/ -10095 BY Academy of Public Administration of Belarus http://www.pac.by/ -10096 BY Academy of the Ministry of Internal Affairs of the Republic of Belarus http://academy.mia.by/ -10097 BY Belarusian-Russian University http://www.bru.mogilev.by/ -10098 BY Belarussian National Technical University http://www.bntu.by/ -10099 BY Belarussian State Academy of Music http://www.bgam.edu.by/ -10100 BY Belarussian State Agrarian Technical University http://www.batu.edu.by/ -10101 BY Belarussian State Agricultural Academy http://www.baa.by/ -10102 BY Belarussian State Economic University http://www.bseu.by/ -10103 BY Belarussian State Medical University http://www.bsmu.by/ -10104 BY Belarussian State Pedagogical University M. Tanka http://www.bspu.unibel.by/ -10105 BY Belarussian State Polytechnical Academy http://www.bspa.unibel.by/ -10106 BY Belarussian State Technological University http://www.bstu.unibel.by/ -10107 BY Belarussian State University http://www.bsu.by/ -10108 BY Belarussian State University of Culture and Arts http://www.buk.by/ -10109 BY Belarussian State University of Informatics and Radioelectronics http://www.bsuir.by/ -10110 BY Belarussian State University of Transport http://www.belsut.gomel.by/ -10111 BY Brest State Technical University http://www.bstu.by/ -10112 BY Brest State University http://www.brsu.brest.by/ -10113 BY European Humanities University http://www.data.minsk.by/ehu/ -10114 BY Gomel State Medical University http://www.meduniver.gomel.by/ -10115 BY Gomel State Technical University Pavel Sukhoi http://www.gstu.gomel.by/ -10116 BY Gomel State University Francisk Scarnia http://www.gsu.unibel.by/ -10117 BY Grodno State Agrarian University http://www.uni-agro.grodno.by/ -10118 BY Grodno State Medical University http://www.grsmu.by/ -10119 BY Grodno State University Yanka Kupaly http://www.grsu.by/ -10120 BY Institute for Command Engineers of The Ministry for Emergency Situations http://www.kii.gov.by/ -10121 BY International Sakharov Environmental University http://www.iseu.by/ -10122 BY Minsk Institute of Management http://www.miu.by/ -10123 BY Minsk State Linguistic University http://www.mslu.by/ -10124 BY Mogilev State University A.A. Kuleshov http://msu.mogilev.by/ -10125 BY Mozyr State Pedagogical Institute http://www.mgpu.gomel.by/ -10126 BY Polotsk State University http://www.psu.by/ -10127 BY Vitebsk State Academy of Veterinary Medicine http://www.vsavm.com/ -10128 BY Vitebsk State Medical University http://www.vgmu.vitebsk.by/ -10129 BY Vitebsk State Technological University http://www.vstu.vitebsk.by/ -10130 BY Vitebsk State University http://www.vsu.by/ -10131 BZ American University of the Caribbean, School of Medicine http://www.aucmed.edu/ -10132 BZ Central America Health Sciences University (Belize Medical College) http://www.cahsu.edu/ -10133 BZ Greenford International University http://www.giuedu.bz/ -10134 BZ University of Belize http://www.ub.edu.bz/ -10135 BZ West Coast University (WCU) http://www.westcoastuniversity.bz/ -10136 CA Acadia University http://www.acadiau.ca/ -10137 CA Algonquin College http://www.algonquincollege.com/ -10138 CA Ashton College http://www.ashtoncollege.com/ -10139 CA Assumption University http://www.assumptionu.ca/ -10140 CA Athabasca University http://www.athabascau.ca/ -10141 CA Augustana University College http://www.augustana.ab.ca/ -10142 CA Bishop's University http://www.ubishops.ca/ -10143 CA Bow Valley College http://www.bowvalleycollege.ca/ -10144 CA Brandon University http://www.brandonu.ca/ -10145 CA Brescia College http://www.uwo.ca/brescia/ -10146 CA British Columbia Institute of Technology http://www.bcit.ca/ -10147 CA British Columbia Open University http://www.bcou.ca/ -10148 CA Brock University http://www.brocku.ca/ -10149 CA Camosun College http://www.camosun.bc.ca/ -10150 CA Campion College http://www.uregina.ca/campion/ -10151 CA Canadian College of Business & Computers http://www.ccbc.ca/ -10152 CA Canadian Mennonite University http://www.cmu.ca/ -10153 CA Capilano College http://www.capcollege.bc.ca/ -10154 CA Carleton University http://www.carleton.ca/ -10155 CA Centennial College http://www.centennialcollege.ca/ -10156 CA Collège Boréal http://www.borealc.on.ca/ -10157 CA College of New Caledonia http://www.cnc.bc.ca/ -10158 CA College of the Rockies http://www.cotr.bc.ca/ -10159 CA Columbia College http://www.columbiacollege.ca/ -10160 CA Concordia University http://www.concordia.ca/ -10161 CA Concordia University College of Alberta http://www.concordia.ab.ca/ -10162 CA Conestoga College http://www.conestogac.on.ca/ -10163 CA Dalhousie University http://www.dal.ca/ -10164 CA DeVry Institute of Technology http://www.cal.devry.ca/ -10165 CA Dominican College of Philosophy and Theology http://www.op.org/canada/college.htm -10166 CA Douglas College http://www.douglas.bc.ca/ -10167 CA Durham College http://www.durhamc.on.ca/ -10168 CA École des Hautes Études Commerciales http://www.hec.ca/ -10169 CA École de technologie supérieure, Université du Québec http://www.etsmtl.ca/ -10170 CA École nationale d'administration publique, Université du Québec http://www.enap.uquebec.ca/ -10171 CA École Polytechnique de Montréal, Université de Montréal http://www.polymtl.ca/ -10172 CA Emily Carr Institute of Art + Design http://www.eciad.bc.ca/ -10173 CA First Nations University of Canada http://www.firstnationsuniversity.ca/ -10174 CA George Brown College http://www.gbrownc.on.ca/ -10175 CA Humber College http://www.humber.ca/ -10176 CA Huron University College http://www.huronuc.on.ca/ -10177 CA Institut Armand-Frappier, Université du Québec http://www.iaf.inrs.ca/ -10178 CA Institut National de la Recherche Scientifique, Université du Québec http://www.inrs.uquebec.ca/ -10179 CA King's College http://www.uwo.ca/kings/ -10180 CA Kingston College http://www.kingston.edu/ -10181 CA King's University College http://www.kingsu.ab.ca/ -10182 CA Kwantleen University College http://www.kwantlen.bc.ca/ -10183 CA Lakehead University http://www.lakeheadu.ca/ -10184 CA Langara College http://www.langara.bc.ca/ -10185 CA Lansbridge University http://www.lansbridge.com/ -10186 CA Laurentian University of Sudbury http://www.laurentian.ca/ -10187 CA Luther College http://www.saskweb.com/luthercollege/ -10188 CA MacEwan University http://www.macewan.ca/ -10189 CA Malaspina University College http://www.mala.bc.ca/ -10190 CA McGill University http://www.mcgill.ca/ -10191 CA McMaster University http://www.mcmaster.ca/ -10192 CA Memorial University of Newfoundland http://www.ucs.mun.ca/ -10193 CA Mount Allison University http://www.mta.ca/ -10194 CA Mount Royal College http://www.mtroyal.ab.ca/ -10195 CA Mount Saint Vincent University http://www.msvu.ca/ -10196 CA Nicola Valley Institute of Technology http://www.nvit.bc.ca/ -10197 CA Nipissing University http://www.nipissingu.ca/ -10198 CA Northern Alberta Institute of Technology http://www.nait.ca/ -10199 CA Northern Lights College http://www.nlc.bc.ca/ -10200 CA North Island College http://www.nic.bc.ca/ -10201 CA Nova Scotia Agricultural College http://www.nsac.ns.ca/ -10202 CA Nova Scotia College of Art and Design http://www.nscad.ns.ca/ -10203 CA Okanagan University College http://www.okanagan.bc.ca/ -10204 CA Ontario College of Art and Design http://www.ocad.ca/ -10205 CA Pacific International College http://www.picollege.ca/ -10206 CA Queen's University http://www.queensu.ca/ -10207 CA Quest University http://www.questu.ca/ -10208 CA Redeemer College http://www.redeemer.ca/ -10209 CA Regent College http://www.regent-college.edu/ -10210 CA Royal Military College of Canada http://www.rmc.ca/ -10211 CA Royal Roads University http://www.royalroads.ca/ -10212 CA Ryerson Polytechnic University http://www.ryerson.ca/ -10213 CA Saskatchewan Indian Federated College http://www.sifc.edu/ -10214 CA Sauder School of Business http://www.sauder.ubc.ca/ -10215 CA Selkirk College http://www.selkirk.bc.ca/ -10216 CA Seneca College http://www.senecac.on.ca/ -10217 CA Sheridan College http://www.sheridanc.on.ca/ -10218 CA Simon Fraser University http://www.sfu.ca/ -10219 CA Southern Alberta Institute of Technology http://www.sait.ca/ -10220 CA St. Anne University http://www.ustanne.ednet.ns.ca/ -10221 CA St. Clair College http://www.stclairc.on.ca/ -10222 CA St. Francis Xavier University http://www.stfx.ca/ -10223 CA St. Mary's University http://www.stmarys.ca/ -10224 CA St. Paul University http://www.ustpaul.ca/ -10225 CA St. Thomas University http://www.stthomasu.ca/ -10226 CA Télé-université, Université du Québec http://www.teluq.uquebec.ca/ -10227 CA Thompson Rivers University http://www.tru.ca/ -10228 CA Trent University http://www.trentu.ca/ -10229 CA Trinity Western University http://www.twu.ca/ -10230 CA Université de Montréal http://www.umontreal.ca/ -10231 CA Université de Sherbrooke http://www.usherb.ca/ -10232 CA Université du Québec à Chicoutimi http://www.uqac.ca/ -10233 CA Université du Québec à Montréal http://www.uqam.ca/ -10234 CA Université du Québec à Rimouski http://www.uqar.uquebec.ca/ -10235 CA Université du Québec à Trois-Rivières http://www.uqtr.uquebec.ca/ -10236 CA Université du Québec en Abitibi-Témiscamingue http://www.uqat.uquebec.ca/ -10237 CA Université du Québec en Outaouais http://www.uqo.ca/ -10238 CA Université Laval http://www.ulaval.ca/ -10239 CA University Canada West http://www.universitycanadawest.ca/ -10240 CA University College of Cape Breton http://www.uccb.ns.ca/ -10241 CA University College of Saint-Boniface http://www.ustboniface.mb.ca/ -10242 CA University College of the Cariboo http://www.cariboo.bc.ca/ -10243 CA University College of the Fraser Valley http://www.ucfv.bc.ca/ -10244 CA University of Alberta http://www.ualberta.ca/ -10245 CA University of British Columbia http://www.ubc.ca/ -10246 CA University of Calgary http://www.ucalgary.ca/ -10247 CA University of Guelph http://www.uoguelph.ca/ -10248 CA University of King's College http://www.ukings.ns.ca/ -10249 CA University of Lethbridge http://www.uleth.ca/ -10250 CA University of Manitoba http://www.umanitoba.ca/ -10251 CA University of Moncton http://www.umoncton.ca/ -10252 CA University of Moncton, Edmundston http://www.cuslm.ca/ -10253 CA University of Moncton, Shippagan http://www.cus.ca/ -10254 CA University of New Brunswick http://www.unb.ca/ -10255 CA University of New Brunswick, Saint John http://www.unbsj.ca/ -10256 CA University of Northern British Columbia http://www.unbc.ca/ -10257 CA University of Ontario Institute of Technology http://www.uoit.ca/ -10258 CA University of Ottawa http://www.uottawa.ca/ -10259 CA University of Prince Edward Island http://www.upei.ca/ -10260 CA University of Québec http://www.uquebec.ca/ -10261 CA University of Regina http://www.uregina.ca/ -10262 CA University of Saskatchewan http://www.usask.ca/ -10263 CA University of St. Jerome's College http://www.usjc.uwaterloo.ca/ -10264 CA University of St. Michael's College http://www.utoronto.ca/stmikes/ -10265 CA University of Sudbury http://www.usudbury.com/ -10266 CA University of Toronto http://www.utoronto.ca/ -10267 CA University of Toronto, Mississauga http://www.utm.utoronto.ca/ -10268 CA University of Toronto, Scarborough http://www.scar.utoronto.ca/ -10269 CA University of Trinity College http://www.trinity.utoronto.ca/ -10270 CA University of Victoria http://www.uvic.ca/ -10271 CA University of Waterloo http://www.uwaterloo.ca/ -10272 CA University of Western Ontario http://www.uwo.ca/ -10273 CA University of Windsor http://www.uwindsor.ca/ -10274 CA University of Winnipeg http://www.uwinnipeg.ca/ -10275 CA Vancouver Community College http://www.vcc.ca/ -10276 CA Victoria University Toronto, University of Toronto http://vicu.utoronto.ca/ -10277 CA Wilfrid Laurier University http://www.wlu.ca/ -10278 CA William and Catherine Booth College http://www.boothcollege.ca/ -10279 CA York University http://www.yorku.ca/ -10280 CA Yukon College http://www.yukoncollege.yk.ca/ -10281 CD Université Catholique de Bukavu http://www.ucbukavu.ac.cd/ -10282 CD Université Chrétienne Bilingue du Congo http://www.ucbc.org/ -10283 CD Université de Bandundu Ville http://www.uniband.org/ -10284 CD Université de Kamina http://www.ukamina.org/ -10285 CD Université de Kikwite http://www.unikik.net/ -10286 CD Université de Kinshasa http://www.unikin.cd/ -10287 CD Université de Kisangani http://www.unikis.ac.cd/ -10288 CD Université de Kolwezi http://www.unikol.ac.cd/ -10289 CD Université de Lubumbashi http://www.unilu.ac.cd/ -10290 CD Université de l'Uélé http://www.uniuele.ac.cd/ -10291 CD Université Kongo http://www.universitekongo.org/ -10292 CD Université Protestante au Congo http://www.upc.ac.cd/ -10293 CD Université Shalom de Bunia http://www.unishabunia.org/ -10294 CF Université de Bangui http://www.univ-bangui.net/ -10295 CG University Marien Ngouabi Brazzaville http://www.univ-mngb.net/ -10296 CH Business and Hotel Management School http://www.bhms.ch/ -10297 CH Business School Lausanne (BSL) http://www.bsl-lausanne.ch/ -10298 CH Cubidor University Switzerland http://www.cubidor.com/ -10299 CH DCT International Hotel & Business Management School http://www.dct.ch/ -10300 CH European Graduate School, Media & Communications http://www.egs.edu/ -10301 CH European University http://www.euruni.edu/ -10302 CH Fachhochschule Pur http://www.phw.info/ -10303 CH Fachhochschule St. Gallen https://www.fhsg.ch/ -10304 CH Franklin College Switzerland http://www.fc.edu/ -10305 CH Geneva Business School http://www.gbs-ge.ch/ -10306 CH Glion Institute of Higher Education http://www.glion.edu/ -10307 CH Graduate School of Business Administration Zurich (GSBA Zurich) http://www.gsba.ch/ -10308 CH Hochschule für Gestaltung und Kunst Zürich http://www.hgkz.ch/ -10309 CH International Culinary Institute (ICI) http://www.ici-luzern.com/ -10310 CH International Hotel Management Institute http://www.imi-luzern.com/ -10311 CH International School of Business Management http://www.isbm-school.com/ -10312 CH International University in Geneva http://www.iun.ch/ -10313 CH Lausanne Hotel School (EHL) http://www.ehl.ch/ -10314 CH Les Roches Gruyère University of Applied Sciences http://www.lrguas.ch/ -10315 CH Les Roches International School of Hotel Management http://www.lesroches.edu/ -10316 CH Libera Università degli Studi di Scienze Umane e Tecnologiche http://www.uniludes.ch/ -10317 CH Lucerne University of Applied Sciences and Arts http://www.hslu.ch/ -10318 CH NTB Interstate University of Applied Sciences of Technology http://www.ntb.ch/ -10319 CH Pädagogische Hochschule Zürich (Zurich School of Education) http://www.phzh.ch/ -10320 CH Schiller International University, American College of Switzerland http://www.american-college.com/ -10321 CH School of Management Fribourg http://www.heg-fr.ch/ -10322 CH Swiss Business School Zurich (SBS) http://www.sbs.edu/ -10323 CH Swiss Federal Institute of Technology, Lausanne http://www.epfl.ch/ -10324 CH Swiss Federal Institute of Technology, Zurich http://www.ethz.ch/ -10325 CH Swiss Management Center http://www.swissmc.ch/ -10326 CH University Center "César Ritz" http://www.uccr.edu/ -10327 CH University of Applied Sciences Aargau http://www.fh-aargau.ch/ -10328 CH University of Applied Sciences Basel (FHBB ) http://www.fhbb.ch/ -10329 CH University of Applied Sciences Chur http://www.fh-htachur.ch/ -10330 CH University of Applied Sciences Rapperswil http://www.hsr.ch/ -10331 CH University of Applied Sciences Solothurn Northwestern Switzerland http://www.fhso.ch/ -10332 CH University of Basel http://www.unibas.ch/ -10333 CH University of Berne http://www.unibe.ch/ -10334 CH University of Fribourg http://www.unifr.ch/ -10335 CH University of Geneva http://www.unige.ch/ -10336 CH University of Lausanne http://www.unil.ch/ -10337 CH University of Lucerne http://www.unilu.ch/ -10338 CH University of Neuchatel http://www.unine.ch/ -10339 CH University of St. Gallen http://www.unisg.ch/ -10340 CH University of Switzerland http://www.swissu.org/ -10341 CH University of the Italian-speaking Part of Switzerland http://www.unisi.ch/ -10342 CH University of Zürich http://www.unizh.ch/ -10343 CH Victoria University http://www.victoria-uni.ch/ -10344 CH Webster University Geneva http://www.webster.ch/ -10345 CH Zurich University of Applied Sciences Winterthur http://www.zhwin.ch/ -10346 CI Université d'Abobo-Adjamé http://www.uabobo.ci/ -10347 CI Université de Bouaké http://www.ubouake.ci/ -10348 CI Université de Cocody http://www.univ-cocody.ci/ -10349 CL Escuela de Arquitectura y Diseño http://www.arquitecturaucv.cl/ -10350 CL Pontificia Universidad Catolica de Chile http://www.puc.cl/ -10351 CL Universidad Academia de Humanismo Cristiano http://www.academia.cl/ -10352 CL Universidad Academia de Humanismo Cristiano http://www.academia.cl/ -10353 CL Universidad "Adolfo Ibañez" http://www.uai.cl/ -10354 CL Universidad Adolfo Ibáñez http://www.uai.cl/ -10355 CL Universidad Adventista de Chile http://www.unachile.cl/ -10356 CL Universidad Alberto Hurtado http://www.uahurtado.cl/ -10357 CL Universidad Arcis http://www.universidadarcis.cl/ -10358 CL Universidad "Arturo Prat" http://www.unap.cl/ -10359 CL Universidad Austral de Chile http://www.uach.cl/ -10360 CL Universidad Autonoma del Sur http://www.uas.cl/ -10361 CL Universidad Bernardo O'Higgins http://www.ubohiggins.cl/ -10362 CL Universidad Bolivariana http://www.ubolivariana.cl/ -10363 CL Universidad Católica Cardenal Raúl Silva Henríquez http://www.ucsh.cl/ -10364 CL Universidad Catolica de La Santísima Concepción http://www.ucsc.cl/ -10365 CL Universidad Catolica del Maule http://www.ucm.cl/ -10366 CL Universidad Catolica del Norte http://www.ucn.cl/ -10367 CL Universidad Catolica de Temuco http://www.uctem.cl/ -10368 CL Universidad Catolica de Valparaiso http://www.ucv.cl/ -10369 CL Universidad Central http://www.ucentral.cl/ -10370 CL Universidad Chileno Britanica de Cultura http://www.ubritanica.cl/ -10371 CL Universidad de Aconcagua http://www.uaconcagua.cl/ -10372 CL Universidad de Antofagasta http://www.uantof.cl/ -10373 CL Universidad de Artes, Ciencias y Comunicación http://www.uniacc.cl/ -10374 CL Universidad de Atacama http://www.uda.cl/ -10375 CL Universidad de Chile http://www.uchile.cl/ -10376 CL Universidad de Ciencias de la Informatica http://www.ucinf.cl/ -10377 CL Universidad de Concepcion http://www.udec.cl/ -10378 CL Universidad de La Frontera http://www.ufro.cl/ -10379 CL Universidad de Las Américas http://www.uamericas.cl/ -10380 CL Universidad de La Serena http://www.userena.cl/ -10381 CL Universidad del Bío-Bío http://www.ubiobio.cl/ -10382 CL Universidad del Desarrollo http://www.udesarrollo.cl/ -10383 CL Universidad del Mar http://www.udelmar.cl/ -10384 CL Universidad de Los Andes http://www.uandes.cl/ -10385 CL Universidad de Los Lagos http://www.ulagos.cl/ -10386 CL Universidad del Pacífico http://www.upacifico.cl/ -10387 CL Universidad de Magallanes http://www.umag.cl/ -10388 CL Universidad de Playa Ancha de Ciencias de la Educacion http://www.upa.cl/ -10389 CL Universidad de San Andres http://www.usanandres.cl/ -10390 CL Universidad de Santiago de Chile http://www.usach.cl/ -10391 CL Universidad de Talca http://www.utalca.cl/ -10392 CL Universidad de Tarapacá http://www.uta.cl/ -10393 CL Universidad de Valparaiso http://www.uv.cl/ -10394 CL Universidad de Viña del Mar http://www.uvm.cl/ -10395 CL Universidad Diego Portales http://www.udp.cl/ -10396 CL Universidad Finis Terrae http://www.ufinis.cl/ -10397 CL Universidad Francisco de Aguirre http://www.unfa.cl/ -10398 CL Universidad Gabriela Mistral http://www.ugm.cl/ -10399 CL Universidad Iberoamericana de Ciencias y Tecnologia http://www.unicit.cl/ -10400 CL Universidad International SEK, Santiago http://www.uisek.cl/ -10401 CL Universidad José Santos Ossa http://www.ujso.cl/ -10402 CL Universidad La Republica http://www.ulare.cl/ -10403 CL Universidad Mariano Egaña http://www.ume.cl/ -10404 CL Universidad Maritima de Chile http://www.umaritima.cl/ -10405 CL Universidad Mayor http://www.umayor.cl/ -10406 CL Universidad Metropolitana de Ciencias de la Educación http://www.umce.cl/ -10407 CL Universidad Miguel de Cervantes http://www.ucervantes.cl/ -10408 CL Universidad Nacional Andrés Bello http://www.unab.cl/ -10409 CL Universidad San Sebastian http://www.uss.cl/ -10410 CL Universidad Santo Tomás http://www.ust.cl/ -10411 CL Universidad Técnica "Federico Santa María" http://www.utfsm.cl/ -10412 CL Universidad Tecnológica Metropolitana http://www.utem.cl/ -10413 CL Universidad Tecnologica "Vicente Perez Rosales" http://www.uvipro.cl/ -10414 CM Bamenda University of Science & Technology http://www.bamendauniversity.com/ -10415 CM Fomic Polytechnic http://www.fomicgroup.cm/ -10416 CM Université de Bamenda http://www.unibda.net/ -10417 CM Université de Buéa http://www.ubuea.cm/ -10418 CM Université de Douala http://www.univ-douala.com/ -10419 CM Université de Dschang http://www.univ-dschang.org/ -10420 CM Université de Ngaoundéré http://www.univ-ndere.cm/ -10421 CM Université des Montagnes http://www.udesmontagnes.org/ -10422 CM Université de Yaoundé I http://www.uy1.uninet.cm/ -10423 CM Université de Yaoundé II http://www.universite-yde2.org/ -10424 CN 2nd Military Medical University http://www.smmu.edu.cn/ -10425 CN 3rd Military Medical University http://www.tmmu.edu.cn/ -10426 CN 4th Military Medical University http://www.fmmu.edu.cn/ -10427 CN Anhui Medical University http://www.ahmu.edu.cn/ -10428 CN Anhui Normal University http://www.ahnu.edu.cn/ -10429 CN Anhui Technical College of Water Resources and Hydroelectric Power http://www.ahsdxy.ah.edu.cn/ -10430 CN Anhui University http://www.ahu.edu.cn/ -10431 CN Anhui University of Finance and Economics http://www.aufe.edu.cn/ -10432 CN Anhui University of Traditional Chinese Medicine http://www.ahtcm.edu.cn/ -10433 CN Beijing Foreign Studies University http://www.bfsu.edu.cn/ -10434 CN Beijing Forestry University http://www.bjfu.edu.cn/ -10435 CN Beijing Information Science and Technology University http://www.biti.edu.cn/ -10436 CN Beijing Institute of Technology http://www.bit.edu.cn/ -10437 CN Beijing International Studies University http://www.bisu.edu.cn/ -10438 CN Beijing Language and Culture University http://www.blcu.edu.cn/ -10439 CN Beijing Medical University http://www.bjmu.edu.cn/ -10440 CN Beijing New Asia University http://www.newasia.bj.edu.cn/ -10441 CN Beijing Normal University http://www.bnu.edu.cn/ -10442 CN Beijing Petroleum University http://www.bjpeu.edu.cn/ -10443 CN Beijing Polytechnic University http://www.bjpu.edu.cn/ -10444 CN Beijing Sport University http://www.bsu.edu.cn/ -10445 CN Beijing Union University http://www.ipdbuu.com.cn/ -10446 CN Beijing University of Aeronautics and Astronautics http://www.buaa.edu.cn/ -10447 CN Beijing University of Agriculture http://www.bac.edu.cn/ -10448 CN Beijing University of Chemical Technology http://www.buct.edu.cn/ -10449 CN Beijing University of Chinese Medicine and Pharmacology http://www.bjucmp.edu.cn/ -10450 CN Beijing University of Posts and Telecommunications http://www.bupt.edu.cn/ -10451 CN Beijing University of Science and Technology http://www.ustb.edu.cn/ -10452 CN Bohai University http://www.bhu.edu.cn/ -10453 CN Buddhist Acamedy of China http://www.zgfxy.cn/ -10454 CN Capital Normal University http://www.cnu.edu.cn/ -10455 CN Capital University of Economics and Business http://www.cueb.edu.cn/ -10456 CN Capital University of Medical Sciences http://www.cpums.edu.cn/ -10457 CN Central Academy of Fine Art http://www.cafa.edu.cn/ -10458 CN Central China Normal University http://www.ccnu.edu.cn/ -10459 CN Central Radio and TV University http://www.crtvu.edu.cn/ -10460 CN Central South Forestry University http://www.csfu.edu.cn/ -10461 CN Central South University http://www.csu.edu.cn/ -10462 CN Central University for Nationalities http://www.cun.edu.cn/ -10463 CN Central University of Finance and Economics http://www.cufe.edu.cn/ -10464 CN Changchun Teachers College http://www.cncnc.edu.cn/ -10465 CN Changchun University of Technology http://www.ccut.edu.cn/ -10466 CN Changsha Railway University http://www.csru.edu.cn/ -10467 CN Changsha University of Electric Power http://www.csuep.edu.cn/ -10468 CN Chengdu Institute of Sichuan International Studies University http://www.cisisu.edu.cn/ -10469 CN Chengdu University http://www.cdu.edu.cn/ -10470 CN Chengdu University of Technology http://www.cdut.edu.cn/ -10471 CN Chengdu University of Traditional Chinese Medicine http://www.cdutcm.edu.cn/ -10472 CN China Academy of Art http://www.chinaacademyofart.com/ -10473 CN China Agricultural University http://www.cau.edu.cn/ -10474 CN China Agriculture University East http://www.bjaeu.edu.cn/ -10475 CN China Foreign Affairs University http://www.cfau.edu.cn/ -10476 CN China Medical University Shenyang http://www.cmu.edu.cn/ -10477 CN China Pharmaceutical University Nanjing http://www.cpu.edu.cn/ -10478 CN China Three Gorges University http://www.ctgu.edu.cn/ -10479 CN China University of Geoscience Beijing http://www.cugb.edu.cn/ -10480 CN China University of Geosciences Wuhan http://www.cug.edu.cn/ -10481 CN China University of Mining Technology - Beijing http://www.cumtb.edu.cn/ -10482 CN China University of Mining Technology - Xuzhou http://www.cumt.edu.cn/ -10483 CN China University of Political Science and Law http://www.cupl.edu.cn/ -10484 CN China USA Business University http://www.cubu.edu/ -10485 CN China youth college for political science http://www.cyc.edu.cn/ -10486 CN Chinese People's Public Security University http://www.cppsu.edu.cn/ -10487 CN Chongqing Education College http://www.cqec.net.cn/ -10488 CN Chongqing Medical University http://www.cqmu.edu.cn/ -10489 CN Chongqing Normal University http://www.cqnu.edu.cn/ -10490 CN Chongqing Normal University Foreign Trade and Business College http://www.swsm.cn/ -10491 CN Chongqing Technology and Business University http://www.ctbu.edu.cn/ -10492 CN Chongqing Telecommunication College http://www.cqtcedu.com/ -10493 CN Chongqing Three Gorges University http://www.sanxiau.edu.cn/ -10494 CN Chongqing University http://www.cqu.edu.cn/ -10495 CN Chongqing University of Communications http://www.cquc.edu.cn/ -10496 CN Chongqing University of Post and Telecommunications http://www.cqupt.edu.cn/ -10497 CN Chongqing University of Science and Technology http://www.cqust.cn/ -10498 CN Chongqing University of Technology http://www.cqut.edu.cn/ -10499 CN Chongqing Vocational College of Public Transportation http://www.cqgyzy.com/ -10500 CN Chongqing Wenli University http://www.cqwu.net/ -10501 CN Civil Aviation University of China http://www.cauc.edu/ -10502 CN Communication University of China http://www.cuc.edu.cn/ -10503 CN Dalian Martime University http://www.dlmu.edu.cn/ -10504 CN Dalian Medical University http://www.dlmedu.edu.cn/ -10505 CN Dalian Polytechnic University http://www.dlpu.edu.cn/ -10506 CN Dalian University http://www.dlu.edu.cn/ -10507 CN Dalian University of Foreign Language http://www.dlufl.edu.cn/ -10508 CN Dalian University of Technology http://www.dlut.edu.cn/ -10509 CN Dongbei University of Finance And Economics http://www.dufe.edu.cn/ -10510 CN Donghua University, Shanghai http://www.dhu.edu.cn/ -10511 CN East China Jiao Tong University http://www.ecjtu.jx.cn/ -10512 CN East China Normal University http://www.ecnu.edu.cn/ -10513 CN East China University of Science and Technology http://www.ecust.edu.cn/ -10514 CN Emeishan Buddhist College http://www.emsfj.com/ -10515 CN Foshan University http://www.fosu.edu.cn/ -10516 CN Fudan University http://www.fudan.edu.cn/ -10517 CN Fujian Agricultural University http://www.fjau.edu.cn/ -10518 CN Fujian Medical University http://www.fjmu.edu.cn/ -10519 CN Fujian Normal University http://www.fjnu.edu.cn/ -10520 CN Fujian University of Traditional Chinese Medicine http://www.fjtcm.edu.cn/ -10521 CN Fushun Petroleum University http://www.fspu.edu.cn/ -10522 CN Fuzhou University http://www.fzu.edu.cn/ -10523 CN Gansu Agricultural University http://www.gsau.edu.cn/ -10524 CN Gansu University of Technology http://www.gsut.edu.cn/ -10525 CN Guangdong Peizheng College http://www.peizheng.com.cn/ -10526 CN Guangdong Polytechnic Normal University http://www.gdin.edu.cn/ -10527 CN Guangdong Radio & TV University http://www.gdrtvu.edu.cn/ -10528 CN Guangdong University of Foreign Studies http://www.gdufs.edu.cn/ -10529 CN Guangdong University of Technology http://www.gdut.edu.cn/ -10530 CN Guangxi Medical University http://www.gxmu.edu.cn/ -10531 CN Guangxi Normal University http://www.gxnu.edu.cn/ -10532 CN Guangxi Traditional Chinese Medical University http://www.gxtcmu.edu.cn/ -10533 CN Guangxi University http://www.gxu.edu.cn/ -10534 CN Guangxi University for Nationalities http://www.gxun.edu.cn/ -10535 CN Guangzhou Academy of Fine Art http://www.gzarts.edu.cn/ -10536 CN Guangzhou Normal University http://www.guangztc.edu.cn/ -10537 CN Guangzhou University http://www.gzhu.edu.cn/ -10538 CN Guangzhou University of Traditional Chinese Medicine http://www.gzhtcm.edu.cn/ -10539 CN Guizhou Normal University http://www.gznu.edu.cn/ -10540 CN Guizhou University http://www.gzu.edu.cn/ -10541 CN Hainan Normal University http://www.hainnu.edu.cn/ -10542 CN Hainan University http://www.hainu.edu.cn/ -10543 CN Harbin Engineering University http://www.hrbeu.edu.cn/ -10544 CN Harbin Institute of Technology http://www.hit.edu.cn/ -10545 CN Harbin Medical University http://www.hrbmu.edu.cn/ -10546 CN Harbin Normal University http://www.hrbnu.edu.cn/ -10547 CN Harbin University of Civil Engineering & Architecture http://www.hrbucea.edu.cn/ -10548 CN Harbin University of Science and Technology http://www.hrbust.edu.cn/ -10549 CN Hebei Academy of Fine Art http://www.hbafa.com/ -10550 CN Hebei Agricultural University http://www.hebau.edu.cn/ -10551 CN Hebei Medical University http://www.hebmu.edu.cn/ -10552 CN Hebei Normal University http://www.hebnu.edu.cn/ -10553 CN Hebei United University http://www.hebeiuniteduniversity.com/ -10554 CN Hebei University http://www.hbu.edu.cn/ -10555 CN Hebei University of Economics and Trade http://www.heuet.edu.cn/ -10556 CN Hebei University of Science and Technology http://www.hebust.edu.cn/ -10557 CN Hebei University of Technology http://www.hebut.edu.cn/ -10558 CN Hefei University of Technology http://www.hfut.edu.cn/ -10559 CN Hehai University http://www.hhu.edu.cn/ -10560 CN Heilongjiang August 1st Reclamation University http://www.hlaflru.edu.cn/ -10561 CN Heilongjiang Commercial University http://www.hljcu.edu.cn/ -10562 CN Heilongjiang University http://www.hlju.edu.cn/ -10563 CN Henan Agriculture University http://www.henau.edu.cn/ -10564 CN Henan Buddhist College http://www.hnfjxy.cn/ -10565 CN Henan Normal University http://www.henannu.edu.cn/ -10566 CN Henan Univeristy http://www.henu.edu.cn/ -10567 CN Hohai University Changzhou http://www.hhuc.edu.cn/ -10568 CN Huaihai Institute of Technology http://www.hhit.edu.cn/ -10569 CN Huaihua Medical College http://www.yizhuan.com/ -10570 CN Huaihua Radio and Television University http://www.hhrtu.com/ -10571 CN Huaihua University http://www.hhu.edu.cn/ -10572 CN Huanghe Science & Technology University http://www.hhstu.edu.cn/ -10573 CN Huaqiao University Quanzhuo http://www.hqu.edu.cn/ -10574 CN Huazhong Agricultural University http://www.hzau.edu.cn/ -10575 CN Huazhong University of Science and Technology http://www.hust.edu.cn/ -10576 CN Hubei University http://www.hubu.edu.cn/ -10577 CN Huizhou University http://www.hzu.edu.cn/ -10578 CN Hunan Agricultural University http://www.hunau.net/ -10579 CN Hunan Normal University http://www.hunnu.edu.cn/ -10580 CN Hunan University http://www.hunu.edu.cn/ -10581 CN Inner Mongolia Agricultural University http://www.imau.edu.cn/ -10582 CN Inner Mongolia Normal University http://www.imnu.edu.cn/ -10583 CN Inner Mongolia Polytechnic University http://www.impu.edu.cn/ -10584 CN Inner Mongolia University http://www.imu.edu.cn/ -10585 CN International Business University of Beijing http://www.ibub.edu.cn/ -10586 CN Jiangsu University of Science and Technology http://www.jsust.edu.cn/ -10587 CN Jiangxi Agricultural University http://www.jxau.edu.cn/ -10588 CN Jiangxi Normal University http://www.jxnu.edu.cn/ -10589 CN Jiangxi University of Finance and Economics http://www.jxufe.edu.cn/ -10590 CN Jiangxi University of Traditional Chinese Medicine http://www.jutcm.com/ -10591 CN Jiaying University http://www.jyu.edu.cn/ -10592 CN Jilin Agricultural University http://www.jlau.edu.cn/ -10593 CN Jilin University http://www.jlu.edu.cn/ -10594 CN Jilin University of Technology http://www.jut.edu.cn/ -10595 CN Jimei University http://www.jmu.edu.cn/ -10596 CN Jinan University http://www.jnu.edu.cn/ -10597 CN Jingdezhen China Institute http://www.jci.edu.cn/ -10598 CN Jishou University http://www.jsu.edu.cn/ -10599 CN Kunmimg University of Science and Technology http://www.kmust.edu.cn/ -10600 CN Lanzhou University http://www.lzu.edu.cn/ -10601 CN Liaocheng Teachers University http://www.lctu.edu.cn/ -10602 CN Liaoning Normal University http://www.lnnu.edu.cn/ -10603 CN Liaoning Technical University http://www.lntu.edu.cn/ -10604 CN Liaoning University http://www.lnu.edu.cn/ -10605 CN Logistics Engineering University of PLA http://www.hqgc.net/ -10606 CN Ludong University http://www.ytnc.edu.cn/ -10607 CN Luxun Academy of Fine Art http://www.lumei.edu.cn/ -10608 CN Luzhou Medical College http://www.lzmc.edu.cn/ -10609 CN Nanchang University http://www.ncu.edu.cn/ -10610 CN Nanjing Agricultural University http://www.njau.edu.cn/ -10611 CN Nanjing Forestry University http://www.njfu.edu.cn/ -10612 CN Nanjing Institute of Meteorology http://www.njim.edu.cn/ -10613 CN Nanjing Medical University http://www.njmu.edu.cn/ -10614 CN Nanjing Normal University http://www.njnu.edu.cn/ -10615 CN Nanjing Union Theological Seminary http://www.njuts.cn/ -10616 CN Nanjing University http://www.nju.edu.cn/ -10617 CN Nanjing University of Aeronautics and Astronautics http://www.nuaa.edu.cn/ -10618 CN Nanjing University of Chemical Technology http://www.njuct.edu.cn/ -10619 CN Nanjing University of Economics http://www.njue.edu.cn/ -10620 CN Nanjing University of Posts and Telecommunications http://www.njupt.edu.cn/ -10621 CN Nanjing University of Science and Technology http://www.njust.edu.cn/ -10622 CN Nanjing University of Traditional Chinese Medicine http://www.njutcm.edu.cn/ -10623 CN Nankai University http://nku.nankai.edu.cn/ -10624 CN National University of Defense Technology http://www.nudt.edu.cn/ -10625 CN Neijiang Teacher University http://www.neijtc.edu.cn/ -10626 CN Ningbo University http://www.nbu.edu.cn/ -10627 CN Ningbo University of Technology http://www.nbut.edu.cn/ -10628 CN Ningxia Medical College http://www.nxmc.edu.cn/ -10629 CN Ningxia University http://www.nxu.edu.cn/ -10630 CN North China Electric Power University http://www.ncepubj.edu.cn/ -10631 CN North China University of Technology http://www.ncut.edu.cn/ -10632 CN Northeast Agricultural University http://www.neau.edu.cn/ -10633 CN Northeastern University http://www.neu.edu.cn/ -10634 CN Northeast Forest University http://www.nefu.edu.cn/ -10635 CN Northeast Normal University http://www.nenu.edu.cn/ -10636 CN Northeast University at Qinhuangdao Campus http://www.neuq.edu.cn/ -10637 CN Northern Jiaotong University http://www.njtu.edu.cn/ -10638 CN Northern Sichuan Medical College http://www.nsmc.edu.cn/ -10639 CN Northwest A&F University http://www.nwau.edu.cn/ -10640 CN Northwest Normal University Lanzhou http://www.nwnu.edu.cn/ -10641 CN Northwest Polytechnical University Xi'an http://www.nwpu.edu.cn/ -10642 CN Northwest University Xi'an http://www.nwu.edu.cn/ -10643 CN Ocean University of China http://www.ouc.edu.cn/ -10644 CN Panzhihua University http://www.pzhu.edu.cn/ -10645 CN Peking University http://www.pku.edu.cn/ -10646 CN Qingdao University http://www.qdu.edu.cn/ -10647 CN Qingdao University of Science and Technology http://www.qust.edu.cn/ -10648 CN Qinghai Normal University http://www.qhnu.edu.cn/ -10649 CN Qinghai Radio & Television University http://www.qhrtvu.edu.cn/ -10650 CN Qinghai University http://www.qhu.edu.cn/ -10651 CN Qiongzhou University http://www.qzu.edu.cn/ -10652 CN Qufu Normal University http://www.qfnu.edu.cn/ -10653 CN Renmin University of China http://www.ruc.edu.cn/ -10654 CN Shaanxi Normal University http://www.snnu.edu.cn/ -10655 CN Shandong Agricultural University http://www.sdau.edu.cn/ -10656 CN Shandong Economic University http://www.sdie.edu.cn/ -10657 CN Shandong Medical University http://www.sdmu.edu.cn/ -10658 CN Shandong Normal University http://www.sdnu.edu.cn/ -10659 CN Shandong University http://www.sdu.edu.cn/ -10660 CN Shandong University of Art and Design http://www.sdada.edu.cn/ -10661 CN Shandong University of Science and Technology http://www.sdust.edu.cn/ -10662 CN Shandong University of Technology http://www.sdut.edu.cn/ -10663 CN Shandong University of Triaditional Chinese Medicine http://www.sdutcm.edu.cn/ -10664 CN Shanghai Business School http://www.sbs.edu.cn/ -10665 CN Shanghai City College http://www.umcollege.com/ -10666 CN Shanghai Customs College http://shanghai_edu.customs.gov.cn/ -10667 CN Shanghai Dainji University http://www.sdju.edu.cn/ -10668 CN Shanghai Institue of Foreign Trade http://www.shift.edu.cn/ -10669 CN Shanghai International Studies University http://www.shisu.edu.cn/ -10670 CN Shanghai Jiaotong University http://www.sjtu.edu.cn/ -10671 CN Shanghai Lida Polytechnic Institute http://www.lidapoly.com/ -10672 CN Shanghai Lixin University of Commerce http://www.lixin.edu.cn/ -10673 CN Shanghai Maritime University http://www.shmtu.edu.cn/ -10674 CN Shanghai Medical University http://www.shmu.edu.cn/ -10675 CN Shanghai Normal University http://www.shtu.edu.cn/ -10676 CN Shanghai Ocean University http://www.shou.edu.cn/ -10677 CN Shanghai Ouhua Vocational Technical College http://www.shouhua.net.cn/ -10678 CN Shanghai Sanda University http://www.sandau.edu.cn/ -10679 CN Shanghai Second Medical University http://www.shsmu.edu.cn/ -10680 CN Shanghai Second Polytechnic University http://www.shspu.edu.cn/ -10681 CN Shanghai Sipo Polytechnic http://www.sh-sipopolytechnic.com/ -10682 CN Shanghai Television University http://www.shtvu.edu.cn/ -10683 CN Shanghai TieDao University http://www.shtdu.edu.cn/ -10684 CN Shanghai University http://www.shu.edu.cn/ -10685 CN Shanghai University of Engineering Science http://www.sues.edu.cn/ -10686 CN Shanghai University of Finance and Economics http://www.shufe.edu.cn/ -10687 CN Shanghai University of Science and Technology http://www.usst.edu.cn/ -10688 CN Shanghai University of Traditional Chinese Medicine and Pharmacology http://www.shutcm.edu.cn/ -10689 CN Shantou University http://www.stu.edu.cn/ -10690 CN Shanxi Agricultural University http://www.sxau.edu.cn/ -10691 CN Shanxi Normal University http://www.snnu.edu.cn/ -10692 CN Shanxi University http://www.sxu.edu.cn/ -10693 CN Shaoguan University http://www.sgu.edu.cn/ -10694 CN Shenyang Institute of Chemical Technology http://www.syict.edu.cn/ -10695 CN Shenyang Jianzhu University http://www.sjzu.edu.cn/ -10696 CN Shenyang Pharmaceutical University http://www.syphu.edu.cn/ -10697 CN Shenyang Polytechnic University http://www.sypu.edu.cn/ -10698 CN Shenyang University http://www.syu.edu.cn/ -10699 CN Shenzhen University http://www.szu.edu.cn/ -10700 CN Shihezi University http://www.shzu.edu.cn/ -10701 CN Sichuan Agricultural University http://www.sicau.edu.cn/ -10702 CN Sichuan Fine Art Institute http://zsb.scfai.edu.cn/ -10703 CN Sichuan International Studies University http://www.sisu.edu.cn/ -10704 CN Sichuan Normal University http://www.sicnu.edu.cn/ -10705 CN Sichuan University http://www.scu.edu.cn/ -10706 CN South China Agricultural University http://www.scau.edu.cn/ -10707 CN South China Construction University http://www.sccu.edu.cn/ -10708 CN South China Normal University http://www.scnu.edu.cn/ -10709 CN South China University http://www.usc.edu.cn/ -10710 CN South China University of Technology http://www.scut.edu.cn/ -10711 CN Southeast University http://www.seu.edu.cn/ -10712 CN Southern Medial University http://www.fimmu.edu.cn/ -10713 CN Southern Yangtze University http://www.sytu.edu.cn/ -10714 CN South University of Science and Technology of China http://www.sustc.edu.cn/ -10715 CN Southwest Agricultural University http://www.swau.edu.cn/ -10716 CN Southwest Forestry University http://www.swfc.edu.cn/ -10717 CN Southwest Jiaotong University http://www.swjtu.edu.cn/ -10718 CN Southwest Petroleum University http://www.swpu.edu.cn/ -10719 CN Southwest University http://www.swnu.edu.cn/ -10720 CN Southwest University of Finance and Economics http://www.swufe.edu.cn/ -10721 CN Southwest University of Nationalities http://www.swun.edu.cn/ -10722 CN Southwest University of Political Science and Law http://www.swupl.edu.cn/ -10723 CN Southwest University of Science and Technology http://www.swust.edu.cn/ -10724 CN South West University Yucai College http://www.swuyc.edu.cn/ -10725 CN Sun Yat-Sen University of Medical Sciences http://www.gzsums.edu.cn/ -10726 CN Suzhou University http://www.suda.edu.cn/ -10727 CN Taiyuan University of Technology http://www.tyut.edu.cn/ -10728 CN Taizhou College http://www.tzc.edu.cn/ -10729 CN Tarim University http://www.taru.edu.cn/ -10730 CN The University of Nottingham Ningbo China http://www.nottingham.edu.cn/ -10731 CN Tianjin Academy of Fine Art http://www.tjarts.edu.cn/ -10732 CN Tianjin Medical University http://www.tijmu.edu.cn/ -10733 CN Tianjin Normal University http://www.tjnu.edu.cn/ -10734 CN Tianjin Open University http://www.tjrtvu.edu.cn/ -10735 CN Tianjin Polytechnic University http://www.tjpu.edu.cn/ -10736 CN Tianjin University http://www.tju.edu.cn/ -10737 CN Tianjin University of Commerce http://www.tjcu.edu.cn/ -10738 CN Tianjin University of Finance & Economics http://www.tjufe.edu.cn/ -10739 CN Tianjin University of Technology http://www.tjut.edu.cn/ -10740 CN Tibet Agricultural and Animal Husbandry College http://www.xza.cn/ -10741 CN Tibet Tibetan Medical College http://www.ttmc.edu.cn/ -10742 CN Tibet University http://www.utibet.edu.cn/ -10743 CN Tibet University of Nationalities http://www.xzmy.edu.cn/ -10744 CN Tongji Medical University http://www.tjmu.edu.cn/ -10745 CN Tongji University http://www.tongji.edu.cn/ -10746 CN Tsinghua University http://www.tsinghua.edu.cn/ -10747 CN University of Electronic Science and Technology of China http://www.uestc.edu.cn/ -10748 CN University of Hydraulic Electric Engineering http://www.uheeyc.edu.cn/ -10749 CN University of International Business and Economics http://www.uibe.edu.cn/ -10750 CN University of Jinan http://www.ujn.edu.cn/ -10751 CN University of Petroleum (East China) http://www.hdpu.edu.cn/ -10752 CN University of Science and Technology Beijing http://www.ustb.edu.cn/ -10753 CN University of Science and Technology of China http://www.ustc.edu.cn/ -10754 CN Urumqi Vocational University http://www.uvu.edu.cn/ -10755 CN Wenzhou Medical College http://www.wzmu.net/ -10756 CN Wenzhou University http://www.wzu.edu.cn/ -10757 CN West China University of Medical Sciences http://www.wcums.edu.cn/ -10758 CN Wudanshan Taoist College http://www.wdsdjxy.com/ -10759 CN Wuhan Automobile Polytechnical University http://www.whapu.edu.cn/ -10760 CN Wuhan Technical University of Surveying and Mapping http://www.wtusm.edu.cn/ -10761 CN Wuhan Transportation University http://www.whtu.edu.cn/ -10762 CN Wuhan University http://www.whu.edu.cn/ -10763 CN Wuhan University of Hydraulic and Electric Engineering http://www.wuhee.edu.cn/ -10764 CN Wuhan University of Technology http://www.whut.edu.cn/ -10765 CN Wuhan University School of Medicine http://wsm.whu.edu.cn/ -10766 CN Wuxi University of Light Industry http://www.wxuli.edu.cn/ -10767 CN Wuyi University http://www.wyu.edu.cn/ -10768 CN Xiamen University http://www.xmu.edu.cn/ -10769 CN Xi'an Academy of Fine Art http://www.xafa.edu.cn/ -10770 CN Xiangtan Normal University http://www.xtnu.edu.cn/ -10771 CN Xiangtan University http://www.xtu.edu.cn/ -10772 CN Xi'an Highway University http://www.xahu.edu.cn/ -10773 CN Xi'an International Studies University http://www.xisu.edu.cn/ -10774 CN Xi'an Jiaotong-Liverpool University http://www.xjtlu.edu.cn/ -10775 CN Xi'an Jiaotong University http://www.xjtu.edu.cn/ -10776 CN Xi'an University of Architecture and Technology http://www.xauat.edu.cn/ -10777 CN Xi'an University of Electronic Science and Technology http://www.xidian.edu.cn/ -10778 CN Xi'an University of Technology http://www.xaut.edu.cn/ -10779 CN Xihua University http://www.xhu.edu.cn/ -10780 CN Xijiang University http://www.xiju.edu.cn/ -10781 CN Xinghai Conservatory of Music http://www.xhcom.edu.cn/ -10782 CN Xinjiang Agriculture University http://www.xjau.edu.cn/ -10783 CN Xinjiang Normal University http://www.xjnu.edu.cn/ -10784 CN Xinjiang University http://www.xju.edu.cn/ -10785 CN Xinjiang University of Finance and Economics http://www.xjufe.edu.cn/ -10786 CN Xuzhou Normal University http://www.xznu.edu.cn/ -10787 CN Yan'an University http://www.yau.edu.cn/ -10788 CN Yanbian University http://www.ybu.edu.cn/ -10789 CN Yanbian University of Science and Technology http://www.ybust.edu.cn/ -10790 CN Yangtze Normal University http://www.yznu.cn/ -10791 CN Yangtze University http://www.yangtzeu.edu.cn/ -10792 CN Yangzhou University http://www.yzu.edu.cn/ -10793 CN Yan Shan University http://www.ysu.edu.cn/ -10794 CN Yantai Education Institute & Yantai Television University http://www.ytet.edu.cn/ -10795 CN Yantai University http://www.ytu.edu.cn/ -10796 CN Yunnan Agriculture University http://www.ynau.edu.cn/ -10797 CN Yunnan Normal University http://www.ynnu.edu.cn/ -10798 CN Yunnan University http://www.ynu.edu.cn/ -10799 CN Zhanjiang Ocean University http://www.zjou.edu.cn/ -10800 CN Zhejiang Forestry University http://www.zjfc.edu.cn/ -10801 CN Zhejiang Gongshang University http://www.zjgsu.edu.cn/ -10802 CN Zhejiang Normal University http://www.zjnu.edu.cn/ -10803 CN Zhejiang Sci-Tech University http://www.zstu.edu.cn/ -10804 CN Zhejiang University http://www.zju.edu.cn/ -10805 CN Zhejiang University of Technology http://www.zjut.edu.cn/ -10806 CN Zhengda Software College http://www.zdsoft.com.cn/ -10807 CN Zhengzhou Grain University http://www.zzgc.edu.cn/ -10808 CN Zhengzhou University of Technology http://www.zzut.edu.cn/ -10809 CN Zhongnan University of Economics and Law http://www.znuel.net/ -10810 CN Zhongnan University of Finance and Economics http://www.znufe.edu.cn/ -10811 CN Zhongnan University of Technology http://www.zhnut.edu.cn/ -10812 CN Zhongshan University http://www.zsu.edu.cn/ -10813 CO Centro de Estudios Investigación y Tecnología (CEIT) http://www.iceit.edu.co/ -10896 CO Universidad Industrial de Santander http://www.uis.edu.co/ -10814 CO Colegio de Estudios Superiores de Administración (CESA) http://www.cesa.edu.co/ -10815 CO Conservatorio del Tolima http://www.bundenet.com/umusical/ -10816 CO Corporación Educativa Mayor del Desarrollo "Simón Bolivar" http://www.unisimonbolivar.edu.co/ -10817 CO Corporación Universitaria de Ibagué (CORUNIVERSITARIA) http://www.cui.edu.co/ -10818 CO Corporación Universitaria de la Costa (UNICOSTA) http://www.cuc.edu.co/ -10819 CO Corporación Universitaria de Santander (UDES) http://www.udes.edu.co/ -10820 CO Corporación Universitaria Tecnológica de Bolivar http://www.cutb.edu.co/ -10821 CO Escuela Colombiana de Carreras Industriales http://www.ecci.edu.co/ -10822 CO Escuela Colombiana de Ingeniería Julio Garavito http://www.escuelaing.edu.co/ -10823 CO Escuela de Administración de Negocios http://www.ean.edu.co/ -10824 CO Escuela de Ingeniería de Antioquia http://www.eia.edu.co/ -10825 CO Escuela de Policia "General Santander" http://www.escueladepolicia.edu.co/ -10826 CO Escuela Superiore de Administración Pública http://www.esap.edu.co/ -10827 CO Fundacion Escuela Colombiana de Rehabiliación http://www.ecr.edu.co/ -10828 CO Fundación Universitaria de Boyacá http://www.uniboyaca.edu.co/ -10829 CO Fundación Universitaria del Area Andina. Sede Pereira http://www.funandi.edu.co/ -10830 CO Fundación Universitaria Luis Amigó http://www.funlam.edu.co/ -10831 CO Fundación Universitaria Manuela Beltrán http://www.umb.edu.co/ -10832 CO Fundación Universitaria San Martín http://www.sanmartin.edu.co/ -10833 CO Institucion Universitaria de Envigado http://www.iue.edu.co/ -10834 CO Institución Universitaria Iberoamericana http://www.iberoamericana.edu.co/ -10835 CO Instituto Tecnológico Metropolitano http://www.itm.edu.co/ -10836 CO Instituto Universitario de La Paz http://www.unipaz.edu.co/ -10837 CO Politécnico Columbiano "Jaime Isaza Cadavid" http://www.politecjic.edu.co/ -10838 CO Politécnico Grancolombiano - Institución Universitaria http://www.poligran.edu.co/ -10839 CO Pontificia Universidad Javeriana http://www.javeriana.edu.co/ -10840 CO Universidad Adventista de Colombia http://www.unac.edu.co/ -10841 CO Universidad Antonio Nariño http://www.uanarino.edu.co/ -10842 CO Universidad Autónoma de Bucaramanga http://www.unab.edu.co/ -10843 CO Universidad Autónoma de Colombia http://www.fuac.edu.co/ -10844 CO Universidad Autónoma de Las Américas http://www.uam.edu.co/ -10845 CO Universidad Autónoma del Caribe http://www.uac.edu.co/ -10846 CO Universidad Autónoma de Manizales http://www.autonoma.edu.co/ -10847 CO Universidad Autónoma de Occidente http://www.cuao.edu.co/ -10848 CO Universidad Autónoma Latinoamericana http://www.unaula.edu.co/ -10849 CO Universidad Bellas Artes http://www.bellasartes.edu.co/ -10850 CO Universidad Católica de Colombia http://www.ucatolica.edu.co/ -10851 CO Universidad Católica del Norte http://www.ucn.edu.co/ -10852 CO Universidad Católica del Oriente http://www.uco.edu.co/ -10853 CO Universidad Católica de Manizales http://www.ucatolicamz.edu.co/ -10854 CO Universidad Católica Popular del Risaralda http://www.ucpr.edu.co/ -10855 CO Universidad Central http://www.ucentral.edu.co/ -10856 CO Universidad Central del Valle del Cauca http://www.uceva.edu.co/ -10857 CO Universidad CES http://www.ces.edu.co/ -10858 CO Universidad Cooperativa de Colombia http://www.ucc.edu.co/ -10859 CO Universidad de América Bogotá http://www.uamerica.edu.co/ -10860 CO Universidad de Antioquia http://www.udea.edu.co/ -10861 CO Universidad de Antioquía http://www.udea.edu.co/ -10862 CO Universidad de Bogotá "Jorge Tadeo Lozano" http://www.utadeo.edu.co/ -10863 CO Universidad de Caldas http://www.ucaldas.edu.co/ -10864 CO Universidad de Cartagena http://www.unicartagena.edu.co/ -10865 CO Universidad de Ciencias Aplicadas y Ambientales (UDCA) http://www.udca.edu.co/ -10866 CO Universidad de Córdoba http://www.unicordoba.edu.co/ -10867 CO Universidad de La Amazonia http://www.uniamazonia.edu.co/ -10868 CO Universidad de La Guajira http://www.uniguajira.edu.co/ -10869 CO Universidad de La Sabana http://www.unisabana.edu.co/ -10870 CO Universidad de La Salle http://www.lasalle.edu.co/ -10871 CO Universidad del Atlántico http://www.uniatlantico.edu.co/ -10872 CO Universidad del Cauca http://www.ucauca.edu.co/ -10873 CO Universidad del Magdalena http://www.unimagdalena.edu.co/ -10874 CO Universidad del Norte http://www.uninorte.edu.co/ -10875 CO Universidad de Los Andes http://www.uniandes.edu.co/ -10876 CO Universidad de Los Llanos http://www.unillanos.edu.co/ -10877 CO Universidad del Quindío http://www.uniquindio.edu.co/ -10878 CO Universidad del Rosario http://www.urosario.edu.co/ -10879 CO Universidad del Sinú http://www.unisinucartagena.edu.co/ -10880 CO Universidad del Tolima http://www.ut.edu.co/ -10881 CO Universidad del Valle del Cauca http://www.univalle.edu.co/ -10882 CO Universidad de Manizales http://www.umanizales.edu.co/ -10883 CO Universidad de Medellín http://www.udem.edu.co/ -10884 CO Universidad de Nariño http://www.udenar.edu.co/ -10885 CO Universidad de Pamplona http://www.unipamplona.edu.co/ -10886 CO Universidad de San Buenaventura http://www.usb.edu.co/ -10887 CO Universidad de San Buenaventura Medellin http://www.usbmed.edu.co/ -10888 CO Universidad de Sucre http://www.unisucre.edu.co/ -10889 CO Universidad Distral "Francisco José de Caldas" http://www.udistrital.edu.co/ -10890 CO Universidad EAFIT http://www.eafit.edu.co/ -10891 CO Universidad El Bosque http://www.unbosque.edu.co/ -10892 CO Universidad Externado de Colombia http://www.uexternado.edu.co/ -10893 CO Universidad Francisco de Paula Santander http://www.ufps.edu.co/ -10894 CO Universidad ICESI http://www.icesi.edu.co/ -10895 CO Universidad INCCA de Colombia http://www.unincca.edu.co/ -10897 CO Universidad La Gran Colombia http://www.ugrancolombia.edu.co/ -10898 CO Universidad Libre de Colombia http://www.unilibre.edu.co/ -10899 CO Universidad Mariana http://www.umariana.edu.co/ -10900 CO Universidad Metropolitana http://www.unimetro.edu.co/ -10901 CO Universidad Militar Nueva Granada http://www.umng.edu.co/ -10902 CO Universidad Nacional Abierta y a Distancia http://www.unad.edu.co/ -10903 CO Universidad Nacional de Colombia http://www.unal.edu.co/ -10904 CO Universidad Pedagogica Nacional http://www.pedagogica.edu.co/ -10905 CO Universidad Pedagógica y Tecnológica de Colombia http://www.uptc.edu.co/ -10906 CO Universidad Piloto de Colombia http://www.unipiloto.edu.co/ -10907 CO Universidad Pontificia Bolivariana http://www.upb.edu.co/ -10908 CO Universidad Popular del Cesar http://www.unicesar.edu.co/ -10909 CO Universidad Santiago de Cali http://www.usaca.edu.co/ -10910 CO Universidad Santo Tomás http://www.usta.edu.co/ -10911 CO Universidad Sergio Arboleda http://www.usergioarboleda.edu.co/ -10912 CO Universidad Surcolombiana http://www.usurcolombia.com/ -10913 CO Universidad Tecnológica del Choco "Diego Luis Cordoba" http://www.utch.edu.co/ -10914 CO Universidad Tecnológica de Pereira http://www.utp.edu.co/ -10915 CR Instituto Tecnológico de Costa Rica http://www.itcr.ac.cr/ -10916 CR Universidad Adventista de Centro América http://www.unadeca.ac.cr/ -10917 CR Universidad Autónoma de Centro América http://www.uaca.ac.cr/ -10918 CR Universidad Autonoma Monterrey http://www.unam.ac.cr/ -10919 CR Universidad Braulio Carrillo http://www.universidadbrauliocarrillo.com/ -10920 CR Universidad Católica Anselmo Llorente http://www.ucatolica.ac.cr/ -10921 CR Universidad Central http://www.universidadcentral.com/ -10922 CR Universidad de Cartago Florencio del Castillo http://www.uca.ac.cr/ -10923 CR Universidad de Costa Rica http://www.ucr.ac.cr/ -10924 CR Universidad de Iberoamérica http://www.unibe.ac.cr/ -10925 CR Universidad de La Salle http://www.ulasalle.ac.cr/ -10926 CR Universidad del Turismo http://www.utur.ac.cr/ -10927 CR Universidad de San José http://www.universidadsanjosecr.com/ -10928 CR Universidad Empresarial http://www.unem.edu/internacional/ -10929 CR Universidad Estatal a Distancia http://www.uned.ac.cr/ -10930 CR Universidad Fidélitas http://www.ufidelitas.ac.cr/ -10931 CR Universidad Fundepos Alma Mater http://www.fundepos.ac.cr/ -10932 CR Universidad Hispanoamericana http://www.uhispanoamericana.ac.cr/ -10933 CR Universidad Internacional de las Américas http://www.uia.ac.cr/ -10934 CR Universidad Isaac Newton http://www.isaacnewtoncr.com/ -10935 CR Universidad Latina de Costa Rica http://www.ulatina.ac.cr/ -10936 CR Universidad Latinoamericana de Ciencia y Tecnología http://www.ulacit.ac.cr/ -10937 CR Universidad Libre de Costa Rica http://www.ulicori.ac.cr/ -10938 CR Universidad Metropolitana Castro Carazo http://www.umca.net/ -10939 CR Universidad Nacional http://www.una.ac.cr/ -10940 CR Universidad para la Cooperación Internacional http://www.uci.ac.cr/ -10941 CR Universidad San Juan de la Cruz http://www.universidadsanjuan.ac.cr/ -10942 CR Universidad San Juan de la Cruz http://www.sjdlc.com/ -10943 CR Universidad San Marcos http://www.usam.ac.cr/ -10944 CR Universidad Santa Paula http://www.uspsantapaula.com/ -10945 CR Universidad Veritas http://www.uveritas.ac.cr/ -10946 CR University for Peace http://www.upeace.org/ -10947 CU Instituto Superior Minero Metalúrgico "Dr. Antonio Núñez Jiménez" http://www.ismm.edu.cu/ -10948 CU Instituto Superior Politécnico José Antonio Echeverría http://www.cujae.edu.cu/ -10949 CU Universidad Central de Las Villas http://www.uclv.edu.cu/ -10950 CU Universidad de Camagüey http://www.reduc.edu.cu/ -10951 CU Universidad de Ciego de Avila http://www.unica.cu/ -10952 CU Universidad de Cienfuegos http://www.ucf.edu.cu/ -10953 CU Universidad de Granma http://www.udg.co.cu/ -10954 CU Universidad de Holguín http://www.uho.edu.cu/ -10955 CU Universidad de La Habana http://www.uh.cu/ -10956 CU Universidad de Matanzas Camilo Cienfuegos http://www.umcc.cu/ -10957 CU Universidad de Oriente http://www.uo.edu.cu/ -10958 CU Universidad de Pinar del Río http://www.upr.edu.cu/ -10959 CU Universidad Pedagógica "José Martí", Camagüey http://www.ispcmw.rimed.cu/ -10960 CV Universidade Jean Piaget de Cabo Verde http://cv.unipiaget.org/ -10961 CY Americanos College http://www.ac.ac.cy/ -10962 CY Cyprus College http://www.cycollege.ac.cy/ -10963 CY Cyprus International Institute of Management (CIIM) http://www.ciim.ac.cy/ -10964 CY Cyprus International University http://www.ciu.edu.tr/ -10965 CY Cyprus University of Technology http://www.cut.ac.cy/ -10966 CY Eastern Mediterranean University http://www.emu.edu.tr/ -10967 CY European University Cyprus http://www.euc.ac.cy/ -10968 CY European University of Lefke http://www.lefke.edu.tr/ -10969 CY Frederick University http://www.frederick.ac.cy/ -10970 CY Girne American University http://www.gau.edu.tr/ -10971 CY Intercollege http://www.intercollege.ac.cy/ -10972 CY Near East University http://www.neu.edu.tr/ -10973 CY Open University of Cyprus http://www.ouc.ac.cy/ -10974 CY The CTL Eurocollege http://www.ctleuro.ac.cy/ -10975 CY University of Cyprus http://www.ucy.ac.cy/ -10976 CY University of Nicosia http://www.unic.ac.cy/ -10977 CZ Academy of Performing Arts, Film and TV Fakulty http://www.famu.cz/ -10978 CZ Anglo-American University http://www.aauni.edu/ -10979 CZ Brno University of Technology http://www.vutbr.cz/ -10980 CZ Cevro Institut College http://www.vsci.cz/ -10981 CZ Charles University Prague http://www.cuni.cz/ -10982 CZ Czech Technical University of Prague http://www.cvut.cz/ -10983 CZ Czech University of Agriculture Prague http://www.czu.cz/ -10984 CZ Masaryk University http://www.muni.cz/ -10985 CZ Mendel University of Agriculture and Forestry http://www.mendelu.cz/ -10986 CZ Palacky University http://www.upol.cz/ -10987 CZ Prague College http://www.praguecollege.cz/ -10988 CZ Prague Institute of Chemical Technology http://www.vscht.cz/ -10989 CZ Prague International University http://www.mpu-prague.cz/ -10990 CZ Silesian University http://www.slu.cz/ -10991 CZ Technical University of Liberec http://www.vslib.cz/ -10992 CZ Technical University of Mining and Metallurgy Ostrava http://www.vsb.cz/ -10993 CZ Tiffin University Prague http://www.tiffinprague.cz/ -10994 CZ Tomas Bata University in Zlin http://www.utb.cz/ -10995 CZ University of Economics Prague http://www.vse.cz/ -10996 CZ University of Education Hradec Kralove http://www.vsp.cz/ -10997 CZ University of Jan Evangelista Purkyne http://www.ujep.cz/ -10998 CZ University of New York in Prague http://www.unyp.cz/ -10999 CZ University of Northern Virginia, Prague Campus http://www.unva.cz/ -11000 CZ University of Ostrava http://www.osu.cz/ -11001 CZ University of Pardubice http://www.upce.cz/ -11002 CZ University of South Bohemia http://www.jcu.cz/ -11003 CZ University of Veterinary and Pharmaceutical Science http://www.vfu.cz/ -11004 CZ University of West Bohemia http://www.zcu.cz/ -11005 DE AKAD Hochschulen für Berufstätige, Fachhochschule Leipzig http://www.akad.de/ -11006 DE Albert-Ludwigs-Universität Freiburg http://www.uni-freiburg.de/ -11007 DE Alice-Salomon-Fachhochschule für Sozialarbeit und Sozialpädagogik Berlin http://www.asfh-berlin.de/ -11008 DE Augustana Hochschule Neuendettelsau http://www.augustana.de/ -11009 DE Bauhaus Universität Weimar http://www.uni-weimar.de/ -11010 DE Bayerische Julius-Maximilians-Universität Würzburg http://www.uni-wuerzburg.de/ -11011 DE Bergische Universität Gesamthochschule Wuppertal http://www.uni-wuppertal.de/ -11012 DE BiTS - Business and Information Technology School gGmbH http://www.bits-iserlohn.de/ -11013 DE Brandenburgische Technische Universität Cottbus http://www.tu-cottbus.de/ -11014 DE Carl von Ossietzky Universität Oldenburg http://www.uni-oldenburg.de/ -11015 DE Christian-Albrechts-Universität Kiel http://www.uni-kiel.de/ -11016 DE Cologne Business School http://www.cbs.de/ -11017 DE Deutsche Hochschule für Verwaltungswissenschaften Speyer http://www.dhv-speyer.de/ -11018 DE Deutsche Sporthochschule Köln http://www.dshs-koeln.de/ -11019 DE Deutsche Telekom Fachhochschule Leipzig http://www.fh-telekom-leipzig.de/ -11020 DE Deutsch-Ordens Fachhochschule Riedlingen, Hochschule für Wirtschaft http://www.fh-riedlingen.de/ -11021 DE DIPLOMA-Fachhochschule Ölsnitz/Vogtland http://www.diploma.de/ -11022 DE Duale Hochschule Baden-Württemberg http://www.dhbw.de/ -11023 DE E.A.P. Europäische Wirtschaftshochschule Berlin http://www.eap.net/ -11024 DE Eberhard-Karls-Universität Tübingen http://www.uni-tuebingen.de/ -11025 DE Ernst-Moritz-Arndt Universität Greifswald http://www.uni-greifswald.de/ -11026 DE Europa Fachhochschule Fresenius http://www.fh-fresenius.de/ -11027 DE Europäische Betriebswirtschafts-Akademie http://www.eba-muenchen.de/ -11028 DE Europäische Fachhochschule http://www.eufh.de/ -11029 DE Europa-Universität Viadrina Frankfurt (Oder) http://www.euv-frankfurt-o.de/ -11030 DE European Business School Schloß Reichartshausen http://www.ebs.de/ -11031 DE European College of Liberal Arts http://www.ecla.de/ -11032 DE European Management School http://www.ems-mainz.de/ -11033 DE Evangelische Fachhochschule Berlin, Fachhochschule für Sozialarbeit und Sozialpädagogik http://www.evfh-berlin.de/ -11034 DE Evangelische Fachhochschule Darmstadt http://www.efh-darmstadt.de/ -11035 DE Evangelische Fachhochschule Freiburg, Hochschule für Soziale Arbeit, Diakonie und Religionspädagogik http://www.efh-freiburg.de/ -11036 DE Evangelische Fachhochschule für Religionspädagogik, und Gemeindediakonie Moritzburg http://www.fhs-moritzburg.de/ -11037 DE Evangelische Fachhochschule für Sozialpädagogik der "Diakonenanstalt des Rauhen Hauses" Hamburg http://www.rauheshaus.de/fachhochschule/ -11038 DE Evangelische Fachhochschule Hannover http://www.efh-hannover.de/ -11039 DE Evangelische Fachhochschule Ludwigshafen Hochschule für Sozial- und Gesundheitswesen http://www.efhlu.de/ -11040 DE Evangelische Fachhochschule Nürnberg http://www.evfh-nuernberg.de/ -11041 DE Evangelische Fachhochschule Reutlingen-Ludwigsburg, Hochschule für Soziale Arbeit, Religionspädagogik und Diakonie http://www.efh-reutlingen-ludwigsburg.de/ -11042 DE Evangelische Fachhochschule Rheinland-Westfalen-Lippe http://www.efh-bochum.de/ -11043 DE Evangelische Hochschule für Soziale Arbeit Dresden (FH) http://www.ehs-dresden.de/ -11044 DE Fachhochschule Aachen http://www.fh-aachen.de/ -11045 DE Fachhochschule Aschaffenburg http://www.fh-aschaffenburg.de/ -11046 DE Fachhochschule Augsburg http://www.fh-augsburg.de/ -11047 DE Fachhochschule Biberach, Hochschule für Bauwesen und Wirtschaft http://www.fh-biberach.de/ -11048 DE Fachhochschule Bielefeld http://www.fh-bielefeld.de/ -11049 DE Fachhochschule Bingen http://www.fh-bingen.de/ -11050 DE Fachhochschule Bochum http://www.fh-bochum.de/ -11051 DE Fachhochschule Bonn-Rhein-Sieg http://www.fh-bonn-rhein-sieg.de/ -11052 DE Fachhochschule Brandenburg http://www.fh-brandenburg.de/ -11053 DE Fachhochschule Braunschweig/Wolfenbüttel http://www.fh-wolfenbuettel.de/ -11054 DE Fachhochschule Deggendorf http://www.fh-deggendorf.de/ -11055 DE Fachhochschule der Wirtschaft http://www.fhdw.de/ -11056 DE Fachhochschule des Mittelstandes (FHM) http://www.fhm-mittelstand.de/ -11057 DE Fachhochschule Dortmund http://www.fh-dortmund.de/ -11058 DE Fachhochschule Düsseldorf http://www.fh-duesseldorf.de/ -11059 DE Fachhochschule Eberswalde http://www.fh-eberswalde.de/ -11060 DE Fachhochschule Erfurt http://www.fh-erfurt.de/ -11061 DE Fachhochschule Flensburg http://www.fh-flensburg.de/ -11062 DE Fachhochschule Frankfurt am Main http://www.fh-frankfurt.de/ -11063 DE Fachhochschule für das öffentliche Bibliothekswesen Bonn http://www.fhoebb.de/ -11064 DE Fachhochschule für die Wirtschaft http://www.fhdw.bib.de/ -11065 DE Fachhochschule für Oekonomie und Management (FOM) http://www.fom.de/ -11066 DE Fachhochschule für Technik und Wirtschaft Berlin http://www.fhtw-berlin.de/ -11067 DE Fachhochschule Furtwangen, Hochschule für Technik und Wirtschaft http://www.fh-furtwangen.de/ -11068 DE Fachhochschule für Verwaltung und Rechtspflege Berlin http://www.fhvr.berlin.de/ -11069 DE Fachhochschule für Wirtschaft Berlin http://www.fhw-berlin.de/ -11070 DE Fachhochschule Gelsenkirchen http://www.fh-gelsenkirchen.de/ -11071 DE Fachhochschule Gießen-Friedberg http://www.fh-giessen.de/ -11072 DE Fachhochschule Hamburg http://www.fh-hamburg.de/ -11073 DE Fachhochschule Hannover http://www.fh-hannover.de/ -11074 DE Fachhochschule Heidelberg http://www.fh-heidelberg.de/ -11075 DE Fachhochschule Heilbronn, Hochschule für Technik und Wirtschaft http://www.fh-heilbronn.de/ -11076 DE Fachhochschule Hildesheim/Holzminden/Göttingen, Hochschule für angewandte Wissenschaft und Kunst http://www.fh-hildesheim.de/ -11077 DE Fachhochschule Hof http://www.fh-hof.de/ -11078 DE Fachhochschule Ingolstadt http://www.fh-ingolstadt.de/ -11079 DE Fachhochschule Jena http://www.fh-jena.de/ -11080 DE Fachhochschule Kaiserslautern http://www.fh-kl.de/ -11081 DE Fachhochschule Kempten, Hochschule für Technik und Wirtschaft http://www.fh-Kempten.de/ -11082 DE Fachhochschule Kiel http://www.fh-kiel.de/ -11083 DE Fachhochschule Koblenz http://www.fh-koblenz.de/ -11084 DE Fachhochschule Köln http://www.fh-koeln.de/ -11085 DE Fachhochschule Konstanz, Hochschule für Technik, Wirtschaft und Gestaltung http://www.fh-konstanz.de/ -11086 DE Fachhochschule Landshut, Hochschule für Wirtschaft - Sozialwesen - Technik http://www.fh-landshut.de/ -11087 DE Fachhochschule Lausitz http://www.fh-lausitz.de/ -11088 DE Fachhochschule Lippe http://www.fh-lippe.de/ -11089 DE Fachhochschule Lübeck http://www.fh-luebeck.de/ -11090 DE Fachhochschule Ludwigshafen, Hochschule für Wirtschaft http://www.fh-ludwigshafen.de/ -11091 DE Fachhochschule Mainz http://www.fh-mainz.de/ -11092 DE Fachhochschule Mannheim, Hochschule für Sozialwesen http://www.fhs-mannheim.de/ -11093 DE Fachhochschule Mannheim, Hochschule für Technik und Gestaltung http://www.fh-mannheim.de/ -11094 DE Fachhochschule Merseburg http://www.fh-merseburg.de/ -11095 DE Fachhochschule München http://www.fh-muenchen.de/ -11096 DE Fachhochschule Münster http://www.fh-muenster.de/ -11097 DE Fachhochschule Neubrandenburg http://www.fh-nb.de/ -11098 DE Fachhochschule Neu-Ulm http://www.fh-neu-ulm.de/ -11099 DE Fachhochschule Niederrhein http://www.fh-niederrhein.de/ -11100 DE Fachhochschule Nordhausen http://www.fh-nordhausen.de/ -11101 DE Fachhochschule Nordhessen http://www.diploma.de/ -11102 DE Fachhochschule Nordostniedersachsen http://www.fhnon.de/ -11103 DE Fachhochschule Nürtingen, Hochschule für Wirtschaft, Landwirtschaft und Landespflege http://www.fh-nuertingen.de/ -11104 DE Fachhochschule Offenburg, Hochschule für Technik und Wirtschaft http://www.fh-offenburg.de/ -11105 DE Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven http://www.fh-oow.de/ -11106 DE Fachhochschule Osnabrück http://www.fh-osnabrueck.de/ -11107 DE Fachhochschule Pforzheim, Hochschule für Gestaltung, Technik und Wirtschaft http://www.fh-pforzheim.de/ -11108 DE Fachhochschule Potsdam http://www.fh-potsdam.de/ -11109 DE Fachhochschule Ravensburg-Weingarten http://www.fh-weingarten.de/ -11110 DE Fachhochschule Regensburg http://www.fh-regensburg.de/ -11111 DE Fachhochschule Reutlingen, Hochschule für Technik und Wirtschaft http://www.fh-reutlingen.de/ -11112 DE Fachhochschule Rosenheim, Hochschule für Technik und Wirtschaft http://www.fh-rosenheim.de/ -11113 DE Fachhochschule Rottenburg, Hochschule für Forstwirtschaft http://www.fh-rottenburg.de/ -11114 DE Fachhochschule Schmalkalden http://www.fh-schmalkalden.de/ -11115 DE Fachhochschule Schwäbisch Gmünd, Hochschule für Gestaltung http://www.hfg-gmuend.de/ -11116 DE Fachhochschule Schwäbisch Hall, Hochschule für Gestaltung http://www.fh-schwaebischhall.de/ -11117 DE Fachhochschule Stralsund http://www.fh-stralsund.de/ -11118 DE Fachhochschule Stuttgart, Hochschule der Medien http://www.hdm-stuttgart.de/ -11119 DE Fachhochschule Stuttgart, Hochschule für Technik http://www.fht-stuttgart.de/ -11120 DE Fachhochschule Trier, Hochschule für Technik, Wirtschaft und Gestaltung http://www.fh-trier.de/ -11121 DE Fachhochschule Ulm, Hochschule für Technik http://www.fh-ulm.de/ -11122 DE Fachhochschule und Berufskollegs NTA, Prof.Dr. Grübler gemein. GmbH http://www.fh-isny.de/ -11123 DE Fachhochschule Wedel http://www.fh-wedel.de/ -11124 DE Fachhochschule Weihenstephan http://www.fh-weihenstephan.de/ -11125 DE Fachhochschule Westküste, Hochschule für Wirtschaft und Technik http://www.fh-westkueste.de/ -11126 DE Fachhochschule Wiesbaden http://www.fh-wiesbaden.de/ -11127 DE Fachhochschule Worms http://www.fh-worms.de/ -11128 DE Fachhochschule Würzburg - Schweinfurt http://www.fh-wuerzburg.de/ -11129 DE Fern-Fachhochschule Hamburg http://www.fern-fh.de/ -11130 DE Fernuniversität Gesamthochschule Hagen http://www.fernuni-hagen.de/ -11131 DE Freie Kunst-Studienstätte Ottersberg http://www.fh-ottersberg.de/ -11132 DE Freie Universität Berlin http://www.fu-berlin.de/ -11133 DE Friedrich-Alexander Universität Erlangen-Nürnberg http://www.uni-erlangen.de/ -11134 DE Friedrich-Schiller Universität Jena http://www.uni-jena.de/ -11135 DE Georg-August Universität Göttingen http://www.uni-goettingen.de/ -11136 DE Georg-Simon-Ohm-Fachhochschule Nürnberg http://www.fh-nuernberg.de/ -11137 DE Gustav-Siewerth-Akademie http://www.siewerth-akademie.de/ -11138 DE Hafencity Universität Hamburg http://www.hcu-hamburg.de/ -11139 DE Handelshochschule Leipzig http://www.hhl.de/ -11140 DE Heinrich-Heine Universität Düsseldorf http://www.uni-duesseldorf.de/ -11141 DE Hertie School of Governance http://www.hertie-school.org/ -11142 DE Hochschule Albstadt-Sigmaringen http://www.hs-albsig.de/ -11143 DE Hochschule Anhalt (FH), Hochschule für angewandte Wissenschaften http://www.hs-anhalt.de/ -11144 DE Hochschule Bremen http://www.hs-bremen.de/ -11145 DE Hochschule Bremerhaven http://www.hs-bremerhaven.de/ -11146 DE Hochschule Coburg http://www.hs-coburg.de/ -11147 DE Hochschule Darmstadt http://www.hs-darmstadt.de/ -11148 DE Hochschule Esslingen http://www.hs-esslingen.de/ -11149 DE Hochschule Fulda http://www.hs-fulda.de/ -11150 DE Hochschule für Bankwirtschaft (HfB), Private Fachhochschule der Bankakademie http://www.hfb.de/ -11151 DE Hochschule für Berufstätige Rendsburg http://www.akad.de/ -11152 DE Hochschule für Internationales Management http://www.himh.de/ -11153 DE Hochschule für Jüdische Studien Heidelberg http://www.hjs.uni-heidelberg.de/ -11154 DE Hochschule für Philosophie München http://www.hfph.mwn.de/ -11155 DE Hochschule für Politik (HFP) http://www.hfp.mhn.de/ -11156 DE Hochschule für Technik und Wirtschaft des Saarlandes http://www.htw-saarland.de/ -11157 DE Hochschule für Technik und Wirtschaft Dresden (FH) http://www.htw-dresden.de/ -11158 DE Hochschule für Technik und Wirtschaft Karlsruhe http://www.hs-karlsruhe.de/ -11159 DE Hochschule für Technik, Wirtschaft und Kultur Leipzig (FH) http://www.htwk-leipzig.de/ -11160 DE Hochschule Harz, Hochschule für angewandte Wissenschaften (FH) http://www.hs-harz.de/ -11161 DE Hochschule Magdeburg-Stendal (FH) http://www.hs-magdeburg.de/ -11162 DE Hochschule Mittweida (FH) http://www.htwm.de/ -11163 DE Hochschule Vechta http://www.uni-vechta.de/ -11164 DE Hochschule Wismar, Fachhochschule für Technik, Wirtschaft und Gestaltung http://www.hs-wismar.de/ -11165 DE Hochschule Zittau/Görlitz (FH) http://www.hs-zigr.de/ -11166 DE Humboldt Universität Berlin http://www.hu-berlin.de/ -11167 DE HWP - Hamburger Universität für Wirtschaft und Politik http://www.hwp-hamburg.de/ -11168 DE Internationale Fachhochschule Aalen http://www.international.fh-aalen.de/ -11169 DE Internationale Fachhochschule Bad Honnef http://www.fh-bad-honnef.de/ -11170 DE Internationales Hochschulinstitut Zittau http://www.ihi-zittau.de/ -11171 DE International School of Management ISM Dortmund http://www.ism-dortmund.de/ -11172 DE International School of New Media, University of Lübeck http://www.isnm.de/ -11173 DE International University in Germany http://www.i-u.de/ -11174 DE Jacobs University Bremen http://www.jacobs-university.de/ -11175 DE Johannes-Gutenberg Universität Mainz http://www.uni-mainz.de/ -11176 DE Johann Wolfgang Goethe Universität Frankfurt am Main http://www.uni-frankfurt.de/ -11177 DE Justus Liebig Universität Gießen http://www.uni-giessen.de/ -11178 DE Karlshochschule International University http://www.karlshochschule.de/ -11179 DE Katholische Fachhochschule Berlin (KFB) http://www.kfb-berlin.de/ -11180 DE Katholische Fachhochschule Freiburg, Hochschule für Sozialwesen, Religionspädagogik und Pflege http://www.kfh-Freiburg.de/ -11181 DE Katholische Fachhochschule Mainz http://www.kfh-mainz.de/ -11182 DE Katholische Fachhochschule Norddeutschland http://www.kath-fh-nord.de/ -11183 DE Katholische Fachhochschule Nordrhein-Westfalen http://www.kfhnw.de/ -11184 DE Katholische Hochschule für Soziale Arbeit Saarbrücken http://www.khsa.de/ -11185 DE Katholische Stiftungsfachhochschule München http://www.ksfh.de/ -11186 DE Katholische Universität Eichstätt http://www.ku-eichstaett.de/ -11187 DE Kirchliche Hochschule Bethel http://www.bethel.de/kiho/ -11188 DE Kirchliche Hochschule Wuppertal http://www.uni-wuppertal.de/inst/kiho/ -11189 DE Kunstakademie Düsseldorf. http://www.kunstakademie-duesseldorf.de/ -11190 DE Kunsthochschule Berlin-Weissensee, Hochschule für Gestaltung http://www.kh-berlin.de/ -11191 DE Ludwig-Maximilians-Universität München http://www.uni-muenchen.de/ -11192 DE Lutherische Theologische Hochschule Oberursel http://www.selk.de/LThH/ -11193 DE Märkische Fachhochschule Iserlohn http://www.mfh-iserlohn.de/ -11194 DE Martin-Luther Universität Halle-Wittenberg http://www.uni-halle.de/ -11195 DE Medizinische Hochschule Hannover http://www.mh-hannover.de/ -11196 DE Medizinische Universität Lübeck http://www.mu-luebeck.de/ -11197 DE Merkur Internationale FH Karlsruhe http://www.merkur-fh.org/ -11198 DE Merz Akademie, Hochschule für Gestaltung Stuttgart http://www.merz-akademie.de/ -11199 DE Muthesius-Hochschule, Fachhochschule für Kunst und Gestaltung http://www.muthesius.de/ -11200 DE Nordakademie, Staatlich anerkannte private Fachhochschule mit dualen Studiengängen http://www.nordakademie.de/ -11201 DE Northern Institute of Technology Management (NIT) http://www.nithh.de/ -11202 DE Otto-Friedrich Universität Bamberg http://www.uni-bamberg.de/ -11203 DE Otto-von-Guericke Universität Magdeburg http://www.uni-magdeburg.de/ -11204 DE Pädagogische Hochschule Erfurt/Mühlhausen http://www.ph-erfurt.de/ -11205 DE Pädagogische Hochschule Freiburg http://www.ph-freiburg.de/ -11206 DE Pädagogische Hochschule Heidelberg http://www.ph-heidelberg.de/ -11207 DE Pädagogische Hochschule Karlsruhe http://www.ph-karlsruhe.de/ -11208 DE Pädagogische Hochschule Ludwigsburg http://www.ph-ludwigsburg.de/ -11209 DE Pädagogische Hochschule Schwäbisch Gmünd http://www.ph-gmuend.de/ -11210 DE Pädagogische Hochschule Weingarten http://www.ph-weingarten.de/ -11211 DE Phillips-Universität Marburg http://www.uni-marburg.de/ -11293 DK Aarhus Technical College http://www.ats.dk/ -11212 DE Philosophisch-Theologische Hochschule der Salesianer Don Boscos http://www.pth-bb.de/ -11213 DE Philosophisch-Theologische Hochschule Münster http://www.pth-muenster.de/ -11214 DE Philosophisch-Theologische Hochschule Sankt Georgen http://www.st-georgen.uni-frankfurt.de/ -11215 DE Philosophisch-Theologische Hochschule SVD Sankt Augustin http://www.philtheol-augustin.de/ -11216 DE Philosophisch-Theologische Hochschule Vallendar der Gesellschaft des Katholischen Apostolates (Pallottiner) http://www.pthv.de/ -11217 DE Philosophisch-Theologisches Studium Erfurt, Staatlich anerkannte Wissenschaftliche Hochschule http://www.uni-erfurt.de/phil-theol/ -11218 DE Popakademie Baden-Württemberg http://www.popakademie.de/ -11219 DE Private Fachhochschule für Wirtschaft und Technik Vechta/Diepholz http://www.fhwt.de/ -11220 DE Private Fachhochschule Göttingen http://www.pfh-goettingen.de/ -11221 DE Private FernFachhochschule Darmstadt http://www.privatfh-da.de/ -11222 DE Private Hanseuniversität http://www.hanseuni.de/ -11223 DE Private Universität Witten/Herdecke http://www.uni-wh.de/ -11224 DE Rheinische Fachhochschule Köln http://www.rfh-koeln.de/ -11225 DE Rheinische Friedrich-Wilhelms Universität Bonn http://www.uni-bonn.de/ -11226 DE Rheinisch Westfälische Technische Hochschule Aachen http://www.rwth-aachen.de/ -11227 DE Ruhr-Universität Bochum http://www.ruhr-uni-bochum.de/ -11228 DE Ruprecht-Karls-Universität Heidelberg http://www.uni-heidelberg.de/ -11229 DE Schiller International University, Heidelberg http://www.siu-heidelberg.de/ -11230 DE SRH University of Applied Sciences http://www.srh-berlin.de/ -11231 DE Staatlich anerkannte Fachhochschule für Kunsttherapie http://www.fhkt.de/ -11232 DE Staatliche Hochschule für Musik http://www.mh-trossingen.de/ -11233 DE Steinbeis-Hochschule-Berlin http://www.stw.de/shb/ -11234 DE Technische Fachhochschule Berlin http://www.tfh-berlin.de/ -11235 DE Technische Fachhochschule Georg Agricola für Rohstoff, Energie und, Umwelt zu Bochum http://www.tfh-bochum.de/ -11236 DE Technische Fachhochschule Wildau http://www.tfh-wildau.de/ -11237 DE Technische Universität Bergakademie Freiberg http://www.tu-freiberg.de/ -11238 DE Technische Universität Berlin http://www.tu-berlin.de/ -11239 DE Technische Universität Carolo-Wilhelmina Braunschweig http://www.tu-bs.de/ -11240 DE Technische Universität Chemnitz http://www.tu-chemnitz.de/ -11241 DE Technische Universität Clausthal http://www.tu-clausthal.de/ -11242 DE Technische Universität Darmstadt http://www.tu-darmstadt.de/ -11243 DE Technische Universität Dresden http://www.tu-dresden.de/ -11244 DE Technische Universität Hamburg-Harburg http://www.tu-harburg.de/ -11245 DE Technische Universität Ilmenau http://www.tu-ilmenau.de/ -11246 DE Technische Universität München http://www.tu-muenchen.de/ -11247 DE Theologische Fakultät Paderborn http://www.paderborn.de/theofak/ -11248 DE Theologische Fakultät Trier http://www.uni-trier.de/uni/theo/ -11249 DE Theologische Hochschule Friedensau http://www.thh-friedensau.de/ -11250 DE Tierärztliche Hochschule Hannover http://www.tiho-hannover.de/ -11251 DE Universität Augsburg http://www.uni-augsburg.de/ -11252 DE Universität Bayreuth http://www.uni-bayreuth.de/ -11253 DE Universität Bielefeld http://www.uni-bielefeld.de/ -11254 DE Universität Bremen http://www.uni-bremen.de/ -11255 DE Universität der Bundeswehr Hamburg http://www.unibw-hamburg.de/ -11256 DE Universität der Bundeswehr München http://www.unibw-muenchen.de/ -11257 DE Universität des Saarlandes http://www.uni-saarland.de/ -11258 DE Universität Dortmund http://www.uni-dortmund.de/ -11259 DE Universität Duisburg-Essen http://www.uni-duisburg-essen.de/ -11260 DE Universität Erfurt http://www.uni-erfurt.de/ -11261 DE Universität Flensburg http://www.uni-flensburg.de/ -11262 DE Universität Fridericana Karlsruhe (Technische Hochschule) http://www.uni-karlsruhe.de/ -11263 DE Universität Hamburg http://www.uni-hamburg.de/ -11264 DE Universität Hannover http://www.uni-hannover.de/ -11265 DE Universität Hildesheim http://www.uni-hildesheim.de/ -11266 DE Universität Hohenheim http://www.uni-hohenheim.de/ -11267 DE Universität Kaiserslautern http://www.uni-kl.de/ -11268 DE Universität Kassel http://www.uni-kassel.de/ -11269 DE Universität Koblenz-Landau http://www.uni-koblenz-landau.de/ -11270 DE Universität Köln http://www.uni-koeln.de/ -11271 DE Universität Konstanz http://www.uni-konstanz.de/ -11272 DE Universität Leipzig http://www.uni-leipzig.de/ -11273 DE Universität Lüneburg http://www.uni-lueneburg.de/ -11274 DE Universität Mannheim http://www.uni-mannheim.de/ -11275 DE Universität Osnabrück http://www.uni-osnabrueck.de/ -11276 DE Universität Paderborn http://www.uni-paderborn.de/ -11277 DE Universität Passau http://www.uni-passau.de/ -11278 DE Universität Potsdam http://www.uni-potsdam.de/ -11279 DE Universität Regensburg http://www.uni-regensburg.de/ -11280 DE Universität Rostock http://www.uni-rostock.de/ -11281 DE Universität Siegen http://www.uni-siegen.de/ -11282 DE Universität Stuttgart http://www.uni-stuttgart.de/ -11283 DE Universität Trier http://www.uni-trier.de/ -11284 DE Universität Ulm http://www.uni-ulm.de/ -11285 DE Westfälische Wilhelms-Universität Münster http://www.uni-muenster.de/ -11286 DE Westsächsische Hochschule Zwickau (FH) http://www.fh-zwickau.de/ -11287 DE Wissenschaftliche Hochschule für Unternehmensführung, Otto-Beisheim Hochschule http://www.whu-koblenz.de/ -11288 DJ Université de Djibouti http://www.univ.edu.dj/ -11289 DK Aalborg Business College http://www.ah.dk/ -11290 DK Aalborg University http://www.auc.dk/ -11291 DK Aarhus School of Architecture http://www.a-aarhus.dk/ -11292 DK Aarhus School of Business http://www.hha.dk/ -11294 DK Aarhus University http://www.au.dk/ -11295 DK Copenhagen Business School http://www.cbs.dk/ -11296 DK Copenhagen University http://www.ku.dk/ -11297 DK Danish Business Academy http://www.ddea.dk/ -11298 DK Danish University of Education http://www.dpu.dk/ -11299 DK Engineering College of Aarhus http://www.iha.dk/ -11300 DK Engineering College of Copenhagen http://www.ihk.dk/ -11301 DK International Business School of Scandinavia http://www.ibss.eu/ -11302 DK International People's College http://www.ipc.dk/ -11303 DK IT University of Copenhagen http://www.itu.dk/ -11304 DK Knightsbridge University http://www.knightsbridgeuniversity.com/ -11305 DK Lutheran School Of Theology In Aarhus http://www.teologi.dk/ -11306 DK Odense University http://www.ou.dk/ -11307 DK Roskilde University http://www.ruc.dk/ -11308 DK Royal Academy of Music http://www.musik-kons.dk/ -11309 DK Royal Danish Academy of Fine Arts, School of Architecture http://www.karch.dk/ -11310 DK Royal Danish Academy of Fine Arts, School of Visual Art http://www.kunstakademiet.dk/ -11311 DK Royal Danish Academy of Music http://www.dkdm.dk/ -11312 DK Royal Danish School of Educational Sciences http://www.dlh.dk/ -11313 DK Royal Danish School of Pharmacy http://www.dfh.dk/ -11314 DK Royal School of Library and Information Science http://www.db.dk/ -11315 DK Royal Veterinary and Agricultural University http://www.kvl.dk/ -11316 DK Southern Denmark Business School http://www.hhs.dk/ -11317 DK Technical University of Denmark http://www.dtu.dk/ -11318 DK Tietgen Business College http://www.tietgen.dk/ -11319 DK University of Southern Denmark http://www.sdu.dk/ -11320 DM Ballsbridge University http://www.acedu.org/ -11321 DM Dominica State College http://www.dsc.dm/ -11322 DM New World University http://www.newworld.ac/ -11323 DM Ross University Caribbean School of Medicine http://www.rossu.edu/medical-school/ -11324 DO Instituto Tecnológico de Santo Domingo http://www.intec.edu.do/ -11325 DO Pontificia Universidad Católica Madre y Maestra (PUCMM) http://www.pucmm.edu.do/ -11326 DO Universidad Abierta Para Adultos http://www.uapa.edu.do/ -11327 DO Universidad Adventista Dominicana http://www.unad.edu.do/ -11328 DO Universidad Agroforestal Fernando A.Meriño http://www.uafam.edu.do/ -11329 DO Universidad APEC http://www.unapec.edu.do/ -11330 DO Universidad Autónoma de Santo Domingo http://www.uasd.edu.do/ -11331 DO Universidad Católica de Santo Domingo http://www.ucsd.edu.do/ -11332 DO Universidad Católica Madre y Maestra http://www.pucmm.edu.do/ -11333 DO Universidad Católica Nordestana http://www.ucne.edu.do/ -11334 DO Universidad Católica Tecnológica del Cibao http://www.ucateci.edu.do/ -11335 DO Universidad Central del Este http://www.uce.edu.do/ -11336 DO Universidad Central Dominicana de Estudio Profesionales http://66.98.64.31/ -11337 DO Universidad de la Tercera Edad http://www.ute.edu.do/ -11338 DO Universidad del Caribe http://www.unicaribe.edu.do/ -11339 DO Universidad Dominicana O&M http://www.udoym.edu.do/ -11340 DO Universidad Dominico-Americana http://www.icda.edu.do/espanol/unicda/ -11341 DO Universidad Eugenio Maria de Hostos http://www.uniremhos.edu.do/ -11342 DO Universidad Experimental Felix Adam http://www.unefa.edu.do/ -11343 DO Universidad Federico Henríquez y Carvajal http://www.ufhec.edu.do/ -11344 DO Universidad Iberoamericana http://www.unibe.edu.do/ -11345 DO Universidad Interamericana http://www.unica.edu.do/ -11346 DO Universidad Nacional Evangélica http://www.unev-rd.edu.do/ -11347 DO Universidad Nacional Pedro Henríquez Ureña http://www.unphu.edu.do/ -11348 DO Universidad Odontológica Dominicana http://www.uod.edu.do/ -11349 DO Universidad Tecnológica del Sur http://www.utesur.edu.do/ -11350 DO Universidad Tecnológica de Santiago http://www.utesa.edu/ -11351 DO Universidad Ulises Francisco Espaillat http://www.ufhec.edu.do/ -11352 DZ Centre Universitaire de Jijel http://www.univ-jijel.dz/ -11353 DZ Centre Universitaire de Tebessa http://www.univ-tebessa.dz/ -11354 DZ Centre Universitaire de Tiaret http://www.univ-tiaret.dz/ -11355 DZ Centre Universitaire d'Oum El Bouaghi http://www.univ-oeb.dz/ -11356 DZ Université Abou Bekr Belkaid, Tlemcen http://www.univ-tlemcen.dz/ -11357 DZ Université Amar Telidji http://www.lagh-univ.dz/ -11358 DZ Université Badji Mokhtar http://www.univ-annaba.dz/ -11359 DZ Université d'Alger http://www.univ-alger.dz/ -11360 DZ Université d'Alger 3 http://www.univ-alger3.dz/ -11361 DZ Université de Batna http://www.univ-batna.dz/ -11362 DZ Université de Béjaia http://www.univ-bejaia.dz/ -11363 DZ Université de Biskra http://www.univ-biskra.dz/ -11364 DZ Université de Blida http://www.univ-blida.dz/ -11365 DZ Université de Chlef http://www.univ-chlef.dz/ -11366 DZ Université de Guelma http://www.univ-guelma.dz/ -11367 DZ Université de Mostaganem http://www.univ-mosta.dz/ -11368 DZ Université de M'sila http://www.univ-msila.dz/ -11369 DZ Université de Saida http://www.univ-saida.dz/ -11370 DZ Université de Sétif http://www.univ-setif.dz/ -11371 DZ Université de Sidi-Bel-Abbès (Djillali Liabès) http://www.univ-sba.dz/ -11372 DZ Université de Skikda http://www.univ-skikda.dz/ -11373 DZ Université des Sciences et de la Technologie d'Oran http://www.univ-usto.dz/ -11374 DZ Université des Sciences et de la Technologie Houari Boumediène http://www.usthb.dz/ -11375 DZ Universite des Sciences Islamiques de Constantine http://www.univ-emir.dz/ -11376 DZ Université d'Oran Es-Senia http://www.univ-oran.dz/ -11377 DZ Université Dr Tahar Moulay http://www.univ-saida.dz/ -11378 DZ Université Kasdi Merbah Ouargla http://www.univ-ouargla.dz/ -11379 DZ Université Mentouri Constantine http://www.umc.edu.dz/ -11380 DZ Université M'hamed Bouguerra de Boumerdes http://www.umbb.dz/ -11381 DZ Université Mouloud Mammeri de Tizi Ouzou http://www.ummto.dz/ -11382 EC Brookdale Community College http://www.brookdale.edu.ec/ -11383 EC Escuela Politécnica de Chimborazo http://www.espoch.edu/ -11384 EC Escuela Politécnica del Ejercito http://www.espe.edu.ec -11385 EC Escuela Politécnica Nacional http://www.epn.edu.ec/ -11386 EC Escuela Superior Politécnica del Litoral http://www.espol.edu.ec/ -11387 EC Pontificia Universidad Católica del Ecuador http://www.puce.edu.ec/ -11388 EC Universidad Agraria del Ecuador http://www.uagraria.edu.ec/ -11389 EC Universidad Andina Simón Bolívar http://www.uasb.edu.ec/ -11390 EC Universidad Casa Grande http://www.casagrande.edu.ec/ -11391 EC Universidad Catolica de Azogues http://www.ucaazo.edu.ec/ -11392 EC Universidad Católica de Cuenca http://www.ucacue.edu.ec/ -11393 EC Universidad Católica de Santiago de Guayaquil http://www.ucsg.edu.ec/ -11394 EC Universidad Central del Ecuador http://www.ucentral.edu.ec/ -11395 EC Universidad de Cuenca http://www.ucuenca.edu.ec/ -11396 EC Universidad de Especialidades del Espíritu Santo http://www.uees.edu.ec/ -11397 EC Universidad de Especialidades Turísticas http://www.uct.edu.ec/ -11398 EC Universidad de Guayaquil http://www.ug.edu.ec/ -11399 EC Universidad del Azuay http://www.uazuay.edu.ec/ -11400 EC Universidad del Pacifico http://www.upacifico.edu.ec/ -11401 EC Universidad Estatal de Bolívar http://www.ueb.isfun.net/ -11402 EC Universidad Internacional del Ecuador http://www.internacional.edu.ec/ -11403 EC Universidad Internacional SEK, Quito http://www.sek.edu/html/ecuador.html -11404 EC Universidad Laica "Eloy Alfaro" de Manabi http://www.uleam.edu.ec/ -11405 EC Universidad Laica "Vicente Rocafuerte" de Guayaquil http://www.ulaicavr.com/ -11406 EC Universidad Nacional de Chimborazo http://www.unach.edu.ec/ -11407 EC Universidad Nacional de Loja http://www.unl.edu.ec/ -11408 EC Universidad Politécnica Salesiana http://www.ups.edu.ec/ -11409 EC Universidad San Francisco de Quito http://www.usfq.edu.ec/ -11410 EC Universidad Santa María Campus Guayaquil http://www.usm.edu.ec/ -11411 EC Universidad Técnica de Ambato http://www.uta.edu.ec/ -11412 EC Universidad Técnica de Babahoyo http://www.utb.edu.ec/ -11413 EC Universidad Técnica de Cotopaxi http://www.utc.edu.ec/ -11414 EC Universidad Técnica de Esmeraldas "Luis Vargas Torres" http://www.utelvt.edu.ec/ -11415 EC Universidad Técnica del Norte http://www.utn.edu.ec/ -11416 EC Universidad Técnica de Machala http://www.utmachala.edu.ec/ -11417 EC Universidad Técnica de Manabí http://www.utm.edu.ec/ -11418 EC Universidad Técnica Estatal de Quevedo http://www.uteq.edu.ec/ -11419 EC Universidad Técnica Particular de Loja http://www.utpl.edu.ec/ -11420 EC Universidad Tecnológica América http://www.unita.edu.ec/ -11421 EC Universidad Tecnológica Equinoccial http://www.ute.edu.ec/ -11422 EC Universidad Tecnológica Indoamérica http://www.indoamerica.edu.ec/ -11423 EC Universidad Tecnologica Israel http://www.uisrael.ec/ -11424 EC Universidad Tecnológica San Antonio de Machala http://www.utsam.edu.ec/ -11425 EE Estonian Academy of Arts http://www.artun.ee/ -11426 EE Estonian Academy of Music and Theatre http://www.ema.edu.ee/ -11427 EE Estonian Academy of Security Sciences http://www.sisekaitse.ee/ -11428 EE Estonian Business School http://www.ebs.ee/ -11429 EE Estonian University of Life Sciences http://www.emu.ee/ -11430 EE Tallinn University http://www.tlu.ee/ -11431 EE Tallinn University of Technology http://www.ttu.ee/ -11432 EE Tartu Health Care College http://www.nooruse.ee/ -11433 EE University of Applied Sciences http://www.tktk.ee/ -11434 EE University of Tartu http://www.ut.ee/ -11435 EG Ain Shams University http://www.shams.edu.eg/ -11436 EG Akhbar El Yom Academy http://www.akhbaracademy.edu.eg/ -11437 EG Al Azhar University http://www.azhar.edu.eg/ -11438 EG Alexandria University http://www.alex.edu.eg/ -11439 EG American University in Cairo http://www.aucegypt.edu/ -11440 EG Arab Academy for Science & Technology http://www.aast.edu/ -11441 EG Arab Open University http://www.aou.edu.eg/ -11442 EG Assiut University http://www.aun.edu.eg/ -11443 EG Benha University http://www.bu.edu.eg/ -11444 EG Beni Suef University http://www.bsu.edu.eg/ -11445 EG Cairo University http://www.cu.edu.eg/ -11446 EG Damanhour University http://www.damanhour.edu.eg/ -11447 EG Damietta University http://www.du.edu.eg/ -11448 EG Delta University http://www.deltauniv.edu.eg/ -11449 EG El Shorouk Academy http://www.elshoroukacademy.edu.eg/ -11450 EG Fayoum University http://www.fayoum.edu.eg/ -11451 EG Future University http://www.futureuniversity.edu.eg/ -11452 EG German University in Cairo http://www.guc.edu.eg/ -11453 EG Helwan University http://www.helwan.edu.eg/ -11454 EG Higher Technological Institute http://www.hti.edu.eg/ -11455 EG Kafr El-Sheikh University http://www.kfs.edu.eg/ -11456 EG Mansoura University http://www.mans.edu.eg/ -11457 EG Menoufia University http://www.menofia.edu.eg/ -11458 EG Military Technical College http://www.mtc.edu.eg/ -11459 EG Minia University http://www.minia.edu.eg/ -11460 EG Misr International University http://www.miuegypt.edu.eg/ -11461 EG Misr University for Sience and Technology http://www.must.edu.eg/ -11462 EG Modern Acadmy http://www.modern-academy.edu.eg/ -11463 EG Modern Sciences & Arts University http://www.msa.eun.eg/ -11464 EG Modern University For Technology and Information http://www.mti.edu.eg/ -11465 EG Nile University http://www.nileu.edu.eg/ -11466 EG October 6 university http://www.o6u.edu.eg/ -11467 EG Pharos International University http://www.pua.edu.eg/ -11468 EG Port Said University http://www.psu.edu.eg/ -11469 EG Sadat Academy for Management Sciences http://www.sadatacademy.edu.eg/ -11470 EG Sinai University http://www.su.edu.eg/ -11471 EG Sohag University http://www.sohag-univ.edu.eg/ -11472 EG South Valley University http://www.svu.edu.eg/ -11473 EG Suez Canal University http://www.suez.edu.eg/ -11474 EG Tanta University http://www.tanta.edu.eg/ -11475 EG Université Française d'Égypte http://www.ufe.edu.eg/ -11476 EG Université Senghor d'Alexandrie http://www.usenghor-francophonie.org/ -11477 EG University of Sadat City http://www.usc.edu.eg/ -11478 EG Zagazig University http://www.zu.edu.eg/ -11479 ER Eritrea Institute of Technology http://www.eit.edu.er/ -11480 ES Barcelona Graduate School of Economics http://www.barcelonagse.eu/ -11481 ES Bircham International University http://www.bircham.edu/ -11482 ES Centro Universitario Villanueva http://www.villanueva.edu/ -11483 ES Escuela Superior de Gestion Comercial y Marketing (ESIC) http://www.esic.es/ -11484 ES Global Business School Barcelona http://www.global-business-school.org/ -11485 ES IE University http://www.ie.edu/ -11486 ES Iniciativa Universidad del Atlantico http://www.universidadatlantico.org/ -11487 ES International University of Southern Europe http://www.iuse.edu.es/ -11488 ES La Salle Universities - International Programmes http://www.lasalleuniversities.net/ -11489 ES Mondragon Univertsitatea http://www.muni.es/ -11490 ES Schiller International University, Madrid http://www.schillermadrid.edu/ -11491 ES Universidad Abierta Interactiva http://www.uniactiva.com/ -11492 ES Universidad Alfonso X El Sabio http://www.uax.es/ -11493 ES Universidad Antonio de Nebrija http://www.unnet.es/ -11494 ES Universidad Autónoma de Madrid http://www.uam.es/ -11495 ES Universidad Cardenal Herrera-CEU http://www.uchceu.es/ -11496 ES Universidad Carlos III de Madrid http://www.uc3m.es/ -11497 ES Universidad Católica de Ávila http://www.ucavila.es/ -11498 ES Universidad Católica de Valencia http://www.ucv.es/ -11499 ES Universidad Católica San Antonio http://www.ucam.edu/ -11500 ES Universidad Complutense de Madrid http://www.ucm.es/ -11501 ES Universidad de Alcalá de Henares http://www.uah.es/ -11502 ES Universidad de Alicante http://www.ua.es/ -11503 ES Universidad de Almería http://www.ualm.es/ -11504 ES Universidad de Burgos http://www.ubu.es/ -11505 ES Universidad de Cádiz http://www.uca.es/ -11506 ES Universidad de Cantabria http://www.unican.es/ -11507 ES Universidad de Castilla La Mancha http://www.uclm.es/ -11508 ES Universidad de Córdoba http://www.uco.es/ -11509 ES Universidad de Deusto http://www.deusto.es/ -11510 ES Universidad de Extremadura http://www.unex.es/ -11511 ES Universidad de Gerona http://www.udg.es/ -11512 ES Universidad de Granada http://www.ugr.es/ -11513 ES Universidad de Huelva http://www.uhu.es/ -11514 ES Universidad de Jaén http://www.ujaen.es/ -11515 ES Universidad de La Coruña http://www.udc.es/ -11516 ES Universidad de La Laguna http://www.ull.es/ -11517 ES Universidad de La Rioja http://www.unirioja.es/ -11518 ES Universidad de Las Palmas de Gran Canaria http://www.ulpgc.es/ -11519 ES Universidad de León http://www.unileon.es/ -11520 ES Universidad del País Vasco http://www.ehu.es/ -11521 ES Universidad de Málaga http://www.uma.es/ -11522 ES Universidad de Murcia http://www.um.es/ -11523 ES Universidad de Navarra http://www.unav.es/ -11524 ES Universidad de Oviedo http://www.uniovi.es/ -11525 ES Universidad de Salamanca http://www.usal.es/ -11526 ES Universidad de San Pablo CEU http://www.ceu.es/ -11527 ES Universidad de Santiago de Compostela http://www.usc.es/ -11528 ES Universidad de Sevilla http://www.us.es/ -11529 ES Universidad de Valencia http://www.uv.es/ -11530 ES Universidad de Valladolid http://www.uva.es/ -11531 ES Universidad de Vigo http://www.uvigo.es/ -11532 ES Universidad de Zaragoza http://www.unizar.es/ -11533 ES Universidad Europea de Madrid http://www.uem.es/ -11534 ES Universidad Francisco de Vitoria http://www.ufv.es/ -11535 ES Universidad Internacional de Andalucía http://www.uia.es/ -11536 ES Universidad Internacional de Andalucía, Sede Antonio Machado de Baeza http://www.uniaam.uia.es/ -11537 ES Universidad Internacional de Andalucía, Sede La Rábida http://www.uniara.uia.es/ -11538 ES Universidad Internacional Menéndez Pelayo http://www.uimp.es/ -11539 ES Universidad Miguel Hernández de Elche http://www.umh.es/ -11540 ES Universidad Nacional de Educación a Distancia http://www.uned.es/ -11541 ES Universidad Pablo de Olavide http://www.upo.es/ -11542 ES Universidad Politécnica de Cartagena http://www.upct.es/ -11543 ES Universidad Politécnica de Cataluna http://www.upc.edu/ -11544 ES Universidad Politécnica de Madrid http://www.upm.es/ -11545 ES Universidad Politécnica de Valencia http://www.upv.es/ -11546 ES Universidad Pontificia Comillas http://www.upco.es/ -11547 ES Universidad Pontificia de Salamanca http://www.upsa.es/ -11548 ES Universidad Pública de Navarra http://www.unavarra.es/ -11549 ES Universidad Rey Juan Carlos http://www.urjc.es/ -11550 ES Universitat Autónoma de Barcelona http://www.uab.es/ -11551 ES Universitat de Barcelona http://www.ub.es/ -11552 ES Universitat de les Illes Balears http://www.uib.es/ -11553 ES Universitat de Lleida http://www.udl.es/ -11554 ES Universitat de Vic http://www.uvic.es/ -11555 ES Universitat Internacional de Catalunya http://www.uic.es/ -11556 ES Universitat Jaume I de Castellón http://www.uji.es/ -11557 ES Universitat Oberta de Catalunya http://www.uoc.es/ -11558 ES Universitat Pompeu Fabra http://www.upf.es/ -11559 ES Universitat Rámon Llull http://www.url.es/ -11560 ES Universitat Rovira I Virgili Tarragona http://www.urv.es/ -11561 ET Adama Science and Technology University http://www.astu.edu.et/ -11562 ET Addis Ababa Science & Technology University http://www.aastu.org/ -11563 ET Addis Ababa University http://www.aau.edu.et/ -11564 ET Adigrat University http://www.adu.edu.et/ -11565 ET Aksum University http://www.aku.edu.et/ -11566 ET Ambo University http://www.ambou.edu.et/ -11567 ET Arba Minch University http://www.amu.edu.et/ -11568 ET Assosa University http://www.asu.edu.et/ -11569 ET Bahir Dar University http://www.bdu.edu.et/ -11570 ET Bule Hora University http://www.bulehorauniversity.com/ -11571 ET Debre Birhan University http://www.dbu.edu.et/ -11572 ET Debre Markos University http://www.dmu.edu.et/ -11573 ET Dilla University http://www.dillauniversity.edu.et/ -11574 ET Dire Dawa University http://www.ddu.edu.et/ -11575 ET Ethiopian Civil Service University http://www.ecsc.edu.et/ -11576 ET Gondar University http://www.uog.edu.et/ -11577 ET Haramaya University http://www.haramaya.edu.et/ -11578 ET Hawassa University http://www.hu.edu.et/ -11579 ET Jigjiga University http://www.jju.edu.et/ -11580 ET Jimma University http://www.ju.edu.et/ -11581 ET Madawalabu University http://www.mwu.edu.et/ -11582 ET Mekelle Institute of Technology http://www.mitethiopia.edu.et/ -11583 ET Mekelle University http://www.mu.edu.et/ -11584 ET Mizan Tepi University http://www.mtu.edu.et/ -11585 ET Semera University http://www.su.edu.et/ -11586 ET Unity University http://www.uuc.edu.et/ -11587 ET Wolaita Sodo University http://www.wsu.edu.et/ -11588 ET Wolkite University http://www.wku.edu.et/ -11589 ET Wollega University http://www.wuni.edu.et/ -11590 ET Wollo University http://www.wu.edu.et/ -11591 FI Abo Akademi University http://www.abo.fi/ -11592 FI Academy of Fine Arts http://www.kuva.fi/ -11593 FI Central Ostrobothnia University of Applied Sciences http://www.cou.fi/ -11594 FI Diaconia University of Applied Sciences http://www.diak.fi/ -11595 FI EVTEK University of Applied Sciences http://www.evtek.fi/ -11596 FI Helsinki School of Economics and Business Administration http://www.hkkk.fi/ -11597 FI Helsinki University of Technology http://www.hut.fi/ -11598 FI Lahti Polytechnic http://www.lamk.fi/ -11599 FI Lappeenranta University of Technology http://www.lut.fi/ -11600 FI Oulu Polytechnic http://www.oamk.fi/ -11601 FI Rovaniemi University of Applied Sciences http://www.ramk.fi/ -11602 FI Satakunta University Of Applied Scinces http://www.samk.fi/ -11603 FI Scandinavian Art and Business Institute http://www.sabi.eu.com/ -11604 FI Sibelius Academy http://www.siba.fi/ -11605 FI South Carelian Polytechnic http://www.scp.fi/ -11606 FI Swedish School of Economics and Business Administration, Finland http://www.shh.fi/ -11607 FI Tampere Polytechnic http://www.tpu.fi/ -11608 FI Tampere University of Technology http://www.tut.fi/ -11609 FI Theatre Academy Finland http://www.teak.fi/ -11610 FI Turku School of Economics and Business Administration http://www.tukkk.fi/ -11611 FI University of Art and Design Helsinki http://www.uiah.fi/ -11612 FI University of Helsinki http://www.helsinki.fi/ -11613 FI University of Joensuu http://www.joensuu.fi/ -11614 FI University of Jyväskylä http://www.jyu.fi/ -11615 FI University of Kuopio http://www.uku.fi/ -11616 FI University of Lapland http://www.ulapland.fi/ -11617 FI University of Oulu http://www.oulu.fi/ -11618 FI University of Tampere http://www.uta.fi/ -11619 FI University of Turku http://www.utu.fi/ -11620 FI University of Vaasa http://www.uwasa.fi/ -11621 FI Vaasa University of Applied Sciences http://www.puv.fi/ -11622 FJ Fiji National University http://www.fnu.ac.fj/ -11623 FJ Fiji School of Medicine http://www.fsm.ac.fj/ -11624 FJ University of Fiji http://www.unifiji.ac.fj/ -11625 FJ University of the South Pacific http://www.usp.ac.fj/ -11626 FO University of the Faroe Islands http://www.setur.fo/ -11627 FR AgroParisTech http://www.agroparistech.fr/ -11628 FR American Graduate School in Paris http://www.ags.edu/ -11629 FR American University of Paris http://www.aup.fr/ -11630 FR British Institute in Paris, University of London http://www.bip.lon.ac.uk/ -11631 FR Centre de Formation et de Perfectionnement des Journalistes http://www.cfpj.com/ -11632 FR Centre d'Etudes Supérieures des Techniques Industrielles http://www.ismcm-cesti.fr/ -11633 FR Centre d'Etudes Supérieures Industrielles Paris http://www.cesi.fr/ -11634 FR Centre National d'Etudes Agronomiques des Régions Chaudes http://www.cnearc.fr/ -11635 FR Conservatoire National des Arts et Métiers http://www.cnam.fr/ -11636 FR Ecole Catholique d'Arts & Metiers http://www.ecam.fr/ -11637 FR Ecole Centrale d'Electronique - ECE http://www.ece.fr/ -11638 FR Ecole Centrale de Lille http://www.ec-lille.fr/ -11639 FR Ecole Centrale de Lyon http://www.ec-lyon.fr/ -11640 FR Ecole Centrale de Nantes http://www.ec-nantes.fr/ -11641 FR Ecole d'Architecture de Nancy http://www.nancy.archi.fr/ -11642 FR Ecole de l'Air http://www.aea.asso.fr/ -11643 FR Ecole des Hautes Etudes Commerciales http://www.hec.fr/ -11644 FR Ecole des Hautes Etudes Commerciales du Nord http://edu.edhec.com/ -11645 FR Ecole des Hautes Etudes Industrielles de Lille http://www.hei.fr/ -11646 FR Ecole des Ingénieurs de la Ville de Paris http://www.eivp-paris.fr/ -11647 FR Ecole d'Ingénieurs en Informatique pour l'Industrie http://www.e3i.univ-tours.fr/ -11648 FR Ecole Européen des Affaires http://www.eap.fr/ -11649 FR Ecole Européenne de Chimie, Polymères et Matériaux de Strasbourg http://www-ecpm.u-strasbg.fr/ -11650 FR Ecole Française d'Electronique et d'Informatique http://www.efrei.fr/ -11716 FR Ecole Nationale Vétérinaire d'Alfort http://www.vet-alfort.fr/ -11651 FR Ecole Française de Papeterie et des Industries Graphiques http://www.efpg.inpg.fr/ -11652 FR Ecole Nationale d'Administration http://www.ena.fr/ -11653 FR Ecole Nationale de la Météorologie http://www.enm.meteo.fr/ -11654 FR Ecole Nationale de la Statistique et de l'Administration Economique http://www.ensae.fr/ -11655 FR Ecole Nationale de la Statistique et de l'Analyse de l'information http://www.ensai.fr/ -11656 FR Ecole Nationale de l'Aviation Civile http://www.enac.fr/ -11657 FR Ecole Nationale des Ponts et Chausees http://www.enpc.fr/ -11658 FR Ecole Nationale des Sciences Géographiques http://www.ensg.ign.fr/ -11659 FR Ecole Nationale des Travaux Publics de l'Etat http://www.entpe.fr/ -11660 FR Ecole Nationale d'Ingénieurs de Metz http://www.enim.fr/ -11661 FR Ecole Nationale d'Ingénieurs de Saint-Etienne http://www.enise.fr/ -11662 FR Ecole Nationale d'Ingénieurs des Techniques des Industries Agricoles et Alimentaires http://www.enitiaa-nantes.fr/ -11663 FR Ecole Nationale d'Ingénieurs des Travaux Agricoles de Bordeaux http://www.enitab.fr/ -11664 FR Ecole Nationale d'Ingénieurs des Travaux Agricoles de Clermont-Ferrand http://www.enitac.fr/ -11665 FR Ecole Nationale d'Ingénieurs de Tarbes http://www.enit.fr/ -11666 FR Ecole Nationale du Génie de l'Eau et de l'Environnement de Strasbourg http://www-engees.u-strasbg.fr/ -11667 FR Ecole Nationale Supérieur de Géologie de Nancy http://www.ensg.u-nancy.fr/ -11668 FR Ecole Nationale Supérieur de Mécanique et d'Aéronautique http://www.ensma.fr/ -11669 FR Ecole Nationale Supérieur de Mécaniques et des Microtechniques http://www.ens2m.fr/ -11670 FR Ecole Nationale Supérieur des Ingénieur des Etudes et Techniques d'Armement http://www.ensieta.fr/ -11671 FR Ecole Nationale Supérieur d'Ingénieurs de Constructions Aéronautique http://www.ensica.fr/ -11672 FR Ecole Nationale Supérieure Agronomique de Toulouse http://www.ensat.fr/ -11673 FR Ecole Nationale Supérieure d'Agronomie de Montpellier http://www.ensam.inra.fr/ -11674 FR Ecole Nationale Supérieure d'Agronomie de Rennes http://agro.roazhon.inra.fr/ -11675 FR Ecole Nationale Supérieure d'Agronomie et des Industries Alimentaires http://www.ensaia.u-nancy.fr/ -11676 FR Ecole Nationale Supérieure d'Arts et Métiers de Paris http://www.paris.ensam.fr/ -11677 FR Ecole Nationale Supérieure de Biologie Appliquée à la Nutrition et à l'Alementation http://www.u-bourgogne.fr/ENSBANA/ -11678 FR Ecole Nationale Supérieure de Chimie de Clermont-Ferrand http://ensccf.univ-bpclermont.fr/ -11679 FR Ecole Nationale Supérieure de Chimie de Lille http://www.ensc-lille.fr/ -11680 FR Ecole Nationale Supérieure de Chimie de Montpellier http://www.enscm.fr/ -11681 FR Ecole Nationale Supérieure de Chimie de Mulhouse http://www.enscmu.univ-mulhouse.fr/ -11682 FR Ecole Nationale Supérieure de Chimie de Paris http://www.enscp.jussieu.fr/ -11683 FR Ecole Nationale Supérieure de Chimie de Rennes http://www.ensc-rennes.fr/ -11684 FR Ecole Nationale Supérieure de Chimie de Toulouse http://www.univ-inpt.fr/~ensct/ -11685 FR Ecole Nationale Supérieure de Chimie et de Physique de Bordeaux http://www.enscpb.u-bordeaux.fr/ -11686 FR Ecole Nationale Supérieure de l'Aéronautique et de l'Espace http://www.supaero.fr/ -11687 FR Ecole Nationale Supérieure d'Electrochimie et d'Electrométallurgie de Gernoble http://www.inpg.fr/INPG/fr_see.html -11688 FR Ecole Nationale Supérieure d'Electronique, d'Electrotechnique, d'Informatique et d'Hydraulique de Toulouse http://www.enseeiht.fr/ -11689 FR Ecole Nationale Supérieure d'Electronique et de Radioelectricite de Bordeaux http://www.enserb.u-bordeaux.fr/ -11690 FR Ecole Nationale Supérieure d'Electronique et de Radioelectricite de Grenoble http://www.enserg.fr/ -11691 FR Ecole Nationale Supérieure de l'Electronique et de ses Applications http://www.ensea.fr/ -11692 FR Ecole Nationale Supérieure de Physique de Grenoble http://www-enspg.inpg.fr/ -11693 FR Ecole Nationale Supérieure de Physique de Marseille http://www.enspm.u-3mrs.fr/ -11694 FR Ecole Nationale Supérieure de Physique de Strasbourg http://www-ensps.u-strasbg.fr/ -11695 FR Ecole Nationale Supérieure des Arts et Industries de Strasbourg http://www-ensais.u-strasbg.fr/ -11696 FR Ecole Nationale Supérieure des Arts et Industries Textiles http://www.ensait.fr/ -11697 FR Ecole Nationale Supérieure des Industries Chimiques de Nancy http://www.ensic.u-nancy.fr/ -11698 FR Ecole Nationale Supérieure des Industries Textiles de Mulhouse http://www.ensitm.fr/ -11699 FR Ecole Nationale Supérieure des Mines d'Alès http://www.ensm-ales.fr/ -11700 FR Ecole Nationale Supérieure des Mines de Douai http://www.ensm-douai.fr/ -11701 FR Ecole Nationale Supérieure des Mines de Nancy http://www.mines.u-nancy.fr/ -11702 FR Ecole Nationale Supérieure des Mines de Paris http://www.ensmp.fr/ -11703 FR Ecole Nationale Supérieure des Mines de St-Etienne http://www.emse.fr/ -11704 FR Ecole Nationale Supérieure des Telecommunications de Bretagne http://www.enst-bretagne.fr/ -11705 FR Ecole Nationale Supérieure des Telecommunications de Paris http://www.enst.fr/ -11706 FR Ecole Nationale Supérieure de Techniques Avancées http://www.ensta.fr/ -11707 FR Ecole Nationale Supérieure d'Hydraulique et de Mécanique de Grenoble http://www.hmg.inpg.fr/ -11708 FR Ecole Nationale Superieure d'Informatique et de Mathematiques Appliquees de Grenoble http://www-ensimag.imag.fr/ -11709 FR École Nationale Supérieure d'Ingénieurs de Constructions Aéronautiques http://www.ensica.fr/ -11710 FR Ecole Nationale Supérieure d'Ingénieurs de Génie Chimique http://www.inp-fc.fr/~ensigc/ -11711 FR Ecole Nationale Supérieure d'Ingenieurs Electriciens de Grenoble http://www.ensieg.inpg.fr/ -11712 FR Ecole Nationale Supérieure d'Ingénieurs en Mécanique et Energétique de Valenciennes http://www.univ-valenciennes.fr/ensimev/ -11713 FR Ecole Nationale Supérieure du Pétrole et des Monteurs http://www.ifp.fr/EC/EC000GP1.html -11714 FR Ecole Nationale Supérieure Electricité et Mécanique http://www.ensem.u-nancy.fr/ -11715 FR Ecole Nationale Supérieure en Electrotechnique, Electronique, Informatique et Hydraulique de Toulouse http://www.enseeiht.fr/ -11717 FR Ecole Nationale Vétérinaire de Lyon http://www.vet-lyon.fr/ -11718 FR Ecole Nationale Vétérinaire de Nantes http://www.vet-nantes.fr/ -11719 FR Ecole Nationale Vétérinaire de Toulouse http://www.envt.fr/ -11720 FR Ecole Normale Supérieure de Cachan http://www.ens-cachan.fr/ -11721 FR Ecole Normale Supérieure de Fontenay-Saint Cloud http://www.ens-fcl.fr/ -11722 FR Ecole Normale Supérieure de Lyon http://www.ens-lyon.fr/ -11723 FR Ecole Normale Supérieure de Paris http://www.ens.fr/ -11724 FR Ecole Polytechnique http://www.polytechnique.fr/ -11725 FR Ecole Polytechnique Marseille http://www.polytech-marseille.fr/ -11726 FR Ecole Polytechnique Universitaire de Lille http://www.polytech-lille.fr/ -11727 FR Ecole pour les Etudes et la Recherche en Informatique et Electronique http://www.eerie.fr/ -11728 FR Ecole Spéciale de Mécanique et d'Electricité http://www.esme.fr/ -11729 FR Ecole Spéciale des Travaux Publics du Bâtiment et de l'Industrie http://www.estp.fr/ -11730 FR Ecole Superieur d'Ingenieurs Leonard de Vinci http://www.devinci.fr/ -11731 FR Ecole Supérieure d'Agriculture d'Angers http://www.groupe-esa.com/ -11732 FR Ecole Supérieure d'Agriculture de Purpan http://www.esa-purpan.fr/ -11733 FR Ecole Supérieure de Chimie Organique et Minérale http://www.escom.fr/ -11734 FR Ecole Supérieure de Chimie Physique Electronique de Lyon http://www.cpe.fr/ -11735 FR Ecole Supérieure de Commerce de Bordeaux http://www.esc-bordeaux.fr/ -11736 FR Ecole Supérieure de Commerce de Brest http://www.esc-brest.fr/ -11737 FR Ecole Supérieure de Commerce de Clermont-Ferrand http://www.esc-clermont.fr/ -11738 FR Ecole Supérieure de Commerce de Dijon http://www.escdijon.com/ -11739 FR Ecole Supérieure de Commerce de Grenoble http://www.esc-grenoble.fr/ -11740 FR Ecole Supérieure de Commerce de Le Havre/Caen http://www.esc-normandie.fr/ -11741 FR Ecole Supérieure de Commerce de Lille http://www.esc-lille.fr/ -11742 FR Ecole Supérieure de Commerce de Lyon http://www.em-lyon.com/ -11743 FR Ecole Supérieure de Commerce de Marseille-Provence http://www.esc-marseille.fr/ -11744 FR Ecole Supérieure de Commerce de Nantes-Atlantique http://www.escna.fr/ -11745 FR Ecole Supérieure de Commerce de Paris http://www.escp.fr/ -11746 FR Ecole Supérieure de Commerce de Pau http://www.esc-pau.fr/ -11747 FR Ecole Supérieure de Commerce de Reims http://www.esc-reims.edu/ -11748 FR Ecole Supérieure de Commerce de Rouen http://www.esc-rouen.fr/ -11749 FR Ecole Supérieure de Commerce de Sophia Antipolis http://www.ceram.edu/ -11750 FR Ecole Supérieure de Commerce de Toulouse http://www.esc-toulouse.fr/ -11751 FR Ecole Supérieure de Commerce et Management http://www.escem.fr/ -11752 FR Ecole Supérieure d'Electricité http://www.supelec.fr/ -11753 FR Ecole Supérieure d'Electronique de l'Ouest http://www.eseo.fr/ -11754 FR Ecole Supérieure de Physique et de Chimie Industrielles http://www.espci.fr/ -11755 FR Ecole Supérieure des Sciences Commerciales d'Angers http://www.essca.asso.fr/ -11756 FR Ecole Supérieure des Sciences Economiques et Commerciales http://www.essec.fr/ -11757 FR Ecole Supérieure des Sciences et Technologie de l'Ingénieur de Nancy http://www.esstin.u-nancy.fr/ -11758 FR Ecole Supérieure des Techniques Industrielles et des Textiles http://www.fupl.asso.fr/estit/ -11759 FR Ecole Supérieure d'Informatique-Electronique-Automatique http://www.esiea.fr/ -11760 FR Ecole Supérieure d'Ingénieurs de Marseille http://esim.imt-mrs.fr/ -11761 FR Ecole Supérieure d'Ingénieurs en Electronique et Electrotechnique http://www.esiee.fr/ -11762 FR Ecole Supérieure d'Ingénieurs en Génie Electrique http://www.esigelec.fr/ -11763 FR Ecole Supérieure d'Ingénieurs et de Techniciens pour l'Agriculture http://www.esitpa.org/ -11764 FR Ecole Supérieure d'Optique http://www.iota.u-psud.fr/~ecole/ -11765 FR Ecole Supérieure Internationale d'Administration des Entreprises http://www.esiae.fr/ -11766 FR Ecole Superieure Robert de Sorbon http://www.sorbon.fr/ -11767 FR Ecole Universitaire d'Ingénieurs de Lille http://www.eudil.fr/ -11768 FR ENIC Telecom Lille 1 http://www.enic.fr/ -11769 FR EPF Ecole d'Ingénieurs http://www.epf.fr/ -11770 FR European Business School http://www.ebs-paris.com/ -11771 FR European Management Center Paris http://www.emc-campus.com/ -11772 FR Grenoble Ecole de Management http://www.grenoble-em.com/ -11773 FR Groupe Sup de Co Amiens Picardie http://www.supco-amiens.fr/ -11774 FR Groupe Sup de Co Montpellier http://www.supco-montpellier.fr/ -11775 FR IDRAC (Institut de recherche en action commerciale) http://www.ecoles-idrac.com/ -11776 FR Institut Catholique d'Arts et Métiers Lille http://www.icam.fr/ -11777 FR Institut Catholique d'Arts et Métiers Nantes http://www.icam.fr/presentation/nantes.htm -11778 FR Institut Catholique de Paris http://www.icp.fr/ -11779 FR Institut Catholique de Toulouse http://www.ict-toulouse.asso.fr/ -11780 FR Institut Commercial de Nancy http://www.icn-nancy.com/ -11781 FR Institut de Recherche et d'Enseignement Supérieur aux Techniques de l'électronique http://www.ireste.fr/ -11782 FR Institut des hautes études économiques et commerciales http://www.inseec.fr/ -11783 FR Institut des Sciences de la Matière et du Rayonnement http://www.ismra.fr/ -11784 FR Institut des Sciences de l'Ingénieur de Clermont-Ferrand http://cust.univ-bpclermont.fr/ -11785 FR Institut des Sciences de l'Ingénieur de Montpellier http://www.isim.univ-montp2.fr/ -11786 FR Institut d'Etudes Politiques de Bordeaux http://www.iep.u-bordeaux.fr/ -11787 FR Institut d'Etudes Politiques de Paris (Sciences Po) http://www.sciences-po.fr/ -11788 FR Institut National des Sciences Appliquées de Lyon http://www.insa-lyon.fr/ -11789 FR Institut National des Sciences Appliquées de Rennes http://www.insa-rennes.fr/ -11790 FR Institut National des Sciences Appliquées de Rouen http://www.insa-rouen.fr/ -11791 FR Institut National des Sciences Appliquées de Toulouse http://www.insa-tlse.fr/ -11792 FR Institut National des Télécommunications http://www.int-evry.fr/ -11793 FR Institut National Polytechnique de Grenoble http://www.inpg.fr/ -11794 FR Institut National Polytechnique de Lorraine http://www.inpl-nancy.fr/ -11795 FR Institut National Polytechnique de Toulouse http://www.inp-fc.fr/ -11796 FR Institut National Supérieur de Formation Agro-Alimentaire http://agro.roazhon.inra.fr/etab/insfa/accueil.htm -11797 FR Institut Supérieur Agricole de Beauvais http://www.isab.fr/ -11798 FR Institut Supérieur d'Agriculture Lille http://www.isa.fupl.asso.fr/ -11799 FR Institut Supérieur d'Agriculture Rhone-Alpes http://www.isara.fr/ -11800 FR Institut Supérieure d'Electronique de Paris http://www.isep.fr/ -11801 FR Institut Supérieure d'Electronique du Nord http://www.isen.fr/ -11802 FR Institut Textile et Chimique de Lyon http://www.itech.fr/ -11803 FR Schiller International University, Paris http://www.schillerparis.com/ -11804 FR Schiller International University, Strasbourg http://www.schillerstrasbourg.com/ -11805 FR Université Blaise Pascal (Clermont-Ferrand II) http://www.univ-bpclermont.fr/ -11806 FR Université Bordeaux I http://www.cribx1.u-bordeaux.fr/ -11807 FR Université Catholique de Lille http://www.fupl.asso.fr/ -11808 FR Université Catholique de l' Ouest http://www.uco.fr/ -11809 FR Université Catholique de Lyon http://www.univ-catholyon.fr/ -11810 FR Université Charles-de-Gaulle (Lille III) http://www.univ-lille3.fr/ -11811 FR Université Claude Bernard (Lyon I) http://www.univ-lyon1.fr/ -11812 FR Université d'Aix-Marseille III http://www.u-3mrs.fr/ -11813 FR Université d'Angers http://www.univ-angers.fr/ -11814 FR Université d'Artois http://www.univ-artois.fr/ -11815 FR Université d'Auvergne (Clermont-Ferrand I) http://www.u-clermont1.fr/ -11816 FR Université d'Avignon http://www.univ-avignon.fr/ -11817 FR Université de Bourgogne http://www.u-bourgogne.fr/ -11818 FR Université de Bretagne Occidentale http://www.univ-brest.fr/ -11819 FR Université de Bretagne Sud http://www.univ-ubs.fr/ -11820 FR Université de Caen Basse Normandie http://www.unicaen.fr/ -11821 FR Université de Cergy-Pontoise http://www.u-cergy.fr/ -11822 FR Université de Corse Pascal Paoli http://www.univ-corse.fr/ -11823 FR Université de Franche-Comté http://www.univ-fcomte.fr/ -11824 FR Université de Haute-Alsace http://www.univ-mulhouse.fr/ -11825 FR Université de la Méditerranée (Aix Marseille II) http://www.univmed.fr/ -11826 FR Université de La Rochelle http://www.univ-lr.fr/ -11827 FR Université de Limoges http://www.unilim.fr/ -11828 FR Université de Marne la Vallée http://www.univ-mlv.fr/ -11829 FR Université de Metz http://www.univ-metz.fr/ -11830 FR Université de Montpellier I http://www.univ-montp1.fr/ -11831 FR Université de Montpellier II http://www.univ-montp2.fr/ -11832 FR Université de Nantes http://www.univ-nantes.fr/ -11833 FR Université de Nice-Sophia Antipolis http://www.unice.fr/ -11834 FR Université Denis Diderot (Paris VII) http://www.sigu7.jussieu.fr/ -11835 FR Université de Pau et des Pays de l'Adour http://www.univ-pau.fr/ -11836 FR Université de Perpignan http://www.univ-perp.fr/ -11837 FR Université de Picardie Jules-Verne http://www.u-picardie.fr/ -11838 FR Université de Poitiers http://www.univ-poitiers.fr/ -11839 FR Université de Provence (Aix-Marseille I) http://www.up.univ-mrs.fr/ -11840 FR Université de Reims Champagne-Ardenne http://www.univ-reims.fr/ -11841 FR Université de Rouen - Haute Normandie http://www.univ-rouen.fr/ -11842 FR Université de Savoie http://www.univ-savoie.fr/ -11843 FR Université des Sciences et Technologies de Lille (Lille I) http://www.univ-lille1.fr/ -11844 FR Université des Sciences Humaines (Strasbourg II) http://ushs.u-strasbg.fr/ -11845 FR Université des Sciences Sociales (Toulouse I) http://www.univ-tlse1.fr/ -11846 FR Université de Technologie de Belfort Montbéliard http://www.utbm.fr/ -11847 FR Université de Technologie de Compiègne http://www.utc.fr/ -11848 FR Université de Technologie de Troyes http://www.utt.fr/ -11849 FR Université de Toulouse http://www.univ-toulouse.fr/ -11850 FR Université de Toulouse-le-Mirail (Toulouse II) http://www.univ-tlse2.fr/ -11851 FR Université de Valenciennes et du Hainaut-Cambrésis http://www.univ-valenciennes.fr/ -11852 FR Université de Versailles Saint-Quentin-en-Yvelines http://www.uvsq.fr/ -11853 FR Université d'Evry Val d'Essonne http://www.univ-evry.fr/ -11854 FR Université d'Orléans http://www.univ-orleans.fr/ -11855 FR Université du Droit et de la Sante (Lille II) http://www.univ-lille2.fr/ -11856 FR Université du Havre http://www.univ-lehavre.fr/ -11857 FR Université du Littoral Cote d'Opale http://www.univ-littoral.fr/ -11858 FR Université du Maine http://www.univ-lemans.fr/ -11859 FR Université du Sud, Toulon et Var http://www.univ-tln.fr/ -11860 FR Université François Rabelais de Tours http://www.univ-tours.fr/ -11861 FR Université Henri Poincaré (Nancy I) http://www.uhp-nancy.fr/ -11862 FR Université Jean Monnet http://www.univ-st-etienne.fr/ -11863 FR Université Jean Moulin (Lyon III) http://www.univ-lyon3.fr/ -11864 FR Université Joseph Fourier (Grenoble I) http://www.ujf-grenoble.fr/ -11865 FR Université Louis Pasteur (Strasbourg I) http://www-ulp.u-strasbg.fr/ -11866 FR Université Lumiére (Lyon II) http://www.univ-lyon2.fr/ -11867 FR Université Michel de Montaigne (Bordeaux III ) http://www.montaigne.u-bordeaux.fr/ -11868 FR Université Montesquieu (Bordeaux IV) http://www.montesquieu.u-bordeaux.fr/ -11869 FR Université Nancy II http://www.univ-nancy2.fr/ -11870 FR Université Panthéon-Assas (Paris II) http://www.u-paris2.fr/ -11871 FR Université Panthéon-Sorbonne (Paris I) http://www.univ-paris1.fr/ -11872 FR Université Paris-Dauphine (Paris IX) http://www.dauphine.fr/ -11873 FR Université Paris Nanterre (Paris X) http://www.u-paris10.fr/ -11874 FR Université Paris Nord (Paris XIII) http://www.univ-paris13.fr/ -11875 FR Université Paris-Sorbonne (Paris IV) http://www.paris4.sorbonne.fr/ -11876 FR Université Paris Sud (Paris XI) http://www.u-psud.fr/ -11877 FR Université Paul Sabatier (Toulouse III) http://www.ups-tlse.fr/ -11878 FR Université Paul Valéry (Montpellier III) http://www.univ-montp3.fr/ -11879 FR Université Pierre et Marie Curie (Paris VI) http://www.jussieu.fr/ -11880 FR Université Pierre Mendes-France (Grenoble II) http://www.upmf-grenoble.fr/ -11881 FR Université René Descartes (Paris V) http://www.univ-paris5.fr/ -11882 FR Université Rennes I http://www.univ-rennes1.fr/ -11883 FR Université Rennes II - Haute-Bretagne http://www.uhb.fr/ -11884 FR Université Robert Schuman (Strasbourg III) http://www-urs.u-strasbg.fr/ -11885 FR Université Sorbonne-Nouvelle (Paris III) http://www.univ-paris3.fr/ -11886 FR Université Stendhal (Grenoble III) http://www.u-grenoble3.fr/ -11887 FR Université Val-de-Marne (Paris XII) http://www.univ-paris12.fr/ -11888 FR Université Victor Segalen (Bordeaux II) http://www.u-bordeaux2.fr/ -11889 FR Université Vincennes Saint-Denis (Paris VIII) http://www.univ-paris8.fr/ -11890 GA Université Omar Bongo http://www.uob.ga/ -11891 GB Aga Khan University http://www.aku.edu/ -11892 GB American InterContinental University - London http://www.aiuniv.edu/ -11893 GB Anglia Ruskin University http://www.anglia.ac.uk/ -11894 GB Aston University http://www.aston.ac.uk/ -11895 GB Birkbeck College, University of London http://www.bbk.ac.uk/ -11896 GB Birmingham City University http://www.bcu.ac.uk/ -11897 GB Bournemouth University http://www.bournemouth.ac.uk/ -11898 GB British College of Osteopathic Medicine http://www.bcom.ac.uk/ -11899 GB Brunel University Uxbridge http://www.brunel.ac.uk/ -11900 GB Buckinghamshire New University http://www.bucks.ac.uk/ -11901 GB Camberwell College of Arts http://www.camb.linst.ac.uk/ -11902 GB Canterbury Christ Church University http://www.canterbury.ac.uk/ -11903 GB Cardiff University http://www.cardiff.ac.uk/ -11904 GB Central Saint Martins College of Art & Design http://www.csm.linst.ac.uk/ -11905 GB Chelsea College of Art and Design http://www.chelsea.linst.ac.uk/ -11906 GB City University http://www.city.ac.uk/ -11907 GB Courtauld Institute of Art, University of London http://www.courtauld.ac.uk/ -11908 GB Coventry University http://www.coventry.ac.uk/ -11909 GB Cranfield University http://www.cranfield.ac.uk/ -11910 GB De Montfort University Leicester http://www.dmu.ac.uk/ -11911 GB European School of Economics http://www.eselondon.ac.uk/ -11912 GB Falmouth University http://www.falmouth.ac.uk/ -11913 GB Glasgow Caledonian University http://www.gcal.ac.uk/ -11914 GB Glasgow School of Art http://www.gsa.ac.uk/ -11915 GB Goldsmiths College, University of London http://www.gold.ac.uk/ -11916 GB Heriot-Watt University http://www.hw.ac.uk/ -11917 GB Heythrop College, University of London http://www.heythrop.ac.uk/ -11918 GB Huron University USA in London http://www.huron.ac.uk/ -11919 GB ifs University College http://www.ifslearning.ac.uk/ -11920 GB Imperial College London http://www.ic.ac.uk/ -11921 GB Imperial College School of Medicine http://www.med.ic.ac.uk/ -11922 GB Institue of Historical Research, University of London http://ihr.sas.ac.uk/ -11923 GB Institute of Advanced Legal Studies, University of London http://www.sas.ac.uk/ials/ -11924 GB Institute of Classical Studies, University of London http://www.sas.ac.uk/icls/ -11925 GB Institute of Commonwealth Studies, University of London http://www.ihr.sas.ac.uk/ics/ -11926 GB Institute of Education, University of London http://www.ioe.ac.uk/ -11927 GB Institute of Germanic Studies, University of London http://www.sas.ac.uk/igs/ -11928 GB Institute of Latin American Studies, University of London http://www.sas.ac.uk/ilas/ -11929 GB International Centre for Isclamic Science http://www.kolieh.com/ -11930 GB International Colleges of Islamic Science http://www.islamiccolleges.com/ -11931 GB Keele University http://www.keele.ac.uk/ -11932 GB King's College London, University of London http://www.kcl.ac.uk/ -11933 GB Kingston University http://www.kingston.ac.uk/ -11934 GB Leeds Metropolitan University http://www.lmu.ac.uk/ -11935 GB Liverpool Hope University College http://www.hope.ac.uk/ -11936 GB Liverpool John Moores University http://www.livjm.ac.uk/ -11937 GB London Business School http://www.lbs.lon.ac.uk/ -11938 GB London College of Science & Technology http://www.lcst.ac/ -11939 GB London Guildhall University http://www.lgu.ac.uk/ -11940 GB London Institute of Management and Technology http://www.limt.co.uk/ -11941 GB London Metropolitan University http://www.londonmet.ac.uk/ -11942 GB London School of Business & Finance http://www.lsbf.org.uk/ -11943 GB London School of Economics and Political Science, University of London http://www.lse.ac.uk/ -11944 GB London School of Hygiene & Tropical Medicine, University of London http://www.lshtm.ac.uk/ -11945 GB London School of Jewish Studies http://www.brijnet.org/lsjs/ -11946 GB Loughborough University http://www.lboro.ac.uk/ -11947 GB Middlesex University http://www.mdx.ac.uk/ -11948 GB Napier University http://www.napier.ac.uk/ -11949 GB Newport International University http://www.niu.org.uk/ -11950 GB Nottingham Trent University http://www.ntu.ac.uk/ -11951 GB Open University http://www.open.ac.uk/ -11952 GB Oxford Brookes University http://www.brookes.ac.uk/ -11953 GB Queen Mary and Westfield College, University of London http://www.qmw.ac.uk/ -11954 GB Richmond University - The American International University in London http://www.richmond.ac.uk/ -11955 GB Roehampton University of Surrey http://www.roehampton.ac.uk/ -11956 GB Royal Academy of Music, University of London http://www.ram.ac.uk/ -11957 GB Royal College of Art http://www.rca.ac.uk/ -11958 GB Royal College of Music, University of London http://www.rcm.ac.uk/ -11959 GB Royal Free Hospital School of Medicine, University of London http://www.rfhsm.ac.uk/ -11960 GB Royal Holloway and Bedford New College http://www.rhbnc.ac.uk/ -11961 GB Saint George's Hospital Medical School, University of London http://www.sghms.ac.uk/ -11962 GB Schiller International University, London http://www.schillerlondon.ac.uk/ -11963 GB School of Oriental and African Studies, University of London http://www.soas.ac.uk/ -11964 GB School of Pharmacy, University of London http://www.ulsop.ac.uk/ -11965 GB School of Slavonic and East European Studies, University of London http://www.ssees.ac.uk/ -11966 GB Sheffield Hallam University http://www.shu.ac.uk/ -11967 GB Sotheby´s Institute of Art - London http://www.sothebysinstitutelondon.com/ -11968 GB Southampton Solent University http://www.solent.ac.uk/ -11969 GB South Bank University http://www.sbu.ac.uk/ -11970 GB Staffordshire University http://www.staffs.ac.uk/ -11971 GB St.Patrick's International College, London http://www.st-patricks.ac.uk/ -11972 GB Stratford College London http://www.sclondon.ac/ -11973 GB Swansea Metropolitan University http://www.smu.ac.uk/ -11974 GB Thames Valley University http://www.tvu.ac.uk/ -11975 GB The American University in London http://www.aul.edu/ -11976 GB The Manchester Metropolitan University http://www.mmu.ac.uk/ -11977 GB The Queen's University Belfast http://www.qub.ac.uk/ -11978 GB The Robert Gordon University http://www.rgu.ac.uk/ -11979 GB Trinity College Carmarthen http://www.trinity-cm.ac.uk/ -11980 GB Trinity College of Music http://www.tcm.ac.uk/ -11981 GB United Medical and Dental Schools, University of London http://www.umds.ac.uk/ -11982 GB University Campus Suffolk http://www.ucs.ac.uk/ -11983 GB University College London, University of London http://www.ucl.ac.uk/ -11984 GB University of Aberdeen http://www.abdn.ac.uk/ -11985 GB University of Abertay Dundee http://www.abertay.ac.uk/ -11986 GB University of Bath http://www.bath.ac.uk/ -11987 GB University of Bedfordshire http://www.beds.ac.uk/ -11988 GB University of Birmingham http://www.bham.ac.uk/ -11989 GB University of Bolton http://www.bolton.ac.uk/ -11990 GB University of Bradford http://www.brad.ac.uk/ -11991 GB University of Brighton http://www.bton.ac.uk/ -11992 GB University of Bristol http://www.bris.ac.uk/ -11993 GB University of Buckingham http://www.buck.ac.uk/ -11994 GB University of Cambridge http://www.cam.ac.uk/ -11995 GB University of Central Lancashire http://www.uclan.ac.uk/ -11996 GB University of Chester http://www.chester.ac.uk/ -11997 GB University of Derby http://www.derby.ac.uk/ -11998 GB University of Dundee http://www.dundee.ac.uk/ -11999 GB University of Durham http://www.dur.ac.uk/ -12000 GB University of East Anglia http://www.uea.ac.uk/ -12001 GB University of East London http://www.uel.ac.uk/ -12002 GB University of Edinburgh http://www.ed.ac.uk/ -12003 GB University of Essex http://www.essex.ac.uk/ -12004 GB University of Exeter http://www.ex.ac.uk/ -12005 GB University of Glamorgan http://www.glam.ac.uk/ -12006 GB University of Glasgow http://www.gla.ac.uk/ -12007 GB University of Gloucestershire http://www.glos.ac.uk/ -12008 GB University of Greenwich http://www.gre.ac.uk/ -12009 GB University of Halifax, Birmingham Campus http://www.halifaxuni.ac/ -12010 GB University of Hertfordshire http://www.herts.ac.uk/ -12011 GB University of Huddersfield http://www.hud.ac.uk/ -12012 GB University of Hull http://www.hull.ac.uk/ -12013 GB University of Kent at Canterbury http://www.ukc.ac.uk/ -12014 GB University of Lancaster http://www.lancs.ac.uk/ -12015 GB University of Leeds http://www.leeds.ac.uk/ -12016 GB University of Leicester http://www.le.ac.uk/ -12017 GB University of Lincoln http://www.lincoln.ac.uk/ -12018 GB University of Liverpool http://www.liv.ac.uk/ -12019 GB University of London http://www.lon.ac.uk/ -12020 GB University of Manchester http://www.man.ac.uk/ -12021 GB University of Newcastle-upon-Tyne http://www.ncl.ac.uk/ -12022 GB University of Northampton http://www.northampton.ac.uk/ -12023 GB University of North London http://www.unl.ac.uk/ -12024 GB University of Northumbria at Newcastle http://www.unn.ac.uk/ -12025 GB University of Nottingham http://www.nottingham.ac.uk/ -12026 GB University of Oxford http://www.ox.ac.uk/ -12027 GB University of Paisley http://www.paisley.ac.uk/ -12028 GB University of Plymouth http://www.plymouth.ac.uk/ -12029 GB University of Portsmouth http://www.port.ac.uk/ -12030 GB University of Reading http://www.rdg.ac.uk/ -12031 GB University of Salford http://www.salford.ac.uk/ -12032 GB University of Sheffield http://www.shef.ac.uk/ -12033 GB University of Southampton http://www.soton.ac.uk/ -12034 GB University of St. Andrews http://www.st-and.ac.uk/ -12035 GB University of Stirling http://www.stir.ac.uk/ -12036 GB University of Strathclyde http://www.strath.ac.uk/ -12037 GB University of Sunderland http://www.sunderland.ac.uk/ -12038 GB University of Surrey http://www.surrey.ac.uk/ -12039 GB University of Sussex http://www.sussex.ac.uk/ -12040 GB University of Teesside http://www.tees.ac.uk/ -12041 GB University of the West of England, Bristol http://www.uwe.ac.uk/ -12042 GB University of Ulster http://www.ulst.ac.uk/ -12043 GB University of Wales http://www.wales.ac.uk/ -12044 GB University of Wales, Aberystwyth http://www.aber.ac.uk/ -12045 GB University of Wales, Bangor http://www.bangor.ac.uk/ -12046 GB University of Wales College of Medicine http://www.uwcm.ac.uk/ -12047 GB University of Wales Institute, Cardiff http://www.uwic.ac.uk/ -12048 GB University of Wales, Lampeter http://www.lamp.ac.uk/ -12049 GB University of Wales, Newport http://www.newport.ac.uk/ -12050 GB University of Wales, Swansea http://www.swan.ac.uk/ -12051 GB University of Warwick http://www.warwick.ac.uk/ -12052 GB University of Westminster http://www.westminster.ac.uk/ -12053 GB University of Wolverhampton http://www.wlv.ac.uk/ -12054 GB University of Worcester http://www.worc.ac.uk/ -12055 GB University of York http://www.york.ac.uk/ -12056 GB Warburg Institute, University of London http://www.sas.ac.uk/warburg/ -12057 GB Warnborough University http://www.warnborough.edu/ -12058 GB William Gilbert College http://www.williamgilbert.co.uk/ -12059 GB Wimbledon School of Art http://www.wimbledon.ac.uk/ -12060 GD St. George's University http://www.sgu.edu/ -12061 GE Agricultural University of Georgia http://www.agruni.edu.ge/ -12062 GE Akaki Tsereteli State University http://www.atsu.edu.ge/ -12063 GE Caucasus University http://www.cu.edu.ge/ -12064 GE Free University of Tbilisi http://www.freeuni.ge/ -12065 GE Georgian Technical University http://www.gtu.edu.ge/ -12066 GE Ilia Chavchavadze State University http://www.iliauni.edu.ge/ -12067 GE International Blacksea University http://www.ibsu.edu.ge/ -12068 GE St. Andrew Georgian University http://www.sangu.ge/ -12069 GE Tbilisi State Medical University http://www.tsmu.edu/ -12070 GE Tbilisi State University http://www.tsu.edu.ge/ -12071 GE Tbilisi Teaching University http://www.tbuniver.edu.ge/ -12072 GE University of Grigol Robakidze http://www.gruni.edu.ge/ -12073 GF Université des Antilles et de la Guyane http://www.univ-ag.fr/ -12074 GH Accra Polytechnic http://www.accrapolytechnic.edu.gh/ -12075 GH Akrofi-Christaller Institute of Theeology, Mission and Culture http://www.acighana.org/ -12076 GH All Nations University College http://www.anuc.edu.gh/ -12077 GH Ashesi University http://www.ashesi.edu.gh/ -12078 GH Cape Coast Polytechnic http://www.cpoly.edu.gh/ -12079 GH Central University College http://www.central.edu.gh/ -12080 GH Ghana Christian University College http://www.ghanacu.org/ -12081 GH Ghana Institute of Management and Public Administration (GIMPA) http://www.gimpa.edu.gh/ -12082 GH Ghana Telecom University College http://www.gtuc.edu.gh/ -12083 GH Ho Polytechnic http://www.hopoly.edu.gh/ -12084 GH Islamic University College http://www.iug.edu.gh/ -12085 GH Koforidua Polytechnic http://www.koforiduapoly.edu.gh/ -12086 GH Kumasi Polytechnic http://www.kpoly.edu.gh/ -12087 GH Kwame Nkrumah University of Science and Technology http://www.knust.edu.gh/ -12088 GH Lancaster University Ghana http://www.lancaster.edu.gh/ -12089 GH Pan African Christian University College http://www.pacuc.edu.gh/ -12090 GH Prempeh College http://www.prempeh-college.com/ -12091 GH Presbyterian University College http://www.presbyuniversity.edu.gh/ -12092 GH Regent University College of Science and Technology http://www.regentghana.net/ -12093 GH Takoradi Polytechnic http://www.tpoly.edu.gh/ -12094 GH Trinity Theological Seminary http://www.trinity.edu.gh/ -12095 GH University for Development Studies http://www.uds.edu.gh/ -12096 GH University of Cape Coast http://www.ucc.edu.gh/ -12097 GH University of Education, Winneba http://www.uew.edu.gh/ -12098 GH University of Ghana http://www.ug.edu.gh/ -12099 GH Valley View University http://www.vvu.edu.gh/ -12100 GL University of Greenland http://www.ilisimatusarfik.gl/ -12101 GM American International University West Africa http://www.aiu.edu.gm/ -12102 GM EUCLID University http://www.euclid.int/ -12103 GM University of the Gambia http://www.utg.edu.gm/ -12104 GN Université Gamal Abdel Nasser de Conakry http://www.uganc.org/ -12105 GN Université Julius Nyerere Kankan http://www.ujnk.org/ -12106 GN Université Kofi Annan http://www.univ-kag.org/ -12107 GN Université Thierno Amadou Diallo http://www.utad-petel-edu.org/ -12108 GP Université des Antilles et de la Guyane http://www.univ-ag.fr/ -12109 GQ Universidad Nacional de Guinea Ecuatorial http://www.unge.gq/ -12110 GR Aegean University http://www.aegean.gr/ -12111 GR Agricultural University of Athens http://www.aua.gr/ -12112 GR American College of Greece http://www.acg.gr/ -12113 GR American College of Thessaloniki http://www.act.edu/ -12114 GR Aristotle University of Thessaloniki http://www.auth.gr/ -12115 GR Athens Graduate School of Management (AGSM) http://www.agsm.gr/ -12116 GR Athens Laboratory of Business Administration (ALBA) http://www.alba.edu.gr/ -12117 GR Athens School of Fine Arts http://www.asfa.gr/ -12118 GR Athens University of Economics and Business http://www.aueb.gr/ -12119 GR City University Athens http://www.cityu.gr/ -12120 GR DEI Bachelor & Master Degrees http://www.dei.edu.gr/ -12121 GR Dimocritus University of Thrace http://www.duth.gr/ -12122 GR European University, Athens Campus http://www.euruni.edu/ -12123 GR Harokopio University http://www.forthnet.gr/harokopio/ -12124 GR Hellenic Army Academy http://www.sse.gr/ -12125 GR Hellenic Open University http://www.eap.gr/ -12126 GR Institute of Management Development - Ohrid http://www.imd.edu.gr/ -12127 GR Institute of Management & Enteurpreneurship of South East Europe http://www.imese.gr/ -12128 GR International Hellenic University http://www.ihu.edu.gr/ -12129 GR Ionian University Corfu http://www.uion.edu.gr/ -12130 GR National Technical University of Athens http://www.ntua.gr/ -12131 GR Panteios University of Economics and Political Sciences Athens http://www.panteion.gr/ -12132 GR Technical University of Crete http://www.tuc.gr/ -12133 GR Technological Education Institute of Athens http://www.teiath.gr/ -12134 GR Technological Education Institute of Epiros http://www.teiep.gr/ -12135 GR Technological Education Institute of Halkida, Euboea http://www.teihal.gr/ -12136 GR Technological Education Institute of Heraklion http://www.teiher.gr/ -12137 GR Technological Education Institute of Kalamata http://www.teikal.gr/ -12138 GR Technological Education Institute of Kavala http://www.teikav.edu.gr/ -12139 GR Technological Education Institute of Kozani http://www.teikoz.gr/ -12140 GR Technological Education Institute of Lamia http://www.teilam.gr/ -12141 GR Technological Education Institute of Larissa http://www.teilar.gr/ -12142 GR Technological Education Institute of Mesologgi http://www.teimes.gr/ -12143 GR Technological Education Institute of Patras http://www.teipat.gr/ -12144 GR Technological Education Institute of Piraeus http://www.teipir.gr/ -12145 GR Technological Education Institute of Serres http://www.teiser.gr/ -12146 GR Technological Education Institute of Thessaloniki http://www.teithe.gr/ -12147 GR University of Athens http://www.uoa.gr/ -12148 GR University of Central Greece http://www.ucg.gr/ -12149 GR University of Crete http://www.uoc.gr/ -12150 GR University of Indianapolis in Athens http://www.uindy.edu.gr/ -12151 GR University of Ioannina http://www.uoi.gr/ -12152 GR University of LaVerne in Athens http://www.laverne.edu.gr/ -12153 GR University of Macedonia http://www.uom.gr/ -12154 GR University of Patras http://www.upatras.gr/ -12155 GR University of Peloponnese http://www.uop.gr/ -12156 GR University of Piraeus http://www.unipi.gr/ -12157 GR University of Thessaly http://www.uth.gr/ -12158 GR University of Western Macedonia http://www.uowm.gr/ -12159 GR Yorker International University, Athens http://www.nyuniversity.net/ -12160 GT Centro Universitario Ciudad Vieja http://www.cucv.edu.gt/ -12161 GT Centro Universitario de Occidente http://www.cunoc.edu.gt/ -12162 GT Universidad del Istmo http://www.unis.edu.gt/ -12163 GT Universidad del Valle de Guatemala http://www.uvg.edu.gt/ -12164 GT Universidad de San Carlos de Guatemala http://www.usac.edu.gt/ -12165 GT Universidad Francisco Marroquín http://www.ufm.edu.gt/ -12166 GT Universidad Galileo http://www.galileo.edu/ -12167 GT Universidad Mariano Gálvez http://www.umg.edu.gt/ -12168 GT Universidad Panamericana http://www.upana.edu.gt/ -12169 GT Universidad Rafael Landívar http://www.url.edu.gt/ -12170 GT Universidad Rural de Guatemala http://www.urural.edu.gt/ -12171 GU University of Guam http://www.uog.edu/ -12172 GY Gemsville Technical University http://www.gemsvilleuniversity.com/ -12173 GY Greenheart Medical School http://www.greenheartmed.org/ -12174 GY Texila American University http://www.tauedu.org/ -12175 GY University of Guyana http://www.uog.edu.gy/ -12176 HK Chinese University of Hong Kong http://www.cuhk.hk/ -12177 HK Chu Hai College http://www.chuhai.edu.hk/ -12178 HK City University of Hong Kong http://www.cityu.edu.hk/ -12179 HK Hong Kong Academy for Performing Arts http://www.hkapa.edu/ -12180 HK Hong Kong Baptist University http://www.hkbu.edu.hk/ -12181 HK Hong Kong Institute of Education http://www.ied.edu.hk/ -12182 HK Hong Kong Polytechnic University http://www.polyu.edu.hk/ -12183 HK Hong Kong Shue Yan College http://www.hksyc.edu/ -12184 HK Hong Kong University of Science and Technology http://www.ust.hk/ -12185 HK Lingnan University http://www.ln.edu.hk/ -12186 HK Open University of Hong Kong http://www.ouhk.edu.hk/ -12187 HK University of Hong Kong http://www.hku.hk/ -12188 HN Escuela Agricola Panamericana Zamorano http://www.zamorano.edu/ -12189 HN Universidad Católica de Honduras http://www.unicah.edu/ -12190 HN Universidad de San Pedro Sula http://www.usps.edu.hn/ -12191 HN Universidad José Cecilio del Valle http://www.ujcv.edu.hn/ -12192 HN Universidad Metropolitana de Honduras http://www.unimetro.edu.hn/ -12193 HN Universidad Nacional Autónoma de Honduras http://www.unah.edu.hn/ -12194 HN Universidad Pedagógica Nacional "Francisco Morazán" http://www.upnfm.edu.hn/ -12195 HN Universidad Tecnológica Centroamericana http://www.unitec.edu/ -12196 HN Universidad Tecnológica de Honduras http://www.uth.hn/ -12197 HR University of Dubrovnik http://www.unidu.hr/ -12198 HR University of Osijek http://www.unios.hr/ -12199 HR University of Pula http://www.unipu.hr/ -12200 HR University of Rijeka http://www.uniri.hr/ -12201 HR University of Split http://www.unist.hr/ -12202 HR University of Zadar http://www.unizd.hr/ -12203 HR University of Zagreb http://www.unizg.hr/ -12204 HR Zagreb School of Economics and Management http://www.zsem.hr/ -12205 HT American University of the Caribbean http://www.auchaiti.org/ -12206 HT Université Chrétienne du Nord d'Haiti http://www.ucnh.org/ -12207 HT Université d'Etat d'Haiti http://www.ueh.edu.ht/ -12208 HT Université Épiscopale d'Haiti http://www.uneph.org/ -12209 HT Université Notre Dame d'Haïti http://www.undh.org/ -12210 HT Université Quisqueya http://www.uniq.edu/ -12211 HU Academy of Drama and Film http://www.filmacademy.hu/ -12212 HU Andrassy Gyula German Speaking University Budapest http://www.andrassyuni.hu/ -12213 HU Avicenna International College http://www.avicenna.hu/ -12214 HU Budapest Buddhist University http://www.tkbf.hu/ -12215 HU Budapest University of Economic Sciences and Public Administration http://www.bke.hu/ -12216 HU Central European University http://www.ceu.hu/ -12217 HU College of Dunaujvaros http://www.duf.hu/ -12218 HU Dániel Berzsenyi Teacher Training College http://www.bdtf.hu/ -12219 HU Debrecen University of Agricultural Sciences http://www.agr.unideb.hu/ -12220 HU Eötvös Lorand University http://www.elte.hu/ -12221 HU Esztergom Theological College http://www.ehf.hu/ -12222 HU Haynal Imre University of Health Sciences Budapest http://www.hiete.hu/ -12223 HU Hungarian Academy of Craft and Design http://www.mif.hu/ -12224 HU Hungarian Academy of Fine Arts Budapest http://www.arts7.hu/ -12225 HU Hungarian University of Physical Education http://www.hupe.hu/ -12226 HU Janus Pannonius University http://www.jpte.hu/ -12227 HU Károl Gáspár University of the Reformed Church http://www.kgre.hu/ -12228 HU Kodolanyi Janos University College http://www.kodolanyi.hu/ -12229 HU Kossuth Lajos University http://www.lib.klte.hu/ -12230 HU Liszt Ferenc Academy of Music Budapest http://www.lfze.hu/ -12231 HU Pázmány Péter Catholic University http://www.ppke.hu/ -12232 HU Reformed Theological Academy of Debrecen http://www.drk.hu/ -12233 HU Séchenyi István University http://www.sze.hu/ -12234 HU Semmelweis University of Medical Sciences http://www.sote.hu/ -12235 HU Szent István University http://www.szie.hu/ -12236 HU Technical University of Budapest http://www.bme.hu/ -12237 HU University Medical School of Debrecen http://www.dote.hu/ -12238 HU University Medical School of Pécs http://www.pote.hu/ -12239 HU University of Debrecen http://www.unideb.hu/ -12240 HU University of Horticulture and Food Industry http://www.kee.hu/ -12241 HU University of Miskolc http://www.uni-miskolc.hu/ -12242 HU University of Pannonia http://www.uni-pannon.hu/ -12243 HU University of Pecs http://www.pte.hu/ -12244 HU University of Sopron http://www.efe.hu/ -12245 HU University of Szeged http://www.u-szeged.hu/ -12246 HU University of Veterinary Science http://www.univet.hu/ -12247 HU University of West Hungary http://www.nyme.hu/ -12248 ID Abfi Institute Perbanas Jakarta http://www.perbanasinstitute.ac.id/ -12249 ID Binus University http://www.binus.ac.id/ -12250 ID Bogor Agricultural University http://www.ipb.ac.id/ -12251 ID Institut Sains dan Teknologi Al Kamal http://www.ista.ac.id/ -12252 ID Institut Sains & Teknologi Akprind http://www.akprind.ac.id/ -12253 ID Institut Teknologi Adhi Tama Surabaya http://www.itats.ac.id/ -12254 ID Institut Teknologi Bandung http://www.itb.ac.id/ -12255 ID Institut Teknologi Sepuluh Nopember http://www.its.ac.id/ -12256 ID Institut Teknologi Telkom http://www.stttelkom.ac.id/ -12257 ID Politeknik Negeri Bandung http://www.polban.ac.id/ -12258 ID Politeknik Negeri Jakarta http://www.pnj.ac.id/ -12259 ID Politeknik Negeri Lhokseumawe http://www.pnl.ac.id/ -12260 ID Politeknik Negeri Malang http://www.poltek-malang.ac.id/ -12261 ID Politeknik Negeri Padang http://www.polinpdg.ac.id/ -12262 ID Politeknik Negeri Pontianak http://www.polnep.ac.id/ -12263 ID Politeknik Negeri Sambas http://www.poltesa.ac.id/ -12264 ID Politeknik Negeri Semarang http://www.polines.ac.id/ -12265 ID Politeknik Pos Indonesia http://www.poltekpos.ac.id/ -12266 ID Prasetiya Mulya Business School http://www.pmbs.ac.id/ -12267 ID Sekolah Tinggi Akuntansi Negara (STAN) http://www.stan.ac.id/ -12268 ID Stie Perbanas Surabaya http://www.perbanas.ac.id/ -12269 ID STMIK AMIKOM Yogyakarta http://www.amikom.ac.id/ -12270 ID STMIK Sinar Nusantara http://www.sinus.ac.id/ -12271 ID Swiss German University http://www.sgu.ac.id/ -12272 ID Trisakti Institute of Tourism http://www.stptrisakti.ac.id/ -12273 ID Unitomo Surabaya http://www.unitomo.ac.id/ -12274 ID Universitas 17 Agustus 1945 Banyuwangi http://www.untag-banyuwangi.ac.id/ -12275 ID Universitas 17 Agustus 1945 Cirebon http://www.untagcirebon.info/ -12276 ID Universitas 17 Agustus 1945 Jakarta http://www.untag-jkt.org/ -12277 ID Universitas 17 Agustus 1945 Samarinda http://www.untag-smd.ac.id/ -12278 ID Universitas 17 Agustus 1945 Semarang http://www.untagsmg.ac.id/ -12279 ID Universitas 17 Agustus 1945 Surabaya http://www.untag.ac.id/ -12280 ID Universitas Advent Indonesia http://www.unai.edu/ -12281 ID Universitas Ahmad Dahlan http://www.uad.ac.id/ -12282 ID Universitas Airlangga http://www.unair.ac.id/ -12283 ID Universitas Amir Hamzah http://www.unhamzah.ac.id/ -12284 ID Universitas Andalas http://www.unand.ac.id/ -12285 ID Universitas Atma Jaya Yogyakarta http://www.uajy.ac.id/ -12286 ID Universitas Bakrie http://www.bakrie.ac.id/ -12287 ID Universitas Bengkulu http://www.unib.ac.id/ -12288 ID Universitas Bhayangkara Jakarta Raya http://www.ubharajaya.ac.id/ -12289 ID Universitas Bhayangkara Surabaya http://www.ubhara.ac.id/ -12290 ID Universitas Bojonegoro http://www.unigoro.ac.id/ -12291 ID Universitas Brawijaya http://www.ub.ac.id/ -12292 ID Universitas Bunda Mulia Jakarta http://www.ubm.ac.id/ -12293 ID Universitas Bung Hatta http://www.bunghatta.ac.id/ -12294 ID Universitas Cenderawasih http://www.uncen.ac.id/ -12295 ID Universitas Darma Agung http://www.uda.ac.id/ -12296 ID Universitas Darma Persada http://www.unsada.ac.id/ -12297 ID Universitas Dian Nuswantoro http://www.dinus.ac.id/ -12298 ID Universitas Diponegoro http://www.undip.ac.id/ -12299 ID Universitas Dr. R. Moestopo http://www.moestopo.ac.id/ -12300 ID Universitas Gadjah Mada http://www.ugm.ac.id/ -12301 ID Universitas Gajayana Malang http://www.unigamalang.ac.id/ -12302 ID Universitas Gunadarma http://www.gunadarma.ac.id/ -12303 ID Universitas Haluoleo http://www.unhalu.ac.id/ -12304 ID Universitas Hasanuddin http://www.unhas.ac.id/ -12305 ID Universitas HKBP Nommensen http://www.nommensen.org/ -12306 ID Universitas Ibn Chaldun Jakarta http://www.ibnuchaldun.com/ -12307 ID Universitas Ibn Khaldun Bogor http://www.uika-bogor.ac.id/ -12308 ID Universitas Indonesia http://www.ui.ac.id/ -12309 ID Universitas Indonusa Esa Unggul http://www.indonusa.ac.id/ -12310 ID Universitas Islam Bandung http://www.unisba.ac.id/ -12311 ID Universitas Islam Indonesia http://www.uii.ac.id/ -12312 ID Universitas Islam Jakarta http://www.uinjkt.ac.id/ -12313 ID Universitas Islam Malang http://www.unisma.ac.id/ -12314 ID Universitas Islam Nusantara http://www.uninus.ac.id/ -12315 ID Universitas Islam Riau http://www.uir.ac.id/ -12316 ID Universitas Islam Sultan Agung http://www.unissula.ac.id/ -12317 ID Universitas Islam Sumatera Utara http://www.uisu.ac.id/ -12318 ID Universitas Islam Syekh-Yusuf http://www.unistangerang.ac.id/ -12319 ID Universitas Jambi http://www.unja.ac.id/ -12320 ID Universitas Janabadra http://www.janabadra.ac.id/ -12321 ID Universitas Jayabaya http://www.jayabaya.ac.id/ -12322 ID Universitas Jember http://www.unej.ac.id/ -12323 ID Universitas Jenderal Achmad Yani http://www.unjani.ac.id/ -12324 ID Universitas Jenderal Soedirman http://www.unsoed.ac.id/ -12325 ID Universitas Katolik Indonesia Atma Jaya http://www.atmajaya.ac.id/ -12326 ID Universitas Katolik Parahyangan http://www.unpar.ac.id/ -12327 ID Universitas Katolik Soegijapranoto http://www.unika.ac.id/ -12328 ID Universitas Katolik Widya Karya http://www.widyakarya.ac.id/ -12329 ID Universitas Katolik Widya Manadala http://www.wima.ac.id/ -12330 ID Universitas Kediri http://www.unik-kediri.ac.id/ -12331 ID Universitas Khairun http://www.unkhair.ac.id/ -12332 ID Universitas Klabat http://www.tagnet.org/unklab/ -12333 ID Universitas Komputer Indonesia http://www.unikom.ac.id/ -12334 ID Universitas Krisnadwipayana http://www.unkris.ac.id/ -12335 ID Universitas Kristen Duta Wacana http://www.ukdw.ac.id/ -12336 ID Universitas Kristen Indonesia http://www.uki.ac.id/ -12337 ID Universitas Kristen Indonesia Tomohon http://www.ukit-tomohon.org/ -12338 ID Universitas Kristen Krida Wacana http://www.ukrida.ac.id/ -12339 ID Universitas Kristen Maranatha http://www.maranatha.edu/ -12340 ID Universitas Kristen Petra http://www.petra.ac.id/ -12341 ID Universitas Kristen Satya Wacana http://www.uksw.edu/ -12342 ID Universitas Lambung Mangkurat http://www.unlam.ac.id/ -12343 ID Universitas Lampung http://www.unila.ac.id/ -12344 ID Universitas Lancang Kuning http://unilak.ac.id/ -12345 ID Universitas Ma Chung http://www.machung.ac.id/ -12346 ID Universitas Madura http://www.unira-pmk.net/ -12347 ID Universitas Mahasaraswati Denpasar http://www.unmas.org/ -12348 ID Universitas Mahendradatta http://www.mahendradatta.org/ -12349 ID Universitas Mataram http://www.unram.ac.id/ -12350 ID Universitas Mercu Buana http://www.mercubuana.ac.id/ -12351 ID Universitas Merdeka Madiun http://www.unmer-madiun.ac.id/ -12352 ID Universitas Merdeka Malang http://www.unmer.ac.id/ -12353 ID Universitas Methodist Indonesia http://www.umi-mdn.edu/ -12354 ID Universitas Muhammadiyah Jakarta http://www.umj.ac.id/ -12355 ID Universitas Muhammadiyah Jember http://www.unmuhjember.ac.id/ -12356 ID Universitas Muhammadiyah Magelang http://www.ummgl.ac.id/ -12357 ID Universitas Muhammadiyah Makassar http://www.unismuh.ac.id/ -12358 ID Universitas Muhammadiyah Malang http://www.umm.ac.id/ -12359 ID Universitas Muhammadiyah Mataram http://www.unmuhmataram.com/ -12360 ID Universitas Muhammadiyah Sumatra Utara http://www.umsu.ac.id/ -12361 ID Universitas Muhammadiyah Surakarta http://www.ums.ac.id/ -12362 ID Universitas Muhammadiyah Yogyakarta http://www.umy.ac.id/ -12363 ID Universitas Mulawarman http://www.unmul.ac.id/ -12364 ID Universitas Muria Kudus http://www.umk.ac.id/ -12365 ID Universitas Muslim Indonesia http://www.umi.ac.id/ -12366 ID Universitas Narotama http://www.narotama.ac.id/ -12367 ID Universitas Nasional Jakarta http://www.unas.ac.id/ -12368 ID Universitas Nasional Pasim http://www.pasim.ac.id/ -12369 ID Universitas Negeri Gorontalo http://www.ung.ac.id/ -12370 ID Universitas Negeri Jakarta http://www.unj.ac.id/ -12371 ID Universitas Negeri Makassar http://www.unm.ac.id/ -12372 ID Universitas Negeri Malang http://www.malang.ac.id/ -12373 ID Universitas Negeri Manado http://www.unima.ac.id/ -12374 ID Universitas Negeri Medan http://www.unimed.ac.id/ -12375 ID Universitas Negeri Padang http://www.unp.ac.id/ -12376 ID Universitas Negeri Semarang http://www.unnes.ac.id/ -12377 ID Universitas Negeri Surabaya http://www.unesa.ac.id/ -12378 ID Universitas Negeri Yogyakarta http://www.uny.ac.id/ -12379 ID Universitas Ngurah Rai http://www.unr.ac.id/ -12380 ID Universitas Nusa Cendana http://www.undana.ac.id/ -12381 ID Universitas Padjadjaran http://www.unpad.ac.id/ -12382 ID Universitas Pakuan http://www.unpak.ac.id/ -12383 ID Universitas Palangka Raya http://www.upr.ac.id/ -12384 ID Universitas Pancasakti Tegal http://www.upstegal.ac.id/ -12385 ID Universitas Pancasila http://www.univpancasila.ac.id/ -12386 ID Universitas Paramadina Mulya http://www.paramadina.ac.id/ -12387 ID Universitas Pasundan http://www.unpas.ac.id/ -12388 ID Universitas Pattimura http://www.unpatti.ac.id/ -12389 ID Universitas Pekalongan http://www.unikal.ac.id/ -12390 ID Universitas Pelita Harapan http://www.uph.edu/ -12391 ID Universitas Pembangunan Nasional "Veteran" East Java http://www.upnjatim.ac.id/ -12392 ID Universitas Pembangunan Panca Budi http://www.pancabudi.ac.id/ -12393 ID Universitas Pendidikan Indonesia http://www.upi.edu/ -12394 ID Universitas Persada Indonesia Y.A.I http://www.yai.ac.id/ -12395 ID Universitas Pesantren Darul Ulum Jombang http://www.unipdu.ac.id/ -12396 ID Universitas Proklamasi 45 http://www.up45.ac.id/ -12397 ID Universitas Putera Batam http://www.puterabatam.ac.id/ -12398 ID Universitas Riau http://www.unri.ac.id/ -12399 ID Universitas Sam Ratulangi http://www.unsrat.ac.id/ -12400 ID Universitas Sanata Dharma http://www.usd.ac.id/ -12401 ID Universitas Sarjanawiyata Tamansiswa http://www.sarjanawiyata.ac.id/ -12402 ID Universitas Sebelas Maret http://www.uns.ac.id/ -12403 ID Universitas Semarang http://www.usm.ac.id/ -12404 ID Universitas Siliwangi http://www.unsil.ac.id/ -12405 ID Universitas Simalungun http://www.usi.ac.id/ -12406 ID Universitas Slamet Riyadi Surakarta http://www.unisri.ac.id/ -12407 ID Universitas Sriwijaya http://www.unsri.ac.id/ -12408 ID Universitas Sultan Ageng Tirtayasa http://www.untirta.ac.id/ -12409 ID Universitas Sumatera Utara http://www.usu.ac.id/ -12410 ID Universitas Surabaya http://www.ubaya.ac.id/ -12411 ID Universitas Swadaya Gunung Djati http://www.unswagati-crb.ac.id/ -12412 ID Universitas Syiah Kuala http://www.unsyiah.ac.id/ -12413 ID Universitas Tadulako http://www.untad.ac.id/ -12414 ID Universitas Tanjungpura http://www.untan.ac.id/ -12415 ID Universitas Tarumanagara http://www.untar.ac.id/ -12416 ID Universitas Terbuka Indonesia http://www.ut.ac.id/ -12417 ID Universitas Tidar Magelang http://www.utm.ac.id/ -12418 ID Universitas Trilogi http://www.universitas-trilogi.ac.id/ -12419 ID Universitas Trisakti http://www.trisakti.ac.id/ -12420 ID Universitas Tunas Pembangunan http://www.utp.ac.id/ -12421 ID Universitas Udayana http://www.unud.ac.id/ -12422 ID Universitas Widya Gama Malang http://www.widyagama.ac.id/ -12423 ID Universitas Widyatama http://www.widyatama.ac.id/ -12424 ID Universitas Wijaya Kusuma Purwokerto http://www.unwiku.ac.id/ -12425 ID Universitas Wijaya Kusuma Surabaya http://www.wijayakusumasby.ac.id/ -12426 ID Universitas Wisnuwardhana http://www.wisnuwardhana.ac.id/ -12427 ID Universitas Yarsi http://www.yarsi.ac.id/ -12428 IE Athlone Institute of Technology http://www.ait.ie/ -12429 IE Carlow Institute of Technology http://www.itcarlow.ie/ -12430 IE Cork Institute of Technology http://www.cit.ie/ -12431 IE Dublin City University http://www.dcu.ie/ -12432 IE Dublin Institute for Advanced Studies http://www.dias.ie/ -12433 IE Dublin Institute of Technology http://www.dit.ie/ -12434 IE Galway Mayo Institute of Technology http://www.gmit.ie/ -12435 IE Griffith College http://www.gcd.ie/ -12436 IE Institue of Technology, Tralee http://www.ittralee.ie/ -12437 IE Irish International University (Distance Education) http://www.iiuedu.ie/ -12438 IE LSB College http://www.lsb.ie/ -12439 IE National College of Ireland http://www.ncirl.ie/ -12440 IE National University of Ireland http://www.nui.ie/ -12441 IE National University of Ireland, Galway http://www.ucg.ie/ -12442 IE National University of Ireland, Maynooth http://www.may.ie/ -12443 IE Royal College of Physicians of Ireland http://www.rcpi.ie/ -12444 IE Royal College of Surgeons http://www.rcsi.ie/ -12445 IE Shannon College of Hotel Management http://www.shannoncollege.com/ -12446 IE University College Cork http://www.ucc.ie/ -12447 IE University College Dublin http://www.ucd.ie/ -12448 IE University of Dublin, Trinity College http://www.tcd.ie/ -12449 IE University of Limerick http://www.ul.ie/ -12450 IE Warnborough University http://www.warnborough.edu/ -12451 IE Waterford Institute Of Technology http://www.wit.ie/ -12452 IL Acdemic Center for Law and Business http://www.clb.ac.il/ -12453 IL Afeka Tel Aviv Academic College of Engineering http://www.afeka.ac.il/ -12454 IL Ariel University Center of Samaria http://www.ariel.ac.il/ -12455 IL Ashkelon Academic College http://www.ash-college.ac.il/ -12456 IL Bar-Ilan University http://www.biu.ac.il/ -12457 IL Ben-Gurion University of the Negev http://www.bgu.ac.il/ -12458 IL Bezalel Academy of Art and Design http://www.bezalel.ac.il/ -12459 IL College of Management http://www.colman.ac.il/ -12460 IL Emeq Yizrael College http://www.yvc.ac.il/ -12461 IL Galillee College http://www.galilcol.ac.il/ -12462 IL Hebrew University of Jerusalem http://www.huji.ac.il/ -12463 IL Jerusalem University College http://www.juc.edu/ -12464 IL Open University of Israel http://www.openu.ac.il/ -12465 IL Russell Berrie Nanotechnology Institute http://rbni.technion.ac.il/ -12466 IL Sami Shamoon College of Engineering http://www.sce.ac.il/ -12467 IL Shenkar School of Engineering & Design http://www.shenkar.ac.il/ -12468 IL Technion - Israel Institute of Technology http://www.technion.ac.il/ -12469 IL Tel Aviv University http://www.tau.ac.il/ -12470 IL The Interdisciplinary Center Herzliya http://www.idc.ac.il/ -12471 IL University of Haifa http://www.haifa.ac.il/ -12472 IL Weizmann Institute of Science http://www.weizmann.ac.il/ -12473 IL Western Galilee College http://www.wgalil.ac.il/ -12474 IN Acharya Nagarjuna University http://www.nagarjunauniversity.ac.in/ -12475 IN Acharya Ranga Agricultural University http://www.angrau.net/ -12476 IN Ahmedabad University http://www.ahduni.edu.in/ -12477 IN AISECT University http://www.aisectuniversity.ac.in/ -12478 IN Alagappa University http://www.alagappauniversity.ac.in/ -12479 IN Aligarh Muslim University http://www.amu.ac.in/ -12480 IN Allahabad Agricultural Institute, Deemed University http://www.aaidu.org/ -12481 IN Allahabad University http://www.alldunivpio.org/ -12482 IN All India Institute of Medical Sciences http://www.aiims.ac.in/ -12483 IN Amity University http://www.amity.edu/ -12484 IN Amravati University http://www.amtuni.com/ -12485 IN Amrita Vishwa Vidyapeetham (Deemed University) http://www.amrita.edu/ -12486 IN Andhra University http://www.andhrauniversity.info/ -12487 IN Annamalai University http://www.annamalaiuniversity.ac.in/ -12488 IN Anna University http://www.annauniv.edu/ -12489 IN Anna University of Technology, Tirunelveli http://www.annauniv.edu.in/ -12490 IN ARYA Institute of Engineering & Technology http://www.aryainstitutejpr.com/ -12491 IN Asian Business School http://www.abs.edu.in/ -12492 IN Assam Agricultural University http://www.aau.ac.in/ -12493 IN Assam University http://www.assamuniversity.nic.in/ -12494 IN Avinashilingam Institute for Home Science and Higher Education for Women http://www.tnuniv.ac.in/adu/ -12495 IN Awadhesh Pratap Singh University http://www.apsurewa.nic.in/ -12496 IN Babasaheb Bhimrao Ambedkar University http://www.bbauindia.org/ -12497 IN Banaras Hindu University http://www.bhu.ac.in/ -12498 IN Banasthali University http://www.banasthali.org/ -12499 IN Bangalore University http://bengaluruuniversity.com/ -12500 IN Bankura University http://www.bankurauniv.com/ -12501 IN Barkatullah University http://www.bubhopal.nic.in/ -12502 IN Bengal Engineering College http://www.becs.ac.in/ -12503 IN Berhampur University http://www.bamu.nic.in/ -12504 IN Bhagwant University http://www.bhagwantuniversity.com/ -12505 IN Bharathiar University http://www.bharathi.ernet.in/ -12506 IN Bharathidasan University http://www.bdu.ernet.in/ -12507 IN Bharath Institue Of Higher Education & Research http://www.bharathuniv.com/ -12508 IN Bharati Vidyapeeth University http://www.bharatividyapeeth.edu/ -12509 IN Bhavnagar University http://www.bhavuni.edu/ -12510 IN Bhupendra Narayan Mandal University http://www.bnmu.in/ -12511 IN Bidhan Chandra Agricultural University http://www.bckv.edu.in/ -12512 IN Biju Pattnaik University of Technology http://www.bput.org/ -12513 IN Birla Institute of Technology and Science http://www.bits-pilani.ac.in/ -12514 IN Birla Institute of Technology, Ranchi http://bitmesraranchi.org/ -12515 IN Birsa Agricultural University http://www.bau.nic.in/ -12516 IN B. R. Ambedkar Bihar University http://www.brabu.net/ -12517 IN B. S. Abdur Rahman University http://www.bsauniv.ac.in/ -12518 IN Bundelkhand University http://www.bundelkhanduniversity.org/ -12519 IN Burdwan University http://www.buruniv.ac.in/ -12520 IN CCS Haryana Agricultural University http://hau.ernet.in/ -12521 IN Center for Entrepreneurship and Small Business Management http://www.cesbm.ac.in/ -12522 IN Central Agricultural University http://www.cau.org.in/ -12523 IN Central Institute of English and Foreign Languages http://www.ciefl.org/ -12524 IN Central Institute of Fisheries Education http://www.cife.edu.in/ -12525 IN Central Institute of Higher Tibetan Studies http://www.cihts.ac.in/ -12526 IN Chandra Shekhar Azad University of Agriculture and Technology http://www.csauk.ac.in/ -12527 IN Chaudhary Charan Singh Haryana Agricultural University http://www.hau.ernet.in/ -12528 IN Chaudhary Charan Singh University http://www.ccsuniversity.ac.in/ -12529 IN Ch. Charan Singh University http://www.ccsuniversity.org/ -12530 IN Chhatrapati Shahu Ji Maharaj University http://www.kanpuruniversity.org/ -12531 IN Christ University http://www.christuniversity.in/ -12532 IN CMJ University http://www.cmjuniversity.edu.in/ -12533 IN Cochin University of Science and Technology http://www.cusat.ac.in/ -12534 IN Darul Huda Islamic University http://www.darulhuda.com/ -12535 IN Dav University http://www.davuniversity.org/ -12536 IN Dayalbagh Educational Institute http://www.dei.ac.in/ -12537 IN Deccan College Postgraduate and Research Institute http://www.deccancollegepune.ac.in/ -12538 IN Deen Dayal Upadhyay Gorakhpur University http://www.ddugu.edu.in/ -12539 IN Delhi College of Engineering (DCE) http://www.dceonline.net/ -12540 IN Devi Ahilya University of Indore http://www.davv.ac.in/ -12541 IN Dhirubhai Ambani Institute of Information and Communication Technology http://www.da-iict.org/ -12542 IN Dibrugarh University http://www.dibru.ernet.in/ -12543 IN Dravidian University http://www.dravidianuniversity.ac.in/ -12544 IN Dr. Babasaheb Ambedkar Marathwada Universtiy http://www.bamu.net/ -12545 IN Dr. Babasaheb Ambedkar Technological University http://www.dbatechuni.org/ -12546 IN Dr. Bhim Rao Abdekar University http://www.brauagra.com/ -12547 IN Dr. B.R. Ambedkar Open University http://www.braou.ac.in/ -12548 IN Dr. C.V. Raman University http://www.cvru.ac.in/ -12549 IN Dr. D.Y. Patil University http://www.dypatiluniversity.org/ -12550 IN Dr. Hari Singh Gour University, formerly University of Sagar http://www.sagaruniversity.nic.in/ -12551 IN Dr. Panjabrao Deshmukh Krishi Vidyapeeth http://www.pdkv.ac.in/ -12552 IN Dr. Ram Manohar Lohia Avadh University http://www.rmlau.ac.in/ -12553 IN Dr. YS Parmar University of Horticulture and Forestry http://www.ysparmaruniversity.org/ -12554 IN Eiilm University http://www.eiilmuniversity.ac.in/ -12555 IN Engineering Colleges in Tamil Nadu http://www.sonatech.ac.in/ -12556 IN Fakir Mohan University http://www.fmuniversity.nic.in/ -12557 IN Fatima mata national college kollam kerala http://www.fatimacollege.net/ -12558 IN First Global University to teaching Jainism http://www.jainuniversity.org/ -12559 IN Forest Research Institute Dehradun http://fri.icfre.gov.in/ -12560 IN Gandhigram Rural Institute http://www.tnuniv.ac.in/gri/ -12561 IN Gandhi Institute of Technology and Managment http://www.gitam.edu/ -12562 IN Gauhati University http://www.gu.nic.in/ -12563 IN Global Open University , Nagaland http://www.government.ind.in/ -12564 IN Goa University http://www.unigoa.ac.in/ -12565 IN Gokhale Institute of Politics and Economics http://www.gipe.ernet.in/ -12566 IN Govind Ballabh Pant University of Agriculture and Technology http://www.gbpuat.ac.in/ -12567 IN Gujarat Ayurved University http://www.ayurveduniversity.com/ -12568 IN Gujarat Technological University Ahmedabad http://www.gtu.ac.in/ -12569 IN Gujarat University Ahmedabad http://www.gujaratuniversity.org.in/ -12570 IN Gulbarga University http://www.gulbargauniversity.kar.nic.in/ -12571 IN Guru Ghasidas University http://www.ggu.ac.in/ -12572 IN Guru Gobind Singh Indraprastha University http://www.ipu.ac.in/ -12573 IN Guru Jambeshwar University http://www.gju.ernet.in/ -12574 IN Gurukula Kangri University http://www.gkvharidwar.org/ -12575 IN Gurukul University http://www.gurukuluniversity.org/ -12576 IN Guru Nanak Dev University http://www.gnduonline.org/ -12577 IN Hemchandracharay North Gujarat University http://www.ngu.ac.in/ -12578 IN Hemwati Nandan Bahuguna Garhwal University http://www.hnbgu.ac.in/ -12579 IN Hidayatullah National Law University, Raipur http://www.hnluraipur.com/ -12580 IN Himachal Pradesh Agricultural University http://hillagric.ernet.in/ -12581 IN Himachal Pradesh University http://hpuniv.nic.in/ -12582 IN IASE (Institute of Advanced Studies) Deemed University http://www.iaseduniv.org/ -12583 IN ICFAI University http://www.icfai.org/ -12584 IN Indian Agricultural Research Institute http://www.iari.ernet.in/ -12585 IN Indian Board of Alternative Medicine http://www.altmedworld.net/ -12586 IN Indian Institute of Information Technology http://www.iiita.com/ -12587 IN Indian Institute of Information Technology and Management - Kerala http://www.iiitmk.ac.in/ -12588 IN Indian Institute of Management, Tiruchirappalli http://www.iimtrichy.ac.in/ -12589 IN Indian Institute of Science http://www.iisc.ernet.in/ -12590 IN Indian Institute of Technology, Bombay http://www.iitb.ac.in/ -12591 IN Indian Institute of Technology, Delhi http://www.iitd.ernet.in/ -12592 IN Indian Institute of Technology, Guwahati http://www.iitg.ernet.in/ -12593 IN Indian Institute of Technology, Hyderabad http://www.iith.ac.in/ -12594 IN Indian Institute of Technology, Kanpur http://www.iitk.ac.in/ -12595 IN Indian Institute of Technology, Kharagpur http://www.iitkgp.ernet.in/ -12596 IN Indian Institute of Technology, Madras http://www.iitm.ac.in/ -12597 IN Indian Institute of Technology, Roorkee http://www.iitr.ernet.in/ -12598 IN Indian Institute of Technology, Roorkee http://www.iitr.ac.in/ -12599 IN Indian Law Institue http://www.ilidelhi.org/ -12600 IN Indian School of Business Management and Administration http://isbm.org.in/ -12601 IN Indian School of Mines (ISM) http://www.ismdhanbad.ac.in/ -12602 IN Indian Statistical Institute http://www.isical.ac.in/ -12603 IN Indian University http://www.iur.ac.in/ -12604 IN Indian Veterinary Research Institute http://www.ivri.nic.in/ -12605 IN Indira Gandhi Agricultural University http://www.igau.edu.in/ -12606 IN Indira Gandhi Institute of Development and Research http://www.igidr.ac.in/ -12607 IN Indira Gandhi Institute of Medical Sciences http://www.igims.org/ -12608 IN Indira Gandhi National Open University http://www.ignou.ac.in/ -12609 IN Institute of Management and Technical Studies http://www.imtsinstitute.com/ -12610 IN Institute of Technology and Management http://www.itmindia.edu/ -12611 IN Integral University http://www.integraluniversity.ac.in/ -12612 IN International Institute for Population Sciences http://www.iipsindia.org/ -12613 IN Jadavpur University http://www.jadavpur.edu/ -12614 IN Jagran Lakecity University http://www.jlu.edu.in/ -12615 IN Jai Narayan Vyas University http://www.jnvu.edu.in/ -12616 IN Jain University, Centre for Management Studies http://www.cms.ac.in/ -12617 IN Jain Vishva Bharati Institute http://www.jvbi.ac.in/ -12618 IN Jai Prakash University http://jpv.bih.nic.in/ -12619 IN Jaipur National University http://www.jnujaipur.ac.in/ -12620 IN Jamia Hamdard University http://www.jamiahamdard.edu/ -12621 IN Jamia Millia Islamia University http://jmi.nic.in/ -12622 IN Jawaharlal Nehru Agricultural University http://www.jnkvv.nic.in/ -12623 IN Jawaharlal Nehru Centre for Advanced Scientific Research http://www.jncasr.ac.in/ -12624 IN Jawaharlal Nehru Technological University http://www.jntu.ac.in/ -12625 IN Jawaharlal Nehru University http://www.jnu.ac.in/ -12626 IN Jaypee Institute of Information Technology http://www.jiit.ac.in/ -12627 IN Jiwaji University http://www.jiwaji.edu/ -12628 IN Jodhpur National University http://www.jodhpurnationaluniversity.com/ -12629 IN Kakatiya University http://www.kuwarangal.com/ -12630 IN Kalinga University http://www.kalingauniversity.com/ -12631 IN Kameshwar Singh Darbhanga Sanskrit University http://www.ksdsu.edu.in/ -12632 IN Kamrah International Institute of Technology (KIIT) http://www.kiit.in/ -12633 IN Kannada University http://www.kannadauniversity.org/ -12634 IN Kannur University http://www.kannuruniversity.ac.in/ -12635 IN Kanpur University http://www.kanpuruniversity.org/ -12636 IN Karnataka State Law University http://www.kslu.ac.in/ -12637 IN Karnataka State Open University http://www.karnatakastateopenuniversity.in/ -12638 IN Karnatak University http://www.kud.ac.in/ -12639 IN Karpagam University http://www.karpagamuniv.com/ -12640 IN Karunya Institute Of Technology ( Deemed University) http://www.karunya.edu/ -12641 IN Kerala Agricultural University http://www.kau.edu/ -12642 IN Kerala University of Fisheries and Ocean Sciences http://www.kufos.ac.in/ -12643 IN Kohinoor School of Hospitality Management http://kimi.kohinoor.ac.in/ -12644 IN Konkan Agricultural University http://www.dbskkv.org/ -12645 IN Krishna University http://www.krishnauniversity.ac.in/ -12646 IN Kumaun University http://www.kumaununiversity.org/ -12647 IN Kurukshetra University http://www.kukinfo.com/ -12648 IN Kuvempu University http://www.kuvempu.ac.in/ -12649 IN Lakshmibai National Institute of Physical Education http://www.lnipe.edu/ -12650 IN Lalit Narayan Mithila University http://lnmu.bih.nic.in/ -12651 IN L.D.College of Engineering http://www.ldceahd.org/ -12652 IN Madhya Pradesh Bhoj (Open) University http://www.mpbou.org/ -12653 IN Madurai Kamaraj University http://www.mkuhyd.com/ -12654 IN Magadh University http://www.magadhuniversity.org/ -12655 IN Maharaja Ganga Singh University, Bikaner http://www.mgsubikaner.ac.in/ -12656 IN Maharaja Sayajirao University of Baroda http://www.msubaroda.ac.in/ -12657 IN Maharishi Dayanand University, Rohtak (Haryana ) http://www.mdurohtak.com/ -12658 IN Maharshi Dayanand Sarswati University Ajmer http://www.mdsuajmer.ac.in/ -12659 IN Mahatma Gandhi Chitrakut Gramoday University http://www.ruraluniversity-chitrakoot.org/ -12660 IN Mahatma Gandhi Kashi Vidyapith http://www.mgkvp.ac.in/ -12661 IN Mahatma Gandhi University, Kerala http://www.mgu.ac.in/ -12662 IN Mahatma Gandhi University Meghalaya http://www.mgu.edu.in/ -12663 IN Mahatma Jyotiba Phule Rohilkhand University Bareilly http://www.mjpru.ac.in/ -12664 IN Mahatma Phule Agricultural University http://mpkv.mah.nic.in/ -12665 IN Makanlal Chutur Vedi University http://www.mcu.ac.in/ -12666 IN Makhanlal Chaturvedi National University of Journalism and Communication http://www.mcu.ac.in/ -12667 IN Mangalore University http://www.mangaloreuniversity.ac.in/ -12668 IN Manipal University http://www.manipal.edu/ -12669 IN Manipur University http://www.manipur.nic.in/maniuniversity.htm -12670 IN Manonmaniam Sundaranar University http://www.tnuniv.ac.in/msu/ -12671 IN Mar Athanasios College for Advanced Studies http://www.macfast.org/ -12672 IN Marathwada Agricultural University http://mkv2.mah.nic.in/ -12673 IN Mohan Lal Sukhadia University http://www.mlsu.ac.in/ -12674 IN Mother Teresa Women's University http://www.tnuniv.ac.in/mteresa/ -12675 IN Motilal Nehru National Institute Of Technology http://www.mnnit.ac.in/ -12676 IN Moulana Azad national Urdu University http://www.manuu.ac.in/ -12677 IN Nagaland University http://www.nagauniv.org.in/ -12678 IN Nagpur University http://www.nagpur-university.com/ -12679 IN Nalanda Open University http://www.nalandaopenuniversity.info/ -12680 IN Narendra Deva University of Agriculture and Technology http://www.nduat.nic.in/ -12681 IN Narsee Monjee Institute of Management Studies http://www.nmims.edu/ -12682 IN National Dairy Research Institute http://ndri.nic.in/ -12683 IN National Institute of Industrial Engineering http://www.nitie.edu/ -12684 IN National Institute of Mental Health and Neuro Sciences http://www.nimhans.kar.nic.in/ -12685 IN National Institute of Technology, Calicut http://www.nitc.ac.in/ -12686 IN National Institute of Technology, Durgapur http://www.nitdgp.ac.in/ -12687 IN National Institute of Technology, Jamshedpur http://www.nitjsr.ac.in/ -12688 IN National Institute of Technology Kurukshetra http://www.nitkkr.net/ -12689 IN National Institute of Technology, Rourkela http://www.nitrkl.ac.in/ -12690 IN National Institute of Technology, Trichy http://www.nitt.edu/ -12691 IN National Institute of Technology, Warangal http://www.nitw.ernet.in/ -12692 IN National Law School of India University http://www.nls.ac.in/ -12693 IN National Museum Institute of History of Art, Conservation and Museology http://www.nationalmuseumindia.org/nmi/index.htm -12694 IN National Sanskrit University http://www.sanskrit.nic.in/ -12695 IN Netaji Subhas Inst of Technology http://www.nsit.ac.in/ -12696 IN Nirma University http://www.nirmauni.ac.in/ -12697 IN Nizam's Institute of Medical Sciences http://nims.ap.nic.in/ -12698 IN North Bengal University http://www.nbu.ac.in/ -12699 IN North Eastern Hill University http://www.nehu.ac.in/ -12700 IN North Maharashtra University http://www.nmu.ac.in/ -12701 IN Open International University for Alternative Medicines http://www.altmeduniversity.com/ -12702 IN Orissa University of Agriculture and Technology http://bhub.ori.nic.in/ouat/ -12703 IN Osmania University http://www.osmania.ac.in/ -12704 IN Pandit Ravi Shankar Shukla University http://www.rsuniversity.com/ -12705 IN Panjab University http://www.puchd.ac.in/ -12706 IN Patna University http://puonline.bih.nic.in/ -12707 IN Periyar University http://www.spuniv.org/ -12708 IN Pes University http://www.pes.edu/ -12709 IN Pondicherry University http://www.pondiuni.org/ -12710 IN Postgraduate lnstitute of Medical Education and Research http://www.pgimer.nic.in/ -12711 IN Potti Sreeramulu Telugu University http://www.teluguuniversity.ac.in/ -12712 IN PSG College of Technology http://www.psgtech.edu/ -12713 IN Punjab Agricultural University http://www.pau.edu/ -12714 IN Punjab Engineering College Deemed University http://www.pec.ac.in/ -12715 IN Punjabi University Patiala http://www.punjabiuniversity.ac.in/ -12716 IN Punjab Technical University http://www.ptu.ac.in/ -12717 IN Rabindra Bharati University http://www.rabindrabharatiuniversity.net/ -12718 IN Rajasthan Agricultural University, Bikaner http://www.raubikaner.org/ -12719 IN Rajasthan Technical University http://www.rtu.ac.in/ -12720 IN Rajasthan Vidyapeeth University http://www.jrnrvu.org/ -12721 IN Rajendra Agricultural University http://www.pusavarsity.org.in/ -12722 IN Rajitlal Institute of Technology & Health Sciences (RITHS) http://www.riths.ac.in/ -12723 IN Rajiv Gandhi Technical University (University of Technology of Madhya Pradesh) http://www.rgtu.net/ -12724 IN Rajiv Gandhi University http://www.rgu.ac.in/ -12725 IN Ranchi University http://www.ranchiuniversity.org.in/ -12726 IN Rani Durgavati University http://www.rdunijbpin.org/ -12727 IN RKDF University http://www.rkdf.ac.in/ -12728 IN Sambalpur University http://www.sambalpuruniversitypgc.in/ -12729 IN Sampurnanand Sanskrit University http://ssvv.up.nic.in/ -12730 IN Sanjay Gandhi Postgraduate lnstitute of Medical Sciences http://www.sgpgi.ac.in/ -12731 IN Sardarkrushinagar Dantiwada Agricultural University http://www.sdau.edu.in/ -12732 IN Sardar Patel University http://www.spuvvn.edu/ -12733 IN Sardar Vallabhai Patel University of Agriculture Amd Technology http://www.svbpuctm.org/ -12734 IN SASTRA Deemed University http://www.sastra.edu/ -12735 IN Sathyabama University http://www.sathyabamauniv.ac.in/ -12736 IN Saurashtra University http://www.saurashtrauniversity.edu/ -12737 IN School of Planning and Architecture http://www.spa.ac.in/ -12738 IN Shanmugha Arts Science Technology and Research Academy http://www.sce.ac.in/ -12739 IN Sher-E-Kashmir University of Agricultural Sciences and Technology http://www.skuastkashmir.ac.in/ -12740 IN Shivaji University http://www.unishivaji.ac.in/ -12741 IN Shobhit University, Meerut http://www.shobhituniversity.ac.in/ -12742 IN Shreemati Nathibai Damodar Thackersey Women's University http://www.sndt.edu/ -12743 IN Shridhar University http://www.shridharuniversity.ac.in/ -12744 IN Shri Jagannath Sanskrit University http://www.sjsv.nic.in/ -12745 IN Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha http://www.slbsrsv.ac.in/ -12746 IN Shri Mata Vaishno Devi University http://www.smvdu.net.in/ -12747 IN Sido Kanhu Murmu University http://www.skmu.edu.in/ -12748 IN Sikha 'O' Anushandhan University http://www.soauniversity.ac.in/ -12749 IN Sikkim Manipal University of Health, Medical and Technological Sciences http://www.smu.edu.in/ -12750 IN Singhania University Rajasthan http://www.singhaniauniversity.co.in/ -12751 IN SMK Fomra Institute of Technology http://www.smkfomra.net/ -12752 IN Solapur University http://su.digitaluniversity.ac/ -12753 IN South Asian University http://www.southasianuniversity.org/ -12754 IN South Gujarat University http://www.sgu.ernet.in/ -12755 IN Sree Chitra Tirunal Institute for Medical Sciences and Technology http://sctimst.ker.nic.in/ -12756 IN Sree Rama Krishna Degree College http://www.srkdc.org/ -12757 IN Sree Sankaracharya University of Sanskrit http://www.ssus.ac.in/ -12758 IN Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya http://www.kanchiuniv.ac.in/ -12759 IN Sri Krishnadevaraya University http://skuniv.ap.nic.in/ -12760 IN Sri Padmavati Women's University http://www.padmavatiwomen-univ.org/ -12761 IN Sri Ramachardra Medical College and Research Institute http://www.hostindia.com/srmc/ -12762 IN Sri Sant Gajanan Maharaj College of Engineering http://www.ssgmce.org/ -12763 IN Sri Sathya Sai Institute of Higher Learning http://www.srisathyasai.org.in/pages/instts/HighLearn.htm -12764 IN Sri Venkateswara Institute of Medical Sciences http://svimstpt.ap.nic.in/ -12765 IN Sri Venkateswara University http://svuni.ap.nic.in/ -12766 IN SRM Institute Of Science & Technology ( Deemed University) http://www.srmuniv.ac.in/ -12767 IN Sunrise University Alwar http://www.sunriseuniversity.in/ -12768 IN Swami Ramanand Teerth Marathwada University http://www.srtmun.org/ -12769 IN Symbiosis International University http://www.siu.edu.in/ -12770 IN Takhatmal Shrivallabh Homoeopathic Medical College http://www.tshmc.org/ -12771 IN Tamil Nadu Agricultural University http://dbs.tn.nic.in/tnau/ -12772 IN Tamil Nadu Dr. Ambedkar Law University http://www.tndalu.org/ -12773 IN Tamil Nadu Dr. M.G.R. Medical University http://www.tnmmu.ac.in/ -12774 IN Tamil Nadu Veterinary and Animal Sciences University http://www.tanuvas.com/ -12775 IN Tamil University http://www.tamiluniversity.ac.in/ -12776 IN Tata Institute of Social Sciences http://www.tiss.edu/ -12777 IN Telugu University http://www.teluguuniversity.ac.in/ -12778 IN Tezpur University http://www.tezu.ernet.in/ -12779 IN Thapar Institute of Engineering and Technology http://www.tiet.ac.in/ -12780 IN The New College http://www.thenewcollege.org/ -12781 IN Thiagarajar College of Engineering http://www.tce.edu/ -12782 IN Thiruvalluvar University http://www.tvuni.in/ -12783 IN Tilak Maharashtra Vidyapeeth http://www.tmv.edu.in/ -12784 IN Tilka Manjhi Bhagalpur University http://www.tmbu.org/ -12785 IN Tripura University http://www.tripurauniv.in/ -12786 IN Tumkur University http://www.tumkuruniversity.ac.in/ -12787 IN University of Agricultural Sciences, Bangalore http://uasbng.kar.nic.in/ -12788 IN University of Agricultural Sciences, Dharwad http://www.uasd.net/ -12789 IN University of Burdwan http://www.burdwanuniversity.ac.in/ -12790 IN University of Calcutta http://www.caluniv.ac.in/ -12791 IN University of Calicut http://unical.ac.in/ -12792 IN University of Delhi http://www.du.ac.in/ -12793 IN University of Health Sciences Andhra Pradesh http://59.163.116.210/ -12794 IN University of Hyderabad http://www.uohyd.ernet.in/ -12795 IN University of Jammu http://www.jammuvarsity.org/ -12796 IN University of Kalyani http://www.klyuniv.ac.in/ -12797 IN University of Kashmir http://kashmiruniversity.net/ -12798 IN University of Kerala http://www.keralauniversity.ac.in/ -12799 IN University of Kota http://www.uok.ac.in/ -12800 IN University of Lucknow http://www.lucknowuniv.org/ -12801 IN University of Madras http://www.unom.ac.in/ -12802 IN University of Media Arts http://www.uma.ac.in/ -12803 IN University of Mumbai http://www.mu.ac.in/ -12804 IN University of Music and Fine Arts http://www.iksvv.com/ -12805 IN University of Mysore http://www.uni-mysore.ac.in/ -12806 IN University of North Bengal http://www.nbu.ac.in/ -12807 IN University of Pune http://www.unipune.ernet.in/ -12808 IN University of Rajasthan http://www.uniraj.org/ -12809 IN University of Roorkee http://www.uor.org/ -12810 IN Utkal University http://www.utkaluniv.org/ -12811 IN Uttarakhand Open University http://www.uou.ac.in/ -12812 IN Uttarakhand Technical University http://www.uktech.ac.in/ -12813 IN Uttar Pradesh Technical University http://www.uptu.ac.in/ -12814 IN Vardhaman Mahaveer Open University http://www.vmou.ac.in/ -12815 IN VBS Purvanchal University http://vbspu.ac.in/ -12816 IN Veer Kunwar Singh University http://www.vksu-ara.org/ -12817 IN Veer Surendra Sai University of Technology http://www.vssut.ac.in/ -12818 IN Vellore Institute of Technology http://www.vit.ac.in/ -12819 IN Vidyasagar University http://www.vidyasagar.ac.in/ -12820 IN Vignan University http://www.vignanuniversity.org/ -12821 IN Vikrama Simhapuri University http://www.simhapuriuniv.ac.in/ -12822 IN Vikram University http://www.vikramuniversity.org/ -12823 IN Vinayaka Mission's Research Foundation-Deemed University http://www.vinayakamissions.com/ -12824 IN Vinoba Bhave University http://www.vbu.co.in/ -12825 IN Visva-Bharati University http://www.visva-bharati.ac.in/ -12826 IN Visvesvaraya National Institute of Technology http://www.vnitnagpur.ac.in/ -12827 IN Visvesvaraya Technological University http://www.vtu.ac.in/ -12828 IN West Bengal University of Animal and Fishery Sciences http://www.wbuafs.nic.in/ -12829 IN West Bengal University of Technology http://www.wbut.net/ -12830 IN Yashawantrao Chavan Maharashtra Open University http://www.ycmou.com/ -12831 IQ Ahlulbait International University http://www.ahlulbaitonline.com/ -12832 IQ Al Maarif University College http://www.auc-edu.org/ -12833 IQ Al Mamon University College http://www.almamonuc.org/ -12834 IQ Al Mansour University College http://www.muc.edu.iq/ -12835 IQ Al Muthanna University http://www.uoalmuthana.edu.iq/ -12836 IQ Al Nahrain University http://www.nahrainuniv.edu.iq/ -12837 IQ Al Rafidain University College http://www.coalrafidain.edu.iq/ -12838 IQ Al Rasheed University College http://www.alrasheed-uc.com/ -12839 IQ Alsadrain University http://www.alsadrain.org/ -12840 IQ Al Turath University College http://www.turathun.com/ -12841 IQ Al Yarmouk University College http://www.yu.edu.jo/ -12842 IQ American University of Iraq, Sulaimani (Kurdistan Region) http://www.auis.edu.iq/ -12843 IQ Baghdad College of Economic Sciences University http://www.baghdadcollege.edu.iq/ -12844 IQ Baghdad College of Pharmacy http://www.bpc.edu.iq/ -12845 IQ British Royal University http://broyalu.net/ -12846 IQ Cihan University http://www.cihanuniversity.edu.iq/ -12847 IQ College of Science, Baghdad University http://www.scbaghdad.edu.iq/ -12848 IQ Dijla University College http://www.duc.edu.iq/ -12849 IQ Diyala University http://www.uodiyala.edu.iq/ -12850 IQ Hawler Medical University http://www.hawlermu.org/ -12851 IQ Iraq University College http://www.iraquniversity.net/ -12852 IQ Ishik University http://www.iu.edu.iq/ -12853 IQ Kerbala University http://www.uokerbala.edu.iq/ -12854 IQ Komar University of Science and Technology http://www.komar.edu.iq/ -12855 IQ Koya University (Kurdistan Region) http://www.koyauniversity.org/ -12856 IQ Madenat Alelem University College http://www.madenatalelem.com/ -12857 IQ Misan University http://www.uomisan.edu.iq/ -12858 IQ Nawroz University http://www.nawrozuniversity.com/ -12859 IQ Salahddin University (Kurdistan Region) http://www.suh-edu.com/ -12860 IQ Soran University http://www.soran.edu.iq/ -12861 IQ Sulaimani Polytechnic University http://www.spu.edu.iq/ -12862 IQ Thi Qar University http://www.thiqaruni.org/ -12863 IQ Tikrit University http://www.tu.edu.iq/ -12864 IQ Uinversity of Babylon http://www.uobabylon.edu.iq/ -12865 IQ University of Al-Qadisiyah http://www.qu.edu.iq/ -12866 IQ University of Anbar http://www.uoanbar.edu.iq/ -12867 IQ University of Baghdad http://www.uobaghdad.edu.iq/ -12868 IQ University of Basrah http://www.uobasrah.edu.iq/ -12869 IQ University of Dohuk (Kurdistan Region) http://www.uod.ac/ -12870 IQ University of Human Development (Kurdistan Region) http://www.uhd.edu.iq/ -12871 IQ University of Kirkuk http://www.uokirkuk.edu.iq/ -12872 IQ University of Kufa http://www.uokufa.edu.iq/ -12873 IQ University of Kurdistan - Hawler http://www.ukh.ac/ -12874 IQ University of Mosul http://www.uomosul.edu.iq/ -12875 IQ University of Mustansiriyah http://www.uomustansiriyah.edu.iq/ -12876 IQ University of Sulaimania (Kurdistan Region) http://www.univsul.edu.iq/ -12877 IQ University of Technology - Iraq http://www.uotechnology.edu.iq/ -12878 IQ University of Wassit http://www.uowasit.edu.iq/ -12879 IR Adiban Higher Education Institue http://www.adiban.ac.ir/ -12880 IR Ahvaz University of Medical Sciences http://www.aums.ac.ir/ -12881 IR Ahwaz Jondishapour University of Medical Sciences http://www.ajums.ac.ir/ -12882 IR Allameh Tabatabaie University http://www.atu.ac.ir/ -12883 IR Almustafa Open University http://www.almustafaou.ir/ -12884 IR Amirkabir College of Managmant & Technology http://www.acmt.ac.ir/ -12885 IR Amirkabir University of Technology http://www.aut.ac.ir/ -12886 IR Arak University http://www.araku.ac.ir/ -12887 IR Arak University of Medical Sciences http://www.arakmu.ac.ir/ -12888 IR Arak University of Technology http://www.arakut.ac.ir/ -12889 IR Ardabil University of Medical Sciences http://www.arums.ac.ir/ -12890 IR Art University http://www.art.ac.ir/ -12891 IR Azzahra University http://www.azzahra.ac.ir/ -12892 IR Babol Noshirvani University of Technology http://www.nit.ac.ir/ -12893 IR Babol University of Medical Sciences http://www.mubabol.ac.ir/ -12894 IR Baghyatoolah Medical Sciences University http://www.bmsu.ac.ir/ -12895 IR Baha'i Institute for Higher Education http://www.bihe.org/ -12896 IR Birjand University http://www.birjand.ac.ir/ -12897 IR Birjand University of Medical Sciences http://www.bums.ac.ir/ -12898 IR Bu Ali Sina University http://www.basu.ac.ir/ -12899 IR Bushehr University of Medical Sciences http://www.bpums.ac.ir/ -12900 IR Damghan University of Basic Sciences http://www.dubs.ac.ir/ -12901 IR Daneshestan Institute of Higher Education http://www.sdi.ac.ir/ -12902 IR Delijan Payame Noor University http://www.delijanpnu.ac.ir/ -12903 IR Deylaman Institute of Higher Education http://www.deylaman.ac.ir/ -12904 IR Fasa Faculty of Medical Sciences http://www.fums.ac.ir/ -12905 IR Ferdowsi University of Mashhad http://www.um.ac.ir/ -12906 IR Golestan University of Medical Sciences http://www.goums.ac.ir/ -12907 IR Gonabad University of Medical Sciences http://www.gmu.ac.ir/ -12908 IR Gorgan University of Agricultural Sciences and Natural Resources http://www.gau.ac.ir/ -12909 IR Guilan University http://www.guilan.ac.ir/ -12910 IR Guilan University of Medical Sciences http://www.gums.ac.ir/ -12911 IR Hamadan University of Medical Sciences http://www.umsha.ac.ir/ -12912 IR Hormozgan University of Medical Sciences http://www.hums.ac.ir/ -12913 IR Hyrcania Institute of Higher Education http://www.hyrcania.ac.ir/ -12914 IR Ilam University http://www.ilam.ac.ir/ -12915 IR Ilam University of Medical Sciences http://www.medilam.hbi.ir/ -12916 IR Imam Khomeini International University http://www.ikiu.ac.ir/ -12917 IR Imam Reza University http://www.imamreza.ac.ir/ -12918 IR Imam Sadiq University http://www.isu.ac.ir/ -12919 IR Iranian Academy of Persian Language and Literature http://www.persianacademy.ir/ -12920 IR Iran University of Medical Sciences http://www.iums.ac.ir/ -12921 IR Iran University of Science and Technology Tehran http://www.iust.ac.ir/ -12922 IR Isfahan University http://www.ui.ac.ir/ -12923 IR Isfahan University of Medical Sciences http://www.mui.ac.ir/ -12924 IR Isfahan University of Technology http://www.iut.ac.ir/ -12925 IR Islamic Azad University, Ahar http://www.iau-ahar.ac.ir/ -12926 IR Islamic Azad University, Aliabad http://www.aliabadiau.ac.ir/ -12927 IR Islamic Azad University, Arak http://www.iau-arak.ac.ir/ -12928 IR Islamic Azad University, Ardabil http://www.iauardabil.ac.ir/ -12929 IR Islamic Azad University, Bandar Abbas http://www.iauba.ac.ir/ -12930 IR Islamic Azad University, Bojnourd http://www.bojnourdiau.ac.ir/ -12931 IR Islamic Azad University, Bostanabad http://www.iaubos.ac.ir/ -12932 IR Islamic Azad University, Boukan http://www.iau-boukan.ac.ir -12933 IR Islamic Azad University, Central Tehran Branch http://www.iauctb.ac.ir/ -12934 IR Islamic Azad University, Dehaghan http://www.dehaghan.ac.ir/ -12935 IR Islamic Azad University, Falavarjan http://www.falavarjan.ac.ir/ -12936 IR Islamic Azad University, Fars Science & Research Branch http://www.fsriau.ac.ir/ -12937 IR Islamic Azad University, Garmsar http://www.iau-garmsar.ac.ir/ -12938 IR Islamic Azad University, Gorgan http://www.gorganiau.ir/ -12939 IR Islamic Azad University, Hamedan http://www.iauh.ac.ir/ -12940 IR Islamic Azad University, Janah http://www.janahiau.ac.ir/ -12941 IR Islamic Azad University, Karaj http://www.iaukb.ir/ -12942 IR Islamic Azad University, Kazeron http://www.kau.ac.ir/ -12943 IR Islamic Azad University, Kerman http://www.iauk.ac.ir/ -12944 IR Islamic Azad University, Khorasgan http://www.khuisf.ac.ir/ -12945 IR Islamic Azad University, Lahijan http://www.iau-lahijan.ac.ir/ -12946 IR Islamic Azad University, Mahshar http://www.mahshahriau.ac.ir/ -12947 IR Islamic Azad University, Majlesi http://www.iaumajlesi.ac.ir/ -12948 IR Islamic Azad University, Mashhad http://www.mshdiau.ac.ir/ -12949 IR Islamic Azad University, Maybod http://www.maybod.ac.ir/ -12950 IR Islamic Azad University, Mehriz http://www.iaumehriz.com/ -12951 IR Islamic Azad University, Mobarakeh http://www.mau.ac.ir/ -12952 IR Islamic Azad University, Najaf Abad http://www.iaun.ac.ir/ -12953 IR Islamic Azad University, North Tehran http://www.iau-tnb.ac.ir/ -12954 IR Islamic Azad University, Parand http://www.piau.ac.ir/ -12955 IR Islamic Azad University, Qazvin http://www.qazviniau.ac.ir/ -12956 IR Islamic Azad University, Qom http://www.qom-iau.ac.ir/ -12957 IR Islamic Azad University, Quchan http://www.iauq.ac.ir/ -12958 IR Islamic Azad University, Region One http://www.iauro.ac.ir/ -12959 IR Islamic Azad University, Roodehen http://www.riau.ac.ir/ -12960 IR Islamic Azad University, Sanandaj http://www.iausdj.ac.ir/ -12961 IR Islamic Azad University, Saveh http://www.iau-saveh.ac.ir/ -12962 IR Islamic Azad University, Semnan http://www.semnaniau.ac.ir/ -12963 IR Islamic Azad University, Shabestar http://www.iaushab.ac.ir/ -12964 IR Islamic Azad University, Shahr-e-rey Branch http://www.iausr.ac.ir/ -12965 IR Islamic Azad University, Shahrood http://www.iau-shahrood.ac.ir/ -12966 IR Islamic Azad University, Shahryar http://www.shahryariau.ac.ir/ -12967 IR Islamic Azad University, Shiraz http://www.iaushiraz.ac.ir/ -12968 IR Islamic Azad University, Shirvan http://www.iau-shirvan.ac.ir/ -12969 IR Islamic Azad University, Sowmesara http://www.sowmesaraiau.ac.ir/ -12970 IR Islamic Azad University, Tabriz http://www.iaut.ac.ir/ -12971 IR Islamic Azad University, Tafresh http://www.iautb.ac.ir/ -12972 IR Islamic Azad University, Tehran Medical http://www.iautmu.ac.ir/ -12973 IR Islamic Azad University, Tehran Science & Research Branch http://www.srbiau.ac.ir/ -12974 IR Islamic Azad University, Tehran South http://www.azad.ac.ir/ -12975 IR Islamic Azad University, Varamin http://www.iauvaramin.ac.ir/ -12976 IR Islamic Azad University, Yazd http://www.iauyazd.ac.ir/ -12977 IR Jahrom University of Medical Sciences http://www.jums.ac.ir/ -12978 IR Jami Institute of Technology http://www.jami.ac.ir/ -12979 IR Kamalolmolk Art & Architecture Higher Education Institute of Noshahr http://www.kamalolmolk.ac.ir/ -12980 IR Kar University http://www.karuniversity.com/ -12981 IR Kashan University http://www.kashanu.ac.ir/ -12982 IR Kashan University of Medical Sciences http://www.kaums.ac.ir/ -12983 IR Kerman Graduate University of Technology http://www.kgut.ac.ir/ -12984 IR Kermanshah University of Medical Sciences http://www.kums.ac.ir/ -12985 IR Kermanshah University of Technology http://www.kut.ac.ir/ -12986 IR Kerman University of Medical Sciences http://www.kmu.ac.ir/ -12987 IR Khomeinishahr Payame Noor University http://km.isfpnu.ac.ir/ -12988 IR K.N.Toosi University of Technology http://www.kntu.ac.ir/ -12989 IR Kurdistan University of Medical Sciences http://www.muk.ac.ir/ -12990 IR Lorestan University http://www.lu.ac.ir/ -12991 IR Lorestan University of Medical Sciences http://www.lums.ac.ir/ -12992 IR Malayer University http://www.malayeru.ac.ir/ -12993 IR Malekan Payame Nour University http://www.malekanpnu.ac.ir/ -12994 IR Mamasani University of Technology http://www.mamasaniiau.ac.ir/ -12995 IR Mashhad University of Medical Sciences http://www.mums.ac.ir/ -12996 IR Mazandaran University of Iran http://www.umz.ac.ir/ -12997 IR Mazandaran University of Medical Science http://www.mazums.ac.ir/ -12998 IR Mazandaran University of Science & Technology http://www.ustmb.ac.ir/ -12999 IR Mofid University http://www.mofidu.ac.ir/ -13000 IR Mustafa International University http://www.miu.ac.ir/ -13001 IR Najaf Abad University of Applied Science and Technology http://www.najafabad-uast.ac.ir/ -13002 IR Payame Noor University http://www.pnu.ac.ir/ -13003 IR Payame Noor University, Tafresh http://www.pnut.ac.ir/ -13004 IR Persian Gulf University http://www.pgu.ac.ir/ -13005 IR Petroleum University of Technology http://www.put.ac.ir/ -13006 IR Power and Water Institute of Technology http://www.pwit.ac.ir/ -13007 IR Qazvin University of Medical Sciences http://www.qums.ac.ir/ -13008 IR Qom University http://www.qom.ac.ir/ -13009 IR Qom University of Medical Sciences http://www.muq.ac.ir/ -13010 IR Qom University of Technology http://www.qut.ac.ir/ -13011 IR Rafsanjan University of Medical Sciences http://www.rums.ac.ir/ -13012 IR Raghebe Esfahani University http://www.raghebisf.ac.ir/ -13013 IR Razi University http://www.razi.ac.ir/ -13014 IR Sabzevar School of Medical Sciences http://www.medsab.ac.ir/ -13015 IR Sabzevar Teacher Training University http://www.sttu.ac.ir/ -13016 IR Sadjad Institute of Technology http://www.sadjad.ac.ir/ -13017 IR Sadra University http://www.sadra.ac.ir/ -13018 IR Sahand University of Technology http://www.sut.ac.ir/ -13019 IR School of Economic Sciences http://www.ses.ac.ir/ -13020 IR Semnan University http://www.semnan.ac.ir/ -13021 IR Semnan University of Medical Sciences http://www.sem-ums.ac.ir/ -13022 IR Shahed University http://www.shahed.ac.ir/ -13023 IR Shaheed Beheshti University http://www.sbu.ac.ir/ -13024 IR Shaheed Beheshti University of Medical Sciences http://www.sbmu.ac.ir/ -13025 IR Shaheed Chamran University http://www.cua.ac.ir/ -13026 IR Shaheed Rajaei Teacher Training University http://www.srttu.edu/ -13027 IR Shahid Bahonar University of Kerman http://www.uk.ac.ir/ -13028 IR Shahrekord University http://www.sku.ac.ir/ -13029 IR Shahrekord University of Medical Sciences http://www.skums.ac.ir/ -13030 IR Shahrood University of Medical Sciences http://www.shmu.ac.ir/ -13031 IR Shahrood University of Technology http://www.shahroodut.ac.ir/ -13032 IR Sharif University of Technology http://www.sharif.ac.ir/ -13033 IR Sharif University of Technology, Kish Campus http://www.kish.ac.ir/ -13034 IR Sheikhbahaee University http://www.shbu.ac.ir/ -13035 IR Shiraz Payamnoor University http://www.spnu.ac.ir/ -13036 IR Shiraz University http://www.shirazu.ac.ir/ -13037 IR Shiraz University of Medical Sciences http://www.sums.ac.ir/ -13038 IR Shiraz University of Technology http://www.sutech.ac.ir/ -13039 IR Shomal University http://www.shomal.ac.ir/ -13040 IR Sistan & Balouchestan University http://www.usb.ac.ir/ -13041 IR Tabari Institute of Higher Education http://www.tabari.ac.ir/ -13042 IR Tabriz College of Technology http://www.tct.ac.ir/ -13043 IR Tabriz Islamic Art University http://www.tabriziau.ac.ir/ -13044 IR Tabriz University http://www.tabrizu.ac.ir/ -13045 IR Tabriz University of Medical Sciences http://www.tbzmed.ac.ir/ -13046 IR Takestan Islamic Azad University http://www.tiau.ac.ir/ -13047 IR Tarbiat Modares University http://www.modares.ac.ir/ -13048 IR Tehran University of Medical Sciences http://www.tums.ac.ir/ -13049 IR Tehran University of Teacher Training http://www.tmu.ac.ir/ -13050 IR The Bahá'í Institute For Higher Education (BIHE) http://www.bihe.org/ -13051 IR Torbat Heydarieh University of Medical Sciences http://www.thums.ac.ir/ -13052 IR University College of Nabi Akram http://www.ucna.info/ -13053 IR University of Applied Science and Technology http://www.uast.ac.ir/ -13054 IR University of Hormozgan http://www.hormozgan.ac.ir/ -13055 IR University of Kurdistan http://www.uok.ac.ir/ -13056 IR University of Lavasanat Pnu http://www.lavasanpnu.ac.ir/ -13057 IR University of Mashhad Pnu http://www.pnum.ac.ir/ -13058 IR University of Mohaghegh http://www.uma.ac.ir/ -13059 IR University of Science and Culture http://www.usc.ac.ir/ -13148 IT University of Milan http://www.unimi.it/ -13060 IR University of Social Welfare and Rehabilitation Scinences http://www.uswr.ac.ir/ -13061 IR University of Tehran http://www.ut.ac.ir/ -13062 IR Urmia University http://www.urmia.ac.ir/ -13063 IR Urmia University of Medical Sciences http://www.umsu.ac.ir/ -13064 IR Urmia University of Technology http://www.uut.ac.ir/ -13065 IR Vali-e-Asr University http://www.vru.ac.ir/ -13066 IR Yasuj University http://www.yu.ac.ir/ -13067 IR Yasuj University of Medical Sciences http://www.yums.ac.ir/ -13068 IR Yazd Medical University http://www.ssu.ac.ir/ -13069 IR Yazd University http://www.yazduni.ac.ir/ -13070 IR Zabol University http://www.uoz.ac.ir/ -13071 IR Zahedan University of Medical Sciences http://www.zdmu.ac.ir/ -13072 IR Zanjan Institute for Advanced Studies in Basic Sciences http://www.iasbs.ac.ir/ -13073 IR Zanjan University http://www.znu.ac.ir/ -13074 IR Zanjan University of Medical Sciences http://www.zums.ac.ir/ -13075 IS Bifrost School of Business http://www.bifrost.is/ -13076 IS Holar University College http://www.holar.is/ -13077 IS Hvanneyri Agricultural University http://www.hvanneyri.is/ -13078 IS Iceland Academy of the Arts http://www.lhi.is/ -13079 IS Iceland University of Education http://www.khi.is/ -13080 IS Reykjavík University http://www.ru.is/ -13081 IS Technological University of Iceland http://www.iti.is/ -13082 IS University Centre of the Westfjords http://www.hsvest.is/ -13083 IS University of Akureyri http://www.unak.is/ -13084 IS University of Iceland http://www.hi.is/ -13085 IT Abdus Salam international centre for theoretical physics http://www.ictp.trieste.it/ -13086 IT Basilicata University Potenza http://www.unibas.it/ -13087 IT Campus Bio-Medico University of Rome http://www.unicampus.it/ -13088 IT Catholic University of the Sacred Heart http://www.unicatt.it/ -13089 IT Dutch University Institute for Art History (DUIA) http://www.iuoart.org/ -13090 IT European School of Economics http://www.uniese.it/ -13091 IT European University Institute http://www.iue.it/ -13092 IT Fondazione Sacro Cuore http://www.sacrocuore.org/ -13093 IT Free International University of Social Studies http://www.luiss.it/ -13094 IT Free University Institute "Carlo Cattaneo" http://www.liuc.it/ -13095 IT Free University "Maria Santissima Assunta" http://www.lumsa.it/ -13096 IT Free University of Bozen http://www.unibz.it/ -13097 IT Higher School of University and Advanced Studies Pisa http://www.sssup.it/ -13098 IT Institute for Advanced Studies Lucca http://www.imtlucca.it/ -13099 IT International Higher School for Advanced Studies Trieste http://www.sissa.it/ -13100 IT Istituto Universitario di Studi Superiori http://www.iusspavia.it/ -13101 IT John Cabot University http://www.johncabot.edu/ -13102 IT Johns Hopkins University, SAIS Bologna Center http://www.jhubc.it/ -13103 IT Link Campus University of Malta http://www.unilink.it/ -13104 IT NABA - Nuova Accademia di Belle Arti, Milan http://www.naba.it/ -13105 IT Polytechnic Institute of Bari http://www.poliba.it/ -13106 IT Polytechnic Institute of Milan http://www.polimi.it/ -13107 IT Polytechnic Institute of Turin http://www.polito.it/ -13108 IT Pontifica Università Gregoriana http://www.unigre.it/ -13109 IT Pontificia Università della Santa Croce http://www.pusc.it/ -13110 IT Pontificia Università Lateranense http://www.pul.it/ -13111 IT Pontificia Università S. Tommaso http://www.angelicum.org/ -13112 IT Pontificio Ateneo Antonianum http://www.antonianum.ofm.org/ -13113 IT Pontificio Istituto Orientale http://www.pio.urbe.it/ -13114 IT School of Education Pisa http://www.sns.it/ -13115 IT Second University of Naples http://www.unina2.it/ -13116 IT Third University of Rome http://www.uniroma3.it/ -13117 IT Università Bocconi http://www.uni-bocconi.it/ -13118 IT Università Pontificia Salesiana http://www.unisal.it/ -13119 IT University Institute of Architecture Venice http://www.iuav.unive.it/ -13120 IT University Institute of Modern Languages http://www.iulm.it/ -13121 IT University Institute of Naval Studies http://www.uninav.it/ -13122 IT University Institute of Oriental Studies http://www.iuo.it/ -13123 IT University Institute of Teacher Training "Suor Orsola Benincasa" http://www.unisob.na.it/ -13124 IT University of Ancona http://www.unian.it/ -13125 IT University of Aquila http://www.univaq.it/ -13126 IT University of Bari http://www.uniba.it/ -13127 IT University of Bergamo http://www.unibg.it/ -13128 IT University of Bologna http://www.unibo.it/ -13129 IT University of Brescia http://www.unibs.it/ -13130 IT University of Cagliari http://www.unica.it/ -13131 IT University of Calabria http://www.unical.it/ -13132 IT University of Camerino http://www.unicam.it/ -13133 IT University of Cassino http://www.unicas.it/ -13134 IT University of Catania http://www.unict.it/ -13135 IT University of Chieti http://www.unich.it/ -13136 IT University of Commerce Luigi Bocconi http://www.uni-bocconi.it/ -13137 IT University of Ferrara http://www.unife.it/ -13138 IT University of Florence http://www.unifi.it/ -13139 IT University of Foggia http://www.unifg.it/ -13140 IT University of Gastronomic Sciences http://www.unisg.it/ -13141 IT University of Genoa http://www.unige.it/ -13142 IT University of Insubria http://www.uninsubria.it/ -13143 IT University of Italian Studies for Foreigners of Perugia http://www.unistrapg.it/ -13144 IT University of Italian Studies for Foreigners of Siena http://www.unistrasi.it/ -13145 IT University of Lecce http://www.unile.it/ -13146 IT University of Macerata http://www.unimc.it/ -13147 IT University of Messina http://www.unime.it/ -13149 IT University of Milan - Bicocca http://www.unimib.it/ -13150 IT University of Modena http://www.casa.unimo.it/ -13151 IT University of Molise http://www.unimol.it/ -13152 IT University of Naples Federico II http://www.unina.it/ -13153 IT University of Padua http://www.unipd.it/ -13154 IT University of Palermo http://www.unipa.it/ -13155 IT University of Parma http://www.unipr.it/ -13156 IT University of Pavia http://www.unipv.it/ -13157 IT University of Perugia http://www.unipg.it/ -13158 IT University of Pisa http://www.unipi.it/ -13159 IT University of Reggio Calabria http://www.unirc.it/ -13160 IT University of Roma "La Sapienza" http://www.uniroma1.it/ -13161 IT University of Roma "Tor Vergata" http://www.uniroma2.it/ -13162 IT University of Salerno http://www.unisa.it/ -13163 IT University of Sannio http://www.unisannio.it/ -13164 IT University of Sassari http://www.uniss.it/ -13165 IT University of Siena http://www.unisi.it/ -13166 IT University of Teramo http://www.unite.it/ -13167 IT University of Trento http://www.unitn.it/ -13168 IT University of Trieste http://www.univ.trieste.it/ -13169 IT University of Turin http://www.unito.it/ -13170 IT University of Udine http://www.uniud.it/ -13171 IT University of Urbino http://www.uniurb.it/ -13172 IT University of Venice http://www.unive.it/ -13173 IT University of Verona http://www.univr.it/ -13174 IT Viterbo State University http://www.unitus.it/ -13175 IT Yorker International University, Milano http://www.nyuniversity.net/ -13176 JM Northern Caribbean University http://www.ncu.edu.jm/ -13177 JM University of Technology Jamaica http://www.utech.edu.jm/ -13178 JM University of the West Indies, Mona http://www.uwimona.edu.jm/ -13179 JO Al-Ahliyya Amman University http://www.ammanu.edu.jo/ -13180 JO Al al-Bayt University http://www.aabu.edu.jo/ -13181 JO Al-Balqa Applied University http://www.bau.edu.jo/ -13182 JO Al Hussein Bin Talal University http://www.ahu.edu.jo/ -13183 JO Al-Isra University http://www.isra.edu.jo/ -13184 JO Al-Zaytoonah University http://www.alzaytoonah.edu.jo/ -13185 JO Amman Arab University for Higher Studies http://www.aau.edu.jo/ -13186 JO Amman University http://www.amman.edu/ -13187 JO Applied Science University http://www.asu.edu.jo/ -13188 JO Arab Academy for Banking and Financial Sciences http://www.aabfs.org/ -13189 JO Arab Open University http://www.aou.edu.jo/ -13190 JO Balqa Applied University http://www.bau.edu.jo/ -13191 JO German Jordanian University http://www.gju.edu.jo/ -13192 JO Hashemite University http://www.hu.edu.jo/ -13193 JO Irbid National University http://www.inu.edu.jo/ -13194 JO Jadara University http://www.jadara.edu.jo/ -13195 JO Jerash Private University http://www.jerashun.edu.jo/ -13196 JO Jordan Academy of Music / Higher Institute of Music http://www.jam.edu.jo/ -13197 JO Jordan University of Science and Technology http://www.just.edu.jo/ -13198 JO Middle East University http://www.meu.edu.jo/ -13199 JO Mu' tah University http://www.mutah.edu.jo/ -13200 JO New York Institute of Technology http://www.nyit.edu.jo/ -13201 JO Philadelphia University http://www.philadelphia.edu.jo/ -13202 JO Princess Sumaya University for Technology http://www.psut.edu.jo/ -13203 JO Tafila Technical University http://www.ttu.edu.jo/ -13204 JO The World Islamic Sciences & Education University http://www.wise.edu.jo/ -13205 JO University of Jordan http://www.ju.edu.jo/ -13206 JO University of Petra http://www.uop.edu.jo/ -13207 JO Yarmouk University http://www.yu.edu.jo/ -13208 JO Zarka Private University http://www.zpu.edu.jo/ -13209 JP Aichi Bunkyo University http://www.abu.ac.jp/ -13210 JP Aichi Gakuin University http://www.aichi-gakuin.ac.jp/ -13211 JP Aichi Gakusen University http://www.gakusen.ac.jp/ -13212 JP Aichi Institute of Technology http://www.aitech.ac.jp/ -13213 JP Aichi Medical University http://www.aichi-med-u.ac.jp/ -13214 JP Aichi Prefectural University http://www.aichi-pu.ac.jp/ -13215 JP Aichi Prefectural University of Fine Arts & Music http://www.aichi-fam-u.ac.jp/ -13216 JP Aichi Sangyo University http://www.asu.ac.jp/ -13217 JP Aichi Shukutoku University http://www.aasa.ac.jp/ -13218 JP Aichi University http://www.aichi-u.ac.jp/ -13219 JP Aichi University of Education http://www.aichi-edu.ac.jp/ -13220 JP Aikoku Gakuen University http://www.aikoku-u.ac.jp/ -13221 JP Akita University http://www.akita-u.ac.jp/ -13222 JP Akita University of Economics and Law http://www.akeihou-u.ac.jp/ -13223 JP American University Extension, Okinawa http://www.aue-okinawa.ac.jp/ -13224 JP Aomori Chuoh Gakuin University http://www.aomoricgu.ac.jp/ -13225 JP Aomori Public College http://www.nebuta.ac.jp/ -13226 JP Aomori University http://www.aomori-u.ac.jp/ -13227 JP Aomori University of Health and Welfare http://www.auhw.ac.jp/ -13228 JP Aoyama Gakuin University http://www.aoyama.ac.jp/ -13229 JP Asahikawa Medical College http://www.asahikawa-med.ac.jp/ -13230 JP Asahikawa University http://www.asahikawa-u.ac.jp/ -13231 JP Asahi University http://www.asahi-u.ac.jp/ -13232 JP Ashikaga Institute of Technology http://www.ashitech.ac.jp/ -13233 JP Ashiya University http://www.ashiya-u.ac.jp/ -13234 JP Asia University http://www.asia-u.ac.jp/ -13235 JP Atomi College http://www.atomi.ac.jp/ -13236 JP Azabu University http://www.azabu-u.ac.jp/ -13237 JP Baika Women's College http://www.baika.ac.jp/ -13238 JP Baiko Women's College http://www.baiko.ac.jp/ -13239 JP Beppu University http://www.beppu-u.ac.jp/ -13240 JP Bukkyo University http://www.bukkyo-u.ac.jp/ -13241 JP Bunka Women's University http://www.bunka-wu.ac.jp/ -13242 JP Bunkyo University http://www.bunkyo.ac.jp/ -13243 JP Chiba Institute of Technology http://www.it-chiba.ac.jp/ -13244 JP Chiba Keizai University http://www.cku.ac.jp/ -13245 JP Chiba University http://www.chiba-u.ac.jp/ -13246 JP Chiba University of Commerce http://www.cuc.ac.jp/ -13247 JP Chikushi Jogakuen University http://www.chikushi.ac.jp/ -13248 JP Chubu Gakuin University & Chubu Women's College http://www.chubu-gu.ac.jp/ -13249 JP Chubu University http://www.chubu.ac.jp/ -13250 JP Chukyo Gakuin University http://www.chukyogakuin-u.ac.jp/ -13251 JP Chukyo University http://www.chukyo-u.ac.jp/ -13252 JP Chukyo Women's University http://www.chujo-u.ac.jp/ -13253 JP Chuo Gakuin University http://www.cgu.ac.jp/ -13254 JP Chuo University http://www.chuo-u.ac.jp/ -13255 JP Daido Institute of Technology http://www.daido-it.ac.jp/ -13256 JP Daiichi College of Pharmaceutical Sciences http://www.daiichi-cps.ac.jp/ -13257 JP Dai Ichi University, College of Technology http://www.daiichi-koudai.ac.jp/ -13258 JP Daiichi University of Economics http://www.daiichi-ue.ac.jp/ -13259 JP Daito Bunka University http://www.daito.ac.jp/ -13260 JP Doho University http://www.doho.ac.jp/ -13261 JP Dohto University http://www.dohto.ac.jp/ -13262 JP Dokkyo University http://www.dokkyo.ac.jp/ -13263 JP Dokkyo University School of Medicine http://www.dokkyomed.ac.jp/ -13264 JP Doshisha University http://www.doshisha.ac.jp/ -13265 JP Doshisha Women's College of Liberal Arts http://www.dwc.doshisha.ac.jp/ -13266 JP Edogawa University http://www.edogawa-u.ac.jp/ -13267 JP Ehime University http://www.ehime-u.ac.jp/ -13268 JP Eichi University http://www.eichi-u.ac.jp/ -13269 JP Elisabeth University of Music http://www.eum.ac.jp/ -13270 JP Ferris University http://www.ferris.ac.jp/ -13271 JP Fujita Health University http://www.fujita-hu.ac.jp/ -13272 JP Fuji University http://www.termnet.co.jp/fujidai/ -13273 JP Fuji Women's College http://www.fujijoshi.ac.jp/ -13274 JP Fukui Medical School http://www.fukui-med.ac.jp/ -13275 JP Fukui Prefectural University http://www.fpu.ac.jp/ -13276 JP Fukui University http://www.fukui-u.ac.jp/ -13277 JP Fukui University of Technology http://www.fukui-ut.ac.jp/ -13278 JP Fukuoka Dental College http://www.fdcnet.ac.jp/ -13279 JP Fukuoka Institute of Technology http://www.fit.ac.jp/ -13280 JP Fukuoka International University http://www.fukuoka-int-u.ac.jp/ -13281 JP Fukuoka Prefectural University http://www.fukuoka-pu.ac.jp/ -13282 JP Fukuoka University http://www.fukuoka-u.ac.jp/ -13283 JP Fukuoka University of Education http://www.fukuoka-edu.ac.jp/ -13284 JP Fukuoka Women's University http://www.fwu.ac.jp/ -13285 JP Fukushima Medical College http://www.fmu.ac.jp/ -13286 JP Fukushima University http://www.fukushima-u.ac.jp/ -13287 JP Fukuyama Heisei University http://www.heisei-u.ac.jp/ -13288 JP Fukuyama University http://www.fukuyama-u.ac.jp/ -13289 JP Gakushuin University http://www.gakushuin.ac.jp/ -13290 JP Gifu Keizai University http://www.gifu-keizai.ac.jp/ -13291 JP Gifu Pharmaceutical University http://www.gifu-pu.ac.jp/ -13292 JP Gifu Shotoku Gakuen University http://www.shotoku.ac.jp/ -13293 JP Gifu University http://www.gifu-u.ac.jp/ -13294 JP Gifu University for Education and Languages http://www.gifu-kyoiku.ac.jp/ -13295 JP Gifu Women's University http://www.gijodai.ac.jp/ -13296 JP Graduate University for Advanced Studies http://www.soken.ac.jp/ -13297 JP Gunma Prefectural Women's University http://www.gpwu.ac.jp/ -13298 JP Gunma University http://www.gunma-u.ac.jp/ -13299 JP Hachinohe Institute of Technology http://www.hi-tech.ac.jp/ -13300 JP Hachinohe University http://www.hachinohe-u.ac.jp/ -13301 JP Hakodate University http://www.hakodate-u.ac.jp/ -13302 JP Hakuoh University http://www.hakuoh.ac.jp/ -13303 JP Hamamatsu University http://www.hamamatsu-u.ac.jp/ -13304 JP Hamamatsu University School of Medicine http://www.hama-med.ac.jp/ -13305 JP Hanazono University http://www.hanazono.ac.jp/ -13306 JP Hannan University http://www.hannan-u.ac.jp/ -13307 JP Heisei International University http://www.hiu.ac.jp/ -13308 JP Higashi Nippon International University http://www.tonichi-kokusai-u.ac.jp/ -13309 JP Hijiyama University http://www.hijiyama-u.ac.jp/ -13310 JP Himeji Dokkyo University http://www.himeji-du.ac.jp/ -13311 JP Himeji Institute of Technology http://www.himeji-tech.ac.jp/ -13312 JP Hirosaki Gakuin University http://www.hirogaku-u.ac.jp/ -13313 JP Hirosaki University http://www.hirosaki-u.ac.jp/ -13314 JP Hiroshima Bunkyo Women's University http://www.h-bunkyo.ac.jp/ -13315 JP Hiroshima City University http://www.hiroshima-cu.ac.jp/ -13316 JP Hiroshima Institute of Technology http://www.it-hiroshima.ac.jp/ -13317 JP Hiroshima International University http://www.hirokoku-u.ac.jp/ -13318 JP Hiroshima Jogakuin University http://www.hju.ac.jp/ -13319 JP Hiroshima Kokusai Gakuin University http://www.hkg.ac.jp/ -13320 JP Hiroshima Prefectural University http://www.hiroshima-pu.ac.jp/ -13321 JP Hiroshima Shudo University http://www.shudo-u.ac.jp/ -13322 JP Hiroshima University http://www.hiroshima-u.ac.jp/ -13323 JP Hiroshima University of Economics http://www.hue.ac.jp/ -13324 JP Hiroshima Women's University http://www.hirojo-u.ac.jp/ -13325 JP Hitotsubashi University http://www.hit-u.ac.jp/ -13326 JP Hokkaido Information University http://www.do-johodai.ac.jp/ -13327 JP Hokkaido Institute of Pharmaceutical Sciences http://www.hokuyakudai.ac.jp/ -13328 JP Hokkaido Institute of Technology http://www.hit.ac.jp/ -13329 JP Hokkaido Tokai University http://www.u-tokai.ac.jp/ -13330 JP Hokkaido University http://www.hokudai.ac.jp/ -13331 JP Hokkaido University of Education http://www.hokkyodai.ac.jp/ -13332 JP Hokkaido University of Health Sciences http://www.hoku-iryo-u.ac.jp/ -13333 JP Hokkaigakuen University http://www.hokkai-s-u.ac.jp/ -13334 JP Hokkaigakuen University of Kitami http://www.hokkai-k-u.ac.jp/ -13335 JP Hokuriku University http://www.hokuriku-u.ac.jp/ -13336 JP Hokusei Gakuen University http://www.hokusei.ac.jp/ -13337 JP Hosei University http://www.hosei.ac.jp/ -13338 JP Hoshi University http://www.hoshi.ac.jp/ -13339 JP Hyogo College of Medicine http://www.hyo-med.ac.jp/ -13340 JP Hyogo University http://www.hyogo-dai.ac.jp/ -13341 JP Hyogo University of Education http://www.hyogo-u.ac.jp/ -13342 JP Ibaraki Christian College http://www.icc.ac.jp/ -13343 JP Ibaraki Prefectural University of Health Sciences http://www.ipu.ac.jp/ -13344 JP Ibaraki University http://www.ibaraki.ac.jp/ -13345 JP International Buddhist University http://www.shitennoji.ac.jp/ -13346 JP International Budo University http://www.budo-u.ac.jp/ -13347 JP International Christian University http://www.icu.ac.jp/ -13348 JP International University of Health and Welfare http://www.iuhw.ac.jp/ -13349 JP International University of Japan http://www.iuj.ac.jp/ -13350 JP International University of Kagoshima http://www.iuk.ac.jp/ -13351 JP Ishinomaki Senshu University http://www.isenshu-u.ac.jp/ -13352 JP Iwaki Meisei University http://www.iwakimu.ac.jp/ -13353 JP Iwate Medical University http://www.iwate-med.ac.jp/ -13354 JP Iwate Prefectural University http://www.iwate-pu.ac.jp/ -13355 JP Iwate University http://www.iwate-u.ac.jp/ -13356 JP Japan Advanced Institute of Science and Technology http://www.jaist.ac.jp/ -13357 JP Japan College of Social Work http://www.shakaijigyo.ac.jp/ -13358 JP Japanese Red Cross College of Nursing http://www.redcross.ac.jp/ -13359 JP Japan Women's University http://www.jwu.ac.jp/ -13360 JP Jichi Medical School http://www.jichi.ac.jp/ -13361 JP Jikei University School of Medicine http://www.jikei.ac.jp/ -13362 JP Jissen Women's University http://www.jissen.ac.jp/ -13363 JP Jobu University http://www.jobu.ac.jp/ -13364 JP Joetsu University of Education http://www.juen.ac.jp/ -13365 JP Josai International University http://www.jiu.ac.jp/ -13366 JP Josai University http://www.josai.ac.jp/ -13367 JP Juntendo University http://www.juntendo.ac.jp/ -13368 JP Kagawa Institute of Nutrition http://www.eiyo.ac.jp/ -13369 JP Kagawa Medical School http://www.kms.ac.jp/ -13370 JP Kagawa University http://www.kagawa-u.ac.jp/ -13371 JP Kagoshima Immaculate Heart University http://www.juntan.k-junshin.ac.jp/jundai/ -13372 JP Kagoshima University http://www.kagoshima-u.ac.jp/ -13373 JP Kagoshima Women's College http://www.kwc-u.ac.jp/ -13374 JP Kamakura Women's College http://www.kamakura-u.ac.jp/ -13375 JP Kanagawa Dental College http://www.kdcnet.ac.jp/ -13376 JP Kanagawa Institute of Technology http://www.kanagawa-it.ac.jp/ -13377 JP Kanagawa University http://www.kanagawa-u.ac.jp/ -13378 JP Kanazawa College of Art http://www.kanazawa-bidai.ac.jp/ -13379 JP Kanazawa College of Economics http://www.kanazawa-eco.ac.jp/ -13380 JP Kanazawa Gakuin University http://www.kanazawa-gu.ac.jp/ -13381 JP Kanazawa Institute of Technology http://www.kanazawa-it.ac.jp/ -13382 JP Kanazawa Medical University http://www.kanazawa-med.ac.jp/ -13383 JP Kanazawa University http://www.kanazawa-u.ac.jp/ -13384 JP Kanda University of International Studies http://www.kuis.ac.jp/ -13385 JP Kansai Gaidai University http://www.kansai-gaidai-u.ac.jp/ -13386 JP Kansai Medical University http://www.kmu.ac.jp/ -13387 JP Kansai University http://www.kansai-u.ac.jp/ -13388 JP Kansai University of International Studies http://www.kuins.ac.jp/ -13389 JP Kansai University of Social Welfare http://www.kusw.ac.jp/ -13390 JP Kanto Gakuen University http://www.kanto-gakuen.ac.jp/ -13391 JP Kanto Gakuin University http://www.kanto-gakuin.ac.jp/ -13392 JP Kawamura Gakuen Woman's University http://www.kgwu.ac.jp/ -13393 JP Kawasaki Medical School http://www.kawasaki-m.ac.jp/ -13394 JP Kawasaki University of Medical Care http://www.kawasaki-m.ac.jp/mw/ -13395 JP Keiai University http://www.u-keiai.ac.jp/ -13396 JP Keio University http://www.keio.ac.jp/ -13397 JP Keisen Jogaku-en College http://www.keisen.ac.jp/ -13398 JP Keiwa College http://www.keiwa-c.ac.jp/ -13399 JP Kibi International University http://www.kiui.ac.jp/ -13400 JP Kinjo Gakuin University http://www.kinjo-u.ac.jp/ -13401 JP Kinki University http://www.kindai.ac.jp/ -13402 JP Kitakyushu University http://www.kitakyu-u.ac.jp/ -13403 JP Kitami Institute of Technology http://www.kitami-it.ac.jp/ -13404 JP Kitasato University http://www.kitasato-u.ac.jp/ -13405 JP Kobe City University of ForeignStudies http://www.kobe-cufs.ac.jp/ -13406 JP Kobe Design University http://www.kobe-du.ac.jp/ -13407 JP Kobe Gakuin University http://www.kobegakuin.ac.jp/ -13408 JP Kobe International University http://www.kobe-kiu.ac.jp/ -13409 JP Kobe Jogakuin University http://www.kobe-c.ac.jp/ -13410 JP Kobe Pharmaceutical University http://www.kobepharma-u.ac.jp/ -13411 JP Kobe Shinwa Women's University http://www.kobe-shinwa.ac.jp/ -13412 JP Kobe Shoin Women's University http://www.shoin.ac.jp/ -13413 JP Kobe University http://www.kobe-u.ac.jp/ -13414 JP Kobe University of Mercantile Marine http://www.kshosen.ac.jp/ -13415 JP Kobe Women's University http://www.suma.kobe-wu.ac.jp/ -13416 JP Kochi Medical School http://www.kochi-ms.ac.jp/ -13417 JP Kochi University http://www.kochi-u.ac.jp/ -13418 JP Kochi University of Technology http://www.kochi-tech.ac.jp/ -13419 JP Kochi Women's University http://www.kochi-wu.ac.jp/ -13420 JP Kogakkan University http://www.kogakkan-u.ac.jp/ -13421 JP Kogakuin University http://www.kogakuin.ac.jp/ -13422 JP Koka Women's College http://www.koka.ac.jp/ -13423 JP Kokugakuin University http://www.kokugakuin.ac.jp/ -13424 JP Kokushikan University http://www.kokushikan.ac.jp/ -13425 JP Komazawa University http://www.komazawa-u.ac.jp/ -13426 JP Konan University http://www.konan-u.ac.jp/ -13427 JP Konan Women's University http://www.konan-wu.ac.jp/ -13428 JP Korea University http://www.korea-u.ac.jp/ -13429 JP Koriyama Women's University and College http://www.koriyama-kgc.ac.jp/ -13430 JP Koshien University http://www.koshien.ac.jp/ -13431 JP Koyasan University http://www.koyasan-u.ac.jp/ -13432 JP Kumamoto Gakuen University http://www.kumagaku.ac.jp/ -13433 JP Kumamoto Institute of Technology http://www.knct.ac.jp/ -13434 JP Kumamoto Prefectural University http://www.pu-kumamoto.ac.jp/ -13435 JP Kumamoto University http://www.kumamoto-u.ac.jp/ -13436 JP Kunitachi College of Music http://www.kunitachi.ac.jp/ -13437 JP Kurashiki Sakuyo University http://www.ksu.ac.jp/ -13438 JP Kurashiki University of Science and the Arts http://www.kusa.ac.jp/ -13439 JP Kure University http://www.kure-u.ac.jp/ -13440 JP Kurume Institute of Technology http://www.kurume-it.ac.jp/ -13441 JP Kurume University http://www.kurume-u.ac.jp/ -13442 JP Kushiro Public University of Economics http://www.kushiro-pu.ac.jp/ -13443 JP Kwansei Gakuin University http://www.kwansei.ac.jp/ -13444 JP Kwassui Women's College http://www.kwassui.ac.jp/ -13445 JP Kyorin University http://www.kyorin-u.ac.jp/ -13446 JP Kyoritsu Pharmaceutical University http://www.kyoritsu-ph.ac.jp/ -13447 JP Kyoritsu Woman's University http://www.kyoritsu-wu.ac.jp/ -13448 JP Kyoto Bunkyo University http://www.kbu.ac.jp/ -13449 JP Kyoto City University of Arts http://www.kcua.ac.jp/ -13450 JP Kyoto Gakuen University http://www.kyotogakuen-u.ac.jp/ -13451 JP Kyoto Institute of Technology http://www.kit.ac.jp/ -13452 JP Kyoto Pharmaceutical University http://www.kyoto-phu.ac.jp/ -13453 JP Kyoto Prefectural University http://www.kpu.ac.jp/ -13454 JP Kyoto Prefectural University of Medicine http://www.kpu-m.ac.jp/ -13455 JP Kyoto Sangyo University http://www.kyoto-su.ac.jp/ -13456 JP Kyoto Seika University http://www.kyoto-seika.ac.jp/ -13457 JP Kyoto Tachibana Women's University http://www.tachibana-u.ac.jp/ -13458 JP Kyoto University http://www.kyoto-u.ac.jp/ -13459 JP Kyoto University of Art and Design http://www.kyoto-art.ac.jp/ -13460 JP Kyoto University of Education http://www.kyokyo-u.ac.jp/ -13461 JP Kyoto University of Foreign Studies http://www.kufs.ac.jp/ -13462 JP Kyoto Women's University http://www.kyoto-wu.ac.jp/ -13463 JP Kyushu Dental College http://www.kyu-dent.ac.jp/ -13464 JP Kyushu Institute of Design http://www.kyushu-id.ac.jp/ -13465 JP Kyushu Institute of Technology http://www.kyutech.ac.jp/ -13466 JP Kyushu International University http://www.kiu.ac.jp/ -13467 JP Kyushu Kyoritsu University http://www.kyukyo-u.ac.jp/ -13468 JP Kyushu Sangyo University http://www.ip.kyusan-u.ac.jp/ -13469 JP Kyushu Tokai University http://www.ktokai-u.ac.jp/ -13470 JP Kyushu University http://www.kyushu-u.ac.jp/ -13471 JP Kyushu University of Nursing and SocialWelfare http://www.kyushu-ns.ac.jp/ -13472 JP Kyushu Women's University http://www.kwuc.ac.jp/ -13473 JP Matsumoto Dental University http://www.mdu.ac.jp/ -13474 JP Matsusaka University http://www.mie-chukyo-u.ac.jp/ -13475 JP Matsuyama University http://www.matsuyama-u.ac.jp/ -13476 JP Meiji College of Pharmacy http://www.my-pharm.ac.jp/ -13477 JP Meiji Gakuin University http://www.meijigakuin.ac.jp/ -13478 JP Meiji University http://www.meiji.ac.jp/ -13479 JP Meiji University of Oriental Medicine http://www.meiji-u.ac.jp/ -13480 JP Meijo University http://www.meijo-u.ac.jp/ -13481 JP Meikai University http://www.meikai.ac.jp/ -13482 JP Meio University http://www.meio-u.ac.jp/ -13483 JP Meisei University http://www.meisei-u.ac.jp/ -13484 JP Mejiro University http://www.mejiro.ac.jp/ -13485 JP Mie University http://www.mie-u.ac.jp/ -13486 JP Mimasaka Women's College http://www.mimasaka.ac.jp/ -13487 JP Minamikyushu University http://www.nankyudai.ac.jp/ -13488 JP Miyagi Gakuin Women's College http://www.mgu.ac.jp/ -13489 JP Miyagi University http://www.myu.ac.jp/ -13490 JP Miyagi University of Education http://www.miyakyo-u.ac.jp/ -13491 JP Miyazaki Medical College http://www.miyazaki-med.ac.jp/ -13492 JP Miyazaki Municipal University http://www.miyazaki-mu.ac.jp/ -13493 JP Miyazaki Prefectural Nursing University http://www.mpu.ac.jp/ -13494 JP Miyazaki University http://www.miyazaki-u.ac.jp/ -13495 JP Morioka College http://www.morioka-u.ac.jp/ -13496 JP Mukogawa Women's University http://www.mukogawa-u.ac.jp/ -13497 JP Muroran Institute of Technology http://www.muroran-it.ac.jp/ -13498 JP Musashi Institute of Technology http://www.musashi-tech.ac.jp/ -13499 JP Musashino Academy of Music http://www.musashino-music.ac.jp/ -13500 JP Musashino Art University http://www.musabi.ac.jp/ -13501 JP Musashino Women's University http://www.musashino-wu.ac.jp/ -13502 JP Musashi University http://www.musashi.ac.jp/ -13503 JP Nagano University http://www.nagano.ac.jp/ -13504 JP Nagaoka University of Technology http://www.nagaokaut.ac.jp/ -13505 JP Nagasaki Institute of Applied Science http://www.nias.ac.jp/ -13506 JP Nagasaki Prefectural University http://www.nagasakipu.ac.jp/ -13507 JP Nagasaki University http://www.nagasaki-u.ac.jp/ -13508 JP Nagoya City University http://www.nagoya-cu.ac.jp/ -13509 JP Nagoya College of Music http://www.doho.ac.jp/~meion/ -13510 JP Nagoya Economics University http://www.nagoya-ku.ac.jp/ -13511 JP Nagoya Gakuin University http://www.ngu.ac.jp/ -13512 JP Nagoya Institute of Technology http://www.nitech.ac.jp/ -13513 JP Nagoya University http://www.nagoya-u.ac.jp/ -13514 JP Nagoya University of Arts http://www.nua.ac.jp/ -13515 JP Nagoya University of Commerce and Business Administration http://www.nucba.ac.jp/ -13516 JP Nagoya University of Foreign Studies http://www.nufs.nakanishi.ac.jp/ -13517 JP Nagoya Women's University http://www.nagoya-wu.ac.jp/ -13518 JP Nakamura Gakuen University http://www.nakamura-u.ac.jp/ -13519 JP Nanzan University http://www.nanzan-u.ac.jp/ -13520 JP Nara Medical University http://www.naramed-u.ac.jp/ -13521 JP Nara Sangyo University http://www.nara-su.ac.jp/ -13522 JP Nara University http://www.nara-u.ac.jp/ -13523 JP Nara University of Commerce http://www.narauc.ac.jp/ -13524 JP Nara University of Education http://www.nara-edu.ac.jp/ -13525 JP Nara Women's University http://www.nara-wu.ac.jp/ -13526 JP Naruto University of Education http://www.naruto-u.ac.jp/ -13527 JP National Defence Medical College http://www.ndmc.ac.jp/ -13528 JP National Fisheries University http://www.fish-u.ac.jp/ -13529 JP National Institute of Fitness and Sports Kanoya http://www.nifs-k.ac.jp/ -13530 JP Nihon Fukushi University http://www.n-fukushi.ac.jp/ -13531 JP Nihon University http://www.nihon-u.ac.jp/ -13532 JP Niigata College of Pharmacy http://www.niigata-pharm.ac.jp/ -13533 JP Niigata Sangyo University http://www.nsu.ac.jp/ -13534 JP Niigata University http://www.niigata-u.ac.jp/ -13535 JP Niigata University of International and Information Studies http://www.nuis.ac.jp/ -13536 JP Niigata University of Management http://www.niigataum.ac.jp/ -13537 JP Nippon Bunri University http://www.nbu.ac.jp/ -13538 JP Nippon Dental University http://www.ndu.ac.jp/ -13539 JP Nippon Institute of Technology http://www.nit.ac.jp/ -13540 JP Nippon Medical School http://www.nms.ac.jp/ -13541 JP Nippon Sport Science University http://www.nittai.ac.jp/ -13542 JP Nippon Veterinary and Animalscience University http://www.nvau.ac.jp/ -13543 JP Nishikyushu University http://www.nisikyu-u.ac.jp/ -13544 JP Nishinippon Institute of Technology http://www.nishitech.ac.jp/ -13545 JP Nisho Gakusha University http://www.nishogakusha-u.ac.jp/ -13546 JP Nortre Dame Seishin University http://www.ndsu.ac.jp/ -13547 JP Notre Dame Women's College http://www.notredame.ac.jp/ -13548 JP Obihiro University of Agriculture and Veterinary Medicine http://www.obihiro.ac.jp/ -13549 JP Obirin University http://www.obirin.ac.jp/ -13550 JP Ochanomizu Women's University http://www.ocha.ac.jp/ -13551 JP Ohka Gakuen University http://www.ohkagakuen-u.ac.jp/ -13552 JP Ohtani Women's University http://www.ohtani-w.ac.jp/ -13553 JP Ohu University http://www.ohu-u.ac.jp/ -13554 JP Oita Medical University http://www.oita-med.ac.jp/ -13555 JP Oita University http://www.oita-u.ac.jp/ -13556 JP Oita University of Nursing and Health Sciences http://www.oita-nhs.ac.jp/ -13557 JP Okayama Prefectural University http://www.oka-pu.ac.jp/ -13558 JP Okayama Shoka University http://www.osu.ac.jp/ -13559 JP Okayama University http://www.okayama-u.ac.jp/ -13560 JP Okayama University of Science http://www.ous.ac.jp/ -13561 JP Okinawa International University http://www.okiu.ac.jp/ -13562 JP Okinawa Prefectural University of Fine Arts http://www.okigei.ac.jp/ -13563 JP Okinawa University http://www.okinawa-u.ac.jp/ -13564 JP Osaka City University http://www.osaka-cu.ac.jp/ -13565 JP Osaka College of Music http://www.daion.ac.jp/ -13566 JP Osaka Dental University http://www.osaka-dent.ac.jp/ -13567 JP Osaka Electro-Communication University http://www.osakac.ac.jp/ -13568 JP Osaka Gakuin University http://www.osaka-gu.ac.jp/ -13569 JP Osaka Institute of Technology http://www.oit.ac.jp/ -13570 JP Osaka International University http://www.oiu.oiu.ac.jp/ -13571 JP Osaka International University for Women http://www.oiuw.oiu.ac.jp/ -13572 JP Osaka Medical College http://www.osaka-med.ac.jp/ -13573 JP Osaka Prefectural University http://www.osakafu-u.ac.jp/ -13574 JP Osaka Sangyo University http://www.osaka-sandai.ac.jp/ -13575 JP Osaka Shoin Women's College http://www.osaka-shoin.ac.jp/ -13576 JP Osaka University http://www.osaka-u.ac.jp/ -13577 JP Osaka University of Arts http://www.osaka-geidai.ac.jp/ -13578 JP Osaka University of Commerce http://www.daishodai.ac.jp/ -13579 JP Osaka University of Economics http://www.osaka-ue.ac.jp/ -13580 JP Osaka University of Economics & Law http://www.keiho-u.ac.jp/ -13581 JP Osaka University of Education http://www.osaka-kyoiku.ac.jp/ -13582 JP Osaka University of Foreign Studies http://www.osaka-gaidai.ac.jp/ -13583 JP Osaka University of Health and Sport Sciences http://www.ouhs.ac.jp/ -13584 JP Osaka University of Pharmaceutical Sciences http://www.oups.ac.jp/ -13585 JP Osaka Women's University http://www.osaka-wu.ac.jp/ -13586 JP Otani University http://www.otani.ac.jp/ -13587 JP Otaru University of Commerce http://www.otaru-uc.ac.jp/ -13588 JP Otemae University http://www.otemae.ac.jp/ -13589 JP Otemon Gakuin University http://www.otemon.ac.jp/ -13590 JP Otsuma Women's University http://www.otsuma.ac.jp/ -13591 JP Polytechnic University http://www.uitec.ac.jp/ -13592 JP Poole Gakuin University http://www.poole.ac.jp/ -13593 JP Rakuno Gakuen University http://www.rakuno.ac.jp/ -13594 JP Reitaku University http://www.reitaku-u.ac.jp/ -13595 JP Rikkyo University (St. Paul's University) http://www.rikkyo.ac.jp/ -13596 JP Rissho University http://www.ris.ac.jp/ -13597 JP Ritsumeikan Asia Pacific University http://www.apu.ac.jp/ -13598 JP Ritsumeikan University http://www.ritsumei.ac.jp/ -13599 JP Ryukoku University http://www.ryukoku.ac.jp/ -13600 JP Ryutsu Keizai University http://www.rku.ac.jp/ -13601 JP Saga Medical School http://www.saga-med.ac.jp/ -13602 JP Sagami Women's University http://www.sagami-wu.ac.jp/ -13603 JP Saga University http://www.saga-u.ac.jp/ -13604 JP Saitama Institute of Technology http://www.sit.ac.jp/ -13605 JP Saitama Medical School http://www.saitama-med.ac.jp/ -13606 JP Saitama Prefectural University http://www.spu.ac.jp/ -13607 JP Saitama University http://www.saitama-u.ac.jp/ -13608 JP Sakushin Gakuin University http://www.sakushin-u.ac.jp/ -13609 JP Sankei University http://www.miyasankei-u.ac.jp/ -13610 JP Sanno University http://www.sanno.ac.jp/ -13611 JP Sanyo Gakuen University http://www.sguc.ac.jp/ -13612 JP Sapporo Gakuin University http://www.sgu.ac.jp/ -13613 JP Sapporo International University http://www.siu.ac.jp/ -13614 JP Sapporo Medical University http://www.sapmed.ac.jp/ -13615 JP Sapporo University http://www.sapporo-u.ac.jp/ -13616 JP Science University of Tokyo http://www.sut.ac.jp/ -13617 JP Science University of Tokyo in Yamaguchi http://www.yama.sut.ac.jp/ -13618 JP Seian University of Art & Design http://www.seian.ac.jp/ -13619 JP Seigakuin University http://www.seigakuin-univ.ac.jp/ -13620 JP Seijo University http://www.seijo.ac.jp/ -13621 JP Seikei University http://www.seikei.ac.jp/ -13622 JP Seinan Gakuin University http://www.seinan-gu.ac.jp/ -13623 JP Seisen University http://www.seisen-u.ac.jp/ -13624 JP Seiwa College http://www.seiwa-u.ac.jp/ -13625 JP Sendai University http://www.sendaidaigaku.jp/ -13626 JP Senshu University http://www.senshu-u.ac.jp/ -13627 JP Senzoku Gakuen College http://www.senzoku.ac.jp/ -13628 JP Setsunan University http://www.setsunan.ac.jp/ -13629 JP Shibaura Institute of Technology http://www.shibaura-it.ac.jp/ -13630 JP Shiga University http://www.shiga-u.ac.jp/ -13631 JP Shiga University of Medical Science http://www.shiga-med.ac.jp/ -13632 JP Shikoku Christian College http://www.sg-u.ac.jp/ -13633 JP Shikoku University http://www.shikoku-u.ac.jp/ -13634 JP Shimane University http://www.shimane-u.ac.jp/ -13635 JP Shimane University, Faculty of Medicine http://www.shimane-med.ac.jp/ -13636 JP Shimonoseki City University http://www.shimonoseki-cu.ac.jp/ -13637 JP Shinshu University http://www.shinshu-u.ac.jp/ -13638 JP Shirayuri Women's College http://www.shirayuri.ac.jp/ -13639 JP Shizuoka Prefectural University http://www.u-shizuoka-ken.ac.jp/ -13640 JP Shizuoka Sangyo University http://www.ssu.ac.jp/ -13641 JP Shizuoka University http://www.shizuoka.ac.jp/ -13642 JP Shokei College http://www.shokei-gakuen.ac.jp/shokeicol/ -13643 JP Shonan Institute of Technology http://www.shonan-it.ac.jp/ -13644 JP Showa College of Pharmaceutical Sciences http://www.shoyaku.ac.jp/ -13645 JP Showa University http://www.showa-u.ac.jp/ -13646 JP Showa Women's University http://www.swu.ac.jp/ -13647 JP Shuchiin College http://www.shuchiin.ac.jp/ -13648 JP Shujitsu Women's University http://www.shujitsu.ac.jp/ -13649 JP Shukutoku University http://www.shukutoku.ac.jp/ -13650 JP Shumei University http://www.shumei-u.ac.jp/ -13651 JP Siebold University of Nagasaki http://www.sun.ac.jp/ -13652 JP Soai University http://www.soai.ac.jp/ -13653 JP Soka University http://www.soka.ac.jp/ -13654 JP Sonoda Women's University http://www.sonoda-u.ac.jp/ -13655 JP Sophia University http://www.sophia.ac.jp/ -13656 JP St. Andrew's University http://www.andrew.ac.jp/ -13657 JP St. Luke' s College of Nursing http://www.slcn.ac.jp/ -13658 JP St. Marianna University School of Medicine http://www.marianna-u.ac.jp/ -13659 JP Sugino Women's College http://www.sugino.ac.jp/daiindex.html -13660 JP Sugiyama Jogakuen University http://www.sugiyama-u.ac.jp/ -13661 JP Surugadai University http://www.surugadai.ac.jp/ -13662 JP Suzuka International University http://www.suzuka-iu.ac.jp/ -13663 JP Suzuka University of Medical Science http://www.suzuka-u.ac.jp/ -13664 JP Taisho University http://www.tais.ac.jp/ -13665 JP Takachiho University http://www.takachiho.ac.jp/ -13666 JP Takamatsu University http://www.takamatsu-u.ac.jp/ -13667 JP Takarazuka University of Art and Design http://www.takara-univ.ac.jp/ -13668 JP Takasaki City University of Economics http://www.tcue.ac.jp/ -13669 JP Takushoku University http://www.takushoku-u.ac.jp/ -13670 JP Tama Art University http://www.tamabi.ac.jp/ -13671 JP Tamagawa University http://www.tamagawa.ac.jp/ -13672 JP Tama Institute of Management and Information Sciences http://www.timis.ac.jp/ -13673 JP Teikyo Heisei University http://www.teikyo-u.ac.jp/ -13674 JP Teikyo University of Science and Technology http://www.ntu.ac.jp/ -13675 JP Temple University Japan http://www.tuj.ac.jp/ -13676 JP Tenri University http://www.tenri-u.ac.jp/ -13677 JP Tezukayama Gakuin University http://www.tezuka-gu.ac.jp/ -13678 JP Tezukayama University http://www.tezukayama-u.ac.jp/ -13679 JP Toho College of Music http://www.toho-music.ac.jp/ -13680 JP Toho Gakuen School of Music http://www.tohomusic.ac.jp/ -13681 JP Tohoku Bunka Gakuen University http://www.tbgu.ac.jp/ -13682 JP Tohoku College of Pharmacy http://www.tohoku-pharm.ac.jp/ -13683 JP Tohoku Fukushi University http://www.tfu.ac.jp/ -13684 JP Tohoku Gakuin University http://www.tohoku-gakuin.ac.jp/ -13685 JP Tohoku Institute of Technology http://www.tohtech.ac.jp -13686 JP Tohoku University http://www.tohoku.ac.jp/ -13687 JP Tohoku University of Art and Design http://www.tuad.ac.jp/ -13688 JP Tohoku Women's College http://www.tojo.ac.jp/ -13689 JP Toho University http://www.toho-u.ac.jp/ -13690 JP Tohwa University http://www.tohwa-u.ac.jp/ -13691 JP Toin University of Yokohama http://www.toin.ac.jp/ -13692 JP Tokai Gakuen University http://www.tokaigakuen-u.ac.jp/ -13693 JP Tokai University http://www.u-tokai.ac.jp/ -13694 JP Tokai University Educational System http://www.tokai.ac.jp/ -13695 JP Tokai Women's College http://www.tokaijoshi-u.ac.jp/ -13696 JP Tokiwa University http://www.tokiwa.ac.jp/ -13697 JP Tokoha Gakuen University http://www.tokoha-u.ac.jp/ -13698 JP Tokushima Bunri University http://www.bunri-u.ac.jp/ -13699 JP Tokushima University http://www.tokushima-u.ac.jp/ -13700 JP Tokuyama University http://www.tokuyama-u.ac.jp/ -13701 JP Tokyo College of Music http://www.tokyo-ondai.ac.jp/ -13702 JP Tokyo Denki University http://www.dendai.ac.jp/ -13703 JP Tokyo Dental College http://www.tdc.ac.jp/ -13704 JP Tokyo Engineering University http://www.teu.ac.jp/ -13705 JP Tokyo Gakugei University http://www.u-gakugei.ac.jp/ -13706 JP Tokyo Institute of Polytechnics http://www.t-kougei.ac.jp/ -13707 JP Tokyo Institute of Technology http://www.titech.ac.jp/ -13708 JP Tokyo International University http://www.tiu.ac.jp/ -13709 JP Tokyo Kasei University http://www.tokyo-kasei.ac.jp/ -13710 JP Tokyo Keizai University http://www.tku.ac.jp/ -13711 JP Tokyo Medical and Dental University http://www.tmd.ac.jp/ -13712 JP Tokyo Medical College http://www.tokyo-med.ac.jp/ -13713 JP Tokyo Metropolitan Institute of Technology http://www.tmit.ac.jp/ -13714 JP Tokyo Metropolitan University http://www.metro-u.ac.jp/ -13715 JP Tokyo Metropolitan University of Health Sciences http://www.metro-hs.ac.jp/ -13716 JP Tokyo National University of Fine Arts and Music http://www.geidai.ac.jp/ -13717 JP Tokyo University http://www.u-tokyo.ac.jp/ -13718 JP Tokyo University of Agriculture http://www.nodai.ac.jp/ -13719 JP Tokyo University of Agriculture and Technology http://www.tuat.ac.jp/ -13720 JP Tokyo University of Art and Design http://www.zokei.ac.jp/ -13721 JP Tokyo University of Fisheries http://www.tokyo-u-fish.ac.jp/ -13722 JP Tokyo University of Foreign Studies http://www.tufs.ac.jp/ -13723 JP Tokyo University of Information Sciences http://www.tuis.ac.jp/ -13724 JP Tokyo University of Mercantile Marine http://www.tosho-u.ac.jp/ -13725 JP Tokyo University of Pharmacy and Life Science http://www.toyaku.ac.jp/ -13726 JP Tokyo Woman's Christian University http://www.twcu.ac.jp/ -13727 JP Tokyo Women's College of Physical Education http://www.twcpe.ac.jp/ -13728 JP Tokyo Women's Medial College http://www.twmu.ac.jp/ -13729 JP Tomakomai Komazawa University http://www.t-komazawa.ac.jp/ -13730 JP Tottori University http://www.tottori-u.ac.jp/ -13731 JP Tottori University of Environmental Studies http://www.kankyo-u.ac.jp/ -13732 JP Toyama Medical and Pharmaceutical University http://www.toyama-mpu.ac.jp/ -13733 JP Toyama Prefectural University http://www.pu-toyama.ac.jp/ -13734 JP Toyama University http://www.toyama-u.ac.jp/ -13735 JP Toyama University of International Studies http://www.tuins.ac.jp/ -13736 JP Toyo Eiwa Women's University http://www.toyoeiwa.ac.jp/ -13737 JP Toyo Gakuen University http://www.toyogakuen-u.ac.jp/ -13738 JP Toyohashi University of Technology http://www.tut.ac.jp/ -13739 JP Toyota Technological Institute http://www.toyota-ti.ac.jp/ -13740 JP Toyo University http://www.toyo.ac.jp/ -13741 JP Tsuda College http://www.tsuda.ac.jp/ -13742 JP Tsukuba University http://www.tsukuba.ac.jp/ -13743 JP Tsurumi University http://www.tsurumi-u.ac.jp/ -13744 JP Tsuru University http://www.tsuru.ac.jp/ -13745 JP Ueno Gakuen College http://www.uenogakuen.ac.jp/ -13746 JP United Nations University http://www.unu.edu/ -13747 JP University of Aizu http://www.u-aizu.ac.jp/ -13748 JP University of Bunkyo http://www.u-bunkyo.ac.jp/ -13749 JP University of East Asia http://www.toua-u.ac.jp/ -13750 JP University of Electro-Communications http://www.uec.ac.jp/ -13751 JP University of Marketing and Distribution Sciences http://www.umds.ac.jp/ -13752 JP University of Occupational and Environmental Health, Japan http://www.uoeh-u.ac.jp/ -13753 JP University of Shiga Prefecture http://www.usp.ac.jp/ -13754 JP University of the Air http://www.u-air.ac.jp/ -13755 JP University of the Ryukyus http://www.u-ryukyu.ac.jp/ -13756 JP University of the Sacred Heart Tokyo http://www.u-sacred-heart.ac.jp/ -13757 JP Utsunomiya University http://www.utsunomiya-u.ac.jp/ -13758 JP Wakayama Medical College http://www.wakayama-med.ac.jp/ -13759 JP Wakayama University http://www.wakayama-u.ac.jp/ -13760 JP Wakkanai Hokusei Gakuen University http://www.wakhok.ac.jp/ -13761 JP Wako University http://www.wako.ac.jp/ -13762 JP Waseda University http://www.waseda.ac.jp/ -13763 JP Wayo Women's University http://www.wayo.ac.jp/ -13764 JP Women's College of Fine Arts http://www.joshibi.ac.jp/ -13765 JP Yamagata University http://www.yamagata-u.ac.jp/ -13766 JP Yamaguchi Prefectural University http://www.yamaguchi-pu.ac.jp/ -13767 JP Yamaguchi University http://www.yamaguchi-u.ac.jp/ -13768 JP Yamanashi Gakuin University http://www.ygu.ac.jp/ -13769 JP Yamanashi Medical University http://www.yamanashi-med.ac.jp/ -13770 JP Yamanashi University http://www.yamanashi.ac.jp/ -13771 JP Yasuda Women's University http://www.yasuda-u.ac.jp/ -13772 JP Yokkaichi University http://www.yokkaichi-u.ac.jp/ -13773 JP Yokohama City University http://www.yokohama-cu.ac.jp/ -13774 JP Yokohama College of Commerce http://www.shodai.ac.jp/ -13775 JP Yokohama National University http://www.ynu.ac.jp/ -13776 KE Adventist University of Africa http://www.aua.ac.ke/ -13777 KE Africa International University http://www.aiu.ac.ke/ -13778 KE Africa Nazarene University http://www.anu.ac.ke/ -13779 KE Aga Khan University http://www.aku.edu/ -13780 KE Catholic University of Eastern Africa http://www.cuea.edu/ -13781 KE Chuka University http://www.chuka.ac.ke/ -13782 KE Daystar University http://www.daystar.ac.ke/ -13783 KE Dedan Kimathi University of Technology http://www.dkut.ac.ke/ -13784 KE Egerton University http://www.egerton.ac.ke/ -13785 KE Great Lakes University of Kisumu http://www.gluk.ac.ke/ -13786 KE Gretsa Universtiy http://www.gretsauniversity.ac.ke/ -13787 KE Inoorero University http://www.iu.ac.ke/ -13788 KE Jaramogi Oginga Odinga University of Science and Technology http://www.jooust.ac.ke/ -13789 KE Jomo Kenyatta University of Agriculture and Technology http://www.jkuat.ac.ke/ -13790 KE Kabarak University http://www.kabarak.ac.ke/ -13791 KE Karatina University http://www.karatinauniversity.ac.ke/ -13792 KE Kenya College of Accountancy http://www.kca.ac.ke/ -13793 KE Kenya Medical Training College http://www.kmtc.ac.ke/ -13794 KE Kenya Methodist University http://www.kemu.ac.ke/ -13795 KE Kenyatta University http://www.ku.ac.ke/ -13796 KE Kiriri Womens University of Science and Technology http://www.kwust.ac.ke/ -13797 KE Kisii University http://www.kisiiuniversity.ac.ke/ -13798 KE Laikipia University http://www.laikipia.ac.ke/ -13799 KE Maasai Mara University http://www.mmarau.ac.ke/ -13800 KE Maseno University http://www.maseno.ac.ke/ -13801 KE Masinde Muliro University of Science and Technology http://www.mmust.ac.ke/ -13802 KE Meru University of Science and Technology http://www.must.ac.ke/ -13803 KE Moi University http://www.mu.ac.ke/ -13804 KE Mount Kenya University http://www.mku.ac.ke/ -13805 KE Multimedia University of Kenya http://www.mmu.ac.ke/ -13806 KE Nairobi Institute of Business Studies http://www.nibs.ac.ke/ -13807 KE Nairobi Technical Training Institute http://www.ntti.ac.ke/ -13808 KE Pan Africa Christian University http://www.pacuniversity.ac.ke/ -13809 KE Pioneer International University http://www.piu.ac.ke/ -13810 KE Presbyterian University of East Africa http://www.puea.ac.ke/ -13811 KE Pwani University http://www.pu.ac.ke/ -13812 KE Riara University School of Business and Law http://www.riarauniversity.ac.ke/ -13813 KE Scott Christian University http://www.scott.ac.ke/ -13814 KE South Eastern Kenya University http://www.seku.ac.ke/ -13815 KE St. Pauls University http://www.spu.ac.ke/ -13816 KE Strathmore University http://www.strathmore.edu/ -13817 KE Technical University of Kenya http://www.tukenya.ac.ke/ -13818 KE Technical University of Mombasa http://www.tum.ac.ke/ -13819 KE United States International University http://www.usiu.ac.ke/ -13820 KE University of Eastern Africa, Baraton http://www.ueab.ac.ke/ -13821 KE University of Eldoret http://www.uoeld.ac.ke/ -13822 KE University of Kabianga http://www.kabianga.ac.ke/ -13823 KE University of Nairobi http://www.uonbi.ac.ke/ -13824 KE Uzima University College http://www.uzimauniversity.ac.ke/ -13825 KE Zetech College http://www.zetechcollege.com/ -13826 KG American University of Central Asia http://www.auca.kg/ -13827 KG Asian Medical Institute http://www.asmi.edu.kg/ -13828 KG Bishkek Humanities University http://www.bhu.kg/ -13829 KG International Ataturk Alatoo University http://www.iaau.edu.kg/ -13830 KG International University of Kyrgyzstan http://www.iuk.kg/ -13831 KG Jalalabad State University Kyrgyzstan http://www.jasu.edu.kg/ -13832 KG Kyrgyz National Agrarian University http://www.knau.kg/ -13833 KG Kyrgyz National University http://www.university.kg/ -13834 KG Kyrgyz Russian Slavic University http://www.krsu.edu.kg/ -13835 KG Kyrgyz State Technical University http://www.kstu.kg/ -13836 KG Kyrgyz State University of Construction, Transportation and Architecture http://www.ksucta.kg/ -13837 KG Kyrgyz Turkish Manas University http://www.manas.kg/ -13838 KG Medical Faculty, Osh State University http://www.oshmed.com/ -13839 KH Angkor University http://www.angkor.edu.kh/ -13840 KH Asia Europe University http://www.aeu.edu.kh/ -13841 KH Build Bright University http://www.bbu.edu.kh/ -13842 KH Cambodian Mekong University http://www.mekong.edu.kh/ -13843 KH Cambodia University of Specialties http://www.cus.edu.kh/ -13844 KH Chamreun University of Poly Technology http://www.cup.edu.kh/ -13845 KH International University http://www.iu.edu.kh/ -13846 KH National Institute of Education http://www.ine.edu.kh/ -13847 KH National University of Management http://www.num.edu.kh/ -13848 KH Norton University http://www.norton.edu.kh/ -13849 KH Pannnasatra University of Cambodia http://www.puc.edu.kh/ -13850 KH Royal University of Agriculture http://www.rua.edu.kh/ -13851 KH Royal University of Fine Arts http://www.rufa.edu.kh/ -13852 KH Royal University of Law and Economics http://www.rule.edu.kh/ -13853 KH Royal University of Phnom Penh http://www.rupp.edu.kh/ -13854 KH Svey Reong University http://www.sru.edu.kh/ -13855 KH University of Cambodia http://www.uc.edu.kh/ -13856 KH University of Health and Science http://www.univ-sante.edu.kh/ -13857 KH University of Technology Phnom Penh http://www.utpp.edu.kh/ -13858 KH Western University http://www.western.edu.kh/ -13859 KH Zaman University http://www.zamanuniversity.edu.kh/ -13860 KN International University for Graduate Studies http://www.iugrad.edu.kn/ -13861 KN Ross University Caribbean School of Veterinary Medicine http://www.rossu.edu/veterinary-school/ -13862 KN St Theresa's Medical University http://www.stmu.org/ -13863 KN University of Silvaner http://www.unisilvaner.info/ -13864 KN Windsor University School of Medicine http://www.windsor.edu/ -13865 KP Pyongyang University of Science and Technology http://www.pust.net/ -13866 KR Ajou University http://www.ajou.ac.kr/ -13867 KR Andong National University http://www.andong.ac.kr/ -13868 KR Catholic University of Korea http://www.cuk.ac.kr/ -13869 KR Catholic University of Pusan http://www.cup.ac.kr/ -13870 KR Catholic University of Taegu-Hyosung http://www.cataegu.ac.kr/ -13871 KR Changwon National University http://www.changwon.ac.kr/ -13872 KR Cheju National University http://www.cheju.ac.kr/ -13873 KR Cheju National University of Education http://www.cheju-e.ac.kr/ -13874 KR Chinju National University http://www.chinju.ac.kr/ -13875 KR Chinju National University of Education http://www.chinju-e.ac.kr/ -13876 KR Chodang University http://www.chodang.ac.kr/ -13877 KR Chonbuk National University http://www.chonbuk.ac.kr/ -13878 KR Chonbuk Sanup University of Technology (Howon University) http://www.howon.ac.kr/ -13879 KR Chongju National University of Education http://www.chongju-e.ac.kr/ -13880 KR Chongju University http://www.chongju.ac.kr/ -13881 KR Chonju National University of Education http://www.chonju-e.ac.kr/ -13882 KR Chonnam National University http://www.chonnam.ac.kr/ -13883 KR Chosun University http://www.chosun.ac.kr/ -13884 KR Chunchon National University of Education http://www.cnue-e.ac.kr/ -13885 KR Chung-Ang University http://www.cau.ac.kr/ -13886 KR Chungbuk National University http://www.chungbuk.ac.kr/ -13887 KR Chung-Ju National University http://www.chungju.ac.kr/ -13888 KR Chungnam National University http://www.chungnam.ac.kr/ -13889 KR Daebul University http://www.daebul.ac.kr/ -13890 KR Dankook University http://www.dankook.ac.kr/ -13891 KR Dong-A University http://www.donga.ac.kr/ -13892 KR Dongduk Women's University http://www.dongduk.ac.kr/ -13893 KR Dong Eui University http://www.dongeui.ac.kr/ -13894 KR Dongguk University http://www.dongguk.ac.kr/ -13895 KR Dongseo University http://www.dongseo.ac.kr/ -13896 KR Dongshin University http://www.dongshinu.ac.kr/ -13897 KR Dong Yang University of Technology http://www.dytc.ac.kr/ -13898 KR Duksung Women's University http://www.duksung.ac.kr/ -13899 KR Ewha Women's University http://www.ewha.ac.kr/ -13900 KR Gwangju Catholic College http://www.gjcatholic.ac.kr/ -13901 KR Gyeongju University http://www.gyeongju.ac.kr/ -13902 KR Gyeongsang National University http://www.gsnu.ac.kr/ -13903 KR Halla University http://www.halla.ac.kr/ -13904 KR Hallym University http://www.hallym.ac.kr/ -13905 KR Hankuk Aviation University http://www.hangkong.ac.kr/ -13906 KR Hankuk University of Foreign Studies http://www.hufs.ac.kr/ -13907 KR Hankyong National University http://www.hknu.ac.kr/ -13908 KR Hannam University http://www.hannam.ac.kr/ -13909 KR Hansei University http://www.hansei.ac.kr/ -13910 KR Hanseo University http://www.hanseo.ac.kr/ -13911 KR Hanshin University http://www.hanshin.ac.kr/ -13912 KR Hansung University Seoul http://www.hansung.ac.kr/ -13913 KR Hanyang University http://www.hanyang.ac.kr/ -13914 KR Honam University http://www.honam.ac.kr/ -13915 KR Hongik University http://www.hongik.ac.kr/ -13916 KR Hoseo University http://www.hoseo.ac.kr/ -13917 KR Hyupsung University http://www.hyupsung.ac.kr/ -13918 KR Inchon National University of Education http://www.inchon-e.ac.kr/ -13919 KR Inchon University http://www.inchon.ac.kr/ -13920 KR Information and Communications University http://www.icu.ac.kr/ -13921 KR Inha University http://www.inha.ac.kr/ -13922 KR Inje University http://www.inje.ac.kr/ -13923 KR Jeonju University http://www.jeonju.ac.kr/ -13924 KR Kangnam University http://www.kangnam.ac.kr/ -13925 KR Kangnung National University http://www.kangnung.ac.kr/ -13926 KR Kangwon National University http://www.kangwon.ac.kr/ -13927 KR Kaya University http://www.kaya.ac.kr/ -13928 KR KDI School of Public Policy and Management http://www.kdischool.ac.kr/ -13929 KR Keimyung University http://www.keimyung.ac.kr/ -13930 KR Kongju National University http://www.kyongju.ac.kr/ -13931 KR Kongju National University of Education http://www.kongju-e.ac.kr/ -13932 KR Konkuk University http://www.konkuk.ac.kr/ -13933 KR Konyang University http://www.konyang.ac.kr/ -13934 KR Kookmin University http://www.kookmin.ac.kr/ -13935 KR Korea Advanced Institute of Science & Technology http://www.kaist.ac.kr/ -13936 KR Korea Maritime University http://www.kmaritime.ac.kr/ -13937 KR Korea National Open University http://www.knou.ac.kr/ -13938 KR Korea National University of Arts http://www.knua.ac.kr/ -13939 KR Korea National University of Education http://www.knue.ac.kr/ -13940 KR Korea National University of Physical Education http://www.knupe.ac.kr/ -13941 KR Korea University http://www.korea.ac.kr/ -13942 KR Kosin University http://www.kosin.ac.kr/ -13943 KR Kumoh National University of Technology http://www.kumoh.ac.kr/ -13944 KR Kunsan National University http://www.kunsan.ac.kr/ -13945 KR Kwan Dong University http://www.kwandong.ac.kr/ -13946 KR Kwangju National University of Education http://www.kwangju-e.ac.kr/ -13947 KR Kwangju University http://www.kwangju.ac.kr/ -13948 KR Kwangwoon University http://www.kwangwoon.ac.kr/ -13949 KR Kyonggi University http://www.kyonggi.ac.kr/ -13950 KR Kyongju University http://www.kyongju.ac.kr/ -13951 KR Kyunghee University http://www.kyunghee.ac.kr/ -13952 KR Kyungil University http://www.kyungil.ac.kr/ -13953 KR Kyungnam University http://www.kyungnam.ac.kr/ -13954 KR Kyungpook National University http://www.kyungpook.ac.kr/ -13955 KR Kyungsung University http://www.kyungsung.ac.kr/ -13956 KR Kyungwon University http://www.kyungwon.ac.kr/ -13957 KR Miryang National University http://www.miryang.ac.kr/ -13958 KR Mokpo National Maritime University http://www.mmu.ac.kr/ -13959 KR Mokpo National University http://www.mokpo.ac.kr/ -13960 KR Mokwon University Taejon http://www.mokwon.ac.kr/ -13961 KR Myongji University http://www.myongji.ac.kr/ -13962 KR Paichai University http://www.paichai.ac.kr/ -13963 KR Pohang University of Science and Technology http://www.postech.ac.kr/ -13964 KR Pukyong National University http://www.pknu.ac.kr/ -13965 KR Pusan National University http://www.pusan.ac.kr/ -13966 KR Pusan National University of Education http://www.pusan-e.ac.kr/ -13967 KR Pusan University of Foreign Studies http://www.pufs.ac.kr/ -13968 KR Pusan Women's University http://www.pwc.ac.kr/ -13969 KR Pyongtaek University http://www.ptuniv.ac.kr/ -13970 KR Sahmyook University http://www.syu.ac.kr/ -13971 KR Samchok National University http://www.samchok.ac.kr/ -13972 KR Sang Ji University http://www.sangji.ac.kr/ -13973 KR Sang Myung University http://www.sangmyung.ac.kr/ -13974 KR Sejong University http://www.sejong.ac.kr/ -13975 KR Semyung University http://www.semyung.ac.kr/ -13976 KR Seokyeong University http://www.skuniv.ac.kr/ -13977 KR Seokyeong University http://www.seokyeong.ac.kr/ -13978 KR Seonam University http://www.seonam.ac.kr/ -13979 KR Seoul City University http://www.uos.ac.kr/ -13980 KR Seoul National University http://www.snu.ac.kr/ -13981 KR Seoul National University of Education http://www.seoul-e.ac.kr/ -13982 KR Seoul National University of Technology http://www.snut.ac.kr/ -13983 KR Seoul Teological University http://www.stu.ac.kr/ -13984 KR Seoul Women's University http://www.swu.ac.kr/ -13985 KR Seowon University http://www.seowon.ac.kr/ -13986 KR Silla University http://www.silla.ac.kr/ -13987 KR Sogang University http://www.sogang.ac.kr/ -13988 KR Sookmyung Women's University http://www.sookmyung.ac.kr/ -13989 KR Soonchunhyang University http://www.sch.ac.kr/ -13990 KR Soongsil University http://www.soongsil.ac.kr/ -13991 KR Sunchon National University http://www.sunchon.ac.kr/ -13992 KR Sungkyul University http://www.sungkyul.ac.kr/ -13993 KR Sung Kyun Kwan University http://www.skku.ac.kr/ -13994 KR Sungshin Women's University http://www.sungshin.ac.kr/ -13995 KR Sunmoon University http://www.sunmoon.ac.kr/ -13996 KR Suwon Catholic University http://www.suwoncatholic.ac.kr/ -13997 KR Suwon University http://www.suwon.ac.kr/ -13998 KR Taegu National University of Education http://www.taegu-e.ac.kr/ -13999 KR Taegu University http://www.taegu.ac.kr/ -14000 KR Taejon National University of Technology http://www.tnut.ac.kr/ -14001 KR Taejon University http://www.taejon.ac.kr/ -14002 KR Taeshin Christian University http://www.taeshin.ac.kr/ -14003 KR Tongmyung University of Information Technology http://www.tit.ac.kr/ -14004 KR Ulsan University http://www.ulsan.ac.kr/ -14005 KR University of Science and Technology http://www.ust.ac.kr/ -14006 KR Wonkwang University http://www.wonkwang.ac.kr/ -14007 KR Woosuk University http://www.woosuk.ac.kr/ -14008 KR Yeungnam University http://www.yeungnam.ac.kr/ -14009 KR Yonsei University http://www.yonsei.ac.kr/ -14010 KR Yosu National University http://www.yosu.ac.kr/ -14011 KW American University of Kuwait http://www.auk.edu.kw/ -14012 KW American University of Middle East http://www.aum.edu.kw/ -14013 KW Arab Open University, Kuwait Branch http://www.aou.edu.kw/ -14014 KW Australlian College of Kuwait http://www.ackonline.com/ -14015 KW Gulf University for Science and Technology http://www.gust.edu.kw/ -14016 KW Kuwait International Law School http://www.kilaw.edu.kw/ -14017 KW Kuwait Maastricht Business School http://www.kmbs.edu.kw/ -14018 KW Kuwait University http://www.kuniv.edu.kw/ -14019 KY International College of the Cayman Islands http://www.icci.edu.ky/ -14020 KY St. Matthews University http://www.stmatthews.edu/ -14021 KZ Abai State University http://www.kaznpu.kz/ -14022 KZ Abylai Khan University http://www.ablaikhan.kz/ -14023 KZ Aktau State University http://www.aktsu.kz/ -14024 KZ Al-Farabi Kazakh National University http://www.kaznu.kz/ -14025 KZ Atyrau State University http://www.atgu.kz/ -14026 KZ East Kazakhstan State University http://www.vkgu.kz/ -14027 KZ East Kazakstan State Technical University http://www.ektu.kz/ -14028 KZ Eurasian Institute of market http://www.eurazir.kz/ -14029 KZ International Kazakh-Turkish University http://www.turkistan.kz/ -14030 KZ Karaganda State Buketov University http://www.ksu.kz/ -14031 KZ Karaganda State Technical University http://www.kstu.kz/ -14032 KZ Kazak American University http://www.kau.kz/ -14033 KZ Kazakh British Technical University http://www.kbtu.kz/ -14034 KZ Kazakhstan Institute of Management, Economics, and Strategic Research http://www.kimep.kz/ -14035 KZ Kazak National Technical University http://www.kazntu.kz/ -14036 KZ Kazak State University of Agriculture http://www.agriun.almaty.kz/ -14037 KZ Kostanai State University http://www.ksu.kst.kz/ -14038 KZ L.N. Gumilyov Eurasian National University http://www.enu.kz/ -14039 KZ North Kazakhstan State University http://www.nkzu.kz/ -14040 KZ Pavlodar University http://www.psu.kz/ -14041 KZ Semey State Medical University http://www.sgma.kz/ -14042 KZ Semey State University http://www.semgu.kz/ -14043 KZ Suleyman Demirel University http://www.sdu.edu.kz/ -14044 KZ Turar Ryskulov Kazakh Economic University http://www.kazeu.kz/ -14045 KZ University of International Business http://www.uib.kz/ -14046 KZ Western Kazakhstan Agricultural University http://www.wkau.kz/ -14047 KZ Zhetysu State University http://www.zhgu.kz/ -14048 KZ Zhezkazgan Baikonurov University http://www.zhezu.kz/ -14049 LA National University of Laos http://www.nuol.edu.la/ -14050 LA Soutsaka Institute of management and Technology http://www.simt.edu.la/ -14051 LB Al Imam Al-Ouzai University http://www.wakf.org/ -14052 LB Al-Islah University http://www.islahonline.org/ -14053 LB Al-Manar University http://www.mut.edu.lb/ -14054 LB American University College of Technology http://www.aut.edu/ -14055 LB American University of Beirut http://www.aub.edu.lb/ -14056 LB American University of Science and Technology http://www.aust.edu.lb/ -14057 LB Arab Open University http://www.arabou-lb.edu.lb/ -14058 LB Arts, Sciences and Technology University http://www.aul.edu.lb/ -14059 LB Balamand University http://www.balamand.edu.lb/ -14060 LB Beirut Arab University http://www.bau.edu.lb/ -14061 LB Business & Computer University College http://www.hu.edu.lb/ -14062 LB Centre Universitaire de Technologie http://www.cut.edu.lb/ -14063 LB Global University http://www.gu.edu.lb/ -14064 LB Haigazian University http://www.haigazian.edu.lb/ -14065 LB Hariri Canadian University http://www.hariricanadian.edu.lb/ -14066 LB Holy Spirit University of Kaslik http://www.usek.edu.lb/ -14067 LB Jinan University http://www.jinan.edu.lb/ -14068 LB Lebanese American University http://www.lau.edu.lb/ -14069 LB Lebanese International University http://www.liu.edu.lb/ -14070 LB Lebanese University http://www.ul.edu.lb/ -14071 LB Matn University http://www.matnu.edu.lb/ -14072 LB Near East School of Theology http://www.theonest.edu.lb/ -14073 LB Notre Dame University http://www.ndu.edu.lb/ -14074 LB St. Joseph University Beirut http://www.usj.edu.lb/ -14075 LC Spartan University of Health Sciences http://www.spartanmed.org/ -14076 LI Internationle Akademie für Philosophie http://www.iap.li/ -14077 LI Universität Liechtenstein http://www.uni.li/ -14078 LK Arthur C Clarke Institute of Modern Technologies http://www.accimt.ac.lk/ -14079 LK Buddhasravaka Bhikshu University http://www.bbu.ac.lk/ -14080 LK Buddhist and Pali University of Sri Lanka http://www.bpu.ac.lk/ -14081 LK Eastern University of Sri Lanka http://www.esn.ac.lk/ -14082 LK Horizon College of Business and Technology http://www.horizoncampus.edu.lk/ -14083 LK Kotelawala Defence University http://www.kdu.ac.lk/ -14084 LK Open University of Sri Lanka http://www.ou.ac.lk/ -14085 LK Postgraduate Institute of Agriculture (PGIA) http://www.pgia.ac.lk/ -14086 LK Postgraduate Institute of Pali & Buddhist Studies (University of Kelaniya) http://www.kln.ac.lk/institutes/pgipbs/ -14087 LK Rajarata University of Sri Lanka http://www.rjt.ac.lk/ -14088 LK Sabaragamuwa University of Sri Lanka http://www.sab.ac.lk/ -14089 LK South Asian Institute of Technology And Medicine (SAITM) http://www.saitm.edu.lk/ -14090 LK South Eastern University of Sri Lanka http://www.seu.ac.lk/ -14091 LK Sri Lanka Institute of Advanced Technical Education http://www.sliate.net/ -14092 LK Sri Lanka Institute of Information Technology (SLIT) http://www.sliit.lk/ -14093 LK University of Colombo http://www.cmb.ac.lk/ -14094 LK University of Jaffna http://www.jfn.ac.lk/ -14095 LK University of Kelaniya http://www.kln.ac.lk/ -14096 LK University of Moratuwa http://www.mrt.ac.lk/ -14097 LK University of Peradeniya http://www.pdn.ac.lk/ -14098 LK University of Ruhuna http://www.ruh.ac.lk/ -14099 LK University of Sri Jayawardenapura http://www.sjp.ac.lk/ -14100 LK University of the Visual & Performing Arts http://www.vpa.ac.lk/ -14101 LK Uva Wellassa University http://www.uwu.ac.lk/ -14102 LK Wayamba University of Sri Lanka http://www.wyb.ac.lk/ -14103 LR University of Liberia http://www.universityliberia.org/ -14104 LS National University of Lesotho http://www.nul.ls/ -14105 LT International School of Management http://www.ism.lt/ -14106 LT Kaunas Medical Academy http://info.kma.lt/ -14107 LT Kaunas University of Technology http://www.ktu.lt/ -14108 LT Klaipeda University http://www.ku.lt/ -14109 LT Lithuania Christian College http://www.lcc.lt/ -14110 LT Lithunian Academy of Music and Theatre http://www.lmta.lt/ -14111 LT Lithunian Institute of Physical Education http://www.lkka.lt/ -14112 LT Lithunian University of Agriculture http://www.lzua.lt/ -14113 LT Lithunian Veterinary Academy http://www.lva.lt/ -14114 LT Military academy of Lithuania http://www.lka.lt/ -14115 LT Mykolo Romerio university http://www.mruni.eu/ -14116 LT Siauliai University http://www.su.lt/ -14117 LT Vilnius Academy of Arts http://www.mch.mii.lt/more/vda/ -14118 LT Vilnius Gediminas Technical University http://www.vgtu.lt/ -14119 LT Vilnius Pedagogical University http://www.vpu.lt/ -14120 LT Vilnius University http://www.vu.lt/ -14121 LT Vytautas Magnus University http://www.vdu.lt/ -14122 LU International University Institute of Luxembourg http://www.iuil.lu/ -14123 LU University of Luxemburg http://www.uni.lu/ -14124 LV Baltic International Academy http://www.bsa.edu.lv/ -14125 LV Daugavpils University http://www.dau.lv/ -14126 LV Higher School of Psychology http://www.psy.lv/ -14127 LV Latvian Academy of Arts http://www.lma.lv/ -14128 LV Latvian Academy of Culture http://www.lka.edu.lv/ -14129 LV Latvian Academy of Music http://www.lmuza.lv/academy/ -14130 LV Latvian Academy of Sports Education http://lspa.lanet.lv/ -14131 LV Latvian Maritime Academy http://www.lama.lv/ -14132 LV Latvian University of Agriculture http://www.llu.lv/ -14133 LV Liepaja Pedagogical Higher School http://www.cs.lpu.lv/ -14134 LV Medical Academy of Latvia http://www.aml.lv/ -14135 LV National Defence Academy of Latvia http://www.mil.lv/ -14136 LV Police Academy of Latvia http://www.polak.edu.lv/ -14137 LV Rezekne Higher School http://www.ru.lv/ -14138 LV Riga Aviation University http://www.rau.lv/ -14139 LV Riga Teacher Training and Educational Management Academy http://www.rpiva.lv/ -14140 LV Riga Technical University http://www.rtu.lv/ -14141 LV School of Business and Finance http://www.ba.lv/ -14142 LV Stockholm School of Economics in Riga http://www.sseriga.edu.lv/ -14143 LV Transport and Telecommunication Institute http://www.tsi.lv/ -14144 LV University of Latvia http://www.lu.lv/ -14145 LV Vidzeme University College http://www.va.lv/ -14146 LY Al-Asmarya University for Islamic Studies http://www.asmarya.edu.ly/ -14147 LY Al-Jabal Al-Gharbi University http://www.jgu.edu.ly/ -14148 LY Elmergib University http://www.elmergib.edu.ly/ -14149 LY Libyan International Medical University (LIMU) http://www.limu.edu.ly/ -14150 LY Libya Open University http://www.libopenuniv-edu.org/ -14151 LY Omar Al-Mukhtar University http://www.omu.edu.ly/ -14152 LY Sebha University http://www.sebhau.edu.ly/ -14153 LY Sirte University http://www.su.edu.ly/ -14154 LY University of Benghazi http://www.uob.edu.ly/ -14155 LY University of Tripoli http://www.uot.edu.ly/ -14156 LY Zawiya University http://www.zu.edu.ly/ -14157 MA Al Akhawayn University http://www.aui.ma/ -14158 MA Ecole des Hautes Etudes Commerciales MAROC http://www.hec.ac.ma/ -14159 MA Ecole des Hautes Etudes en Gestion Informatique et Communication http://www.edhec.ac.ma/ -14160 MA Ecole Mohammadia d'Ingénieurs http://www.emi.ac.ma/ -14161 MA Ecole National d'Agriculture de Meknes http://www.enameknes.ac.ma/ -14162 MA Ecole Nationale d'Architecture http://www.archi.ac.ma/ -14163 MA Ecole Supérieure de Commerce et des Affaires http://www.esca.ac.ma/ -14164 MA Ecole Superieure des Télécommunications http://www.suptelecom.net.ma/ -14165 MA Ecole Supérieure d'Informatique et de Management http://www.hightech.edu/ -14166 MA Institut des Hautes Etudes de Management http://www.hem.ac.ma/ -14167 MA Institute of Management and Business Technology http://www.imbt.ma/ -14168 MA Institut National des Postes et Télécommunications http://www.inpt.ac.ma/ -14169 MA Institut Supérieur de Commerce et d'Administration des Entreprises http://www.groupeiscae.ma/ -14170 MA Institut Supérieur de Management et de Technologie (MATCI) http://www.matci.ac.ma/ -14171 MA International Institute for Higher Education http://www.iihem.ac.ma/ -14172 MA ISFORT - Institut de Formation en Technologie Alimentaire http://www.isfort.ac.ma/ -14173 MA Université Abdelmalek Essadi http://www.uae.ac.ma/ -14174 MA Université Cadi Ayyad http://www.ucam.ac.ma/ -14175 MA Université Chouaib Doukkali http://www.ucd.ac.ma/ -14176 MA Université Hassan Ier - Settat http://www.uh1.ac.ma/ -14177 MA Université Hassan II - Aïn Chock http://www.rectorat-uh2c.ac.ma/ -14178 MA Université Hassan II - Mohammadia http://www.uh2m.ac.ma/ -14179 MA Université Ibn Toufail http://www.univ-ibntofail.ac.ma/ -14180 MA Université Ibn Zohr Agadir http://www.esta.ac.ma/ -14181 MA Université Mohammed Ier http://www.univ-oujda.ac.ma/ -14182 MA Université Mohammed V - Agdal http://www.um5a.ac.ma/ -14183 MA Université Mohammed V - Souissi http://www.um5s.ac.ma/ -14184 MA Université Moulay Ismail Meknès http://www.rumi.ac.ma/ -14185 MA Université Sidi Mohammed Ben Abdellah http://www.usmba.ac.ma/ -14186 MC University of Southern Europe (Monaco Business School) http://www.riviera.fr/usehome.htm -14187 MD Academy of Economic Studies of Moldova http://www.ase.md/ -14188 MD Balti State University "Alecu Russo" http://www.usb.md/ -14189 MD Comrat State University http://www.kdu.md/ -14190 MD Free International University of Moldova http://www.ulim.md/ -14191 MD Moldova Cooperative Trade University http://www.uccm.md/ -14192 MD Moldova State Agricultural University http://www.uasm.md/ -14193 MD Moldova State University http://www.usm.md/ -14194 MD Moldova State University of Medicine and Pharmacy "N. Testemitsanu" http://www.usmf.md/ -14195 MD Moldova Technical University http://www.utm.md/ -14196 MD Pedagogical State University "Ion Creanga" http://upm.moldnet.md/ -14197 MD Tiraspol State University http://www.ust.md/ -14198 MD University of Applied Sciences of Moldova http://www.usam.md/ -14199 ME University of Montenegro http://www.ucg.cg.ac.yu/ -14200 MG Université d'Antananarivo http://www.univ-antananarivo.mg/ -14201 MG Université d'Antsiranana http://www.univ-antsiranana.mg/ -14202 MG Université de Fianarantsoa http://www.univ-fianar.mg/ -14203 MG Université de Mahajanga http://www.univ-mahajanga.mg/ -14204 MG Université de Toamasina http://www.univ-toamasina.mg/ -14205 MG Université de Toliary http://www.univ-toliara.mg/ -14206 MK FON University http://www.fon.edu.mk/ -14207 MK South East European University http://www.seeu.edu.mk/ -14208 MK State University of Tetova http://www.unite.edu.mk/ -14209 MK St.Cyril and Methodius University http://www.ukim.edu.mk/ -14210 MK St.Kliment Ohridski University http://www.uklo.edu.mk/ -14211 MK University for Information Science and Technology "St. Paul The Apostle" http://www.uist.edu.mk/ -14212 MK University Goce Delcev http://www.ugd.edu.mk/ -14213 ML Université de Bamako http://www.ml.refer.org/u-bamako/ -14214 MM International Theravada Buddhist Missionary University http://www.itbmu.org.mm/ -14215 MM Mandalay Technological University http://www.most.gov.mm/mtu/ -14216 MM Myanmar Aerospace Engineering University http://www.most.gov.mm/maeu/ -14217 MM Technological University (Banmaw) http://www.most.gov.mm/banmawtu/ -14218 MM Technological University (Dawei) http://www.most.gov.mm/daweitu/ -14219 MM Technological University (Hinthada) http://www.most.gov.mm/hinthadatu/ -14220 MM Technological University (Hmawbi) http://www.most.gov.mm/hmawbitu/ -14221 MM Technological University (Hpaan) http://www.most.gov.mm/hpaantu/ -14222 MM Technological University (Kalay) http://www.most.gov.mm/kalaytu/ -14223 MM Technological University (Kyaing Tong) http://www.most.gov.mm/kyaingtongtu/ -14224 MM Technological University (Kyaukse) http://www.most.gov.mm/kyauksetu/ -14225 MM Technological University (Lashio) http://www.most.gov.mm/lashiotu/ -14226 MM Technological University (Loikaw) http://www.most.gov.mm/loikawtu/ -14227 MM Technological University (Magway) http://www.most.gov.mm/magwaytu/ -14228 MM Technological University (Mandalay) http://www.most.gov.mm/mdytu/ -14229 MM Technological University (Maubin) http://www.most.gov.mm/maubintu/ -14230 MM Technological University (Mawlamyaing) http://www.most.gov.mm/mawlamyaingtu/ -14231 MM Technological University (Meikhtila) http://www.most.gov.mm/meikhtilatu/ -14232 MM Technological University (Monywa) http://www.most.gov.mm/monywatu/ -14233 MM Technological University (Myeik) http://www.most.gov.mm/myeiktu/ -14234 MM Technological University (Myitkyina) http://www.most.gov.mm/myitkyinatu/ -14235 MM Technological University (Pakokku) http://www.most.gov.mm/pakokkutu/ -14236 MM Technological University (Pathein) http://www.most.gov.mm/patheintu/ -14237 MM Technological University (Pinlon) http://www.most.gov.mm/pinlontu/ -14238 MM Technological University (Pyay) http://www.most.gov.mm/ptu/ -14239 MM Technological University (Sittwe) http://www.most.gov.mm/sittwetu/ -14240 MM Technological University (Taunggyi) http://www.most.gov.mm/taunggyitu/ -14241 MM Technological University (Taungoo) http://www.most.gov.mm/taungootu/ -14242 MM Technological University (Thanlyin) http://www.most.gov.mm/thanlyintu/ -14243 MM Technological University (West Yangon) http://www.most.gov.mm/wytu/ -14244 MM Technological University (Yangon) http://www.most.gov.mm/ytu/ -14245 MM University of Computer Studies, Yangon http://www.ucsy.edu.mm/ -14246 MM University of Medicine 1, Yangon http://www.um1ygn.edu.mm/ -14247 MM University of Medicine Magway http://www.ummg.edu.mm/ -14248 MN Health sciences University of Mongolia http://www.hsum-ac.mn/ -14249 MN Institute of Commerce and Business http://www.icb.edu.mn/ -14250 MN Mongolian National University http://www.num.edu.mn/ -14251 MN Mongolian State University of Agriculture http://www.msua.edu.mn/ -14252 MN Mongolian State University of Arts and Culture http://www.msuac.edu.mn/ -14253 MN Mongolian State University of Education http://www.msue.edu.mn/ -14254 MN Mongolian University of Science and Technology http://www.must.edu.mn/ -14255 MN Orkhon University http://www.orkhon.edu.mn/ -14256 MN Ulaanbaatar University http://www.ulaanbaatar.edu.mn/ -14257 MN University of the Humanities http://www.humanities.mn/ -14258 MO Macau Polytechnic Institute http://www.ipm.edu.mo/ -14259 MO University of Macau http://www.umac.mo/ -14260 MO University of Saint Joseph http://www.usj.edu.mo/ -14261 MQ Université des Antilles et de la Guyane http://www.univ-ag.fr/ -14262 MR Université de Nouakchott http://www.univ-nkc.mr/ -14263 MS University of Science, Arts and Technology http://www.usat.ms/ -14264 MT European Institute of Education http://www.eieonline.com/ -14265 MT International Tourism Institute http://www.itismalta.com/ -14266 MT University of Malta http://www.um.edu.mt/ -14267 MU University of Mauritius http://www.uom.ac.mu/ -14268 MU University of Technology http://www.utm.ac.mu/ -14269 MV Cyryx College http://www.cyryxcollege.edu.mv/ -14270 MV Maldives National University http://www.mnu.edu.mv/ -14271 MV Mandhu College http://www.mandhu.com/edu/ -14272 MW Catholic University of Malawi http://www.cunima.net/ -14273 MW Mzuzu University http://www.mzuni.ac.mw/ -14274 MW University of Livingstonia http://www.ulivingstonia.com/ -14275 MW University of Malawi http://www.unima.mw/ -14276 MX Benemerita Universidad Autónoma de Puebla http://www.buap.mx/ -14277 MX Centro de Enseñanza Técnica Industrial http://www.ceti.mx/ -14278 MX Centro de Estudios Universitarios Monterrey http://www.ceu.edu.mx/ -14279 MX Centro de Estudios Universitarios Xochicalco http://www.ceux.mx/ -14280 MX Centro Universitario Ixtlahuaca http://www.ceunix.com.mx/ -14281 MX CETYS Universidad http://www.cetys.mx/ -14282 MX Dirección General de Institutos Tecnológicos http://www.dgit.gob.mx/ -14283 MX El Colegio de México http://www.colmex.mx/ -14284 MX Escuela Bancaria y Comercial http://www.ebc.mx/ -14285 MX Escuela Nacional de Estudios Superiores Unidad León http://www.enes.unam.mx/ -14286 MX Instituto de Estudios Superiores de la Sierra http://www.ties.com.mx/ -14287 MX Instituto Politécnico Nacional http://www.ipn.edu.mx/ -14288 MX Instituto Politécnico Nacional, Campus Guanajuato http://www.upiig.ipn.mx/ -14289 MX Instituto Tecnológico Autonómo de México http://www.itam.mx/ -14290 MX Instituto Tecnológico de Aguascalientes http://www.ita.mx/ -14291 MX Instituto Tecnológico de Celaya http://www.itc.mx/ -14292 MX Instituto Tecnologico de Durango http://www.itdurango.edu.mx/ -14293 MX Instituto Tecnológico de León http://www.itleon.edu.mx/ -14294 MX Instituto Tecnologico de Minatitlan http://www.itmina.edu.mx/ -14295 MX Instituto Tecnológico de Morelia http://www.itmorelia.edu.mx/ -14296 MX Instituto Tecnológico de Querétaro http://www.itq.edu.mx/ -14297 MX Instituto Tecnológico de San Luis Potosí http://www.itslp.edu.mx/ -14298 MX Instituto Tecnológico de Sonora http://www.itson.mx/ -14299 MX Instituto Tecnológico y de Estudios Superiores de Monterrey (ITESM) http://www.itesm.mx/ -14300 MX Instituto Tecnológico y de Estudios Superiores de Occidente http://www.iteso.mx/ -14301 MX Politécnico de Guanajuato http://www.poligto.edu.mx/ -14302 MX Tecnologico de Baja California, Universidad http://www.tecbc.mx/ -14303 MX Universidad Anáhuac http://www.anahuac.mx/ -14304 MX Universidad Anáhuac del Sur http://www.uas.mx/ -14305 MX Universidad Autónoma Agraria "Antonio Narro" http://www.uaaan.mx/ -14306 MX Universidad Autónoma "Benito Juárez" de Oaxaca http://www.uabjo.mx/ -14307 MX Universidad Autónoma de Aguascalientes http://www.uaa.mx:8001/ -14308 MX Universidad Autónoma de Baja California http://www.uabc.mx/ -14309 MX Universidad Autónoma de Baja California Sur http://www.uabcs.mx/ -14310 MX Universidad Autónoma de Campeche http://www.uacam.mx/ -14311 MX Universidad Autónoma de Chapingo http://www.chapingo.mx/ -14312 MX Universidad Autónoma de Chiapas http://www.unach.mx/ -14313 MX Universidad Autónoma de Chihuahua http://www.uach.mx/ -14314 MX Universidad Autónoma de Ciudad Juárez http://www.uacj.mx/ -14315 MX Universidad Autónoma de Coahuila http://www.uadec.mx/ -14316 MX Universidad Autonoma de Durango http://www.uad.edu.mx/ -14317 MX Universidad Autónoma de Fresnillo http://www.uaf.mx/ -14318 MX Universidad Autónoma de Guadalajara http://www.uag.mx/ -14319 MX Universidad Autónoma de Guerrero http://www.uagro.mx/ -14320 MX Universidad Autónoma de la Ciudad de México http://www.uacm.edu.mx/ -14321 MX Universidad Autónoma de la Laguna http://www.ual.mx/ -14322 MX Universidad Autónoma del Carmen http://www.unacar.mx/ -14323 MX Universidad Autónoma del Estado de Hidalgo http://www.reduaeh.mx/ -14324 MX Universidad Autónoma del Estado de México http://www.uaemex.mx/ -14325 MX Universidad Autónoma del Estado de Morelos http://www.uaem.mx/ -14326 MX Universidad Autónoma del Noreste http://www.uane.edu.mx/ -14327 MX Universidad Autónoma de Nayarit http://www.uan.mx/ -14328 MX Universidad Autónoma de Nuevo León http://www.uanl.mx/ -14329 MX Universidad Autónoma de Querétaro http://www.uaq.mx/ -14330 MX Universidad Autónoma de San Luis Potosí http://www.uaslp.mx/ -14331 MX Universidad Autónoma de Sinaloa http://www.uasnet.mx/ -14332 MX Universidad Autónoma de Tamaulipas http://www.uat.mx/ -14333 MX Universidad Autónoma de Tlaxcala http://www.uatx.mx/ -14334 MX Universidad Autónoma de Veracruz Villa Rica http://www.univillarica.mx/ -14335 MX Universidad Autónoma de Yucatán http://www.uady.mx/ -14336 MX Universidad Autónoma de Zacatecas http://www.reduaz.mx/ -14337 MX Universidad Autonoma España de Durango http://www.uaed.edu.mx/ -14338 MX Universidad Autónoma Metropolitana http://www.uam.mx/ -14339 MX Universidad Autónoma Metropolitana - Azcapotzalco http://www-azc.uam.mx/ -14340 MX Universidad Autónoma Metropolitana - Iztapalapa http://www.iztapalapa.uam.mx/ -14341 MX Universidad Autónoma Metropolitana - Xochimilco http://cueyatl.uam.mx/ -14342 MX Universidad Champagnat http://www.champagnat.edu.mx/ -14343 MX Universidad Chapultepéc http://www.univchapultepec.edu.mx/ -14344 MX Universidad Cientifica Latinoamericana de Hidalgo http://www.uclah.edu.mx/ -14345 MX Universidad Cristóbal Colón http://www.ver.ucc.mx/ -14346 MX Universidad Cuauhtémoc http://www.cuauhtemoc.edu.mx/ -14347 MX Universidad de Celaya http://www.udec.edu.mx/ -14348 MX Universidad de Ciencias y Artes de Chiapas http://www.unicach.edu.mx/ -14349 MX Universidad de Colima http://www.ucol.mx/ -14350 MX Universidad de Comunicación Avanzada http://www.unica.edu.mx/ -14351 MX Universidad de Cuautitlan Izcalli http://www.udeci.edu.mx/ -14352 MX Universidad de Guadalajara http://www.udg.mx/ -14353 MX Universidad de Guanajuato http://www.ugto.mx/ -14354 MX Universidad de Guanajuato, Campus León http://www.campusleon.ugto.mx/ -14355 MX Universidad de Hermosillo http://www.udeh.edu.mx/ -14356 MX Universidad de La Salle, Bajío http://bajio.delasalle.edu.mx/ -14357 MX Universidad de las Américas http://www.udla.mx/ -14358 MX Universidad de las Américas - Puebla http://www.udlap.mx/ -14359 MX Universidad de la Sierra A.C. http://www.usac.edu.mx/ -14360 MX Universidad del Bajío http://www.ubac.edu.mx/ -14361 MX Universidad del Centro de México http://www.ucem.edu.mx/ -14362 MX Universidad de León http://www.universidaddeleon.edu.mx/ -14363 MX Universidad del Mar http://www.umar.mx/ -14364 MX Universidad del Mayab http://www.unimayab.edu.mx/ -14365 MX Universidad del Noreste http://www.une.edu.mx/ -14366 MX Universidad del Noroeste http://www.uno.mx/ -14367 MX Universidad del Norte http://www.un.edu.mx/ -14368 MX Universidad del Tepeyac http://www.tepeyac.edu.mx/ -14369 MX Universidad del Valle de Atemajac http://www.univa.mx/ -14370 MX Universidad del Valle del Bravo http://www.uvb.edu.mx/ -14371 MX Universidad del Valle de México http://www.uvmnet.edu/ -14372 MX Universidad del Valle de Puebla http://members.rotfl.com/uvp/ -14373 MX Universidad del Valle de Toluca http://www.uvt.edu.mx/ -14374 MX Universidad de Montemorelos http://www.umontemorelos.edu.mx/ -14375 MX Universidad de Monterrey http://www.udem.edu.mx/ -14376 MX Universidad de Norteamerica http://www.un.mx/ -14377 MX Universidad de Occidente http://www.udo.mx/ -14378 MX Universidad de Quintana Roo http://www.uqroo.mx/ -14379 MX Universidad de San Miguel http://www.udesanmiguel.edu.mx/ -14380 MX Universidad de Sonora http://www.uson.mx/ -14381 MX Universidad Don Vasco http://www.udv.edu.mx/ -14382 MX Universidad España de Durango http://www.unes.edu.mx/ -14383 MX Universidad Franciscana de México http://www.ufm.edu.mx/ -14384 MX Universidad Franco-Mexicana http://www.ufram.edu.mx/ -14385 MX Universidad Fray Luca Paccioli http://www.frayluca.edu.mx/ -14386 MX Universidad Hispanoamericana http://hispano.edu.mx/ -14387 MX Universidad Iberoamericana http://www.uia.mx/ -14388 MX Universidad Iberoamericana, Campus León http://www.leon.uia.mx/ -14389 MX Universidad Insurgentes Plantel León http://www.uileon.edu.mx/ -14390 MX Universidad Intercontinental http://www.uic.edu.mx/ -14391 MX Universidad Itaca http://www.i.edu.mx/ -14392 MX Universidad Jóse Vasconcelos http://www.univas.edu.mx/ -14393 MX Universidad Juárez Autónoma de Tabasco http://www.ujat.mx/ -14394 MX Universidad Juárez del Estado de Durango http://www.ujed.mx/ -14395 MX Universidad Justo Sierra http://www.ujsierra.mx/ -14396 MX Universidad Kino http://www.unikino.mx/ -14397 MX Universidad la Concordia http://www.universidadlaconcordia.edu.mx/ -14398 MX Universidad La Salle http://www.ulsa.edu.mx/ -14399 MX Universidad La Salle Cuernavaca http://www.ulsac.edu.mx/ -14400 MX Universidad Lasallista Benavente http://www.ulsab.edu.mx/ -14401 MX Universidad Latina http://www.unla.edu.mx/ -14402 MX Universidad Latinoamericana http://www.ula.edu.mx/ -14403 MX Universidad Madero http://www.umad.edu.mx/ -14404 MX Universidad Mesoamericana de San Agustín http://www.umsa.edu.mx/ -14405 MX Universidad Metropolitana de Monterrey http://www.umm.edu.mx/ -14406 MX Universidad Metropolitana Latin Campus http://www.umla.edu.mx/ -14407 MX Universidad Mexicana http://www.unimex.edu.mx/ -14408 MX Universidad Mexicana del Noreste http://www.umne.edu.mx/ -14409 MX Universidad México Americana del Norte http://www.uman.edu.mx/ -14410 MX Universidad México Internacional http://www.umi.edu.mx/ -14411 MX Universidad Michoacana de San Nicolás de Hidalgo http://www.umich.mx/ -14412 MX Universidad Motolinía del Pedegral http://www.universidadmotolinia.edu.mx/ -14413 MX Universidad Motolinía del Pedregal http://www.motolinia.com.mx/ -14414 MX Universidad Nacional Autónoma de México http://www.unam.mx/ -14415 MX Universidad Nuevo Mundo http://www.unum.edu.mx/ -14416 MX Universidad Obrera de Mexico http://www.uom.edu.mx/ -14417 MX Universidad Olmeca http://www.olmeca.edu.mx/ -14418 MX Universidad Panamericana http://www.up.mx/ -14419 MX Universidad Pedagógica Nacional http://www.upn.mx/ -14420 MX Universidad Pedagógica Nacional, Unidad León http://www.lef.upn.mx/ -14421 MX Universidad Pedagógica Veracruzana http://www.secupv.org/ -14422 MX Universidad Popular Autonóma del Estado de Puebla http://www.upaep.mx/ -14423 MX Universidad Regiomontana http://www.ur.mx/ -14424 MX Universidad Regional del Sureste http://www.urse.edu.mx/ -14425 MX Universidad Regional Miguel Hidalgo http://www.urmh.edu.mx/ -14426 MX Universidad Salesiana http://www.universidadsalesiana.edu.mx/ -14427 MX Universidad Santa Fe http://www.usf.com.mx/ -14428 MX Universidad Simón Bolivar http://www.usb.edu.mx/ -14429 MX Universidad Tecnologica de la Mixteca http://www.utm.mx/ -14430 MX Universidad Tecnológica de México http://www.unitec.mx/ -14431 MX Universidad Tecnologica de Nezahualcoyotl http://www.utneza.edu.mx/ -14432 MX Universidad Valle del Grijalva http://www.uvg1.net/ -14433 MX Universidad Veracruzana http://www.uv.mx/ -14434 MX Universidad Xicotepetl http://www.uxac.edu.mx/ -14435 MX Westhill University http://www.westhill.edu.mx/ -14436 MY Advance Tertiary College http://www.atc2u.com/ -14437 MY Aimst University http://www.aimst.edu.my/ -14438 MY Al-Bukhari International University http://www.aiu.edu.my/ -14439 MY Allianze College of Medical Sciences (ACMS) http://www.acms.edu.my/ -14440 MY Al Madinah International University http://www.mediu.edu.my/ -14441 MY Asia E University http://www.aeu.edu.my/ -14442 MY Asia Pacific Institute of Information Technology (APIIT) http://www.apiit.edu.my/ -14443 MY Baitulmal Management Institute (IPB) http://www.ipb.edu.my/ -14444 MY Binary University College of Managemant & Entrepreneurship http://www.binary.edu.my/ -14445 MY Brickfields Asia College http://www.bac.edu.my/ -14446 MY British Malaysian Institute http://www.bmi.edu.my/ -14447 MY City University College of Science and Technology http://www.city.edu.my/ -14448 MY Curtin University of Technology, Sarawak Campus http://www.curtin.edu.my/ -14449 MY Cyberjaya University College of Medical Science http://www.cybermed.edu.my/ -14450 MY Darul Hikmah Islamic College http://www.hikmah.edu.my/ -14451 MY Darul Naim College of Technology http://www.ktd.edu.my/ -14452 MY Darul Quran Islamic College University http://kudqi.net.my/ -14453 MY Darul Takzim Institute of Technology http://www.instedt.edu.my/ -14454 MY Darul Ulum Islamic College http://kidu-darululum.blogspot.com/ -14455 MY FTMS Global Academy http://www.ftmsglobal.com/ -14456 MY Help University College http://www.help.edu.my/ -14457 MY Iact College http://www.iact.edu.my/ -14458 MY Institute of Teachers Education, Batu Lintang http://www.ipbl.edu.my/ -14459 MY Institute of Teachers Education, Darul Aman http://www.ipda.edu.my/ -14460 MY Institute of Teachers Education, Dato' Razali Ismail http://www.ipgmkdri.edu.my/ -14461 MY Institute of Teachers Education, Ilmu Khas http://www.ipik.edu.my/ -14462 MY Institute of Teachers Education, Ipoh http://www.ipip.edu.my/ -14463 MY Institute of Teachers Education, Islamic Education http://www.ipislam.edu.my/ -14464 MY Institute of Teachers Education, Keningau http://www.ipks.edu.my/ -14465 MY Institute of Teachers Education, Kent http://www.ipkent.edu.my/ -14466 MY Institute of Teachers Education, Kota Bharu http://www.ipgkkb.edu.my/ -14467 MY Institute of Teachers Education, Malay Language http://www.ipbmm.edu.my/ -14468 MY Institute of Teachers Education, Melaka http://www.ippm.edu.my/ -14469 MY Institute of Teachers Education, Penang http://www.i4p.edu.my/ -14470 MY Institute of Teachers Education, Perlis http://www.ipgperlis.edu.my/ -14471 MY Institute of Teachers Education, Perlis http://www.ipgperlis.edu.my/ -14472 MY Institute of Teachers Education, Raja Melewar http://www.iprm.edu.my/ -14473 MY Institute of Teachers Education, Rajang http://www.ipgkrajang.edu.my/ -14474 MY Institute of Teachers Education, Sarawak http://www.ipsmiri.edu.my/ -14475 MY Institute of Teachers Education, Sultan Abdul Halim http://www.ipsah.edu.my/ -14476 MY Institute of Teachers Education, Sultan Mizan http://www.ipgmksm.edu.my/ -14477 MY Institute of Teachers Education, Tawau http://www.ipgmtawau.edu.my/ -14478 MY Institute of Teachers Education, Technical Education http://www.ipteknik.edu.my/ -14479 MY Institute of Teachers Education, Temenggong Ibrahim http://www.ipgkti.edu.my/ -14480 MY Institute of Teachers Education, Tengku Ampuan Afzan http://www.iptaa.edu.my/ -14481 MY Institute of Teachers Education, Tuanku Bainun http://www.iptb.edu.my/ -14482 MY Institute of Teachers Education, Tun Hussein Onn http://www.iptho.edu.my/ -14483 MY Institut Prima Bestari - Pine Academy http://www.pine.edu.my/ -14484 MY International Islamic College http://www.iic.edu.my/ -14485 MY International Islamic College of Penang http://www.kitab.edu.my/ -14486 MY International Islamic University http://www.iiu.edu.my/ -14487 MY International Medical University http://www.imu.edu.my/ -14488 MY International University College of Nursing (IUCN) http://www.iucn.edu.my/ -14489 MY International University College of Technology Twintech (IUCTT) http://www.iuctt.edu.my/ -14490 MY Islamic College for Sciences and Technologies http://www.kist.edu.my/ -14491 MY Johore Bharu Primeir Polytechnic http://www.polijb.edu.my/ -14492 MY KBU International College http://www.kbu.edu.my/ -14493 MY KDU College Sdn Bhd http://www.kdu.edu.my/ -14494 MY Kolej Universiti Insaniah http://www.kuin.edu.my/ -14495 MY Kota Bharu Polytechnic http://www.pkb.edu.my/ -14496 MY Kota Kinabalu Polytechnic http://www.pkksabah.edu.my/ -14497 MY Kuala Lumpur Infrastructure University College http://www.kliuc.edu.my/ -14498 MY Kuala Lumpur Metropolitan University http://www.klmu.edu.my/ -14499 MY Kuala Terengganu City Polytechnic http://www.pkkt.edu.my/ -14500 MY Kuching Polytechnic http://www.poliku.edu.my/ -14501 MY Limkokwing University College of Creative Technology http://www.limkokwing.edu.my/ -14502 MY Linton University College http://www.linton.edu.my/ -14503 MY Mahsa University College for Health and Medical Science http://www.mahsa.edu.my/ -14504 MY Malaysia University of Science and Technology (MUST) http://www.must.edu.my/ -14505 MY Management and Science University http://www.msu.edu.my/ -14506 MY Mara Poly-Tech College http://www.kptm.edu.my/ -14507 MY Melaka City Polytechnic http://www.polimelaka.edu.my/ -14508 MY Melaka Islamic University College http://www.kuim.edu.my/ -14509 MY Merlimau Polytechnic http://www.pmm.edu.my/ -14510 MY Monash University, Malaysia Campus http://www.monash.edu.my/ -14511 MY Muadzam Shah Polytechnic http://www.polimuadzam.edu.my/ -14512 MY Multimedia University http://www.mmu.edu.my/ -14513 MY Murni Nursing College http://www.murni.edu.my/ -14514 MY Newcastle University, Medicine Malaysia http://numed.ncl.ac.uk/ -14515 MY Nilai University College http://www.nilai.edu.my/ -14516 MY Olympia College http://www.olympia.edu.my/ -14517 MY Open University Malaysia http://www.oum.edu.my/ -14518 MY Penang International Dental College http://www.pidc.edu.my/ -14519 MY Perak Islamic College http://www.kiperak.edu.my/ -14520 MY Perdana University http://www.perdanauniversity.edu.my/ -14521 MY Perlis Islamic Higher Learning Institute http://www.iptips.edu.my/ -14522 MY Petronas Technology University http://www.utp.edu.my/ -14523 MY Port Dickson Polytechnic http://www.polipd.edu.my/ -14524 MY Primier International University Perak http://www.piup.edu.my/ -14525 MY PTPL College http://www.ptpl.edu.my/ -14526 MY PTPL College http://www.ptpl.edu.my/ -14527 MY Raffles University http://www.raffles-university.edu.my/ -14528 MY Saito College http://www.saito.edu.my/ -14529 MY Seberang Perai Polytechnic http://www.psp.edu.my/ -14530 MY Segi University College http://www.segi.edu.my/ -14531 MY Selangor Islamic University College http://www.kuis.edu.my/ -14532 MY Shahputra College http://www.kolejshahputra.edu.my/ -14533 MY Sultan Abdul Halim Muadzam Shah Polytechnic http://www.polimas.edu.my/ -14534 MY Sultanah Bahiyah Polytechnic http://www.ptsb.edu.my/ -14535 MY Sultan Ahmad Shah Islamic College http://www.kipsas.edu.my/ -14536 MY Sultan Azlan Shah Polytechnic http://www.psas.edu.my/ -14537 MY Sultan Haji Ahmad Shah Polytechnic http://www.polisas.edu.my/ -14538 MY Sultan Idris Shah Polytechnic http://www.psis.edu.my/ -14539 MY Sultan Ismail Petra International Islamic College http://www.kias.edu.my/ -14540 MY Sultan Mizan Zainal Abidin Polytechnic http://www.psmza.edu.my/ -14541 MY Sultan Salahuddin Abdul Aziz Shah Polytechnic http://www.psa.edu.my/ -14542 MY Sunway University College http://www.sunway.edu.my/ -14543 MY Swinburne University of Technology, Sarawak Campus http://www.swinburne.edu.my/ -14544 MY Taj International College http://www.taj.edu.my/ -14545 MY Taylor's University College http://www.taylors.edu.my/ -14546 MY TPM College http://www.tpmcollege.edu.my/ -14547 MY Tunku Abdul Rahman Chinese College http://www.tarc.edu.my/ -14548 MY Tunku Abdul Rahman University (Chinese University) http://www.utar.edu.my/ -14549 MY Tunku Syed Sirajuddin Polytechnic http://www.ptss.edu.my/ -14550 MY UCSI University http://www.ucsi.edu.my/ -14551 MY Ungku Omar Premier Polytechnic http://www.puo.edu.my/ -14552 MY Universiti Darul Iman http://www.udm.edu.my/ -14553 MY Universiti Industri Selangor http://www.unisel.edu.my/ -14554 MY Universiti Kebangsaan Malaysia http://www.ukm.my/ -14555 MY Universiti Kuala Lumpur http://www.unikl.edu.my/ -14556 MY Universiti Kuala Lumpur Malaysian Institute of Information Technology (MIIT) http://miit.unikl.edu.my/ -14557 MY Universiti Malaya http://www.um.edu.my/ -14558 MY Universiti Malaysia Kelantan http://www.umk.edu.my/ -14559 MY Universiti Malaysia Perlis http://www.unimap.edu.my/ -14560 MY Universiti Malaysia Sabah http://www.ums.edu.my/ -14561 MY Universiti Malaysia Sarawak http://www.unimas.my/ -14562 MY Universiti Malaysia Terengganu http://www.umt.edu.my/ -14563 MY Universiti Pendidikan Sultan Idris http://www.upsi.edu.my/ -14564 MY Universiti Putra Malaysia http://www.upm.edu.my/ -14565 MY Universiti Sains Malaysia http://www.usm.my/ -14566 MY Universiti Sultan Zainal Abidin http://www.unisza.edu.my/ -14567 MY Universiti Teknikal Malaysia Melaka http://www.utem.edu.my/ -14568 MY Universiti Teknologi Malaysia http://www.utm.my/ -14569 MY Universiti Teknologi Mara http://www.uitm.edu.my/ -14570 MY Universiti Teknologi Petronas http://www.utp.edu.my/ -14571 MY Universiti Tenaga Nasional http://www.uniten.edu.my/ -14572 MY Universiti Tun Abdul Razak http://www.unitar.edu.my/ -14573 MY Universiti Tun Hussein Onn Malaysia http://www.uthm.edu.my/ -14574 MY Universiti Tunku Abdul Rahman http://www.utar.edu.my/ -14575 MY Universiti Utara Malaysia http://www.uum.edu.my/ -14576 MY University College of Technology & Innovation (UCTI) http://www.ucti.edu.my/ -14577 MY University Malaysia Pahang http://www.ump.edu.my/ -14578 MY University of Management and Technology http://www.umtech.edu.my/ -14579 MY University of Nottingham, Malaysia Campus http://www.nottingham.edu.my/ -14580 MY University Tun Abdul Razak http://www.unirazak.edu.my/ -14581 MY Wawasan Open University http://www.wou.edu.my/ -14582 MY West Minster International College http://www.westminster.edu.my/ -14583 MY YPC-iTWEB College http://www.kolejypc.edu.my/ -14584 MZ Instituto Superior de Ciênicas e Tecnologia de Moçambique http://www.isctem.ac.mz/ -14585 MZ Instituto Superior de Relações Internacionais (ISRI) http://www.isri.ac.mz/ -14586 MZ Instituto Superior Politécnico e Universitário http://www.ispu.ac.mz/ -14587 MZ Universidade Católica de Moçambique http://www.ucm.ac.mz/ -14588 MZ Universidade Eduardo Mondlane http://www.uem.mz/ -14589 NA Ilsa Independent College http://www.ilsacollege.edu.na/ -14590 NA Institute of Information Technology http://www.iit.com.na/ -14591 NA International University of Management http://www.ium.edu.na/ -14592 NA Polytechnic of Namibia http://www.polytechnic.edu.na/ -14593 NA University of Namibia http://www.unam.na/ -14594 NC University of New Caledonia http://www.ufp.nc/ -14595 NE Université Abdou Moumouni de Niamey http://uam.refer.ne/ -14596 NG Abia State Polytechnic http://www.abiapoly.edu.ng/ -14597 NG Abia State University http://www.absu.edu.ng/ -14598 NG ABTI American University of Nigeria http://www.aun.edu.ng/ -14599 NG Abubakar Tafawa Balewa University http://www.atbu.edu.ng/ -14600 NG Adamawa State University http://www.adsu.edu.ng/ -14601 NG Adekunle Ajasin University http://www.aaua.edu.ng/ -14602 NG Adeleke University http://www.adelekeuniversity.edu.ng/ -14603 NG Adeyemi College of Education http://www.aceondo-ng.com/ -14604 NG Afe Babalola University http://www.abuad.edu.ng/ -14605 NG African University of Science and Technology http://www.aust-abuja.org/ -14606 NG Ahmadu Bello University http://www.abu.edu.ng/ -14607 NG Ajayi Crowther University http://www.acu.edu.ng/ -14608 NG Akanu Ibiam Federal Polytechnic, Unwana http://www.polyunwana.net/ -14609 NG Akwa Ibom State University of Technology http://www.akutech.edu.ng/ -14610 NG Al-hikmah University http://www.alhikmah.edu.ng/ -14611 NG Ambrose Alli University http://www.aauekpoma.edu.ng/ -14612 NG Anambra State University of Science and Technology http://www.ansu.edu.ng/ -14613 NG Auchi Polytechnic http://www.auchipoly.edu.ng/ -14614 NG Babcock University http://www.babcockuni.edu.ng/ -14615 NG Bauchi State University, Gadau http://www.basug.edu.ng/ -14616 NG Bayero University Kano http://www.buk.edu.ng/ -14617 NG Baze University Abuja http://www.bazeuniversity.edu.ng -14618 NG Bells University of Technology http://www.bellsuniversity.org/ -14619 NG Benson Idahosa University http://www.biu.edu.ng/ -14620 NG Benue State University http://www.bsum.edu.ng/ -14621 NG Bingham University http://www.binghamuni.edu.ng/ -14622 NG Bowen University http://bowenuniversity-edu.org/ -14623 NG Caleb University http://www.calebuniversity.edu.ng/ -14624 NG Caritas University http://www.caritasuni.edu.ng/ -14625 NG College of Education Ikere http://www.coeikere.edu.ng/ -14626 NG College of Education Oju http://www.coeoju.com/ -14627 NG Covenant University http://www.covenantuniversity.edu.ng/ -14628 NG Crawford University http://www.crawforduniversity.edu.ng/ -14629 NG Crescent University http://www.crescent-university.edu.ng/ -14630 NG Cross River University of Science and Technology http://www.crutech.edu.ng/ -14631 NG Ebonyi State University http://www.ebsu-edu.net/ -14632 NG Ekiti State University http://www.eksu.edu.ng/ -14633 NG Enugu State University of Science and Technology http://www.esut.edu.ng/ -14634 NG Federal College Of Education (Technical), Akoka http://www.fcetakoka-edu.net/ -14635 NG Federal Polytechnic Bauchi, Nigeria http://fptb.edu.ng/ -14636 NG Federal University of Petroleum Resources http://www.fupre.edu.ng/ -14637 NG Federal University of Technology, Akure http://www.futa.edu.ng/ -14638 NG Federal University of Technology, Minna http://www.futminna.edu.ng/ -14639 NG Federal University of Technology, Owerri http://www.futo.edu.ng/ -14640 NG Federal University of Technology, Yola http://www.futy.edu.ng/ -14641 NG Fountain University http://www.fountainuniversity.edu.ng/ -14642 NG Godfrey Okoye University http://www.go-uni-enugu.net/ -14643 NG Godfrey Okoye University http://www.gouni.edu.ng/ -14644 NG Gombe State University http://www.gsu.edu.ng/ -14645 NG Ibrahim Babangida University http://www.ibbu.edu.ng/ -14646 NG Igbinedion University http://www.iuokada.edu.ng/ -14647 NG Imo State University http://www.imsu.edu.ng/ -14648 NG Joseph Ayo Babalola University http://www.jabu.edu.ng/ -14649 NG Kaduna State University http://www.kasuportal.net/ -14650 NG Kano State University of Technology Wudil http://www.kustwudil.edu.ng/ -14651 NG Katsina University http://www.kuk.edu.ng/ -14652 NG Kebbi State University of Science and Technology http://www.ksusta.edu.ng/ -14653 NG Kogi State University http://www.ksuportal.edu.ng/ -14654 NG Kwararafa University http://www.kwararafauniversity.edu.ng/ -14655 NG Kwara State Polytecnic http://www.kwarapoly.edu.ng/ -14656 NG Kwara State University http://www.kwasu.edu.ng/ -14657 NG Ladoke Akintola University of Technology http://www.lautech.edu.ng/ -14658 NG Lagos City Polytechnic http://www.mylcp.net/ -14659 NG Lagos State Polytechnic http://www.laspotech.net/ -14660 NG Lagos State University http://www.lasunigeria.org/ -14661 NG Landmark University http://www.lmu.edu.ng/ -14662 NG Lead City University of Ibadan http://www.lcu.edu.ng/ -14663 NG Madonna University http://www.madonnauniversity.edu.ng/ -14664 NG Michael Okpara University of Agriculture http://www.mouau.edu.ng/ -14665 NG Nasarawa State University Keffi http://www.nsuk.edu.ng/ -14666 NG National Open University of Nigeria http://www.nou.edu.ng/ -14667 NG Niger Delta University http://www.ndu.edu.ng/ -14668 NG Nigerian Defence Academy http://www.nda.edu.ng/ -14669 NG Nigerian Turkish Nile University http://www.ntnu.edu.ng/ -14670 NG Nnamdi Azikiwe University http://www.unizik.edu.ng/ -14671 NG Novena University http://www.novenauniversity.edu.ng/ -14672 NG Obafemi Awolowo University Ile-Ife http://www.oauife.edu.ng/ -14673 NG Obong University http://www.obonguniversity.net/ -14674 NG Oduduwa University http://www.oduduwauniversity.edu.ng/ -14675 NG Olabisi Onabanjo University http://www.oouagoiwoye.edu.ng/ -14676 NG Ondo State University of Science and Technology http://www.osustech.edu.ng/ -14677 NG Osun State University http://www.uniosun.edu.ng/ -14678 NG Pan-African University http://www.pau.edu.ng/ -14679 NG Paul University http://www.pauluniversity.edu.ng/ -14680 NG Polytechnic Ibadan http://www.polyibadan.edu.ng/ -14681 NG Redeemers University http://www.run.edu.ng/ -14682 NG Renaissance University http://www.rnu.edu.ng/ -14683 NG Rivers State University of Science and Technology http://www.ust.edu.ng/ -14684 NG Salem University http://www.salemuniversity.edu.ng/ -14685 NG Sokoto State University http://www.ssu.edu.ng/ -14686 NG Tai Solarin University of Education http://www.tasued.edu.ng/ -14687 NG Tansian University http://www.tansianuniversity.edu.ng/ -14688 NG Taraba State University http://www.tsuniversity.edu.ng/ -14689 NG The Achievers University http://www.achievers.edu.ng/ -14690 NG The Federal Polytechnic Offa http://www.fedpoffa.edu.ng/ -14691 NG Umaru Musa Yar'Adua University http://www.umyu.edu.ng/ -14692 NG University of Abuja http://www.unibuja.edu.ng/ -14693 NG University of Agriculture Abeokuta http://www.unaab.edu.ng/ -14694 NG University of Agriculture Makurdi http://www.uam.edu.ng/ -14695 NG University of Benin http://www.uniben.edu/ -14696 NG University of Calabar http://www.unical.edu.ng/ -14697 NG University of Ibadan http://www.ui.edu.ng/ -14698 NG University of Ilorin http://www.unilorin.edu.ng/ -14699 NG University of Jos http://www.unijos.edu.ng/ -14700 NG University of Lagos http://www.unilag.edu.ng/ -14701 NG University of Maiduguri http://www.unimaid.edu.ng/ -14702 NG University of Mkar http://www.unimkar.edu.ng/ -14703 NG University of Nigeria http://www.unn.edu.ng/ -14704 NG University of Portharcourt http://www.uniport.edu.ng/ -14705 NG University of Uyo http://www.uniuyo.edu.ng/ -14706 NG Usmanu Danfodiyo University Sokoto http://www.udusok.edu.ng/ -14707 NG Veritas University http://www.veritas.edu.ng/ -14708 NG Wellspring University http://www.wellspringuniversity.edu.ng/ -14709 NG Wesley University of Science and Technology http://www.wustoportal.edu.ng/ -14710 NG Western Delta University http://www.wdu.edu.ng/ -14711 NG Yaba College of Technology http://www.yabatech.edu.ng/ -14712 NI Universidad Americana http://www.uam.edu.ni/ -14713 NI Universidad Catolica "Redemptoris Mater" http://www.unica.edu.ni/ -14714 NI Universidad Central de Nicaragua http://www.ucn.edu.ni/ -14715 NI Universidad Centroamericana http://www.uca.edu.ni/ -14716 NI Universidad Centroamericana de Ciencias Empresariales (UCEM) http://www.ucem.edu.ni/ -14717 NI Universidad Ciencias Comerciales http://www.ucc.edu.ni/ -14718 NI Universidad de las Américas (ULAM) http://www.ulam.edu.ni/ -14719 NI Universidad de las Regiones Autónomas de la Costa Caribe Nicaragüense http://www.uraccan.edu.ni/ -14720 NI Universidad de Managua (U de M) http://www.udem.edu.ni/ -14721 NI Universidad Hispanoamericana http://www.uhispam.edu.ni/ -14722 NI Universidad Iberoamericana de Ciencia y Tecnologia http://www.unicit.edu.ni/ -14723 NI Universidad Internacional de Integración de América Latina http://www.unival.edu.ni/ -14724 NI Universidad Nacional Agraria http://www.una.edu.ni/ -14725 NI Universidad Nacional Autonoma de Nicaragua http://www.unan.edu.ni/ -14726 NI Universidad Nacional de Ingenieria http://www.uni.edu.ni/ -14727 NI Universidad Nicaragüense de Ciencia y Tecnológica http://www.ucyt.edu.ni/ -14728 NI Universidad Politecnica de Nicaragua http://www.upoli.edu.ni/ -14729 NI Universidad Popular de Nicaragua (UPONIC) http://www.uponic.edu.ni/ -14730 NL Christelijke Hogeschool Windesheim http://www.windesheim.nl/ -14731 NL De Haagse Hogeschool http://www.dehaagsehogeschool.nl/ -14732 NL Delft University of Technology http://www.tudelft.nl/ -14733 NL Dutch Delta University http://www.ddu.nl/ -14734 NL Eindhoven University of Technology http://www.tue.nl/ -14735 NL Erasmus University Rotterdam http://www.eur.nl/ -14736 NL European Open University http://www.europeanopenuniversity.com/ -14737 NL Fontys University of Applied Sciences http://www.fontys.edu/ -14738 NL Foundation University http://www.foundationuniversity.com/ -14739 NL Free University Amsterdam http://www.vu.nl/ -14740 NL Hanzehogeschool Groningen http://www.hanze.nl/ -14741 NL Hogeschool Inholland http://www.inholland.nl/ -14742 NL Hogeschool Leiden http://www.hsleiden.nl/ -14743 NL Hogeschool Rotterdam http://www.hro.nl/ -14744 NL Hogeschool Utrecht http://www.hu.nl/ -14745 NL Hogeschool van Amsterdam http://www.hva.nl/ -14746 NL Hogeschool voor de Kunsten Utrecht (HKU) http://www.hku.nl/ -14747 NL Hotelschool The Hague http://www.hotelschool.nl/ -14748 NL Institute of Social Studies http://www.iss.nl/ -14749 NL International Institute for Geo - Information Science and Earth Observation http://www.itc.nl/ -14750 NL Islamic University of Rotterdam http://www.islamicuniversity.nl/ -14751 NL Leiden University http://www.leidenuniv.nl/ -14752 NL NHL University of Applied Sciences http://www.nhl.nl/ -14753 NL NHTV Breda University of Professional Education http://www.nhtv.nl -14754 NL NTI University http://www.nti.nl/ -14755 NL Open University of the Netherlands http://www.ou.nl/ -14756 NL Radboud University of Nijmegen http://www.ru.nl/ -14757 NL Roosevelt Academy University College http://www.roac.nl/ -14758 NL Saxion Universities http://saxion.edu/ -14759 NL Stenden University http://www.stenden.com/ -14760 NL Tilburg University http://www.tilburguniversity.nl/ -14761 NL UNESCO-IHE Institute for Water Education http://www.unesco-ihe.org/ -14762 NL Universiteit Doesburg (UNDO) http://www.universiteitdoesburg.nl/ -14763 NL University for Humanistics (UH) http://www.uvh.nl/ -14764 NL University of Amsterdam http://www.uva.nl/ -14765 NL University of Groningen http://www.rug.nl/ -14766 NL University of Maastricht http://www.unimaas.nl/ -14767 NL University of Nijenrode http://www.nijenrode.nl/ -14768 NL University of Twente http://www.utwente.nl/ -14769 NL Utrecht University http://www.uu.nl/ -14770 NL Wageningen University http://www.wageningenuniversity.nl/ -14771 NL Wittenborg University http://www.wittenborg.eu/ -14772 NL Zuyd University http://www.zuyd.nl/ -14773 NO Agder University College http://www.hia.no/ -14774 NO Agricultural University of Norway http://www.nlh.no/ -14775 NO Bergen University College http://www.hib.no/ -14776 NO Bodo Regional University http://www.hibo.no/ -14777 NO Finnmark University College http://www.hifm.no/ -14778 NO Lillehammer University College http://www.hil.no/ -14779 NO Molde University College http://www.himolde.no/ -14780 NO National Academy of Fine Arts http://ska.khio.no/main -14781 NO National College of Art and Design http://www.khio.no/shks/ -14782 NO Norway's Information Technology University College http://www.nith.no/ -14783 NO Norwegian College of Veterinary Medicine http://www.veths.no/ -14784 NO Norwegian School of Economics and Business Administration http://www.nhh.no/ -14785 NO Norwegian School of Management BI http://www.bi.no/ -14786 NO Norwegian State Academy of Music http://www.nmh.no/ -14787 NO Norwegian Teacher Academy for Studies in Religion and Education http://www.nla.no/ -14788 NO Norwegian University of Life Sciences http://www.umb.no/ -14789 NO Norwegian University of Science and Technology http://www.ntnu.no/ -14790 NO Norwegian University of Sport and Physical Education http://www.nih.no/ -14791 NO Oslo School of Architecture http://www.aho.no/ -14792 NO University of Bergen http://www.uib.no/ -14793 NO University of Oslo http://www.uio.no/ -14794 NO University of Stavanger http://www.uis.no/ -14795 NO University of Tromsø http://www.uit.no/ -14796 NP Agriculture and Forestry University http://www.afu.edu.np/ -14797 NP B.P.Koirala Institute of Health Sciences http://www.bpkihs.edu/ -14798 NP Kathmandu University http://www.ku.edu.np/ -14799 NP Lumbini Buddhist University http://www.lbu.edu.np/ -14800 NP Nepal Sanskrit University http://www.nsu.edu.np/ -14801 NP Pokhara University http://www.pu.edu.np/ -14802 NP Purbanchal University http://www.purbuniv.edu.np/ -14803 NP Tribhuvan University Kathmandu http://www.tribhuvan-university.edu.np/ -14804 NU St Clements University - Higher Education School http://www.stclements.edu.nu/ -14805 NZ Auckland University of Technology http://www.aut.ac.nz/ -14806 NZ Christchurch Polytechnic Institute of Technology http://www.cpit.ac.nz/ -14807 NZ Lincoln University http://www.lincoln.ac.nz/ -14808 NZ Massey University http://www.massey.ac.nz/ -14809 NZ Open Polytechnic http://www.openpolytechnic.ac.nz/ -14810 NZ University of Auckland http://www.auckland.ac.nz/ -14811 NZ University of Canterbury http://www.canterbury.ac.nz/ -14812 NZ University of Otago http://www.otago.ac.nz/ -14813 NZ University of Waikato http://www.waikato.ac.nz/ -14814 NZ Victoria University of Wellington http://www.vuw.ac.nz/ -14815 OM Al-Buraimi University College http://www.buc.edu.om/ -14816 OM Arab Open University http://www.aou.edu.om/ -14817 OM Dhofar University http://www.du.edu.om/ -14818 OM Ibra College of Technology http://www.ict.edu.om/ -14819 OM Majan University College http://www.majancollege.edu.om/ -14820 OM Muscat College http://www.muscatcollege.edu.om/ -14821 OM Oman College Of Management & Technology http://www.omancollege.edu.om/ -14822 OM Sohar University http://www.soharuni.edu.om/ -14823 OM Sultan Qaboos University http://www.squ.edu.om/ -14824 OM Sur University College http://www.suc.edu.om/ -14825 OM University of Nizwa http://www.unizwa.edu.om/ -14826 PA Columbus University http://www.columbus.edu/ -14827 PA Floret Global University http://www.floret.edu.pa/ -14828 PA Instituto de Enseñanza Superior Oteima http://www.institutoteima.ac.pa/ -14829 PA Universidad Abierta y a Distancia de Panama http://www.unadp.ac.pa/ -14830 PA Universidad Autonoma de Chiriqui http://www.unachi.ac.pa/ -14831 PA Universidad Católica Santa María La Antigua http://www.usma.ac.pa/ -14832 PA Universidad de Cartago http://www.ucapanama.org/ -14833 PA Universidad del Istmo http://www.udi.edu/ -14834 PA Universidad de Panamá http://www.up.ac.pa/ -14835 PA Universidad Especializada de Las Americas http://www.udelas.ac.pa/ -14836 PA Universidad Interamericana de Educacion a Distancia de Panama http://www.uniedpa.com/ -14837 PA Universidad Latina de Panamá http://www.ulat.ac.pa/ -14838 PA Universidad Latinoamericana de Ciencia y Tecnologia, Panamá http://www.ulacit.ac.pa/ -14839 PA Universidad Tecnológica de Panamá http://www.utp.ac.pa/ -14840 PA Universidad Tecnológica Oteima http://www.oteima.ac.pa/ -14841 PA Victoria International University http://www.viu.edu.pa/ -14842 PA West Coast University (WCU) http://www.westcoastuniversity-edu.com/ -14843 PE Pontificia Universidad Católica del Perú http://www.pucp.edu.pe/ -14844 PE Universidad Alas Peruanas http://www.uap.edu.pe/ -14845 PE Universidad Andina del Cusco http://www.uandina.edu.pe/ -14846 PE Universidad Andina Nestor Caceares Velasquez http://www.uancv.edu.pe/ -14847 PE Universidad Católica de Santa María http://www.ucsm.edu.pe/ -14848 PE Universidad Católica Santo Toribio de Mogrovejo http://www.usat.edu.pe/ -14849 PE Universidad César Vallejo http://www.ucv.edu.pe/ -14850 PE Universidad Cientifica del Sur http://www.ucsur.edu.pe/ -14851 PE Universidad de Chiclayo http://www.udch.edu.pe/ -14852 PE Universidad de Ciencias y Humanidades http://www.uch.edu.pe/ -14853 PE Universidad de Huánuco http://www.udh.edu.pe/ -14854 PE Universidad de Lambayeque http://www.udl.edu.pe/ -14855 PE Universidad de Lima http://www.ulima.edu.pe/ -14856 PE Universidad del Pacifico http://www.up.edu.pe/ -14857 PE Universidad de Piura http://www.udep.edu.pe/ -14858 PE Universidad Femenina del Sagrado Corazón http://www.unife.edu.pe/ -14859 PE Universidad Los Angeles de Chimbote http://www.uladech.edu.pe/ -14860 PE Universidad Marcelino Champagnat http://www.champagnat.edu.pe/ -14861 PE Universidad Nacional Agraria de la Selva http://www.unas.edu.pe/ -14862 PE Universidad Nacional Agraria La Molina http://www.lamolina.edu.pe/ -14863 PE Universidad Nacional Agraria La Selva http://www.unas.edu.pe/ -14864 PE Universidad Nacional Daniel Alcides Carrion http://www.undac.edu.pe/ -14865 PE Universidad Nacional de Cajamarca http://www.unc.edu.pe/ -14866 PE Universidad Nacional de Educación Enrique Guzmán y Valle http://www.une.edu.pe/ -14867 PE Universidad Nacional de Ingeniería http://www.uni.edu.pe/ -14868 PE Universidad Nacional de la Amazonía Peruana http://www.unapiquitos.edu.pe/ -14869 PE Universidad Nacional de La Libertad, Trujillo http://www.unitru.edu.pe/ -14870 PE Universidad Nacional del Altiplano http://www.unap.edu.pe/ -14871 PE Universidad Nacional del Callao http://www.unac.edu.pe/ -14872 PE Universidad Nacional del Centro del Perú http://www.uncp.edu.pe/ -14873 PE Universidad Nacional de Piura http://www.unp.edu.pe/ -14874 PE Universidad Nacional de San Agustin http://www.unsa.edu.pe/ -14875 PE Universidad Nacional de San Antonio Abad http://www.unsaac.edu.pe/ -14876 PE Universidad Nacional de San Cristóbal de Huamanga http://www.unsch.edu.pe/ -14877 PE Universidad Nacional de San Martín http://www.unsm.edu.pe/ -14878 PE Universidad Nacional de Santa - Chimbote http://www.uns.edu.pe/ -14879 PE Universidad Nacional de Tumbes http://www.untumbes.edu.pe/ -14880 PE Universidad Nacional de Ucayali http://www.unu.edu.pe/ -14881 PE Universidad Nacional Federico Villarreal http://www.unfv.edu.pe/ -14882 PE Universidad Nacional Hermilio Valdizan http://www.unheval.edu.pe/ -14883 PE Universidad Nacional Jorge Basadre Grohmann http://www.unjbg.edu.pe/ -14884 PE Universidad Nacional José Faustino Sánchez Carrión http://www.unjfsc.edu.pe/ -14885 PE Universidad Nacional Mayor de San Marcos http://www.unmsm.edu.pe/ -14886 PE Universidad Nacional Pedro Ruíz Gallo http://www.unprg.edu.pe/ -14887 PE Universidad Nacional San Luis Gonzaga http://www.unica.edu.pe/ -14888 PE Universidad Nacional Santiago Antúnez de Mayolo http://www.unasam.edu.pe/ -14889 PE Universidad Norbert Wiener http://www.uwiener.edu.pe/ -14890 PE Universidad Particular de Chiclayo http://www.udch.edu.pe/ -14891 PE Universidad Particular Inca Garcilaso de la Vega http://www.uigv.edu.pe/ -14892 PE Universidad Peruana Cayetano Heredia http://www.upch.edu.pe/ -14893 PE Universidad Peruana de Ciencias Aplicadas http://www.upc.edu.pe/ -14894 PE Universidad Peruana de Ciencias e Informática http://www.upci.edu.pe/ -14895 PE Universidad Peruana Union http://www.upeu.edu.pe/ -14896 PE Universidad Privada Antenor Orrego http://www.upao.edu.pe/ -14897 PE Universidad Privada del Norte http://www.upnorte.edu.pe/ -14898 PE Universidad Privada de Tacna http://www.upt.edu.pe/ -14899 PE Universidad Privada Juan Mejía Baca http://www.umb.edu.pe/ -14900 PE Universidad Privada Los Andes http://www.upla.edu.pe/ -14901 PE Universidad Privada San Juan Bautista http://www.upsjb.edu.pe/ -14902 PE Universidad Privada San Pedro http://www.usanpedro.edu.pe/ -14903 PE Universidad Privada Sergio Bernales http://www.upsb.edu.pe/ -14904 PE Universidad Ricardo Palma http://www.urp.edu.pe/ -14905 PE Universidad San Ignacio de Loyola http://www.sil.edu.pe/ -14906 PE Universidad San Martin de Porres http://www.usmp.edu.pe/ -14907 PE Universidad San Pablo http://www.usp.edu.pe/ -14908 PE Universidad Señor de Sipán http://www.uss.edu.pe/ -14909 PE Universidad Tecnológica de los Andes de Apurímac http://www.utea.edu.pe/ -14910 PE Universidad Tecnológica del Peru http://www.utp.edu.pe/ -14911 PF Université de la Polynésie Française http://www.upf.pf/ -14912 PG Divine Word University http://www.dwu.ac.pg/ -14913 PG Pacific Adventist University http://www.pau.ac.pg/ -14914 PG Papua New Guinea University of Technology http://www.unitech.ac.pg/ -14915 PG University of Goroka http://www.uog.ac.pg/ -14916 PG University of Papua New Guinea http://www.upng.ac.pg/ -14917 PH Adamson University http://www.adamson.edu.ph/ -14918 PH Adventist University of the Philippines http://www.aup.edu.ph/ -14919 PH Angeles University http://www.auf.edu.ph/ -14920 PH Aquinas University http://www.aquinas-university.edu/ -14921 PH Araullo University http://www.aupen.edu.ph/ -14922 PH Arellano University http://www.arellano.edu.ph/ -14923 PH Ateneo de Davao University http://www.addu.edu.ph/ -14924 PH Ateneo de Manila University http://www.admu.edu.ph/ -14925 PH Ateneo de Naga University http://www.adnu.edu.ph/ -14926 PH Ateneo de Zamboanga University http://www.adzu.edu.ph/ -14927 PH Benguet State University http://www.bsu.edu.ph/ -14928 PH Bicol University http://www.bicol-u.edu.ph/ -14929 PH Bulacan State University http://www.bulsu.edu.ph/ -14930 PH Cagayan State University http://www.csu.edu.ph/ -14931 PH Capitol University http://www.cu-cdo.edu.ph/ -14932 PH Central Luzon State University http://www2.mozcom.com/~clsu/ -14933 PH Central Mindanao University http://www.cmu.edu.ph/ -14934 PH Central Philippine University http://www.cpuic.edu/ -14935 PH Centro Escolar University http://www.ceu.edu.ph/ -14936 PH Colegio de San Juan de Letran http://www.letran.edu/ -14937 PH College of the Holy Spirit http://www.holyspirit.edu.ph/ -14938 PH Davao Doctors College http://www.davaodoctors.edu.ph/ -14939 PH De La Salle University http://www.dlsu.edu.ph/ -14940 PH De La Salle University, Araneta http://www.araneta.dlsu.edu.ph/ -14941 PH Divine Word College of Legazpi http://www.dwc-legazpi.edu/ -14942 PH Don Mariano Marcos Memorial State University http://www.dmmmsu.edu.ph/ -14943 PH Far Eastern University http://www.feu.edu.ph/ -14944 PH Feati University http://www.featiu.edu.ph/ -14945 PH Foundation University http://www.foundationu.com/ -14946 PH Holy Angel University http://www.hau.edu.ph/ -14947 PH Information and Communications Technology Academy http://www.iacademy.ph/ -14948 PH Irish University Business School, Cebu http://www.iubs.co.uk/ -14949 PH Isabela State University http://www.isu.edu.ph/ -14950 PH Leyte Normal University http://lnu.evis.net.ph/ -14951 PH Leyte State University http://www.lsu-visca.edu.ph/ -14952 PH Liceo de Cagayan University http://www.ldcu.edu.ph/ -14953 PH Lyceum of the Philippines University http://www.lpu.edu.ph/ -14954 PH Manila Central University http://www.mcu.edu.ph/ -14955 PH Manuel L. Quezon University http://www.mlqu.edu.ph/ -14956 PH Manuel S. Enverga University Foundation http://www.mseuf.edu.ph/ -14957 PH Mariano Marcos State University http://www.mmsu.edu.ph/ -14958 PH Mindanao State University http://www.msumain.edu.ph/ -14959 PH Mindanao State University - Iligan Institute of Technology http://www.msuiit.edu.ph/ -14960 PH Misamis University http://www.mu.fapenet.org/ -14961 PH Mountain View College http://www.mvc.edu.ph/ -14962 PH National University http://www.nu.edu.ph/ -14963 PH New Era University http://www.neu.edu.ph/ -14964 PH Northwestern University of the Philippines http://www.nulaoag.com/ -14965 PH Notre Dame of Marbel University http://www.ndmu.edu.ph/ -14966 PH Notre Dame University http://www.ndu.fapenet.org/ -14967 PH Our Lady of Fatima University http://www.fatima.edu.ph/ -14968 PH Palawan State University http://www.psu-online.edu.ph/ -14969 PH Pangasinan State University http://www.psu.edu.ph/ -14970 PH Philippine Christian University http://www.pcu.edu.ph/ -14971 PH Philippine Military Academy http://www.pma.ph/ -14972 PH Philippine Normal University http://www.pnumanila.com.ph/ -14973 PH Philippine Women's University http://www.pwu.edu/ -14974 PH Polytechnic University of the Philippines http://www.pup.edu.ph/ -14975 PH Rizal Technological University http://www.rtu.edu.ph/ -14976 PH Saint Ferdinand College http://www.sfc.edu.ph/ -14977 PH Saint Louis College http://www.slc-sflu.edu.ph/ -14978 PH Saint Louis University http://www.slu.edu.ph/ -14979 PH Saint Mary's University http://www.smu.edu.ph/ -14980 PH Saint Paul University http://www.spu.edu.ph/ -14981 PH Samar State University http://www.ssu.edu.ph/ -14982 PH San Beda College http://www.sanbeda.edu.ph/ -14983 PH Silliman University http://www.su.edu.ph/ -14984 PH Southwestern University http://www.swu.edu.ph/ -14985 PH Tarlac State University http://www2.mozcom.com/~tsu-ics/ -14986 PH Technological University of the Philippines http://www.tup.edu.ph/ -14987 PH University of Asia and the Pacific http://www.uap.edu.ph/ -14988 PH University of Baguio http://www.ubaguio.edu/ -14989 PH University of Batangas http://www.ub.edu.ph/ -14990 PH University of Bohol http://www.universityofbohol.com/ -14991 PH University of Cagayan Valley http://www.ucv.edu.ph/ -14992 PH University of Cebu http://www.universityofcebu.edu.ph/ -14993 PH University of Eastern Philippines http://www.uep.educ.ph/ -14994 PH University of lloilo http://www.ui.phinma.edu.ph/ -14995 PH University of Manila http://www.univman.edu.ph/ -14996 PH University of Mindanao http://www.umindanao.edu.ph/ -14997 PH University of Negros Occidental-Recoletos http://www.uno-r.edu.ph/ -14998 PH University of Northeastern Philippines http://www.unep.edu.ph/ -14999 PH University of Northern Philippines http://www.unp.edu.ph/ -15000 PH University of Nueva Caceres http://www.unc.edu.ph/ -15001 PH University of Pangasinan http://www.upang.edu.ph/ -15002 PH University of Perpetual Help http://www.uphr.edu.ph/ -15003 PH University of Perpetual Help, System Dalta http://www.perpetualdalta.edu.ph/ -15004 PH University of Regina Carmeli http://www.urc.edu.ph/ -15005 PH University of Saint La Salle http://www.usls.edu/ -15006 PH University of San Agustin http://www.usa.edu.ph/ -15007 PH University of San Carlos http://www.usc.edu.ph/ -15008 PH University of San Jose Recoletos http://www.usjr.edu.ph/ -15009 PH University of Santo Tomas http://www.ust.edu.ph/ -15010 PH University of Southeastern Philippines http://www.usep.edu.ph/ -15011 PH University of Southern Mindanao http://www.usm.edu.ph/ -15012 PH University of Southern Philippines Foundation http://www.usp.ph/ -15013 PH University of the Assumption http://www.ua.edu.ph/ -15014 PH University of the City of Manila http://www.plm.edu.ph/ -15015 PH University of the Cordilleras http://www.uc-bcf.edu.ph/ -15016 PH University of the East, Coloocan http://www.ue.edu.ph/caloocan/ -15017 PH University of the East, Manila http://www.ue.edu.ph/manila/ -15018 PH University of the East, Ramon Magsaysay Memorial Medical Center http://www.uerm.edu.ph/ -15019 PH University of the Immaculate Conception http://uic.globe.com.ph/ -15020 PH University of the Philippines Baguio http://www.upb.edu.ph/ -15021 PH University of the Philippines Diliman http://www.upd.edu.ph/ -15022 PH University of the Philippines Los Banos http://www.uplb.edu.ph/ -15023 PH University of the Philippines Manila http://www.upm.edu.ph/ -15024 PH University of the Philippines Mindanao http://www.upmin.edu.ph/ -15025 PH University of the Philippines Open University http://www.upou.org/ -15026 PH University of the Philippines Visayas http://www.upv.edu.ph/ -15027 PH University of the Philippines Visayas - Cebu High School http://www.uphighschoolcebu.edu.ph/ -15028 PH University of the Visayas http://www.uv.edu.ph/ -15029 PH Virgen Milagrosa University Foundation http://www.vmuf.edu.ph/ -15030 PH Wesleyan University Philippines http://www.wesleyan.edu.ph/ -15031 PH Western Mindanao State University http://www.wmsu.edu.ph/ -15032 PH West Visayas State University http://www.wvsu.edu.ph/ -15033 PH Xavier University http://www.xu.edu.ph/ -15034 PK Abasyn University Peshawar http://www.abasyn.edu.pk/ -15035 PK Aga Khan University http://www.aku.edu/ -15036 PK Air University http://www.au.edu.pk/ -15037 PK Alhamd Islamic University http://www.aiu.edu.pk/ -15038 PK Al-Khair University http://www.alkhair.edu.pk/ -15039 PK Allama Iqbal Open University http://www.aiou.edu.pk/ -15040 PK Alpha Omega University http://www.alphaomega.edu.pk/ -15041 PK American University of Hawaii, Punjab Campus http://www.auh.edu.pk/ -15042 PK Arid Agriculture University http://www.uaar.edu.pk/ -15043 PK Asian Management Institute http://www.ami.edu.pk/ -15044 PK Asia Pacific Institute of Information Technology Pakistan (APIIT PAK) http://www.apiit.edu.pk/ -15045 PK Azad Jammu and Kashmir University http://www.ajku.edu.pk/ -15046 PK Bahauddin Zakariya University, Multan http://www.bzu.edu.pk/ -15047 PK Bahria University http://www.bahria.edu.pk/ -15048 PK Balochistan University of Engineering and Technology Khuzdar http://www.buetk.edu.pk/ -15049 PK Balochistan University of Information Technology & Management Sciences http://www.buitms.edu.pk/ -15050 PK Baqai Medical University http://baqai.freeyellow.com/ -15212 PL Katowice School of Economics http://www.gwsh.pl/ -15051 PK Cecos Univeristy of Information Technology http://www.cecos.edu.pk/ -15052 PK College of Business Management ( CBM ) http://www.cbm.edu.pk/ -15053 PK COMSATS Institute of Information Technology http://www.ciit.edu.pk/ -15054 PK COMSATS Institute of Information Technology, Abbottabad http://www.ciit-atd.edu.pk/ -15295 PL University of Wroclaw http://www.uni.wroc.pl/ -15055 PK COMSATS Institute of Information Technology, Attock http://www.ciit-attock.edu.pk/ -15056 PK COMSATS Institute of Information Technology, Lahore http://www.ciitlahore.edu.pk/ -15057 PK COMSATS Institute of Information Technology, Wah http://www.ciit-wah.edu.pk/ -15058 PK COSMIQ Institute of Technology http://www.cosmiq.edu.pk/ -15059 PK Dadabhoy Institute of Higher Education http://www.dadabhoy.edu.pk/ -15060 PK Dawood College of Engineering and Technology http://www.dcet.edu.pk/ -15061 PK Dow University of Health Sciences http://www.duhs.edu.pk/ -15062 PK Faisalabad Institute of Textile and Fashion Design http://www.fitfd.edu.pk/ -15063 PK FAST - National University of Computer and Emerging Sciences (NUCES) http://www.nu.edu.pk/ -15064 PK Federal Urdu University of Arts,Science and Technology http://www.fuuast.edu.pk/ -15065 PK Gandhara Institute of Medical Sciences http://www.gandhara.edu.pk/ -15066 PK Gangdara Institute Of Science & Technology http://www.gist.edu.pk/ -15067 PK GC University http://www.gcu.edu.pk/ -15068 PK Ghulam Ishaq Khan Institute of Science & Technology http://www.giki.edu.pk/ -15069 PK Gift University http://www.gift.edu.pk/ -15070 PK Gomal University http://www.gu.edu.pk/ -15071 PK Government College University Faisalabad http://www.gcuf.edu.pk/ -15072 PK Government College University Lahore http://www.gcu.edu.pk/ -15073 PK Greenwich University http://www.guic.edu.pk/ -15074 PK Hahnamann Honoeopathic Medical College http://www.pakistanhomoeopathy.com/ -15075 PK Hajvery University Lahore for Women http://www.hajvery.edu.pk/ -15076 PK Hamdard University http://www.hamdard.edu.pk/ -15077 PK Hazara University http://www.hu.edu.pk/ -15078 PK Hitec University http://www.hitecuni.edu.pk/ -15079 PK Indus Institute of Higher Education http://www.indus.edu.pk/ -15080 PK Institute of Business Administration (IBA) http://www.iba.edu.pk/ -15081 PK Institute of Business Administration Sukkur http://www.iba-suk.edu.pk/ -15082 PK Institute of Business Management http://www.iobm.edu.pk/ -15083 PK Institute of Business & Technology http://www.biztek.edu.pk/ -15084 PK Institute of Industrial Electronics Engineering http://www.iiee.edu.pk/ -15085 PK Institute of Management Sciences, Lahore (IMS) http://www.pakaims.edu.pk/ -15086 PK Institute of Management Sciences, Peshawar http://www.imsciences.edu.pk/ -15087 PK Institute of Space Technology http://www.ist.edu.pk/ -15088 PK International Islamic University, Islamabad http://www.iiu.edu.pk/ -15089 PK Iqra University http://www.iqra.edu.pk/ -15090 PK Islamia University of Bahawalpur http://www.iub.edu.pk/ -15091 PK Isra University http://www.isra.edu.pk/ -15092 PK Jinnah University for Women http://www.juw.edu.pk/ -15093 PK Karachi Institute Of Economics And Technology http://www.pafkiet.edu.pk/ -15094 PK Karachi Institute of Information Technology http://www.kiit.edu.pk/ -15095 PK Karachi Medical and Dental College http://www.kmdc.edu.pk/ -15096 PK Karachi School of Art http://www.ksa.edu.pk/ -15097 PK Karakoram International University http://www.kiu.edu.pk/ -15098 PK KASB Institute of Technology http://www.kasbit.edu.pk/ -15099 PK Kohat University of Science and Technology (KUST) http://www.kust.edu.pk/ -15100 PK Lahore College for Women University http://www.lcwu.edu.pk/ -15101 PK Lahore University of Management Sciences http://www.lums.edu.pk/ -15102 PK Liaquat University of Medical & Health Sciences Jamshoro http://www.lumhs.edu.pk/ -15103 PK Mehran University of Engineering & Technology http://www.muet.edu.pk/ -15104 PK Minhaj University Lahore http://www.mul.edu.pk/ -15105 PK Mohammad Ali Jinnah University http://www.jinnah.edu.pk/ -15106 PK Mohammad Ali Jinnah University, Karachi http://www.jinnah.edu/ -15107 PK Mohi-ud-Din Islamic University http://www.miu.edu.pk/ -15108 PK Mooreland University http://www.moorelanduniversity.com/ -15109 PK National College of Arts http://www.nca.edu.pk/ -15110 PK National University of Computer & Emerging Sciences http://www.nu.edu.pk/ -15111 PK National University of Modern Languages http://www.numl.edu.pk/ -15112 PK National University of Science and Technology http://www.nust.edu.pk/ -15113 PK NED University of Engineering and Technology Karachi http://www.neduet.edu.pk/ -15114 PK Newports Institute of Communication & Economics http://www.newports.edu.pk/ -15115 PK North West Frontier Province Agricultural University http://www.aup.edu.pk/ -15116 PK Nuclear Institute for Agriculture and Biology (NIAB) http://www.niab.org.pk/ -15117 PK Pak-AIMS (American Institute of Management Sciences) http://www.pakaims.edu/ -15118 PK Pakistan Institute of Engineering and Applied Sciences (PIEAS) http://www.pieas.edu.pk/ -15119 PK Pakistan Virtual University http://www.vu.edu.pk/ -15120 PK Planwel University http://www.planwel.edu/ -15121 PK Preston Institute of Management Sciences and Technology (PIMSAT) http://www.pimsat-khi.edu.pk/ -15122 PK Preston University, Pakistan Campus http://www.prestonpak.edu.pk/ -15123 PK Punjab Institute of Computer science http://www.pics.edu.pk/ -15124 PK Punjab University College of Information Tecnology http://www.pucit.edu.pk/ -15125 PK Pyramid Education Center http://www.pedu.edu.pk/ -15126 PK Qauid-e-Awam University of Engineering Sciences & Technology http://www.panasia.org.sg/tcdc/pakistan/qauid_sindh/index.html -15127 PK Quaid-i-Azam University http://www.qau.edu.pk/ -15128 PK Qurtuba University of Science and Infromation Technology http://www.qurtuba.edu.pk/ -15129 PK Riphah International Univeristy http://www.riphah.edu.pk/ -15130 PK Sarhad University of Science & Information Technology, Peshawar http://www.suit.edu.pk/ -15131 PK Shah Abdul Latif University Khairpur http://www.salu.edu.pk/ -15132 PK Shaheed Benazir Bhutto Women University http://www.fwu.edu.pk/ -15463 RO University of Galatzi http://www.ugal.ro/ -15133 PK Shaheed Zulifkar Ali Bhutto Institute of Science and Technology http://www.szabist.edu.pk/ -15134 PK Sindh Agricultural University http://www.sau.edu.pk/ -15135 PK Sindh Madressatul Islam University http://www.smiu.edu.pk/ -15136 PK Sir Syed Institute Of Technology Islamabad http://www.ssms.edu.pk/ -15137 PK Sir Syed University of Engineering and Technology http://www.ssuet.edu.pk/ -15138 PK Textile Institute of Pakistan http://www.tip.edu.pk/ -15139 PK The Global College Lahore http://www.global.edu.pk/ -15140 PK The Government Sadiq College Women University Bahawalpur http://www.gscwu.edu.pk/ -15141 PK The Superior College http://www.superior.edu.pk/ -15142 PK University of Agriculture Faisalabad http://www.uaf.edu.pk/ -15143 PK University of Balochistan http://www.uob.edu.pk/ -15144 PK University of Central Punjab http://www.ucp.edu.pk/ -15145 PK University of East http://www.uoe.edu.pk/ -15146 PK University of Education http://www.ue.edu.pk/ -15147 PK University of Engineering and Technology Lahore http://www.uet.edu/ -15148 PK University of Engineering and Technology Peshawar http://www.nwfpuet.edu.pk/ -15149 PK University of Engineering and Technology Taxila http://www.uettaxila.edu.pk/ -15150 PK University of Faisalabad http://www.tuf.edu.pk/ -15151 PK University of Gujrat http://www.uog.edu.pk/ -15152 PK University of Islamic Studies http://www.aldirasat.edu.pk/ -15153 PK University of Karachi http://www.uok.edu.pk/ -15154 PK University of Lahore http://www.uol.edu.pk/ -15155 PK University of Malakand http://www.uom.edu.pk/ -15156 PK University of Management and Technology http://www.umt.edu.pk/ -15157 PK University of Munawwar-ul-Islam http://www.umi.edu.pk/ -15158 PK University of NorthWest http://www.unw.edu.pk/ -15159 PK University of Peshawar http://www.upesh.edu/ -15160 PK University of Sargodha http://www.uos.edu.pk/ -15161 PK University of Science & Technology Bannu http://www.ustb.edu.pk/ -15162 PK University of Sindh http://www.usindh.edu.pk/ -15163 PK University of South Asia http://www.usa.edu.pk/ -15164 PK University of the Punjab http://www.pu.edu.pk/ -15165 PK University of the Punjab, Gujranwala Campus http://www.pugc.edu.pk/ -15166 PK University of Veterinary & Animal Science http://www.uvas.edu.pk/ -15167 PK University of Wah http://www.uw.edu.pk/ -15168 PK Virtual University of Pakistan http://www.vu.edu.pk/ -15169 PK Wah Medical College http://www.wahmedicalcollege.edu.pk/ -15170 PK Zawiya Academy http://www.zawiya.edu.pk/ -15171 PK Zia-ud-Din Medical University http://www.geocities.com/CollegePark/7329/ -15172 PL Academy of Economics in Cracow http://www.ae.krakow.pl/ -15173 PL Academy of Economics in Katowice http://www.ae.katowice.pl/ -15174 PL Academy of Economics in Poznan http://www.ae.poznan.pl/ -15175 PL Academy of Economics in Wroclaw http://www.ae.wroc.pl/ -15176 PL Academy of Humanities and Economics in Lodz http://www.ahe.edu.pl/ -15177 PL Academy of International Economic and Political Relations, Gdynia http://www.wsms.edu.pl/ -15178 PL Adam Mickiewicz University of Poznan http://www.amu.edu.pl/ -15179 PL AGH University of Science and Technology http://www.agh.edu.pl/ -15180 PL Agricultural-Technical Academy in Olsztyn http://www.art.olsztyn.pl/ -15181 PL Agricultural University of Cracow http://www.ar.krakow.pl/ -15182 PL Agricultural University of Lublin http://www.ar.lublin.pl/ -15183 PL Agricultural University of Poznan http://www.au.poznan.pl/ -15184 PL Agricultural University of Szczecin http://www.ar.szczecin.pl/ -15185 PL Agricultural University of Warsaw http://www.sggw.waw.pl/ -15186 PL Agricultural University of Wroclaw http://www.ar.wroc.pl/ -15187 PL Akademia Podlaska http://www.ap.siedlce.pl/ -15188 PL Aleksander Gieysztor School of Humanities in Pultusk http://www.wsh.edu.pl/ -15189 PL Aleksander Zelwerowicz State Theatre Academy http://www.at.edu.pl/ -15190 PL Andrzej Frycz Modrzewski Cracow College http://www.ksw.edu.pl/ -15191 PL Cardinal Stefan Wyszynski University in Warsaw http://www.uksw.edu.pl/ -15192 PL Catholic University of Lublin http://www.kul.lublin.pl/ -15193 PL Christian Theological Academy in Warszaw http://www.qdnet.pl/ChAT/ -15194 PL College of Computer Science in Lodz http://www.wsinf.edu.pl/ -15195 PL Collegium Civitas http://www.collegium.edu.pl/ -15196 PL European Academy of Arts in Warsaw http://www.eas.edu.pl/ -15197 PL Fine Arts Academy in Gdansk http://www.asp.gda.pl/ -15198 PL Fine Arts Academy in Katowice http://www.aspkat.edu.pl/ -15199 PL Fine Arts Academy in Poznan http://www.asp.poznan.pl/ -15200 PL Fine Arts Academy in Warsaw http://www.asp.waw.pl/ -15201 PL Fine Arts Academy in Wroclaw http://www.asp.wroc.pl/ -15202 PL Fine Arts Academy "Jan Matejko" in Cracow http://149.156.19.10/ -15203 PL Fine Arts Academy “Wladyslaw Strzeminski” in Lodz http://www.asp.lodz.pl/ -15204 PL French Institute of Management http://www.ifg.com.pl/ -15205 PL Gdansk Management College http://www.wsz.pl/ -15206 PL Gdynia Maritime Academy http://www.wsm.gdynia.pl/ -15207 PL Higher School o Business in Tarnow http://wsb.toi.tarnow.pl/ -15208 PL Higher School o Business/National Louis University(WSB/NLU) in Nowy Sacz http://www.wsb-nlu.edu.pl/ -15209 PL Jagiellonian University Cracow http://www.uj.edu.pl/ -15210 PL Józef Tyszkiewicz College of Business and Computer Science in Bielsko-Biala http://www.tyszkiewicz.edu.pl/ -15211 PL Józef Tyszkiewicz College of Business and Computer Science in Bielsko-Biala http://www.tyszkiewicz.edu.pl/ -15213 PL Lazarski School of Commerce and Law http://www.lazarski.pl/ -15214 PL Leon Kozminski Academy of Entrepreneurship and Mangement http://www.wspiz.edu.pl/ -15215 PL Leon Kozminski Academy of Entrepreneurship and Mangement in Warsaw http://www.wspiz.edu.pl/ -15216 PL Ludwik Solski State Academy of Theatre in Cracow http://www.pwst.krakow.pl/ -15217 PL Maria Curie-Sklodowska University Lublin http://www.umcs.lublin.pl/ -15218 PL Maria Grzegorzewska College for Special Education http://www.wsps.waw.pl/ -15219 PL Maritime University in Szczecin http://www.wsm.szczecin.pl/ -15220 PL Medical Academy in Bialystok http://www.amb.edu.pl/ -15221 PL Medical Academy in Gdansk http://www.amg.gda.pl/ -15222 PL Medical Academy in Lodz http://www.am.lodz.pl/ -15223 PL Medical Academy in Lublin http://www.am.lublin.pl/ -15224 PL Medical Academy in Warszawa http://www.amwaw.edu.pl/ -15225 PL Medical Academy in Wroclaw http://www.am.wroc.pl/ -15226 PL Medical Academy “Karol Marcinkowski” in Poznan http://www.usoms.poznan.pl/ -15227 PL Medical Academy “Ludwik Rydygier” in Bydgoszcz http://www.amb.bydgoszcz.pl/ -15228 PL Music Academy "Felix Nowowiejski" in Bydgoszcz http://www.amuz.bydgoszcz.pl/ -15229 PL Music Academy "Fryderyk Chopin" in Warszaw http://www.chopin.edu.pl/ -15230 PL Music Academy "Ignacy Jana Paderewski" in Poznan http://www.amuz.poznan.pl/ -15231 PL Music Academy in Cracow http://www.amuz.krakow.pl/ -15232 PL Music Academy in Lodz http://www.amuz.lodz.pl/ -15233 PL Music Academy "Karol Lipinski" in Wroclaw http://www.amuz.wroc.pl/ -15234 PL Music Academy "Karol Szymanowski" in Katowice http://www.am.katowice.pl/ -15235 PL Music Academy "Stanislaw Moniuszko" in Gdansk http://www.amuz.gda.pl/ -15236 PL Nicolaus Copernicus University of Torun http://www.uni.torun.pl/ -15237 PL Pawel Wlodkowic University College in Plock http://www.wlodkowic.pl/ -15238 PL Pedagogical University of Bydgoszcz http://www.wsp.bydgoszcz.pl/ -15239 PL Pedagogical University of Czestochowa http://www.wsp.czest.pl/ -15240 PL Pedagogical University of Kielce http://www.pu.kielce.pl/ -15241 PL Pedagogical University of Krakow http://www.wsp.krakow.pl/ -15242 PL Pedagogical University of Rzeszow http://www.univ.rzeszow.pl/ -15243 PL Pedagogical University of Slupsk http://www.wsp.slupsk.pl/ -15244 PL Pedagogical University of the Polish Association for Adult Education in Warsaw http://www.wsptwpwaw.edu.pl/ -15245 PL Pedagogical University of Zielona Gora http://www.wsp.zgora.pl/ -15246 PL Physical Education Academy "Eugeniusz Piasecki" in Poznan http://www.awf.poznan.pl/ -15247 PL Physical Education Academy in Katowice http://www.awf.katowice.pl/ -15248 PL Physical Education Academy in Wroclaw http://www.awf.wroc.pl/ -15249 PL Physical Education Academy "Jedrzej Sniadecki" in Gdansk http://www.awf.gda.pl/ -15250 PL Physical Education Academy "Jozef Pilsudski" in Warsaw http://www.awf.edu.pl/ -15251 PL Polish-Japanese Institute of Information Technology in Warsaw http://www.pjwstk.edu.pl/ -15252 PL Polish Open University in Warsaw (WSZ/POU) http://www.wsz-pou.edu.pl/ -15253 PL Polonia University in Czêstochowa http://www.ap.edu.pl/ -15254 PL Pomeranian Academy of Medicine in Szczecin http://www.pam.szczecin.pl/ -15255 PL Poznan School of Banking http://www.wsb.poznan.pl/ -15256 PL Poznan University of Life Sciences http://www.puls.edu.pl/ -15257 PL Ryszard Lazarski University of Commerce and Law in Warsaw http://www.wship.edu.pl/ -15258 PL School of Banking and Management in Cracow http://www.wszib.krakow.pl/ -15259 PL Silesian Academy of Medicine in Katowice http://www.slam.katowice.pl/ -15260 PL Silesian School of Economics and Languages http://www.gallus.pl/ -15261 PL Silesian Technical University of Gliwice http://www.polsl.gliwice.pl/ -15262 PL Staszic Pila College http://www.pwsz.pila.pl/ -15263 PL State Film, Television and Theatre Higher School “Leon Schiller” in Lodz http://www.filmowka.lodz.pl/ -15264 PL Teacher Training College of Revalidation, Rehabilitation and Physical Education http://www.nkrriwf.pl/ -15265 PL Technical University of Bialystok http://www.pb.bialystok.pl/ -15266 PL Technical University of Cracow http://www.pk.edu.pl/ -15267 PL Technical University of Czestochowa http://www.pcz.czest.pl/ -15268 PL Technical University of Gdansk http://www.pg.gda.pl/ -15269 PL Technical University of Kielce http://www.tu.kielce.pl/ -15270 PL Technical University of Koszalin http://www.tu.koszalin.pl/ -15271 PL Technical University of Lodz http://www.p.lodz.pl/ -15272 PL Technical University of Lublin http://www.pol.lublin.pl/ -15273 PL Technical University of Opole http://www.po.opole.pl/ -15274 PL Technical University of Poznan http://www.put.poznan.pl/ -15275 PL Technical University of Radom http://www.man.radom.pl/ -15276 PL Technical University of Rzeszow http://www.prz.rzeszow.pl/ -15277 PL Technical University of Szczecin http://www.tuniv.szczecin.pl/ -15278 PL Technical University of Warsaw http://www.pw.edu.pl/ -15279 PL Technical University of Wroclaw http://www.pwr.wroc.pl/ -15280 PL Technical University of Zielona Gora http://www.pz.zgora.pl/ -15281 PL University of Bialystok http://www.ub.edu.pl/ -15282 PL University of Finance and Management in Bialystok http://www.wsfiz.edu.pl/ -15283 PL University of Gdansk http://www.univ.gda.pl/ -15284 PL University of Information Technology and Management in Rzeszow http://www.wsiz.rzeszow.pl/ -15285 PL University of Insurance and Banking in Warsaw http://www.wsub.waw.pl/ -15286 PL University of Lodz http://www.uni.lodz.pl/ -15287 PL University of Lower Silesia of the Association for the Advancement of Education in Wroclaw. http://www.dswe.wroc.pl/ -15288 PL University of Management and Marketing http://www.wszim.edu.pl/ -15289 PL University of Opole http://www.uni.opole.pl/ -15290 PL University of Silesia http://www.us.edu.pl/ -15291 PL University of Szczecin http://www.univ.szczecin.pl/ -15292 PL University of Technology and Life Sciences http://www.utp.edu.pl/ -15293 PL University of Wamia and Masuria in Olsztyn http://www.uwm.edu.pl/ -15294 PL University of Warsaw http://www.uw.edu.pl/ -15296 PL University School of Physical Education http://www.awf.krakow.pl/ -15297 PL Walcz College http://www.pwsz.eu/ -15298 PL Warsaw School of Economics http://www.sgh.waw.pl/ -15299 PL Warsaw School of Information Technology http://www.wsisiz.edu.pl/ -15300 PL Warsaw School of Social Psychology http://www.swps.edu.pl/ -15301 PL West Pomeranian Business School in Szczecin http://www.zpsb.szczecin.pl/ -15302 PL Zachodniopomorska School of Science and Engineering http://www.zut.edu.pl/ -15303 PR Caribbean University http://www.caribbean.edu/ -15304 PR Centro de Estudios Avanzados de Puerto Rico y el Caribe http://www.ceaprc.org/ -15305 PR Pontificia Universidad Catolica de Puerto Rico http://www.pucpr.edu/ -15306 PR San Juan Bautista School of Medicine http://www.sanjuanbautista.edu/ -15307 PR Sistema Universitario Ana G. Méndez http://www.suagm.edu/ -15308 PR Universidad Central de Bayamón http://www.ucb.edu.pr/ -15309 PR Universidad Central del Caribe http://www.uccaribe.edu/ -15310 PR Universidad del Sagrado Corazon http://www.sagrado.edu/ -15311 PR Universidad del Turabo http://www.ut.pr/ -15312 PR Universidad de Puerto Rico http://www.upr.clu.edu/ -15313 PR Universidad de Puerto Rico, Aguadilla http://www.uprag.edu/ -15314 PR Universidad de Puerto Rico, Arecibo http://www.upra.edu/ -15315 PR Universidad de Puerto Rico, Bayamon http://www.uprb.edu/ -15316 PR Universidad de Puerto Rico, Carolina http://www.uprc.edu/ -15317 PR Universidad de Puerto Rico, Cayey http://www.cayey.upr.edu/ -15318 PR Universidad de Puerto Rico, Ciencias Medicas http://www.rcm.upr.edu/ -15319 PR Universidad de Puerto Rico, Humacao http://cuhwww.upr.clu.edu/ -15320 PR Universidad de Puerto Rico, Mayaguez http://www.uprm.edu/ -15321 PR Universidad de Puerto Rico, Ponce http://upr-ponce.upr.edu/ -15322 PR Universidad de Puerto Rico, Rio Pedras http://www.uprrp.edu/ -15323 PR Universidad de Puerto Rico, Utuado http://www.uprutuado.edu/ -15324 PR Universidad Interamericana de Puerto Rico http://www.inter.edu/ -15325 PR Universidad Interamericana de Puerto Rico, Bayamón http://www.bc.inter.edu/ -15326 PR Universidad Interamericana de Puerto Rico, San Germán http://www.sg.inter.edu/ -15327 PR Universidad Metropolitana http://www.suagm.edu/suagm/umet/ -15328 PR Universidad Politecnica de Puerto Rico http://www.pupr.edu/ -15329 PS Al-Aqsa University http://www.alaqsa.edu.ps/ -15330 PS Al-Azhar University of Gaza http://www.alazhar.edu.ps/ -15331 PS Al-Quds Open University http://www.qou.edu/ -15332 PS Al-Quds University - The Arab University in Jerusalem http://www.alquds.edu/ -15333 PS An-Najah National University http://www.najah.edu/ -15334 PS Arab American University - Jenin http://www.aauj.edu/ -15335 PS Bethlehem University http://www.bethlehem.edu/ -15336 PS Birzeit University http://www.birzeit.edu/ -15337 PS Hebron University http://www.hebron.edu/ -15338 PS Islamic University of Gaza http://www.iugaza.edu.ps/ -15339 PS Palestine Polytechnic University http://www.ppu.edu/ -15340 PS Palestine Technical College-Dier Elbalah http://www.ptcdb.edu.ps/ -15341 PS Palestine Technical University - Kadoorie http://www.ptuk.edu.ps/ -15342 PS Ummah University http://www.uou.edu.ps/ -15343 PS University College of Applied Sciences http://www.ucas.edu.ps/ -15344 PS University of Palestine http://www.up.edu.ps/ -15345 PT Academia Nacional Superior de Orquesta http://www.oml.pt/anso/ -15346 PT Escola Nautica Infante D. Henrique http://www.enautica.pt/ -15347 PT Escola Superior de Artes e Design http://www.esad.pt/ -15348 PT Escola Superior de Hotelaria e Turismo do Estoril http://www.eshte.pt/ -15349 PT European University Portugal http://www.europeanuniversity.pt/ -15350 PT Instituto de Artes Visuais, Design e Marketing - IADE http://www.iade.pt/ -15351 PT Instituto Piaget http://www.ipiaget.org/ -15352 PT Instituto Politécnico da Guarda http://www.ipg.pt/ -15353 PT Instituto Politécnico de Beja http://www.ipbeja.pt/ -15354 PT Instituto Politécnico de Bragança http://www.ipb.pt/ -15355 PT Instituto Politécnico de Castelo Branco http://www.ipcb.pt/ -15356 PT Instituto Politécnico de Coimbra http://www.ipc.pt/ -15357 PT Instituto Politécnico de Leiria http://www.iplei.pt/ -15358 PT Instituto Politécnico de Lisboa http://www.ipl.pt/ -15359 PT Instituto Politécnico de Portalegre http://www.ipportalegre.pt/ -15360 PT Instituto Politécnico de Santarém http://www.ipsantarem.pt/ -15361 PT Instituto Politécnico de Setúbal http://www.ips.pt/ -15362 PT Instituto Politécnico de Tomar http://www.ipt.pt/ -15363 PT Instituto Politécnico de Viana do Castelo http://www.ipvc.pt/ -15364 PT Instituto Politécnico do Cávado e do Ave http://www.ipca.pt/ -15365 PT Instituto Politecnico do Porto http://www.ipp.pt/ -15366 PT Instituto Superior Bissaya Barreto http://www.isbb.pt/ -15367 PT Instituto Superior D. Afonso III - INUAF http://www.inuaf-studia.pt/ -15368 PT Instituto Superior de Assistentes e Intérpretes http://www.isai.pt/ -15369 PT Instituto Superior de Ciências do Trabalho e da Empresa http://www.iscte.pt/ -15370 PT Instituto Superior de Ciências Educativas http://www.pedago.pt/isce.htm -15371 PT Instituto Superior de Ciências Empresariais e de Turismo http://www.iscet.pt/ -15372 PT Instituto Superior de Entre Douro e Vouga http://www.isvouga.com/ -15373 PT Instituto Superior de Gestão - ISG http://www.isg.pt/ -15374 PT Instituto Superior de Informática e Gestão http://www.cocite.pt/ -15375 PT Instituto Superior de Línguas e Administração http://www.isla.pt/ -15376 PT Instituto Superior de Paços de Brandão http://www.ispab.pt/ -15377 PT Instituto Superior de Psicologia Aplicada http://www.ispa.pt/ -15378 PT Instituto Superior de Saúde do Alto Ave http://www.isave.edu.pt/ -15379 PT Instituto Superior de Tecnologias Avançadas - ISTEC http://www.istec.pt/ -15380 PT Instituto Superior de Transportes e Comunicações http://www.istp.pt/ -15381 PT Instituto Superior Novas Profissões - INP http://www.inp.pt/ -15382 PT Instituto Superior Politécnico Gaya http://www.ispgaya.pt/ -15383 PT Universidade Aberta Lisboa http://www.univ-ab.pt/ -15384 PT Universidade Atlântica http://www.uatla.pt/ -15385 PT Universidade Autónoma de Lisboa Luís de Camoes http://www.universidade-autonoma.pt/ -15386 PT Universidade Catolica Portuguesa http://www.ucp.pt/ -15387 PT Universidade da Beira Interior http://www.ubi.pt/ -15388 PT Universidade da Madeira http://www.uma.pt/ -15389 PT Universidade de Aveiro http://www.ua.pt/ -15390 PT Universidade de Coimbra http://www.uc.pt/ -15391 PT Universidade de Evora http://www.uevora.pt/ -15392 PT Universidade de Lisboa http://www.ul.pt/ -15393 PT Universidade de Tras-os-Montes e Alto Douro http://www.utad.pt/ -15394 PT Universidade do Algarve http://www.ualg.pt/ -15395 PT Universidade do Minho http://www.uminho.pt/ -15396 PT Universidade do Porto http://www.up.pt/ -15397 PT Universidade dos Acores http://www.uac.pt/ -15398 PT Universidade Fernando Pessoa http://www.ufp.pt/ -15399 PT Universidade Independente http://www.uni.pt/ -15400 PT Universidade Internacional Lisboa http://www.uinternacional.pt/ -15401 PT Universidade Lusiada http://www.ulusiada.pt/ -15402 PT Universidade Lusófona de Humanidades e Technologias http://www.ulusofona.pt/ -15403 PT Universidade Moderna de Lisboa http://www.umoderna.pt/ -15404 PT Universidade Nova de Lisboa http://www.unl.pt/ -15405 PT Universidade Portucalense Infante D. Henrique http://www.uportu.pt/ -15406 PT Universidade Tecnica de Lisboa http://www.utl.pt/ -15407 PY Universidad Americana http://www.uamericana.edu.py/ -15408 PY Universidad Autónoma de Asunción http://www.uaa.edu.py/ -15409 PY Universidad Autónoma del Paraguay http://www.uap.edu.py/ -15410 PY Universidad Católica Nuestra Senora de la Asunción http://www.uc.edu.py/ -15411 PY Universidad Columbia del Paraguay http://www.columbia.edu.py/ -15412 PY Universidad Comunera http://www.ucom.edu.py/ -15413 PY Universidad de la Integración de las Americas (UNIDAD) http://www.unida.edu.py/ -15414 PY Universidad del Cono Sur de las Américas http://www.ucsa.edu.py/ -15415 PY Universidad del Norte http://www.uninorte.edu.py/ -15416 PY Universidad Metropolitana de Asunción http://www.uma.edu.py/ -15417 PY Universidad Nacional de Asunción http://www.una.py/ -15418 PY Universidad Nacional del Este http://www.une.edu.py/ -15419 PY Universidad Privada del Este http://www.upe.edu.py/ -15420 QA Northwestern University In Qatar http://www.qatar.northwestern.edu/ -15421 QA University of Qatar http://www.qu.edu.qa/ -15422 RE Université de la Reunion http://www.univ-reunion.fr/ -15423 RO 1 December University of Alba Iulia http://www.uab.ro/ -15424 RO Academia de Studii Economice din Bucuresti http://www.ase.ro/ -15425 RO Academia Tehnica Militara http://www.mta.ro/ -15426 RO Academy of Arts "George Enescu" Iasi http://www.arteiasi.ro/ -15427 RO Academy of Music "Georghe Dima" Cluj-Napoca http://www.amgd.eu/ -15428 RO AISTEDA http://www.aistedaab.ro/ -15429 RO Babes-Bolyai University of Cluj-Napoca http://www.ubbcluj.ro/ -15430 RO Banat's University of Agricultural Sciences http://www.usab-tm.ro/ -15431 RO Constantin Brancoveanu University Pitesti http://www.univcb.ro/ -15432 RO Emanuel University http://www.emanuel.ro/ -15433 RO Institute of Architecture "Ion Mincu" Bucharest http://www.iaim.ro/ -15434 RO Maritime University Constanta http://www.universitateamaritima.ro/ -15435 RO National Academy for Physical Education and Sports Bucharest http://www.anefs-edu.ro/ -15436 RO National School of Political and Administrative Studies Bucharest http://www.snspa.ro/ -15437 RO National University of Arts http://www.unarte.ro/ -15438 RO National University of Music http://www.unmb.ro/ -15439 RO National University of Theater and Film Arts http://www.unatc.ro/ -15440 RO North University of Baia Mare http://www.ubm.ro/ -15441 RO Oradea University http://www.oradeauniversity.com -15442 RO Petru Maior University of Targu Mures http://www.upm.ro/ -15443 RO Romanian-American University http://www.rau.ro/ -15444 RO Spiru Haret University http://www.spiruharet.ro/ -15445 RO Targu-Mures University of Theatre http://www.uat.ro/ -15446 RO Technical University of Civil Engineering Bucharest http://www.utcb.ro/ -15447 RO Technical University of Cluj-Napoca http://www.utcluj.ro/ -15448 RO Technical University of Iasi http://www.tuiasi.ro/ -15449 RO Technical University of Timisoara http://www.utt.ro/ -15450 RO Universitatea de Vest "Vasile Goldiş" http://www.uvvg.ro/ -15451 RO University "Aurel Vlaicu" Arad http://www.uav.ro/ -15452 RO University Lucian Blaga of Sibiu http://www.ulbsibiu.ro/ -15453 RO University of Agriculture and Veterinary Medicine Bucharest http://www.usab.ro/ -15454 RO University of Agriculture and Veterinary Medicine Cluj-Napoca http://www.usamvcluj.ro/ -15455 RO University of Agriculture and Veterinary Medicine Iasi http://www.univagro-iasi.ro/ -15456 RO University of Agriculture and Veterinary Medicine Timisoara http://www.usab-tm.ro/ -15457 RO University of Art and Design Cluj-Napoca http://www.uartdcluj.ro/ -15458 RO University of Bacau http://www.ub.ro/ -15459 RO University of Bucharest http://www.unibuc.ro/ -15460 RO University of Constanta http://www.univ-ovidius.ro/ -15461 RO University of Constanta Medical School http://www.ovidunivconstanta-edu.org/ -15462 RO University of Craiova http://www.central.ucv.ro/ -15464 RO University of Iasi http://www.uaic.ro/ -15465 RO University of Medicine and Pharmacology of Oradea http://www.oradeauniversity.com/ -15466 RO University of Medicine and Pharmacy of Bucharest http://www.univermed-cdgm.ro/ -15467 RO University of Medicine and Pharmacy of Cluj-Napoca http://www.umfcluj.ro/ -15468 RO University of Medicine and Pharmacy of Iasi http://www.umfiasi.ro/ -15469 RO University of Medicine and Pharmacy of Targu Mures http://www.umftgm.ro/ -15470 RO University of Medicine and Pharmacy of Timisoara http://www.umft.ro/ -15471 RO University of Oradea http://www.uoradea.ro/ -15472 RO University of Petrosani http://www.upet.ro/ -15473 RO University of Pitesti http://www.upit.ro/ -15474 RO University of Resita http://www.uem.ro/ -15475 RO University of Sibiu http://www.sibiu.ro/ -15476 RO University of Suceava http://www.usv.ro/ -15477 RO University of Targu Jiu http://www.utgjiu.ro/ -15478 RO University Oil- Gas Ploiesti http://www.upg-ploiesti.ro/ -15479 RO University "Petre Andrei" Iasi http://www.upa.ro/ -15480 RO University Politehnica of Bucharest http://www.pub.ro/ -15481 RO University "Titu Maiorescu" http://www.utm.ro/ -15482 RO University "Transilvany" of Brasov http://www.unitbv.ro/ -15483 RO Valahia University of Targoviste http://www.valahia.ro/ -15484 RO West University of Timisoara http://www.uvt.ro/ -15485 RS Drzavni Univerzitet u Novom Pazaru http://www.np.ac.rs/ -15486 RS European University http://www.eu.ac.rs/ -15487 RS International University of Novi Pazar http://www.uninp.edu.rs/ -15488 RS Megatrend University of Applied Sciences http://www.megatrend-edu.net/ -15489 RS Metropolitan University http://www.metropolitan.edu.rs/ -15490 RS Privredna Akademija (Business Academy) http://www.privrednaakademija.edu.rs/ -15491 RS Singidunum University http://www.singidunum.edu.rs/ -15492 RS University of Belgrade http://www.bg.ac.rs/ -15493 RS University of Fine Arts Belgrade http://www.arts.bg.ac.rs/ -15494 RS University of Kragujevac http://www.kg.ac.rs/ -15495 RS University of Nis http://www.ni.ac.rs/ -15496 RS University of Novi Sad http://www.uns.ac.rs/ -15497 RS University of Priština http://www.pr.ac.rs/ -15498 RU Academy of Management and Entrepreneurship http://www.ame.ru/ -15499 RU Adygeja State University http://www.adygnet.ru/ -15500 RU Altai State Medical University http://www.asmu.ru/ -15501 RU Altai State Technical University http://www.astu.secna.ru/ -15502 RU Altai State University http://www.asu.ru/ -15503 RU Amur State University http://www.amursu.ru/ -15504 RU Arhangelsk State Technical University http://www.agtu.ru/ -15505 RU Astrahan State Medical Academy http://agma.astranet.ru/ -15506 RU Astrahan State Technical University http://www.astu.org/ -15507 RU Astrakhan State University http://www.aspu.ru/ -15508 RU Baikal National University of Economics and Law http://www.isea.ru/ -15509 RU Baltic State Technical University http://www.voenmeh.ru/ -15510 RU Bashkir State Agrarian University http://www.bashedu.ru/vuz/bgau_e.htm -15511 RU Bashkir State Medical University http://www.bashedu.ru/vuz/bgmu_e.htm -15512 RU Bashkir State Pedagogical University named After M. Akmullah http://www.bspu.ru/ -15513 RU Bashkir State University http://www.bashedu.ru/ -15514 RU Bauman Moscow State Technical University http://www.bmstu.ru/ -15515 RU Belgorod State Agricultural Academy http://www.bsaa.ru/ -15516 RU Belgorod State Technical University http://www.bstu.ru/ -15517 RU Belgorod State University http://www.bsu.edu.ru/ -15518 RU Birsk State Pedagogical Institute http://www.bashedu.ru/vuz/birskgpi_e.htm -15519 RU Biysk State Padagogical University after V.M. Shukshin http://www.bigpi.biysk.ru/wwwsite/ -15520 RU Bratsk State Technical University http://www.brstu.ru/ -15521 RU Brjansk State Technical University http://www.tu-bryansk.ru/ -15522 RU Burjat State University http://www.bsu.burnet.ru/ -15523 RU Cheljabinsk State Institute of Teacher Training http://cspi.urc.ac.ru/ -15524 RU Cheljabinsk State University http://www.csu.ac.ru/ -15525 RU Cheljabinsk University of Agricultural Engineering http://www.urc.ac.ru/Universities/AGRO/ -15526 RU Chuvash State University http://www.chuvsu.ru/ -15527 RU Dagestan State University http://www.dgu.ru/ -15528 RU Don State Agrarian University http://www.dongau.ru/ -15529 RU Don State Technical University http://www.dstu.edu.ru/ -15530 RU Dubna International University for Nature, Society and Man http://www.uni-dubna.ru/ -15531 RU East-Siberian State Institute of Culture http://www.vsgaki.burnet.ru/ -15532 RU East-Siberian State University http://www.vsgtu.eastsib.ru/ -15533 RU East-Siberian State University of Technology http://www.esstu.ru/ -15534 RU European University at St.Petersburg http://www.eu.spb.ru/ -15535 RU Far Easten State University of Humanities http://www.khspu.ru/ -15536 RU Far Eastern State Technical Fisheries University http://www.dalrybvtuz.ru/ -15537 RU Far Eastern State Technical University http://www.festu.ru/ -15538 RU Far Eastern State University http://www.dvgu.ru/ -15539 RU Far East State Transport University http://www.dvgups.ru/ -15540 RU Finance Academy http://www.fa.ru/ -15541 RU Gnesins Russian Academy of Music http://www.gnesin-academy.ru/ -15542 RU Gorno-Altaisk State University http://www.gasu.ru/ -15543 RU Gubkin Russian State University of Oil and Gas http://www.gubkin.ru/ -15544 RU Herzen State Pedagogical University of Russia http://www.herzen.spb.ru/ -15545 RU Higher School of Economics http://www.hse.ru/ -15546 RU Immanuel Kant State University of Russia http://www.kantiana.ru/ -15547 RU I.M. Sechenov Moscow Medical Academy http://www.mma.ru/ -15548 RU Institute for the Economy in Transition http://www.iet.ru/ -15549 RU Institute of Business and Politics http://www.ibp-moscow.ru/ -15550 RU Institute of Management and Economy http://www.ime.ru/ -15551 RU International Banking Institute, St. Petersburg http://www.ibi.spb.ru/ -15552 RU International East-European University http://www.ieeu.udm.ru/ -15553 RU International University of Engineering, Moscow http://www.miu.ru/ -15554 RU International University of Fundamental Studies, St. Petersburg http://www.iufs.edu/ -15555 RU Irkutsk State Academy of Economics http://www.isea.irk.ru/ -15556 RU Irkutsk State Technical University http://www.istu.irk.ru/ -15557 RU Irkutsk State University http://www.isu.ru/ -15558 RU Ivanovo State Academy of Medicine http://isma.indi.ru/ -15559 RU Ivanovo State Power University http://www.ispu.ru/ -15560 RU Ivanovo State Textile Academy http://education.ivanovo.ru:8101/IGTA/ -15561 RU Ivanovo State University http://www.ivanovo.ac.ru/ -15562 RU Ivanovo State University of Chemistry and Technology http://www.isuct.ru/ -15563 RU Izhevsk State Technical University http://www.istu.ru/ -15564 RU Jewish University in Moscow http://www.jum.ru/ -15565 RU Kabardino-Balkarian State University http://www.kbsu.ru/ -15566 RU Kaliningrad State Technical University http://www.klgtu.ru/ -15567 RU Kalmyk State University http://www.kalmsu.ru/ -15568 RU Kaluga State Pedagogical University http://kspu.kaluga.ru/ -15569 RU Kamchatka State University Vitus Bering http://www.kamgu.ru/ -15570 RU Karelian State Pedagogical University http://kspu.ptz.ru/ -15571 RU Kazan State Academy of Architecture and Civil Engineering http://www.ksaba.ru/ -15572 RU Kazan State Finance and Economics Institute http://www.ksfei.ru/ -15573 RU Kazan State Music Conservatory http://www.kazanconservatory.ru/ -15574 RU Kazan State Pedagogical University http://www.kgpu.ru/ -15575 RU Kazan State University http://www.ksu.ru/ -15576 RU Kazan State University of Medicine http://www.kgmu.kcn.ru/ -15577 RU Kazan State University of Technology http://www.kai.ru/ -15578 RU Kemerovo State University http://www.kemsu.ru/ -15579 RU Khabarovsk State Academy of Economics and Law http://www.ael.ru/ -15580 RU Khabarovsk State University of Technology http://www.khstu.ru/ -15581 RU Komsomolsk-on-Amur State Technical University http://www.knastu.ru/ -15582 RU Kostroma State Technological University http://www.kstu.edu.ru/ -15583 RU Krasnoyarsk State Technical University http://www.kgtu.runnet.ru/ -15584 RU Kuban State University http://www.kubsu.ru/ -15585 RU Kuban State University of Agriculture http://www.kubagro.ru/ -15586 RU Kuban State University of Technology http://www.kubstu.ru/ -15587 RU Kurgan International University http://www.kiu.ru/ -15588 RU Kursk State Medical University http://www.ksmu.kursknet.ru/ -15589 RU Kursk State Technical University http://www.kstu.kursk.ru/ -15590 RU Kursk State University http://www.kursk-uni.ru/ -15591 RU Kuzbass State Technical University http://www.kuzstu.ac.ru/ -15592 RU Linguistic University of Nizhny Novgorod http://www.lunn.sci-nnov.ru/ -15593 RU Lipeck State Technical University http://www.stu.lipetsk.ru/ -15594 RU Magnitogorsk State University http://www.masu.ru/ -15595 RU Marij State Technical University http://www.marstu.mari.ru/ -15596 RU Marij State University http://margu.mari.ru/ -15597 RU Maxim Gorky Institute of Literature http://filine.centro.ru/Gorky/ -15598 RU Mendeleev Russian University of Chemical Technology http://www.muctr.edu.ru/ -15599 RU Modern Institute of Managament http://miom.org/ -15600 RU Modern University for the Humanities http://www.muh.ru/ -15601 RU Mordovian State University http://www.mrsu.ru/ -15602 RU Moscow External University of the Humanities http://www.chat.ru/~megu/ -15603 RU Moscow Institute of Physics and Technology http://www.mipt.ru/ -15604 RU Moscow International Higher Business School (MIRBIS) http://www.mirbis.ru/ -15605 RU Moscow P. I. Tchaikovsky Conservatory http://www.mosconsv.ru/ -15606 RU Moscow Power Engineering Institute (Technical University) http://www.mpei.ac.ru/ -15607 RU Moscow State Academy of Applied Biotechnology http://www.msaab.ru/ -15608 RU Moscow State Automobile and Road Technical University http://www.madi.ru/ -15609 RU Moscow State Industrial University http://www.msiu.ru/ -15610 RU Moscow State Institute of International Relations MFA Russia (MGIMO-University) http://www.mgimo.ru/ -15611 RU Moscow State Institute of Radiotechnics, Electronics and Automation (Technical University) http://www.mirea.ru/ -15612 RU Moscow State Institute of Steel and Alloys http://www.misis.ru/ -15613 RU Moscow State Technical University of Civil Aviation http://www.mstuca.ru/ -15614 RU Moscow State Textile University A.N. Kosygin http://www.msta.ac.ru/ -15615 RU Moscow State University http://www.msu.ru/ -15616 RU Moscow State University M.V. Lomonosov http://www.msu.ru/ -15617 RU Moscow State University of Civil Engineering http://mgsu.norna.ru/ -15618 RU Moscow State University of Commerce http://www.rsute.ru/ -15619 RU Moscow State University of Culture http://www.msuc.edu.ru/ -15620 RU Moscow State University of Ecological Engineering http://www.msuie.ru/ -15621 RU Moscow State University of Economics, Statistics and Informatics http://www.mesi.ru/ -15622 RU Moscow State University of Environmental Engineering http://www.msuee.ru/ -15623 RU Moscow State University of Forestry Engineering http://www.mgul.ac.ru/ -15624 RU Moscow State University of Geodesy and Cartography http://www.miigaik.ru/ -15625 RU Moscow State University of Railway Transport http://www.miit.ru/ -15626 RU Moscow State University of Technology (Stankin) http://www.stankin.ru/ -15627 RU Moscow Technical University of Informatics and Communication http://www.mtuci.ru/ -15628 RU Moscow University Touro http://www.touro.ru/ -15629 RU Murmansk State Technical University http://www.mstu.edu.ru/ -15630 RU National Research University of Electronic Technology http://www.miet.ru/ -15631 RU Nayanova University http://www.nayanova.edu/ -15632 RU Nevsky Institute of Language and Culture http://www.nilc.spb.ru/ -15633 RU New Economic School http://www.nes.ru/ -15634 RU NGO Vladikavkaz Institute of Economics, Management, and Law http://www.vieup.ru/ -15635 RU Nizhny Novgorod State Academy of Medicine http://www.n-nov.mednet.com/ -15636 RU Nizhny Novgorod State Architectural - Building University http://www.ngasu.sci-nnov.ru/ -15637 RU Nizhny Novgorod State Technical University http://www.nntu.sci-nnov.ru/ -15638 RU Nizhny Novgorod State University http://www.unn.ac.ru/ -15639 RU Northern State Medical University http://www.nsmu.ru/ -15640 RU North Ossetian State University http://www.nosu.ru/ -15641 RU North-West State Technical University http://www.nwpi.ru/ -15642 RU Novgorod State University http://www.novsu.ac.ru/ -15643 RU Novosibirsk State Academy of Economics and Mangement http://cit.drbit.com.ru/ -15644 RU Novosibirsk State Agricultural University http://www.nsau.edu.ru/ -15645 RU Novosibirsk State Medical Academy http://www.medin.nsc.ru/ -15646 RU Novosibirsk State Music Academy M. Glinka http://www.conservatoire.ru/ -15647 RU Novosibirsk State Technical University http://www.nstu.ru/ -15648 RU Novosibirsk State University http://www.nsu.ru/ -15649 RU Obninsk State Technical University for Nuclear Power Engineering http://www.iate.obninsk.ru/ -15650 RU Omsk State Agrarian University http://www.omgau.ru/ -15651 RU Omsk State Medicical Academy http://www.omsk-osma.ru/ -15652 RU Omsk State Pedagogical University http://www.omsk.edu/ -15653 RU Omsk State Technical University http://www.omgtu.ru/ -15654 RU Omsk State Transport University http://www.omgups.ru/ -15655 RU Omsk State University http://www.univer.omsk.su/ -15656 RU Orenburg State University http://www.osu.ru/ -15657 RU Oriental University http://www.orun.ru/ -15658 RU Penza State University http://www.pnzgu.ru/ -15659 RU People' s Friendship University of Russia http://www.pfu.edu.ru/ -15660 RU Perm State Academy of Agriculture http://www.pstu.ac.ru/ -15661 RU Perm State Medical Academy http://www.psma.ru/ -15662 RU Perm State Pedagogical University http://www.pspu.ac.ru/ -15663 RU Perm State Pharmaceutical Academy http://www.psfa.ru/ -15664 RU Perm State Technical University http://www.pstu.ac.ru/ -15665 RU Perm State University http://www.psu.ru/ -15666 RU Petrozavodsk State University http://www.karelia.ru/psu/ -15667 RU Pjatigorsk State Linguistic University http://www.pglu.ru/ -15668 RU Plekhanov Russian Academy of Economics http://www.rea.ru/ -15669 RU Pomorsk State University http://www.pomorsu.ru/ -15670 RU Pomor State University http://www.pomorsu.ru/ -15671 RU Rostov State Medical University http://www.rsmu.da.ru/ -15672 RU Rostov State University http://www.rsu.ru/ -15673 RU Russian Academy of Arts http://www.rah.ru/ -15674 RU Russian Academy of Theatre Arts http://www.gitis.net/ -15675 RU Russian Customs Academy, Vladivostok Branch http://www.vfrta.ru/ -15676 RU Russian State Geological Prospecting University http://www.mgri-rggru.ru/ -15677 RU Russian State Hydrometeorological University http://www.rshu.ru/ -15678 RU Russian State Medical University http://www.rsmu.ru/ -15679 RU Russian State University for the Humanities http://www.rsuh.ru/ -15680 RU Ryazan State Pedagogical University http://www.ttc.ryazan.ru/ -15681 RU Rybinsk State Academy of Aviational Technology http://www.rgata.yaroslavl.ru/ -15682 RU Sakhalin State University http://www.sakhgu.sakhalin.ru/ -15683 RU Samara State Academy for Railway Transportation http://www.samiit.ru/ -15684 RU Samara State Academy of Architecture and Civil Engineering http://www.ssaba.smr.ru/ -15685 RU Samara State Aerospace University http://www.ssau.ru/ -15686 RU Samara State Agricultural Academy http://www.ssaa.ru/ -15687 RU Samara State Medical University http://www.samsmu.ru/ -15688 RU Samara State Technical University http://www.sstu.samara.ru/ -15689 RU Samara State University http://www.ssu.samara.ru/ -15690 RU Samara State University of Economics http://www.sseu.ru/ -15691 RU Samara State University of Teacher Training http://www.ssttu.samara.ru/ -15692 RU Saratov State Academy of Law http://www.sgap.ru/ -15693 RU Saratov State Agrarian University http://www.sgau.ru/ -15694 RU Saratov State Medical University http://www.med.sgu.ru/ -15695 RU Saratov State Socio-Economic University http://www.ssea.runnet.ru/ -15696 RU Saratov State Technical University http://www.sstu-edu.ru/ -15697 RU Saratov State University http://www.sgu.ru/ -15698 RU Siberian Academy of Public Services http://www.sapanet.ru/ -15699 RU Siberian State Industrial University http://sibsiu.kemerovo.su/ -15700 RU Siberian State Medical University http://www.ssmu.ru/ -15701 RU Siberian State Transport University http://www.stu.ru/ -15702 RU Siberian State University of Telecommunications and Informatics http://www.neic.nsk.su/ -15703 RU Skrjabin Moscow State Academy of Veterinary Medicine and Biotechnology http://www.mgavm.ru/ -15704 RU Smolensk Humanitarian University http://shu.smolensk.su/ -15705 RU Smolensk State Medical Academy http://www.sgma.info/ -15706 RU Smolny University http://www.smolny-un.spb.ru/ -15707 RU Southern Ural State University http://www.tu-chel.ac.ru/ -15708 RU State Maritine Academy http://www.gma.ru/ -15709 RU State University of Aerospace Technologies http://www.intstudy.mai.ru/ -15710 RU State University of Management http://www.guu.ru/ -15711 RU Stavropol State Technical University http://www.ncstu.ru/ -15712 RU Stavropol State University http://www.stavsu.ru/ -15713 RU Sterlitamak State Pedagogical Institute http://www.bashedu.ru/vuz/sgpi_e.htm -15714 RU St. Petersburg Institute of Arts and Restoration http://www.spbiir.ru/ -15715 RU St. Petersburg Institute of Sales Management and Economics http://www.spbtei.ru/ -15716 RU St. Petersburg Repin State Academic Institute of Painting Sculpture and Achitecture http://artacademy.spb.ru/ -15717 RU St. Petersburg State Academy for Engineering Economics (ENGECON) http://www.engec.ru/ -15718 RU St. Petersburg State Agrarian University http://www.spbgau.spb.ru/ -15719 RU St. Petersburg State Chemical Pharmaceutical Academy http://www.spcpa.ru/ -15720 RU St. Petersburg State Cinema and TV University http://www.gukit.ru/ -15721 RU St. Petersburg State Conservatory http://www.conservatory.ru/ -15722 RU St. Petersburg State Electrotechnical University http://www.eltech.ru/ -15723 RU St. Petersburg State Forest-Technical Academy http://www.ftacademy.ru/ -15724 RU St. Petersburg State Institute of Technology (Technological University) http://www.gti.spb.ru/ -15725 RU St. Petersburg State Marine Technical University http://www.smtu.ru/ -15726 RU St. Petersburg StateMechnikov Medical Academy http://www.spsmma.com/ -15727 RU St. Petersburg State Medical Academy http://www.mechnik.spb.ru/ -15728 RU St. Petersburg State Mining Institute (Technical University) http://www.spmi.edu.ru/ -15729 RU St. Petersburg State Mountain Institut http://www.gorny-ins.ru/ -15730 RU St. Petersburg State Pediatric Medical Academy http://www.gpma.ru/ -15731 RU St. Petersburg State Polytechnical University http://www.spbstu.ru/ -15732 RU St. Petersburg State Technical University http://www.unilib.neva.ru/ -15733 RU St. Petersburg State Technological University of Plant Polymers http://www.gturp.spb.ru/ -15734 RU St. Petersburg State Theatre Arts Academy http://www.tart.spb.ru/ -15735 RU St. Petersburg State University http://www.spbu.ru/ -15736 RU St. Petersburg State University of Aerospace Instrumentation http://www.suai.ru/ -15737 RU St. Petersburg State University of Architecture and Civil Engineering http://www.spbgasu.ru/ -15738 RU St. Petersburg State University of Civil Aviation http://www.academiaga.ru/ -15739 RU St. Petersburg State University of Culture and Arts http://www.spbguki.ru/ -15740 RU St. Petersburg State University of Culture and Arts http://www.spbguki.ru/ -15741 RU St. Petersburg State University of Economics and Finance http://www.uef.ru/ -15742 RU St. Petersburg State University of Engineering and Economics http://www.engec.ru/ -15743 RU St. Petersburg State University of Information Technologies, Mechanics and Optics http://www.ifmo.ru/ -15744 RU St. Petersburg State University of Technology and Design http://www.sutd.ru/ -15745 RU St. Petersburg State University of Telecommunication http://www.sut.ru/ -15746 RU St. Petersburg State University of Waterway Communications http://www.spbuwc.ru/ -15747 RU Surgut State University http://www.surgu.wsnet.ru/ -15748 RU Syktyvkar State University http://ssu.komi.com:8101/ -15749 RU Taganrog State Pedagogical Institute http://www.tgpi.ttn.ru/ -15750 RU Taganrog State University of Radioengineering http://www.tsure.ru/ -15751 RU Tambov State Technical University http://www.tstu.ru/ -15752 RU Timirjazev Moscow Academy of Agricultutre http://www.timacad.ru/ -15753 RU Togliatti State University http://www.tltsu.ru/ -15754 RU Tomsk Polytechnic University http://www.tpu.ru/ -15755 RU Tomsk State Pedagogical University http://www.tspu.edu.ru/ -15756 RU Tomsk State University http://www.tsu.ru/ -15757 RU Tomsk State University of Architecture and Building http://www.tsuab.ru/ -15758 RU Tomsk State University of Control Systems and Radioelectronics http://www.tusur.ru/ -15759 RU Tula State University http://www.tsu.tula.ru/ -15760 RU Tuva State University http://tuvsu.ru/ -15761 RU Tver State Medical Academy http://www.tsma.ru/ -15762 RU Tver State Technical University http://www.tstu.tver.ru/ -15763 RU Tver State University http://university.tversu.ru/ -15764 RU Tyumen State Agricultural Academy http://www.tgsha.ru/ -15765 RU Tyumen State University http://www.tsu.tmn.ru/ -15766 RU Tyumen State University of Gas and Oil http://www.tsogu.ru/ -15767 RU Udmurt State University http://www.uni.udm.ru/ -15768 RU Ufa State Aviation Technical University http://www.ugatu.ac.ru/ -15769 RU Ufa State Institute of Arts http://www.bashedu.ru/vuz/ugii_e.htm -15770 RU Ufa State Petroleum Technological University http://www.rusoil.net/ -15771 RU Ukhta State Technical University http://uii.sever.ru/ -15772 RU Ulyanovsk Higher School of Civil Aviation http://www.uvauga.ru/ -15773 RU Ulyanovsk State Agricultural Academy http://www.ugsha.ru/ -15774 RU Ulyanovsk State Pedagogical University http://www.ulspu.ru/ -15775 RU Ulyanovsk State Technical University http://www.ulstu.ru/ -15776 RU Ulyanovsk State University http://www.ulsu.ru/ -15777 RU Ural Academy of Public Administration http://www.uapa.ru/ -15778 RU Ural Gorkij State University http://www.usu.ru/ -15779 RU Ural State Academy of Architecture and Arts http://www.usaaa.ru/ -15780 RU Ural State Academy of Law http://www.usla.ru/ -15781 RU Ural State Academy of Mining and Geology http://www.usmga.ru/ -15782 RU Ural State Academy of Railway Transport http://www.usart.ru/ -15783 RU Ural State Conservatory http://www.uscon.ru/ -15784 RU Ural State Forestry Technical Academy http://www.usfea.ru/ -15785 RU Ural State Technical University http://www.ustu.ru/ -15786 RU Ural State University of Economics http://www.usue.ru/ -15787 RU Vaganova Academy of Russian Ballet http://www.kirovballet.com/vaganova.html -15788 RU Vladimir State University http://www.vlsu.ru/ -15789 RU Vladivostock State University of Economics http://www.vvsu.ru/ -15790 RU Volga State Academy of Water Transport http://www.aqua.sci-nnov.ru/ -15791 RU Volgograd Medical Academy http://www.avtlg.ru/~vlgmed/ -15792 RU Volgograd State Academy of Physical Education http://www.vgafk.ru/ -15793 RU Volgograd State Pedagogical University http://www.vspu.ru/ -15794 RU Volgograd State Technical University http://www.vstu.ru/ -15795 RU Volgograd State University http://www.volsu.ru/ -15796 RU Volgograd State University of Architecture and Civil Engineering (VolgGASU) http://www.vgasa.ru/ -15797 RU Vologda State Pedagogical University http://www.uni-vologda.ac.ru/ -15798 RU Voronezh State Academy of Technology http://www.vgta.vrn.ru/ -15799 RU Voronezh State Agricultural University http://www.vsau.ru/ -15800 RU Voronezh State Medical Academy http://www.vsma.info/ -15801 RU Voronezh State Pedagogical University http://www.vspu.ac.ru/ -15802 RU Voronezh State Technical University http://www.vorstu.ac.ru/ -15803 RU Voronezh State University http://www.vsu.ru/ -15804 RU Vyatka State Pedagogical University http://www.vspu.kirov.ru/ -15805 RU Yakutsk State University http://www.ysu.ru/ -15806 RU Yaroslavl International University of Business and New Technologies http://www.iubnt.yar.ru/ -15807 RU Yaroslavl State Medical Academy http://www.yma.ac.ru/ -15808 RU Yaroslavl State Pedagogical University http://www.yspu.yar.ru/ -15809 RU Yaroslavl State Technical University http://www.ystu.yar.ru/ -15810 RU Yaroslavl State Theatre Institute http://www.theatrins-yar.ru/ -15811 RU Yaroslavl State University http://www.uniyar.ac.ru/ -15812 RU Yelets State University http://www.elsu.ru/ -15813 RU Yugra State University http://www.ugrasu.ru/ -15814 RW Adventist University of Central Africa http://www.auca.ac.rw/ -15815 RW Higher Institute of Agriculture and Animal Husbandry http://www.isae.ac.rw/ -15816 RW Institut d'Agriculture, de Technologie et d'Education de Kibungo http://www.inatek.ac.rw/ -15817 RW Kigali Health Institute http://www.khi.ac.rw/ -15818 RW Kigali Independent University http://www.ulk.ac.rw/ -15819 RW Kigali Institute of Education http://www.kie.ac.rw/ -15820 RW Kigali Institute of Science & Technology http://www.kist.ac.rw/ -15821 RW National University of Rwanda http://www.nur.ac.rw/ -15822 RW School of Finance and Banking http://www.sfb.ac.rw/ -15823 RW Umutara Polytechnic http://www.umutarapolytech.ac.rw/ -15824 RW Université Catholique de Kabgayi http://www.uck.ac.rw/ -15825 SA Al-baha University http://www.bu.edu.sa/ -15826 SA Al-Batterjee Medical College http://www.bmcmedcollege.com/ -15827 SA Alfaisal University http://www.alfaisal.edu/ -15828 SA Al-Imam Mohamed Ibn Saud Islamic University http://www.imamu.edu.sa/ -15829 SA Aljouf University http://www.ju.edu.sa/ -15830 SA Alkharj University http://www.ku.edu.sa/ -15831 SA Al-Yamamah College http://www.alyamamah.edu.sa/ -15832 SA Arab Open University http://www.arabou.org.sa/ -15833 SA Batterjee Medical College http://www.bmc.edu.sa/ -15834 SA Buraydah College for Applied Medical Sciences http://www.bpc.edu.sa/ -15835 SA College of Busniess Admnistration http://www.cba.edu.sa/ -15836 SA College of Nursing and Allied Health Scinces http://www.ngha.med.sa/ -15837 SA College of Technology at Abha http://www.act.gotevot.edu.sa/ -15838 SA College of Technology at Dammam http://www.dct.gotevot.edu.sa/ -15839 SA College of Technology at Jazan http://www.tnmeyah.net/jct/ -15840 SA College of Technology at Jeddah http://www.jct.edu.sa/ -15841 SA College of Technology at Kharj http://kct.gotevot.edu.sa/ -15842 SA College of Technology at Riyadh http://www.rct.edu.sa/ -15843 SA College of Telecommunication & Information http://www.cti.edu.sa/ -15844 SA Dammam Community College http://www.dcc.edu.sa/ -15845 SA Dar al Hekma College http://www.daralhekma.edu.sa/ -15846 SA Dar Al-Uloom Colleges http://www.dau.edu.sa/ -15847 SA Effat College http://www.effatcollege.edu.sa/ -15848 SA Fahad Bin Sultan University http://www.fbsc.edu.sa/ -15849 SA Ibn Sina National College for Medical Studies http://www.ibnsina.edu.sa/ -15850 SA Institute of Public Administration http://www.ipa.edu.sa/ -15851 SA Islamic University of Medinah http://www.iu.edu.sa/ -15852 SA Jazan University http://www.jazanu.edu.sa/ -15853 SA Jubail Industrial College http://www.jic.edu.sa/ -15854 SA Jubail University College http://www.ucj.edu.sa/ -15855 SA King Abdul Aziz University http://www.kau.edu.sa/ -15856 SA King Abdullah University of Science and Technology http://www.kaust.edu.sa/ -15857 SA King Fahad University of Petroleum and Minerals http://www.kfupm.edu.sa/ -15858 SA King Fahd Security College http://www.kfsc.edu.sa/ -15859 SA King Faisal University http://www.kfu.edu.sa/ -15860 SA King Khaled University http://www.kku.edu.sa/ -15861 SA King Saud bin Abdulaziz University for Health Sciences http://www.ksau-hs.edu.sa/ -15862 SA King Saud University http://www.ksu.edu.sa/ -15863 SA Knowledge College for Science and Technology http://www.mcst.edu.sa/ -15864 SA Knowledge International University http://www.almaarifah.com/ -15865 SA Majmaah University http://www.mu.edu.sa/ -15866 SA Naif Arab University for Security Sciences http://www.nauss.edu.sa/ -15867 SA Najran University http://www.nu.edu.sa/ -15868 SA Northern Border University http://www.nbu.edu.sa/ -15869 SA Prince Mohammad Bin Fahd University http://www.pmu.edu.sa/ -15870 SA Princess Nora Bint Abdulrahman University http://www.rug.edu.sa/ -15871 SA Prince Sultan College for Tourism and Hotel Scinces http://www.pscabha.edu.sa/ -15872 SA Prince Sultan University http://www.psu.edu.sa/ -15873 SA Private College of Dentistry and Pharmacy http://www.pcdp.edu.sa/ -15874 SA Qassim Private College http://www.qc.edu.sa/ -15875 SA Qassim University http://www.qu.edu.sa/ -15876 SA Riyadh College of Dentistry and Pharmacy http://www.riyadh.edu.sa/ -15877 SA Saad College of Nursing and Allied Health Sciences http://www.saadcollege.com/ -15878 SA Saudi Electronic University http://www.seu.edu.sa/ -15879 SA Shaqra University http://www.su.edu.sa/ -15880 SA Taibah University http://www.taibahu.edu.sa/ -15881 SA Taif University http://www.tu.edu.sa/ -15882 SA Umm Al-Qura University http://www.uqu.edu.sa/ -15883 SA University of Dammam http://www.ud.edu.sa/ -15884 SA University of Hail http://www.uoh.edu.sa/ -15885 SA University of Tabuk http://www.ut.edu.sa/ -15886 SA Yanbu Industrial College http://www.yic.edu.sa/ -15887 SA Yanbu Technical Institute http://www.yti.edu.sa/ -15888 SA Yanbu University College http://www.yuc.edu.sa/ -15889 SB University of the South Pacific http://www.usp.ac.fj/ -15890 SC University of Seychelles http://www.unisey.ac.sc/ -15891 SC University of Seychelles - American Institute of Medicine http://www.usaim.edu/ -15892 SD Ahfad University for Women http://www.ahfad.edu.sd/ -15893 SD Al Fashir University http://www.fashir.edu.sd/ -15894 SD Al-Zaiem Al-Azhari University http://www.aau.edu.sd/ -15895 SD Bakht Er-Ruda University http://www.bakhtalruda.edu.sd/ -15896 SD Bayan College for Science & Technology http://www.bayantech.edu/ -15897 SD Blue Nile University http://www.bnu.edu.sd/ -15898 SD Canadian Sudanese College http://www.ccs.edu.sd/ -15899 SD Dalanj University http://www.dalanjuniversity.edu.sd/ -15900 SD Elrazi College Of Medical & Technological Sciences http://www.elrazicollege.net/ -15901 SD Gezira College of Technology http://www.geziracollege.edu.sd/ -15902 SD High Institute for Banking & Financial Studies http://www.hibfs.edu.sd/ -15903 SD International University of Africa (IUA) http://www.iua.edu.sd/ -15904 SD Kassala University http://www.kassalauni.edu.sd/ -15905 SD National College for Medical and Technical Studies http://www.nc.edu.sd/ -15906 SD National Ribat University http://www.ribat.edu.sd/ -15907 SD Neelain University http://www.neelain.edu.sd/ -15908 SD Nile Valley University http://www.nilevalley.edu.sd/ -15909 SD Omdurman Ahlia University http://www.oau.edu.sd/ -15910 SD Omdurman Islamic University http://www.oiu.edu.sd/ -15911 SD Open University of Sudan (OUS) http://www.ous.edu.sd/ -15912 SD Red Sea University http://www.rsu.edu.sd/ -15913 SD Shendi University http://www.ush.sd/ -15914 SD Sinnar University http://www.sinnaruniv.edu.sd/ -15915 SD Sudan Academy of Sciences http://www.sas-sd.net/ -15916 SD Sudan University for Science and Technology http://www.sustech.edu/ -15917 SD University of Dongola http://www.uofd.edu.sd/ -15918 SD University of El Imam El Mahdi University http://www.elmahdi.edu.sd/ -15919 SD University of Gadarif http://www.gaduniv.edu.sd/ -15920 SD University of Gezira http://www.uofg.edu.sd/ -15921 SD University of Holy Quran and Islamic Siences http://www.quran-unv.edu.sd/ -15922 SD University of Khartoum http://www.uofk.edu/ -15923 SD University of Kordofan http://www.kordofan.edu.sd/ -15924 SD University Of Medical Sciences & Technology (UMST) http://www.umst-edu.com/ -15925 SD University of Science and Technology http://www.ust.edu.sd/ -15926 SD Upper Nile University http://www.unu.edu.sd/ -15927 SE Blekinge Institute of Technology http://www.bth.se/ -15928 SE Chalmers University of Technology http://www.chalmers.se/ -15929 SE Dalarna University College http://www.du.se/ -15930 SE Free University Stockholm http://www.stockholm-fu.com/ -15931 SE Göteborg University http://www.gu.se/ -15932 SE Gotland University College http://www.hgo.se/ -15933 SE Halmstad University College http://www.hh.se/ -15934 SE Jönköping University College http://www.hj.se/ -15935 SE Jönköping University College of Health Sciences http://www.hj.se/hhj/ -15936 SE Kalmar University College http://www.hik.se/ -15937 SE Karlstad University http://www.kau.se/ -15938 SE Karolinska Institute Stockholm http://www.ki.se/ -15939 SE Linköping University http://www.liu.se/ -15940 SE Lulea University of Technology http://www.luth.se/ -15941 SE Lund University http://www.lu.se/ -15942 SE Mälardalen University http://www.mdh.se/ -15943 SE Malmö University College http://www.mah.se/ -15944 SE Mid-Sweden University http://www.miun.se/ -15945 SE Nordic School of Public Health http://www.nhv.se/ -15946 SE Örebro University http://www.oru.se/ -15947 SE Royal lnstitute of Technology http://www.kth.se/ -15948 SE School of Design and Crafts http://www.hdk.gu.se/ -15949 SE Södertörn University College http://www.sh.se/ -15950 SE Stockholm Institute of Education http://www.lhs.se/ -15951 SE Stockholm School of Economics http://www.hhs.se/ -15952 SE Stockholm University http://www.su.se/ -15953 SE Swedish University of Agricultural Sciences http://www.slu.se/ -15954 SE Umea University http://www.umu.se/ -15955 SE University College of Arts, Crafts and Design http://www.konstfack.se/ -15956 SE University College of Borås http://www.hb.se/ -15957 SE University College of Gävle http://www.hig.se/ -15958 SE University College of Kristianstad http://www.hkr.se/ -15959 SE University College of Skövde http://www.his.se/ -15960 SE University College of Trollhättan/Uddevalla http://www.htu.se/ -15961 SE Uppsala University http://www.uu.se/ -15962 SE Växjö University http://www.vxu.se/ -15963 SE World Maritime University http://www.wmu.se/ -15964 SG Aventis School of Management http://www.aventis.edu.sg/ -15965 SG Nanyang Technological University http://www.ntu.edu.sg/ -15966 SG National University of Singapore http://www.nus.edu.sg/ -15967 SG Singapore Institute of Management (SIM) http://www.sim.edu.sg/ -15968 SG Singapore Management University http://www.smu.edu.sg/ -15969 SG Taoist College Singapore http://www.taoistcollege.org.sg/ -15970 SI University of Ljubljana http://www.uni-lj.si/ -15971 SI University of Maribor http://www.uni-mb.si/ -15972 SI University of Nova Gorica http://www.ung.si/ -15973 SI University of Primorska http://www.upr.si/ -15974 SK Academy of Arts in Banská Bystrica http://www.aku.sk/ -15975 SK Academy of Fine Arts and Design in Bratislava http://www.vsvu.sk/ -15976 SK Armed Forces Academy of General Milan Rastislav Štefánik http://www.aos.sk/ -15977 SK Bratislava International School of Liberal Arts http://www.bisla.sk/ -15978 SK Catholic University in Ruzomberok http://www.ku.sk/ -15979 SK Catholic University in Ružomberok http://www.ku.sk/ -15980 SK College in Sládkovičovo http://www.vssladkovicovo.sk/ -15981 SK Comenius University in Bratislava http://www.uniba.sk/ -15982 SK International School of Management in Prešov http://www.ismpo.sk/ -15983 SK Janos Selye University http://www.selyeuni.sk/ -15984 SK Law University of Bratislava http://www.uninova.sk/ -15985 SK Matej Bel University in Banská Bystrica http://www.umb.sk/ -15986 SK Pavol Jozef Safarik University in Kosice http://www.upjs.sk/ -15987 SK Police Academy in Bratislava http://www.akademiapz.sk/ -15988 SK School of Management http://www.vsm.sk/ -15989 SK Slovak Medical University http:///www.szu.sk/ -15990 SK Slovak University of Agriculture in Nitra http://www.uniag.sk/ -15991 SK Slovak University of Technology in Bratislava http://www.stuba.sk/ -15992 SK St. Elizabeth’s College of Health and Social Sciences in Bratislava http://www.vssvalzbety.sk/ -15993 SK Technical Institute of Dubnica in Dubnica nad Váhom http://www.dti.sk/ -15994 SK Technical University in Kosice http://www.tuke.sk/ -15995 SK Technical University in Zvolen http://www.tuzvo.sk/ -15996 SK University Konstantina Filozov in Nitra http://www.ukf.sk/ -15997 SK University of Alexandra Dubček in Trenčín http://www.tnuni.sk/ -15998 SK University of Central Europe in Skalica http://www.sevs.sk/ -15999 SK University of Economics in Bratislava http://www.euba.sk/ -16000 SK University of Performing Arts in Bratislava http://www.vsmu.sk/ -16001 SK University of Presov http://www.unipo.sk/ -16002 SK University of St. Cyril and Methodius in Trnava http://www.ucm.sk/ -16003 SK University of SV Cyril and Methodius in Trnava http://www.ucm.sk/ -16004 SK University of Trnava http://www.truni.sk/ -16005 SK University of Veterinary Medicine in Kosice http://www.uvm.sk/ -16006 SK University of Zilinska http://www.uniza.sk/ -16007 SL Fourah Bay College, University of Sierra Leone http://fbcusl.8k.com/ -16008 SL LICCSAL Business College http://www.liccsalsl.org/ -16009 SL Njala University http://www.nu-online.com/ -16010 SL University of Sierra Leone http://www.tusol.org/ -16011 SM University of San Marino http://www.unirsm.sm/ -16012 SN L'Université de l'Entreprise http://www.afi-ue.sn/ -16013 SN Université Alioune Diop de Bambey http://www.bambey.univ.sn/ -16014 SN Universite Amadou Hampaté Ba http://www.uahb.sn/ -16015 SN Université Cheikh Anta Diop http://www.ucad.sn/ -16016 SN Université Dakar Bourguiba http://www.udb.sn/ -16017 SN Université de Thiès http://www.univ-thies.sn/ -16018 SN Université de Ziguinchor http://www.univ-zig.sn/ -16019 SN Université du Sahel http://www.unis.sn/ -16020 SN Université Euro-Afrique http://www.uea.edu.sn/ -16021 SN Université Gaston Berger Saint-Louis http://www.ugb.sn/ -16022 SO Amoud University http://www.amouduniversity.org/ -16023 SO Benadir University http://www.benadiruniversity.net/ -16024 SO Bosaso College http://www.bosasocollege.com/ -16025 SO East Africa University Bosaso http://www.eastafricauniversity.net/ -16026 SO East Somalia University http://www.eastsomaliauniversity.com/ -16027 SO Eelo American University http://www.eelouniversity.org/ -16028 SO Gollis University http://www.gollisuniversity.com/ -16029 SO Hiiraan University http://www.hiiraanuniversity.info/ -16030 SO Maakhir University http://maakhiruniversity.net/ -16031 SO Mogadishu University http://www.mogadishuuniversity.com/ -16032 SO Nugaal University http://www.nugaaluniversity.com/ -16033 SO Puntland State University http://www.puntlandstateuniversity.com/ -16034 SO Sanaag University of Science and Technology http://www.sanaaguniversity.com/ -16035 SO Somaliland University of Technology http://www.somtech.org/ -16036 SO University of Burao http://www.buraouniversity.com/ -16037 SO University of Hargeisa http://www.hargeisauniversity.net/ -16038 SO University of Somalia http://www.universityofsomalia.net/ -16039 SR Anton de Kom University http://www.uvs.edu/ -16040 SS University of Juba http://www.juba.edu.sd/ -16041 SS University of Northern Bahr El-Ghazal http://www.unbeg.edu.sd/ -16042 SV Universidad Albert Einstein http://www.uae.edu.sv/ -16043 SV Universidad Autónoma de Santa Ana http://www.unasa.edu.sv/ -16044 SV Universidad Capitain General Gerardo Barrios http://www.ugb.edu.sv/ -16045 SV Universidad Católica de Occidente http://www.unico.edu.sv/ -16046 SV Universidad Centroamericana "José Simeón Canas" http://www.uca.edu.sv/ -16047 SV Universidad Cristiana de las Asambleas de Dios http://www.ucad.edu.sv/ -16048 SV Universidad de El Salvador http://www.ues.edu.sv/ -16049 SV Universidad de Oriente http://www.univo.edu.sv/ -16050 SV Universidad de Sonsonate http://www.usonsonate.edu.sv/ -16051 SV Universidad Don Bosco http://www.cdb.edu.sv/ -16052 SV Universidad Dr. Andreas Bello http://www.unab.edu.sv/ -16053 SV Universidad Dr. Jose Matias Delgado http://www.ujmd.edu.sv/ -16054 SV Universidad Evangélica de El Salvador http://www.uees.edu.sv/ -16055 SV Universidad Francisco Gavidia http://www.ufg.edu.sv/ -16056 SV Universidad Isaac Newton http://www.usin.edu.sv/ -16057 SV Universidad Luterana Salvadorena http://www.netcomsa.com/uls/ -16058 SV Universidad Modular Abierta http://www.uma.edu.sv/ -16059 SV Universidad Monsenor Oscar Arnulfo Romeo http://www.umoar.edu.sv/ -16060 SV Universidad Nueva San Salvador http://www.unssa.edu.sv/ -16061 SV Universidad Panamericana de San Salvador http://www.upan.edu.sv/ -16062 SV Universidad Pedagógica de El Salvador http://www.universidadpedagogica.com/ -16063 SV Universidad Politécnica de El Salvador http://www.upes.edu.sv/ -16064 SV Universidad Salvadorena "Alberto Masferrer" http://www.usam.edu.sv/ -16065 SV Universidad Técnica Latinoamericana http://www.utla.edu.sv/ -16066 SV Universidad Tecnológica de El Salvador http://www.utec.edu.sv/ -16067 SY Al-Baath University http://www.albaath-univ.edu.sy/ -16068 SY Al-Wataniya Private University http://www.wpu.edu.sy/ -16069 SY Arab European University http://www.aiu.edu.sy/ -16070 SY Damascus University http://www.damascusuniversity.edu.sy/ -16071 SY Higher Institute of Business Administration http://www.hiba.edu.sy/ -16072 SY International University for Science & Technology http://www.iust.edu.sy/ -16073 SY Ittihad Private University http://www.ipu.edu.sy/ -16074 SY Mamoun Private University for Science and Technology http://www.must.edu.sy/ -16075 SY Syrian International Private University for Science & Technology http://www.siust.edu.sy/ -16076 SY Syrian Virtual University http://www.svuonline.org/ -16077 SY Tishreen University http://www.tishreen.edu.sy/ -16078 SY University of Aleppo http://www.alepuniv.edu.sy/ -16079 SY University of Kalamoon http://www.uok.edu.sy/ -16080 SY Wadi International University http://www.wiu.edu.sy/ -16081 SY Yarmouk Private University http://www.ypu.edu.sy/ -16082 SZ University of Swaziland http://www.uniswa.sz/ -16083 TC Charisma University http://www.charismauniversity.org/ -16084 TD Université de N'Djamena http://www.univ-ndjamena.org/ -16085 TG Université de Lomé http://www.univ-lome.tg/ -16086 TH Asian Institute of Technology http://www.ait.ac.th/ -16087 TH Asian University of Science and Technology http://www.asianust.ac.th/ -16088 TH Assumption University of Thailand http://www.au.edu/ -16089 TH Bangkok University http://www.bu.ac.th/ -16090 TH Burapha University http://www.buu.ac.th/ -16091 TH Chaopraya University http://www.cpu.ac.th/ -16092 TH Chiang Mai Rajabhat University http://www.cmru.ac.th/ -16093 TH Chiang Mai University http://www.chiangmai.ac.th/ -16094 TH Chiang Mai Vocational College http://www.cmvc.ac.th/ -16095 TH Chulalongkorn University http://www.chula.ac.th/ -16096 TH Dhurakijpundit University http://www.dpu.ac.th/ -16097 TH Eastern Asia University http://www.eau.ac.th/ -16098 TH Engineering Faculty of Asian University http://www.efau.org/ -16099 TH Hatyai University http://www.hu.ac.th/ -16100 TH Huachiew Chalermprakiet University http://www.hcu.ac.th/ -16101 TH International Buddhist College http://www.ibc.ac.th/ -16102 TH Kasem Bundit University http://www.kbu.ac.th/ -16103 TH Kasetsart University http://www.ku.ac.th/ -16104 TH Khon Kaen University http://www.kku.ac.th/ -16105 TH King Mongkut's University of Technology Ladkrabang http://www.kmitl.ac.th/ -16106 TH King Mongkut's University of Technology North Bangkok http://www.kmutnb.ac.th/ -16107 TH King Mongkut's University of Technology Thonburi http://www.kmutt.ac.th/ -16108 TH Krirk University http://www.krirk.ac.th/ -16109 TH Lampang College of Commerce and Technology http://www.lcct.ac.th/ -16110 TH Lampang Rajabhat University http://www.lpru.ac.th/ -16111 TH Lampang Vocational College http://www.lampangvc.ac.th/ -16112 TH Lamphun College of Agriculture and Technology http://www.lcat.ac.th/ -16113 TH Mae Fah Luang University http://www.mfu.ac.th/ -16114 TH Maejo University http://www.mju.ac.th/ -16115 TH Mahachulalongkorn Buddhist University http://www.mcu.ac.th/ -16116 TH Mahamakut Buddhist University http://www.mbu.ac.th/ -16117 TH Mahanakorn University of Technology http://www.mut.ac.th/ -16118 TH Mahasarakham University http://www.msu.ac.th/ -16119 TH Mahidol University http://www.mahidol.ac.th/ -16120 TH Mahidol University International College http://www.muic.mahidol.ac.th/ -16121 TH Naresuan University http://www.nu.ac.th/ -16122 TH National Institute of Development Administration http://www.nida.ac.th/ -16123 TH Nivadhana University http://www.nivadhana.ac.th/ -16124 TH Pathumthani University http://www.ptu.ac.th/ -16125 TH Payap University Chaiang Mai http://www.payap.ac.th/ -16126 TH Phranakhon Si Ayutthaya Rajabhat University http://www.aru.ac.th/ -16127 TH Prince of Songkla University http://www.psu.ac.th/ -16128 TH Rajamangala University of Technology, Lanna Chiang Rai http://chiangraicampus.rmutl.ac.th/ -16129 TH Rajamangala University of Technology, Lanna Nan http://www.nan.rmutl.ac.th/ -16130 TH Rajamangala University of Technology, Phra Nakhon http://www.rmutp.ac.th/ -16131 TH Ramkhamhaeng University http://www.ru.ac.th/ -16132 TH Rangsit University http://www.rsu.ac.th/ -16133 TH Shinawatra University http://www.shinawatra.ac.th/ -16134 TH Siam Technology College http://www.siamtechu.net/ -16135 TH Siam University http://www.siam.edu/ -16136 TH Silpakorn University http://www.su.ac.th/ -16137 TH South-East Asia University http://www.sau.ac.th/ -16138 TH Srinakharinwirot University http://www.swu.ac.th/ -16139 TH Sripatum University http://www.spu.ac.th/ -16140 TH Stamford International University http://www.stamford.edu/ -16141 TH St. John's University http://www.stjohn.ac.th/ -16142 TH Suan Dusit Rajabhat University http://www.dusit.ac.th/ -16143 TH Sukhothai Thammathirat Open University http://www.stou.ac.th/ -16144 TH Suranaree University of Technology http://www.sut.ac.th/ -16145 TH Thaksin University http://www.tsu.ac.th/ -16146 TH Thammasat University http://www.tu.ac.th/ -16147 TH Ubonratchathani University http://www.ubu.ac.th/ -16148 TH University of the Thai Chamber of Commerce http://www.utcc.ac.th/ -16149 TH Vongchavalitkul University http://www.vu.ac.th/ -16150 TH Walailak University http://www.wu.ac.th/ -16151 TH Webster University, Thailand http://www.webster.ac.th/ -16152 TH Yonok University http://www.yonok.ac.th/ -16153 TJ Tajik Agrarian University http://www.tajagroun.tj/ -16154 TJ Tajikistan International University http://www.tiu.tj/ -16155 TJ Tajik National University http://tgnu.tarena.tj/ -16156 TM International Turkmen Turkish University http://www.ittu.edu.tm/ -16157 TN Instituts Supérieurs de Formation des Maîtres http://www.disfm.rnu.tn/ -16158 TN Instituts Supérieurs des Etudes Technologiques http://www.isetr.rnu.tn/ -16159 TN Institut Supérieur de Gestion de Tunis http://www.isg.rnu.tn/ -16160 TN Université Centrale http://www.ucaat.com/ -16161 TN Université de 7 Novembre à Carthage http://u7nc.uvt.rnu.tn/ -16162 TN Université de Gabès http://www.univgb.rnu.tn/ -16163 TN Université de Gafsa http://www.ugaf.rnu.tn/ -16164 TN Université de Jendouba http://www.uj.rnu.tn/ -16165 TN Université de Kairouan http://www.univ-k.rnu.tn/ -16166 TN Université de la Manouba http://www.uma.rnu.tn/ -16167 TN Université de Monastir http://www.um.rnu.tn/ -16168 TN Université de Sfax http://www.uss.rnu.tn/ -16169 TN Université de Tunis http://www.utunis.rnu.tn/ -16170 TN Université de Tunis El Manar http://www.utm.rnu.tn/ -16171 TN Université du Centre, Sousse http://www.uc.rnu.tn/ -16172 TN Université Ez-Zitouna http://www.uz.rnu.tn/ -16173 TN Université Libre de Tunis http://www.ult.ens.tn/ -16174 TN Université Virtuelle de Tunis http://www.uvt.rnu.tn/ -16175 TN University of Aviation and Technology http://www.unat.ens.tn/ -16176 TO University of the South Pacific Centre http://www.usp.ac.fj/ -16177 TR Abant Izzet Baysal University http://www.ibu.edu.tr/ -16178 TR Adnan Menderes University http://www.adu.edu.tr/ -16179 TR Afyon Kocatepe University http://www.aku.edu.tr/ -16180 TR Ahi Evran University http://www.ahievran.edu.tr/ -16181 TR Akdeniz University http://www.akdeniz.edu.tr/ -16182 TR Anadolu University http://www.anadolu.edu.tr/ -16183 TR Ankara University http://www.ankara.edu.tr/ -16184 TR Atatürk University http://www.atauni.edu.tr/ -16185 TR Atilim University http://www.atilim.edu.tr/ -16186 TR Bahcesehir University http://www.bahcesehir.edu.tr/ -16187 TR Balikesir University http://www.balikesir.edu.tr/ -16188 TR Baskent University http://www.baskent.edu.tr/ -16189 TR Beykent University http://www.beykent.edu.tr/ -16190 TR Bilecik University http://www.bilecik.edu.tr/ -16191 TR Bilkent University http://www.bilkent.edu.tr/ -16192 TR Bogazici University http://www.boun.edu.tr/ -16193 TR Cag University http://www.cag.edu.tr/ -16194 TR Canakkale (18th March) University http://www.comu.edu.tr/ -16195 TR Cankaya University http://www.cankaya.edu.tr/ -16196 TR Celal Bayar University http://www.bayar.edu.tr/ -16197 TR Cukurova University http://www.cu.edu.tr/ -16198 TR Cumhuriyet (Republik) University http://www.cumhuriyet.edu.tr/ -16199 TR Dicle (Tirgris) University http://www.dicle.edu.tr/ -16200 TR Dogus University http://www.dogus.edu.tr/ -16201 TR Dokuz Eylül University http://www.deu.edu.tr/ -16202 TR Dumlupinar University http://www.dumlupinar.edu.tr/ -16203 TR Ege University http://www.ege.edu.tr/ -16204 TR Erciyes University http://www.erciyes.edu.tr/ -16205 TR Fatih University http://www.fatih.edu.tr/ -16206 TR Firat (Euphrates) University http://www.firat.edu.tr/ -16207 TR Galatasaray University http://www.gsu.edu.tr/ -16208 TR Gaziantep University http://www.gantep.edu.tr/ -16209 TR Gaziosmanpasa University http://www.gop.edu.tr/ -16210 TR Gazi University Ankara http://www.gazi.edu.tr/ -16211 TR Gebze Institute of Technology http://www.gyte.edu.tr/ -16212 TR Gediz University http://www.gediz.edu.tr/ -16213 TR Gulhane Military Medical Academy http://www.gata.edu.tr/ -16214 TR Hacettepe University http://www.hun.edu.tr/ -16215 TR Halic University http://www.halic.edu.tr/ -16216 TR Harran University http://www.harran.edu.tr/ -16217 TR Iasar University http://www.yasar.edu.tr/ -16218 TR Inönü University http://www.inonu.edu.tr/ -16219 TR Isik University http://www.isikun.edu.tr/ -16220 TR Istanbul Arel University http://www.arel.edu.tr/ -16221 TR Istanbul Bilgi University http://www.ibun.edu.tr/ -16222 TR Istanbul Kultur University http://www.iku.edu.tr/ -16223 TR İstanbul Şehir University http://www.sehir.edu.tr/ -16224 TR Istanbul Technical University http://www.itu.edu.tr/ -16225 TR Istanbul Ticaret University http://www.iticu.edu.tr/ -16226 TR Istanbul University http://www.istanbul.edu.tr/ -16227 TR Izmir Economic University http://www.izmirekonomi.edu.tr/ -16228 TR Izmir Institute of Technology http://www.iyte.edu.tr/ -16229 TR Kadir Has University http://www.khas.edu.tr/ -16230 TR Kafkas University http://www.kafkas.edu.tr/ -16231 TR Kahramanmaras Sütcü Imam University http://www.ksu.edu.tr/ -16232 TR Karadeniz Technical University http://www.ktu.edu.tr/ -16233 TR Kilis 7 Aralık University http://www.kilis.edu.tr/ -16234 TR Kirikkale University http://www.kku.edu.tr/ -16235 TR Kocaeli University http://www.kou.edu.tr/ -16236 TR Koc University http://www.ku.edu.tr/ -16237 TR Maltepe University http://www.maltepe.edu.tr/ -16238 TR Marmara University http://www.marmara.edu.tr/ -16239 TR Mersin University http://www.mersin.edu.tr/ -16240 TR Middle East Technical University http://www.odtu.edu.tr/ -16241 TR Mimar Sinan University http://www.msu.edu.tr/ -16242 TR Mugla University http://www.mu.edu.tr/ -16243 TR Mustafa Kemal University http://www.mku.edu.tr/ -16244 TR Namik Kemal University http://www.nku.edu.tr/ -16245 TR Necmettin Erbakan University http://www.konya.edu.tr/ -16246 TR Nigde University http://www.nigde.edu.tr/ -16247 TR Ondokuz Mayis University Samsun http://www.omu.edu.tr/ -16248 TR Osmangazi University http://www.ogu.edu.tr/ -16249 TR Ozyegin University http://www.ozyegin.edu.tr/ -16250 TR Pamukkale University http://www.pamukkale.edu.tr/ -16251 TR Sabanci University http://www.sabanciuniv.edu.tr/ -16252 TR Sakarya University http://www.sau.edu.tr/ -16253 TR Selcuk University http://www.selcuk.edu.tr/ -16254 TR Suleyman Demirel University http://www.sdu.edu.tr/ -16255 TR Tobb Economics and Technology University http://www.etu.edu.tr/ -16256 TR Trakya University http://www.trakya.edu.tr/ -16257 TR Türkisch-Deutsche Universität http://www.tau.edu.tr/ -16258 TR Turkish Military Academy http://www.kho.edu.tr/ -16259 TR Turkish Naval Academy http://www.dho.edu.tr/ -16260 TR Ufuk University http://www.ufuk.edu.tr/ -16261 TR Uludag University http://www.uludag.edu.tr/ -16262 TR Yalova University http://www.yalova.edu.tr/ -16263 TR Yasar University http://www.yasar.edu.tr/ -16264 TR Yeditepe University http://www.yeditepe.edu.tr/ -16265 TR Yildirim Beyazit University http://www.ybu.edu.tr/ -16266 TR Yildiz Technical University http://www.yildiz.edu.tr/ -16267 TR Yüzüncü Yil (Centennial) University http://www.yyu.edu.tr/ -16268 TR Zonguldak Karaelmas University http://www.karaelmas.edu.tr/ -16269 TT University of the Southern Caribbean http://www.usc.edu.tt/ -16270 TT University of the West Indies St. Augustine http://www.uwi.tt/ -16271 TT University of Trinidad and Tobago http://www.utt.edu.tt/ -16272 TW Aletheia University http://www.au.edu.tw/ -16273 TW Central Police University http://www.cpu.edu.tw/ -16274 TW Chang Gung University http://www.cgu.edu.tw/ -16275 TW Chang Jung University http://www.cju.edu.tw/ -16276 TW Chao Yang University of Science and Technology http://www.cyut.edu.tw/ -16277 TW Chia Nana College of Pharmacy and Science http://www.chna.edu.tw/ -16278 TW China Medical College http://www.cmc.edu.tw/ -16279 TW Chinese Culture University http://www.pccu.edu.tw/ -16280 TW Ching Kuo Institue of Management & Health http://www.cku.edu.tw/ -16281 TW Chung Hua University http://www.chu.edu.tw/ -16282 TW Chung Shan Medical and Dental College http://www.csmc.edu.tw/ -16283 TW Chung Yuan Christian University http://www.cycu.edu.tw/ -16284 TW Da-Yeh University http://www.dyu.edu.tw/ -16285 TW Feng Chia University http://www.fcu.edu.tw/ -16286 TW Fu Jen Catholic University http://www.fju.edu.tw/ -16287 TW Hsuan Chuang University http://www.hcu.edu.tw/ -16288 TW Huafan University http://www.hfu.edu.tw/ -16289 TW I-Shou University http://www.isu.edu.tw/ -16290 TW Kaohsiung Medical College http://www.kmc.edu.tw/ -16291 TW Kaohsuing Open University http://www.ouk.edu.tw/ -16292 TW Kung Shan Institute of Technology http://www.ksit.edu.tw/ -16293 TW Kun Shan University http://www.ksu.edu.tw/ -16294 TW Ling Tung University http://www.ltc.edu.tw/ -16295 TW LungHwa University of Science and Technology http://www.lhu.edu.tw/ -16296 TW Ming Chuan University http://www.mcu.edu.tw/ -16297 TW Nanhua University http://www.nhu.edu.tw/ -16298 TW National Central University http://www.ncu.edu.tw/ -16299 TW National Changhua University of Education http://www.ncue.edu.tw/ -16300 TW National Chengchi University http://www.nccu.edu.tw/ -16301 TW National Cheng Kung University http://english.web.ncku.edu.tw/ -16302 TW National Chiao Tung University http://www.nctu.edu.tw/ -16303 TW National Chiayi University http://www.ncyu.edu.tw/ -16304 TW National Chi Nan University http://www.ncnu.edu.tw/ -16305 TW National Chung Cheng University http://www.ccu.edu.tw/ -16306 TW National Chung Hsing University, Taichung http://www.nchu.edu.tw/ -16307 TW National Chung Hsing University, Taipei http://www.nchulc.edu.tw/ -16308 TW National College of Physical Education and Sports http://www.ncpes.edu.tw/ -16309 TW National Dong Hwa University http://www.ndhu.edu.tw/ -16310 TW National Formosa University http://www.nfu.edu.tw/ -16311 TW National Hsin-Chu Teachers College http://www.nhctc.edu.tw/ -16312 TW National Hualien Teachers College http://www.nhltc.edu.tw/ -16313 TW National Ilan University http://www.niu.edu.tw/ -16314 TW National Institute of the Arts http://www.nia.edu.tw/ -16315 TW National Kaohsiung First University of Science and Technology http://www.nkfu.edu.tw/ -16316 TW National Kaohsiung Normal University http://www.nknu.edu.tw/ -16317 TW National Kaohsiung University of Applied Sciences http://www.kuas.edu.tw/ -16318 TW National Open University http://www.nou.edu.tw/ -16319 TW National Pingtung Teachers College http://www.npttc.edu.tw/ -16320 TW National Pingtung University of Science and Technology http://www.npust.edu.tw/ -16321 TW National Sun Yat-Sen University http://www.nsysu.edu.tw/ -16322 TW National Taichung Teachers College http://www.ntctc.edu.tw/ -16323 TW National Tainan Teachers College http://www.ntntc.edu.tw/ -16324 TW National Taipei College of Nursing http://www.ntcn.edu.tw/ -16325 TW National Taipei Teachers College http://www.ntptc.edu.tw/ -16326 TW National Taipei University http://www.ntpu.edu.tw/ -16327 TW National Taipei University of Technology http://www.ntut.edu.tw/ -16328 TW National Taitung Teachers College http://www.ntttc.edu.tw/ -16329 TW National Taiwan College of Arts http://www.ntca.edu.tw/ -16330 TW National Taiwan College of Physical Education and Sports http://www.ntcpe.edu.tw/ -16331 TW National Taiwan College of the Arts http://www.ntca.edu.tw/ -16332 TW National Taiwan Normal University http://www.ntnu.edu.tw/ -16333 TW National Taiwan Ocean University http://www.ntou.edu.tw/ -16334 TW National Taiwan University http://www.ntu.edu.tw/ -16335 TW National Taiwan University of Science and Technology http://www.ntust.edu.tw/ -16336 TW National Tsinghua University http://www.nthu.edu.tw/ -16337 TW National United University http://www.nuu.edu.tw/ -16338 TW National University of Kaohsiung http://www.nuk.edu.tw/ -16339 TW National Yang Ming Medical College http://www.ym.edu.tw/ -16340 TW National Yunlin University of Science and Technology http://www.yuntech.edu.tw/ -16341 TW Providence University http://www.pu.edu.tw/ -16342 TW Shih Chien University http://www.scc.edu.tw/ -16343 TW Shih Hsin University http://www.shu.edu.tw/ -16344 TW Soochow University http://www.scu.edu.tw/ -16345 TW Southern Taiwan University of Technology http://www.stut.edu.tw/ -16346 TW St. John's & St. Mary's Institute of Technology http://www.sjsmit.edu.tw/ -16347 TW TaiChung Healthcare and Management University http://www.thmu.edu.tw/ -16348 TW Tainan National College of the Arts http://www.tnca.edu.tw/ -16349 TW Taipei Medical College http://www.tmc.edu.tw/ -16350 TW Taipei Municipal Teachers College http://www.tmtc.edu.tw/ -16351 TW Taipei Physical Education College http://www.tpec.edu.tw/ -16352 TW Tamkang University http://www.tku.edu.tw/ -16353 TW Tatung Institute of Technology http://www.ttit.edu.tw/ -16354 TW TaTung University http://www.ttu.edu.tw/ -16355 TW Tunghai University http://www.thu.edu.tw/ -16356 TW Tzu Chi College of Medicine and Humanities http://www.tcu.edu.tw/ -16357 TW Yuan Ze University http://www.yzu.edu.tw/ -16358 TZ African Virtual University http://www.avu.org/ -16359 TZ Aga Khan University http://www.aku.edu/ -16360 TZ Dares Salaam Institute of Technology http://www.dit.ac.tz/ -16361 TZ Hubert Kairuki Memorial University http://www.hkmu.ac.tz/ -16362 TZ Institute of Accountancy Arusha http://www.iaa.ac.tz/ -16363 TZ Institute of Finance Management http://www.ifm.ac.tz/ -16364 TZ International Medical & Technological University http://www.imtu.edu/index.htm -16365 TZ Kilimanjaro Christian Medical College http://www.kcmc.ac.tz/ -16366 TZ Moshi University College of Cooperative and Business Studies http://www.muccobs.ac.tz/ -16367 TZ Mount Meru University http://www.mmu.ac.tz/ -16368 TZ Muhimbili University of Health and Allied Sciences (MUHAS) http://www.muchs.ac.tz/ -16369 TZ Mwalimu Nyerere Memorial Academy http://www.mnma.ac.tz/ -16370 TZ Mzumbe University (Chuo Kikuu Mzumbe) http://www.mzumbe.ac.tz/ -16371 TZ Open University of Tanzania http://www.out.ac.tz/ -16372 TZ Sebatian Kolowa University College http://www.sekuco.org/ -16373 TZ Sokoine University of Agriculture http://www.suanet.ac.tz/ -16374 TZ St. Augustine University of Tanzania http://www.saut.ac.tz/ -16375 TZ St. Joseph Group of Institutes http://www.stjosephtanzania.com/sjcet/index.html -16376 TZ Tumaini University - Iringa University College http://www.tumaini.ac.tz/ -16377 TZ University of Dar Es Salaam http://www.udsm.ac.tz/ -16378 TZ University of Dodoma http://www.udom.ac.tz/ -16379 UA Alfred Nobel University of Economics and Law http://www.duep.edu/ -16380 UA Bila Cerkva State Agrarian University http://www.btsau.kiev.ua/ -16381 UA Chernivci National University http://www.chnu.cv.ua/ -16382 UA Crimea State Medical University http://www.crsmu.com/ -16383 UA Dneprodzerzhinsk State Technical University http://www.dstu.dp.ua/ -16384 UA Dnepropetrovsk National University http://www.dnu.dp.ua/ -16385 UA Dnepropetrovsk National University of Railway Transport http://www.diit.edu.ua/ -16386 UA Donetsk National Technical University http://www.donntu.edu.ua/ -16387 UA Donetsk National University http://www.donnu.edu.ua/ -16388 UA Donetsk State Medical University http://www.donmeduni.com/ -16389 UA East Ukrainian National University http://www.snu.edu.ua/ -16390 UA Ivano-Frankivsk National University of Oli and Gas http://www.ifdtung.if.ua/ -16391 UA Kharkiv National University http://www.univer.kharkov.ua/ -16392 UA Kharkiv National University of Economics http://www.hneu.edu.ua/ -16393 UA Kharkiv National University of Radio Electronics http://www.kture.kharkov.ua/ -16394 UA Kharkiv State Medical University http://www.ksmu.kharkov.ua/ -16395 UA Kharkiv State Technical University of Construction and Architecture http://www.kstuca.kharkov.ua/ -16396 UA Kharkiv State Transport Technical University http://www.khadi.kharkov.ua/ -16397 UA Kherson State University http://www.university.kherson.ua/ -16398 UA Khmelnitsky National University http://www.tup.km.ua/ -16399 UA Kiev National Economic University Named after Vadym Hetman http://www.kneu.edu.ua/ -16400 UA Kiev National University of Construction and Architecture http://www.knuba.edu.ua/ -16401 UA Kiev School Of Economics http://www.kse.org.ua/ -16402 UA Kiev Slavonic University http://www.ksu.edu.ua/ -16403 UA KROK Economics and Law University http://www.krok.edu.ua/ -16404 UA Luhansk State Medical University http://www.lsmu.com/ -16405 UA Luhansk Taras Shevchenko National Pedagogical University http://www.lgpu.lg.ua/ -16406 UA Lviv Medical University http://www.meduniv.lviv.ua/ -16407 UA Lviv National Medical Univeristy http://www.meduniv.lviv.ua/ -16408 UA Lviv National University Ivan Franko http://www.franko.lviv.ua/ -16409 UA Lviv Polytechnic National University http://www.lp.edu.ua/ -16410 UA National Aerospace University Kharkov Aviation Institute http://www.khai.edu/ -16411 UA National Agricultural University http://www.nauu.kiev.ua/ -16412 UA National Aviation Univesity http://www.nau.edu.ua/ -16413 UA National Medical University O.O. Bogomolets http://www.nmu.edu.ua/ -16414 UA National Metallurgical Academy of Ukraine http://www.nmetau.edu.ua/ -16415 UA National Mining University http://www.nmu.org.ua/ -16416 UA National Pedagogical University M. Dragomanov http://www.npu.edu.ua/ -16417 UA National Pirogov Memorial Medical University http://www.vnmu.vn.ua/ -16418 UA National Taras Shevchenko University of Kiev http://www.univ.kiev.ua/ -16419 UA National Technical University (Kharkiv Polytechnical Institute) http://www.kpi.kharkov.ua/ -16420 UA National Technical University (Kiev Politechnical Institute) http://www.kpi.ua/ -16421 UA National Transport University http://www.ntu.kar.net/ -16422 UA National University of Food Technologies http://www.usuft.kiev.ua/ -16423 UA National University of Internal Affairs http://www.univd.edu.ua/ -16424 UA National University of Kiev-Mohyla Academy http://www.ukma.kiev.ua/ -16425 UA National University of Ostroh Academy http://www.uosa.uar.net/ -16426 UA National University of Shipbuilding http://www.usmtu.edu.ua/ -16427 UA Odessa National Academy of Food Technologies http://www.osaft.odessa.ua/ -16428 UA Odessa National I.I. Mecnikov University http://www.onu.edu.ua/ -16429 UA Odessa National Marine University http://www.osmu.odessa.ua/ -16430 UA Odessa National Maritime Academy http://www.ma.odessa.ua/ -16431 UA Odessa National Polytechnic University http://www.opu.odessa.ua/ -16432 UA Odessa State Academy of Construction and Architecture http://www.ogasa.odessa.ua/ -16433 UA Odessa State Medical University http://www.arosmu.org/ -16434 UA Petro Mohyla Black Sea State University http://www.kma.mk.ua/ -16435 UA Poltava National Technical University http://www.pntu.edu.ua/ -16436 UA Poltava University of Consumer Cooperatives in Ukraine http://www.pusku.edu.ua/ -16437 UA Precarpathian University http://www.pu.if.ua/ -16438 UA Sevastopol National Technical University http://sevntu.com.ua/ -16439 UA State Pedagogical University in Kryvyi Rih http://www.kdpu.edu.ua/ -16440 UA Sumy National Agrarian University http://www.sau.sumy.ua/ -16441 UA Sumy State University http://www.sumdu.edu.ua/ -16442 UA Taurida National V.I.Vernadsky University http://www.tnu.crimea.ua/ -16443 UA Technological University of Podillya http://www.tup.km.ua/ -16444 UA Ternopil Academy of National Economy http://www.tane.edu.ua/ -16445 UA Ternopil State Ivan Pul'uj Technical University http://www.tu.edu.te.ua/ -16446 UA Ukrainian Academy of Banking http://www.academy.sumy.ua/ -16447 UA Ukrainian Academy of Pharmacy http://www.ukrfa.kharkov.ua/ -16448 UA Ukrainian Medical Stomatological Academy http://www.uamsa.net/ -16449 UA Ukrainian National Forestry University http://www.forest.lviv.ua/ -16450 UA Uzhgorod National University http://www.univ.uzhgorod.ua/ -16451 UA Vinnica National Technical University http://www.vstu.vinnica.ua/ -16452 UA Volyn National University Lesja Ukrainka http://www.vdu.edu.ua/ -16453 UA Zaporizhzhe National Technical University http://www.zntu.edu.ua/ -16454 UA Zaporizhzhe National University http://www.znu.edu.ua/ -16455 UG Aga Khan University http://www.aku.edu/ -16456 UG Bugema University http://www.bugemauniv.ac.ug/ -16457 UG Busitema University http://www.busitema.ac.ug/ -16458 UG Busoga University http://www.busogauniversity.ac.ug/ -16459 UG Central Buganda University http://www.cbu2000.com/ -16460 UG Gulu University http://www.gu.ac.ug/ -16461 UG Islamic University in Uganda http://www.iuiu.ac.ug/ -16462 UG Kampala International University http://www.kiu.ac.ug/ -16463 UG Kampala University http://www.ku.ac.ug/ -16464 UG Kyambogo University http://www.kyu.ac.ug/ -16465 UG Makerere University http://www.mak.ac.ug/ -16466 UG Mbarara University of Science and Technology http://www.must.ac.ug/ -16467 UG Mountains of the Moon University http://www.mmu.ac.ug/ -16468 UG Mutesa 1 Royal University http://www.mru.ac.ug/ -16469 UG Ndejje University http://www.ndejjeuniversity.ac.ug/ -16470 UG Nkumba University http://www.nkumbauniversity.ac.ug/ -16471 UG St. Augustine International University http://www.saiu.ac.ug/ -16472 UG Uganda Christian University http://www.ucu.ac.ug/ -16473 UG Uganda Martyr's University http://www.umu.ac.ug/ -16474 US Abilene Christian University http://www.acu.edu/ -16475 US Academy of Art College http://www.academyart.edu/ -16476 US Adams State College http://www.adams.edu/ -16477 US Adelphi University http://www.adelphi.edu/ -16478 US Adler School of Professional Psychology http://www.adler.edu/ -16479 US Adrian College http://www.adrian.edu/ -16480 US Agnes Scott College http://www.scottlan.edu/ -16481 US Air Force Institute of Technology http://www.afit.af.mil/ -16482 US Alabama Agricultural and Mechanical University http://www.aamu.edu/ -16483 US Alabama State University http://www.alasu.edu/ -16484 US Alaska Bible College http://www.akbible.edu/ -16485 US Alaska Pacific University http://www.alaskapacific.edu/ -16486 US Albany College of Pharmacy http://www.acp.edu/ -16487 US Albany Law School http://www.albanylaw.edu/ -16488 US Albany Medical Center http://www.amc.edu/ -16489 US Albany State University http://www.asurams.edu/ -16490 US Albertus Magnus College http://www.albertus.edu/ -16491 US Albion College http://www.albion.edu/ -16492 US Albright College http://www.albright.edu/ -16493 US Alcorn State University http://www.alcorn.edu/ -16494 US Alderson Broaddus College http://www.ab.edu/ -16495 US Alfred Adler Graduate School http://www.alfredadler.edu/ -16496 US Alfred University http://www.alfred.edu/ -16497 US Alice Lloyd College http://www.alc.edu/ -16498 US Allegheny College http://www.alleg.edu/ -16499 US Allen University http://www.scicu.org/allen/ -16500 US Alma College http://www.alma.edu/ -16501 US Alvernia College http://www.alvernia.edu/ -16502 US Alverno College http://www.alverno.edu/ -16503 US Ambassador University http://www.ambassador.edu/ -16504 US Amber University http://www.amberu.edu/ -16505 US American Academy of Nutrition http://www.nutritioneducation.com/ -16506 US American Business & Technology University http://www.abtu.edu/ -16507 US American Conservatory of Music http://members.aol.com/amerconsmu/ -16508 US American Conservatory Theater http://www.act-sfbay.org/ -16509 US American-European School of Management http://www.aesom.com/ -16510 US American Film Institute Center for Advanced Film and Television Studies http://www.afionline.org/cafts/cafts.home.html -16511 US American Indian College http://www.aicag.edu/ -16512 US American InterContinental University - Atlanta http://www.aiuniv.edu/ -16513 US American InterContinental University - Ft. Lauderdale http://www.aiuniv.edu/ -16514 US American InterContinental University - Georgia http://www.aiuniv.edu/ -16515 US American InterContinental University Online http://www.aiu-online.com/ -16516 US American International College http://www.aic.edu/ -16517 US American Jewish University http://www.ajula.edu/ -16518 US American Military University http://www.amunet.edu/ -16519 US American Public University http://www.apus.edu/ -16520 US American University http://www.american.edu/ -16521 US American World University http://www.awu.edu/ -16522 US Amherst College http://www.amherst.edu/ -16523 US Anderson College http://www.anderson-college.edu/ -16524 US Anderson University http://www.anderson.edu/ -16525 US Andon College - Modesto http://www.andoncollege.com/ -16526 US Andon College - Stockton http://www.andoncollege.org/ -16527 US Andrew Jackson University http://www.aju.edu/ -16528 US Andrews University http://www.andrews.edu/ -16529 US Angelo State University http://www.angelo.edu/ -16530 US Anna Maria College http://www.anna-maria.edu/ -16531 US Antioch New England Graduate School http://www.antiochne.edu/ -16532 US Antioch University http://www.antioch.edu/ -16533 US Antioch University Los Angeles http://www.antiochla.edu/ -16534 US Antioch University Santa Barbara http://www.antiochsb.edu/ -16535 US Antioch University Seattle http://www.antiochsea.edu/ -16536 US Appalachian Bible College http://www.appbibco.edu/ -16537 US Appalachian State University http://www.appstate.edu/ -16538 US Aquinas College http://www.aquinas.edu/ -16539 US Arcadia University http://www.arcadia.edu/ -16540 US Argosy University http://www.argosy.edu/ -16541 US Argosy University - Hawaii http://www.argosyu.edu/ -16542 US Arizona Christian University http://www.arizonachristian.edu -16543 US Arizona State University http://www.asu.edu/ -16544 US Arizona State University, Downtown Phoenix Campus https://campus.asu.edu/downtown -16545 US Arizona State University, Polytechnic Campus https://campus.asu.edu/polytechnic -16546 US Arizona State University, Tempe Campus https://campus.asu.edu/tempe -16547 US Arizona State University, West Campus https://campus.asu.edu/west -16548 US Arkansas State University http://www.astate.edu/ -16549 US Arkansas State University, Beebe http://www.asub.edu/ -16550 US Arkansas State University, Mountain Home http://www.asumh.edu/ -16551 US Arkansas State University, Newport http://www.asun.edu/ -16552 US Arkansas Tech University http://www.atu.edu/ -16553 US Arlington Baptist College http://www.abconline.edu/ -16554 US Armstrong Atlantic State University http://www.armstrong.edu/ -16555 US Armstrong University http://www.armstrong-u.edu/ -16556 US Art Academy of Cincinnati http://www.artacademy.edu/ -16557 US Art Center College of Design http://www.artcenter.edu/ -16558 US Arthur D. Little Management Education Institute http://www.adlsom.edu/ -16559 US Art Institute of Charlotte http://www.aich.artinstitutes.edu/ -16560 US Art Institute of Southern California http://www.aisc.edu/ -16561 US Asbury College http://www.asbury.edu/ -16562 US Ashland University http://www.ashland.edu/ -16563 US Assumption College http://www.assumption.edu/ -16564 US Athenaeum of Ohio http://www.mtsm.org/ -16565 US Athens State College http://www.athens.edu/ -16566 US Atlanta Christian College http://www.acc.edu/ -16567 US Atlanta College of Art http://www.aca.edu/ -16568 US Atlantic International University http://www.aiu.edu/ -16569 US Atlantic Union College http://www.atlanticuc.edu/ -16570 US Atlantic University http://www.atlanticuniv.edu/ -16571 US Auburn University http://www.auburn.edu/ -16572 US Auburn University at Montgomery http://www.aum.edu/ -16573 US Audrey Cohen College http://www.audrey-cohen.edu/ -16574 US Augsburg College http://www.augsburg.edu/ -16575 US Augustana College http://www.augustana.edu/ -16576 US Augustana College http://www.augie.edu/ -16577 US Augusta State University http://www.aug.edu/ -16578 US Aurora University http://www.aurora.edu/ -16579 US Austin College http://www.austinc.edu/ -16580 US Austin Community College http://www.austin.cc.tx.us/ -16581 US Austin Peay State University http://www.apsu.edu/ -16582 US Ave Maria University http://www.avemaria.edu/ -16583 US Averett College http://www.averett.edu/ -16584 US Avila College http://www.avila.edu/ -16585 US Azusa Pacific University http://www.apu.edu/ -16586 US Babson College http://www.babson.edu/ -16587 US Baker College of Auburn Hills http://www.baker.edu/visit/auburn.html -16588 US Baker College of Cadillac http://www.baker.edu/visit/cadillac.html -16589 US Baker College of Flint http://www.baker.edu/visit/flint.html -16590 US Baker College of Mount Clemens http://www.baker.edu/visit/mtclemens.html -16591 US Baker College of Muskegon http://www.baker.edu/visit/muskegon.html -16592 US Baker College of Owosso http://www.baker.edu/visit/owosso.html -16593 US Baker College of Port Huron http://www.baker.edu/visit/porthuron.html -16594 US Baker University http://www.bakeru.edu/ -16595 US Baldwin-Wallace College http://www.baldwinw.edu/ -16596 US Ball State University http://www.bsu.edu/ -16597 US Baltimore Hebrew University http://www.bhu.edu/ -16598 US Baltimore International College http://www.bic.edu/ -16599 US Bank Street College of Education http://www.bnkst.edu/ -16600 US Baptist Bible College of Missouri http://www.bbcnet.edu/ -16601 US Baptist Bible College of Pennsylvania http://www.bbc.edu/ -16602 US Barat College http://www.barat.edu/ -16603 US Barber-Scotia College http://www.b-sc.edu/ -16604 US Barclay College http://www.barclaycollege.edu/ -16605 US Bard College http://www.bard.edu/ -16606 US Bard Graduate Center for Studies in the Decorative Arts http://www.bard.edu/graduate/BGC/intro.html -16607 US Barnard College - Columbia University http://www.barnard.edu/ -16608 US Barry University http://www.barry.edu/ -16609 US Bartlesville Wesleyan College http://www.bwc.edu/ -16610 US Barton College http://www.barton.edu/ -16611 US Bastyr University http://www.bastyr.edu/ -16612 US Bates College http://www.bates.edu/ -16613 US Bauder College http://www.bauder.edu/ -16614 US Baylor College of Dentistry http://www.tambcd.edu/ -16615 US Baylor College of Medicine http://www.bcm.tmc.edu/ -16616 US Baylor University http://www.baylor.edu/ -16617 US Belhaven College http://www.belhaven.edu/ -16618 US Bellarmine College http://www.bellarmine.edu/ -16619 US Bellevue University http://www.bellevue.edu/ -16620 US Bellin College of Nursing http://www.bellin.org/bcn/ -16621 US Belmont Abbey College http://www.bac.edu/ -16622 US Belmont University http://www.belmont.edu/ -16623 US Beloit College http://www.beloit.edu/ -16624 US Bemidji State Univeristy http://www.bemidji.msus.edu/ -16625 US Benedict College http://www.benedict.edu/ -16626 US Benedictine College http://www.benedictine.edu/ -16627 US Benedictine University http://www.ben.edu/ -16628 US Benedictine University, Springfield College in Illinois http://www.sci.edu/ -16629 US Bennett College http://www.bennett.edu/ -16630 US Bennington College http://www.bennington.edu/ -16631 US Bentley College http://www.bentley.edu/ -16632 US Berea College http://www.berea.edu/ -16633 US Berean University of the Assemblies of God http://www.berean.edu/ -16634 US Berklee College of Music http://www.berklee.edu/ -16635 US Berne University http://www.berne.edu/ -16636 US Berry College http://www.berry.edu/ -16637 US Bethany College California http://www.bethany.edu/ -16638 US Bethany College Kansas http://www.bethanylb.edu/ -16639 US Bethany College West Virginia http://www.bethany.wvnet.edu/ -16640 US Bethel College McKenzie http://www.bethel-college.edu/ -16641 US Bethel College Mishawaka http://www.bethel-in.edu/ -16642 US Bethel College Newton http://www.bethelks.edu/ -16643 US Beth-El College of Nursing and Health Sciences http://www.uccs.edu/~bethel/ -16644 US Bethel College St. Paul http://www.bethel.edu/ -16645 US Bethune-Cookman College http://www.bethune.cookman.edu/ -16646 US Biola University http://www.biola.edu/ -16647 US Birmingham-Southern College http://www.bsc.edu/ -16648 US Blackburn College http://www.blackburn.edu/ -16649 US Black Hawk College http://www.bhc.edu/ -16650 US Black Hills State University http://www.bhsu.edu/ -16651 US Blessing-Rieman College of Nursing http://www.brcn.edu/ -16652 US Bloomfield College http://www.bloomfield.edu/ -16653 US Bloomsburg University of Pennsylvania http://www.bloomu.edu/ -16654 US Bluefield College http://www.bluefield.edu/ -16655 US Bluefield State College http://www.bluefield.wvnet.edu/ -16656 US Blue Mountain College http://www.bmc.edu/ -16657 US Bluffton College http://www.bluffton.edu/ -16658 US Bob Jones University http://www.bju.edu/ -16659 US Boise Bible College http://www.boisebible.edu/ -16660 US Boise State University http://www.boisestate.edu/ -16661 US Boricua College http://www.boricuacollege.edu/ -16662 US Boston Architectural Center http://www.the-bac.edu/ -16663 US Boston College http://www.bc.edu/ -16664 US Boston University http://www.bu.edu/ -16665 US Bowdoin College http://www.bowdoin.edu/ -16666 US Bowie State University http://www.bowiestate.edu/ -16667 US Bowling Green State University http://www.bgsu.edu/ -16668 US Bowling Green State University, Firelands http://www.firelands.bgsu.edu/ -16669 US Bradley University http://www.bradley.edu/ -16670 US Brandeis University http://www.brandeis.edu/ -16671 US Brandman University http://www.brandman.edu/ -16672 US Brenau University http://www.brenau.edu/ -16673 US Brescia University http://www.brescia.edu/ -16674 US Brevard College http://www.brevard.edu/ -16675 US Brewton-Parker College http://www.bpc.edu/ -16676 US Breyer State University (Virtual University) http://www.breyerstate.com/ -16677 US Briar Cliff College http://www.briar-cliff.edu/ -16678 US Bridgewater College http://www.bridgewater.edu/ -16679 US Bridgewater State College http://www.bridgew.edu/ -16680 US Brigham Young University Idaho http://www.byui.edu/ -16681 US Brigham Young University http://www.byu.edu/ -16682 US Brigham Young University Hawaii http://www.byuh.edu/ -16683 US Brooklyn Law School http://www.brooklaw.edu/ -16684 US Brooks Institute of Photography http://www.brooks.edu/ -16685 US Brown University http://www.brown.edu/ -16686 US Brunswick Community College http://www.brunswickcc.edu/ -16687 US Bryan College http://www.bryan.edu/ -16688 US Bryant and Stratton College http://www.bryantstratton.edu/ -16689 US Bryant University http://www.bryant.edu/ -16690 US Bryn Athyn College of the New Church http://www.newchurch.edu/college/ -16691 US Bryn Mawr College http://www.brynmawr.edu/ -16692 US Bucknell University http://www.bucknell.edu/ -16693 US Buena Vista University http://www.bvu.edu/ -16694 US Burlington College http://www.burlcol.edu/ -16695 US Butler University http://www.butler.edu/ -16696 US Cabrini College http://www.cabrini.edu/ -16697 US Caldwell College http://www.caldwell.edu/ -16698 US California Baptist College http://www.calbaptist.edu/ -16699 US California Coast University http://www.calcoast.edu/ -16700 US California College for Health Sciences http://www.cchs.edu/ -16701 US California College of Arts and Crafts http://www.ccac-art.edu/ -16702 US California College of Podiatric Medicine http://www.ccpm.edu/ -16703 US California College San Diego http://www.cc-sd.edu/ -16704 US California Institute of Integral Studies http://www.ciis.edu/ -16705 US California Institute of Technology http://www.caltech.edu/ -16706 US California Institute of the Arts http://www.calarts.edu/ -16707 US California Lutheran University http://www.callutheran.edu/ -16708 US California Maritime Academy http://www.csum.edu/ -16709 US California Polytechnic State University - San Luis Obispo http://www.calpoly.edu/ -16710 US California School of Professional Psychology - Berkley/Alameda http://www.cspp.edu/ -16711 US California School of Professional Psychology - Fresno http://www.cspp.edu/catalog/8.htm -16712 US California School of Professional Psychology - Los Angels http://www.cspp.edu/catalog/9.htm -16713 US California School of Professional Psychology - San Diego http://www.cspp.edu/catalog/10.htm -16714 US California State Polytechnic University - Pomona http://www.csupomona.edu/ -16715 US California State University, Bakersfield http://www.csubak.edu/ -16716 US California State University, Channel Islands http://www.csuci.edu/ -16717 US California State University, Chico http://www.csuchico.edu/ -16718 US California State University, Dominguez Hills http://www.csudh.edu/ -16719 US California State University, Fresno http://www.csufresno.edu/ -16720 US California State University, Fullerton http://www.fullerton.edu/ -16721 US California State University, Hayward http://www.csuhayward.edu/ -16722 US California State University, Long Beach http://www.csulb.edu/ -16723 US California State University, Los Angeles http://www.calstatela.edu/ -16724 US California State University, Monterey Bay http://www.monterey.edu/ -16725 US California State University, Northridge http://www.csun.edu/ -16726 US California State University, Sacramento http://www.csus.edu/ -16727 US California State University, San Bernadino http://www.csusb.edu/ -16728 US California State University, San Marcos http://www.csusm.edu/ -16729 US California State University, Stanislaus http://www.csustan.edu/ -16730 US California University of Management and Sciences http://cauniversity.edu.cufce.org/ -16731 US California University of Pennsylvania http://www.cup.edu/ -16732 US California Western School of Law http://www.cwsl.edu/ -16733 US Calumet College of St. Joseph http://www.ccsj.edu/ -16734 US Calvary Bible College http://www.calvary.edu/ -16735 US Calvin College http://www.calvin.edu/ -16736 US Cambridge College http://www.cambridge.edu/ -16737 US Cameron University http://www.cameron.edu/ -16738 US Campbellsville College http://www.campbellsvil.edu/ -16739 US Campbell University http://www.campbell.edu/ -16740 US Canisius College http://www.canisius.edu/ -16741 US Capella University http://www.capella.edu/ -16742 US Capital University http://www.capital.edu/ -16743 US Capital University Law School http://www.law.capital.edu/ -16744 US Capitol College http://www.capitol-college.edu/ -16745 US Cardinal Stritch University http://www.stritch.edu/ -16746 US Carleton College http://www.carleton.edu/ -16747 US Carlos Albizu University http://www.albizu.edu/ -16748 US Carlow College http://www.carlow.edu/ -16749 US Carnegie Mellon University http://www.cmu.edu/ -16750 US Carroll College Helena http://www.carroll.edu/ -16751 US Carroll College Waukesha http://www.cc.edu/ -16752 US Carson-Newman College http://www.cn.edu/ -16753 US Carthage College http://www.carthage.edu/ -16754 US Case Western Reserve University http://www.cwru.edu/ -16755 US Castleton State College http://www.csc.vsc.edu/ -16756 US Catawba College http://www.catawba.edu/ -16757 US Catholic Theological Union http://www.ctu.edu/ -16758 US Cedar Crest College http://www.cedarcrest.edu/ -16759 US Cedarville College http://www.cedarville.edu/ -16760 US Centenary College http://www.centenarycollege.edu/ -16761 US Centenary College of Louisiana http://www.centenary.edu/ -16762 US Center for Humanistic Studies http://www.humanpsych.edu/ -16763 US Central Baptist College http://www.cbc.edu/ -16764 US Central Bible College http://www.cbcag.edu/ -16765 US Central Christian College of the Bible http://www.cccb.edu/ -16766 US Central College http://www.central.edu/ -16767 US Central Connecticut State University http://www.ccsu.edu/ -16768 US Central Methodist College http://www.cmc.edu/ -16769 US Central Michigan University http://www.cmich.edu/ -16770 US Central State University http://www.centralstate.edu/ -16771 US Central Washington University http://www.cwu.edu/ -16772 US Centre College http://www.centre.edu/ -16773 US Chadron State College http://www.csc.edu/ -16774 US Chaminade University of Honolulu http://www.chaminade.edu/ -16775 US Champlain College http://www.champlain.edu/ -16776 US Chapman University http://www.chapman.edu/ -16777 US Charles R. Drew University of Medicine and Science http://www.cdrewu.edu/ -16778 US Charleston Southern University http://www.csuniv.edu/ -16779 US Charter Oak State College http://www.cosc.edu/ -16780 US Chatham College http://www.chatham.edu/ -16781 US Chestnut Hill College http://www.chc.edu/ -16782 US Cheyney University of Pennsylvania http://www.cheyney.edu/ -16783 US Chicago State University http://www.csu.edu/ -16784 US Chowan College http://www.chowan.edu/ -16785 US Christendom College http://www.christendom.edu/ -16786 US Christian Brothers University http://www.cbu.edu/ -16787 US Christian Heritage College http://www.christianheritage.edu/ -16788 US Christopher Newport University http://www.cnu.edu/ -16789 US Circleville Bible College http://www.biblecollege.edu/ -16790 US City University http://www.cityu.edu/ -16791 US City University of New York, Bernard M. Baruch College http://www.baruch.cuny.edu/ -16792 US City University of New York, Brooklyn College http://www.brooklyn.cuny.edu/ -16793 US City University of New York, City College http://www.ccny.cuny.edu/ -16794 US City University of New York, College of Staten Island http://www.csi.cuny.edu/ -16795 US City University of New York (CUNY) System http://www.cuny.edu/ -16796 US City University of New York, Graduate School and University Center http://www.gc.cuny.edu/ -16797 US City University of New York, Hunter College http://www.hunter.cuny.edu/ -16798 US City University of New York, John Jay College of Criminal Justice http://www.jjay.cuny.edu/ -16799 US City University of New York, Lehman College http://www.lehman.cuny.edu/ -16800 US City University of New York, Medgar Evers College http://www.mec.cuny.edu/ -16801 US City University of New York Medical School / Sophie Davis School of Biomedical Education http://med.cuny.edu/ -16802 US City University of New York, New York City Technical College http://www.nyctc.cuny.edu/ -16803 US City University of New York, Queens College http://www.qc.edu/ -16804 US City University of New York, School of Law at Queens College http://www.law.cuny.edu/ -16805 US City University of New York, York College http://www.york.cuny.edu/ -16806 US Claflin College http://www.scicu.org/claflin/ -16807 US Claremont Graduate University http://www.cgu.edu/ -16808 US Claremont Lincoln University http://www.claremontlincoln.org/ -16809 US Claremont McKenna College http://www.mckenna.edu/ -16810 US Clarion University http://www.clarion.edu/ -16811 US Clark Atlanta University http://www.cau.edu/ -16812 US Clarke College http://www.clarke.edu/ -16813 US Clarkson College http://www.clarksoncollege.edu/ -16814 US Clarkson University http://www.clarkson.edu/ -16815 US Clark University http://www.clarku.edu/ -16816 US Clayton College & State University http://www.clayton.edu/ -16817 US Clearwater Christian College http://www.clearwater.edu/ -16818 US Cleary College http://www.cleary.edu/ -16819 US Clemson University http://www.clemson.edu/ -16820 US Cleveland Chiropractic College, Kansas City http://www.clevelandchiropractic.edu/ -16821 US Cleveland Chiropractic College, Los Angeles http://www.clevelandchiropractic.edu/ -16822 US Cleveland Institute of Art http://www.cia.edu/ -16823 US Cleveland Institute of Music http://www.cim.edu/ -16824 US Cleveland State University http://www.csuohio.edu/ -16825 US Coastal Carolina University http://www.coastal.edu/ -16826 US Coe College http://www.coe.edu/ -16827 US Cogswell Polytechnical College http://www.cogswell.edu/ -16828 US Coker College http://www.coker.edu/ -16829 US Colby College http://www.colby.edu/ -16830 US Colby-Sawyer College http://www.colby-sawyer.edu/ -16831 US Coleman College http://www.coleman.edu/ -16832 US Colgate University http://www.colgate.edu/ -16833 US CollegeAmerica, Denver http://www.collegeamerica.edu/ -16834 US CollegeAmerica, Phoenix http://www.collegeamerica.edu/ -16835 US College for Creative Studies http://www.ccscad.edu/ -16836 US College for Financial Planning http://www.fp.edu/ -16837 US College for Lifelong Learning http://www.cll.edu/ -16838 US College Misericordia http://www.miseri.edu/ -16839 US College of Aeronautics http://www.aero.edu/ -16840 US College of Charleston http://www.cofc.edu/ -16841 US College of DuPage http://www.cod.edu/ -16842 US College of Idaho http://www.collegeofidaho.edu/ -16843 US College of Mount St. Joseph http://www.msj.edu/ -16844 US College of Mount St. Vincent http://www.cmsv.edu/ -16845 US College of New Rochelle http://www.cnr.edu/ -16846 US College of Notre Dame http://www.cnd.edu/ -16847 US College of Notre Dame of Maryland http://www.ndm.edu/ -16848 US College of Osteopathic Medicine of the Pacific (Western University of Health Sciences) http://www.westernu.edu/comp.html -16849 US College of St. Benedict and St. John's University http://www.csbsju.edu/ -16850 US College of St. Catherine http://www.stkate.edu/ -16851 US College of St. Elizabeth http://www.st-elizabeth.edu/ -16852 US College of St. Joseph http://www.csj.edu/ -16853 US College of St. Mary http://www.csm.edu/ -16854 US College of St. Rose http://www.strose.edu/ -16855 US College of St. Scholastica http://www.css.edu/ -16856 US College of the Atlantic http://www.coa.edu/ -16857 US College of the Holy Cross http://www.holycross.edu/ -16858 US College of the Ozarks http://www.cofo.edu/ -16859 US College of Visual Arts http://www.cva.edu/ -16860 US College of William and Mary http://www.wm.edu/ -16861 US Colorado Christian University http://www.ccu.edu/ -16862 US Colorado College http://www.cc.colorado.edu/ -16863 US Colorado School of Mines http://www.mines.edu/ -16864 US Colorado State University http://www.colostate.edu/ -16865 US Colorado State University-Pueblo http://www.colostate-pueblo.edu/ -16866 US Colorado Technical University http://www.colotechu.edu/ -16867 US Columbia College Chicago http://www.colum.edu/ -16868 US Columbia College Hollywood http://www.columbiacollege.edu/ -16869 US Columbia College of Missouri http://www.ccis.edu/ -16870 US Columbia College South Carolina http://www.colacoll.edu/ -16871 US Columbia Commonwealth University http://www.ccwu.edu/ -16872 US Columbia International University http://www.ciu.edu/ -16873 US Columbia Southern University http://www.columbiasouthern.edu/ -16874 US Columbia Union College http://www.cuc.edu/ -16875 US Columbia University http://www.columbia.edu/ -16876 US Columbus College of Art and Design http://www.ccad.edu/ -16877 US Columbus State University http://www.colstate.edu/ -16878 US Columbus University http://www.columbusu.com/ -16879 US Community College of Denver http://ccd.rightchoice.org/ -16880 US Concord College http://www.concord.edu/ -16881 US Concordia College, Ann Arbor http://www.ccaa.edu/ -16882 US Concordia College, Bronxville http://www.concordia-ny.edu/ -16883 US Concordia College, Moorhead http://www.cord.edu/ -16884 US Concordia College, Selma http://higher-ed.lcms.org/selma.htm -16885 US Concordia College, Seward http://www.cune.edu/ -16886 US Concordia College, St. Paul http://www.csp.edu/ -16887 US Concordia University, Austin http://www.concordia.edu/ -16888 US Concordia University, Irvine http://www.cui.edu/ -16889 US Concordia University, Mequon http://www.cuw.edu/ -16890 US Concordia University, Portland http://www.cu-portland.edu/ -16891 US Concordia University, River Forest http://www.curf.edu/ -16892 US Connecticut College http://www.conncoll.edu/ -16893 US Converse College http://www.converse.edu/ -16894 US Conway School of Landscape Design http://www.csld.edu/ -16895 US Coppin State College http://www.coppin.edu/ -16896 US Cornell College http://www.cornell-iowa.edu/ -16897 US Cornell University http://www.cornell.edu/ -16898 US Cornish College of the Arts http://www.cornish.edu/ -16899 US Cosmopolitan University http://www.cosmoedu.net/ -16900 US Covenant College http://www.covenant.edu/ -16901 US Cranbrook Academy of Art http://www.cranbrookart.edu/ -16902 US Creighton University http://www.creighton.edu/ -16903 US Crichton College http://www.crichton.edu/ -16904 US Crown College http://www.crown.edu/ -16905 US Culver-Stockton College http://www.culver.edu/ -16906 US Cumberland College http://www.cumber.edu/ -16907 US Cumberland University http://www.cumberland.edu/ -16908 US Curry College http://www.curry.edu:8080/ -16909 US Daemen College http://www.daemen.edu/ -16910 US Dakota State University http://www.dsu.edu/ -16911 US Dakota Wesleyan University http://www.dwu.edu/ -16912 US Dallas Baptist University http://www.dbu.edu/ -16913 US Dallas Christian College http://www.dallas.edu/ -16914 US Dana College http://www.dana.edu/ -16915 US Daniel Webster College http://www.dwc.edu/ -16916 US Danville Area Community College http://www.dacc.cc.il.us/ -16917 US Dartmouth College http://www.dartmouth.edu/ -16918 US Darton College http://www.darton.edu/ -16919 US Davenport College of Business, Grand Rapids http://www.davenport.edu/grandrapids/ -16920 US Davenport College of Business, Kalamazoo http://www.davenport.edu/kalamazoo/ -16921 US Davenport College of Business, Lansing http://www.davenport.edu/lansing/ -16922 US Davidson College http://www.davidson.edu/ -16923 US Davis and Elkins College http://www.dne.edu/ -16924 US Deaconess College of Nursing http://www.deaconess.edu/ -16925 US Delaware State University http://www.dsc.edu/ -16926 US Delaware Valley College http://www.devalcol.edu/ -16927 US Delta International University http://www.delta-university.org/ -16928 US Delta State University http://www.deltast.edu/ -16929 US Denison University http://www.denison.edu/ -16930 US Denver Paralegal Institute http://www.paralegal-education.com/campuses/cosprings/ -16931 US Denver Technical College http://www.dtc.edu/ -16932 US DePaul University http://www.depaul.edu/ -16933 US DePauw University http://www.depauw.edu/ -16934 US DeSales University http://www.desales.edu/ -16935 US Design Institute of San Diego http://www.disd.edu/ -16936 US Detroit College of Business http://www.dcb.edu/ -16937 US Detroit College of Business - Flint http://www.davenport.edu/e3front.dll?durki=1283 -16938 US Detroit College of Business - Warren http://www.davenport.edu/e3front.dll?durki=108 -16939 US Detroit College of Law http://www.dcl.edu/ -16940 US DeVry Institute of Technology, Chicago http://www.chi.devry.edu/ -16941 US DeVry Institute of Technology, Columbus http://www.devrycols.edu/ -16942 US DeVry Institute of Technology, Decatur http://www.atl.devry.edu/ -16943 US DeVry Institute of Technology, DuPage http://www.dpg.devry.edu/ -16944 US DeVry Institute of Technology, Irving http://www.dal.devry.edu/ -16945 US DeVry Institute of Technology, Kansas City http://www.kc.devry.edu/ -16946 US DeVry Institute of Technology, Phoenix http://www.phx.devry.edu/ -16947 US DeVry Institute of Technology, Pomona http://www.pom.devry.edu/ -16948 US Dickinson College http://www.dickinson.edu/ -16949 US Dickinson State University http://www.dsu.nodak.edu/ -16950 US Dillard University http://www.dillard.edu/ -16951 US Divine Word College http://www.svd.org -16952 US Dixie College http://www.dixie.edu/ -16953 US Doane College http://www.doane.edu/ -16954 US Dominican College http://www.dc.edu/ -16955 US Dominican College of San Rafael http://www.dominican.edu/ -16956 US Dominican School of Philosophy and Theology http://www.dspt.edu/ -16957 US Dominican University http://www.dom.edu/ -16958 US Dominion College http://www.dominion.edu/ -16959 US Dordt College http://www.dordt.edu/ -16960 US Dowling College http://www.dowling.edu/ -16961 US Drake University http://www.drake.edu/ -16962 US Drew University http://www.drew.edu/ -16963 US Drexel University http://www.drexel.edu/ -16964 US Drury College http://www.drury.edu/ -16965 US Duke University http://www.duke.edu/ -16966 US Duluth Business University http://www.dbumn.edu/ -16967 US Duquesne University http://www.duq.edu/ -16968 US D'Youville College http://www.dyc.edu/ -16969 US Earlham College http://www.earlham.edu/ -16970 US EarthNet Institute http://www.eni.edu/ -16971 US East Carolina University http://www.ecu.edu/ -16972 US East Central University http://www.ecok.edu/ -16973 US Eastern College http://www.eastern.edu/ -16974 US Eastern Connecticut State University http://www.ecsu.ctstateu.edu/ -16975 US Eastern Conservatory of Music http://easternconservatory-music.org/ -16976 US Eastern Illinois University http://www.eiu.edu/ -16977 US Eastern Kentucky University http://www.eku.edu/ -16978 US Eastern Mennonite University http://www.emu.edu/ -16979 US Eastern Michigan University http://www.emich.edu/ -16980 US Eastern Nazarene College http://www.enc.edu/ -16981 US Eastern New Mexico University http://www.enmu.edu/ -16982 US Eastern Oregon University http://www.eou.edu/ -16983 US Eastern Virginia Medical School http://www.evms.edu/ -16984 US Eastern Washington University http://www.ewu.edu/ -16985 US East Stroudsburg State University http://www.esu.edu/ -16986 US East Tennessee State University http://www.etsu.edu/ -16987 US East Texas Baptist University http://www.etbu.edu/ -16988 US East-West University http://www.eastwest.edu/ -16989 US Eckerd College http://www.eckerd.edu/ -16990 US Edgewood College http://www.edgewood.edu/ -16991 US Edinboro University of Pennsylvania http://www.edinboro.edu/ -16992 US Edison Community College http://www.edison.edu/ -16993 US Edward Waters College http://www.ewc.edu/ -16994 US Elizabeth City State University http://www.ecsu.edu/ -16995 US Elizabethtown College http://www.etown.edu/ -16996 US Elmhurst College http://www.elmhurst.edu/ -16997 US Elmira College http://www.elmira.edu/ -16998 US Elms College http://www.elms.edu/ -16999 US Elon College http://www.elon.edu/ -17000 US Embry-Riddle Aeronautical University http://www.embryriddle.edu/ -17001 US Embry Riddle Aeronautical University, Prescott http://www.prescott.erau.edu/ -17002 US Emerson College http://www.emerson.edu/ -17003 US Emmanuel College http://www.emmanuel.edu/ -17004 US Emmanuel College Georgia http://www.emmanuel-college.edu/ -17005 US Emmaus Bible College http://www.emmaus.edu/ -17006 US Emory & Henry College http://www.ehc.edu/ -17007 US Emory University http://www.emory.edu/ -17008 US Emporia State University http://www.emporia.edu/ -17009 US Erskine College http://www.erskine.edu/ -17010 US Eugene Bible College http://www.ebc.edu/ -17011 US Eureka College http://www.eureka.edu/ -17012 US Evangel University http://www.evangel.edu/ -17013 US Evergreen State College http://www.evergreen.edu/ -17014 US Excel College http://www.excelcollege.org/ -17015 US Excelsior College http://www.regents.edu/ -17016 US Fairfield University http://www.fairfield.edu/ -17017 US Fairleigh Dickinson University, Florham-Madison Campus http://www.fdu.edu/visitorcenter/fmwelcome.html -17018 US Fairleigh Dickinson University, Teaneck-Hackensack Campus http://www.fdu.edu/visitorcenter/thwelcome.html -17019 US Fairmont State College http://www.fscwv.edu/ -17020 US Fashion Institute of New York http://www.fitnyc.suny.edu/ -17021 US Faulkner University http://www.faulkner.edu/ -17022 US Fayetteville State University http://www.uncfsu.edu/ -17023 US Felician College http://www.felician.edu/ -17024 US Ferris State University http://www.ferris.edu/ -17025 US Ferrum College http://www.ferrum.edu/ -17026 US Fielding Institute http://www.fielding.edu/ -17027 US Finch University of Health Sciences - The Chicago Medical School http://www.finchcms.edu/ -17028 US Finlandia University http://www.finlandia.edu/ -17029 US Fisher College http://www.fisher.edu/ -17030 US Fisk University http://www.fisk.edu/ -17031 US Fitchburg State College http://www.fsc.edu/ -17032 US Flagler College http://www.flagler.edu/ -17033 US Florida Agricultural and Mechanical University http://www.famu.edu/ -17034 US Florida Atlantic University http://www.fau.edu/ -17035 US Florida Christian College http://www.fcc.edu/ -17036 US Florida Community College at Jacksonville http://www.fccj.org/ -17037 US Florida Gulf Coast University http://www.fgcu.edu/ -17038 US Florida Institute of Technology http://www.fit.edu/ -17039 US Florida International University http://www.fiu.edu/ -17040 US Florida Memorial College http://www.fmc.edu/ -17041 US Florida Metropolitan University, Fort Lauderdale College http://www.fmu.edu/784/f-784.htm -17042 US Florida Metropolitan University, Tampa College http://www.fmu.edu/762/f-762.htm -17043 US Florida Metropolitan University, Tampa College Brandon http://www.fmu.edu/764/f-764.htm -17044 US Florida Metropolitan University, Tampa College Lakeland http://www.fmu.edu/765/f-765.htm -17045 US Florida Southern College http://www.flsouthern.edu/ -17046 US Florida State University http://www.fsu.edu/ -17047 US Florida University of Medicine http://www.fuom.us/ -17048 US Fontbonne College http://www.fontbonne.edu/ -17049 US Foothill-De Anza Community College District http://www.fhda.edu/ -17050 US Fordham University http://www.fordham.edu/ -17051 US Forest Institute of Professional Psychology http://www.forestinstitute.org/ -17052 US Fort Hays State University http://www.fhsu.edu/ -17053 US Fort Lewis College http://www.fortlewis.edu/ -17054 US Fort Valley State College http://www.fvsc.peachnet.edu/ -17055 US Framingham State College http://www.framingham.edu/ -17056 US Franciscan School of Theology http://www.fst.edu/ -17057 US Franciscan University of Steubenville http://www.franuniv.edu/ -17058 US Francis Marion University http://www.fmarion.edu/ -17059 US Franklin and Marshall College http://www.fandm.edu/ -17060 US Franklin College http://www.franklincoll.edu/ -17061 US Franklin Pierce College http://www.fpc.edu/ -17062 US Franklin Pierce Law Center http://www.fplc.edu/ -17063 US Franklin University http://www.franklin.edu/ -17064 US Franklin W. Olin College of Engineering http://www.olin.edu/ -17065 US Frank Lloyd Wright School of Architecture http://www.taliesin.edu/ -17066 US Fred Hutchinson Cancer Research Center http://www.fhcrc.org/ -17067 US Freed-Hardeman University http://www.fhu.edu/ -17068 US Free University (Virginia Theological University) http://www.vtu.edu/ -17069 US Free Will Baptist Bible College http://www.fwbbc.edu/ -17070 US Fresno City College http://www.fresnocitycollege.edu/ -17071 US Fresno Pacific University http://www.fresno.edu/ -17072 US Friends University http://www.friends.edu/ -17073 US Frostburg State University http://www.fsu.umd.edu/ -17074 US Full Sail University http://www.fullsail.com/ -17075 US Furman University http://www.furman.edu/ -17076 US Gallaudet University http://www.gallaudet.edu/ -17077 US Gannon University http://www.gannon.edu/ -17078 US Gardner Webb University http://www.gardner-webb.edu/ -17079 US Gemological Institute of America http://www.gia.edu/ -17080 US Geneva College http://www.geneva.edu/ -17081 US George Fox University http://www.georgefox.edu/ -17082 US George Mason University http://www.gmu.edu/ -17083 US Georgetown College http://www.georgetowncollege.edu/ -17084 US Georgetown University http://www.georgetown.edu/ -17085 US George Washington University http://www.gwu.edu/ -17086 US George Wythe College http://www.gwc.edu/ -17087 US Georgia Baptist College of Nursing http://www.gbcn.edu/ -17088 US Georgia College & State University http://www.gcsu.edu/ -17089 US Georgia Health Sciences University http://www.georgiahealth.edu/ -17090 US Georgia Institute of Technology http://www.gatech.edu/ -17091 US Georgian Court College http://www.georgian.edu/ -17092 US Georgia School of Professional Psychology http://www.aspp.edu/ga.html -17093 US Georgia Southern University http://www.georgiasouthern.edu/ -17094 US Georgia Southwestern University http://www.gsw.edu/ -17095 US Georgia State University http://www.gsu.edu/ -17096 US Gettysburg College http://www.gettysburg.edu/ -17097 US Glendale University College of Law http://www.glendalelaw.edu/ -17098 US Glenville State College http://www.glenville.wvnet.edu/ -17099 US Goddard College http://www.goddard.edu/ -17100 US God's Bible School and College http://www.gbs.edu/ -17101 US Golden Gate University http://www.ggu.edu/ -17102 US Goldey-Beacom College http://goldey.gbc.edu/ -17103 US Gonzaga University http://www.gonzaga.edu/ -17104 US Gordon College http://www.gordon.edu/ -17105 US Gordon Conwell Theological Seminary http://www.gcts.edu/ -17106 US Goshen College http://www.goshen.edu/ -17107 US Goucher College http://www.goucher.edu/ -17108 US Governors State University http://www.govst.edu/ -17109 US Grace Bible College http://www.gbcol.edu/ -17110 US Grace College http://www.grace.edu/ -17111 US Graceland College http://www.graceland.edu/ -17112 US Grace University http://www.graceu.edu/ -17113 US Graduate Theological Union http://www.gtu.edu/ -17114 US Grambling State University http://www.gram.edu/ -17115 US Grand Canyon University http://www.gcu.edu/ -17116 US Grand Valley State University http://www.gvsu.edu/ -17117 US Grand View College http://www.gvc.edu/ -17118 US Grantham University http://www.grantham.edu/ -17119 US Gratz College http://www.gratzcollege.edu/ -17120 US Great Lakes Christian College http://www.glcc.edu/ -17121 US Green Mountain College http://www.greenmtn.edu/ -17122 US Greensboro College http://www.gborocollege.edu/ -17123 US Greenville College http://www.greenville.edu/ -17124 US Grinnell College http://www.grinnell.edu/ -17125 US Grove City College http://www.gcc.edu/ -17126 US Guilford College http://www.guilford.edu/ -17127 US Gustavus Adolphus College http://www.gac.edu/ -17128 US Gwynedd-Mercy College http://www.gmc.edu/ -17129 US Hagerstown Community College http://www.hcc.cc.md.us/ -17130 US Hamilton College http://www.hamilton.edu/ -17131 US Hamilton Technical College http://www.vca1.com/hamiltontech/ -17132 US Hamline University http://www.hamline.edu/ -17133 US Hampden-Sydney College http://www.hsc.edu/ -17134 US Hampshire College http://www.hampshire.edu/ -17135 US Hampton College http://www.hamptoncollege.org/ -17136 US Hampton University http://www.hamptonu.edu/ -17137 US Hannibal-Lagrange College http://www.hlg.edu/ -17138 US Hanover College http://www.hanover.edu/ -17139 US Harding University http://www.harding.edu/ -17140 US Harding University Graduate School of Religion http://www.hugsr.edu/ -17141 US Hardin-Simmons University http://www.hsutx.edu/ -17142 US Harrington Institute of Interior Design http://www.interiordesign.edu/ -17143 US Harris-Stowe State University http://www.hssu.edu/ -17144 US Hartford College for Women http://www.hartford.edu/SchoolsColleges/HCW/HCW.html -17145 US Hartford Graduate Center (Rensselaer at Hartford) http://www.hgc.edu/ -17146 US Hartwick College http://www.hartwick.edu/ -17147 US Harvard University http://www.harvard.edu/ -17148 US Harvey Mudd College http://www.hmc.edu/ -17149 US Hastings College http://www.hastings.edu/ -17150 US Haverford College http://www.haverford.edu/ -17151 US Hawaii Pacific University http://www.hpu.edu/ -17152 US Heartland Baptist Bible College http://www.hbbc.edu/ -17153 US Hebrew College http://www.hebrewcollege.edu/ -17154 US Heidelberg College http://www.heidelberg.edu/ -17155 US Henderson State Univerisity http://www.hsu.edu/ -17156 US Hendrix College http://www.hendrix.edu/ -17157 US Heritage College http://www.heritage.edu/ -17158 US Hesser College http://www.hesser.edu/ -17159 US High Point University http://www.highpoint.edu/ -17160 US Hilbert College http://www.hilbert.edu/ -17161 US Hillsdale College http://www.hillsdale.edu/ -17162 US Hiram College http://www.hiram.edu/ -17163 US Hobart and William Smith Colleges http://www.hws.edu/ -17164 US Hobe Sound Bible College http://www.hsbc.edu/ -17165 US Hodges University http://www.hodges.edu/ -17166 US Hofstra University http://www.hofstra.edu/ -17167 US Hollins University http://www.hollins.edu/ -17168 US Holy Apostles College http://www.holy-apostles.org/ -17169 US Holy Cross College http://www.hcc-nd.edu/ -17170 US Holy Family College http://www.hfc.edu/ -17171 US Holy Names College http://www.hnc.edu/ -17172 US Hood College http://www.hood.edu/ -17173 US Hope College http://www.hope.edu/ -17174 US Hope International University http://www.hiu.edu/ -17175 US Houghton College http://www.houghton.edu/ -17176 US Houston Baptist University http://www.hbu.edu/ -17177 US Howard Payne University http://www.hputx.edu/ -17178 US Howard University http://www.howard.edu/ -17179 US Humboldt State University http://www.humboldt.edu/ -17180 US Humphreys College http://www.humphreys.edu/ -17181 US Huntington College http://www.huntcol.edu/ -17182 US Huron University http://www.huron.edu/ -17183 US Husson College http://www.husson.edu/ -17184 US Huston-Tillotson College http://www.htc.edu/ -17185 US ICI University http://www.ici.edu/ -17186 US ICT College http://www.ictcollege.edu/ -17187 US Idaho State University http://www.isu.edu/ -17188 US Iglobal University http://www.iglobal.edu/ -17189 US Illinois Benedictine University http://www.ben.edu/ -17190 US Illinois College http://www.ic.edu/ -17191 US Illinois College of Optometry http://www.ico.edu/ -17192 US Illinois Institute of Technology http://www.iit.edu/ -17193 US Illinois School of Professional Psychology - Chicago Campus http://www.aspp.edu/ilch.html -17194 US Illinois School of Professional Psychology - Meadows Campus http://www.aspp.edu/ilrm.html -17195 US Illinois State University http://www.ilstu.edu/ -17196 US Illinois Valley Community College http://www.ivcc.edu/ -17197 US Illinois Wesleyan University http://www.iwu.edu/ -17198 US Immaculata University http://www.immaculata.edu/ -17199 US IMPAC University http://www.impacu.edu/ -17200 US Indiana Institute of Technologyy http://www.indtech.edu/ -17201 US Indiana State University http://www.indstate.edu/ -17202 US Indiana University at Bloomington http://www.iub.edu/ -17203 US Indiana University at Kokomo http://www.iuk.edu/ -17204 US Indiana University at South Bend http://www.iusb.edu/ -17205 US Indiana University - East http://www.iue.indiana.edu/ -17206 US Indiana University - Northwest http://www.iun.indiana.edu/ -17207 US Indiana University of Pennsylvania http://www.iup.edu/ -17208 US Indiana University-Purdue University at Columbus http://www.columbus.iupui.edu/ -17209 US Indiana University-Purdue University at Fort Wayne http://www.ipfw.edu/ -17210 US Indiana University-Purdue University at Indianapolis http://www.iupui.edu/ -17211 US Indiana University - Southeast http://www.ius.indiana.edu/ -17212 US Indiana University (System) http://www.indiana.edu/ -17213 US Indiana Wesleyan University http://www.indwes.edu/ -17214 US Institute of Clinical Social Work http://www.icsw.com/ -17215 US Institute of Paper Science and Technology http://www.ipst.edu/ -17216 US Institute of Textile Technology http://www.itt.edu/ -17217 US Institute of Transpersonal Psychology http://www.itp.edu/ -17218 US IntelliTec College - Grand Junction http://www.intelliteccollege.edu/ -17219 US International Academy of Merchandising and Design Chicago http://www.iamd.edu/ -17220 US International Academy of Merchandising and Design Tampa http://www.academy.edu/ -17221 US International Bible College http://www.i-b-c.edu/ -17222 US International College http://www.internationalcollege.edu/ -17223 US Iona College http://www.iona.edu/ -17224 US Iowa State University of Science and Technology http://www.iastate.edu/ -17225 US Iowa Wesleyan College http://www.iwc.edu/ -17226 US Ithaca College http://www.ithaca.edu/ -17227 US ITT Technical Institute Fort Wayne http://www.itttech.edu/campus/ -17228 US ITT Technical Institute Indianapolis http://www.itttech.edu/campus/ -17229 US ITT Technical Institute Maitland http://www.itttech.edu/campus/ -17230 US ITT Technical Institute Portland http://www.itttech.edu/campus/ -17231 US ITT Technical Institute West Covina http://www.itttech.edu/campus/ -17232 US Jackson State University http://www.jsums.edu/ -17233 US Jacksonville State University http://www.jsu.edu/ -17234 US Jacksonville University http://www.ju.edu/ -17235 US James Madison University http://www.jmu.edu/ -17236 US Jamestown College http://www.jc.edu/ -17237 US Jarvis Christian College http://www.jarvis.edu/ -17238 US John Brown University http://www.jbu.edu/ -17239 US John Carroll University http://www.jcu.edu/ -17240 US John F. Kennedy University http://www.jfku.edu/ -17241 US John Marshall Law School http://www.jmls.edu/ -17242 US John Paul the Great Catholic University http://www.jpcatholic.com/ -17243 US Johns Hopkins University http://www.jhu.edu/ -17244 US Johnson Bible College http://www.jbc.edu/ -17245 US Johnson County Community College http://www.jccc.edu/ -17246 US Johnson C. Smith University http://www.jcsu.edu/ -17247 US Johnson State College http://www.jsc.vsc.edu/ -17248 US Johnson & Wales University http://www.jwu.edu/ -17249 US Johnson & Wales University, Charleston http://www.jwu.edu/charles/camp_charles.htm -17250 US John Wesley College http://www.johnwesley.edu/ -17251 US Jones College http://www.jones.edu/ -17252 US Jones International University http://www.jonesinternational.edu/ -17253 US Judson College Elgin http://www.judson-il.edu/ -17254 US Judson College Marion http://home.judson.edu/ -17255 US Juniata College http://www.juniata.edu/ -17256 US Kalamazoo College http://www.kzoo.edu/ -17257 US Kankakee Community College http://www.kankakeecc.org/ -17258 US Kansas City Art Institute http://www.kcai.edu/ -17259 US Kansas State University http://www.ksu.edu/ -17260 US Kansas Wesleyan University http://www.kwu.edu/ -17261 US Kaplan University http://www.kaplan.edu/ -17262 US Katharine Gibbs School http://www.kgibbs.com/ -17263 US Kean University of New Jersey http://www.kean.edu/ -17264 US Keck Graduate Institute of Applied Life Sciences http://www.kgi.edu/ -17265 US Keene State College http://www.keene.edu/ -17266 US Keller Graduate School of Management http://www.keller.edu/ -17267 US Kendall College http://www.kendall.edu/ -17268 US Kendall College of Art and Design http://www.kcad.edu/ -17269 US Kennesaw State University http://www.kennesaw.edu/ -17270 US Kent State University http://www.kent.edu/ -17271 US Kent State University - Ashtabula http://www.ashtabula.kent.edu/ -17272 US Kent State University - East Liverpool http://www.kenteliv.kent.edu/ -17273 US Kent State University - Salem http://www.salem.kent.edu/ -17274 US Kent State University - Stark http://www.stark.kent.edu/ -17275 US Kent State University - Trumbull http://www.trumbull.kent.edu/ -17276 US Kent State University - Tuscarawas http://www.tusc.kent.edu/ -17277 US Kentucky Christian College http://www.kcc.edu/ -17278 US Kentucky State University http://www.kysu.edu/ -17279 US Kentucky Wesleyan College http://www.kwc.edu/ -17280 US Kenyon College http://www.kenyon.edu/ -17281 US Kettering University (GMI) http://www.kettering.edu/ -17282 US Keuka College http://www.keuka.edu/ -17283 US King College http://www.king.edu/ -17284 US King's College http://www.kings.edu/ -17285 US Kirksville College of Osteopathic Medicine http://www.kcom.edu/ -17286 US Kirkwood Community College http://www.kirkwood.edu/ -17287 US Knox College http://www.knox.edu/ -17288 US Knoxville College http://www.knoxvillecollege.edu/ -17289 US Kutztown University of Pennsylvania http://www.kutztown.edu/ -17290 US Laboratory Institute of Merchandising http://www.limcollege.edu/ -17291 US Lafayette College http://www.lafayette.edu/ -17292 US Lagrange College http://www.lgc.edu/ -17293 US Lake Erie College http://www.lakeerie.edu/ -17294 US Lake Forest College http://www.lfc.edu/ -17295 US Lake Forest Graduate School of Management http://www.lfgsm.edu/ -17296 US Lakeland College http://www.lakeland.edu/ -17297 US Lake Superior State University http://www.lssu.edu/ -17298 US Lakeview College of Nursing http://www.lakeviewcol.edu/ -17299 US Lamar University http://www.lamar.edu/ -17300 US Lamar University - Port Arthur http://www.pa.lamar.edu/ -17301 US Lambuth University http://www.lambuth.edu/ -17302 US Lancaster Bible College http://www.lbc.edu/ -17303 US Lander University http://www.lander.edu/ -17304 US Lane College http://www.lanecollege.edu/ -17305 US Langston University http://www.lunet.edu/ -17306 US La Roche College http://www.laroche.edu/ -17307 US La Salle University http://www.lasalle.edu/ -17308 US Lasell College http://www.lasell.edu/ -17309 US La Sierra University http://www.lasierra.edu/ -17310 US Laurus Technical Institute http://www.laurus.edu/ -17311 US Lawrence Technological University http://www.ltu.edu/ -17312 US Lawrence University http://www.lawrence.edu/ -17313 US Lebanon Valley College http://www.lvc.edu/ -17314 US Lees-McRae College http://www.lmc.edu/ -17315 US Lee University http://www.leeuniversity.edu/ -17316 US Lehigh Univervsity http://www.lehigh.edu/ -17317 US Le Moyne College http://www.lemoyne.edu/ -17318 US Le Moyne-Owen College http://www.lemoyne-owen.edu/ -17319 US Lenoir-Rhyne College http://www.lrc.edu/ -17320 US Lesley University http://www.lesley.edu/ -17321 US Letourneau University http://www.letu.edu/ -17322 US Lewis and Clark College http://www.lclark.edu/ -17323 US Lewis & Clark Community College http://www.lc.cc.il.us/ -17324 US Lewis-Clark State College http://www.lcsc.edu/ -17325 US Lewis University http://www.lewisu.edu/ -17326 US Liberty University http://www.liberty.edu/ -17327 US Life Chiropractic College West http://www.lifewest.edu/ -17328 US Life University http://www.life.edu/ -17329 US Limestone College http://www.limestone.edu/ -17330 US Lincoln Memorial University http://www.lmunet.edu/ -17331 US Lincoln University Missouri http://www.lincolnu.edu/ -17332 US Lincoln University Pennsylvania http://www.lincoln.edu/ -17333 US Lincoln University San Francisco http://www.lincolnuca.edu/ -17334 US Lindenwood University http://www.lindenwood.edu/ -17335 US Lindsey Wilson College http://www.lindsey.edu/ -17336 US Linfield College http://www.linfield.edu/ -17337 US Lipscomb University http://www.lipscomb.edu/ -17338 US Livingstone College http://www.livingstone.edu/ -17339 US Lock Haven University of Pennsylvania http://www.lhup.edu/ -17340 US Logan College of Chiropractic http://www.logan.edu/ -17341 US Loma Linda University http://www.llu.edu/ -17342 US Long Island University http://www.liunet.edu/ -17343 US Long Island University, C.W. Post Campus http://www.cwpost.liunet.edu/cwis/cwp/post.html -17344 US Long Island University, Southampton College http://www.southampton.liunet.edu/ -17345 US Longwood College http://www.lwc.edu/ -17346 US Loras College http://www.loras.edu/ -17347 US Los Angeles College of Chiropractic http://www.lacc.edu/ -17348 US Louisiana Baptist University http://www.lbu.edu/ -17349 US Louisiana College http://www.lacollege.edu/ -17350 US Louisiana State University and Agricultural and Mechanical College http://www.lsu.edu/ -17351 US Louisiana State University at Alexandria http://www.lsua.edu/ -17352 US Louisiana State University at Eunice http://www.lsue.edu/ -17353 US Louisiana State University Health Sciences Center New Orleans http://www.lsuhsc.edu/ -17354 US Louisiana State University in Shreveport http://www.lsus.edu/ -17355 US Louisiana Tech University http://www.latech.edu/ -17356 US Lourdes College http://www.lourdes.edu/ -17357 US Loyola College in Maryland http://www.loyola.edu/ -17358 US Loyola Marymount University http://www.lmu.edu/ -17359 US Loyola University New Orleans http://www.loyno.edu/ -17360 US Loyola University of Chicago http://www.luc.edu/ -17361 US Lubbock Christian University http://www.lcu.edu/ -17362 US Lutheran Bible Institute of Seattle http://www.lbi.edu/ -17363 US Luther College http://www.luther.edu/ -17364 US Lycoming College http://www.lycoming.edu/ -17365 US Lynchburg College http://www.lynchburg.edu/ -17366 US Lyndon State College http://www.lsc.vsc.edu/ -17367 US Lynn University http://www.lynn.edu/ -17368 US Lyon College http://www.lyon.edu/ -17369 US Macalester College http://www.macalstr.edu/ -17370 US MacMurray College http://www.mac.edu/ -17371 US Macon State College http://www.maconstate.edu/ -17372 US Madison University (Distance Education) http://www.madisonu.com/ -17373 US Madonna University http://madonna2.siteobjects.com/pages/index.cfm -17374 US Maharishi University of Management http://www.mum.edu/ -17375 US Maine College of Art http://www.meca.edu/ -17376 US Maine Maritime Academy http://www.mainemaritime.edu/ -17377 US Malone College http://www.malone.edu/ -17378 US Manchester College http://www.manchester.edu/ -17379 US Manhattan Christian College http://www.mccks.edu/ -17380 US Manhattan College http://www.mancol.edu/ -17381 US Manhattan School of Music http://www.msmnyc.edu/ -17382 US Manhattanville College http://www.mville.edu/ -17383 US Mankato State University http://www.mankato.msus.edu/ -17384 US Mansfield University of Pennsylvania http://www.mnsfld.edu/ -17385 US Maranatha Baptist Bible College http://www.mbbc.edu/ -17386 US Marian College http://www.marian.edu/ -17387 US Marian College of Fond Du Lac http://www.mariancoll.edu/ -17388 US Marietta College http://www.marietta.edu/ -17389 US Marist College http://www.marist.edu/ -17390 US Marlboro College http://www.marlboro.edu/ -17391 US Marquette University http://www.mu.edu/ -17392 US Marshall University http://www.marshall.edu/ -17393 US Mars Hill College http://www.mhc.edu/ -17394 US Martin Luther College http://www.mlc-wels.edu/ -17395 US Martin Methodist College http://www.martinmethodist.edu/ -17396 US Martin University http://www.martin.edu/ -17397 US Mary Baldwin College http://www.mbc.edu/ -17398 US Marycrest International University http://www.mcrest.edu/ -17399 US Marygrove College http://www.marygrove.edu/ -17400 US Marylhurst University http://www.marylhurst.edu/ -17401 US Marymount College New York http://www.marymt.edu/ -17402 US Marymount Manhattan College http://marymount.mmm.edu/ -17403 US Marymount University http://www.marymount.edu/ -17404 US Maryville College http://www.maryvillecollege.edu/ -17405 US Maryville University of St. Louis http://www.maryvillestl.edu/ -17406 US Mary Washington College http://www.mwc.edu/ -17407 US Marywood University http://www.marywood.edu/ -17408 US Massachusetts College of Art http://www.massart.edu/ -17409 US Massachusetts College of Liberal Arts http://www.mcla.mass.edu/ -17410 US Massachusetts College of Pharmacy and Allied Health Sciences http://www.mcp.edu/ -17411 US Massachusetts Institute of Technology http://www.mit.edu/ -17412 US Massachusetts Maritime Academy http://www.mma.mass.edu/ -17413 US Massachusetts School of Professional Psychology http://www.mspp.edu/ -17414 US Mayo Graduate School http://www.mayo.edu/mgs/gs.html -17415 US Mayo Medical School http://www.mayo.edu/education/mms/ -17416 US Mayville State University http://www.masu.nodak.edu/ -17417 US McKendree College http://www.mckendree.edu/ -17418 US McMurry University http://www.mcm.edu/ -17419 US McNeese State University http://www.mcneese.edu/ -17420 US McPherson College http://www.mcpherson.edu/ -17421 US Medaille College http://www.medaille.edu/ -17422 US Medcenter One College of Nursing http://www.medcenterone.com/nursing/nursing.htm -17423 US Medical College of Georgia http://www.mcg.edu/ -17424 US Medical College of Ohio http://www.mco.edu/ -17425 US Medical College of Pennsylvania and Hahnemann University http://www.mcphu.edu/ -17426 US Medical College of Wisconsin http://www.mcw.edu/ -17427 US Medical University of South Carolina http://www.musc.edu/ -17428 US Meharry Medical College http://www.mmc.edu/ -17429 US Memphis College of Art http://www.mca.edu/ -17430 US Menlo College http://www.menlo.edu/ -17431 US Mennonite College of Nursing http://www.mcn.ilstu.edu/ -17432 US Mercer University http://www.mercer.edu/ -17433 US Mercer University, Cecil B. Day Campus http://www.mercer.edu/cbd/ -17434 US Mercy College http://www.mercynet.edu/ -17435 US Mercyhurst College http://www.mercyhurst.edu/ -17436 US Meredith College http://www.meredith.edu/ -17437 US Merrimack College http://www.merrimack.edu/ -17438 US Mesa State College http://www.mesastate.edu/ -17439 US Messiah College http://www.messiah.edu/ -17440 US Methodist College http://www.methodist.edu/ -17441 US Metropolitan State College of Denver http://www.mscd.edu/ -17442 US Metropolitan State University http://www.metro.msus.edu/ -17443 US MGH Institute of Health Professions http://www.mghihp.edu/ -17444 US Miami Dade College http://www.mdc.edu/ -17445 US Miami University of Ohio http://www.muohio.edu/ -17446 US Miami University of Ohio - Hamilton http://www.ham.muohio.edu/ -17447 US Miami University of Ohio - Middletown http://www.mid.muohio.edu/ -17448 US Michigan School of Professional Psychology http://www.mispp.edu/ -17449 US Michigan State University http://www.msu.edu/ -17450 US Michigan Technological University http://www.mtu.edu/ -17451 US Mid-America Nazarene University http://www.mnu.edu/ -17452 US Mid-American Bible College http://www.concentric.net/~rkriesel/MBC/MBC.shtml -17453 US Mid-Continent Baptist Bible College http://www.mcbc.edu/ -17454 US Middlebury College http://www.middlebury.edu/ -17455 US Middle Tennessee State University http://www.mtsu.edu/ -17456 US Midland Lutheran College http://www.mlc.edu/ -17457 US Midway College http://www.midway.edu/ -17458 US Midwestern State University http://www.mwsu.edu/ -17459 US Midwestern University http://www.midwestern.edu/ -17460 US Miles College http://www.miles.edu/ -17461 US Millennia Atlantic University http://www.maufl.edu/ -17462 US Millersville University of Pennsylvania http://www.millersv.edu/ -17463 US Milligan College http://www.milligan.edu/ -17464 US Millikin University http://www.millikin.edu/ -17465 US Millsaps College http://www.millsaps.edu/ -17466 US Mills College http://www.mills.edu/ -17467 US Mills Grae University http://www.mgu.edu/ -17468 US Milwaukee Institute of Art and Design http://www.miad.edu/ -17469 US Milwaukee School of Engineering http://www.msoe.edu/ -17470 US Minneapolis College of Art and Design http://www.mcad.edu/ -17471 US Minnesota Bible College http://www.mnbc.edu/ -17472 US Minnesota School of Professional Psychology http://www.aspp.edu/mn.html -17473 US Minot State University http://www.misu.nodak.edu/ -17474 US Mississippi College http://www.mc.edu/ -17475 US Mississippi State University http://www.msstate.edu/ -17476 US Mississippi University for Women http://www.muw.edu/ -17477 US Mississippi Valley State University http://www.mvsu.edu/ -17478 US Missouri Baptist College http://www.mobap.edu/ -17479 US Missouri Southern State College http://www.mssc.edu/ -17480 US Missouri Tech http://www.motech.edu/ -17481 US Missouri University of Science and Technology http://www.mst.edu/ -17482 US Missouri Valley College http://www.murlin.com/~webfx/mvc/ -17483 US Missouri Western State College http://www.mwsc.edu/ -17484 US Molloy College http://www.molloy.edu/ -17485 US Monmouth University http://www.monmouth.edu/ -17486 US Montana State University http://www.montana.edu/ -17487 US Montana State University - Billings http://www.msubillings.edu/ -17488 US Montana State University - Northern http://www.msun.edu/ -17489 US Montana Tech http://www.mtech.edu/ -17490 US Montclair State University http://www.montclair.edu/ -17491 US Monterey Institute of International Studies http://www.miis.edu/ -17492 US Montreat College http://www.montreat.edu/ -17493 US Montserrat College of Art http://www.montserrat.edu/ -17494 US Moody Bible Institute http://www.moody.edu/ -17495 US Moore College of Art and Design http://www.moore.edu/ -17496 US Moorhead State University http://www.moorhead.msus.edu/ -17497 US Moraine Valley Community College http://www.morainevalley.edu/ -17498 US Moravian College http://www.moravian.edu/ -17499 US Morehead State University http://www.morehead-st.edu/ -17500 US Morehouse College http://www.morehouse.edu/ -17501 US Morehouse School of Medicine http://www.msm.edu/ -17502 US Morgan State University http://www.morgan.edu/ -17503 US Morningside College http://www.morningside.edu/ -17504 US Morris Brown College http://www.morrisbrown.edu/ -17505 US Morris College http://www.scicu.org/morris/ -17506 US Morrison College http://www.morrison.neumont.edu/ -17507 US Mountain State University http://www.mountainstate.edu/ -17508 US Mount Aloysius College http://www.mtaloy.edu/ -17509 US Mount Carmel College of Nursing http://www.mccn.edu/ -17510 US Mount Holyoke College http://www.mtholyoke.edu/ -17511 US Mount Ida College http://www.mountida.edu/ -17512 US Mount Marty College http://www.mtmc.edu/ -17513 US Mount Mary College http://www.mtmary.edu/ -17514 US Mount Mercy College http://www.mtmercy.edu/ -17515 US Mount Olive College http://www.mountolivecollege.edu/ -17516 US Mount Senario College http://www.mscfs.edu/ -17517 US Mount Sinai School of Medicine http://www.mssm.edu/ -17518 US Mount St. Clare College http://www.clare.edu/ -17519 US Mount St. Mary College http://www.msmc.edu/ -17520 US Mount St. Mary's College California http://www.msmc.la.edu/ -17521 US Mount St. Mary's College Maryland http://www.msmary.edu/ -17522 US Mount Union College http://www.mountunion.edu/ -17523 US Mount Vernon College http://www.gwu.edu/~mvcgw/ -17524 US Mount Vernon Nazarene College http://www.mvnc.edu/ -17525 US Muhlenberg College http://www.muhlberg.edu/ -17526 US Multnomah Bible College http://www.multnomah.edu/ -17527 US Murray State University http://www.mursuky.edu/ -17528 US Muskingum College http://www.muskingum.edu/ -17529 US NAES College http://www.naes.indian.com/ -17530 US National American University http://www.national.edu/ -17531 US National American University, Albuquerque http://www.national.edu/albuquerque.html -17532 US National American University, Colorado Springs http://www.national.edu/col_springs.html -17533 US National American University, Denver http://www.national.edu/denver.html -17534 US National American University, Kansas City http://www.national.edu/kansas_city.html -17535 US National American University, Roseville http://www.national.edu/roseville.html -17536 US National American University, Sioux Falls http://www.national.edu/sioux_falls.html -17537 US National College of Chiropractic http://www.national.chiropractic.edu/ -17538 US National College of Naturopathic Medicine http://www.ncnm.edu/ -17539 US National Defense University http://www.ndu.edu/ -17540 US National Hispanic University http://www.nhu.edu/ -17541 US National-Louis University http://www.nl.edu/ -17542 US National Technological University http://www.ntu.edu/ -17543 US National Theatre Conservatory http://www.denvercenter.org/education/ed_ntc.htm -17544 US National University http://www.nu.edu/ -17545 US Naval Postgraduate School http://www.nps.navy.mil/ -17546 US Nazarene Bible College http://www.nbc.edu/ -17547 US Nazareth College http://www.naz.edu/ -17548 US Nebraska Christian College http://www.nechristian.edu/ -17549 US Nebraska Methodist College of Nursing and Allied Health http://www.methodistcollege.edu/nurseover.html -17550 US Nebraska Wesleyan University http://www.nebrwesleyan.edu/ -17551 US Neumann College http://www.neumann.edu/ -17552 US Newberry College http://www.newberry.edu/ -17553 US New College of California http://www.newcollege.edu/ -17554 US New College of Florida http://www.ncf.edu/ -17555 US New England College http://www.nec.edu/ -17556 US New England College of Optometry http://www.ne-optometry.edu/ -17557 US New England Conservatory of Music http://www.newenglandconservatory.edu/ -17558 US New England Institute of Technology http://www.neit.edu/ -17559 US New England School of Art and Design http://www.suffolk.edu/nesad/ -17560 US New England School of Communications http://www.nescom.edu/ -17561 US New England School of Law http://www.nesl.edu/ -17562 US New Hampshire College http://www.nhc.edu/ -17563 US New Jersey City University http://www.njcu.edu/ -17564 US New Jersey Institute of Technology http://www.njit.edu/ -17565 US Newman University http://www.ksnewman.edu/ -17566 US New Mexico Highlands University http://www.nmhu.edu/ -17567 US New Mexico Institute of Mining and Technology http://www.nmt.edu/ -17568 US New Mexico State University http://www.nmsu.edu/ -17569 US Newschool of Architecture and Design http://www.newschoolarch.edu/ -17570 US New York Academy of Art, Graduate School of Figurative Art http://www.nyaa.edu/ -17571 US New York Chiropractic College http://www.nycc.edu/ -17572 US New York College of Podiatric Medicine http://www.nycpm.edu/ -17573 US New York Film Academy http://www.nyfa.edu/ -17574 US New York Institute of Technology http://www.nyit.edu/ -17575 US New York Law School http://www.nyls.edu/ -17576 US New York Medical College http://www.nymc.edu/ -17577 US New York School of Interior Design http://www.nysid.edu/ -17578 US New York University http://www.nyu.edu/ -17579 US Niagara University http://www.niagara.edu/ -17580 US Nicholls State University http://www.nicholls.edu/ -17581 US Nichols College http://www.nichols.edu/ -17582 US Norfolk State University http://www.nsu.edu/ -17583 US North Carolina Agricultural and Technical State University http://www.ncat.edu/ -17584 US North Carolina Central University http://www.nccu.edu/ -17585 US North Carolina School of the Arts http://www.ncarts.edu/ -17586 US North Carolina State University http://www.ncsu.edu/ -17587 US North Carolina Wesleyan College http://www.ncwc.edu/ -17588 US North Central Bible College http://www.ncbc.edu/ -17589 US North Central College http://www.noctrl.edu/ -17590 US Northcentral University http://www.ncu.edu/ -17591 US North Dakota State University http://www.ndsu.nodak.edu/ -17592 US Northeastern Illinois University http://www.neiu.edu/ -17593 US Northeastern Ohio University College of Medicine http://www.neoucom.edu/ -17594 US Northeastern State University http://www.nsuok.edu/ -17595 US Northeastern University http://www.neu.edu/ -17596 US Northern Arizona University http://www.nau.edu/ -17597 US Northern Illinois University http://www.niu.edu/ -17598 US Northern Kentucky University http://www.nku.edu/ -17599 US Northern Michigan University http://www.nmu.edu/ -17600 US Northern State University http://www.northern.edu/ -17601 US Northern Virginia Community College http://www.nv.cc.va.us/ -17602 US Northface University http://www.northface.edu/ -17603 US North Georgia College http://www.ngc.peachnet.edu/ -17604 US North Greenville College http://www.ngc.edu/ -17605 US Northland College http://www.northland.edu/ -17606 US North Park University http://www.northpark.edu/ -17607 US Northwest Christian College http://www.nwcc.edu/ -17608 US Northwest College of Art http://www.nca.edu/ -17609 US Northwestern College Iowa http://www.nwciowa.edu/ -17610 US Northwestern College of Chiropractic http://www.nwchiro.edu/ -17611 US Northwestern College St. Paul http://www.nwc.edu/ -17612 US Northwestern Oklahoma State University http://www.nwalva.edu/ -17613 US Northwestern State University of Louisiana http://www.nsula.edu/ -17614 US Northwestern University http://www.nwu.edu/ -17615 US Northwest Missouri State University http://www.nwmissouri.edu/ -17616 US Northwest Nazarene University http://www.nnu.edu/ -17617 US Northwest University http://www.northwestu.edu/ -17618 US Northwood University http://www.northwood.edu/ -17619 US Northwood University, Florida Campus http://www.northwood.edu/campuses/florida/ -17620 US Northwood University, Texas Campus http://www.northwood.edu/campuses/texas/ -17621 US Norwich University http://www.norwich.edu/ -17622 US Notre Dame College http://www.notredame.edu/ -17623 US Notre Dame College of Ohio http://www.ndc.edu/ -17624 US Notre Dame de Namur University http://www.ndnu.edu/ -17625 US Nova Southeastern University http://www.nova.edu/ -17626 US Nyack College http://www.nyackcollege.edu/ -17627 US Oakland City University http://www.oak.edu/ -17628 US Oakland University http://www.oakland.edu/ -17629 US Oakton Community College http://www.oakton.edu/ -17630 US Oakwood College http://www.oakwood.edu/ -17631 US Oberlin College http://www.oberlin.edu/ -17632 US Occidental College http://www.oxy.edu/ -17633 US Oglala Lakota College http://www.olc.edu/ -17634 US Oglethorpe University http://www.oglethorpe.edu/ -17635 US Ohio College of Podiatric Medicine http://www.ocpm.edu/ -17636 US Ohio Dominican College http://www.odc.edu/ -17637 US Ohio Northern University http://www.onu.edu/ -17638 US Ohio State University http://www.ohio-state.edu/ -17639 US Ohio State University - Lima http://www.lima.ohio-state.edu/ -17640 US Ohio State University - Mansfield http://www.mansfield.ohio-state.edu/ -17641 US Ohio State University - Marion http://www.marion.ohio-state.edu/ -17642 US Ohio State University - Newark http://www.newark.ohio-state.edu/ -17643 US Ohio University http://www.ohiou.edu/ -17644 US Ohio University - Chillicothe http://www.ohiou.edu/chillicothe/ -17645 US Ohio University - Eastern http://www.eastern.ohiou.edu/ -17646 US Ohio University - Lancaster http://www.lancaster.ohiou.edu/ -17647 US Ohio University - Southern http://www.ohiou.edu/southern/ -17648 US Ohio University - Zanesville http://www.zanesville.ohiou.edu/ -17649 US Ohio Valley College http://www.ovc.edu/ -17650 US Ohio Wesleyan University http://www.owu.edu/ -17651 US Oklahoma Baptist University http://www.okbu.edu/ -17652 US Oklahoma Christian University http://www.oc.edu/ -17653 US Oklahoma City University http://www.okcu.edu/ -17654 US Oklahoma Panhandle State University http://www.opsu.edu/ -17655 US Oklahoma State University http://www.okstate.edu/ -17656 US Oklahoma State University Center for Health Sciences http://osu.com.okstate.edu/ -17657 US Oklahoma State University - Institute of Technology http://www.osuit.edu/ -17658 US Oklahoma State University - Oklahoma City http://www.osuokc.edu/ -17659 US Oklahoma State University - Tulsa http://www.osu-tulsa.okstate.edu/ -17660 US Old Dominion University http://www.odu.edu/ -17661 US Olive-Harvey College http://www.ccc.edu/oliveharvey/ -17662 US Olivet College http://www.olivetcollege.edu/ -17663 US Olivet Nazarene University http://www.olivet.edu/ -17664 US O'More College of Design http://www.omorecollege.edu/ -17665 US Oral Roberts University http://www.oru.edu/ -17666 US Oregon College of Arts and Crafts http://www.ocac.edu/ -17667 US Oregon Graduate Institute of Science and Technology http://www.ogi.edu/ -17668 US Oregon Health Sciences University http://www.ohsu.edu/ -17669 US Oregon Institute of Technology http://www.oit.edu/ -17670 US Oregon State University http://www.orst.edu/ -17671 US Otis College of Art & Design http://www.otisart.edu/ -17672 US Ottawa University http://www.ottawa.edu/ -17673 US Otterbein College http://www.otterbein.edu/ -17674 US Ouachita Baptist University http://www.obu.edu/ -17675 US Our Lady of Holy Cross College http://www.olhcc.edu/ -17676 US Our Lady of the Lake University http://www.ollusa.edu/ -17677 US Ozark Christian College http://www.occ.edu/ -17678 US Pace University http://www.pace.edu/ -17679 US Pace University Pleasantville/Briarcliff http://www.pace.edu/campus/pville.html -17680 US Pacifica Graduate Institute http://www.pacifica.edu/ -17681 US Pacific College of Oriental Medicine http://www.ormed.edu/ -17682 US Pacific Graduate School of Psychology http://www.pgsp.edu/ -17683 US Pacific Lutheran University http://www.plu.edu/ -17684 US Pacific Northwest College of Art http://www.pnca.edu/ -17685 US Pacific Oaks College http://www.pacificoaks.edu/ -17686 US Pacific Union College http://www.puc.edu/ -17687 US Pacific University http://www.pacificu.edu/ -17688 US Paier College of Art http://www.paierart.com/ -17689 US Paine College http://www.paine.edu/ -17690 US Palm Beach Atlantic University http://www.pba.edu/ -17691 US Palm Beach State College http://www.palmbeachstate.edu/ -17692 US Palmer College of Chiropractic http://www.palmer.edu/ -17693 US Palmer College of Chiropractic West http://www.palmer.edu/PCCW/pcwmain.htm -17694 US Park College http://www.park.edu/ -17695 US Parsons School of Design http://www.parsons.edu/ -17696 US Paul Quinn College http://www.pqc.edu/ -17697 US Peace College http://www.peace.edu/ -17698 US Pebble Hills University http://www.pebblehills.edu/ -17699 US Pennsylvania Academy of the Fine Arts http://www.pafa.org/ -17700 US Pennsylvania College of Optometry http://www.pco.edu/ -17701 US Pennsylvania Institute of Technology http://www.pit.edu/ -17702 US Pennsylvania State University http://www.psu.edu/ -17703 US Pennsylvania State University - Abington http://www.abington.psu.edu/ -17704 US Pennsylvania State University - Altoona http://www.aa.psu.edu/ -17705 US Pennsylvania State University at Erie - Behrend College http://www.pserie.psu.edu/ -17706 US Pennsylvania State University at Harrisburg - The Capital College http://www.hbg.psu.edu/ -17707 US Pennsylvania State University - Berks-Lehigh Valley College http://www.bk.psu.edu/ -17708 US Pennsylvania State University Delaware County http://www.de.psu.edu/ -17709 US Pennsylvania State University Great Valley http://www.gv.psu.edu/ -17710 US Pennsylvania State University - Lehigh Valley http://www.an.psu.edu/ -17711 US Pennsylvania State University - Milton S.Hershey Medical Center http://www.collmed.psu.edu/ -17712 US Pennsylvania State University - Schuylkill http://www.sl.psu.edu/ -17713 US Pepperdine University http://www.pepperdine.edu/ -17714 US Peru State College http://www.peru.edu/ -17715 US Pfeiffer University http://www.pfeiffer.edu/ -17716 US Philadelphia College of Bible http://www.pcb.edu/ -17717 US Philadelphia College of Osteopathic Medicine http://www.pcom.edu/ -17718 US Philadelphia University http://www.philau.edu/ -17719 US Philander Smith College http://www.philander.edu/ -17720 US Phillips Graduate Institute http://www.pgi.edu/ -17721 US Phillips University http://www.phillips.edu/ -17722 US Piedmont Baptist College http://www.pbc.edu/ -17723 US Piedmont College http://www.piedmont.edu/ -17724 US Pikeville College http://www.pc.edu/ -17725 US Pillsbury Baptist Bible College http://www.pillsbury.edu/ -17726 US Pittsburg State University http://www.pittstate.edu/ -17727 US Pitzer College http://www.pitzer.edu/ -17728 US Plymouth State College http://www.plymouth.edu/ -17729 US Point Loma Nazarene College http://www.ptloma.edu/ -17730 US Point Park College http://www.ppc.edu/ -17731 US Polytechnic University http://www.poly.edu/ -17732 US Polytechnic University, Long Island Campus http://www.poly.edu/li/ -17733 US Polytechnic University, Westchester Graduate Center http://www.poly.edu/west/ -17734 US Pomona College http://www.pomona.edu/ -17735 US Portland Community College http://www.pcc.edu/ -17736 US Portland State University http://www.pdx.edu/ -17737 US Post University of Waterbury http://www.post.edu/ -17738 US Prairie View Agricultural and Mechanical University http://www.pvamu.edu/ -17739 US Pratt Institute http://www.pratt.edu/ -17740 US Presbyterian College http://www.presby.edu/ -17741 US Prescott College http://www.prescott.edu/ -17742 US Preston University http://www.preston.edu/ -17743 US Princeton University http://www.princeton.edu/ -17744 US Principia College http://www.prin.edu/ -17745 US Providence College http://www.providence.edu/ -17746 US Puget Sound Christian College http://members.aa.net/~bluvase/pscchome.html -17747 US Purdue University http://www.purdue.edu/ -17748 US Purdue University Calumet http://www.calumet.purdue.edu/ -17749 US Purdue University North Central http://www.pnc.edu/ -17750 US Quantum-Veritas International University http://www.qvius.edu/ -17751 US Queens College http://www.queens.edu/ -17752 US Quincy University http://www.quincy.edu/ -17753 US Quinnipiac College http://www.quinnipiac.edu/ -17754 US Radford University http://www.runet.edu/ -17755 US Ramapo College of New Jersey http://www.ramapo.edu/ -17756 US Rand Graduate School of Policy Studies http://www.rgs.edu/ -17757 US Randolph-Macon College http://www.rmc.edu/ -17758 US Randolph-Macon Woman's College http://www.rmwc.edu/ -17759 US Rasmussen College http://www.rasmussen.edu/ -17760 US Rasmussen College, Florida Campuses http://www.rasmussen.edu/locations/florida/ -17761 US Rasmussen College, Illinois Campuses http://www.rasmussen.edu/locations/illinois/ -17762 US Rasmussen College, Minnesota Campuses http://www.rasmussen.edu/locations/minnesota/ -17763 US Rasmussen College, North Dakota Campuses http://www.rasmussen.edu/locations/north-dakota/ -17764 US Rasmussen College, Wisconsin Campuses http://www.rasmussen.edu/locations/wisconsin/ -17765 US Reed College http://www.reed.edu/ -17766 US Reformed Bible College http://www.reformed.edu/ -17767 US Regent International University http://www.regentinternational.net/ -17768 US Regent University http://www.regent.edu/ -17769 US Regis College http://www.regiscollege.edu/ -17770 US Regis University http://www.regis.edu/ -17771 US Reinhardt College http://www.reinhardt.edu/ -17772 US Rensselaer Polytechnic Institute http://www.rpi.edu/ -17773 US Research College of Nursing - Rockhurst University http://www.rockhurst.edu/3.0/academic_programs/nursing/admis3.html -17774 US Rhode Island College http://www.ric.edu/ -17775 US Rhode Island School of Design http://www.risd.edu/ -17776 US Rhodes College http://www.rhodes.edu/ -17777 US Rice University http://www.rice.edu/ -17778 US Richard Stockton College of New Jersey http://www.stockton.edu/ -17779 US Rider University http://www.rider.edu/ -17780 US Ringling College of Art and Design http://www.ringling.edu/ -17781 US Ripon College http://www.ripon.edu/ -17782 US Rivier College http://www.rivier.edu/ -17783 US Roanoke Bible College http://www.roanokebible.edu/ -17784 US Roanoke College http://www.roanoke.edu/ -17785 US Robert Morris College http://www.robert-morris.edu/ -17786 US Robert Morris College of Chicago http://www.rmcil.edu/ -17787 US Roberts Wesleyan College http://www.rwc.edu/ -17788 US Rochester College http://www.rc.edu/ -17789 US Rochester Institute of Technology http://www.rit.edu/ -17790 US Rockford College http://www.rockford.edu/ -17791 US Rockhurst College http://www.rockhurst.edu/ -17792 US Rock Valley College http://www.rvc.cc.il.us/ -17793 US Rocky Mountain College http://www.rocky.edu/ -17794 US Rocky Mountain College of Art and Design http://www.rmcad.edu/ -17795 US Rogers State University http://www.rsu.edu/ -17796 US Roger Williams University http://www.rwu.edu/ -17797 US Rollins College http://www.rollins.edu/ -17798 US Roosevelt University http://www.roosevelt.edu/ -17799 US Rose-Hulman Institute of Technology http://www.rose-hulman.edu/ -17800 US Rosemont College http://www.rosemont.edu/ -17801 US Ross University, School of Medicine http://www.rossmed.edu/ -17802 US Rowan University http://www.rowan.edu/ -17803 US Rush University http://www.rushu.rush.edu/ -17804 US Russel Sage College http://www.sage.edu/RSC/ -17805 US Rust College http://www.rustcollege.edu/ -17806 US Rutgers, The State University of New Jersey http://www.rutgers.edu/ -17807 US Rutgers, The State University of New Jersey - Camden http://camden-www.rutgers.edu/ -17808 US Rutgers, The State University of New Jersey - Newark http://rutgers-newark.rutgers.edu/ -17809 US Sacred Heart University http://www.sacredheart.edu/ -17810 US Sage Graduate School http://www.sage.edu/SGS/ -17811 US Saginaw Valley State University http://www.svsu.edu/ -17812 US Salem College http://www.salem.edu/ -17813 US Salem International University http://www.salemiu.edu/ -17814 US Salem State College http://www.salem.mass.edu/ -17815 US Salem Teikyo University http://www.salem-teikyo.wvnet.edu/ -17816 US Salisbury State University http://www.ssu.edu/ -17817 US Salve Regina University http://www.salve.edu/ -17818 US Samford University http://www.samford.edu/ -17819 US Sam Houston State University http://www.shsu.edu/ -17820 US Samuel Merritt College http://www.samuelmerritt.edu/ -17821 US San Diego State University http://www.sdsu.edu/ -17822 US San Diego University for Integrative Studies http://www.sduis.edu/ -17823 US Sanford-Brown Institute http://www.sbjacksonville.com/ -17824 US San Francisco Art Institute http://www.sfai.edu/ -17825 US San Francisco Conservatory of Music http://www.sfcm.edu/ -17826 US San Francisco State University http://www.sfsu.edu/ -17827 US San Joaquin College of Law http://www.sjcl.org/ -17828 US San Jose Christian College http://www.sjchristiancol.edu/ -17829 US San Jose State University http://www.sjsu.edu/ -17830 US Santa Clara University http://www.scu.edu/ -17831 US Sarah Lawrence College http://www.slc.edu/ -17832 US Savannah College of Art and Design http://www.scad.edu/ -17833 US Savannah State University http://www.savstate.edu/ -17834 US Saybrook Institute http://www.saybrook.org/ -17835 US Schiller International University http://www.schiller.edu/ -17836 US Scholl College of Podiatric Medicine http://www.scholl.edu/ -17837 US School for International Training http://www.sit.edu/ -17838 US School of the Museum of Fine Arts http://www.smfa.edu/ -17839 US School of the Visual Arts http://www.schoolofvisualarts.edu/ -17840 US Schreiner College http://www.schreiner.edu/ -17841 US Scripps College http://www.scrippscol.edu/ -17842 US Seattle Pacific University http://www.spu.edu/ -17843 US Seattle University http://www.seattleu.edu/ -17844 US Seton Hall University http://www.shu.edu/ -17845 US Seton Hill College http://www.setonhill.edu/ -17846 US Shawnee Community College http://www.shawnee.cc.il.us/ -17847 US Shawnee State University http://www.shawnee.edu/ -17848 US Shaw University http://www.shawuniversity.edu/ -17849 US Sheldon Jackson College http://www.sheldonjackson.edu/ -17850 US Shenandoah University http://www.su.edu/ -17851 US Shepherd College http://www.shepherd.edu/ -17852 US Sherman College of Straight Chiropractic http://www.sherman.edu/ -17853 US Shimer College http://www.shimer.edu/ -17854 US Shippensburg University of Pennsylvania http://www.ship.edu/ -17855 US Shoreline Community College http://www.shoreline.edu/ -17856 US Shorter College http://www.shorter.edu/ -17857 US Siena College http://www.siena.edu/ -17858 US Siena Heights University http://www.sienahts.edu/ -17859 US Sierra Nevada College http://www.sierranevada.edu/ -17860 US Silver Lake College http://www.sl.edu/ -17861 US Simmons College http://www.simmons.edu/ -17862 US Simon's Rock College http://www.simons-rock.edu/ -17863 US Simpson College http://www.simpsonca.edu/ -17864 US Simpson College Iowa http://www.simpson.edu/ -17865 US Sinte Gleska University http://sinte.indian.com/ -17866 US Skadron College http://skadron.com/ -17867 US Skidmore College http://www.skidmore.edu/ -17868 US Slippery Rock University http://www.sru.edu/ -17869 US Smith College http://www.smith.edu/ -17870 US Sojourner-Douglass College http://www.sdc.edu/ -17871 US Soka University of America http://www.soka.edu -17872 US Sonoma State University http://www.sonoma.edu/ -17873 US South Carolina State University http://www.scsu.edu/ -17874 US South Dakota School of Mines and Technology http://www.sdsmt.edu/ -17875 US South Dakota State University http://www.sdstate.edu/ -17876 US Southeastern Baptist College http://www.southeasternbaptist.edu/ -17877 US Southeastern Bible College http://www.sebc.edu/ -17878 US Southeastern College of the Assemblies of God http://www.secollege.edu/ -17879 US Southeastern Louisiana University http://www.southeastern.edu/ -17880 US Southeastern Oklahoma State University http://www.sosu.edu/ -17881 US Southeastern University http://www.seu.edu/ -17882 US Southeast Missouri State University http://www.semo.edu/ -17883 US Southern Adventist University http://www.southern.edu/ -17884 US Southern Arkansas University http://www.saumag.edu/ -17885 US Southern California College http://www.sccu.edu/ -17886 US Southern California College of Optometry http://www.scco.edu/ -17887 US Southern California Institute of Architecture http://www.sciarc.edu/ -17888 US Southern College of Optometry http://www.sco.edu/ -17889 US Southern Connecticut State University http://www.scsu.ctstateu.edu/ -17890 US Southern Illinois University at Carbondale http://www.siu.edu/ -17891 US Southern Illinois University at Edwardsville http://www.siue.edu/ -17892 US Southern Methodist University http://www.smu.edu/ -17893 US Southern Nazarene University http://www.snu.edu/ -17894 US Southern New Hampshire University http://www.snhu.edu/ -17895 US Southern Oregon University http://www.sou.edu/ -17896 US Southern Polytechnic State Univerisity http://www.spsu.edu/ -17897 US Southern University - Baton Rouge http://www.subr.edu/ -17898 US Southern University - New Orleans http://www.suno.edu/ -17899 US Southern University - Shreveport http://www.susla.edu/ -17900 US Southern Utah University http://www.suu.edu/ -17901 US Southern Vermont College http://www.svc.edu/ -17902 US Southern Wesleyan University http://www.swu.edu/ -17903 US South Florida Bible College & Theological Seminary http://www.sfbc.edu/ -17904 US South Texas College of Law http://www.stcl.edu/ -17905 US Southwest Baptist University http://www.sbuniv.edu/ -17906 US Southwestern Adventist University http://www.swau.edu/ -17907 US Southwestern Assemblies of God University http://www.sagu.edu/ -17908 US Southwestern Baptist Theological Seminary http://www.swbts.edu/ -17909 US Southwestern Christian College http://www.soulsociety.com/swcc.html -17910 US Southwestern Christian University http://www.swcu.edu/ -17911 US Southwestern College Kansas http://www.sckans.edu/ -17912 US Southwestern College Santa Fe http://www.swc.edu/ -17913 US Southwestern Oklahoma State University http://www.swosu.edu/ -17914 US Southwestern University http://www.southwestern.edu/ -17915 US Southwestern University School of Law http://www.swlaw.edu/ -17916 US Southwest Missouri State University http://www.smsu.edu/ -17917 US Southwest Missouri State University - West Plains http://www.wp.smsu.edu/ -17918 US Southwest State University http://www.southwest.msus.edu/ -17919 US Southwest Texas State University http://www.swt.edu/ -17920 US Southwest University http://www.southwest.edu/ -17921 US Spalding University http://www.spalding.edu/ -17922 US Spelman College http://www.spelman.edu/ -17923 US Spertus Institute of Jewish Studies http://www.spertus.edu/ -17924 US Spring Arbor College http://www.arbor.edu/ -17925 US Springfield College http://www.spfldcol.edu/ -17926 US Spring Hill College http://www.shc.edu/ -17927 US St. Ambrose University http://www.sau.edu/ -17928 US Standford Online University http://www.standford-university.cjb.net/ -17929 US Standford University http://standford-university.edu.tf/ -17930 US St. Andrews Presbyterian College http://www.sapc.edu/ -17931 US Stanford University http://www.stanford.edu/ -17932 US St. Anselm College http://www.anselm.edu/ -17933 US St. Anthony College of Nursing http://www.sacn.edu/ -17934 US State University of New York at Albany http://www.albany.edu/ -17935 US State University of New York at Binghamton http://www.binghamton.edu/ -17936 US State University of New York at Buffalo http://www.buffalo.edu/ -17937 US State University of New York at New Paltz http://www.newpaltz.edu/ -17938 US State University of New York at Oswego http://www.oswego.edu/ -17939 US State University of New York at Stony Brook http://www.sunysb.edu/ -17940 US State University of New York College at Brockport http://www.brockport.edu/ -17941 US State University of New York College at Cortland http://www.cortland.edu/ -17942 US State University of New York College at Fredonia http://www.fredonia.edu/ -17943 US State University of New York College at Geneseo http://www.geneseo.edu/ -17944 US State University of New York College at Old Westbury http://www.oldwestbury.edu/ -17945 US State University of New York College at Oneonta http://www.oneonta.edu/ -17946 US State University of New York College at Plattsburgh http://www.plattsburgh.edu/ -17947 US State University of New York College at Potsdam http://www.potsdam.edu/ -17948 US State University of New York College at Purchase http://www.purchase.edu/ -17949 US State University of New York College of Agriculture and Technology at Cobleskill http://www.cobleskill.edu/ -17950 US State University of New York College of Environmental Science and Forestry http://www.esf.edu/ -17951 US State University of New York College of Optometry http://www.sunyopt.edu/ -17952 US State University of New York College of Technology at Alfred http://www.alfredtech.edu/ -17953 US State University of New York College of Technology at Farmingdale http://www.farmingdale.edu/ -17954 US State University of New York Downstate Medical Center http://www.hscbklyn.edu/ -17955 US State University of New York Empire State College http://www.esc.edu/ -17956 US State University of New York Health Sience Centre Syracuse http://www.hscsyr.edu/ -17957 US State University of New York Institute of Technology at Utica/Rome http://www.sunyit.edu/ -17958 US State University of New York Maritime College http://www.sunymaritime.edu/ -17959 US State University of New York School of Engineering and Applied Sciences http://www.eng.buffalo.edu/ -17960 US State University of New York (SUNY) http://www.sunycentral.edu/ -17961 US State University of New York Upstate Medical University http://www.upstate.edu/ -17962 US State University of West Georgia http://www.westga.edu/ -17963 US St. Augustine's College North Carolina http://www.st-aug.edu/ -17964 US St. Bernard's Institute http://www.sbi.edu/ -17965 US St. Bonaventure University http://www.sbu.edu/ -17966 US St. Cloud State University http://www.stcloudstate.edu/ -17967 US St. Edwards University http://www.stedwards.edu/ -17968 US Stefan University http://www.stefan-university.edu/ -17969 US Stephen F. Austin State University http://www.sfasu.edu/ -17970 US Stephens College http://www.stephens.edu/ -17971 US Sterling College http://www.sterling.edu/ -17972 US Stetson University http://www.stetson.edu/ -17973 US Stevens Institute of Technology http://www.stevens-tech.edu/ -17974 US St. Francis College, Brooklyn Heights http://www.stfranciscollege.edu/ -17975 US St. Francis College, Fort Wayne http://www.sfc.edu/ -17976 US St. Francis College, Loretto http://www.sfcpa.edu/ -17977 US St. Francis Medical Center College of Nursing http://www.osfsaintfrancis.org/ -17978 US St. George's University http://www.sgu.edu/ -17979 US Stillman College http://www.stillman.edu/ -17980 US St. John Fisher College http://www.sjfc.edu/ -17981 US St. John's College Maryland http://www.sjca.edu/ -17982 US St. John's College New Mexico http://www.sjcsf.edu/ -17983 US St. John's Seminary http://www.stjohnsem.edu/ -17984 US St. John's University http://www.stjohns.edu/ -17985 US St. Joseph College http://www.sjc.edu/ -17986 US St. Joseph College of Nursing http://www.stfrancis.edu/sjcn/sjcnhome.htm -17987 US St. Joseph's College http://www.saintjoe.edu/ -17988 US St. Joseph's College New York http://www.sjcny.edu/ -17989 US St. Joseph's College New York, Suffolk Campus http://www.sjcny.edu/patchogue/ -17990 US St. Joseph's College of Maine http://www.sjcme.edu/ -17991 US St. Joseph's University http://www.sju.edu/ -17992 US St. Lawrence University http://www.stlawu.edu/ -17993 US St. Leo College http://www.saintleo.edu/ -17994 US St. Louis Christian College http://www.slcc4ministry.edu/ -17995 US St. Louis College of Pharmacy http://www.stlcop.edu/ -17996 US St. Louis University http://www.slu.edu/ -17997 US St. Luke's College http://www.saint-lukes.org/about/slc/ -17998 US St. Martin's College http://www.stmartin.edu/ -17999 US St. Mary College http://www.smcks.edu/ -18000 US St. Mary-of-the-Woods College http://www.smwc.edu/ -18001 US St. Mary's College Indiana http://www.saintmarys.edu/ -18002 US St. Mary's College of California http://www.stmarys-ca.edu/ -18003 US St. Mary's College of Maryland http://www.smcm.edu/ -18004 US St. Mary's University of Minnesota http://www.smumn.edu/ -18005 US St. Mary's University of San Antonio http://www.stmarytx.edu/ -18006 US St. Meinrad College http://www.saintmeinrad.edu/ -18007 US St. Michael's College http://www.smcvt.edu/ -18008 US St. Norbert College http://www.snc.edu/ -18009 US St. Olaf College http://www.stolaf.edu/ -18010 US Stonehill College http://www.stonehill.edu/ -18011 US St. Paul's College http://www.saintpauls.edu/ -18012 US St. Petersburg College http://www.spcollege.edu/ -18013 US St. Peter's College http://www.spc.edu/ -18014 US Strayer University http://www.strayer.edu/ -18015 US St. Thomas Aquinas College http://www.stac.edu/ -18016 US St. Thomas University http://www.stu.edu/ -18017 US St. Vincent College http://www.stvincent.edu/ -18018 US St. Xavier University http://www.sxu.edu/ -18019 US Suffolk University http://www.suffolk.edu/ -18020 US Sullivan College http://www.sullivan.edu/ -18021 US Sul Ross State University http://www.sulross.edu/ -18022 US Susquehanna University http://www.susqu.edu/ -18023 US Swarthmore College http://www.swarthmore.edu/ -18024 US Sweet Briar College http://www.sbc.edu/ -18025 US Syracuse University http://www.syr.edu/ -18026 US Tabor College http://www.tabor.edu/ -18027 US Talladega College http://www.talladega.edu/ -18028 US Tarleton State University http://www.tarleton.edu/ -18029 US Taylor University http://www.tayloru.edu/ -18030 US Taylor University, Fort Wayne Campus http://www.tayloru.edu/fw/ -18031 US Teachers College, Columbia University http://www.tc.columbia.edu/ -18032 US Temple University http://www.temple.edu/ -18033 US Temple University School of Podiatric Medicine http://www.pcpm.edu/ -18034 US Tennessee State University http://www.tnstate.edu/ -18035 US Tennessee Technological University http://www.tntech.edu/ -18036 US Tennessee Temple University http://www.tntemple.edu/ -18037 US Tennessee Wesleyan College http://www.twcnet.edu/ -18038 US Texas A&M International University http://www.tamiu.edu/ -18039 US Texas A&M University http://www.tamu.edu/ -18040 US Texas A&M University - Commerce http://www.tamu-commerce.edu/ -18041 US Texas A&M University - Corpus Christi http://www.tamucc.edu/ -18042 US Texas A&M University - Galveston http://www.tamug.tamu.edu/ -18043 US Texas A&M University - Kingsville http://www.tamuk.edu/ -18044 US Texas A&M University - Texarkana http://www.tamut.edu/ -18045 US Texas Chiropractic College http://www.txchiro.edu/ -18046 US Texas Christian University http://www.tcu.edu/ -18047 US Texas College http://www.texascollege.edu/ -18048 US Texas College of Osteopathic Medicine http://www.hsc.unt.edu/education/tcom/ -18049 US Texas Lutheran University http://www.txlutheran.edu/ -18050 US Texas Southern University http://www.tsu.edu/ -18051 US Texas Tech University http://www.ttu.edu/ -18052 US Texas Tech University Health Science Center http://www.ttuhsc.edu/ -18053 US Texas Wesleyan University http://www.txwesleyan.edu/ -18054 US Texas Woman's University http://www.twu.edu/ -18055 US The American College http://www.amercoll.edu/ -18056 US The Art Institute of Boston http://www.aiboston.edu/ -18057 US The Art Institutes International Portland http://www.aipd.aii.edu/ -18058 US The Art Institutes International San Francisco http://www.aisf.aii.edu/ -18059 US The Boston Conservatory http://www.bostonconservatory.edu/ -18060 US The Catholic University of America http://www.cua.edu/ -18061 US The Chicago School of Professional Psychology http://www.thechicagoschool.edu/ -18062 US The College of Insurance http://www.tci.edu/ -18063 US The College of New Jersey http://www.tcnj.edu/ -18064 US The College of Santa Fe http://www.csf.edu/ -18065 US The College of St. Scholastica http://www.css.edu/ -18066 US The College of Westchester http://www.cw.edu/ -18067 US The College of Wooster http://www.wooster.edu/ -18068 US The Cooper Union for the Advancement of Science and Art http://www.cooper.edu/ -18069 US The Corcoran College of Art http://www.corcoran.edu/college/ -18070 US The Curtis Institute of Music http://www.curtis.edu/ -18071 US The Defiance College http://www.defiance.edu/ -18072 US The Dickinson School of Law http://www.dsl.edu/ -18073 US The Illinois Institute of Art-Chicago http://www.ilic.artinstitutes.edu/ -18074 US The Johns Hopkins University http://www.jhu.edu/ -18075 US The Juilliard School http://www.juilliard.edu/ -18076 US The Leadership Institute of Seattle http://www.lios.org/ -18077 US The Maryland Institute, College of Art http://www.mica.edu/ -18078 US The Master's College http://www.masters.edu/ -18079 US The McGregor School of Antioch University http://www.mcgregor.edu/ -18080 US The Naropa Institute http://www.naropa.edu/ -18081 US The New School http://www.newschool.edu/ -18082 US The Rockefeller University http://www.rockefeller.edu/ -18083 US The School of the Art Institute of Chicago http://www.artic.edu/ -18084 US The Scripps Research Institute http://www.scripps.edu/ -18085 US The Southern Christian University http://www.southernchristian.edu/ -18086 US The Tulane University of New Orleans http://www.tulane.edu/ -18087 US The Union Institute http://www.tui.edu/ -18088 US Thiel College http://www.thiel.edu/ -18089 US Thomas A. Edison State College http://www.tesc.edu/ -18090 US Thomas Aquinas College http://www.thomasaquinas.edu/ -18091 US Thomas College Maine http://www.thomas.edu/ -18092 US Thomas Jefferson University http://www.tju.edu/ -18093 US Thomas More College http://www.thomasmore.edu/ -18094 US Thomas More College of Liberal Arts http://www.thomasmorecollege.edu/ -18095 US Thomas University http://www.thomasu.edu/ -18096 US Thunderbird School of Global Management http://www.thunderbird.edu/ -18097 US Tiffin University http://www.tiffin.edu/ -18098 US Toccoa Falls College http://www.toccoafalls.edu/ -18099 US Tomball College http://wwwtc.nhmccd.edu/ -18100 US Tougaloo College http://www.tougaloo.edu/ -18101 US Touro College http://www.touro.edu/ -18102 US Touro University http://www.tu.edu/ -18103 US Towson University http://www.towson.edu/ -18104 US Transylvania University http://www.transy.edu/ -18105 US Trevecca Nazarene University http://www.trevecca.edu/ -18106 US Tri-College University http://www.ndsu.nodak.edu/tricollege/ -18107 US Trident University http://www.trident.edu/ -18108 US Trinity Bible College http://www.tbc2day.edu/ -18109 US Trinity Christian College http://www.trnty.edu/ -18110 US Trinity College Connecticut http://www.trincoll.edu/ -18111 US Trinity College of Florida http://www.trinitycollege.edu/ -18112 US Trinity College of Vermont http://www.trinityvt.edu/ -18113 US Trinity International University http://www.trin.edu/ -18114 US Trinity International University (Excel), Miami http://www.tiu.edu/excel/index.html -18115 US Trinity University http://www.trinitydc.edu/ -18116 US Trinity University http://www.trinity.edu/ -18117 US Tri-State University http://www.tristate.edu/ -18118 US Triton College http://www.triton.cc.il.us/ -18119 US Troy University http://www.troy.edu/ -18120 US Troy University, Dothan http://dothan.troy.edu/ -18121 US Troy University, Montgomery http://montgomery.troy.edu/ -18122 US Troy University, Phenix City http://phenix.troy.edu/ -18123 US Troy University, Troy http://troy.troy.edu/ -18124 US Truman College http://www.trumancollege.net/ -18125 US Truman State University http://www.truman.edu/ -18126 US Tufts University http://www.tufts.edu/ -18127 US Tui Online University http://www.tuiu.edu/ -18128 US Tusculum College http://www.tusculum.edu/ -18129 US Tuskegee University http://www.tusk.edu/ -18130 US Uniformed Services Universty of the Health Sciences http://www.usuhs.mil/ -18131 US Union College http://www.union.edu/ -18132 US Union College Kentucky http://www.unionky.edu/ -18133 US Union College Nebraska http://www.ucollege.edu/ -18134 US Union Theological Seminary (UTS) http://www.union-psce.edu/ -18135 US Union University http://www.uu.edu/ -18136 US United States Air Force Academy http://www.usafa.af.mil/ -18137 US United States Coast Guard Academy http://www.cga.edu/ -18138 US United States International University http://www.usiu.edu/ -18139 US United States Merchant Marine Academy http://www.usmma.edu/ -18140 US United States Military Academy http://www.usma.edu/ -18141 US United States Naval Academy http://www.usna.edu/ -18142 US United States Sports Academy http://www.sport.ussa.edu/ -18143 US Unity College http://www.unity.edu/ -18144 US University of Advancing Technology (UAT) http://www.uat.edu/ -18145 US University of Akron http://www.uakron.edu/ -18146 US University of Alabama - Birmingham http://www.uab.edu/ -18147 US University of Alabama - Huntsville http://www.uah.edu/ -18148 US University of Alabama - Tuscaloosa http://www.ua.edu/ -18149 US University of Alanta http://www.uofa.edu/ -18150 US University of Alaska - Anchorage http://www.uaa.alaska.edu/ -18151 US University of Alaska - Fairbanks http://www.uaf.edu/ -18152 US University of Alaska - Southeast http://www.uas.alaska.edu/ -18153 US University of Alaska (System) http://www.alaska.edu/ -18154 US University of Arizona http://www.arizona.edu/ -18155 US University of Arkansas at Fayetteville http://www.uark.edu/ -18156 US University of Arkansas at Little Rock http://www.ualr.edu/ -18157 US University of Arkansas at Monticello http://www.uamont.edu/ -18158 US University of Arkansas at Pine Bluff http://www.uapb.edu/ -18159 US University of Arkansas for Medical Sciences http://www.uams.edu/ -18160 US University of Arkansas (System) http://www.uasys.edu/ -18161 US University of Baltimore http://www.ubalt.edu/ -18162 US University of Bridgeport http://www.bridgeport.edu/ -18163 US University of California, Berkeley http://www.berkeley.edu/ -18164 US University of California, Davis http://www.ucdavis.edu/ -18165 US University of California, Hastings College of Law http://www.uchastings.edu/ -18166 US University of California, Irvine http://www.uci.edu/ -18167 US University of California, Los Angeles http://www.ucla.edu/ -18168 US University of California, Merced http://www.ucmerced.edu/ -18169 US University of California, Oakland http://www.ucop.edu/ -18170 US University of California, Riverside http://www.ucr.edu/ -18171 US University of California, San Diego http://www.ucsd.edu/ -18172 US University of California, San Francisco http://www.ucsf.edu/ -18173 US University of California, Santa Barbara http://www.ucsb.edu/ -18174 US University of California, Santa Cruz http://www.ucsc.edu/ -18175 US University of California System http://www.universityofcalifornia.edu/ -18176 US University of Central Arkansas http://www.uca.edu/ -18177 US University of Central Florida http://www.ucf.edu/ -18178 US University of Central Missouri http://www.ucmo.edu/ -18179 US University of Central Oklahoma http://www.ucok.edu/ -18180 US University of Central Texas http://www.vvm.com/uct/ -18181 US University of Charleston http://www.uchaswv.edu/ -18182 US University of Charleston South Carolina http://univchas.cofc.edu/ -18183 US University of Chicago http://www.uchicago.edu/ -18184 US University of Cincinnati http://www.uc.edu/ -18185 US University of Colorado at Boulder http://www.colorado.edu/ -18186 US University of Colorado at Colorado Springs http://www.uccs.edu/ -18187 US University of Colorado at Denver http://www.cudenver.edu/ -18188 US University of Colorado Health Sciences Center http://www.uchsc.edu/ -18189 US University of Connecticut http://www.uconn.edu/ -18190 US University of Connecticut at Avery Point http://www.averypoint.uconn.edu/ -18191 US University of Connecticut at Hartford http://vm.uconn.edu/~wwwhtfd/ugrad/ -18192 US University of Connecticut at Stamford http://www.stamford.uconn.edu/ -18193 US University of Connecticut at Waterbury http://www.waterbury.uconn.edu/ -18194 US University of Connecticut Health Center http://www.uchc.edu/ -18195 US University of Dallas http://www.udallas.edu/ -18196 US University of Dayton http://www.udayton.edu/ -18197 US University of Delaware http://www.udel.edu/ -18198 US University of Denver http://www.du.edu/ -18199 US University of Detroit Mercy http://www.udmercy.edu/ -18200 US University of Dubuque http://www.dbq.edu/ -18201 US University of Evansville http://www.evansville.edu/ -18202 US University of Findlay http://www.findlay.edu/ -18203 US University of Florida http://www.ufl.edu/ -18204 US University of Georgia http://www.uga.edu/ -18205 US University of Great Falls http://www.ugf.edu/ -18206 US University of Hartford http://www.hartford.edu/ -18207 US University of Hawaii - Hilo http://www.uhh.hawaii.edu/ -18208 US University of Hawaii - Manoa http://www.uhm.hawaii.edu/ -18209 US University Of Hawaii - System http://www.hawaii.edu/ -18210 US University of Hawaii - West Oahu http://www.uhwo.hawaii.edu/ -18211 US University of Health Sciences http://www.uhs.edu/ -18212 US University of Houston http://www.uh.edu/ -18213 US University of Houston, Clear Lake http://www.cl.uh.edu/ -18214 US University of Houston, Downtown http://www.dt.uh.edu/ -18215 US University of Houston, Victoria http://www.vic.uh.edu/ -18216 US University of Idaho http://www.uidaho.edu/ -18217 US University of Illinois http://www.uillinois.edu/ -18218 US University of Illinois at Chicago http://www.uic.edu/ -18219 US University of Illinois at Springfield http://www.uis.edu/ -18220 US University of Illinois at Urbana-Champaign http://www.uiuc.edu/ -18221 US University of Indianapolis http://www.uindy.edu/ -18222 US University of Iowa http://www.uiowa.edu/ -18223 US University of Kansas http://www.ku.edu/ -18224 US University of Kentucky http://www.uky.edu/ -18225 US University of La Verne http://www.ulaverne.edu/ -18226 US University of Louisiana at Lafayette http://www.louisiana.edu/ -18227 US University of Louisiana at Monroe http://www.ulm.edu/ -18228 US University of Louisville http://www.louisville.edu/ -18229 US University of Maine, Augusta http://www.uma.maine.edu/ -18230 US University of Maine, Farmington http://www.umf.maine.edu/ -18231 US University of Maine, Fort Kent http://www.umfk.maine.edu/ -18232 US University of Maine, Machias http://www.umm.maine.edu/ -18233 US University of Maine, Orono http://www.umaine.edu/ -18234 US University of Maine, Presque Isle http://www.umpi.maine.edu/ -18235 US University of Maine (System) http://www.maine.edu/ -18236 US University of Management & Technology http://www.umtweb.edu/ -18237 US University of Mary http://www.umary.edu/ -18238 US University of Mary Hardin-Baylor http://www.umhb.edu/ -18239 US University of Maryland at Baltimore http://www.umbc.edu/ -18240 US University of Maryland at College Park http://www.umd.edu/ -18241 US University of Maryland Baltimore County http://www.umbc.edu/ -18242 US University of Maryland Eastern Shore http://www.umes.edu/ -18243 US University of Maryland Medicine http://www.umm.edu/ -18244 US University of Maryland (System) http://www.ums.edu/ -18245 US University of Maryland University College http://www.umuc.edu/ -18246 US University of Massachusetts at Amherst http://www.umass.edu/ -18247 US University of Massachusetts at Boston http://www.umb.edu/ -18248 US University of Massachusetts at Dartmouth http://www.umassd.edu/ -18249 US University of Massachusetts at Lowell http://www.uml.edu/ -18250 US University of Massachusetts Medical Center at Worcester http://www.ummed.edu/ -18251 US University of Massachusetts (System) http://www.massachusetts.edu/ -18252 US University of Medicine and Dentistry of New Jersey http://www.umdnj.edu/ -18253 US University of Memphis http://www.memphis.edu/ -18254 US University of Miami http://www.miami.edu/ -18255 US University of Michigan - Ann Arbor http://www.umich.edu/ -18256 US University of Michigan - Dearborn http://www.umd.umich.edu/ -18257 US University of Michigan - Flint http://www.flint.umich.edu/ -18258 US University of Minnesota - Crookston http://www.crk.umn.edu/ -18259 US University of Minnesota - Duluth http://www.d.umn.edu/ -18260 US University of Minnesota - Morris http://www.mrs.umn.edu/ -18261 US University of Minnesota - Twin Cities Campus http://www1.umn.edu/twincities/ -18262 US University of Mississippi http://www.olemiss.edu/ -18263 US University of Mississippi Medical Center http://www.umc.edu/ -18264 US University of Missouri - Columbia http://www.missouri.edu/ -18265 US University of Missouri - Kansas City http://www.umkc.edu/ -18266 US University of Missouri - Saint Louis http://www.umsl.edu/ -18267 US University of Mobile http://www.umobile.edu/ -18268 US University of Montana http://www.umt.edu/ -18269 US University of Montana Western http://www.umwestern.edu/ -18270 US University of Montevallo http://www.montevallo.edu/ -18271 US University of Nebraska - Kearney http://www.unk.edu/ -18272 US University of Nebraska - Lincoln http://www.unl.edu/ -18273 US University of Nebraska Medical Center http://www.unmc.edu/ -18274 US University of Nebraska - Omaha http://www.unomaha.edu/ -18275 US University of Nebraska (System) http://www.nebraska.edu/ -18276 US University of Nevada - Las Vegas http://www.unlv.edu/ -18277 US University of Nevada - Reno http://www.unr.edu/ -18278 US University of New England http://www.une.edu/ -18279 US University of New England, Westbrook College Campus http://www.une.edu/wcdirctn.html -18280 US University of New Hampshire http://www.unh.edu/ -18281 US University of New Hampshire - Manchester http://www.unh.edu/unhm/ -18282 US University of New Haven http://www.newhaven.edu/ -18283 US University of New Mexico http://www.unm.edu/ -18284 US University of New Orleans http://www.uno.edu/ -18285 US University of North Alabama http://www.una.edu/ -18286 US University of North America http://www.universityofnorthamerica.org/ -18287 US University of North Carolina at Asheville http://www.unca.edu/ -18288 US University of North Carolina at Chapel Hill http://www.unc.edu/ -18289 US University of North Carolina at Charlotte http://www.uncc.edu/ -18290 US University of North Carolina at Greensboro http://www.uncg.edu/ -18291 US University of North Carolina at Pembroke http://www.uncp.edu/ -18292 US University of North Carolina at Wilmington http://www.uncwil.edu/ -18293 US University of North Dakota http://www.und.nodak.edu/ -18294 US University of Northern Colorado http://www.univnorthco.edu/ -18295 US University of Northern Iowa http://www.uni.edu/ -18296 US University of Northern Virginia http://www.unva.edu/ -18297 US University of Northern Washington http://www.unw.edu/ -18298 US University of North Florida http://www.unf.edu/ -18299 US University of North Texas http://www.unt.edu/ -18300 US University of North Texas Health Science Center at Fort Worth http://www.hsc.unt.edu/ -18301 US University of NorthWest http://www.unw.ac/ -18302 US University of Notre Dame http://www.nd.edu/ -18303 US University of Oklahoma http://www.ou.edu/ -18304 US University of Oklahoma Health Sciences Center http://www.ouhsc.edu/ -18305 US University of Oregon http://www.uoregon.edu/ -18306 US University of Osteopathic Medicine and Health Science http://www.uomhs.edu/ -18307 US University of Pennsylvania http://www.upenn.edu/ -18308 US University of Phoenix http://www.phoenix.edu/ -18309 US University of Pittsburgh http://www.pitt.edu/ -18310 US University of Pittsburgh at Bradford http://www.upb.pitt.edu/ -18311 US University of Pittsburgh at Greensburg http://www.pitt.edu/~upg/ -18312 US University of Pittsburgh at Johnstown http://www.pitt.edu/~upjweb/ -18313 US University of Portland http://www.uofport.edu/ -18314 US University of Puget Sound http://www.ups.edu/ -18315 US University of Redlands http://www.redlands.edu/ -18316 US University of Rhode Island http://www.uri.edu/ -18317 US University of Richmond http://www.urich.edu/ -18318 US University of Rio Grande http://www.urgrgcc.edu/ -18319 US University of Rochester http://www.rochester.edu/ -18320 US University of San Diego http://www.sandiego.edu/ -18321 US University of San Francisco http://www.usfca.edu/ -18322 US University of Science and Arts of Oklahoma http://www.usao.edu/ -18323 US University of Scranton http://www.uofs.edu/ -18324 US University of Sioux Falls http://www.thecoo.edu/ -18325 US University of South Alabama http://www.usouthal.edu/ -18326 US University of South Carolina http://www.sc.edu/ -18327 US University of South Carolina - Aiken http://www.usca.sc.edu/ -18328 US University of South Carolina - Beaufort http://www.sc.edu/beaufort/ -18329 US University of South Carolina - Lancaster http://www.sc.edu/lancaster/ -18330 US University of South Carolina - Salkehatchie http://www.rcce.sc.edu/salkehatchie/ -18331 US University of South Carolina - Spartanburg http://www.uscs.edu/ -18332 US University of South Carolina - Sumter http://www.uscsumter.edu/ -18333 US University of South Carolina - Union http://www.sc.edu/union/ -18334 US University of South Dakota http://www.usd.edu/ -18335 US University of Southern California http://www.usc.edu/ -18336 US University of Southern Indiana http://www.usi.edu/ -18337 US University of Southern Maine http://www.usm.maine.edu/ -18338 US University of Southern Mississippi http://www.usm.edu/ -18339 US University of South Florida http://www.usf.edu/ -18340 US University of St. Francis http://www.stfrancis.edu/ -18341 US University of St. Thomas, Houston http://www.stthom.edu/ -18342 US University of St. Thomas, St. Paul http://www.stthomas.edu/ -18343 US University of Tampa http://www.utampa.edu/ -18344 US University of Tennessee - Chattanooga http://www.utc.edu/ -18345 US University of Tennessee - Knoxville http://www.utk.edu/ -18346 US University of Tennessee - Martin http://www.utm.edu/ -18347 US University of Tennessee - Memphis http://www.utmem.edu/ -18348 US University of Tennessee Space Institute http://www.utsi.edu/ -18349 US University of Texas http://www.utsystem.edu/ -18350 US University of Texas at Arlington http://www.uta.edu/ -18351 US University of Texas at Austin http://www.utexas.edu/ -18352 US University of Texas at Brownsville http://www.utb.edu/ -18353 US University of Texas at Dallas http://www.utdallas.edu/ -18354 US University of Texas at El Paso http://www.utep.edu/ -18355 US University of Texas at San Antonio http://www.utsa.edu/ -18356 US University of Texas at Tyler http://www.uttyl.edu/ -18357 US University of Texas Health Center at Houston http://www.uthouston.edu/ -18358 US University of Texas Health Center at Tyler http://www.uthct.edu/ -18359 US University of Texas Health Science Center at San Antonio http://www.uthscsa.edu/ -18360 US University of Texas M.D. Anderson Cancer Center http://www.mdanderson.org/ -18361 US University of Texas Medical Branch Galveston http://www.utmb.edu/ -18362 US University of Texas of the Permian Basin http://www.utpb.edu/ -18363 US University of Texas Pan American http://www.panam.edu/ -18364 US University of Texas Southwestern Medical Center at Dallas http://www.utsouthwestern.edu/ -18365 US University of the Arts http://www.uarts.edu/ -18366 US University of the District of Columbia http://www.udc.edu/ -18367 US University of the Incarnate World http://www.uiw.edu/ -18368 US University of the Ozarks http://www.ozarks.edu/ -18369 US University of the Pacific http://www.pacific.edu/ -18370 US University of the Sciences in Philadelphia http://www.usip.edu/ -18371 US University of the South http://www.sewanee.edu/ -18372 US University of the Southwest http://www.usw.edu/ -18373 US University of Toledo http://www.utoledo.edu/ -18374 US University of Tulsa http://www.utulsa.edu/ -18375 US University of Utah http://www.utah.edu/ -18376 US University of Vermont http://www.uvm.edu/ -18377 US University of Virginia http://www.virginia.edu/ -18378 US University of Virginia, College at Wise http://www.wise.virginia.edu/ -18379 US University of Washington http://www.washington.edu/ -18380 US University of Washington, Tacoma http://www.tacoma.washington.edu/ -18381 US University of West Alabama http://www.uwa.edu/ -18382 US University of West Florida http://www.uwf.edu/ -18383 US University of West Los Angeles http://www.uwla.edu/ -18384 US University of Wisconsin - Eau Claire http://www.uwec.edu/ -18385 US University of Wisconsin - Green Bay http://www.uwgb.edu/ -18386 US University of Wisconsin - La Crosse http://www.uwlax.edu/ -18387 US University of Wisconsin - Madison http://www.wisc.edu/ -18388 US University of Wisconsin - Milwaukee http://www.uwm.edu/ -18389 US University of Wisconsin - Oshkosh http://www.uwosh.edu/ -18390 US University of Wisconsin - Parkside http://www.uwp.edu/ -18391 US University of Wisconsin - Platteville http://www.uwplatt.edu/ -18392 US University of Wisconsin - River Falls http://www.uwrf.edu/ -18393 US University of Wisconsin - Stevens Point http://www.uwsp.edu/ -18394 US University of Wisconsin - Stout http://www.uwstout.edu/ -18395 US University of Wisconsin - Superior http://www.uwsuper.edu/ -18396 US University of Wisconsin - Whitewater http://www.uww.edu/ -18397 US University of Wyoming http://www.uwyo.edu/ -18398 US Upper Iowa University http://www.uiu.edu/ -18399 US Urbana University http://www.urbana.edu/ -18400 US Ursinus College http://www.ursinus.edu/ -18401 US Ursuline College http://www.ursuline.edu/ -18402 US Utah State University http://www.usu.edu/ -18403 US Utah Valley State College http://www.uvsc.edu/ -18404 US Utica College http://www.ucsu.edu/ -18405 US Valdosta State University http://www.valdosta.edu/ -18406 US Valley City State University http://www.vcsu.nodak.edu/ -18407 US Valley Forge Christian College http://www.vfcc.edu/ -18408 US Valparaiso University http://www.valpo.edu/ -18409 US Vanderbilt University http://www.vanderbilt.edu/ -18410 US VanderCook College of Music http://www.vandercook.edu/ -18411 US Vanguard University of Southern California http://www.vanguard.edu/ -18412 US Vassar College http://www.vassar.edu/ -18413 US Vennard College http://www.vennard.edu/ -18414 US Vermont Law School http://www.vermontlaw.edu/ -18415 US Vermont Technical College http://www.vtc.vsc.edu/ -18416 US Villa Julie College http://www.vjc.edu/ -18417 US Villanova University http://www.villanova.edu/ -18418 US Virginia College http://www.vc.edu/ -18419 US Virginia Commonwealth University http://www.vcu.edu/ -18420 US Virginia Intermont College http://www.vic.edu/ -18421 US Virginia International University http://www.viu.edu/ -18422 US Virginia Military Institute http://www.vmi.edu/ -18423 US Virginia Polytechnic Institute and State University (Virginia Tech) http://www.vt.edu/ -18424 US Virginia State University http://www.vsu.edu/ -18425 US Virginia Union University http://www.vuu.edu/ -18426 US Virginia Wesleyan College http://www.vwc.edu/ -18427 US Viterbo College http://www.viterbo.edu/ -18428 US Voorhees College http://www.voorhees.edu/ -18429 US Wabash College http://www.wabash.edu/ -18430 US Wagner College http://www.wagner.edu/ -18431 US Wake Forest University http://www.wfu.edu/ -18432 US Walden University http://www.waldenu.edu/ -18433 US Walla Walla College http://www.wwc.edu/ -18434 US Walsh College of Accountancy and Business Administration http://www.walshcol.edu/ -18435 US Walsh University http://www.walsh.edu/ -18436 US Warner Pacific College http://www.warnerpacific.edu/ -18437 US Warner Southern College http://www.warner.edu/ -18438 US Warren Wilson College http://www.warren-wilson.edu/ -18439 US Wartburg College http://www.wartburg.edu/ -18440 US Washburn University http://www.washburn.edu/ -18441 US Washington and Lee University http://www.wlu.edu/ -18442 US Washington Bible College http://www.bible.edu/ -18443 US Washington College http://www.washcoll.edu/ -18444 US Washington State University http://www.wsu.edu/ -18445 US Washington State University, Spokane http://www.spokane.wsu.edu/ -18446 US Washington State University, Tri-Cities http://www.tricity.wsu.edu/ -18447 US Washington State University, Vancouver http://www.vancouver.wsu.edu/ -18448 US Washington University in St. Louis http://www.wustl.edu/ -18449 US Wayland Baptist University http://www.wbu.edu/ -18450 US Waynesburg College http://www.waynesburg.edu/ -18451 US Wayne State College http://www.wsc.edu/ -18452 US Wayne State University http://www.wayne.edu/ -18453 US Webber College http://www.webber.edu/ -18454 US Webb Institute http://www.webb-institute.edu/ -18455 US Weber State University http://www.weber.edu/ -18456 US Webster University http://www.webster.edu/ -18457 US Webster University North Florida http://www.webster.edu/jack/ -18458 US Weill Medical College of Cornell University http://www.med.cornell.edu/ -18459 US Wellesley College http://www.wellesley.edu/ -18460 US Wells College http://www.wells.edu/ -18461 US Wentworth Institute of Technology http://www.wit.edu/ -18462 US Wesleyan College http://www.wesleyan-college.edu/ -18463 US Wesleyan University http://www.wesleyan.edu/ -18464 US Wesley College http://www.wesley.edu/ -18465 US Wesley College Mississippi http://www.wesleycollege.com/ -18466 US Westbrook University http://www.westbrooku.edu/ -18467 US West Chester University of Pennsylvania http://www.wcupa.edu/ -18468 US West Coast University http://www.westcoastuniversity.com/ -18469 US Western Baptist College http://www.wbc.edu/ -18470 US Western Bible College http://www.westernbible.edu/ -18471 US Western Carolina University http://www.wcu.edu/ -18472 US Western Connecticut State University http://www.wcsu.ctstateu.edu/ -18473 US Western Governors University http://www.wgu.edu/ -18474 US Western Illinois University http://www.wiu.edu/ -18475 US Western International University http://www.west.edu/ -18476 US Western Kentucky University http://www.wku.edu/ -18477 US Western Maryland College http://www.wmdc.edu/ -18478 US Western Michigan University http://www.wmich.edu/ -18479 US Western New England College http://www.wnec.edu/ -18480 US Western New Mexico University http://www.wnmu.edu/ -18481 US Western Oregon University http://www.wou.edu/ -18482 US Western State College http://www.western.edu/ -18483 US Western States Chiropractic College http://www.wschiro.edu/ -18484 US Western State University College of Law http://www.wsulaw.edu/ -18485 US Western State University College of Law - Orange County http://www.wsulaw.edu/ -18486 US Western Washington University http://www.wwu.edu/ -18487 US Westfield State College http://www.wsc.mass.edu/ -18488 US West Liberty State College http://www.wlsc.wvnet.edu/ -18489 US Westminster College Fulton http://www.wcmo.edu/ -18490 US Westminster College New Wilmington http://www.westminster.edu/ -18491 US Westminster College of Salt Lake City http://www.wcslc.edu/ -18492 US Westmont College http://www.westmont.edu/ -18493 US West Suburban College of Nursing http://www.curf.edu/~wscasseyp/wscn.htm -18494 US West Texas A&M University http://www.wtamu.edu/ -18495 US West Virginia School of Osteopathic Medicine http://www.wvsom.edu/ -18496 US West Virginia State College http://www.wvsc.edu/ -18497 US West Virginia University http://www.wvu.edu/ -18498 US West Virginia University Institute of Technology http://wvit.wvnet.edu/ -18499 US West Virginia Wesleyan College http://www.wvwc.edu/ -18500 US Westwood College http://www.westwood.edu/ -18501 US Wheaton College Massachusetts http://www.wheatonma.edu/ -18502 US Wheeling Jesuit University http://www.wju.edu/ -18503 US Wheelock College http://www.wheelock.edu/ -18504 US Whitman College http://www.whitman.edu/ -18505 US Whittier College http://www.whittier.edu/ -18506 US Whitworth College http://www.whitworth.edu/ -18507 US Wichita State University http://www.twsu.edu/ -18508 US Widener University http://www.widener.edu/ -18509 US Wilberforce University http://www.wilberforce.edu/ -18510 US Wilbur Wright College http://www.ccc.edu/wright/ -18511 US Wiley College http://www.wileyc.edu/ -18512 US Wilkes University http://www.wilkes.edu/ -18513 US Willamette University http://www.willamette.edu/ -18514 US William Carey College http://www.wmcarey.edu/ -18515 US William Jewell College http://www.jewell.edu/ -18516 US William Mitchell College of Law http://www.wmitchell.edu/ -18517 US William Paterson University http://www.wpunj.edu/ -18518 US William Penn College http://www.wmpenn.edu/ -18519 US Williams Baptist College http://www.wbcoll.edu/ -18520 US Williams College http://www.williams.edu/ -18521 US William Tyndale College http://www.williamtyndale.edu/ -18522 US William Woods University http://www.wmwoods.edu/ -18523 US Wilmington College http://www.wilmcoll.edu/ -18524 US Wilmington College http://www.wilmington.edu/ -18525 US Wilson College http://www.wilson.edu/ -18526 US Wingate University http://www.wingate.edu/ -18527 US Winona State University http://www.winona.msus.edu/ -18528 US Winston-Salem State University http://www.wssu.edu/ -18529 US Winthrop University http://www.winthrop.edu/ -18530 US Wisconsin Lutheran College http://www.wlc.edu/ -18531 US Wisconsin School of Professional Psychology http://www.execpc.com/~wspp/ -18532 US Wittenberg University http://www.wittenberg.edu/ -18533 US Wofford College http://www.wofford.edu/ -18534 US Woodbury University http://www.woodburyu.edu/ -18535 US Worcester Polytechnic Institute http://www.wpi.edu/ -18536 US Worcester State College http://www.worc.mass.edu/ -18537 US Wright Institute http://www.wrightinst.edu/ -18538 US Wright State University http://www.wright.edu/ -18539 US Xavier University http://www.xu.edu/ -18540 US Xavier University of Louisiana http://www.xula.edu/ -18541 US Yale University http://www.yale.edu/ -18542 US Yeshiva University http://www.yu.edu/ -18543 US York College Nebraska http://www.york.edu/ -18544 US York College of Pennsylvania http://www.yorkcol.edu/ -18545 US Yorker International University http://www.nyuniversity.net/ -18546 US York University http://www.yorkuniversity.us/ -18547 US Youngstown State University http://www.ysu.edu/ -18548 UY Insituto Universitario - Centro Latinoamericano de Economia Humana - IU Claeh http://www.claeh.edu.uy/ -18549 UY Universidad Católica del Uruguay http://www.ucu.edu.uy/ -18550 UY Universidad de la Empresa (UDE) http://www.ude.edu.uy/ -18551 UY Universidad de la República http://www.universidad.edu.uy/ -18552 UY Universidad de Montevideo http://www.um.edu.uy/ -18553 UY Universidad ORT Uruguay http://www.ort.edu.uy/ -18554 UZ Ferghana Politechnical Institute http://ferpi.dem.ru/ -18555 UZ International Business School Kelajak ILMI http://www.ibs.uz/ -18556 UZ Kokand State Pedagogical Institute http://www.qdpi.uz/ -18557 UZ Management Development Institute of Singapore, Tashkent http://www.mdis.uz/ -18558 UZ National University of Uzbekistan http://www.nuu.uz/ -18559 UZ Nukus State Teachers Training Institute http://www.ndpi.uz/ -18560 UZ Samarkand State University http://www.samdu.uz/ -18561 UZ Tashkent Automobile and Roads Institute http://www.tayi.uz/ -18562 UZ Tashkent Institute of Irrigation and Melioration http://www.tiim.uz/ -18563 UZ Tashkent Islam University http://www.tiu.uz/ -18564 UZ Tashkent Medical Academy http://www.tma.uz/ -18565 UZ Tashkent Pharmaceutical Institute http://www.pharmi.uz/ -18566 UZ Tashkent School of Finance http://www.tfi.uz/ -18567 UZ Tashkent State Agrarian University http://www.agrar.uz/ -18568 UZ Tashkent State Technical University http://www.tdtu.uz/ -18569 UZ Tashkent State University of Economics http://www.tdiu.uz/ -18570 UZ Tashkent State University of Oriental Studies http://www.tashgiv.uz/ -18571 UZ Tashkent University of Information Technologies http://www.tuit.uz/ -18572 UZ Turin Polytechnic University In Tashkent http://www.polito.uz/ -18573 UZ University of World Economy and Diplomacy http://www.uwed.uz/ -18574 UZ Uzbek State World Languages University http://www.uzswlu.uz/ -18575 UZ Westminster International University in Tashkent http://www.wiut.uz/ -18576 VA Athenaeum Pontificium Regina Apostolorum http://www.upra.org/ -18577 VA Pontifcia Università Gregoriana http://www.unigre.urbe.it/ -18578 VA Pontifcia Universitas a S.Thomas Aquinate in Urbe http://www.pust.urbe.it/ -18579 VA Pontifcia Universitas Lateranensis http://www.pul.it/ -18580 VA Pontifcia Università Urbaniana http://www.urbaniana.edu/ -18581 VA Università Pontifcia Salesiana http://www.ups.urbe.it/ -18582 VC Trinity University School of Medicine http://www.tusom.org/ -18583 VE Universidad Bicentenaria de Aragua http://www.uba.edu.ve/ -18584 VE Universidad Bolivariana de Venezuela http://www.ubv.edu.ve/ -18585 VE Universidad Católica Andres Bello http://www.ucab.edu.ve/ -18586 VE Universidad Católica Cecilio Acosta http://www.unica.edu.ve/ -18587 VE Universidad Católica del Táchira http://www.ucat.edu.ve/ -18588 VE Universidad Central de Venezuela http://www.ucv.ve/ -18589 VE Universidad Centro Occidental Lisandro Alvarado http://www.ucla.edu.ve/ -18590 VE Universidad de Carabobo http://www.uc.edu.ve/ -18591 VE Universidad de Los Andes http://www.ula.ve/ -18592 VE Universidad del Zulia http://www.luz.ve/index2.html -18593 VE Universidad de Oriente http://www.udo.edu.ve/ -18594 VE Universidad Dr. Rafael Belloso Chacín http://www.urbe.edu/ -18595 VE Universidad Fermin Toro http://www.uft.edu.ve/ -18596 VE Universidad Gran Mariscal de Ayacucho http://www.ugma.edu.ve/ -18597 VE Universidad José Antonio Páez http://www.ujap.edu.ve/ -18598 VE Universidad José Maria Vargas http://www.ujmv.edu/ -18599 VE Universidad Metropolitana http://www.unimet.edu.ve/ -18600 VE Universidad Monteávila http://www.universidad-monteavila.edu.ve/ -18601 VE Universidad Nacional Abierta http://www.una.edu.ve/ -18602 VE Universidad Nacional Experimental de Guayana http://www.uneg.edu.ve/ -18603 VE Universidad Nacional Experimental de la Fuerza Armada http://www.unefa.edu.ve/ -18604 VE Universidad Nacional Experimental de los Llanos Occidentales "Ezequiel Zamora" http://www.unellez.edu.ve/ -18605 VE Universidad Nacional Experimental del Táchira http://www.unet.edu.ve/ -18606 VE Universidad Nacional Experimental "Francisco de Miranda" http://www.unefm.edu.ve/ -18607 VE Universidad Nacional Experimental Politécnica "Antonio José de Sucre" http://www.unexpo.edu.ve/ -18608 VE Universidad Nacional Experimental "Rafael Maria Baralt" http://www.unermb.edu.ve/ -18609 VE Universidad Nacional Experimental Romulo Gallegos http://www.unerg.edu.ve/ -18610 VE Universidad Nacional Experimental "Simón Rodriguez" http://www.unesr.edu.ve/ -18611 VE Universidad Nacional Experimental Sur del Lago "Jesús Maria Semprum" http://www.unesur.edu.ve/ -18612 VE Universidad Nueva Esparta http://www.une.edu.ve/ -18613 VE Universidad Pedagógica Experimental Libertador http://www.upel.edu.ve/ -18614 VE Universidad Rafael Urdaneta http://www.uru.edu/ -18615 VE Universidad Santa Maria Caracas http://usm.trompo.com/ -18616 VE Universidad Simón Bolivar http://www.usb.ve/ -18617 VE Universidad Tecnológica del Centro http://www.unitec.edu.ve/ -18618 VE Universidad Valle del Momboy http://www.uvm.edu.ve/ -18619 VE Universidad Yacambu http://www.yacambu.edu.ve/ -18620 VI University of the Virgin Islands http://www.uvi.edu/ -18621 VN Banking University of Ho Chi Minh City http://www.buh.edu.vn/ -18622 VN Binh Duong University http://www.bdu.edu.vn/ -18623 VN Can-Tho University http://www.ctu.edu.vn/ -18624 VN Danang College Of Technology http://www.dct.udn.vn/ -18625 VN Foreign Trade University http://www.ftu.edu.vn/ -18626 VN FPT University http://www.fpt.edu.vn/ -18627 VN Hai Duong University http://www.uhd.edu.vn/ -18628 VN Hanoi Medical University http://www.hmu.edu.vn/ -18629 VN Hanoi National Economics University http://www.neu.edu.vn/ -18630 VN Hanoi Open University http://www.hou.edu.vn/ -18631 VN Hanoi University of Architecture http://www.hau.edu.vn/ -18632 VN Hanoi University of Civil Engineering http://www.dhxd.edu.vn/ -18633 VN Hanoi University of Mining and Geology http://www.humg.edu.vn/ -18634 VN Hanoi University of Science http://www.hus.edu.vn/ -18635 VN Hanoi University of Science & Technology http://www.hust.edu.vn/ -18636 VN Ho Chi Minh City Open University http://www.ou.edu.vn/ -18637 VN Ho Chi Minh City University of Agriculture and Forestry http://www.hcmuaf.edu.vn/ -18638 VN Ho Chi Minh City University of Architecture http://www.uah.edu.vn/ -18639 VN Ho Chi Minh City University of Economics http://www.ueh.edu.vn/ -18640 VN Ho Chi Minh City University of Foreign Languages and Information Technology http://www.huflit.edu.vn/ -18641 VN Ho Chi Minh City University of Law http://www.hcmulaw.edu.vn/ -18642 VN Ho Chi Minh City University of Medicine and Pharmacy http://www.yds.edu.vn/ -18643 VN Ho Chi Minh City University of Natural Sciences http://www.hcmuns.edu.vn/ -18644 VN Ho Chi Minh City University of Pedagogics http://www.hcmup.edu.vn/ -18645 VN Ho Chi Minh City University of Social Sciences and Humanities http://www.hcmussh.edu.vn/ -18646 VN Ho Chi Minh City University of Technology http://www.hcmut.edu.vn/ -18647 VN Ho Chi Minh City University of Transport http://www.hcmutrans.edu.vn/ -18648 VN Hong Bang University International http://www.hbu.edu.vn/ -18649 VN Hue University http://www.hueuni.edu.vn/ -18650 VN Hue University of Agriculture and Forestry http://www.huaf.edu.vn/ -18651 VN Institute of Finance http://www.hvtc.edu.vn/ -18652 VN Posts & Telecommunications Institute of Technology http://www.ptit.edu.vn/ -18653 VN RMIT International University Vietnam http://www.rmit.edu.vn/ -18654 VN Saigon University http://www.sgu.edu.vn/ -18655 VN Tay Nguyen University http://www.taynguyenuni.edu.vn/ -18656 VN Thainguyen University of Agriculture and Forestry http://www.tuaf.edu.vn/ -18657 VN University of Da Lat http://www.dlu.edu.vn/ -18658 VN University of Da Nang http://www.udn.vn/ -18659 VN University of Technical Education Ho Chi Minh City http://www.hcmute.edu.vn/ -18660 VN University of Transport and Communications http://www.utc.edu.vn/ -18661 VN Vietnam Maritime University http://www.vimaru.edu.vn/ -18662 VN Vietnam National University Hanoi http://www.vnu.edu.vn/ -18663 VN Vietnam National University Ho Chi Minh City http://www.vnuhcm.edu.vn/ -18664 VN Vietnam National University of Agriculture http://www.vnua.edu.vn/ -18665 VN Water Resources University http://www.hwru.edu.vn/ -18666 WS National University of Samoa http://www.nus.edu.ws/ -18667 WS University of the South Pacific School of Agriculture http://www.usp.ac.fj/wwwsoa/ -18668 YE Alahgaff University http://www.ahgaff.edu/ -18669 YE Al-Eman University http://www.jameataleman.org/ -18670 YE Al-Nasser University http://www.al-edu.com/ -18671 YE Hadhramout University of Science and Technology http://www.hust.edu.ye/ -18672 YE Hodeidah University http://www.hoduniv.net.ye/ -18673 YE Queen Arwa University http://www.arwauniversity.org/ -18674 YE Saba University http://www.sabauni.net/ -18675 YE Sana'a University http://www.su.edu.ye/ -18676 YE Taiz University http://www.taiz.edu.ye/ -18677 YE Thamar University http://www.thuniv.net/ -18678 YE University of Aden http://www.aden-univ.net/ -18679 YE University of Modern Sciences http://www.ums-edu.com/ -18680 YE University of Science and Technology Sana'a http://www.ust.edu/ -18681 YE Yemenia University http://www.yuniv.net/ -18682 ZA Cape Peninsula University of Technology http://www.cput.ac.za/ -18683 ZA Central University of Technology, Free State http://www.cut.ac.za/ -18684 ZA Durban Institute of Technology http://www.dit.ac.za/ -18685 ZA Nelson Mandela Metropolitan University http://www.nmmu.ac.za/ -18686 ZA Rhodes University http://www.ru.ac.za/ -18687 ZA Tshwane University of Technology http://www.tut.ac.za/ -18688 ZA University of Cape Town http://www.uct.ac.za/ -18689 ZA University of Fort Hare http://www.ufh.ac.za/ -18690 ZA University of Johannesburg http://www.uj.ac.za/ -18691 ZA University of KwaZulu-Natal http://www.ukzn.ac.za/ -18692 ZA University of Limpopo http://www.ul.ac.za/ -18693 ZA University of North West http://www.uniwest.ac.za/ -18694 ZA University of Pretoria http://www.up.ac.za/ -18695 ZA University of South Africa http://www.unisa.ac.za/ -18696 ZA University of Stellenbosch http://www.sun.ac.za/ -18697 ZA University of the Free State http://www.uovs.ac.za/ -18698 ZA University of the Western Cape http://www.uwc.ac.za/ -18699 ZA University of Venda http://www.univen.ac.za/ -18700 ZA University of Witwatersrand http://www.wits.ac.za/ -18701 ZA University of Zululand http://www.uzulu.ac.za/ -18702 ZA Vaal University of Technology http://www.vut.ac.za/ -18703 ZA Walter Sisulu University for Technology and Science http://www.wsu.ac.za/ -18704 ZM Cavendish University http://www.cavendishza.org/ -18705 ZM Copperbelt University http://www.cbu.edu.zm/ -18706 ZM Mulungushi University http://www.mu.ac.zm/ -18707 ZM Northrise University http://www.northrise.org/ -18708 ZM Rusangu University http://www.rusangu-university.edu.zm/ -18709 ZM University of Lusaka http://www.unilus.ac.zm/ -18710 ZM University of Zambia http://www.unza.zm/ -18711 ZM Zambian Open University http://www.zaou.ac.zm/ -18712 ZW Africa University http://www.africau.edu/ -18713 ZW Bindura University of Science Education http://www.buse.ac.zw/ -18714 ZW Catholic University in Zimbabwe http://www.cuz.ac.zw/ -18715 ZW Chinhoyi University of Technology http://www.cut.ac.zw/ -18716 ZW Great Zimbabwe University http://www.gzu.ac.zw/ -18717 ZW Harare Institute of Technology http://www.hit.ac.zw/ -18718 ZW Lupane State University http://www.lsu.ac.zw/ -18719 ZW Midlands State University http://www.msu.ac.zw/ -18720 ZW National University of Science and Technology Bulawayo http://www.nust.ac.zw/ -18721 ZW Reformed Church University http://www.rcu.ac.zw/ -18722 ZW Solusi University http://www.solusi.ac.zw/ -18723 ZW University of Zimbabwe http://www.uz.ac.zw/ -18724 ZW Women's University in Africa http://www.wua.ac.zw/ -18725 ZW Zimbabwe Ezekiel Guti University http://www.zegu.ac.zw/ -18726 ZW Zimbabwe Open University http://www.zou.ac.zw/ -\. - - --- --- Data for Name: hs_file_types_bandinformation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_bandinformation (id, object_id, name, "variableName", "variableUnit", method, comment, content_type_id, "maximumValue", "minimumValue", "noDataValue") FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cellinformation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cellinformation (id, object_id, name, rows, columns, "cellSizeXValue", "cellSizeYValue", "cellDataType", content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_csvfilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_csvfilemetadata (id, extra_metadata, keywords, is_dirty, "tableSchema") FROM stdin; -\. - - --- --- Data for Name: hs_file_types_csvlogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_csvlogicalfile (id, dataset_name, extra_data, preview_data, metadata_id, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvaggregationstatistic; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvaggregationstatistic (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvelevationdatum; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvelevationdatum (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvmedium; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvmedium (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvmethodtype; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvmethodtype (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvsitetype; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvsitetype (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvspeciation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvspeciation (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvstatus; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvstatus (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvunitstype; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvunitstype (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvvariablename; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvvariablename (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_cvvariabletype; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_cvvariabletype (id, term, name, is_dirty, metadata_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_fieldinformation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_fieldinformation (id, object_id, "fieldName", "fieldType", "fieldTypeCode", "fieldWidth", "fieldPrecision", content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_filesetlogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_filesetlogicalfile (id, dataset_name, extra_data, folder, metadata_id, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_filesetmetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_filesetmetadata (id, extra_metadata, keywords, is_dirty) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_genericfilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_genericfilemetadata (id, extra_metadata, keywords, is_dirty) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_genericlogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_genericlogicalfile (id, dataset_name, metadata_id, extra_data, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_geofeaturefilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_geofeaturefilemetadata (id, extra_metadata, keywords, is_dirty) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_geofeaturelogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_geofeaturelogicalfile (id, dataset_name, metadata_id, extra_data, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_geometryinformation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_geometryinformation (id, object_id, "featureCount", "geometryType", content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_georasterfilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_georasterfilemetadata (id, extra_metadata, keywords, is_dirty) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_georasterlogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_georasterlogicalfile (id, dataset_name, metadata_id, extra_data, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_method; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_method (id, object_id, method_code, method_name, method_type, method_description, method_link, content_type_id, is_dirty, series_ids) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_modelinstancefilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_modelinstancefilemetadata (id, extra_metadata, keywords, is_dirty, has_model_output, metadata_json, executed_by_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_modelinstancelogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_modelinstancelogicalfile (id, dataset_name, extra_data, folder, metadata_schema_json, metadata_id, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_modelprogramfilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_modelprogramfilemetadata (id, extra_metadata, keywords, is_dirty, version, programming_languages, operating_systems, release_date, website, code_repository) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_modelprogramlogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_modelprogramlogicalfile (id, dataset_name, extra_data, folder, metadata_schema_json, metadata_id, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_modelprogramresourcefiletype; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_modelprogramresourcefiletype (id, file_type, mp_metadata_id, res_file_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_netcdffilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_netcdffilemetadata (id, extra_metadata, keywords, is_dirty, is_update_file) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_netcdflogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_netcdflogicalfile (id, dataset_name, metadata_id, extra_data, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_originalcoverage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_originalcoverage (id, object_id, _value, projection_string_type, projection_string_text, content_type_id, datum) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_originalcoveragegeofeature; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_originalcoveragegeofeature (id, object_id, northlimit, southlimit, westlimit, eastlimit, projection_string, projection_name, datum, unit, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_originalcoverageraster; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_originalcoverageraster (id, object_id, _value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_processinglevel; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_processinglevel (id, object_id, processing_level_code, definition, explanation, content_type_id, is_dirty, series_ids) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_reftimeseriesfilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_reftimeseriesfilemetadata (id, extra_metadata, keywords, is_dirty, json_file_content, abstract) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_reftimeserieslogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_reftimeserieslogicalfile (id, dataset_name, metadata_id, extra_data, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_site; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_site (id, object_id, site_code, site_name, elevation_m, elevation_datum, site_type, content_type_id, is_dirty, series_ids, latitude, longitude) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_timeseriesfilemetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_timeseriesfilemetadata (id, value_counts, extra_metadata, keywords, is_dirty, abstract, is_update_file) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_timeserieslogicalfile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_timeserieslogicalfile (id, dataset_name, metadata_id, extra_data, resource_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_timeseriesresult; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_timeseriesresult (id, object_id, units_type, units_name, units_abbreviation, status, sample_medium, value_count, aggregation_statistics, content_type_id, is_dirty, series_ids, series_label) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_utcoffset; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_utcoffset (id, object_id, series_ids, is_dirty, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_variable; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_variable (id, object_id, name, unit, type, shape, descriptive_name, method, missing_value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_file_types_variabletimeseries; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_file_types_variabletimeseries (id, object_id, variable_code, variable_name, variable_type, no_data_value, variable_definition, speciation, content_type_id, is_dirty, series_ids) FROM stdin; -\. - - --- --- Data for Name: hs_labels_resourcelabels; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_labels_resourcelabels (id, resource_id) FROM stdin; -1 16 -2 17 -3 18 -4 19 -5 20 -\. - - --- --- Data for Name: hs_labels_userlabels; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_labels_userlabels (id, user_id) FROM stdin; -1 4 -2 5 -3 6 -4 7 -5 8 -6 9 -7 10 -8 11 -9 12 -10 13 -11 14 -12 15 -13 16 -14 17 -15 18 -16 19 -17 20 -18 21 -19 22 -20 23 -21 24 -22 25 -\. - - --- --- Data for Name: hs_labels_userresourceflags; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_labels_userresourceflags (id, kind, start, resource_id, user_id) FROM stdin; -\. - - --- --- Data for Name: hs_labels_userresourcelabels; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_labels_userresourcelabels (id, start, label, resource_id, user_id) FROM stdin; -\. - - --- --- Data for Name: hs_labels_userstoredlabels; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_labels_userstoredlabels (id, label, user_id) FROM stdin; -\. - - --- --- Data for Name: hs_odm2_odm2variable; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_odm2_odm2variable (id, name, definition, provenance_uri, resource_uri) FROM stdin; -303 1,1,1-Trichloroethane 1,1,1-Trichloroethane (C2H3Cl3) /api/v1/variablename/1_1_1_Trichloroethane/ -304 1,1,2,2-Tetrachloroethane 1,1,2,2-Tetrachloroethane (C2H2Cl4) /api/v1/variablename/1_1_2_2_Tetrachloroethane/ -305 1,1,2-Trichloroethane 1,1,2-Trichloroethane (C2H3Cl3) /api/v1/variablename/1_1_2_Trichloroethane/ -306 1,1-Dichloroethane 1,1-Dichloroethane (C2H4Cl2) /api/v1/variablename/1_1_Dichloroethane/ -307 1,1-Dichloroethene 1,1-Dichloroethene (C2H2Cl2) /api/v1/variablename/1_1_Dichloroethene/ -308 1,2,3-Trimethylbenzene 1,2,3-Trimethylbenzene (C9H12) /api/v1/variablename/1_2_3_Trimethylbenzene/ -309 1,2,4,5-tetrachlorobenzene 1,2,4,5-tetrachlorobenzene (C6H2Cl4) /api/v1/variablename/1_2_4_5_Tetrachlorobenzene/ -310 1,2,4-Trichlorobenzene 1,2,4-Trichlorobenzene (C6H3Cl3) /api/v1/variablename/1_2_4_Trichlorobenzene/ -311 1,2,4-Trimethylbenzene 1,2,4-Trimethylbenzene /api/v1/variablename/1_2_4_Trimethylbenzene/ -312 1,2-Dibromo-3-chloropropane 1,2-Dibromo-3-chloropropane (C3H5Br2Cl) /api/v1/variablename/1_2_Dibromo_3_Chloropropane/ -313 1,2-Dichlorobenzene 1,2-Dichlorobenzene (C6H4Cl2) /api/v1/variablename/1_2_Dichlorobenzene/ -314 1,2-Dichloroethane 1,2-Dichloroethane (C2H4Cl2) /api/v1/variablename/1_2_Dichloroethane/ -315 1,2-Dichloropropane 1,2-Dichloropropane (C3H6Cl2) /api/v1/variablename/1_2_Dichloropropane/ -316 1,2-Dimethylnaphthalene 1,2-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_2_Dimethylnaphthalene/ -317 1,2-Dinitrobenzene 1,2-Dinitrobenzene (C6H4N2O4) /api/v1/variablename/1_2_Dinitrobenzene/ -318 1,2-Diphenylhydrazine 1,2-Diphenylhydrazine (C12H12N2) /api/v1/variablename/1_2_Diphenylhydrazine/ -319 1,3,5-Trimethylbenzene 1,3,5-Trimethylbenzene (C6H3(CH3)3) /api/v1/variablename/1_3_5_Trimethylbenzene/ -320 1,3-Dichlorobenzene 1,3-Dichlorobenzene (C6H4Cl2) /api/v1/variablename/1_3_Dichlorobenzene/ -321 1,3-Dimethyladamantane 1,3-Dimethyladamantane (C12H20). /api/v1/variablename/1_3_Dimethyladamantane/ -322 1,3-Dimethylnaphthalene 1,3-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_3_Dimethylnaphthalene/ -323 1,3-Dinitrobenzene 1,3-Dinitrobenzene (C6H4N2O4) /api/v1/variablename/1_3_Dinitrobenzene/ -324 1,4,5,8-Tetramethylnaphthalene 1,4,5,8-Tetramethylnaphthalene (C14H16), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_4_5_8_Tetramethylnaphthalene/ -325 1,4,5-Trimethylnaphthalene 1,4,5-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_4_5_Trimethylnaphthalene/ -326 1,4,6-Trimethylnaphthalene 1,4,6-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_4_6_Trimethylnaphthalene/ -327 1,4-Dichlorobenzene 1,4-Dichlorobenzene (C6H4Cl2) /api/v1/variablename/1_4_Dichlorobenzene/ -328 1,4-Dimethylnaphthalene 1,4-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_4_Dimethylnaphthalene/ -329 1,4-Dinitrobenzene 1,4-Dinitrobenzene (C6H4N2O4) /api/v1/variablename/1_4_Dinitrobenzene/ -330 1,5-Dimethylnaphthalene 1,5-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_5_Dimethylnaphthalene/ -331 1,6,7-Trimethylnaphthalene 1,6,7-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_6_7_Trimethylnaphthalene/ -332 1,6-Dimethylnaphthalene 1,6-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_6_Dimethylnaphthalene/ -333 1,8-Dimethylnaphthalene 1,8-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_8_Dimethylnaphthalene/ -334 1-Chloronaphthalene 1-Chloronaphthalene (C10H7Cl) /api/v1/variablename/1_Chloronaphthalene/ -335 1-Ethylnaphthalene 1-Ethylnaphthalene (C10H7C2H5), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_Ethylnaphthalene/ -336 1-Methylanthracene 1-Methylanthracene (C15H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_Methylanthracene/ -337 1-Methyldibenzothiophene 1-Methyldibenzothiophene (C13H10S) /api/v1/variablename/1_Methyldibenzothiophene/ -338 1-Methylfluorene 1-Methylfluorene (C14H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_Methylfluorene/ -339 1-Methylnaphthalene 1-Methylnaphthalene (C10H7CH3), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_Methylnaphthalene/ -340 1-Methylphenanthrene 1-Methylphenanthrene (C15H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/1_Methylphenanthrene/ -341 1-Naphthalenol methylcarbamate 1-Naphthalenol methylcarbamate (C12H11NO2) /api/v1/variablename/1_NaphthalenolMethylcarbamate/ -302 19-Hexanoyloxyfucoxanthin The phytoplankton pigment 19-Hexanoyloxyfucoxanthin /api/v1/variablename/19_Hexanoyloxyfucoxanthin/ -342 2,2-dichlorovinyl dimethyl phosphate 2,2-dichlorovinyl dimethyl phosphate (C4H7Cl2O4P) /api/v1/variablename/2_2_DichlorovinylDimethylPhosphate/ -343 2,3,4,6-Tetrachlorophenol 2,3,4,6-Tetrachlorophenol (C6H2Cl4O) /api/v1/variablename/2_3_4_6_Tetrachlorophenol/ -344 2,3,5-Trimethylnaphthalene 2,3,5-Trimethylnaphthalene (C13H14), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_3_5_Trimethylnaphthalene/ -345 2,3,6-Trimethylnaphthalene 2,3,6-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_3_6_Trimethylnaphthalene/ -346 2,3-Dimethylnaphthalene 2,3-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_3_Dimethylnaphthalene/ -347 2,4,5-Trichlorophenol 2,4,5-Trichlorophenol (C6H3Cl3O) /api/v1/variablename/2_4_5_Trichlorophenol/ -348 2,4,6-Trichlorophenol 2,4,6-Trichlorophenol (TCP) (C6H2Cl3OH) /api/v1/variablename/2_4_6_Trichlorophenol/ -349 2,4-Dichlorophenol 2,4-Dichlorophenol (C6H4Cl2O) /api/v1/variablename/2_4_Dichlorophenol/ -350 2,4-Dimethylphenol 2,4-Dimethylphenol (C8H10O) /api/v1/variablename/2_4_Dimethylphenol/ -351 2,4-Dinitrophenol 2,4-Dinitrophenol (C6H4N2O5) /api/v1/variablename/2_4_Dinitrophenol/ -352 2,4-Dinitrotoluene 2,4-Dinitrotoluene (C7H6N2O4) /api/v1/variablename/2_4_Dinitrotoluene/ -353 2,6-Dichlorophenol 2,6-Dichlorophenol (C6H4Cl2O) /api/v1/variablename/2_6_Dichlorophenol/ -354 2,6-Dinitrotoluene 2,6-Dinitrotoluene (C7H6N2O4) /api/v1/variablename/2_6_Dinitrotoluene/ -355 2,7-Dimethylnaphthalene 2,7-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_7_Dimethylnaphthalene/ -356 2-Butanone (MEK) 2-Butanone (MEK) (C4H8O) /api/v1/variablename/2_Butanone_MEK/ -357 2-Butoxyethanol 2-Butoxyethanol (CH3(CH2)2CH2OCH2OH) /api/v1/variablename/2_Butoxyethanol/ -358 2-Chloronaphthalene 2-Chloronaphthalene (C10H7Cl) /api/v1/variablename/2_Chloronaphthalene/ -359 2-Chlorophenol 2-Chlorophenol (C6H5ClO) /api/v1/variablename/2_Chlorophenol/ -360 2-Hexanone 2-Hexanone (C6H12O) /api/v1/variablename/2_Hexanone/ -361 2-Methylanthracene 2-Methylanthracene (C15H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_Methylanthracene/ -362 2-Methyldibenzothiophene 2-Methyldibenzothiophene (C13H10S), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_Methyldibenzothiophene/ -363 2-Methylnaphthalene 2-Methylnaphthalene (C10H7CH3), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_Methylnaphthalene/ -364 2-Methylphenanthrene 2-Methylphenanthrene (C15H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/2_Methylphenanthrene/ -365 2-Methylphenol 2-Methylphenol (C7H8O) /api/v1/variablename/2_Methylphenol/ -366 2-Nitroaniline 2-Nitroaniline (C6H6N2O2) /api/v1/variablename/2_Nitroaniline/ -367 2-Nitrophenol 2-Nitrophenol (C6H5NO3) /api/v1/variablename/2_Nitrophenol/ -368 3,3-Dichlorobenzidine 3,3-Dichlorobenzidine (C12H10Cl2N2) /api/v1/variablename/3_3_Dichlorobenzidine/ -369 3,6-Dimethylphenanthrene 3,6-Dimethylphenanthrene (C16H14), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/3_6_Dimethylphenanthrene/ -370 3-Nitroaniline 3-Nitroaniline (C6H6N2O2) /api/v1/variablename/3_Nitroaniline/ -371 4,4-DDD Dichlorodiphenyldichloroethane (C14H10Cl4) /api/v1/variablename/4_4_DDD/ -372 4,4-DDE Dichlorodiphenyldichloroethylene (C14H8Cl4) /api/v1/variablename/4_4_DDE/ -373 4,4-DDT Dichlorodiphenyltrichloroethane (C14H9Cl5) /api/v1/variablename/4_4_DDT/ -374 4,4-Methylenebis(2-chloroaniline) 4,4'-Methylenebis(2-chloroaniline) (C13H12Cl2N2) /api/v1/variablename/4_4_Methylenebis_2_Chloroaniline/ -375 4,4-Methylenebis(N,N-dimethylaniline) 4,4'-Methylenebis(N,N-dimethylaniline) (C17H22N2) /api/v1/variablename/4_4_Methylenebis_N_N_Dimethylaniline/ -376 4,6-Dinitro-2-methylphenol 4,6-Dinitro-2-methylphenol (C7H6N2O5) /api/v1/variablename/4_6_Dinitro_2_Methylphenol/ -377 4-Bromophenylphenyl ether 4-Bromophenylphenyl ether (C12H9BrO) /api/v1/variablename/4_BromophenylphenylEther/ -380 4-Chloro-3-methylphenol 4-Chloro-3-methylphenol (C7H7ClO) /api/v1/variablename/4_Chloro_3_Methylphenol/ -378 4-Chloroaniline 4-Chloroaniline (C6H6ClN) /api/v1/variablename/4_Chloroaniline/ -379 4-Chlorophenylphenyl ether 4-Chlorophenylphenyl ether (C12H9ClO) /api/v1/variablename/4_ChlorophenylphenylEther/ -381 4-Methylchrysene 4-Methylchrysene (C19H14), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/4_Methylchrysene/ -382 4-Methyldibenzothiophene 4-Methyldibenzothiophene (C13H10S), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/4_Methyldibenzothiophene/ -383 4-Methylphenol 4-Methylphenol (C7H8O) /api/v1/variablename/4_Methylphenol/ -384 4-Nitroaniline 4-Nitroaniline (C6H6N2O2) /api/v1/variablename/4_Nitroaniline/ -385 4-Nitrophenol 4-Nitrophenol (C6H5NO3) /api/v1/variablename/4_Nitrophenol/ -387 9 cis-Neoxanthin The phytoplankton pigment 9 cis-Neoxanthin /api/v1/variablename/9_cis_Neoxanthin/ -386 9,10-Dimethylanthracene 9,10-Dimethylanthracene (C16H14), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/9_10_Dimethylanthracene/ -388 Absorbance The amount of radiation absorbed by a material /api/v1/variablename/absorbance/ -1711 Absorbance, ultraviolet Absorbance of ultraviolet light at a specified wavelength, typically at 254 or 280 nm for water samples. Not normalized to DOC concentration like variables such as SUVA280. https://en.wikipedia.org/wiki/Specific_ultraviolet_absorbance /api/v1/variablename/absorbanceUltraviolet/ -389 Abundance The relative representation of a species in a particular ecosystem. If this generic term is used, the publisher should specify/qualify the species, class, etc. being measured in the method, qualifier, or other appropriate field. /api/v1/variablename/abundance/ -390 Acenaphthene Acenaphthene (C12H10) /api/v1/variablename/acenaphthene/ -391 Acenaphthylene Acenaphthylene (C12H8), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/acenaphthylene/ -392 Acetate Acetate /api/v1/variablename/acetate/ -393 Acetic Acid Acetic Acid (C2H4O2) /api/v1/variablename/aceticAcid/ -394 Acetone Acetone (C3H6O) /api/v1/variablename/acetone/ -395 Acetophenone Acetophenone (C6H5C(O)CH3) /api/v1/variablename/acetophenone/ -401 Acid neutralizing capacity Acid neutralizing capacity /api/v1/variablename/acidNeutralizingCapacity/ -402 Acid phosphatase Phosphatase enzymes are used by soil microorganisms to access organically bound phosphate nutrients. An assay on the rates of activity of these enzymes may be used to ascertain biological demand for phosphates in the soil. Some plant roots, especially cluster roots, exude carboxylates that perform acid phosphatase activity, helping to mobilise phosphorus in nutrient-deficient soils. https://en.wikipedia.org/wiki/Acid_phosphatase /api/v1/variablename/acidPhosphatase/ -396 Acidity, CO2 acidity CO2 acidity /api/v1/variablename/acidityCO2Acidity/ -397 Acidity, exchange The total amount of the Cation Exchange Capacity (CEC) of a soil that is due to H+ and Al3+ ions. It is a proportion of the total acidity and it is dependent on the type of soil and the percentage of the CEC that is composed of exchangeable bases (Ca2+, Mg2+, K+). /api/v1/variablename/acidityExchange/ -398 Acidity, hot Hot Acidity /api/v1/variablename/acidityHot/ -399 Acidity, mineral acidity Mineral Acidity /api/v1/variablename/acidityMineralAcidity/ -400 Acidity, total acidity Total acidity /api/v1/variablename/acidityTotalAcidity/ -1549 Activity, acid phosphatase Assay for microbial activity using acid phosphatase https://www.encyclopedia.com/education/dictionaries-thesauruses-pictures-and-press-releases/microbiological-assay /api/v1/variablename/activityAcidPhosphatase/ -1550 Activity, beta-glucosidase Assay for microbial activity using beta-glucosidase https://www.encyclopedia.com/education/dictionaries-thesauruses-pictures-and-press-releases/microbiological-assay /api/v1/variablename/activityBetaGlucosidase/ -1551 Activity, beta-N-acetyl glucosaminidase Assay for microbial activity using beta-N-acetyl glucosaminidase https://www.encyclopedia.com/education/dictionaries-thesauruses-pictures-and-press-releases/microbiological-assay /api/v1/variablename/activityBetaNAcetylGlucosaminidase/ -1552 Activity, phenol oxidase Assay for microbial activity using phenol oxidase https://www.encyclopedia.com/education/dictionaries-thesauruses-pictures-and-press-releases/microbiological-assay /api/v1/variablename/activityPhenolOxidase/ -403 Adamantane Adamantane (C10H16) /api/v1/variablename/adamantane/ -404 Agency code Code for the agency which analyzed the sample /api/v1/variablename/agencyCode/ -405 Albedo The ratio of reflected to incident light. /api/v1/variablename/albedo/ -1553 Albite Albite is a plagioclase feldspar mineral. It is the sodium endmember of the plagioclase solid solution series. As such it represents a plagioclase with less than 10% anorthite content. https://en.wikipedia.org/wiki/Albite /api/v1/variablename/albite/ -406 Aldrin Aldrin (C12H8Cl6) /api/v1/variablename/aldrin/ -1554 Alkali feldspar The alkali feldspar group are those feldspar minerals rich in the alkali elements like potassium and sodium. The alkali feldspars include albite, anorthoclase, microcline, orthoclase and sanidine. https://en.wikipedia.org/wiki/Alkali_feldspar /api/v1/variablename/alkaliFeldspar/ -1555 Alkalinity Alkalinity is the capacity of water to resist changes in pH that would make the water more acidic. It should not be confused with basicity which is an absolute measurement on the pH scale. Alkalinity is the strength of a buffer solution composed of weak acids and their conjugate bases. It is measured by titrating the solution with a monoprotic acid such as HCl until its pH changes abruptly, or it reaches a known endpoint where that happens. Alkalinity is expressed in units of meq/L (milliequivalents per liter), which corresponds to the amount of monoprotic acid added as a titrant in millimoles per liter. https://en.wikipedia.org/wiki/Alkalinity /api/v1/variablename/alkalinity/ -407 Alkalinity, bicarbonate Bicarbonate Alkalinity /api/v1/variablename/alkalinityBicarbonate/ -408 Alkalinity, carbonate Carbonate Alkalinity /api/v1/variablename/alkalinityCarbonate/ -409 Alkalinity, carbonate plus bicarbonate Alkalinity, carbonate plus bicarbonate /api/v1/variablename/alkalinityCarbonatePlusBicarbonate/ -410 Alkalinity, hydroxide Hydroxide Alkalinity /api/v1/variablename/alkalinityHydroxide/ -411 Alkalinity, total Total Alkalinity /api/v1/variablename/alkalinityTotal/ -412 Alloxanthin The phytoplankton pigment Alloxanthin /api/v1/variablename/alloxanthin/ -1556 Alluvium depth Alluvium is loose, unconsolidated (not cemented together into a solid rock) soil or sediment that has been eroded, reshaped by water in some form, and redeposited in a non-marine setting. Alluvium is typically made up of a variety of materials, including fine particles of silt and clay and larger particles of sand and gravel. When this loose alluvial material is deposited or cemented into a lithological unit, or lithified, it is called an alluvial deposit. https://en.wikipedia.org/wiki/Alluvium /api/v1/variablename/alluviumDepth/ -413 Alpha-N-Acetylglucosaminidase An enzyme with system name alpha-N-acetyl-D-glucosaminide N-acetylglucosaminohydrolase.[1][2][3][4] This enzyme catalyses the following chemical reaction: Hydrolysis of terminal non-reducing N-acetyl-D-glucosamine residues in N-acetyl-alpha-D-glucosaminides. https://en.wikipedia.org/wiki/Alpha-N-acetylglucosaminidase /api/v1/variablename/alphaNAcetylglucosaminidase/ -1537 Altitude Altitude or height (sometimes known as depth) is defined based on the context in which it is used (aviation, geometry, geographical survey, sport, atmospheric pressure, and many more). As a general definition, altitude is a distance measurement, usually in the vertical or "up" direction, between a reference datum and a point or object. The reference datum also often varies according to the context. Although the term altitude is commonly used to mean the height above sea level of a location, in geography the term elevation is often preferred for this usage. https://en.wikipedia.org/wiki/Altitude /api/v1/variablename/altitude/ -1520 Aluminum Aluminium (in Commonwealth English) or Aluminum (in American English) is a chemical element in the boron group with symbol Al and atomic number 13. It is a silvery-white, soft, nonmagnetic, ductile metal. https://en.wikipedia.org/wiki/Aluminium /api/v1/variablename/aluminum/ -414 Aluminum, dissolved Dissolved Aluminum (Al) /api/v1/variablename/aluminumDissolved/ -415 Aluminum, particulate Particulate aluminum in suspension /api/v1/variablename/aluminumParticulate/ -416 Aluminum, total Aluminum (Al). Total indicates was measured on a whole water sample. /api/v1/variablename/aluminumTotal/ -417 Ammonium flux Ammonium (NH4) flux /api/v1/variablename/ammoniumFlux/ -1557 Amphibole Amphibole is an important group of inosilicate minerals, forming prism or needlelike crystals, composed of double chain SiO 4 tetrahedra, linked at the vertices and generally containing ions of iron and/or magnesium in their structures. https://en.wikipedia.org/wiki/Amphibole /api/v1/variablename/amphibole/ -418 Aniline Aniline (C6H7N) /api/v1/variablename/aniline/ -419 Anthracene Anthracene (C14H10), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/anthracene/ -1559 Antimony Antimony is a chemical element with symbol Sb and atomic number 51. A lustrous gray metalloid, it is found in nature mainly as the sulfide mineral stibnite (Sb2S3). https://en.wikipedia.org/wiki/Antimony /api/v1/variablename/antimony/ -420 Antimony, dissolved Dissolved antimony (Sb)."Dissolved" indicates measurement was on a filtered sample. /api/v1/variablename/antimonyDissolved/ -421 Antimony, distribution coefficient Ratio of concentrations of antimony in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/antimonyDistributionCoefficient/ -422 Antimony, particulate Particulate antimony (Sb) in suspension /api/v1/variablename/antimonyParticulate/ -423 Antimony, total Total antimony (Sb). "Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/antimonyTotal/ -1560 Apophyllite The name apophyllite refers to a specific group of phyllosilicates, a class of minerals. Originally, the group name referred to a specific mineral, but was redefined in 1978 to stand for a class of minerals of similar chemical makeup that comprise a solid solution series, and includes the members fluorapophyllite-(K), fluorapophyllite-(Na), hydroxyapophyllite-(K). https://en.wikipedia.org/wiki/Apophyllite /api/v1/variablename/apophyllite/ -424 Area Area of a measurement location /api/v1/variablename/area/ -1569 Beryllium-10 Beryllium-10 (10Be) is a radioactive isotope of beryllium. https://en.wikipedia.org/wiki/Beryllium-10 /api/v1/variablename/berylium_10/ -1565 Area, basal Basal area is the area of a given section of land that is occupied by the cross-section of tree trunks and stems at the base. The term is used in forest management and forest ecology. https://en.wikipedia.org/wiki/Basal_area /api/v1/variablename/areaBasal/ -425 Argon Argon /api/v1/variablename/argon/ -426 Argon, dissolved Dissolved Argon /api/v1/variablename/argonDissolved/ -427 Aroclor-1016 Aroclor-1016 (C24H13Cl7), a PCB mixture /api/v1/variablename/aroclor_1016/ -428 Aroclor-1242 Aroclor-1242 (C12H6Cl4), a PCB mixture /api/v1/variablename/aroclor_1242/ -429 Aroclor-1254 Aroclor-1254 (C12H5Cl5), a PCB mixture /api/v1/variablename/aroclor_1254/ -430 Aroclor-1260 Aroclor-1260 (C12H3Cl7), a PCB mixture /api/v1/variablename/aroclor_1260/ -1562 Arsenic Arsenic is a chemical element with symbol As and atomic number 33. Arsenic occurs in many minerals, usually in combination with sulfur and metals, but also as a pure elemental crystal. Arsenic is a metalloid. It has various allotropes, but only the gray form, which has a metallic appearance, is important to industry. https://en.wikipedia.org/wiki/Arsenic /api/v1/variablename/arsenic/ -431 Arsenic, dissolved Dissolved Arsenic. For chemical terms, dissolved represents a filtered sample. /api/v1/variablename/arsenicDissolved/ -432 Arsenic, distribution coefficient Ratio of concentrations of arsenic in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/arsenicDistributionCoefficient/ -433 Arsenic, particulate Particulate arsenic (As) in suspension /api/v1/variablename/arsenicParticulate/ -434 Arsenic, total Total arsenic (As). Total indicates was measured on a whole water sample. /api/v1/variablename/arsenicTotal/ -1594 Aspect Aspect identifies the downslope direction of the maximum rate of change in value from each raster DEM cell to its neighbors. http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/how-aspect-works.htm /api/v1/variablename/aspect/ -435 Asteridae coverage Areal coverage of the plant Asteridae /api/v1/variablename/asteridaeCoverage/ -1563 Augelite Augelite is an aluminium phosphate mineral with formula: Al2(PO4)(OH)3. The shade varies from colorless to white, yellow or rose. Its crystal system is monoclinic https://en.wikipedia.org/wiki/Augelite /api/v1/variablename/augelite/ -1564 Barium Barium is a chemical element with symbol Ba and atomic number 56. It is the fifth element in group 2 and is a soft, silvery alkaline earth metal. Because of its high chemical reactivity, barium is never found in nature as a free element. Its hydroxide, known in pre-modern times as baryta, does not occur as a mineral, but can be prepared by heating barium carbonate. https://en.wikipedia.org/wiki/Barium /api/v1/variablename/barium/ -436 Barium, dissolved Dissolved Barium (Ba) /api/v1/variablename/bariumDissolved/ -437 Barium, distribution coefficient Ratio of concentrations of barium in two phases in equilibrium with each other. Phases must be specified /api/v1/variablename/bariumDistributionCoefficient/ -438 Barium, particulate Particulate barium (Ba) in suspension /api/v1/variablename/bariumParticulate/ -439 Barium, total Total Barium (Ba). For chemical terms, "total" indicates an unfiltered sample. /api/v1/variablename/bariumTotal/ -440 Barometric pressure Barometric pressure /api/v1/variablename/barometricPressure/ -1566 Base saturation Percent base saturation (BS) is the percentage of the Cation Exchange Capacity (CEC) occupied by the basic cations Ca2+, Mg2+ and K+. http://extension.uga.edu/publications/detail.html?number=C1040&title=Cation%20Exchange%20Capacity%20and%20Base%20Saturation /api/v1/variablename/baseSaturation/ -441 Baseflow The portion of streamflow (discharge) that is supplied by groundwater sources. /api/v1/variablename/baseflow/ -442 Batis maritima Coverage Areal coverage of the plant Batis maritima /api/v1/variablename/batisMaritimaCoverage/ -443 Battery temperature The battery temperature of a datalogger or sensing system /api/v1/variablename/batteryTemperature/ -444 Battery voltage The battery voltage of a datalogger or sensing system, often recorded as an indicator of data reliability /api/v1/variablename/batteryVoltage/ -1567 Bedrock type In geology, bedrock is the lithified rock that lies under a loose softer material called regolith at the surface of the Earth or other terrestrial planets. https://en.wikipedia.org/wiki/Bedrock /api/v1/variablename/bedrockType/ -445 Benthos Benthic species /api/v1/variablename/benthos/ -455 Benz(a)anthracene Benz(a)anthracene (C18H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benz_a_anthracene/ -446 Benzene Benzene (C6H6) /api/v1/variablename/benzene/ -448 Benzo(a)pyrene Benzo(a)pyrene (C20H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benzo_a_pyrene/ -449 Benzo(b)fluoranthene Benzo(b)fluoranthene (C20H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benzo_b_fluoranthene/ -450 Benzo(b)fluorene Benzo(b)fluorene (C17H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benzo_b_fluorene/ -451 Benzo(e)pyrene Benzo(e)pyrene (C20H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benzo_e_pyrene/ -452 Benzo(g,h,i)perylene Benzo(g,h,i)perylene (C22H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benzo_g_h_i_perylene/ -453 Benzo(k)fluoranthene Benzo(k)fluoranthene (C20H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/benzo_k_fluoranthene/ -447 Benzoic acid Benzoic acid (C7H6O2) /api/v1/variablename/benzoicAcid/ -454 Benzyl alcohol Benzyl alcohol (C7H8O) /api/v1/variablename/benzylAlcohol/ -1568 Beryllium Beryllium is a chemical element with symbol Be and atomic number 4. It is a relatively rare element in the universe, usually occurring as a product of the spallation of larger atomic nuclei that have collided with cosmic rays. Within the cores of stars beryllium is depleted as it is fused and creates larger elements. It is a divalent element which occurs naturally only in combination with other elements in minerals. Notable gemstones which contain beryllium include beryl (aquamarine, emerald) and chrysoberyl. As a free element it is a steel-gray, strong, lightweight and brittle alkaline earth metal. https://en.wikipedia.org/wiki/Beryllium /api/v1/variablename/beryllium/ -456 Beryllium, dissolved Dissolved Beryllium (Be) . For chemical terms, "dissolved"indicates a filtered sample. /api/v1/variablename/berylliumDissolved/ -457 Beryllium, total Total Beryllium (Be). For chemical terms, "total" indicates an unfiltered sample. /api/v1/variablename/berylliumTotal/ -677 Hardness, carbonate Carbonate hardness also known as temporary hardness /api/v1/variablename/hardnessCarbonate/ -458 Beta-glucosidase Beta-glucosidase catalyzes the hydrolysis of the glycosidic bonds to terminal non-reducing residues in beta-D-glucosides and oligosaccharides, with release of glucose. https://en.wikipedia.org/wiki/Beta-glucosidase /api/v1/variablename/betaGlucosidase/ -459 Bicarbonate Bicarbonate (HCO3-) /api/v1/variablename/bicarbonate/ -460 Bifenthrin Bifenthrin (C23H22ClF3O2) /api/v1/variablename/bifenthrin/ -461 Biogenic silica Hydrated silica (SiO2 nH20) /api/v1/variablename/biogenicSilica/ -462 Biomass Mass of living biological organisms in a given area or ecosystem at a given time. If this generic term is used, the publisher should specify/qualify the species, class, etc. being measured in the method, qualifier, or other appropriate field. /api/v1/variablename/biomass/ -1548 Biomass, above-ground The biomass is the mass of living biological organisms in a given area or ecosystem at a given time on or above the surface of the ground https://en.wiktionary.org/wiki/aboveground https://en.wikipedia.org/wiki/Biomass_(ecology) /api/v1/variablename/biomassAboveGround/ -1649 Biomass, microbial Microbial biomass (bacteria and fungi) is a measure of the mass of the living component of soil organic matter. http://soilquality.org.au/factsheets/microbial-biomass /api/v1/variablename/biomassMicrobial/ -463 Biomass, phytoplankton Total mass of phytoplankton, per unit area or volume /api/v1/variablename/biomassPhytoplankton/ -1570 Biomass, soil bacterial deoxyribonucleic acid (DNA) Total dry mass of soil bacterial deoxyribonucleic acid (DNA) per unit mass of soil https://en.wikipedia.org/wiki/Biomass /api/v1/variablename/biomassSoilBacterialDeoxyribonucleicAcid/ -464 Biomass, total Total biomass /api/v1/variablename/biomassTotal/ -1571 Biomass, vegetation Total dry mass of plant material per unit area or volume https://en.wikipedia.org/wiki/Biomass /api/v1/variablename/biomassVegetation/ -465 Biphenyl Biphenyl ((C6H5)2), a polycyclic aromatic hydrocarbon (PAH), also known as diphenyl or phenylbenzene or 1,1'-biphenyl or lemonene /api/v1/variablename/biphenyl/ -466 Bis(2-chloroethoxy)methane Bis(2-chloroethoxy)methane (C5H10Cl2O2) /api/v1/variablename/bis_2_Chloroethoxy_Methane/ -467 bis(2-Chloroethyl)ether bis(2-Chloroethyl)ether (C4H8Cl2O) /api/v1/variablename/bis_2_Chloroethyl_Ether/ -469 Bis-(2-ethylhexyl) phthalate Bis-(2-ethylhexyl) phthalate (C6H4(C8H17COO)2) /api/v1/variablename/bis_2_Ethylhexyl_Phthalate/ -468 bis-2-chloroisopropyl ether bis-2-chloroisopropyl ether (C6H12Cl2O) /api/v1/variablename/bis_2_ChloroisopropylEther/ -1572 Bismuth Bismuth is a chemical element with symbol Bi and atomic number 83. It is a pentavalent post-transition metal and one of the pnictogens with chemical properties resembling its lighter homologs arsenic and antimony. Elemental bismuth may occur naturally, although its sulfide and oxide form important commercial ores. The free element is 86% as dense as lead. It is a brittle metal with a silvery white color when freshly produced, but surface oxidation can give it a pink tinge. Bismuth is marginally radioactive, and the most naturally diamagnetic element, and has one of the lowest values of thermal conductivity among metals. https://en.wikipedia.org/wiki/Bismuth /api/v1/variablename/bismuth/ -470 Blue-green algae (cyanobacteria), phycocyanin Blue-green algae (cyanobacteria) with phycocyanin pigments /api/v1/variablename/blue_GreenAlgae_Cyanobacteria_Phycocyanin/ -471 BOD1 1-day Biochemical Oxygen Demand /api/v1/variablename/BOD1/ -475 BOD2, carbonaceous 2-day Carbonaceous Biochemical Oxygen Demand /api/v1/variablename/BOD2Carbonaceous/ -472 BOD20 20-day Biochemical Oxygen Demand /api/v1/variablename/BOD20/ -473 BOD20, carbonaceous 20-day Carbonaceous Biochemical Oxygen Demand /api/v1/variablename/BOD20Carbonaceous/ -474 BOD20, nitrogenous 20-day Nitrogenous Biochemical Oxygen Demand /api/v1/variablename/BOD20Nitrogenous/ -476 BOD3, carbonaceous 3-day Carbonaceous Biochemical Oxygen Demand /api/v1/variablename/BOD3Carbonaceous/ -477 BOD4, carbonaceous 4-day Carbonaceous Biological Oxygen Demand /api/v1/variablename/BOD4Carbonaceous/ -478 BOD5 5-day Biochemical Oxygen Demand /api/v1/variablename/BOD5/ -479 BOD5, carbonaceous 5-day Carbonaceous Biochemical Oxygen Demand /api/v1/variablename/BOD5Carbonaceous/ -480 BOD5, nitrogenous 5-day Nitrogenous Biochemical Oxygen Demand /api/v1/variablename/BOD5Nitrogenous/ -481 BOD6, carbonaceous 6-day Carbonaceous Biological Oxygen Demand /api/v1/variablename/BOD6Carbonaceous/ -482 BOD7, carbonaceous 7-day Carbonaceous Biochemical Oxygen Demand /api/v1/variablename/BOD7Carbonaceous/ -483 BODu Ultimate Biochemical Oxygen Demand /api/v1/variablename/BODu/ -484 BODu, carbonaceous Carbonaceous Ultimate Biochemical Oxygen Demand /api/v1/variablename/BODuCarbonaceous/ -485 BODu, nitrogenous Nitrogenous Ultimate Biochemical Oxygen Demand /api/v1/variablename/BODuNitrogenous/ -486 Body length Length of the body of an organism /api/v1/variablename/bodyLength/ -487 Borehole log material classification Classification of material encountered by a driller at various depths during the drilling of a well and recorded in the borehole log. /api/v1/variablename/boreholeLogMaterialClassification/ -488 Boron, dissolved dissolved boron /api/v1/variablename/boronDissolved/ -489 Boron, total Total Boron (B) /api/v1/variablename/boronTotal/ -490 Borrichia frutescens Coverage Areal coverage of the plant Borrichia frutescens /api/v1/variablename/borrichiaFrutescensCoverage/ -1573 Bromide A bromide is a chemical compound containing a bromide ion or ligand. This is a bromine atom with an ionic charge of −1 (Br−); for example, in caesium bromide, caesium cations (Cs+) are electrically attracted to bromide anions (Br−) to form the electrically neutral ionic compound CsBr. The term "bromide" can also refer to a bromine atom with an oxidation number of −1 in covalent compounds such as sulfur dibromide (SBr2). https://en.wikipedia.org/wiki/Bromide /api/v1/variablename/bromide/ -491 Bromide, dissolved Dissolved Bromide (Br-) /api/v1/variablename/bromideDissolved/ -492 Bromide, total Total Bromide (Br-) /api/v1/variablename/bromideTotal/ -493 Bromine Bromine (Br2) /api/v1/variablename/bromine/ -494 Bromine, dissolved Dissolved Bromine (Br2) /api/v1/variablename/bromineDissolved/ -495 Bromodichloromethane Bromodichloromethane (CHBrCl2) /api/v1/variablename/bromodichloromethane/ -496 Bromoform Bromoform (CHBr3), a haloform /api/v1/variablename/bromoform/ -497 Bromomethane (Methyl bromide) Bromomethane (Methyl bromide) (CH3Br) /api/v1/variablename/bromomethane_MethylBromide/ -498 Bulk density The mass of many particles of the material divided by the total volume they occupy. The total volume includes particle volume, inter-particle void volume and internal pore volume. /api/v1/variablename/bulkDensity/ -499 Bulk electrical conductivity Bulk electrical conductivity of a medium measured using a sensor such as time domain reflectometry (TDR), as a raw sensor response in the measurement of a quantity like soil moisture. /api/v1/variablename/bulkElectricalConductivity/ -500 Butane Butane /api/v1/variablename/butane/ -501 Butylbenzylphthalate Butylbenzylphthalate (C19H20O4) /api/v1/variablename/butylbenzylphthalate/ -502 Butyric Acid Butyric Acid (C4H8O2) /api/v1/variablename/butyricAcid/ -1574 Cadmium Cadmium is a chemical element with symbol Cd and atomic number 48. This soft, bluish-white metal is chemically similar to the two other stable metals in group 12, zinc and mercury. Like zinc, it demonstrates oxidation state +2 in most of its compounds, and like mercury, it has a lower melting point than the transition metals in groups 3 through 11. Cadmium and its congeners in group 12 are often not considered transition metals, in that they do not have partly filled d or f electron shells in the elemental or common oxidation states. The average concentration of cadmium in Earth's crust is between 0.1 and 0.5 parts per million (ppm). https://en.wikipedia.org/wiki/Cadmium /api/v1/variablename/cadmium/ -1575 Cadmium, dissolved Cadmium is a chemical element with symbol Cd and atomic number 48. This soft, bluish-white metal is chemically similar to the two other stable metals in group 12, zinc and mercury. Like zinc, it demonstrates oxidation state +2 in most of its compounds, and like mercury, it has a lower melting point than the transition metals in groups 3 through 11. Cadmium and its congeners in group 12 are often not considered transition metals, in that they do not have partly filled d or f electron shells in the elemental or common oxidation states. The average concentration of cadmium in Earth's crust is between 0.1 and 0.5 parts per million (ppm). https://en.wikipedia.org/wiki/Cadmium /api/v1/variablename/cadmiumDissolved/ -503 Cadmium, dissolved Dissolved Cadmium. For chemical terms, "dissolved" indicates a filtered sample. /api/v1/variablename/cadmiumDissolved/ -504 Cadmium, distribution coefficient Ratio of concentrations of cadmium in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/cadmiumDistributionCoefficient/ -505 Cadmium, particulate Particulate cadmium (Cd) in suspension /api/v1/variablename/cadmiumParticulate/ -506 Cadmium, total Total Cadmium (Cd). For chemical terms, "total" indciates an unfiltered sample. /api/v1/variablename/cadmiumTotal/ -1577 Calcium oxide Calcium oxide (CaO), commonly known as quicklime or burnt lime, is a widely used chemical compound. https://en.wikipedia.org/wiki/Calcium_oxide /api/v1/variablename/calciumOxide/ -1576 Calcium, dissolved Calcium is a chemical element with symbol Ca and atomic number 20. An alkaline earth metal, calcium is a reactive metal that forms a dark oxide-nitride layer when exposed to air. Its physical and chemical properties are most similar to its heavier homologues strontium and barium. It is the fifth most abundant element in Earth's crust and the third most abundant metal, after iron and aluminium. The most common calcium compound on Earth is calcium carbonate, found in limestone and the fossilised remnants of early sea life; gypsum, anhydrite, fluorite, and apatite are also sources of calcium. The name derives from Latin calx "lime", which was obtained from heating limestone. https://en.wikipedia.org/wiki/Calcium /api/v1/variablename/calciumDissolved/ -507 Calcium, dissolved Dissolved Calcium (Ca) /api/v1/variablename/calciumDissolved/ -508 Calcium, total Total Calcium (Ca) /api/v1/variablename/calciumTotal/ -1578 Canopy closure Crown closure is a term used in forestry. Crown closure and crown cover are two slightly different measures of the forest canopy and that determine the amount of light able to penetrate to the forest floor. https://en.wikipedia.org/wiki/Crown_closure /api/v1/variablename/canopyClosure/ -1579 Canopy height Forest canopy density and height are used as variables in a number of environmental applications, such as biomass estimation, vegetation coverage, and biodiversity determination. Canopy density, or canopy cover, is the ratio of vegetation to ground as seen from the air. Canopy height measures how far above the ground the top of the canopy is. Lidar can be used to determine both of these variables. http://desktop.arcgis.com/en/arcmap/10.3/manage-data/las-dataset/lidar-solutions-estimating-forest-density-and-height.htm /api/v1/variablename/canopyHeight/ -509 Canthaxanthin The phytoplankton pigment Canthaxanthin /api/v1/variablename/canthaxanthin/ -510 Carbaryl Carbaryl (C12H11NO2) /api/v1/variablename/carbaryl/ -511 Carbazole Carbazole (C12H9N) /api/v1/variablename/carbazole/ -1580 Carbon Carbon is a chemical element with symbol C and atomic number 6. It is nonmetallic and tetravalent—making four electrons available to form covalent chemical bonds. It belongs to group 14 of the periodic table. Three isotopes occur naturally, 12C and 13C being stable, while 14C is a radionuclide, decaying with a half-life of about 5,730 years. Carbon is one of the few elements known since antiquity. https://en.wikipedia.org/wiki/Carbon /api/v1/variablename/carbon/ -513 Carbon dioxide Carbon dioxide /api/v1/variablename/carbonDioxide/ -515 Carbon dioxide flux Carbon dioxide (CO2) flux /api/v1/variablename/carbonDioxideFlux/ -516 Carbon dioxide storage flux Carbon dioxide (CO2) storage flux /api/v1/variablename/carbonDioxideStorageFlux/ -514 Carbon Dioxide, dissolved Dissolved Carbon dioxide (CO2) /api/v1/variablename/carbonDioxideDissolved/ -517 Carbon dioxide, transducer signal Carbon dioxide (CO2), raw data from sensor /api/v1/variablename/carbonDioxideTransducerSignal/ -521 Carbon disulfide Carbon disulfide (CS2) /api/v1/variablename/carbonDisulfide/ -522 Carbon monoxide, dissolved Dissolved carbon monoxide (CO) /api/v1/variablename/carbonMonoxideDissolved/ -527 Carbon tetrachloride Carbon tetrachloride (CCl4) /api/v1/variablename/carbonTetrachloride/ -528 Carbon to nitrogen mass ratio Carbon to nitrogen (C:N) mass ratio /api/v1/variablename/carbonToNitrogenMassRatio/ -529 Carbon to nitrogen molar ratio Carbon to nitrogen (C:N) molar ratio /api/v1/variablename/carbonToNitrogenMolarRatio/ -518 Carbon, dissolved inorganic Dissolved Inorganic Carbon /api/v1/variablename/carbonDissolvedInorganic/ -519 Carbon, dissolved organic Dissolved Organic Carbon /api/v1/variablename/carbonDissolvedOrganic/ -520 Carbon, dissolved total Dissolved Total (Organic+Inorganic) Carbon /api/v1/variablename/carbonDissolvedTotal/ -678 Hardness, Magnesium Hardness of magnesium /api/v1/variablename/hardnessMagnesium/ -1581 Carbon, organic extractable Mass of carbon extractable by water from soil or forest floor samples, also known as water-extractable organic carbon (WEOC) http://solvita.com/wp-content/uploads/2012/12/Soil_Organic_CN_ojss_2012.pdf /api/v1/variablename/carbonOrganicExtractable/ -523 Carbon, particulate organic Particulate organic carbon in suspension /api/v1/variablename/carbonParticulateOrganic/ -524 Carbon, suspended inorganic Suspended Inorganic Carbon /api/v1/variablename/carbonSuspendedInorganic/ -525 Carbon, suspended organic DEPRECATED -- The use of this term is discouraged in favor of the use of the synonymous term "Carbon, particulate organic". /api/v1/variablename/carbonSuspendedOrganic/ -526 Carbon, suspended total Suspended Total (Organic+Inorganic) Carbon /api/v1/variablename/carbonSuspendedTotal/ -530 Carbon, total Total (Dissolved+Particulate) Carbon /api/v1/variablename/carbonTotal/ -531 Carbon, total inorganic Total (Dissolved+Particulate) Inorganic Carbon /api/v1/variablename/carbonTotalInorganic/ -532 Carbon, total organic Total (Dissolved+Particulate) Organic Carbon /api/v1/variablename/carbonTotalOrganic/ -533 Carbon, total solid phase Total solid phase carbon /api/v1/variablename/carbonTotalSolidPhase/ -534 Carbon-13, stable isotope ratio delta Difference in the 13C:12C ratio between the sample and standard (del C 13) /api/v1/variablename/carbon_13StableIsotopeRatioDelta/ -535 Carbon-14 A radioactive isotope of carbon which undergoes beta decay /api/v1/variablename/carbon_14/ -512 Carbonate Carbonate ion (CO3-2) concentration /api/v1/variablename/carbonate/ -1582 Cation exchange capacity (CEC) Cation exchange capacity (CEC) is a measure of the total negative charges within the soil that adsorb plant nutrient cations such as calcium (Ca2+), magnesium (Mg2+) and potassium (K+). As such, the CEC is a property of a soil that describes its capacity to supply nutrient cations to the soil solution for plant uptake. http://extension.uga.edu/publications/detail.html?number=C1040&title=Cation%20Exchange%20Capacity%20and%20Base%20Saturation /api/v1/variablename/cationExchangeCapacity/ -536 Cellobiohydrolase Exocellulases or cellobiohydrolases cleave two to four units from the ends of the exposed chains produced by endocellulase, resulting in tetrasaccharides or disaccharides, such as cellobiose. Exocellulases are further classified into type I, that work processively from the reducing end of the cellulose chain, and type II, that work processively from the nonreducing end. https://en.wikipedia.org/wiki/Cellulase /api/v1/variablename/cellobiohydrolase/ -1583 Cerium Cerium is a chemical element with symbol Ce and atomic number 58. Cerium is a soft, ductile and silvery-white metal that tarnishes when exposed to air, and it is soft enough to be cut with a knife. https://en.wikipedia.org/wiki/Cerium /api/v1/variablename/cerium/ -1584 Cerium, dissolved Dissolved Cerium (Ce). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Cerium /api/v1/variablename/ceriumDissolved/ -1585 Cesium Caesium (IUPAC spelling) or cesium (American spelling) is a chemical element with symbol Cs and atomic number 55. It is a soft, silvery-gold alkali metal with a melting point of 28.5 °C (83.3 °F), which makes it one of only five elemental metals that are liquid at or near room temperature. https://en.wikipedia.org/wiki/Caesium /api/v1/variablename/cesium/ -537 Cesium, dissolved Dissolved Cesium (Cs) /api/v1/variablename/cesiumDissolved/ -538 Cesium, total Total Cesium (Cs) /api/v1/variablename/cesiumTotal/ -539 Cesium-137 A radioactive isotope of cesium which is formed as a fission product by nuclear fission of uranium or plutonium. /api/v1/variablename/cesium_137/ -540 Chloride Chloride (Cl-) /api/v1/variablename/chloride/ -541 Chloride, dissolved Dissolved Chloride (Cl-) /api/v1/variablename/chlorideDissolved/ -542 Chloride, total Total Chloride (Cl-) /api/v1/variablename/chlorideTotal/ -543 Chlorine Chlorine (Cl2) /api/v1/variablename/chlorine/ -544 Chlorine, dissolved Dissolved Chlorine (Cl2) /api/v1/variablename/chlorineDissolved/ -545 Chlorobenzene Chlorobenzene (C6H5Cl) /api/v1/variablename/chlorobenzene/ -546 Chlorobenzilate Chlorobenzilate (C16H14Cl2O3) /api/v1/variablename/chlorobenzilate/ -547 Chloroethane Chloroethane (C2H5Cl) /api/v1/variablename/chloroethane/ -548 Chloroethene Chloroethene (C2H3Cl) /api/v1/variablename/chloroethene/ -549 Chloroform Chloroform (CHCl3), a haloform /api/v1/variablename/chloroform/ -550 Chloromethane Chloromethane (CH3Cl) /api/v1/variablename/chloromethane/ -554 Chlorophyll (a+b+c) Chlorophyll (a+b+c) /api/v1/variablename/chlorophyll_a_b_c/ -552 Chlorophyll a Chlorophyll a /api/v1/variablename/chlorophyll_a/ -553 Chlorophyll a allomer The phytoplankton pigment Chlorophyll a allomer /api/v1/variablename/chlorophyll_a_Allomer/ -555 Chlorophyll a, corrected for pheophytin Chlorphyll a corrected for pheophytin /api/v1/variablename/chlorophyll_a_CorrectedForPheophytin/ -556 Chlorophyll a, uncorrected for pheophytin Chlorophyll a uncorrected for pheophytin /api/v1/variablename/chlorophyll_a_UncorrectedForPheophytin/ -557 Chlorophyll b Chlorophyll b /api/v1/variablename/chlorophyll_b/ -558 Chlorophyll c Chlorophyll c /api/v1/variablename/chlorophyll_c/ -559 Chlorophyll c1 and c2 Chlorophyll c1 and c2 /api/v1/variablename/chlorophyll_c1_And_c2/ -551 Chlorophyll fluorescence Chlorophyll Fluorescence /api/v1/variablename/chlorophyllFluorescence/ -1586 Chromium Chromium is a chemical element with symbol Cr and atomic number 24. It is the first element in group 6. It is a steely-grey, lustrous, hard and brittle transition metal. Chromium boasts a high usage rate as a metal that is able to be highly polished while resisting tarnishing. Chromium is also the main component of stainless steel, a popular steel alloy due to its uncommonly high specular reflection. Simple polished chromium reflects almost 70% of the visible spectrum, with almost 90% of infrared light waves being reflected. The name of the element is derived from the Greek word χρῶμα, chrōma, meaning color, because many chromium compounds are intensely colored. https://en.wikipedia.org/wiki/Chromium /api/v1/variablename/chromium/ -564 Chromium (III) Trivalent Chromium /api/v1/variablename/chromium_III/ -565 Chromium (VI) Hexavalent Chromium /api/v1/variablename/chromium_VI/ -566 Chromium (VI), dissolved Dissolved Hexavalent Chromium /api/v1/variablename/chromium_VI_Dissolved/ -560 Chromium, dissolved Dissolved Chromium /api/v1/variablename/chromiumDissolved/ -561 Chromium, distribution coefficient Ratio of concentrations of chromium in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/chromiumDistributionCoefficient/ -562 Chromium, particulate Particulate chromium (Cr) in suspension /api/v1/variablename/chromiumParticulate/ -563 Chromium, total Total chromium (Cr). Total indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/chromiumTotal/ -567 Chrysene Chrysene (C18H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/chrysene/ -1588 Circumference In geometry, the circumference (from Latin circumferens, meaning "carrying around") of a circle is the (linear) distance around it. That is, the circumference would be the length of the circle if it were opened up and straightened out to a line segment. Since a circle is the edge (boundary) of a disk, circumference is a special case of perimeter. The perimeter is the length around any closed figure and is the term used for most figures excepting the circle and some circular-like figures such as ellipses. Informally, "circumference" may also refer to the edge itself rather than to the length of the edge. https://en.wikipedia.org/wiki/Circumference /api/v1/variablename/circumference/ -568 cis-1,2-Dichloroethene cis-1,2-Dichloroethene (C2H2Cl2) /api/v1/variablename/cis_1_2_Dichloroethene/ -569 cis-1,3-Dichloropropene cis-1,3-Dichloropropene (C3H4Cl2) /api/v1/variablename/cis_1_3_Dichloropropene/ -570 Clay USDA particle size distribution category. Less then 0.002 mm diameter fine earth particles. \n /api/v1/variablename/Clay/ -1589 Clinoptilolite Clinoptilolite is a natural zeolite comprising a microporous arrangement of silica and alumina tetrahedra. It has the complex formula: (Na,K,Ca)2-3Al3(Al,Si)2Si13O36·12H2O. https://en.wikipedia.org/wiki/Clinoptilolite /api/v1/variablename/clinoptilolite/ -1590 Cloud cover Cloud cover (also known as cloudiness, cloudage, or cloud amount) refers to the fraction of the sky obscured by clouds when observed from a particular location. https://en.wikipedia.org/wiki/Cloud_cover /api/v1/variablename/cloudCover/ -1591 Cobalt Cobalt is a chemical element with symbol Co and atomic number 27. Like nickel, cobalt is found in the Earth's crust only in chemically combined form, save for small deposits found in alloys of natural meteoric iron. The free element, produced by reductive smelting, is a hard, lustrous, silver-gray metal. https://en.wikipedia.org/wiki/Cobalt /api/v1/variablename/cobalt/ -571 Cobalt, dissolved Dissolved Cobalt (Co) /api/v1/variablename/cobaltDissolved/ -572 Cobalt, total Total Cobalt (Co) /api/v1/variablename/cobaltTotal/ -573 Cobalt-60 A synthetic radioactive isotope of cobalt with a half-life of 5.27 years. /api/v1/variablename/cobalt_60/ -574 COD Chemical oxygen demand /api/v1/variablename/COD/ -575 Coliform, fecal Fecal Coliform /api/v1/variablename/coliformFecal/ -576 Coliform, total Total Coliform /api/v1/variablename/coliformTotal/ -577 Color Color in quantified in color units /api/v1/variablename/color/ -578 Colored dissolved organic matter The concentration of colored dissolved organic matter (humic substances) /api/v1/variablename/coloredDissolvedOrganicMatter/ -579 Container number The identifying number for a water sampler container. /api/v1/variablename/containerNumber/ -1592 Copper Copper is a chemical element with symbol Cu and atomic number 29. It is a soft, malleable, and ductile metal with very high thermal and electrical conductivity. A freshly exposed surface of pure copper has a pinkish-orange color. Copper is used as a conductor of heat and electricity, as a building material, and as a constituent of various metal alloys, such as sterling silver used in jewelry, cupronickel used to make marine hardware and coins, and constantan used in strain gauges and thermocouples for temperature measurement. https://en.wikipedia.org/wiki/Copper /api/v1/variablename/copper/ -580 Copper, dissolved Dissolved Copper (Cu) /api/v1/variablename/copperDissolved/ -581 Copper, distribution coefficient Ratio of concentrations of copper in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/copperDistributionCoefficient/ -582 Copper, particulate Particulate copper (Cu) in suspension /api/v1/variablename/copperParticulate/ -583 Copper, total Total copper (Cu). "Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/copperTotal/ -1561 Count, areal Counts per area https://www.nationalgeographic.org/encyclopedia/density/ /api/v1/variablename/countAreal/ -584 Counter The total number of events within the measurement period /api/v1/variablename/counter/ -1593 Cristobalite The mineral cristobalite is a high-temperature polymorph of silica, meaning that it has the same chemical formula as quartz, SiO2, but a distinct crystal structure. https://en.wikipedia.org/wiki/Cristobalite /api/v1/variablename/cristobalite/ -585 Cryptophytes The chlorophyll a concentration contributed by cryptophytes /api/v1/variablename/cryptophytes/ -1595 Curvature Curvature of a DEM measures the shape or curvature of the slope. A part of a surface can be concave or convex; you can tell that by looking at the curvature value. The curvature is calculated by computing the second derivative of the surface. http://desktop.arcgis.com/en/arcmap/10.3/manage-data/raster-and-images/curvature-function.htm /api/v1/variablename/curvature/ -586 Cuscuta spp. coverage Areal coverage of the plant Cuscuta spp. /api/v1/variablename/cuscutaSppCoverage/ -587 Cyanide Cyanide (CN) /api/v1/variablename/cyanide/ -588 Cyclohexane Cyclohexane (C6H6Cl6) /api/v1/variablename/cyclohexane/ -589 Cytochrome P450, family 1, subfamily A, polypeptide 1, delta cycle threshold Delta cycle threshold for Cytochrome P450, family 1, subfamily A, polypeptide 1 (cyp1a1). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for cyp1a1 is the difference between the cycle threshold (Ct) of cyp1a1 gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin). /api/v1/variablename/cytochromeP450Family1SubfamilyAPolypeptide1DeltaCycleThreshold/ -590 Cytosolic protein The total protein concentration within the cytosolic fraction of cells. The cytosol refers to the intracellular fluid or cytoplasmic matrix of a eukaryotic cell. /api/v1/variablename/cytosolicProtein/ -628 d-Limonene d-Limonene (C10H16) /api/v1/variablename/d_Limonene/ -591 Data shuttle attached A categorical variable marking the attachment of a coupler or data shuttle to a logger. This is used for quality control. /api/v1/variablename/dataShuttleAttached/ -679 Hardness, non-carbonate Non-carbonate hardness /api/v1/variablename/hardnessNonCarbonate/ -592 Data shuttle detached A categorical variable marking the detatchment of a coupler or data shuttle to a logger. This is used for quality control. /api/v1/variablename/dataShuttleDetached/ -593 delta-13C of C2H6 Isotope 13C of ethane /api/v1/variablename/delta_13COfC2H6/ -594 delta-13C of C3H8 Isotope 13C of propane /api/v1/variablename/delta_13COfC3H8/ -595 delta-13C of C4H10 Isotope 13C of butane /api/v1/variablename/delta_13COfC4H10/ -596 delta-13C of CH4 Isotope 13C of methane /api/v1/variablename/delta_13COfCH4/ -597 delta-13C of CO2 Isotope 13C of carbon dioxide /api/v1/variablename/delta_13COfCO2/ -598 delta-13C of DIC Isotope 13C of dissolved inorganic carbon (DIC) /api/v1/variablename/delta_13COfDIC/ -599 delta-18O of H2O Isotope 18O of water /api/v1/variablename/delta_18OOfH2O/ -600 delta-D of CH4 hydrogen isotopes of methane /api/v1/variablename/delta_DOfCH4/ -601 delta-D of H2O hydrogen isotopes of water /api/v1/variablename/delta_DOfH2O/ -602 Density Density /api/v1/variablename/density/ -1596 Depth The perpendicular measurement downward from a surface https://www.merriam-webster.com/dictionary/depth /api/v1/variablename/depth/ -1682 Depth, snow Depth of snow https://www.merriam-webster.com/dictionary/depth /api/v1/variablename/depthSnow/ -1688 Depth, soil Depth of soil https://en.wikipedia.org/wiki/Silicon /api/v1/variablename/soilDepth/ -1712 Depth, unsaturated zone Depth of the Unsaturated zone. The vadose zone, also termed the unsaturated zone, is the part of Earth between the land surface and the top of the phreatic zone, the position at which the groundwater (the water in the soil's pores) is at atmospheric pressure ("vadose" is from the Latin for "shallow"). Hence, the vadose zone extends from the top of the ground surface to the water table. https://en.wikipedia.org/wiki/Vadose_zone /api/v1/variablename/depthUnsaturatedZone/ -603 Deuterium Deuterium (2H), Delta D /api/v1/variablename/deuterium/ -623 Di-n-butylphthalate Di-n-butylphthalate (C16H22O4) /api/v1/variablename/di_n_Butylphthalate/ -624 Di-n-octyl phthalate Di-n-octyl phthalate (C24H38O4) /api/v1/variablename/di_n_OctylPhthalate/ -604 Diadinoxanthin The phytoplankton pigment Diadinoxanthin /api/v1/variablename/diadinoxanthin/ -605 Diallate (cis or trans) Diallate (cis or trans) (C10H17Cl2NOS) /api/v1/variablename/diallate_CisOrTrans/ -1597 Diameter A diameter of a circle is any straight line segment that passes through the center of the circle and whose endpoints lie on the circle. It can also be defined as the longest chord of the circle. Both definitions are also valid for the diameter of a sphere. In more modern usage, the length of a diameter is also called the diameter. In this sense one speaks of the diameter rather than a diameter (which refers to the line itself), because all diameters of a circle or sphere have the same length, this being twice the radius r. https://en.wikipedia.org/wiki/Diameter /api/v1/variablename/diameter/ -1598 Diameter at breast height (DBH) Diameter at breast height, or DBH, is the standard for measuring trees. DBH refers to the tree diameter measured at 4.5 feet above the ground. https://en.wikipedia.org/wiki/Diameter_at_breast_height /api/v1/variablename/diameterAtBreastHeight/ -606 Diatoxanthin The phytoplankton pigment Diatoxanthin /api/v1/variablename/diatoxanthin/ -609 Dibenz(a,h)anthracene Dibenz(a,h)anthracene (C22H14), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/dibenz_a_h_anthracene/ -607 Dibenzofuran Dibenzofuran (C12H8O) /api/v1/variablename/dibenzofuran/ -608 Dibenzothiophene Dibenzothiophene (C12H8S), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/dibenzothiophene/ -610 Dibromochloromethane Dibromochloromethane (CHBr2Cl) /api/v1/variablename/dibromochloromethane/ -611 Dieldrin Dieldrin (C12H8Cl6O) /api/v1/variablename/dieldrin/ -1599 Dielectric constant The relative permittivity of a material is its (absolute) permittivity expressed as a ratio relative to the permittivity of vacuum. Permittivity is a material property that affects the Coulomb force between two point charges in the material. Relative permittivity is the factor by which the electric field between the charges is decreased relative to vacuum. Likewise, relative permittivity is the ratio of the capacitance of a capacitor using that material as a dielectric, compared with a similar capacitor that has vacuum as its dielectric. Relative permittivity is also commonly known as dielectric constant, a term deprecated in engineering as well as in chemistry. https://en.wikipedia.org/wiki/Relative_permittivity /api/v1/variablename/dielectricConstant/ -613 Diethyl phthalate Diethyl phthalate (C12H14O4) /api/v1/variablename/diethylPhthalate/ -612 Diethylene glycol Diethylene glycol (C4H10O3) /api/v1/variablename/diethyleneGlycol/ -1715 Diffraction, X-ray (XRD) X-ray crystallography (XRC) is a technique used for determining the atomic and molecular structure of a crystal, in which the crystalline structure causes a beam of incident X-rays to diffract into many specific directions. https://en.wikipedia.org/wiki/X-ray_crystallography#X-ray_diffraction /api/v1/variablename/diffractionXRay/ -614 Diisopropyl Ether Diisopropyl Ether (C6H14O) /api/v1/variablename/diisopropylEther/ -616 Dimethyl Phthalate Dimethyl Phthalate (C10H10O4) /api/v1/variablename/dimethylPhthalate/ -615 Dimethylphenanthrene Dimethylphenanthrene (C16H14) /api/v1/variablename/dimethylphenanthrene/ -617 Dinoflagellates The chlorophyll a concentration contributed by Dinoflagellates /api/v1/variablename/dinoflagellates/ -618 Dinoseb Dinoseb (C10H12N2O5) /api/v1/variablename/dinoseb/ -619 Discharge Discharge /api/v1/variablename/discharge/ -620 Distance Distance measured from a sensor to a target object such as the surface of a water body or snow surface. /api/v1/variablename/distance/ -621 Distichlis spicata Coverage Areal coverage of the plant Distichlis spicata /api/v1/variablename/distichlisSpicataCoverage/ -622 Disulfoton Disulfoton (C8H19O2PS3) /api/v1/variablename/disulfoton/ -625 DNA damage, olive tail moment In a single cell gel electrophoresis assay (comet assay), olive tail moment is the product of the percentage of DNA in the tail and the distance between the intesity centroids of the head and tail along the x-axis (Olive, et al., 1990) /api/v1/variablename/DNADamageOliveDailMoment/ -626 DNA damage, percent tail DNA In a single cell gel electrophoresis assay (comet assay), percent tail DNA is the ratio of fluorescent intensity of the tail over the total fluorescent intensity of the head (nuclear core) and tail multiplied by 100. /api/v1/variablename/DNADamagePercentTailDNA/ -680 Hardness, total Total hardness /api/v1/variablename/hardnessTotal/ -627 DNA damage, tail length In a single cell gel electrophoresis assay (comet assay), tail length is the distance of DNA migration from the body of the nuclear core /api/v1/variablename/DNADamageTailLength/ -1600 Dysprosium Dysprosium is a chemical element with symbol Dy and atomic number 66. It is a rare earth element with a metallic silver luster. Dysprosium is never found in nature as a free element, though it is found in various minerals, such as xenotime. Naturally occurring dysprosium is composed of seven isotopes, the most abundant of which is 164Dy. https://en.wikipedia.org/wiki/Dysprosium /api/v1/variablename/dysprosium/ -1601 Dysprosium, dissolved Dissolved dysprosium (Dy). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Dysprosium /api/v1/variablename/dysprosiumDissolved/ -654 E-coli Escherichia coli /api/v1/variablename/e_coli/ -1602 Effective energy and mass transfer (EEMT) Effective energy and mass transfer (EEMT) couples energy and mass flux to the subsurface in the form of effective precipitation and net primary production in a common energy unit. https://doi.org/10.5194/hess-16-725-2012 /api/v1/variablename/effectiveEnergyAndMassTransfer/ -630 Electric Current A flow of electric charge /api/v1/variablename/electricCurrent/ -631 Electric Energy Electric Energy /api/v1/variablename/electricEnergy/ -632 Electric Power Electric Power /api/v1/variablename/electricPower/ -629 Electrical conductivity Electrical conductivity /api/v1/variablename/electricalConductivity/ -633 End of file A categorical variable marking the end of a data file. This is used for quality control. /api/v1/variablename/endOfFile/ -636 Endosulfan I (alpha) Endosulfan I (alpha) (C9H6Cl6O3S) /api/v1/variablename/endosulfan_I_Alpha/ -635 Endosulfan II (beta) Endosulfan II (beta) (C9H6Cl6O3S) /api/v1/variablename/endosulfan_II_Beta/ -634 Endosulfan Sulfate Endosulfan Sulfate (C9H6Cl6O4S) /api/v1/variablename/endosulfanSulfate/ -637 Endrin Endrin (C12H8Cl6O) /api/v1/variablename/endrin/ -638 Endrin aldehyde Endrin aldehyde (C12H8Cl6O) /api/v1/variablename/endrinAldehyde/ -639 Endrin Ketone Endrin Ketone (C12H9Cl5O) /api/v1/variablename/endrinKetone/ -640 Enterococci Enterococcal bacteria /api/v1/variablename/enterococci/ -1605 Erbium Erbium is a chemical element with symbol Er and atomic number 68. A silvery-white solid metal when artificially isolated, natural erbium is always found in chemical combination with other elements. It is a lanthanide, a rare earth element, originally found in the gadolinite mine in Ytterby in Sweden, from which it got its name. https://en.wikipedia.org/wiki/Erbium /api/v1/variablename/erbium/ -1606 Erbium, dissolved Dissolved Erbium (Er). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Erbium /api/v1/variablename/erbiumDissolved/ -1607 Erosion rate In earth science, erosion is the action of surface processes (such as water flow or wind) that removes soil, rock, or dissolved material from one location on the Earth's crust, and then transports it to another location (not to be confused with weathering which involves no movement). /api/v1/variablename/erosionRate/ -641 Ethane Ethane /api/v1/variablename/ethane/ -642 Ethane, dissolved Dissolved Ethane (C2H6) /api/v1/variablename/ethaneDissolved/ -643 Ethanol Ethanol (C2H6O) /api/v1/variablename/ethanol/ -644 Ethoxyresorufin O-deethylase, activity Ethoxyresorufin O-deethylase (EROD) activity /api/v1/variablename/ethoxyresorufin_O_DeethylaseActivity/ -649 Ethyl tert-Butyl Ether Ethyl tert-Butyl Ether (C6H14O) /api/v1/variablename/ethylTert_ButylEther/ -645 Ethylbenzene Ethylbenzene (C8H10) /api/v1/variablename/ethylbenzene/ -646 Ethylene Ethylene (C2H4) /api/v1/variablename/ethylene/ -648 Ethylene glycol Ethlene Glycol (C2H4(OH)2) /api/v1/variablename/ethyleneGlycol/ -647 Ethylene, dissolved Dissolved ethylene /api/v1/variablename/ethyleneDissolved/ -650 Ethyne Ethyne (C2H2) /api/v1/variablename/ethyne/ -1608 Europium Europium is a chemical element with symbol Eu and atomic number 63. It was isolated in 1901 and is named after the continent of Europe. It is a moderately hard, silvery metal which readily oxidizes in air and water. https://en.wikipedia.org/wiki/Europium /api/v1/variablename/europium/ -1609 Europium, dissolved Dissolved Europium (Eu). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Europium /api/v1/variablename/europiumDissolved/ -651 Evaporation Evaporation /api/v1/variablename/evaporation/ -652 Evapotranspiration Evapotranspiration /api/v1/variablename/evapotranspiration/ -1610 Evapotranspiration (ET) Evapotranspiration (ET) is the sum of evaporation and plant transpiration from the Earth's land and ocean surface to the atmosphere. https://en.wikipedia.org/wiki/Evapotranspiration /api/v1/variablename/evapotranspiration/ -653 Evapotranspiration, potential The amount of water that could be evaporated and transpired if there was sufficient water available. /api/v1/variablename/evapotranspirationPotential/ -1611 Extracellular enzyme activity Extracellular enzymes or exoenzymes are synthesized inside the cell and then secreted outside the cell, where their function is to break down complex macromolecules into smaller units to be taken up by the cell for growth and assimilation. https://en.wikipedia.org/wiki/Fungal_extracellular_enzyme_activity /api/v1/variablename/extracellularEnzymeActivity/ -655 Fish detections The number of fish identified by the detection equipment /api/v1/variablename/fishDetections/ -656 Flash memory error count A counter which counts the number of datalogger flash memory errors /api/v1/variablename/flashMemoryErrorCount/ -657 Fluoranthene Fluoranthene (C16H10), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/fluoranthene/ -658 Fluorene Fluorene (C13H10), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/fluorene/ -1612 Fluorescence index Fluorescence index for measuring fluorescent dissolved organic matter (FDOM). Ratio of emission intensity at 470nm to intensity at 520nm at excitation 370nm. https://aslopubs.onlinelibrary.wiley.com/doi/abs/10.4319/lo.2001.46.1.0038 /api/v1/variablename/fluorescenceIndex/ -1613 Fluorescence, dissolved organic carbon (DOC) Fluorescence of dissolved organic carbon (DOC). DOC is an element specific fraction of dissolved organic matter (DOM). https://aslopubs.onlinelibrary.wiley.com/doi/abs/10.4319/lo.2001.46.1.0038 /api/v1/variablename/fluorescenceDissolvedOrganicCarbon/ -681 Heat index The combination effect of heat and humidity on the temperature felt by people. /api/v1/variablename/heatIndex/ -1614 Fluorescence, dissolved organic matter (DOM) Fluorescence of dissolved organic matter (DOM). https://aslopubs.onlinelibrary.wiley.com/doi/abs/10.4319/lo.2001.46.1.0039 /api/v1/variablename/fluorescenceDissolvedOrganicMatter/ -1716 Fluorescence, X-ray (XRF) X-ray fluorescence (XRF) is the emission of characteristic "secondary" (or fluorescent) X-rays from a material that has been excited by bombarding with high-energy X-rays or gamma rays. https://en.wikipedia.org/wiki/X-ray_fluorescence /api/v1/variablename/fluorescenceXRay/ -659 Fluoride Fluoride (F-) /api/v1/variablename/fluoride/ -660 Fluoride, dissolved Dissolved Fluoride (F-) /api/v1/variablename/fluorideDissolved/ -661 Fluorine Fluorine (F2) /api/v1/variablename/fluorine/ -662 Fluorine, dissolved Dissolved Fluorine (F2) /api/v1/variablename/fluorineDissolved/ -663 Formate Formate /api/v1/variablename/formate/ -664 Formic acid Formic acid (CH2O2) /api/v1/variablename/formicAcid/ -665 Frequency of Rotation Number of rotations within a time period /api/v1/variablename/frequencyOfRotation/ -666 Friction velocity Friction velocity /api/v1/variablename/frictionVelocity/ -1615 Gadolinium Gadolinium is a chemical element with symbol Gd and atomic number 64. Gadolinium is a silvery-white, malleable, and ductile rare earth metal. It is found in nature only in oxidized form, and even when separated, it usually has impurities of the other rare earths. https://en.wikipedia.org/wiki/Gadolinium /api/v1/variablename/gadolinium/ -1616 Gadolinium, dissolved Dissolved Gadolinium (Gd). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Gadolinium /api/v1/variablename/gadoliniumDissolved/ -667 Gage height Water level with regard to an arbitrary gage datum (also see Water depth for comparison) /api/v1/variablename/gageHeight/ -1617 Gallium Gallium is a chemical element with symbol Ga and atomic number 31. It is in group 13 of the periodic table, and thus has similarities to the other metals of the group, aluminium, indium, and thallium. https://en.wikipedia.org/wiki/Gallium /api/v1/variablename/gallium/ -1618 Gamma counts The radioactivity of rocks has been used for many years to help derive lithologies. Natural occurring radioactive materials (NORM) include the elements uranium, thorium, potassium, radium, and radon, along with the minerals that contain them. There is usually no fundamental connection between different rock types and measured gamma ray intensity, but there exists a strong general correlation between the radioactive isotope content and mineralogy. Logging tools have been developed to read the gamma rays emitted by these elements and interpret lithology from the information collected. https://petrowiki.org/Gamma_ray_logs /api/v1/variablename/gammaCounts/ -1619 Geologic unit Geologic units consists primarily of identifying physiographic units and determining the rock lithology or coarse stratigraphy of exposed units. https://www.nrcan.gc.ca/node/9329 /api/v1/variablename/geologicUnit/ -1620 Germanium Germanium is a chemical element with symbol Ge and atomic number 32. It is a lustrous, hard, grayish-white metalloid in the carbon group, chemically similar to its group neighbors tin and silicon. Pure germanium is a semiconductor with an appearance similar to elemental silicon. Like silicon, germanium naturally reacts and forms complexes with oxygen in nature. https://en.wikipedia.org/wiki/Germanium /api/v1/variablename/germanium/ -1621 Germanium, dissolved Dissolved Germanium (Ge). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Germanium /api/v1/variablename/germaniumDissolved/ -1622 Gibbsite Gibbsite, Al(OH)3, is one of the mineral forms of aluminium hydroxide. It is often designated as γ-Al(OH)3 (but sometimes as α-Al(OH)3.[1]). It is also sometimes called hydrargillite (or hydrargyllite). https://en.wikipedia.org/wiki/Gibbsite /api/v1/variablename/gibbsite/ -668 Global Radiation Solar radiation, direct and diffuse, received from a solid angle of 2p steradians on a horizontal surface. Source: World Meteorological Organization, Meteoterm /api/v1/variablename/globalRadiation/ -1623 Glucosidase Glucosidases are glycoside hydrolase enzymes categorized under the EC number 3.2.1. https://en.wikipedia.org/wiki/Glucosidases /api/v1/variablename/glucosidase/ -669 Glutaraldehyde Glutaraldehyde (C5H8O2) /api/v1/variablename/glutaraldehyde/ -670 Glutathione S-transferase, activity Glutathione S-transferase (GST) activity /api/v1/variablename/glutathione_S_TransferaseActivity/ -671 Glutathione S-transferase, delta cycle threshold Delta cycle threshold for glutathione S-transferase (gst). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for gst is the difference between the cycle threshold (Ct) of gst gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin). /api/v1/variablename/glutathione_S_TransferaseDeltaCycleThreshold/ -1624 Goethite Goethite, FeO(OH), is an iron-bearing hydroxide mineral of the diaspore group. It is found in soil and other low-temperature environments. https://en.wikipedia.org/wiki/Goethite /api/v1/variablename/goethite/ -1625 Grain size Grain size (or particle size) is the diameter of individual grains of sediment, or the lithified particles in clastic rocks. The term may also be applied to other granular materials. https://en.wikipedia.org/wiki/Grain_size /api/v1/variablename/grainSize/ -672 Gross alpha radionuclides Gross Alpha Radionuclides /api/v1/variablename/grossAlphaRadionuclides/ -673 Gross beta radionuclides Gross Beta Radionuclides /api/v1/variablename/grossBetaRadionuclides/ -674 Ground heat flux Ground heat flux /api/v1/variablename/groundHeatFlux/ -675 Groundwater Depth Groundwater depth is the distance between the water surface and the ground surface at a specific location specified by the site location and offset. /api/v1/variablename/groundwaterDepth/ -1627 Hafnium Hafnium is a chemical element with symbol Hf and atomic number 72. A lustrous, silvery gray, tetravalent transition metal, hafnium chemically resembles zirconium and is found in many zirconium minerals. https://en.wikipedia.org/wiki/Hafnium /api/v1/variablename/hafnium/ -1628 Hail Hail is a form of solid precipitation. It is distinct from ice pellets (American English "sleet"), though the two are often confused. It consists of balls or irregular lumps of ice, each of which is called a hailstone. https://en.wikipedia.org/wiki/Hail /api/v1/variablename/hail/ -1629 Halloysite Halloysite is an aluminosilicate clay mineral with the empirical formula Al2Si2O5(OH)4. Its main constituents are aluminium (20.90%), silicon (21.76%) and hydrogen (1.56%). https://en.wikipedia.org/wiki/Halloysite /api/v1/variablename/halloysite/ -676 Hardness, Calcium Hardness of calcium /api/v1/variablename/hardnessCalcium/ -1630 Height Height is measure of vertical distance, either vertical extent or vertical position https://en.wikipedia.org/wiki/Height /api/v1/variablename/height/ -682 height, above sea floor Vertical distance from the sea floor to a point. /api/v1/variablename/heightAboveSeaFloor/ -683 Helium Helium /api/v1/variablename/helium/ -684 Helium, dissolved Dissolved Helium (He) /api/v1/variablename/heliumDissolved/ -685 Heptachlor Heptachlor (C10H5Cl7) /api/v1/variablename/heptachlor/ -686 Heptachlor epoxide Heptachlor epoxide (C10H5Cl7O) /api/v1/variablename/heptachlorEpoxide/ -687 Hexachlorobenzene Hexachlorobenzene (C6Cl6) /api/v1/variablename/hexachlorobenzene/ -688 Hexachlorobutadiene Hexachlorobutadiene (C4Cl6) /api/v1/variablename/hexachlorobutadiene/ -689 Hexachlorocyclopentadiene Hexachlorocyclopentadiene (C5Cl6) /api/v1/variablename/hexachlorocyclopentadiene/ -690 Hexachloroethane Hexachloroethane (C2Cl6) /api/v1/variablename/hexachloroethane/ -691 Hexane Hexane /api/v1/variablename/hexane/ -1631 Holmium Holmium is a chemical element with symbol Ho and atomic number 67. Part of the lanthanide series, holmium is a rare-earth element. Holmium was discovered by Swedish chemist Per Theodor Cleve. https://en.wikipedia.org/wiki/Holmium /api/v1/variablename/holmium/ -1632 Holmium, dissolved Dissolved Holmium (Ho). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Holmium /api/v1/variablename/holmiumDissolved/ -693 Host connected A categorical variable marking the attachment of a host computer to a logger. This is used for quality control. /api/v1/variablename/hostConnected/ -1633 Humification index Humification index. Hummification is the processes by which organic matter decomposes to form humus. In humus the initial structures or shapes can no longer be recognized. See also humus. http://sis.agr.gc.ca/cansis/glossary/h/index.html /api/v1/variablename/humificationIndex/ -1634 Hydraulic conductivity Hydraulic conductivity, symbolically represented as K, is a property of vascular plants, soils and rocks, that describes the ease with which a fluid (usually water) can move through pore spaces or fractures. It depends on the intrinsic permeability of the material, the degree of saturation, and on the density and viscosity of the fluid. https://en.wikipedia.org/wiki/Hydraulic_conductivity /api/v1/variablename/hydraulicConductivity/ -694 Hydrogen Hydrogen /api/v1/variablename/hydrogen/ -696 Hydrogen sulfide Hydrogen sulfide (H2S) /api/v1/variablename/hydrogenSulfide/ -695 Hydrogen, dissolved Dissolved Hydrogen /api/v1/variablename/hydrogenDissolved/ -697 Hydrogen-2, stable isotope ratio delta Difference in the 2H:1H ratio between the sample and standard /api/v1/variablename/hydrogen_2_StableIsotopeRatioDelta/ -698 Imaginary dielectric constant Soil reponse of a reflected standing electromagnetic wave of a particular frequency which is related to the dissipation (or loss) of energy within the medium. This is the imaginary portion of the complex dielectric constant. /api/v1/variablename/imaginaryDielectricConstant/ -699 Indeno(1,2,3-cd)pyrene Indeno(1,2,3-cd)pyrene (C22H12) /api/v1/variablename/indeno_1_2_3_cd_Pyrene/ -700 Indicator Binary status to indicate the status of an instrument or other piece of equipment. /api/v1/variablename/indicator/ -1635 Indium Indium is a chemical element with symbol In and atomic number 49. It is a post-transition metal that makes up 0.21 parts per million of the Earth's crust. Very soft and malleable, indium has a melting point higher than sodium and gallium, but lower than lithium and tin. https://en.wikipedia.org/wiki/Indium /api/v1/variablename/indium/ -701 Instrument status code Code value recorded by instrument indicating some information regarding the status of the instrument /api/v1/variablename/instrumentStatusCode/ -702 Intercept The point at which one of the variables in a function equals 0. /api/v1/variablename/intercept/ -703 Iodide, dissolved Dissolved Iodide (I-) /api/v1/variablename/iodideDissolved/ -1521 Iron Iron is a chemical element with symbol Fe (from Latin: ferrum) and atomic number 26. It is a metal in the first transition series. https://en.wikipedia.org/wiki/Iron /api/v1/variablename/Iron/ -708 Iron sulfide Iron sulfide (FeS2) /api/v1/variablename/ironSulfide/ -704 Iron, dissolved Dissolved Iron (Fe) /api/v1/variablename/ironDissolved/ -705 Iron, ferric Ferric Iron (Fe+3) /api/v1/variablename/ironFerric/ -706 Iron, ferrous Ferrous Iron (Fe+2) /api/v1/variablename/ironFerrous/ -707 Iron, particulate Particulate iron (Fe) in suspension /api/v1/variablename/ironParticulate/ -709 Iron, total Total Iron (Fe) /api/v1/variablename/ironTotal/ -710 Isobutane Isobutane /api/v1/variablename/isobutane/ -711 Isobutyric acid Isobutyric acid (C4H8O2) /api/v1/variablename/isobutyricAcid/ -712 Isopentane Isopentane /api/v1/variablename/isopentane/ -713 Isophorone Isophorone (C9H14O) /api/v1/variablename/isophorone/ -714 Isopropyl alcohol Isopropyl alcohol (C3H8O) /api/v1/variablename/isopropylAlcohol/ -715 Isopropylbenzene Isopropylbenzene (C9H12) /api/v1/variablename/isopropylbenzene/ -716 Iva frutescens coverage Areal coverage of the plant Iva frutescens /api/v1/variablename/ivaFrutescenscoverage/ -717 Lactic Acid Lactic Acid (C3H6O3) /api/v1/variablename/lacticAcid/ -1636 Land classification Geographical land classification- genetically homogeneous territorial unit within natural boundaries with a certain structure and a certain character of interrelationships of considered components https://is.mendelu.cz/eknihovna/opory/zobraz_cast.pl?cast=59061 /api/v1/variablename/landClassification/ -1637 Lanthanum lanthanum is a chemical element with symbol La and atomic number 57. It is a soft, ductile, silvery-white metal that tarnishes rapidly when exposed to air and is soft enough to be cut with a knife. https://en.wikipedia.org/wiki/Lanthanum /api/v1/variablename/lanthanum/ -1638 Lanthanum, dissolved Dissolved Lanthanum (La). "Dissolved " indicates a the measurement was made on a filtered sample. /api/v1/variablename/lanthanumDissolved/ -718 Latent heat flux Latent Heat Flux /api/v1/variablename/latentHeatFlux/ -719 Latitude Latitude as a variable measurement or observation (Spatial reference to be designated in methods). This is distinct from the latitude of a site which is a site attribute. /api/v1/variablename/latitude/ -800 n-alkane, short-chain short-chain alkanes, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified) /api/v1/variablename/n_AlkaneShortChain/ -1639 Lead Lead is a chemical element with symbol Pb (from the Latin plumbum) and atomic number 82. It is a heavy metal that is denser than most common materials. Lead is soft and malleable, and has a relatively low melting point. When freshly cut, lead is silvery with a hint of blue; it tarnishes to a dull gray color when exposed to air. Lead has the highest atomic number of any stable element and three of its isotopes each conclude a major decay chain of heavier elements. https://en.wikipedia.org/wiki/Lead /api/v1/variablename/lead/ -720 Lead, dissolved Dissolved Lead (Pb). For chemical terms, dissolved indicates a filtered sample /api/v1/variablename/leadDissolved/ -721 Lead, distribution coefficient Ratio of concentrations of lead in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/leadDistributionCoefficient/ -722 Lead, particulate Particulate lead (Pb) in suspension /api/v1/variablename/leadParticulate/ -723 Lead, total Total Lead (Pb). For chemical terms, total indicates an unfiltered sample. /api/v1/variablename/leadTotal/ -1640 Lead-208 Stable isotope of lead. The term stable isotope has a meaning similar to stable nuclide, but is preferably used when speaking of nuclides of a specific element. Hence, the plural form stable isotopes usually refers to isotopes of the same element. The relative abundance of such stable isotopes can be measured experimentally (isotope analysis), yielding an isotope ratio that can be used as a research tool. https://en.wikipedia.org/wiki/Isotopes_of_lead https://en.wikipedia.org/wiki/Stable_isotope_ratio /api/v1/variablename/lead_208/ -1641 Leaf area index (LAI) Leaf area index (LAI) is a dimensionless quantity that characterizes plant canopies. It is defined as the one-sided green leaf area per unit ground surface area (LAI = leaf area / ground area, m2 / m2) in broadleaf canopies. https://en.wikipedia.org/wiki/Leaf_area_index /api/v1/variablename/leafAreaIndex/ -724 Leaf wetness The effect of moisture settling on the surface of a leaf as a result of either condensation or rainfall. /api/v1/variablename/leafWetness/ -1642 Length Length is a measure of distance. https://en.wikipedia.org/wiki/Length /api/v1/variablename/length/ -725 Light attenuation coefficient Light attenuation coefficient /api/v1/variablename/lightAttenuationCoefficient/ -726 Limonium nashii Coverage Areal coverage of the plant Limonium nashii /api/v1/variablename/limoniumNashiiCoverage/ -727 Lithium, dissolved Dissolved Lithium (Li). For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/lithiumDissolved/ -728 Lithium, total Total Lithium (Li). For chemical terms, total indicates an unfiltered sample. /api/v1/variablename/lithiumTotal/ -1666 Litter, plant Litterfall, plant litter, leaf litter, tree litter, soil litter, or duff, is dead plant material (such as leaves, bark, needles, twigs, and cladodes) that have fallen to the ground. https://en.wikipedia.org/wiki/Plant_litter /api/v1/variablename/litterPlant/ -729 Liver, mass Mass of the sample of liver tissue used for analyses /api/v1/variablename/liverMass/ -1697 Load, suspended The suspended load of a flow of fluid, such as a river, is the portion of its sediment uplifted by the fluid's flow in the process of sediment transportation. It is kept suspended by the fluid's turbulence. The suspended load generally consists of smaller particles, like clay, silt, and fine sands. https://en.wikipedia.org/wiki/Suspended_load /api/v1/variablename/loadSuspended/ -730 Logger stopped A categorical variable indicating that a logger was told to stop recording data. This is used for quality control. /api/v1/variablename/loggerStopped/ -731 Longitude Longitude as a variable measurement or observation (Spatial reference to be designated in methods). This is distinct from the longitude of a site which is a site attribute. /api/v1/variablename/longitude/ -1643 Loss on ignition Loss on ignition is a test used in inorganic analytical chemistry, particularly in the analysis of minerals. It consists of strongly heating ("igniting") a sample of the material at a specified temperature, allowing volatile substances to escape, until its mass ceases to change. https://en.wikipedia.org/wiki/Loss_on_ignition /api/v1/variablename/lossOnIgnition/ -732 Low battery count A counter of the number of times the battery voltage dropped below a minimum threshold /api/v1/variablename/lowBatteryCount/ -733 LSI Langelier Saturation Index is an indicator of the degree of saturation of water with respect to calcium carbonate /api/v1/variablename/LSI/ -734 Luminous Flux A measure of the total amount of visible light present /api/v1/variablename/luminousFlux/ -1644 Lutetium Lutetium is a chemical element with symbol Lu and atomic number 71. It is a silvery white metal, which resists corrosion in dry air, but not in moist air. Lutetium is the last element in the lanthanide series, and it is traditionally counted among the rare earths. https://en.wikipedia.org/wiki/Lutetium /api/v1/variablename/lutetium/ -1645 Lutetium, dissolved Dissolved Lutetium (Lu). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Lutetium /api/v1/variablename/lutetiumDissolved/ -735 Lycium carolinianum Coverage Areal coverage of the plant Lycium carolinianum /api/v1/variablename/lyciumCarolinianumCoverage/ -1522 Magnesium Magnesium is a chemical element with symbol Mg and atomic number 12. It is a shiny gray solid which bears a close physical resemblance to the other five elements in the second column (Group 2, or alkaline earth metals) of the periodic table: they each have the same electron configuration in their outer electron shell producing a similar crystal structure. https://en.wikipedia.org/wiki/Magnesium /api/v1/variablename/magnesium/ -736 Magnesium, dissolved Dissolved Magnesium (Mg) /api/v1/variablename/magnesiumDissolved/ -737 Magnesium, total Total Magnesium (Mg) /api/v1/variablename/magnesiumTotal/ -738 Malathion Butanedioic acid, [(dimethoxyphosphinothioyl)thio]-, diethyl ester (C10H19O6PS2) /api/v1/variablename/malathion/ -1523 Manganese Manganese is a chemical element with symbol Mn and atomic number 25. It is not found as a free element in nature; it is often found in combination with iron, and in many minerals. Manganese is a metal with important industrial metal alloy uses, particularly in stainless steels. https://en.wikipedia.org/wiki/Manganese /api/v1/variablename/manganese/ -739 Manganese, dissolved Dissolved Manganese (Mn) /api/v1/variablename/manganeseDissolved/ -740 Manganese, particulate Particulate manganese (Mn) in suspension /api/v1/variablename/manganeseParticulate/ -741 Manganese, total Total manganese (Mn). "Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/manganeseTotal/ -801 n-alkane, total Total alkane, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified) /api/v1/variablename/n_AlkaneTotal/ -742 Mass Mass is a property of a physical body. It is generally a measure of an object's resistance to changing its state of motion when a force is applied. https://en.wikipedia.org/wiki/Mass /api/v1/variablename/mass/ -1646 Melanovanadite melanovanadite a mineral Ca2V10O25 that is a complex oxide of calcium and vanadium https://www.merriam-webster.com/dictionary/melanovanadite /api/v1/variablename/melanovanadite/ -743 Mercury, dissolved Dissolved Mercury (Hg). For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/mercuryDissolved/ -744 Mercury, total Total Mercury (Hg). For chemical terms, total represents an unfiltered sample. /api/v1/variablename/mercuryTotal/ -745 Methane Methane (CH4) /api/v1/variablename/methane/ -746 Methane, dissolved Dissolved Methane (CH4) /api/v1/variablename/methaneDissolved/ -747 Methanol Methanol (CH3OH) /api/v1/variablename/methanol/ -748 Methoxychlor Methoxychlor (C16H15Cl3O2) /api/v1/variablename/methoxychlor/ -756 Methyl tert-butyl ether (MTBE) Methyl tert-butyl ether (MTBE) (C5H12O) /api/v1/variablename/methylTert_ButylEther_MTBE/ -749 Methylchrysene Methylchrysene (C19H14) /api/v1/variablename/methylchrysene/ -750 Methylene blue active substances Methylene Blue Active Substances (MBAS) /api/v1/variablename/methyleneBlueActiveSubstances/ -751 Methylene chloride (Dichloromethane) Methylene chloride (Dichloromethane) (CH2Cl2) /api/v1/variablename/methyleneChloride_Dichloromethane/ -752 Methylfluoranthene Methylfluoranthene (C17H12) /api/v1/variablename/methylfluoranthene/ -753 Methylfluorene Methylfluorene (C14H12) /api/v1/variablename/methylfluorene/ -754 Methylmercury Methylmercury (CH3Hg) /api/v1/variablename/methylmercury/ -755 Methylpyrene Methylpyrene (C17H12) /api/v1/variablename/methylpyrene/ -757 Mevinphos Mevinphos (C7H13O6P) /api/v1/variablename/mevinphos/ -1647 Mica The mica group of sheet silicate minerals includes several closely related materials having nearly perfect basal cleavage. All are monoclinic, with a tendency towards pseudohexagonal crystals, and are similar in chemical composition. https://en.wikipedia.org/wiki/Mica /api/v1/variablename/mica/ -1648 Michaelis constant The Michaelis constant is the substrate concentration at which the reaction rate is half of Vmax. Vmax represents the maximum rate achieved by the system, at saturating substrate concentration https://en.wikipedia.org/wiki/Michaelis%E2%80%93Menten_kinetics /api/v1/variablename/michaelisConstant/ -758 Microsomal protein The total protein concentration within the microsomal fraction of cells. Microsomes refer to vesicle-like artifacts reformed from pieces of endoplasmic reticulum when eukaryotic cells are broken up in a laboratory. /api/v1/variablename/microsomalProtein/ -759 Molbydenum, dissolved Dissolved Molbydenum (Mo). For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/molbydenumDissolved/ -1650 Molybdenum, dissolved Dissolved Molybdenum (Mo). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Molybdenum /api/v1/variablename/molybdenumDissolved/ -760 Molybdenum, total total Molybdenum (Mo). For chemical terms, total represents an unfiltered sample. /api/v1/variablename/molybdenumTotal/ -761 Momentum flux Momentum flux /api/v1/variablename/momentumFlux/ -762 Monanthochloe littoralis Coverage Areal coverage of the plant Monanthochloe littoralis /api/v1/variablename/monanthochloeLittoralisCoverage/ -763 N, albuminoid Albuminoid Nitrogen /api/v1/variablename/NAlbuminoid/ -802 n-alkane, C15 C15 alkane, normal (i.e. straight-chain) isomer, common name: n-Pentadecane, formula : C15H32 /api/v1/variablename/n_Alkane_C15/ -803 n-alkane, C16 C16 alkane, normal (i.e. straight-chain) isomer, common name: n-Hexadecane, formula: C16H34. Synonym: cetane /api/v1/variablename/n_Alkane_C16/ -804 n-alkane, C17 C17 alkane, normal (i.e. straight-chain) isomer, common name: n-Heptadecane, formula : C17H36 /api/v1/variablename/n_Alkane_C17/ -805 n-alkane, C18 C18 alkane, normal (i.e. straight-chain) isomer, common name: n-Octadecane, formula : C18H38 /api/v1/variablename/n_Alkane_C18/ -806 n-alkane, C19 C19 alkane, normal (i.e. straight-chain) isomer, common name: n-Nonadecane, formula : C19H40 /api/v1/variablename/n_Alkane_C19/ -807 n-alkane, C20 C20 alkane, normal (i.e. straight-chain) isomer, common name: n-Icosane, formula : C20H42. Synonyms: didecyl, eicosane. /api/v1/variablename/n_Alkane_C20/ -808 n-alkane, C21 C21 alkane, normal (i.e. straight-chain) isomer, common name: n-Henicosane, formula : C21H44. /api/v1/variablename/n_Alkane_C21/ -809 n-alkane, C22 C22 alkane, normal (i.e. straight-chain) isomer, common name: n-Docosane, formula : C22H46 /api/v1/variablename/n_Alkane_C22/ -810 n-alkane, C23 C23 alkane, normal (i.e. straight-chain) isomer, common name: n-Tricosane, formula : C23H48 /api/v1/variablename/n_Alkane_C23/ -811 n-alkane, C24 C24 alkane, normal (i.e. straight-chain) isomer, common name: n-Tetracosane, formula : C24H50 /api/v1/variablename/n_Alkane_C24/ -812 n-alkane, C25 C25 alkane, normal (i.e. straight-chain) isomer, common name: n-Pentacosane, formula : C25H52 /api/v1/variablename/n_Alkane_C25/ -813 n-alkane, C26 C26 alkane, normal (i.e. straight-chain) isomer, common name: n-Hexacosane, formula : C26H54, synonyms: cerane, hexeikosane /api/v1/variablename/n_Alkane_C26/ -814 n-alkane, C27 C27 alkane, normal (i.e. straight-chain) isomer, common name: n-Heptacosane, formula : C27H56 /api/v1/variablename/n_Alkane_C27/ -815 n-alkane, C28 C28 alkane, normal (i.e. straight-chain) isomer, common name: n-Octacosane, formula : C28H58 /api/v1/variablename/n_Alkane_C28/ -816 n-alkane, C29 C29 alkane, normal (i.e. straight-chain) isomer, common name: n-Nonacosane, formula : C29H60 /api/v1/variablename/n_Alkane_C29/ -817 n-alkane, C30 C30 alkane, normal (i.e. straight-chain) isomer, common name: n-Triacontane, formula : C30H62 /api/v1/variablename/n_Alkane_C30/ -818 n-alkane, C31 C31 alkane,normal (i.e. straight-chain) isomer, common name: n-Hentriacontane, formula : C31H64, Synonym: untriacontane /api/v1/variablename/n_Alkane_C31/ -819 n-alkane, C32 C32 alkane, normal (i.e. straight-chain) isomer, common name: n-Dotriacontane, formula : C32H66, Synonym: dicetyl /api/v1/variablename/n_Alkane_C32/ -820 n-alkane, C33 C33 alkane, (i.e. straight-chain) isomer, common name: n-Tritriacontane, formula : C33H68 /api/v1/variablename/n_Alkane_C33/ -799 n-alkane, long-chain long-chain alkanes, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified) /api/v1/variablename/n_AlkaneLongChain/ -824 N-Nitrosodi-n-butylamine N-Nitrosodi-n-butylamine (C8H18N2O) /api/v1/variablename/N_Nitrosodi_n_Butylamine/ -825 N-Nitrosodi-n-propylamine N-Nitrosodi-n-propylamine (C6H14N2O) /api/v1/variablename/N_Nitrosodi_n_Propylamine/ -821 N-Nitrosodiethylamine N-Nitrosodiethylamine (C4H10N2O) /api/v1/variablename/N_Nitrosodiethylamine/ -822 N-Nitrosodimethylamine N-Nitrosodimethylamine (C2H6N2O) /api/v1/variablename/N_Nitrosodimethylamine/ -823 N-Nitrosodiphenylamine N-Nitrosodiphenylamine (C12H10N2O) /api/v1/variablename/N_Nitrosodiphenylamine/ -826 N-Nitrosomethylethylamine N-Nitrosomethylethylamine (C3H8N2O) /api/v1/variablename/N_Nitrosomethylethylamine/ -1651 Nacrite Nacrite Al2Si2O5(OH)4 is a clay mineral that is polymorphous (or polytypic) with kaolinite. It crystallizes in the monoclinic system. X-ray diffraction analysis is required for positive identification. Nacrite was first described in 1807 for an occurrence in Saxony, Germany. The name is from nacre in reference to the mother of pearl luster of nacrite masses. https://en.wikipedia.org/wiki/Nacrite /api/v1/variablename/nacrite/ -764 Naphthalene Naphthalene (C10H8) /api/v1/variablename/naphthalene/ -765 NDVI Normalized difference vegetation index /api/v1/variablename/NDVI/ -1652 Neodymium Neodymium is a chemical element with symbol Nd and atomic number 60. It is a soft silvery metal that tarnishes in air. Neodymium was discovered in 1885 by the Austrian chemist Carl Auer von Welsbach. https://en.wikipedia.org/wiki/Neodymium /api/v1/variablename/neodymium/ -1653 Neodymium, dissolved Dissolved Neodymium (Nd). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Neodymium /api/v1/variablename/neodymiumDissolved/ -766 Net heat flux Outgoing rate of heat energy transfer minus the incoming rate of heat energy transfer through a given area /api/v1/variablename/netHeatFlux/ -1654 Neutron Count Neutron counts of the naturally occurring cosmic rays. https://en.wikipedia.org/wiki/Cosmic_ray /api/v1/variablename/neutronCount/ -1655 Nickel Nickel is a chemical element with symbol Ni and atomic number 28. It is a silvery-white lustrous metal with a slight golden tinge. Nickel belongs to the transition metals and is hard and ductile. Pure nickel, powdered to maximize the reactive surface area, shows a significant chemical activity, but larger pieces are slow to react with air under standard conditions because an oxide layer forms on the surface and prevents further corrosion (passivation). Even so, pure native nickel is found in Earth's crust only in tiny amounts, usually in ultramafic rocks, and in the interiors of larger nickel–iron meteorites that were not exposed to oxygen when outside Earth's atmosphere. https://en.wikipedia.org/wiki/Nickel /api/v1/variablename/nickel/ -767 Nickel, dissolved Dissolved Nickel (Ni) /api/v1/variablename/nickelDissolved/ -768 Nickel, distribution coefficient Ratio of concentrations of nickel in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/nickelDistributionCoefficient/ -769 Nickel, particulate Particulate nickel (Ni) in suspension /api/v1/variablename/nickelParticulate/ -770 Nickel, total Total Nickel (Ni). "Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/nickelTotal/ -1656 Niobium, dissolved Niobium, formerly known as columbium, is a chemical element with symbol Nb (formerly Cb) and atomic number 41. It is a soft, grey, crystalline, ductile transition metal, often found in the minerals pyrochlore and columbite, hence the former name "columbium". Its name comes from Greek mythology, specifically Niobe, who was the daughter of Tantalus, the namesake of tantalum https://en.wikipedia.org/wiki/Niobium /api/v1/variablename/niobiumDissolved/ -1657 Niobium, total Niobium, formerly known as columbium, is a chemical element with symbol Nb (formerly Cb) and atomic number 41. It is a soft, grey, crystalline, ductile transition metal, often found in the minerals pyrochlore and columbite, hence the former name "columbium". Its name comes from Greek mythology, specifically Niobe, who was the daughter of Tantalus, the namesake of tantalum https://en.wikipedia.org/wiki/Niobium /api/v1/variablename/niobiumTotal/ -771 Nitrobenzene Nitrobenzene (C6H5NO2) /api/v1/variablename/nitrobenzene/ -1658 Nitrogen Nitrogen is a chemical element with symbol N and atomic number 7. It was first discovered and isolated by Scottish physician Daniel Rutherford in 1772. Although Carl Wilhelm Scheele and Henry Cavendish had independently done so at about the same time, Rutherford is generally accorded the credit because his work was published first. The name nitrogène was suggested by French chemist Jean-Antoine-Claude Chaptal in 1790, when it was found that nitrogen was present in nitric acid and nitrates. Antoine Lavoisier suggested instead the name azote, from the Greek άζωτικός "no life", as it is an asphyxiant gas; this name is instead used in many languages, such as French, Russian, and Turkish, and appears in the English names of some nitrogen compounds such as hydrazine, azides and azo compounds. https://en.wikipedia.org/wiki/Nitrogen /api/v1/variablename/nitrogen/ -778 Nitrogen, dissolved (free+ionized) Ammonia (NH3) + (NH4) Dissolved (free+ionized) Ammonia /api/v1/variablename/nitrogenDissolved_Free_Ionized_Ammonia_NH3_NH4/ -772 Nitrogen, dissolved inorganic Dissolved inorganic nitrogen /api/v1/variablename/nitrogenDissolvedInorganic/ -773 Nitrogen, dissolved Kjeldahl Dissolved Kjeldahl (organic nitrogen + ammonia (NH3) + ammonium (NH4))nitrogen /api/v1/variablename/nitrogenDissolvedKjeldahl/ -774 Nitrogen, dissolved nitrate (NO3) Dissolved nitrate (NO3) nitrogen /api/v1/variablename/nitrogenDissolvedNitrate_NO3/ -775 Nitrogen, dissolved nitrite (NO2) Dissolved nitrite (NO2) nitrogen /api/v1/variablename/nitrogenDissolvedNitrite_NO2/ -776 Nitrogen, dissolved nitrite (NO2) + nitrate (NO3) Dissolved nitrite (NO2) + nitrate (NO3) nitrogen /api/v1/variablename/nitrogenDissolvedNitrite_NO2_Nitrate_NO3/ -777 Nitrogen, dissolved organic Dissolved Organic Nitrogen /api/v1/variablename/nitrogenDissolvedOrganic/ -779 Nitrogen, gas Gaseous Nitrogen (N2) /api/v1/variablename/nitrogenGas/ -780 Nitrogen, inorganic Total Inorganic Nitrogen /api/v1/variablename/nitrogenInorganic/ -795 Nitrogen, NH3 Free Ammonia (NH3) /api/v1/variablename/nitrogen_NH3/ -781 Nitrogen, NH3 + NH4 Total (free+ionized) Ammonia /api/v1/variablename/nitrogenNH3_NH4/ -796 Nitrogen, NH4 Ammonium (NH4) /api/v1/variablename/nitrogen_NH4/ -782 Nitrogen, nitrate (NO3) Nitrate (NO3) Nitrogen /api/v1/variablename/nitrogenNitrate_NO3/ -783 Nitrogen, nitrite (NO2) Nitrite (NO2) Nitrogen /api/v1/variablename/nitrogenNitrite_NO2/ -784 Nitrogen, nitrite (NO2) + nitrate (NO3) Nitrite (NO2) + Nitrate (NO3) Nitrogen /api/v1/variablename/nitrogenNitrite_NO2_Nitrate_NO3/ -785 Nitrogen, organic Organic Nitrogen /api/v1/variablename/nitrogenOrganic/ -786 Nitrogen, organic kjeldahl Organic Kjeldahl (organic nitrogen + ammonia (NH3) + ammonium (NH4)) nitrogen /api/v1/variablename/nitrogenOrganicKjeldahl/ -787 Nitrogen, particulate organic Particulate Organic Nitrogen /api/v1/variablename/nitrogenParticulateOrganic/ -788 Nitrogen, total Total Nitrogen (NO3+NO2+NH4+NH3+Organic) /api/v1/variablename/nitrogenTotal/ -789 Nitrogen, total dissolved Total dissolved nitrogen /api/v1/variablename/nitrogenTotalDissolved/ -790 Nitrogen, total kjeldahl Total Kjeldahl Nitrogen (Ammonia+Organic) /api/v1/variablename/nitrogenTotalKjeldahl/ -791 Nitrogen, total nitrite Total nitrite (NO2) /api/v1/variablename/nitrogenTotalNitrite/ -792 Nitrogen, total organic Total (dissolved + particulate) organic nitrogen /api/v1/variablename/nitrogenTotalOrganic/ -793 Nitrogen-15 15 Nitrogen, Delta Nitrogen /api/v1/variablename/nitrogen_15/ -794 Nitrogen-15, stable isotope ratio delta Difference in the 15N:14N ratio between the sample and standard (del N 15) /api/v1/variablename/nitrogen_15_StableIsotopeRatioDelta/ -797 Nitrous oxide Nitrous oxide (N2O) /api/v1/variablename/nitrousOxide/ -798 No vegetation coverage Areal coverage of no vegetation /api/v1/variablename/noVegetationCoverage/ -842 o-Xylene o-Xylene (C8H10) /api/v1/variablename/o_Xylene/ -827 Odor Odor /api/v1/variablename/odor/ -828 Offset Constant to be added as an offset to a variable of interest. /api/v1/variablename/offset/ -829 Oil and grease Oil and grease /api/v1/variablename/oilAndGrease/ -830 Organic matter The organic matter component of a complex material. /api/v1/variablename/organicMatter/ -831 Orientation Azimuth orientation of sensor platform /api/v1/variablename/orientation/ -1659 Orthoclase Orthoclase, or orthoclase feldspar (endmember formula KAlSi3O8), is an important tectosilicate mineral which forms igneous rock. The name is from the Ancient Greek for "straight fracture," because its two cleavage planes are at right angles to each other. It is a type of potassium feldspar, also known as K-feldspar. The gem known as moonstone (see below) is largely composed of orthoclase. https://en.wikipedia.org/wiki/Orthoclase /api/v1/variablename/orthoclase/ -832 Osmotic pressure Osmotic pressure /api/v1/variablename/osmoticPressure/ -833 Oxygen Oxygen /api/v1/variablename/oxygen/ -837 Oxygen flux Oxygen (O2) flux /api/v1/variablename/oxygenFlux/ -838 Oxygen uptake Consumption of oxygen by biological and/or chemical processes /api/v1/variablename/oxygenUptake/ -834 Oxygen, dissolved Dissolved oxygen /api/v1/variablename/oxygenDissolved/ -835 Oxygen, dissolved percent of saturation Dissolved oxygen, percent saturation /api/v1/variablename/oxygenDissolvedPercentOfSaturation/ -836 Oxygen, dissolved, transducer signal Dissolved oxygen, raw data from sensor /api/v1/variablename/oxygenDissolvedTransducerSignal/ -839 Oxygen-18 18 O, Delta O /api/v1/variablename/oxygen_18/ -840 Oxygen-18, stable isotope ratio delta Difference in the 18O:16O ratio between the sample and standard /api/v1/variablename/oxygen_18_StableIsotopeRatioDelta/ -841 Ozone Ozone (O3) /api/v1/variablename/ozone/ -843 Parameter Parameter related to a hydrologic process. An example usage would be for a starge-discharge relation parameter. /api/v1/variablename/parameter/ -844 Parathion-ethyl Parathion-ethyl (C10H14NO5PS) /api/v1/variablename/parathion_Ethyl/ -1660 Particle counts Count of insoluble particles in a liquid like rainwater https://en.wikipedia.org/wiki/Counting /api/v1/variablename/particleCounts/ -845 Pentachlorobenzene Pentachlorobenzene (C6HCl5) /api/v1/variablename/pentachlorobenzene/ -846 Pentachlorophenol Pentachlorophenol (C6HCl5O) /api/v1/variablename/pentachlorophenol/ -847 Pentane Pentane /api/v1/variablename/pentane/ -848 Percent full scale The percent of full scale for an instrument /api/v1/variablename/percentFullScale/ -849 Peridinin The phytoplankton pigment Peridinin /api/v1/variablename/peridinin/ -850 Permethrin Permethrin (C21H20Cl2O3) /api/v1/variablename/permethrin/ -851 Permittivity Permittivity is a physical quantity that describes how an electric field affects, and is affected by a dielectric medium, and is determined by the ability of a material to polarize in response to the field, and thereby reduce the total electric field inside the material. Thus, permittivity relates to a material's ability to transmit (or "permit") an electric field. /api/v1/variablename/permittivity/ -1603 Permittivity, electrical In electromagnetism, absolute permittivity, often simply called permittivity, usually denoted by the Greek letter ε (epsilon), is the measure of capacitance that is encountered when forming an electric field in a particular medium. More specifically, permittivity describes the amount of charge needed to generate one unit of electric flux in a particular medium. Accordingly, a charge will yield more electric flux in a medium with low permittivity than in a medium with high permittivity. Permittivity is the measure of a material's ability to store an electric field in the polarization of the medium. https://en.wikipedia.org/wiki/Permittivity /api/v1/variablename/permittivityElectrical/ -852 Perylene Perylene (C20H12), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/perylene/ -853 Petroleum hydrocarbon, total Total petroleum hydrocarbon /api/v1/variablename/petroleumHydrocarbonTotal/ -854 pH pH is the measure of the acidity or alkalinity of a solution. pH is formally a measure of the activity of dissolved hydrogen ions (H+). Solutions in which the concentration of H+ exceeds that of OH- have a pH value lower than 7.0 and are known as acids. /api/v1/variablename/pH/ -855 Phenanthrene Phenanthrene (C14H10), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/phenanthrene/ -856 Phenol Phenol (C6H5OH) /api/v1/variablename/phenol/ -857 Phenolics, total Total Phenolics /api/v1/variablename/phenolicsTotal/ -858 Pheophytin Pheophytin (Chlorophyll which has lost the central Mg ion) is a degradation product of Chlorophyll /api/v1/variablename/pheophytin/ -882 Precipitation Precipitation such as rainfall. Should not be confused with settling. /api/v1/variablename/precipitation/ -883 Pressure, absolute Pressure /api/v1/variablename/pressureAbsolute/ -884 Pressure, gauge Pressure relative to the local atmospheric or ambient pressure /api/v1/variablename/pressureGauge/ -1661 Pheophytin Pheophytin or phaeophytin (abbreviated Pheo) is a chemical compound that serves as the first electron carrier intermediate in the electron transfer pathway of Photosystem II (PS II) in plants, and the photosynthetic reaction center (RC P870) found in purple bacteria. In both PS II and RC P870, light drives electrons from the reaction center through pheophytin, which then passes the electrons to a quinone (QA) in RC P870 and RC P680. https://en.wikipedia.org/wiki/Pheophytin /api/v1/variablename/pheophytin/ -859 Phorate Phorate (C7H17O2PS3) /api/v1/variablename/phorate/ -860 Phosphorodithioic acid Phosphorodithioic acid (C10N12N3O3PS2) /api/v1/variablename/phosphorodithioicAcid/ -1662 Phosphorus Phosphorus is a chemical element with symbol P and atomic number 15. Elemental phosphorus exists in two major forms, white phosphorus and red phosphorus, but because it is highly reactive, phosphorus is never found as a free element on Earth. It has a concentration in the Earth's crust of about one gram per kilogram (compare copper at about 0.06 grams). With few exceptions, minerals containing phosphorus are in the maximally oxidized state as inorganic phosphate rocks. https://en.wikipedia.org/wiki/Phosphorus /api/v1/variablename/phosphorus/ -1663 Phosphorus pentoxide Phosphorus pentoxide is a chemical compound with molecular formula P4O10 (with its common name derived from its empirical formula, P2O5). This white crystalline solid is the anhydride of phosphoric acid. https://en.wikipedia.org/wiki/Phosphorus_pentoxide /api/v1/variablename/phosphorusPentoxide/ -861 Phosphorus, dissolved Dissolved Phosphorus (P) /api/v1/variablename/phosphorusDissolved/ -862 Phosphorus, dissolved organic Dissolved organic phosphorus /api/v1/variablename/phosphorusDissolvedOrganic/ -863 Phosphorus, inorganic Inorganic Phosphorus /api/v1/variablename/phosphorusInorganic/ -864 Phosphorus, organic Organic Phosphorus /api/v1/variablename/phosphorusOrganic/ -865 Phosphorus, orthophosphate Orthophosphate Phosphorus /api/v1/variablename/phosphorusOrthophosphate/ -866 Phosphorus, orthophosphate dissolved Dissolved orthophosphate phosphorus /api/v1/variablename/phosphorusOrthophosphateDissolved/ -867 Phosphorus, orthophosphate total Total orthophosphate phosphorus /api/v1/variablename/phosphorusOrthophosphateTotal/ -868 Phosphorus, particulate Particulate phosphorus /api/v1/variablename/phosphorusParticulate/ -869 Phosphorus, particulate organic Particulate organic phosphorus in suspension /api/v1/variablename/phosphorusParticulateOrganic/ -870 Phosphorus, phosphate (PO4) Phosphate phosphorus /api/v1/variablename/phosphorusPhosphate_PO4/ -692 Phosphorus, phosphate flux Phosphate (PO4) flux /api/v1/variablename/hosphorusPhosphateFlux/ -871 Phosphorus, polyphosphate Polyphosphate Phosphorus /api/v1/variablename/phosphorusPolyphosphate/ -872 Phosphorus, total Total Phosphorus /api/v1/variablename/phosphorusTotal/ -873 Phosphorus, total dissolved Total dissolved phosphorus /api/v1/variablename/phosphorusTotalDissolved/ -1664 Photosynthetic photon flux density (PPFD) The number of photons per unit time and per unit area in the wavelength band 400 to 700 nm https://en.wikipedia.org/wiki/Photosynthetically_active_radiation /api/v1/variablename/photosyntheticPhotonFluxDensity/ -874 Phytoplankton Measurement of phytoplankton with no differentiation between species /api/v1/variablename/phytoplankton/ -875 Piperonyl Butoxide Piperonyl Butoxide (C19H30O5) /api/v1/variablename/piperonylButoxide/ -1665 Plagioclase Plagioclase is a series of tectosilicate (framework silicate) minerals within the feldspar group. Rather than referring to a particular mineral with a specific chemical composition, plagioclase is a continuous solid solution series, more properly known as the plagioclase feldspar series (from the Ancient Greek for "oblique fracture", in reference to its two cleavage angles) https://en.wikipedia.org/wiki/Plagioclase /api/v1/variablename/plagioclase/ -876 Polycyclic aromatic hydrocarbon, alkyl Polycyclic aromatic hydrocarbon (PAH) having at least one alkyl sidechain (methyl, ethyl or other alkyl group) attached to the aromatic ring structure /api/v1/variablename/polycyclicAromaticHydrocarbonAlkyl/ -877 Polycyclic aromatic hydrocarbon, parent Unsubstituted (i.e., non-alkylated) polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/polycyclicAromaticHydrocarbonParent/ -878 Polycyclic aromatic hydrocarbon, total total polycyclic aromatic hydrocarbon (PAH), also known as poly-aromatic hydrocarbons or polynuclear aromatic hydrocarbons /api/v1/variablename/polycyclicAromaticHydrocarbonTotal/ -1529 Porosity Porosity or void fraction is a measure of the void (i.e. "empty") spaces in a material, and is a fraction of the volume of voids over the total volume, between 0 and 1, or as a percentage between 0 and 100%. https://en.wikipedia.org/wiki/Porosity /api/v1/variablename/porosity/ -879 Position Position of an element that interacts with water such as reservoir gates /api/v1/variablename/position/ -1667 Potassium Potassium is a chemical element with symbol K and atomic number 19. It was first isolated from potash, the ashes of plants, from which its name derives. In the periodic table, potassium is one of the alkali metals. All of the alkali metals have a single valence electron in the outer electron shell, which is easily removed to create an ion with a positive charge – a cation, which combines with anions to form salts. Potassium in nature occurs only in ionic salts. Elemental potassium is a soft silvery-white alkali metal that oxidizes rapidly in air and reacts vigorously with water, generating sufficient heat to ignite hydrogen emitted in the reaction, and burning with a lilac-colored flame. It is found dissolved in sea water (which is 0.04% potassium by weight), and is part of many minerals. https://en.wikipedia.org/wiki/Potassium /api/v1/variablename/potassium/ -1668 Potassium oxide Potassium oxide (K2O), or Kalium oxide, is an ionic compound of potassium and oxygen. https://en.wikipedia.org/wiki/Potassium_oxide /api/v1/variablename/potassiumOxide/ -880 Potassium, dissolved Dissolved Potassium (K) /api/v1/variablename/potassiumDissolved/ -881 Potassium, total Total Potassium (K) /api/v1/variablename/potassiumTotal/ -1669 Praseodymium Praseodymium is a chemical element with symbol Pr and atomic number 59. It is the third member of the lanthanide series and is traditionally considered to be one of the rare-earth metals. Praseodymium is a soft, silvery, malleable and ductile metal, valued for its magnetic, electrical, chemical, and optical properties. https://en.wikipedia.org/wiki/Praseodymium /api/v1/variablename/praseodymium/ -1670 Praseodymium, dissolved Dissolved Praseodymium (Pr). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Praseodymium /api/v1/variablename/praseodymiumDissolved/ -885 Primary productivity Primary Productivity /api/v1/variablename/primaryProductivity/ -886 Primary productivity, gross Rate at which an ecosystem accumulates energy by fixation of sunlight, including that consumed by the ecosystem. /api/v1/variablename/primaryProductivityGross/ -887 Program signature A unique data recorder program identifier which is useful for knowing when the source code in the data recorder has been modified. /api/v1/variablename/programSignature/ -888 Pronamide Pronamide (C12H11Cl2NO) /api/v1/variablename/pronamide/ -889 Propane Propane /api/v1/variablename/propane/ -890 Propane, dissolved Dissolved Propane (C3H8) /api/v1/variablename/propaneDissolved/ -891 Propanoic acid Propanoic acid (C3H6O2) /api/v1/variablename/propanoicAcid/ -892 Propylene glycol Propylene glycol (C3H8O2) /api/v1/variablename/propyleneGlycol/ -893 Pyrene Pyrene (C16H10), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/pyrene/ -894 Pyridine Pyridine (C5H5N) /api/v1/variablename/pyridine/ -1671 Quartz Quartz is a type of silicate mineral composed of silicon and oxygen atoms. https://en.wikipedia.org/wiki/Quartz /api/v1/variablename/quartz/ -895 Radiation, incoming Incoming radiation /api/v1/variablename/radiationIncoming/ -896 Radiation, incoming longwave Incoming Longwave Radiation /api/v1/variablename/radiationIncomingLongwave/ -897 Radiation, incoming PAR Incoming Photosynthetically-Active Radiation /api/v1/variablename/radiationIncomingPAR/ -898 Radiation, incoming shortwave Incoming Shortwave Radiation /api/v1/variablename/radiationIncomingShortwave/ -899 Radiation, incoming UV-A Incoming Ultraviolet A Radiation /api/v1/variablename/radiationIncomingUV_A/ -900 Radiation, incoming UV-B Incoming Ultraviolet B Radiation /api/v1/variablename/radiationIncomingUV_B/ -901 Radiation, net Net Radiation /api/v1/variablename/radiationNet/ -902 Radiation, net longwave Net Longwave Radiation /api/v1/variablename/radiationNetLongwave/ -903 Radiation, net PAR Net Photosynthetically-Active Radiation /api/v1/variablename/radiationNetPAR/ -904 Radiation, net shortwave Net Shortwave radiation /api/v1/variablename/radiationNetShortwave/ -905 Radiation, outgoing longwave Outgoing Longwave Radiation /api/v1/variablename/radiationOutgoingLongwave/ -906 Radiation, outgoing PAR Outgoing Photosynthetically-Active Radiation /api/v1/variablename/radiationOutgoingPAR/ -907 Radiation, outgoing shortwave Outgoing Shortwave Radiation /api/v1/variablename/radiationOutgoingShortwave/ -908 Radiation, total incoming Total amount of incoming radiation from all frequencies /api/v1/variablename/radiationTotalIncoming/ -909 Radiation, total outgoing Total amount of outgoing radiation from all frequencies /api/v1/variablename/radiationTotalOutgoing/ -910 Radiation, total shortwave Total Shortwave Radiation /api/v1/variablename/radiationTotalShortwave/ -911 Radium-226 An isotope of radium in the uranium-238 decay series /api/v1/variablename/radium_226/ -912 Radium-228 An isotope of radium in the thorium-232 decay series /api/v1/variablename/radium_228/ -913 Radon-222 An isotope of radon /api/v1/variablename/radon_222/ -914 Rainfall rate A measure of the intensity of rainfall, calculated as the depth of water to fall over a given time period if the intensity were to remain constant over that time interval (in/hr, mm/hr, etc) /api/v1/variablename/rainfallRate/ -915 Real dielectric constant Soil reponse of a reflected standing electromagnetic wave of a particular frequency which is related to the stored energy within the medium. This is the real portion of the complex dielectric constant. /api/v1/variablename/realDielectricConstant/ -1534 Received signal strength indication In telecommunications, received signal strength indicator (RSSI) is a measurement of the power present in a received radio signal. https://en.wikipedia.org/wiki/Received_signal_strength_indication /api/v1/variablename/receivedSignalStrenghtIndication/ -1626 Recharge, groundwater Groundwater recharge or deep drainage or deep percolation is a hydrologic process where water moves downward from surface water to groundwater. Recharge is the primary method through which water enters an aquifer. This process usually occurs in the vadose zone below plant roots and is often expressed as a flux to the water table surface. Recharge occurs both naturally (through the water cycle) and through anthropogenic processes (i.e., "artificial groundwater recharge"), where rainwater and or reclaimed water is routed to the subsurface. https://en.wikipedia.org/wiki/Groundwater_recharge /api/v1/variablename/rechargeGroundwater/ -916 Recorder code A code used to identifier a data recorder. /api/v1/variablename/recorderCode/ -917 Reduction potential Oxidation-reduction potential /api/v1/variablename/reductionPotential/ -1672 Reflectivity dBZ stands for decibel relative to Z. It is a logarithmic dimensionless technical unit used in radar, mostly in weather radar, to compare the equivalent reflectivity factor (Z) of a radar signal reflected off a remote object (in mm6 per m3) to the return of a droplet of rain with a diameter of 1 mm (1 mm6 per m3). It is proportional to the number of drops per unit volume and the sixth power of drops' diameter and is thus used to estimate the rain or snow intensity. https://en.wikipedia.org/wiki/DBZ_(meteorology) /api/v1/variablename/reflectivity/ -918 Relative humidity Relative humidity /api/v1/variablename/relativeHumidity/ -919 Remark Manually added comment field to provide additional information about a particular record. /api/v1/variablename/remark/ -920 Reservoir storage Reservoir water volume /api/v1/variablename/reservoirStorage/ -1604 Resistivity, electrical The electrical resistance of an object is a measure of its opposition to the flow of electric current. The inverse quantity is electrical conductance, and is the ease with which an electric current passes. https://en.wikipedia.org/wiki/Electrical_resistance_and_conductance /api/v1/variablename/resistivityElectrical/ -921 Respiration, ecosystem Gross carbon dioxide production by all organisms in an ecosystem. Ecosystem respiration is the sum of all respiration occurring by the living organisms in a specific ecosystem. /api/v1/variablename/respirationEcosystem/ -922 Respiration, net Net respiration /api/v1/variablename/respirationNet/ -923 Retene Retene (C18H18), a polycyclic aromatic hydrocarbon (PAH), also known as methyl isopropyl phenanthrene or 1-methyl-7-isopropyl phenanthrene /api/v1/variablename/retene/ -924 Rhenium, total Total Rhenium (Re) /api/v1/variablename/rheniumTotal/ -948 Silicic acid flux Silicate acid (H4SiO4) flux /api/v1/variablename/silicicAcidFlux/ -949 Silicon Silicon (Si) /api/v1/variablename/silicon/ -1587 Roundness Roundness is the measure of how closely the shape of an object approaches that of a mathematically perfect circle. Roundness applies in two dimensions, such as the cross sectional circles along a cylindrical object such as a shaft or a cylindrical roller for a bearing. In geometric dimensioning and tolerancing, control of a cylinder can also include its fidelity to the longitudinal axis, yielding cylindricity. The analogue of roundness in three dimensions (that is, for spheres) is sphericity. https://en.wikipedia.org/wiki/Roundness_(object) /api/v1/variablename/roundness/ -1673 Rubidium A chemical element with symbol Rb and atomic number 37. Rubidium is a soft, silvery-white metallic element of the alkali metal group, with a standard atomic weight of 85.4678. Elemental rubidium is highly reactive, with properties similar to those of other alkali metals, including rapid oxidation in air. On Earth, natural rubidium comprises two isotopes: 72% is the stable isotope, 85Rb; 28% is the slightly radioactive 87Rb, with a half-life of 49 billion years—more than three times longer than the estimated age of the universe. https://en.wikipedia.org/wiki/Rubidium /api/v1/variablename/rubidium/ -925 Ruthenium-106 The most stable isotope of ruthenium with a half life of 373.59 days. /api/v1/variablename/ruthenium_106/ -926 Salicornia bigelovii coverage Areal coverage of the plant Salicornia bigelovii /api/v1/variablename/salicorniaBigeloviiCoverage/ -927 Salicornia virginica coverage Areal coverage of the plant Salicornia virginica /api/v1/variablename/salicorniaVirginicaCoverage/ -928 Salinity Salinity /api/v1/variablename/salinity/ -1674 Samarium A chemical element with symbol Sm and atomic number 62. It is a moderately hard silvery metal that slowly oxidizes in air. Being a typical member of the lanthanide series, samarium usually assumes the oxidation state +3. https://en.wikipedia.org/wiki/Samarium /api/v1/variablename/samarium/ -1675 Samarium, dissolved Dissolved Samarium (Sm). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Samarium /api/v1/variablename/samariumDissolved/ -929 Sand USDA particle size distribution category. 0.5 to 2 mm diameter fine earth particles. /api/v1/variablename/Sand/ -1676 Sap flow Movement of xylem sap in trees. http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=VariableNameCV&id=1157579162 /api/v1/variablename/sapFlow/ -1677 Scandium A chemical element with symbol Sc and atomic number 21. A silvery-white metallic d-block element, it has historically been classified as a rare-earth element, together with yttrium and the lanthanides. It was discovered in 1879 by spectral analysis of the minerals euxenite and gadolinite from Scandinavia. https://en.wikipedia.org/wiki/Scandium /api/v1/variablename/scandium/ -1558 Scatter, anti-stokes The material loses energy and the emitted photon has a higher energy than the absorbed photon. This outcome is labeled anti-Stokes Raman scattering. https://en.wikipedia.org/wiki/Raman_scattering#Stokes_and_anti-Stokes /api/v1/variablename/scatterAntiStokes/ -1694 Scatter, Stokes The material absorbs energy and the emitted photon has a lower energy than the incident photon. This outcome is labeled Stokes Raman scattering in honor of George Stokes who showed in 1852 that fluorescence is due to light emission at longer wavelength (now known to correspond to lower energy) than the absorbed incident light. https://en.wikipedia.org/wiki/Raman_scattering#Stokes_and_anti-Stokes /api/v1/variablename/scatterStokes/ -930 Secchi depth Secchi depth /api/v1/variablename/secchiDepth/ -931 Sediment, passing sieve The amount of sediment passing a sieve in a gradation test /api/v1/variablename/sedimentPassingSieve/ -932 Sediment, retained on sieve The amount of sediment retained on a sieve in a gradation test /api/v1/variablename/sedimentRetainedOnSieve/ -933 Sediment, suspended Suspended Sediment /api/v1/variablename/sedimentSuspended/ -1678 Seismic refraction Seismic refraction is a geophysical principle (see refraction) governed by Snell's Law. Used in the fields of engineering geology, geotechnical engineering and exploration geophysics, seismic refraction traverses (seismic lines) are performed using a seismograph(s) and/or geophone(s), in an array and an energy source. https://en.wikipedia.org/wiki/Seismic_refraction /api/v1/variablename/seismicRefraction/ -934 Selenium, dissolved Dissolved selenium (Se). For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/seleniumDissolved/ -935 Selenium, distribution coefficient Ratio of concentrations of selenium in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/seleniumDistributionCoefficient/ -936 Selenium, particulate Particulate selenium (Se) in suspension /api/v1/variablename/seleniumParticulate/ -937 Selenium, total Total Selenium (Se). For chemical terms, total indicates an unfiltered sample /api/v1/variablename/seleniumTotal/ -938 Sensible heat flux Sensible Heat Flux /api/v1/variablename/sensibleHeatFlux/ -939 Sequence number A counter of events in a sequence /api/v1/variablename/sequenceNumber/ -940 Shannon diversity index A diversity index that is based on the number of taxa, and the proportion of individuals in each taxa relative to the entire community, evaluated as entropy. Also known as Shannon-Weaver diversity index, the Shannon-Wiener index, the Shannon index and the Shannon entropy. /api/v1/variablename/shannonDiversityIndex/ -941 Shannon evenness index A dimensionless diversity index, calculated as a ratio of the Shannon diversity index over its maximum. Also known as the Shannon Weaver evenness index /api/v1/variablename/shannonEvennessIndex/ -942 Sigma-t Density of seawater calculated with in situ salinity and temperature, but pressure equal to zero, rather than the in situ pressure, and 1000 kg/m^3 is subtracted. Defined as (S,T)-1000 kg m-3, where (S,T) is the density of a sample of seawater at temperature T and salinity S, measured in kg m-3, at standard atmospheric pressure. /api/v1/variablename/sigma_t/ -1679 Signal quality Internal signature measurent quality https://tech.africa/the-difference-between-signal-strength-and-quality/ /api/v1/variablename/signalQuality/ -943 Signal-to-noise ratio Signal-to-noise ratio (often abbreviated SNR or S/N) is defined as the ratio of a signal power to the noise power corrupting the signal. The higher the ratio, the less obtrusive the background noise is. /api/v1/variablename/signalToNoiseRatio/ -944 Silica Silica (SiO2) /api/v1/variablename/silica/ -945 Silica, dissolved Dissolved silica (SiO2) /api/v1/variablename/silicaDissolved/ -946 Silicate Silicate. Chemical compound containing silicon, oxygen, and one or more metals, e.g., aluminum, barium, beryllium, calcium, iron, magnesium, manganese, potassium, sodium, or zirconium. /api/v1/variablename/silicate/ -947 Silicic acid Hydrated silica disolved in water /api/v1/variablename/silicicAcid/ -950 Silicon, dissolved Dissolved Silicon (Si) /api/v1/variablename/siliconDissolved/ -1680 Silicon, total Total silicon (Si) https://en.wikipedia.org/wiki/Silicon /api/v1/variablename/siliconTotal/ -951 Silt USDA particle size distribution category. 0.002 to 0.5 mm diameter fine earth particles. /api/v1/variablename/Silt/ -1681 Silver A chemical element with symbol Ag (from the Latin argentum, derived from the Proto-Indo-European h₂erǵ: "shiny" or "white") and atomic number 47. A soft, white, lustrous transition metal, it exhibits the highest electrical conductivity, thermal conductivity, and reflectivity of any metal. The metal is found in the Earth's crust in the pure, free elemental form ("native silver"), as an alloy with gold and other metals, and in minerals such as argentite and chlorargyrite. Most silver is produced as a byproduct of copper, gold, lead, and zinc refining. https://en.wikipedia.org/wiki/Silver /api/v1/variablename/silver/ -952 Silver, dissolved Dissolved silver (Ag). For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/silverDissolved/ -953 Silver, total Total Silver (Ag). For chemical terms, total represents an unfiltered sample. /api/v1/variablename/silverTotal/ -954 Slope Ratio between two variables in a linear relationship. /api/v1/variablename/slope/ -955 Snow depth Snow depth /api/v1/variablename/snowDepth/ -1683 Snow layer hardness Snow layers within the snowpack are a record of the winter’s weather. Like tree rings or strata of rock, layers can be traced to dates and conditions that formed them. One of the most important characteristics of a layer is its hardness. Harder snow is stronger and cohesive, while softer snow is weaker. http://cbavalanchecenter.org/interpreting-snowpack-layers-and-hardness/ /api/v1/variablename/snowLayerHardness/ -956 Snow water equivalent The depth of water if a snow cover is completely melted, expressed in units of depth, on a corresponding horizontal surface area. /api/v1/variablename/snowWaterEquivalent/ -1684 Sodium A chemical element with symbol Na (from Latin natrium) and atomic number 11. It is a soft, silvery-white, highly reactive metal. Sodium is an alkali metal, being in group 1 of the periodic table, because it has a single electron in its outer shell that it readily donates, creating a positively charged ion—the Na+ cation. Its only stable isotope is 23Na. The free metal does not occur in nature, but must be prepared from compounds. Sodium is the sixth most abundant element in the Earth's crust and exists in numerous minerals such as feldspars, sodalite, and rock salt (NaCl). Many salts of sodium are highly water-soluble: sodium ions have been leached by the action of water from the Earth's minerals over eons, and thus sodium and chlorine are the most common dissolved elements by weight in the oceans. https://en.wikipedia.org/wiki/Sodium /api/v1/variablename/sodium/ -957 Sodium adsorption ratio Sodium adsorption ratio /api/v1/variablename/sodiumAdsorptionRatio/ -960 Sodium plus potassium Sodium plus potassium /api/v1/variablename/sodiumPlusPotassium/ -958 Sodium, dissolved Dissolved Sodium (Na) /api/v1/variablename/sodiumDissolved/ -959 Sodium, fraction of cations Sodium, fraction of cations /api/v1/variablename/sodiumFractionOfCations/ -961 Sodium, total Total Sodium (Na) /api/v1/variablename/sodiumTotal/ -1685 Soil aggregate stability Soil aggregate stability is a measure of the ability of soil aggregates to resist degradation when exposed to external forces such as water erosion and wind erosion, shrinking and swelling processes, and tillage. Soil aggregate stability is a measure of soil structure and can be impacted by soil management. https://en.wikipedia.org/wiki/Soil_aggregate_stability /api/v1/variablename/soilAggregateStability/ -1686 Soil classification For soil resources, experience has shown that a natural system approach to classification, i.e. grouping soils by their intrinsic property (soil morphology), behaviour, or genesis, results in classes that can be interpreted for many diverse uses. Differing concepts of pedogenesis, and differences in the significance of morphological features to various land uses can affect the classification approach. https://en.wikipedia.org/wiki/Soil_classification /api/v1/variablename/soilClassification/ -1687 Soil coarse fraction Fraction of particles within a soil sample that are greater that 2mm in diameter http://info.reynoldscreekczo.org/dokuwiki/doku.php?id=soil_texture, https://en.wikipedia.org/wiki/Soil_texture /api/v1/variablename/soilCoarseFraction/ -1689 Soil horizon A soil horizon is a layer parallel to the soil surface, whose physical characteristics differ from the layers above and beneath. Each soil type usually has three or four horizons. https://en.wikipedia.org/wiki/Soil_horizon /api/v1/variablename/soilHorizon/ -1690 Soil organic matter (SOM) Soil organic matter (SOM) is the organic matter component of soil, consisting of plant and animal residues at various stages of decomposition, cells and tissues of soil organisms, and substances synthesized by soil organisms. https://en.wikipedia.org/wiki/Soil_organic_matter /api/v1/variablename/soilOrganicMatter/ -1691 Soil organic matter (SOM) density fractionation Density fraction of Soil organic matter (SOM) in soil. Soil organic matter (SOM) is the organic matter component of soil, consisting of plant and animal residues at various stages of decomposition, cells and tissues of soil organisms, and substances synthesized by soil organisms. https://en.wikipedia.org/wiki/Mass_fraction_(chemistry) /api/v1/variablename/soilOrganicMatterDensityFractionation/ -1692 Soil respiration Soil respiration refers to the production of carbon dioxide when soil organisms respire. This includes respiration of plant roots, the rhizosphere, microbes and fauna. https://en.wikipedia.org/wiki/Soil_respiration /api/v1/variablename/soilRespiration/ -1693 Soil texture Soil texture is a classification instrument used both in the field and laboratory to determine soil classes based on their physical texture. Soil texture can be determined using qualitative methods such as texture by feel, and quantitative methods such as the hydrometer method. https://en.wikipedia.org/wiki/Soil_texture /api/v1/variablename/soilTexture/ -963 Solids, fixed dissolved Fixed Dissolved Solids /api/v1/variablename/solidsRixedDissolved/ -962 Solids, fixed suspended Fixed Suspended Solids /api/v1/variablename/solidsFixedSuspended/ -964 Solids, total Total Solids /api/v1/variablename/solidsTotal/ -965 Solids, total dissolved Total Dissolved Solids /api/v1/variablename/solidsTotalDissolved/ -966 Solids, total fixed Total Fixed Solids /api/v1/variablename/solidsTotalFixed/ -967 Solids, total suspended Total Suspended Solids /api/v1/variablename/solidsTotalSuspended/ -968 Solids, total volatile Total Volatile Solids /api/v1/variablename/solidsTotalVolatile/ -969 Solids, volatile dissolved Volatile Dissolved Solids /api/v1/variablename/solidsVolatileDissolved/ -970 Solids, volatile suspended Volatile Suspended Solids /api/v1/variablename/solidsVolatileSuspended/ -971 Spartina alterniflora coverage Areal coverage of the plant Spartina alterniflora /api/v1/variablename/spartinaAlternifloraCoverage/ -972 Spartina spartinea coverage Areal coverage of the plant Spartina spartinea /api/v1/variablename/spartinaSpartineaCoverage/ -973 Specific conductance Specific conductance /api/v1/variablename/specificConductance/ -974 Speed of sound Speed of sound in the medium sampled /api/v1/variablename/speedOfSound/ -975 Squalene Squalene (C30H50) /api/v1/variablename/squalene/ -976 Streamflow The volume of water flowing past a fixed point. Equivalent to discharge /api/v1/variablename/streamflow/ -977 Streptococci, fecal Fecal Streptococci /api/v1/variablename/streptococciFecal/ -1695 Strontium Strontium is the chemical element with symbol Sr and atomic number 38. An alkaline earth metal, strontium is a soft silver-white yellowish metallic element that is highly chemically reactive. The metal forms a dark oxide layer when it is exposed to air. Strontium has physical and chemical properties similar to those of its two vertical neighbors in the periodic table, calcium and barium. It occurs naturally mainly in the minerals celestine and strontianite, and is mostly mined from these. While natural strontium is stable, the synthetic 90Sr isotope is radioactive and is one of the most dangerous components of nuclear fallout, as strontium is absorbed by the body in a similar manner to calcium. Natural stable strontium, on the other hand, is not hazardous to health. https://en.wikipedia.org/wiki/Strontium /api/v1/variablename/strontium/ -978 Strontium, dissolved Dissolved Strontium (Sr) /api/v1/variablename/strontiumDissolved/ -979 Strontium, total Total Strontium (Sr) /api/v1/variablename/strontiumTotal/ -980 Styrene Styrene (C8H8) /api/v1/variablename/styrene/ -981 Suaeda linearis coverage Areal coverage of the plant Suaeda linearis /api/v1/variablename/suaedaLinearisCoverage/ -982 Suaeda maritima coverage Areal coverage of the plant Suaeda maritima /api/v1/variablename/suaedaMaritimaCoverage/ -1696 Sulfate The sulfate or sulphate (see spelling differences) ion is a polyatomic anion with the empirical formula SO2-\n 4. Sulfate is the spelling recommended by IUPAC, but sulphate is used in British English. Salts, acid derivatives, and peroxides of sulfate are widely used in industry. Sulfates occur widely in everyday life. Sulfates are salts of sulfuric acid and many are prepared from that acid. https://en.wikipedia.org/wiki/Sulfate /api/v1/variablename/sulfate/ -983 Sulfate, dissolved Dissolved Sulfate (SO4) /api/v1/variablename/sulfateDissolved/ -984 Sulfate, total Total Sulfate (SO4) /api/v1/variablename/sulfateTotal/ -985 Sulfide, dissolved Dissolved Sulfide /api/v1/variablename/sulfideDissolved/ -986 Sulfide, total Total sulfide /api/v1/variablename/sulfideTotal/ -987 Sulfur Sulfur (S) /api/v1/variablename/sulfur/ -988 Sulfur dioxide Sulfur dioxide (SO2) /api/v1/variablename/sulfurDioxide/ -989 Sulfur, dissolved Dissolved Sulfur (S) /api/v1/variablename/sulfurDissolved/ -990 Sulfur, organic Organic Sulfur /api/v1/variablename/sulfurOrganic/ -991 Sulfur, pyritic Pyritic Sulfur /api/v1/variablename/sulfurPyritic/ -992 Sunshine duration Sunshine duration /api/v1/variablename/sunshineDuration/ -993 Superoxide dismutase, activity Superoxide dismutase (SOD) activity /api/v1/variablename/superoxideDismutaseActivity/ -994 Superoxide dismutase, delta cycle threshold Delta cycle threshold for superoxide dismutase (sod). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for sod is the difference between the cycle threshold (Ct) of sod gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin). /api/v1/variablename/superoxideDismutaseDeltaCycleThreshold/ -995 SUVA254 Specific ultraviolet absorbance at 254 nm. Determined by absorbance normalized to DOC concentration. /api/v1/variablename/SUVA254/ -1698 SUVA280 Specific ultraviolet absorbance at 280 nm. Determined by absorbance normalized to dissolved organic carbon (DOC) concentration. https://en.wikipedia.org/wiki/Specific_ultraviolet_absorbance /api/v1/variablename/SUVA280/ -996 Table overrun error count A counter which counts the number of datalogger table overrun errors /api/v1/variablename/tableOverrunErrorCount/ -1699 Tantalum Tantalum is a rare, hard, blue-gray, lustrous transition metal that is highly corrosion-resistant. It is part of the refractory metals group, which are widely used as minor components in alloys. https://en.wikipedia.org/wiki/Tantalum /api/v1/variablename/tantalum/ -997 Taxa count Count of unique taxa. A taxon (plural: taxa) is a group of one (or more) populations of organism(s), which is judged to be a unit. /api/v1/variablename/taxaCount/ -998 TDR waveform relative length Time domain reflextometry, apparent length divided by probe length. Square root of dielectric /api/v1/variablename/TDRWaveformRelativeLength/ -1700 Technetium Technetium is a chemical element with symbol Tc and atomic number 43. It is the lightest element whose isotopes are all radioactive; none are stable, excluding the fully ionized state of 97Tc. https://en.wikipedia.org/wiki/Technetium /api/v1/variablename/technetium/ -999 Temperature Temperature /api/v1/variablename/temperature/ -1000 Temperature change temperature change /api/v1/variablename/temperatureChange/ -1001 Temperature, datalogger Temperature, raw data from datalogger /api/v1/variablename/temperatureDatalogger/ -1002 Temperature, dew point Dew point temperature /api/v1/variablename/temperatureDewPoint/ -1003 Temperature, initial initial temperature before heating /api/v1/variablename/temperatureInitial/ -1004 Temperature, sensor Temperature, raw data from sensor /api/v1/variablename/temperatureSensor/ -1005 Temperature, transducer signal Temperature, raw data from sensor /api/v1/variablename/temperatureTransducerSignal/ -1701 Terbium Terbium is a chemical element with symbol Tb and atomic number 65. It is a silvery-white, rare earth metal that is malleable, ductile, and soft enough to be cut with a knife. https://en.wikipedia.org/wiki/Terbium /api/v1/variablename/terbium/ -1702 Terbium, dissolved Dissolved Terbium (Tb). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Terbium /api/v1/variablename/terbiumDissolved/ -1006 Terbufos Terbufos (C9H21O2PS3) /api/v1/variablename/terbufos/ -1007 Terpineol Terpineol (C10H18O) /api/v1/variablename/terpineol/ -1008 Tert-Amyl Methyl Ether Tert-Amyl Methyl Ether (C6H14O) /api/v1/variablename/tertAmylMethylEther/ -1009 Tertiary Butyl Alcohol Tertiary Butyl Alcohol (C4H10O) /api/v1/variablename/tertiaryButylAlcohol/ -1010 Tetracene Tetracene (C18H12), a polycyclic aromatic hydrocarbon (PAH), also known as naphthacene or benz[b]anthracene /api/v1/variablename/tetracene/ -1011 Tetrachloroethene Tetrachloroethene (C2Cl4) /api/v1/variablename/tetrachloroethene/ -1012 Tetraethylene glycol Tetraethylene glycol (C8H18O5) /api/v1/variablename/tetraethyleneGlycol/ -1013 Tetrahydrofuran Tetrahydrofuran (C4H8O) /api/v1/variablename/tetrahydrofuran/ -1014 Tetramethylnaphthalene Tetramethylnaphthalene (C10H4(CH3)4), a polycyclic aromatic hydrocarbon (PAH) /api/v1/variablename/tetramethylnaphthalene/ -1703 Thallium Thallium is a chemical element with symbol Tl and atomic number 81. It is a gray post-transition metal that is not found free in nature. When isolated, thallium resembles tin, but discolors when exposed to air. Chemists William Crookes and Claude-Auguste Lamy discovered thallium independently in 1861, in residues of sulfuric acid production. Both used the newly developed method of flame spectroscopy, in which thallium produces a notable green spectral line. https://en.wikipedia.org/wiki/Thallium /api/v1/variablename/thallium/ -1015 Thallium, dissolved Dissolved thallium (Tl). "dissolved" indicates measurement was made on a filtered sample. /api/v1/variablename/thalliumDissolved/ -1016 Thallium, distribution coefficient Ratio of concentrations of thallium in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/thalliumDistributionCoefficient/ -1017 Thallium, particulate Particulate thallium (Tl) in suspension /api/v1/variablename/thalliumParticulate/ -1018 Thallium, total Total thallium (Tl). "Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/thalliumTotal/ -1704 Thorium Thorium is a weakly radioactive metallic chemical element with symbol Th and atomic number 90. Thorium is silvery and tarnishes black when it is exposed to air, forming thorium dioxide; it is moderately hard, malleable, and has a high melting point. https://en.wikipedia.org/wiki/Thorium /api/v1/variablename/thorium/ -1019 Thorium Thorium (Th) /api/v1/variablename/thorium/ -1020 Thorium, dissolved Dissolved thorium. For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/thoriumDissolved/ -1021 Thorium-228 An isotope of thorium in the thorium-232 decay series /api/v1/variablename/thorium_228/ -1022 Thorium-230 An isotope of thorium in the thorium-232 decay series /api/v1/variablename/thorium_230/ -1023 Thorium-232 A radioactive isotope of thorium which undergoes alpha decay /api/v1/variablename/thorium_232/ -1024 Threshold A level above or below which an action is performed. /api/v1/variablename/threshold/ -1705 Throughfall In Hydrology, throughfall is the process which describes how wet leaves shed excess water onto the ground surface. These drops have greater erosive power because they are heavier than rain drops. Furthermore, where there is a high canopy, falling drops may reach terminal velocity, about 8 metres (26 ft), thus maximizing the drop's erosive potential. https://en.wikipedia.org/wiki/Throughfall /api/v1/variablename/throughfall/ -1025 THSW Index The THSW Index uses temperature, humidity, solar radiation, and wind speed to calculate an apparent temperature. /api/v1/variablename/THSWIndex/ -1706 Thulium Thulium is a chemical element with symbol Tm and atomic number 69. It is the thirteenth and third-last element in the lanthanide series. Like the other lanthanides, the most common oxidation state is +3, seen in its oxide, halides and other compounds; because it occurs so late in the series, however, the +2 oxidation state is also stabilized by the nearly full 4f shell that results. https://en.wikipedia.org/wiki/Thulium /api/v1/variablename/thulium/ -1707 Thulium, dissolved Dissolved Thulium (Tm). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Thulium /api/v1/variablename/thuliumDissolved/ -1026 THW Index The THW Index uses temperature, humidity, and wind speed to calculate an apparent temperature. /api/v1/variablename/THWIndex/ -1027 Tide stage Tidal stage /api/v1/variablename/tideStage/ -1029 Time Stamp The time at which a sensor produces output /api/v1/variablename/timeStamp/ -1028 Time, elapsed Time elapsed since an event occurred /api/v1/variablename/timeElapsed/ -1030 Tin, dissolved Dissolved tin (Sn). "Dissolved " indicates a the measurement was made on a filtered sample. /api/v1/variablename/tinDissolved/ -1031 Tin, total Total tin (Sn)."Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/tinTotal/ -1032 Titanium Titanium (Ti) /api/v1/variablename/titanium/ -1708 Titanium dioxide Titanium dioxide, also known as titanium(IV) oxide or titania, is the naturally occurring oxide of titanium, chemical formula TiO\n 2. When used as a pigment, it is called titanium white, Pigment White 6 (PW6), or CI 77891. https://en.wikipedia.org/wiki/Titanium_dioxide /api/v1/variablename/titaniumDioxide/ -1033 Titanium, dissolved Dissolved Titanium /api/v1/variablename/titaniumDissolved/ -1709 Titanium, total Total titanium (Ti) https://en.wikipedia.org/wiki/Titanium /api/v1/variablename/titaniumTotal/ -1034 Toluene Toluene (C6H5CH3) /api/v1/variablename/toluene/ -1710 Topographic Wetness Index (TWI) Topographic wetness index (TWI), also known as the compound topographic index (CTI), is a steady state wetness index. It is commonly used to quantify topographic control on hydrological processes. https://en.wikipedia.org/wiki/Topographic_wetness_index /api/v1/variablename/topographicWetnessIndex/ -1037 trans-1,2-Dichloroethene trans-1,2-Dichloroethene (C2H2Cl2) /api/v1/variablename/trans_1_2_Dichloroethene/ -1038 trans-1,3-Dichloropropene trans-1,3-Dichloropropene (C3H4Cl2) /api/v1/variablename/trans_1_3_Dichloropropene/ -1035 Transient species coverage Areal coverage of transient species /api/v1/variablename/transientSpeciesCoverage/ -1036 Transpiration Transpiration /api/v1/variablename/transpiration/ -1039 Tributoxyethyl phosphate Tributoxyethyl phosphate (C42H87O13P) /api/v1/variablename/tributoxyethylPhosphate/ -1040 Trichloroethene Trichloroethene (C2HCl3) /api/v1/variablename/trichloroethene/ -1041 Triethylene glycol Triethylene glycol (C6H14O4) /api/v1/variablename/triethyleneGlycol/ -1042 Trifluralin Trifluralin (C13H16F3N3O4) /api/v1/variablename/trifluralin/ -1043 Triphenylene Triphenylene (C18H12) /api/v1/variablename/triphenylene/ -1044 Tritium (3H), Delta T of H2O Isotope 3H of water /api/v1/variablename/tritium_3H_DeltaTOfH2O/ -1045 TSI Carlson Trophic State Index is a measurement of eutrophication based on Secchi depth /api/v1/variablename/TSI/ -1046 Turbidity Turbidity /api/v1/variablename/turbidity/ -1538 Ultraviolet Radation Index The global solar UV index (UVI) was developed as an easy-to-understand measure of biologically effective UV radiation with a view to promote public awareness of the risks of UV radiation exposure and sun protection. In the initial work done on UVI in Canada, a typical midday summer erythemal irradiance of 250 mW.m-2 was found leading to the (arbitrary) definition of one UV index equal to an erythemally weighted irradiance of 25 mW.m-2. This gives a typical range of UVI 0 to 11+. /api/v1/variablename/ultravioletRadiationIndex/ -1539 Ultraviolet Radiation Dose A measure of the ability of ultraviolet radiation, as a function of wavelength, to produce just perceptible erythema in human skin. /api/v1/variablename/ultravioletRadiationDose/ -1047 Uranium Uranium (U) /api/v1/variablename/uranium/ -1048 Uranium, dissolved Dissolved Uranium. For chemical terms, dissolved indicates a filtered sample. /api/v1/variablename/uraniumDissolved/ -1049 Uranium-234 An isotope of uranium in the uranium-238 decay series /api/v1/variablename/uranium_234/ -1050 Uranium-235 An isotope of uranium that can sustain fission chain reaction /api/v1/variablename/uranium_235/ -1051 Uranium-238 Uranium's most common isotope /api/v1/variablename/uranium_238/ -1052 Urea Urea ((NH2)2CO) /api/v1/variablename/urea/ -1053 Urea flux Urea ((NH2)2CO) flux /api/v1/variablename/ureaFlux/ -1054 Vanadium, dissolved Dissolved vanadium (V). "Dissolved" indicates the measurement was made on a filtered sample. /api/v1/variablename/vanadiumDissolved/ -1055 Vanadium, particulate Particulate vanadium (V) in suspension /api/v1/variablename/vanadiumParticulate/ -1056 Vanadium, total Total vanadium (V). "Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/vanadiumTotal/ -1057 Vapor pressure The pressure of a vapor in equilibrium with its non-vapor phases /api/v1/variablename/vaporPressure/ -1058 Vapor pressure deficit The difference between the actual water vapor pressure and the saturation of water vapor pressure at a particular temperature. /api/v1/variablename/vaporPressureDeficit/ -1713 Vegetation type Vegetation is an assemblage of plant species and the ground cover they provide. https://en.wikipedia.org/wiki/Vegetation /api/v1/variablename/vegetationType/ -1059 Velocity The velocity of a substance, fluid or object /api/v1/variablename/velocity/ -1714 Vermiculite Vermiculite is a hydrous phyllosilicate mineral. It undergoes significant expansion when heated. Exfoliation occurs when the mineral is heated sufficiently, and the effect is routinely produced in commercial furnaces. https://en.wikipedia.org/wiki/Vermiculite /api/v1/variablename/vermiculite/ -1060 Visibility Visibility /api/v1/variablename/visibility/ -1061 Voltage Voltage or Electrical Potential /api/v1/variablename/voltage/ -1062 Volume Volume. To quantify discharge or hydrograph volume or some other volume measurement. /api/v1/variablename/volume/ -1063 Volumetric water content Volume of liquid water relative to bulk volume. Used for example to quantify soil moisture /api/v1/variablename/volumetricWaterContent/ -1064 Watchdog error count A counter which counts the number of total datalogger watchdog errors /api/v1/variablename/watchdogErrorCount/ -1065 Water column equivalent height, absolute The absolute pressure (combined water + barometric) on a sensor expressed as the height of an equivalent column of water. /api/v1/variablename/waterColumnEquivalentHeightAbsolute/ -1066 Water column equivalent height, barometric Barometric pressure expressed as an equivalent height of water over the sensor. /api/v1/variablename/waterColumnEquivalentHeightBarometric/ -1067 Water Content Quantity of water contained in a material or organism /api/v1/variablename/waterContent/ -1068 Water depth Water depth is the distance between the water surface and the bottom of the water body at a specific location specified by the site location and offset. /api/v1/variablename/waterDepth/ -1069 Water depth, averaged Water depth averaged over a channel cross-section or water body. Averaging method to be specified in methods. /api/v1/variablename/waterDepthAveraged/ -1070 Water flux Water Flux /api/v1/variablename/waterFlux/ -1071 Water level Water level relative to datum. The datum may be local or global such as NGVD 1929 and should be specified in the method description for associated data values. /api/v1/variablename/waterLevel/ -1072 Water potential Water potential is the potential energy of water relative to pure free water (e.g. deionized water) in reference conditions. It quantifies the tendency of water to move from one area to another due to osmosis, gravity, mechanical pressure, or matrix effects including surface tension. /api/v1/variablename/waterPotential/ -1073 Water Use, Agriculture Water pumped for Agriculture /api/v1/variablename/waterUseAgriculture/ -1074 Water Use, Commercial + Industrial + Power Water pumped by commercial, industrial users. /api/v1/variablename/waterUseCommercialIndustrialPower/ -1075 Water Use, Domestic wells Water pumped by domestic wells; residents and landowners not using public supply. Nonagriculture wells. /api/v1/variablename/waterUseDomesticWells/ -1076 Water Use, Public Supply Water supplied by a public utility /api/v1/variablename/waterUsePublicSupply/ -1077 Water Use, Recreation Recreational water use, for example golf courses. /api/v1/variablename/waterUseRecreation/ -1078 Water vapor concentration Water vapor concentration /api/v1/variablename/waterVaporConcentration/ -1079 Water vapor density Water vapor density /api/v1/variablename/waterVaporDensity/ -1080 Wave height The height of a surface wave, measured as the difference in elevation between the wave crest and an adjacent trough. /api/v1/variablename/waveHeight/ -1081 Weather conditions Weather conditions /api/v1/variablename/weatherConditions/ -1082 Well flow rate Flow rate from well while pumping /api/v1/variablename/wellFlowRate/ -1083 Wellhead pressure The pressure exerted by the fluid at the wellhead or casinghead after the well has been shut off for a period of time, typically 24 hours /api/v1/variablename/wellheadPressure/ -1084 Wind chill The effect of wind on the temperature felt on human skin. /api/v1/variablename/windChill/ -1085 Wind direction Wind direction /api/v1/variablename/windDirection/ -1086 Wind gust direction Direction of gusts of wind /api/v1/variablename/windGustDirection/ -1087 Wind gust speed Speed of gusts of wind /api/v1/variablename/windGustSpeed/ -1088 Wind Run The length of flow of air past a point over a time interval. Windspeed times the interval of time. /api/v1/variablename/windRun/ -1089 Wind speed Wind speed /api/v1/variablename/windSpeed/ -1090 Wind stress Drag or trangential force per unit area exerted on a surface by the adjacent layer of moving air /api/v1/variablename/windStress/ -1091 Wrack coverage Areal coverage of dead vegetation /api/v1/variablename/wrackCoverage/ -1092 Xylenes, total Total xylenes: C6H4(CH3)2 /api/v1/variablename/xylenesTotal/ -1093 Xylosidase An enzyme with system name 4-beta-D-xylan xylohydrolase.[1][2] This enzyme catalyses the following chemical reaction: Hydrolysis of (1->4)-beta-D-xylans, to remove successive D-xylose residues from the non-reducing termini. https://en.wikipedia.org/wiki/Xylan_1,4-b-xylosidase /api/v1/variablename/xylosidase/ -1717 Ytterbium Ytterbium is a chemical element with symbol Yb and atomic number 70. It is the fourteenth and penultimate element in the lanthanide series, which is the basis of the relative stability of its +2 oxidation state. https://en.wikipedia.org/wiki/Ytterbium /api/v1/variablename/ytterbium/ -1718 Ytterbium, dissolved Dissolved Ytterbium (Yb). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Ytterbium /api/v1/variablename/ytterbiumDissolved/ -1719 Yttrium Yttrium is a chemical element with symbol Y and atomic number 39. It is a silvery-metallic transition metal chemically similar to the lanthanides and has often been classified as a "rare-earth element". https://en.wikipedia.org/wiki/Yttrium /api/v1/variablename/yttrium/ -1720 Yttrium, dissolved Dissolved Yttrium (Y). "Dissolved " indicates a the measurement was made on a filtered sample. https://en.wikipedia.org/wiki/Yttrium /api/v1/variablename/yttriumDissolved/ -1094 Zeaxanthin The phytoplankton pigment Zeaxanthin /api/v1/variablename/zeaxanthin/ -1721 Zinc Zinc is a chemical element with symbol Zn and atomic number 30. It is the first element in group 12 of the periodic table. In some respects zinc is chemically similar to magnesium: both elements exhibit only one normal oxidation state (+2), and the Zn2+ and Mg2+ ions are of similar size. Zinc is the 24th most abundant element in Earth's crust and has five stable isotopes. The most common zinc ore is sphalerite (zinc blende), a zinc sulfide mineral. The largest workable lodes are in Australia, Asia, and the United States. Zinc is refined by froth flotation of the ore, roasting, and final extraction using electricity (electrowinning). https://en.wikipedia.org/wiki/Zinc /api/v1/variablename/zinc/ -1095 Zinc, dissolved Dissolved Zinc (Zn) /api/v1/variablename/zincDissolved/ -1096 Zinc, distribution coefficient Ratio of concentrations of zinc in two phases in equilibrium with each other. Phases must be specified. /api/v1/variablename/zincDistributionCoefficient/ -1097 Zinc, particulate Particulate zinc (Zn) in suspension /api/v1/variablename/zincParticulate/ -1098 Zinc, total Total zinc (Zn)."Total" indicates was measured on a whole water (unfiltered) sample. /api/v1/variablename/zincTotal/ -1099 Zircon, dissolved Dissolved Zircon (Zr) /api/v1/variablename/zirconDissolved/ -1722 Zirconium Zirconium is a chemical element with symbol Zr and atomic number 40. The name zirconium is taken from the name of the mineral zircon, the most important source of zirconium. https://en.wikipedia.org/wiki/Zirconium /api/v1/variablename/zirconium/ -1100 Zirconium, dissolved Dissolved Zirconium /api/v1/variablename/zirconiumDissolved/ -1101 Zirconium-95 A radioactive isotope of zirconium with a half-life of 63 days /api/v1/variablename/zirconium_95/ -1102 Zooplankton Zooplanktonic organisms, non-specific /api/v1/variablename/zooplankton/ -\. - - --- --- Data for Name: hs_tools_resource_apphomepageurl; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_apphomepageurl (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_helppageurl; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_helppageurl (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_issuespageurl; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_issuespageurl (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_mailinglisturl; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_mailinglisturl (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_requesturlbase; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_requesturlbase (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_requesturlbaseaggregation; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_requesturlbaseaggregation (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_requesturlbasefile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_requesturlbasefile (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_roadmap; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_roadmap (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_showonopenwithlist; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_showonopenwithlist (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_sourcecodeurl; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_sourcecodeurl (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedaggtypechoices; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedaggtypechoices (id, description) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedaggtypes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedaggtypes (id, object_id, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedaggtypes_supported_agg_types; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedaggtypes_supported_agg_types (id, supportedaggtypes_id, supportedaggtypechoices_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedfileextensions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedfileextensions (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedrestypechoices; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedrestypechoices (id, description) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedrestypes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedrestypes (id, object_id, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedrestypes_supported_res_types; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedrestypes_supported_res_types (id, supportedrestypes_id, supportedrestypechoices_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedsharingstatus; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedsharingstatus (id, object_id, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedsharingstatus_sharing_status; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedsharingstatus_sharing_status (id, supportedsharingstatus_id, supportedsharingstatuschoices_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_supportedsharingstatuschoices; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_supportedsharingstatuschoices (id, description) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_testingprotocolurl; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_testingprotocolurl (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_toolicon; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_toolicon (id, object_id, content_type_id, value, data_url) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_toolmetadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_toolmetadata (coremetadata_ptr_id, approved) FROM stdin; -\. - - --- --- Data for Name: hs_tools_resource_toolversion; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tools_resource_toolversion (id, object_id, value, content_type_id) FROM stdin; -\. - - --- --- Data for Name: hs_tracking_session; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tracking_session (id, begin, visitor_id) FROM stdin; -1 2016-06-23 17:06:32.174288+00 1 -2 2016-06-23 17:07:55.65815+00 2 -3 2017-02-02 16:16:56.853803+00 3 -4 2017-02-02 17:23:27.983199+00 1 -5 2017-02-02 17:27:56.526549+00 1 -6 2017-02-02 17:28:40.81141+00 6 -7 2017-05-18 23:38:49.595277+00 7 -8 2017-08-18 14:41:26.36915+00 1 -9 2017-09-01 18:10:51.832185+00 1 -10 2017-09-01 18:34:26.166302+00 10 -11 2019-09-30 17:57:55.500498+00 11 -12 2019-09-30 18:09:05.243894+00 11 -13 2019-09-30 18:15:10.774772+00 13 -14 2019-09-30 18:16:47.439471+00 14 -15 2019-09-30 18:17:35.521064+00 15 -16 2019-09-30 18:18:12.703611+00 16 -17 2019-09-30 18:19:04.816508+00 17 -18 2019-09-30 18:19:43.166766+00 18 -19 2019-09-30 18:20:27.815849+00 19 -20 2019-09-30 18:21:08.914634+00 20 -21 2019-09-30 18:22:01.7408+00 21 -22 2019-09-30 18:23:03.093017+00 22 -23 2019-09-30 18:23:48.71474+00 23 -24 2019-09-30 18:39:36.997555+00 19 -25 2019-09-30 18:39:59.140064+00 23 -26 2019-09-30 18:40:11.46773+00 14 -27 2019-09-30 18:40:53.193809+00 15 -28 2019-09-30 18:41:28.360137+00 16 -29 2019-09-30 18:42:07.479098+00 17 -30 2019-09-30 18:42:50.316373+00 18 -31 2019-09-30 18:43:34.105367+00 19 -32 2019-09-30 18:44:28.950567+00 20 -33 2019-09-30 18:46:05.210065+00 21 -34 2019-09-30 18:50:41.856229+00 22 -35 2019-09-30 18:51:17.472283+00 35 -36 2019-10-01 18:18:49.168243+00 13 -37 2019-10-01 18:19:35.540509+00 37 -38 2019-12-11 18:18:49.853637+00 38 -39 2019-12-11 18:21:28.876702+00 14 -40 2019-12-11 18:22:10.835819+00 40 -41 2019-12-11 18:51:21.126534+00 14 -42 2019-12-11 18:52:13.449517+00 15 -43 2019-12-11 18:53:22.325041+00 15 -44 2019-12-11 18:54:15.440364+00 16 -45 2019-12-11 18:54:59.853972+00 16 -46 2019-12-11 18:55:53.946522+00 17 -47 2019-12-11 18:56:41.418269+00 18 -48 2019-12-11 18:57:45.932821+00 19 -49 2019-12-11 18:58:54.722558+00 20 -50 2019-12-11 19:06:56.058024+00 21 -51 2019-12-11 19:07:45.575495+00 22 -52 2019-12-11 19:08:44.218897+00 13 -53 2019-12-11 19:09:35.274121+00 53 -54 2019-12-11 20:03:19.887428+00 38 -55 2019-12-11 20:09:19.687242+00 23 -56 2019-12-11 20:21:52.603499+00 56 -57 2025-06-10 23:07:52.468851+00 1 -58 2025-06-10 23:14:11.75079+00 1 -59 2025-06-10 23:15:35.296414+00 59 -60 2025-06-10 23:35:06.225758+00 59 -61 2025-06-10 23:50:06.761422+00 59 -62 2025-06-10 23:50:06.855163+00 1 -63 2025-06-11 02:12:34.225855+00 1 -64 2025-06-11 02:12:34.870957+00 1 -65 2025-06-11 02:14:23.664609+00 62 -66 2025-06-11 02:47:54.346915+00 59 -67 2025-06-11 02:50:43.357948+00 1 -68 2025-06-11 02:51:03.044769+00 59 -69 2025-06-11 02:54:58.4208+00 59 -70 2025-06-11 03:21:16.587798+00 59 -71 2025-06-11 15:17:50.802026+00 59 -72 2025-06-11 15:39:27.559769+00 59 -74 2025-06-11 15:53:15.751022+00 1 -73 2025-06-11 15:52:43.526586+00 59 -75 2025-06-11 15:56:02.85852+00 68 -76 2025-06-11 15:57:09.959855+00 69 -77 2025-06-11 15:57:27.754463+00 59 -\. - - --- --- Data for Name: hs_tracking_variable; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tracking_variable (id, "timestamp", name, type, value, session_id, last_resource_id, resource_id, rest, landing) FROM stdin; -1 2016-06-23 17:06:32.176345+00 begin_session 4 none 1 \N \N f f -2 2016-06-23 17:06:32.178545+00 visit 2 /admin/login/ 1 \N \N f f -3 2016-06-23 17:06:35.724699+00 visit 2 /admin/ 1 \N \N f f -4 2016-06-23 17:06:39.943401+00 visit 2 /admin/pages/page/ 1 \N \N f f -5 2016-06-23 17:06:40.044229+00 visit 2 /admin/jsi18n/ 1 \N \N f f -6 2016-06-23 17:06:42.609026+00 visit 2 /admin/pages/richtextpage/add/ 1 \N \N f f -7 2016-06-23 17:06:42.678194+00 visit 2 /admin/jsi18n/ 1 \N \N f f -8 2016-06-23 17:07:03.948786+00 visit 2 /admin_keywords_submit/ 1 \N \N f f -9 2016-06-23 17:07:04.469555+00 visit 2 /admin/pages/page/ 1 \N \N f f -10 2016-06-23 17:07:04.503762+00 visit 2 /admin/jsi18n/ 1 \N \N f f -11 2016-06-23 17:07:12.764509+00 visit 2 /admin_page_ordering/ 1 \N \N f f -12 2016-06-23 17:07:31.574614+00 visit 2 /admin_page_ordering/ 1 \N \N f f -13 2016-06-23 17:07:40.236028+00 visit 2 / 1 \N \N f f -14 2016-06-23 17:07:55.65976+00 begin_session 4 none 2 \N \N f f -15 2016-06-23 17:07:55.661515+00 visit 2 / 2 \N \N f f -16 2016-06-23 17:17:35.201336+00 visit 2 / 2 \N \N f f -17 2016-06-23 17:17:37.904373+00 visit 2 /accounts/login/ 2 \N \N f f -18 2016-06-23 17:17:48.822462+00 visit 2 /help/ 2 \N \N f f -19 2016-06-23 17:17:53.399003+00 visit 2 /accounts/login/ 2 \N \N f f -20 2016-06-23 17:17:57.673472+00 visit 2 /search/ 2 \N \N f f -21 2016-06-23 17:17:59.819554+00 visit 2 / 2 \N \N f f -22 2017-02-02 16:16:56.855351+00 begin_session 4 none 3 \N \N f f -23 2017-02-02 16:16:56.856808+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/ 3 \N \N f f -24 2017-02-02 16:17:02.82735+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/robots.txt 3 \N \N f f -25 2017-02-02 17:23:27.986851+00 begin_session 4 none 4 \N \N f f -26 2017-02-02 17:23:27.990782+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/robots.txt 4 \N \N f f -27 2017-02-02 17:23:31.342204+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/ 4 \N \N f f -28 2017-02-02 17:24:38.198471+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/admin/login/ 4 \N \N f f -29 2017-02-02 17:24:42.204342+00 login 4 none 4 \N \N f f -30 2017-02-02 17:24:42.340796+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/ 4 \N \N f f -31 2017-02-02 17:24:54.087076+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/ 4 \N \N f f -32 2017-02-02 17:24:54.160685+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -33 2017-02-02 17:24:55.856132+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/1/ 4 \N \N f f -34 2017-02-02 17:24:55.901448+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -35 2017-02-02 17:25:53.90589+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/ 4 \N \N f f -36 2017-02-02 17:25:53.937875+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -37 2017-02-02 17:25:56.282825+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/ 4 \N \N f f -38 2017-02-02 17:25:56.311809+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -39 2017-02-02 17:25:57.523103+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/1/ 4 \N \N f f -40 2017-02-02 17:25:57.555392+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -41 2017-02-02 17:26:10.302942+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/ 4 \N \N f f -42 2017-02-02 17:26:10.334185+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -43 2017-02-02 17:26:11.566495+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/1/ 4 \N \N f f -44 2017-02-02 17:26:11.598047+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -45 2017-02-02 17:26:32.836314+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/ 4 \N \N f f -46 2017-02-02 17:26:32.867675+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -47 2017-02-02 17:26:34.341114+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/1/ 4 \N \N f f -48 2017-02-02 17:26:34.37208+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -49 2017-02-02 17:26:48.146126+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/ 4 \N \N f f -50 2017-02-02 17:26:48.189508+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -51 2017-02-02 17:26:50.025204+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/auth/group/1/ 4 \N \N f f -52 2017-02-02 17:26:50.056122+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -53 2017-02-02 17:27:30.617921+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/pages/page/ 4 \N \N f f -54 2017-02-02 17:27:30.663401+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 4 \N \N f f -55 2017-02-02 17:27:38.952301+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/ 4 \N \N f f -56 2017-02-02 17:27:40.825451+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/help/ 4 \N \N f f -57 2017-02-02 17:27:43.346591+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/ 4 \N \N f f -58 2017-02-02 17:27:44.583727+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/my-resources/ 4 \N \N f f -59 2017-02-02 17:27:46.165948+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/search/ 4 \N \N f f -60 2017-02-02 17:27:47.261057+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/collaborate/ 4 \N \N f f -61 2017-02-02 17:27:51.150329+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/my-resources/ 4 \N \N f f -62 2017-02-02 17:27:52.430797+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/ 4 \N \N f f -63 2017-02-02 17:27:56.42667+00 logout 4 none 4 \N \N f f -64 2017-02-02 17:27:56.528123+00 begin_session 4 none 5 \N \N f f -65 2017-02-02 17:27:56.529615+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/ 5 \N \N f f -66 2017-02-02 17:28:07.807214+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/admin/login/ 5 \N \N f f -67 2017-02-02 17:28:12.325126+00 login 4 none 5 \N \N f f -68 2017-02-02 17:28:12.448623+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/ 5 \N \N f f -69 2017-02-02 17:28:28.298125+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/robots/rule/ 5 \N \N f f -70 2017-02-02 17:28:28.332412+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 5 \N \N f f -71 2017-02-02 17:28:30.150827+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/robots/url/ 5 \N \N f f -72 2017-02-02 17:28:30.180193+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/admin/jsi18n/ 5 \N \N f f -73 2017-02-02 17:28:38.218862+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=Unspecified user_email_domain=com request_url=/ 5 \N \N f f -74 2017-02-02 17:28:40.710661+00 logout 4 none 5 \N \N f f -75 2017-02-02 17:28:40.81281+00 begin_session 4 none 6 \N \N f f -76 2017-02-02 17:28:40.814548+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/ 6 \N \N f f -77 2017-05-18 23:38:49.596672+00 begin_session 2 user_ip=192.168.56.1 user_type=None user_email_domain=None 7 \N \N f f -78 2017-05-18 23:38:49.598486+00 visit 2 user_ip=192.168.56.1 http_method=GET http_code=200 user_type=None user_email_domain=None request_url=/ 7 \N \N f f -79 2017-08-18 14:41:26.37093+00 begin_session 2 user_ip=192.168.56.1|user_type=None|user_email_domain=None 8 \N \N f f -80 2017-08-18 14:41:26.372707+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 8 \N \N f f -81 2017-08-18 14:41:26.68745+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 8 \N \N f f -82 2017-08-18 14:41:31.109255+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/help/ 8 \N \N f f -83 2017-08-18 14:41:31.330216+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 8 \N \N f f -84 2017-08-18 14:41:59.495708+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/terms-of-use/ 8 \N \N f f -85 2017-08-18 14:41:59.707129+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 8 \N \N f f -86 2017-08-18 14:42:09.01361+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/privacy/ 8 \N \N f f -87 2017-08-18 14:42:09.222581+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 8 \N \N f f -88 2017-08-18 14:43:08.418714+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 8 \N \N f f -89 2017-08-18 14:43:08.640749+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 8 \N \N f f -90 2017-08-18 14:43:23.172241+00 login 2 user_ip=192.168.56.1|user_type=Unspecified|user_email_domain=com 8 \N \N f f -91 2017-08-18 14:43:23.273113+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=com|request_url=/ 8 \N \N f f -92 2017-08-18 14:43:23.540091+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=com|request_url=/hsapi/userInfo/ 8 \N \N f f -93 2017-08-18 14:43:30.327452+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=com|request_url=/user/4/ 8 \N \N f f -94 2017-08-18 14:43:30.607109+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=com|request_url=/hsapi/userInfo/ 8 \N \N f f -95 2017-08-18 14:44:04.119077+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/user/4/ 8 \N \N f f -96 2017-08-18 14:44:04.386389+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 8 \N \N f f -97 2017-08-18 14:49:06.870383+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 8 \N \N f f -98 2017-08-18 14:49:11.581645+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 8 \N \N f f -99 2017-08-18 14:49:11.663938+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 8 \N \N f f -100 2017-08-18 14:49:15.093103+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/9/ 8 \N \N f f -101 2017-08-18 14:49:15.170222+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 8 \N \N f f -102 2017-08-18 14:49:36.961493+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 8 \N \N f f -103 2017-08-18 14:49:37.017793+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 8 \N \N f f -104 2017-08-18 14:49:39.935549+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/9/ 8 \N \N f f -105 2017-08-18 14:49:39.986086+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 8 \N \N f f -106 2017-08-18 14:49:51.985418+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 8 \N \N f f -107 2017-08-18 14:49:52.030657+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 8 \N \N f f -108 2017-09-01 18:10:51.835432+00 begin_session 2 user_ip=192.168.56.1|user_type=None|user_email_domain=None 9 \N \N f f -109 2017-09-01 18:10:51.838809+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 9 \N \N f f -110 2017-09-01 18:10:52.092611+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 9 \N \N f f -111 2017-09-01 18:10:54.913194+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 9 \N \N f f -112 2017-09-01 18:10:55.126297+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 9 \N \N f f -113 2017-09-01 18:11:00.096183+00 login 2 user_ip=192.168.56.1|user_type=|user_email_domain=com 9 \N \N f f -114 2017-09-01 18:11:00.198224+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/ 9 \N \N f f -115 2017-09-01 18:11:00.549976+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -116 2017-09-01 18:11:11.925214+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 9 \N \N f f -117 2017-09-01 18:11:16.792542+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 9 \N \N f f -118 2017-09-01 18:11:16.896024+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -119 2017-09-01 18:11:22.014511+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -120 2017-09-01 18:11:22.130432+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -121 2017-09-01 18:11:24.415939+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/5/ 9 \N \N f f -122 2017-09-01 18:11:24.523589+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -123 2017-09-01 18:12:13.301857+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/5/delete/ 9 \N \N f f -124 2017-09-01 18:12:16.676691+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -125 2017-09-01 18:12:16.721076+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -126 2017-09-01 18:12:25.227323+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/link/add/ 9 \N \N f f -127 2017-09-01 18:12:25.306909+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -128 2017-09-01 18:12:49.855774+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -129 2017-09-01 18:12:49.905028+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -130 2017-09-01 18:13:03.552141+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/link/add/ 9 \N \N f f -131 2017-09-01 18:13:03.616113+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -132 2017-09-01 18:13:41.882203+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -133 2017-09-01 18:13:41.931486+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -134 2017-09-01 18:13:44.496554+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/link/14/ 9 \N \N f f -135 2017-09-01 18:13:44.550091+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -136 2017-09-01 18:13:50.290076+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -137 2017-09-01 18:13:50.335162+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -138 2017-09-01 18:14:07.489304+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin_page_ordering/ 9 \N \N f f -139 2017-09-01 18:14:24.062034+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin_page_ordering/ 9 \N \N f f -140 2017-09-01 18:14:28.216599+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin_page_ordering/ 9 \N \N f f -141 2017-09-01 18:14:31.06684+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/ 9 \N \N f f -142 2017-09-01 18:14:31.44987+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -143 2017-09-01 18:23:19.040525+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/terms-of-use/ 9 \N \N f f -144 2017-09-01 18:23:19.309727+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -145 2017-09-01 18:23:25.330575+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/privacy/ 9 \N \N f f -146 2017-09-01 18:23:25.573448+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -147 2017-09-01 18:23:30.396642+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/sitemap/ 9 \N \N f f -148 2017-09-01 18:23:30.659632+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -149 2017-09-01 18:24:24.515638+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 9 \N \N f f -150 2017-09-01 18:24:28.71583+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -151 2017-09-01 18:24:28.778898+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -152 2017-09-01 18:24:31.13236+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/9/ 9 \N \N f f -153 2017-09-01 18:24:31.174932+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -154 2017-09-01 18:25:47.92566+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin_keywords_submit/ 9 \N \N f f -155 2017-09-01 18:25:48.319793+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -156 2017-09-01 18:25:48.386326+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -157 2017-09-01 18:26:05.228541+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/10/ 9 \N \N f f -158 2017-09-01 18:26:05.298139+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -159 2017-09-01 18:26:27.274143+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin_keywords_submit/ 9 \N \N f f -160 2017-09-01 18:26:27.602237+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -161 2017-09-01 18:26:27.64587+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -162 2017-09-01 18:27:19.67518+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/ 9 \N \N f f -163 2017-09-01 18:27:20.051144+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -164 2017-09-01 18:27:42.390151+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 9 \N \N f f -165 2017-09-01 18:27:45.715743+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -166 2017-09-01 18:27:45.772333+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -167 2017-09-01 18:27:48.44955+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/richtextpage/9/ 9 \N \N f f -168 2017-09-01 18:27:48.516585+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -169 2017-09-01 18:28:03.248267+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/ 9 \N \N f f -170 2017-09-01 18:28:03.530175+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -171 2017-09-01 18:28:50.577674+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 9 \N \N f f -172 2017-09-01 18:28:59.241291+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 9 \N \N f f -173 2017-09-01 18:28:59.308313+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -174 2017-09-01 18:29:04.107942+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/add/ 9 \N \N f f -175 2017-09-01 18:29:04.159245+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -176 2017-09-01 18:29:42.523937+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/add/ 9 \N \N f f -177 2017-09-01 18:29:42.599272+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -178 2017-09-01 18:29:59.362776+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/sites/site/ 9 \N \N f f -179 2017-09-01 18:29:59.414452+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -180 2017-09-01 18:30:04.134304+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 9 \N \N f f -181 2017-09-01 18:30:04.181827+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -182 2017-09-01 18:30:08.469813+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/sites/site/ 9 \N \N f f -183 2017-09-01 18:30:10.861791+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/sites/site/ 9 \N \N f f -184 2017-09-01 18:30:12.092742+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 9 \N \N f f -185 2017-09-01 18:30:14.572093+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/add/ 9 \N \N f f -186 2017-09-01 18:30:14.628338+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -187 2017-09-01 18:30:38.236852+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 9 \N \N f f -188 2017-09-01 18:30:38.284108+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -189 2017-09-01 18:30:41.966393+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/add/ 9 \N \N f f -190 2017-09-01 18:30:42.024719+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -191 2017-09-01 18:33:12.02615+00 visit 2 user_ip=192.168.56.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/add/ 9 \N \N f f -192 2017-09-01 18:33:12.085458+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -193 2017-09-01 18:33:16.62184+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 9 \N \N f f -194 2017-09-01 18:33:16.699057+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -195 2017-09-01 18:33:20.787212+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/1/ 9 \N \N f f -196 2017-09-01 18:33:20.862496+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -197 2017-09-01 18:33:32.516301+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/redirects/redirect/ 9 \N \N f f -198 2017-09-01 18:33:32.582932+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -199 2017-09-01 18:33:36.93989+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -200 2017-09-01 18:33:36.989427+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -201 2017-09-01 18:33:43.364234+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/link/6/ 9 \N \N f f -202 2017-09-01 18:33:43.423753+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 9 \N \N f f -203 2017-09-01 18:33:52.602182+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/pages/page/ 9 \N \N f f -204 2017-09-01 18:33:55.134136+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/ 9 \N \N f f -205 2017-09-01 18:33:55.528412+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 9 \N \N f f -206 2017-09-01 18:34:26.09324+00 logout 2 user_ip=192.168.56.1|user_type=|user_email_domain=com 9 \N \N f f -207 2017-09-01 18:34:26.167777+00 begin_session 2 user_ip=192.168.56.1|user_type=None|user_email_domain=None 10 \N \N f f -208 2017-09-01 18:34:26.169191+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 10 \N \N f f -209 2017-09-01 18:34:26.397144+00 visit 2 user_ip=192.168.56.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 10 \N \N f f -210 2019-09-30 17:57:55.504323+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 11 \N \N f f -211 2019-09-30 17:57:55.508278+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 11 \N \N f f -212 2019-09-30 17:57:55.966911+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 11 \N \N t f -213 2019-09-30 17:57:59.751277+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 11 \N \N f f -214 2019-09-30 17:58:00.6943+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 11 \N \N t f -215 2019-09-30 17:58:03.811134+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 11 \N \N f f -216 2019-09-30 17:58:03.995898+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 11 \N \N t f -217 2019-09-30 17:58:06.317204+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 11 \N \N f f -218 2019-09-30 17:58:06.590133+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 11 \N \N t f -219 2019-09-30 17:58:13.721229+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 11 \N \N t f -220 2019-09-30 17:58:17.874116+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 11 \N \N f f -221 2019-09-30 17:58:18.094568+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 11 \N \N t f -222 2019-09-30 17:58:20.113581+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 11 \N \N f f -223 2019-09-30 17:58:20.240612+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 11 \N \N t f -224 2019-09-30 17:58:24.604953+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=asdf 11 \N \N f f -225 2019-09-30 17:58:24.843114+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=asdf|request_url=/user/5/ 11 \N \N f f -226 2019-09-30 17:58:25.194396+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=asdf|request_url=/hsapi/userInfo/ 11 \N \N t f -227 2019-09-30 17:58:27.152066+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/user/5/ 11 \N \N f f -228 2019-09-30 17:58:27.326384+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 11 \N \N t f -229 2019-09-30 17:58:33.120773+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/collaborate/ 11 \N \N f f -230 2019-09-30 17:58:33.294851+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 11 \N \N t f -231 2019-09-30 17:58:37.608313+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/group/2 11 \N \N f f -232 2019-09-30 17:58:37.765757+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 11 \N \N t f -233 2019-09-30 18:09:05.080221+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=asdf 11 \N \N f f -234 2019-09-30 18:09:05.246864+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 12 \N \N f f -235 2019-09-30 18:09:05.250028+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 12 \N \N f f -236 2019-09-30 18:09:05.487249+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 12 \N \N t f -237 2019-09-30 18:09:06.939746+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 12 \N \N f f -238 2019-09-30 18:09:07.107199+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 12 \N \N t f -239 2019-09-30 18:09:08.883806+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 12 \N \N f f -240 2019-09-30 18:09:09.045807+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 12 \N \N t f -241 2019-09-30 18:13:15.185318+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 12 \N \N f f -242 2019-09-30 18:13:15.554138+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 12 \N \N t f -243 2019-09-30 18:13:19.227695+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/collaborate/ 12 \N \N f f -244 2019-09-30 18:13:19.387242+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 12 \N \N t f -245 2019-09-30 18:13:20.538773+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 12 \N \N f f -246 2019-09-30 18:13:20.713737+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 12 \N \N t f -247 2019-09-30 18:13:23.097894+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=asdf 12 \N \N f f -248 2019-09-30 18:13:23.3291+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/home/ 12 \N \N f f -249 2019-09-30 18:13:23.506126+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -250 2019-09-30 18:13:25.11788+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/collaborate/ 12 \N \N f f -251 2019-09-30 18:13:25.301243+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -252 2019-09-30 18:13:27.71171+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/group/2 12 \N \N f f -253 2019-09-30 18:13:27.915779+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -254 2019-09-30 18:13:30.569442+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/group/2 12 \N \N f f -255 2019-09-30 18:13:30.734444+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -256 2019-09-30 18:13:51.417236+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/collaborate/ 12 \N \N f f -257 2019-09-30 18:13:51.654507+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -258 2019-09-30 18:13:53.666403+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/search/ 12 \N \N f f -259 2019-09-30 18:13:53.896622+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -260 2019-09-30 18:13:55.194798+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/my-resources/ 12 \N \N f f -261 2019-09-30 18:13:55.345727+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=asdf|request_url=/hsapi/userInfo/ 12 \N \N t f -262 2019-09-30 18:15:10.668452+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=asdf 12 \N \N f f -263 2019-09-30 18:15:10.777053+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 13 \N \N f f -264 2019-09-30 18:15:10.779756+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 13 \N \N f f -265 2019-09-30 18:15:11.003238+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 13 \N \N t f -266 2019-09-30 18:15:34.370825+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 13 \N \N f f -267 2019-09-30 18:15:34.555139+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 13 \N \N t f -268 2019-09-30 18:15:36.711569+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 13 \N \N f f -269 2019-09-30 18:15:36.851437+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 13 \N \N t f -270 2019-09-30 18:16:14.85193+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 13 \N \N t f -271 2019-09-30 18:16:28.599404+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 13 \N \N f f -272 2019-09-30 18:16:28.850479+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 13 \N \N t f -273 2019-09-30 18:16:36.786326+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=com 13 \N \N f f -274 2019-09-30 18:16:37.120229+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=com|request_url=/user/6/ 13 \N \N f f -275 2019-09-30 18:16:37.497886+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=com|request_url=/hsapi/userInfo/ 13 \N \N t f -276 2019-09-30 18:16:39.365937+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/user/6/ 13 \N \N f f -277 2019-09-30 18:16:39.541636+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 13 \N \N t f -278 2019-09-30 18:16:47.245624+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=com 13 \N \N f f -279 2019-09-30 18:16:47.442529+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 14 \N \N f f -280 2019-09-30 18:16:47.445781+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 14 \N \N f f -281 2019-09-30 18:16:47.684585+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 14 \N \N t f -282 2019-09-30 18:16:50.095706+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 14 \N \N f f -283 2019-09-30 18:16:50.232062+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 14 \N \N t f -284 2019-09-30 18:17:04.222957+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 14 \N \N t f -285 2019-09-30 18:17:11.404118+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 14 \N \N f f -286 2019-09-30 18:17:11.707814+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 14 \N \N t f -287 2019-09-30 18:17:21.066558+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 14 \N \N f f -288 2019-09-30 18:17:21.291778+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/7/ 14 \N \N f f -289 2019-09-30 18:17:21.736307+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 14 \N \N t f -290 2019-09-30 18:17:24.119395+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/7/ 14 \N \N f f -291 2019-09-30 18:17:24.324152+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 14 \N \N t f -292 2019-09-30 18:17:35.41089+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 14 \N \N f f -293 2019-09-30 18:17:35.523061+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 15 \N \N f f -294 2019-09-30 18:17:35.52528+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 15 \N \N f f -295 2019-09-30 18:17:35.881448+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 15 \N \N t f -296 2019-09-30 18:17:37.485383+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 15 \N \N f f -297 2019-09-30 18:17:37.624375+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 15 \N \N t f -298 2019-09-30 18:17:54.925461+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 15 \N \N f f -299 2019-09-30 18:17:55.288144+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 15 \N \N t f -300 2019-09-30 18:18:01.53464+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 15 \N \N f f -301 2019-09-30 18:18:01.776155+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/8/ 15 \N \N f f -302 2019-09-30 18:18:02.212376+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 15 \N \N t f -303 2019-09-30 18:18:05.263855+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/8/ 15 \N \N f f -304 2019-09-30 18:18:05.426534+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 15 \N \N t f -305 2019-09-30 18:18:12.447503+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 15 \N \N f f -306 2019-09-30 18:18:12.707957+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 16 \N \N f f -307 2019-09-30 18:18:12.711889+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 16 \N \N f f -308 2019-09-30 18:18:12.910133+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 16 \N \N t f -309 2019-09-30 18:18:15.386704+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 16 \N \N f f -310 2019-09-30 18:18:15.645051+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 16 \N \N t f -311 2019-09-30 18:18:36.939022+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 16 \N \N t f -312 2019-09-30 18:18:43.6793+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 16 \N \N f f -313 2019-09-30 18:18:43.906999+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 16 \N \N t f -314 2019-09-30 18:18:51.668493+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 16 \N \N f f -315 2019-09-30 18:18:51.852881+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/9/ 16 \N \N f f -316 2019-09-30 18:18:52.225723+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 16 \N \N t f -317 2019-09-30 18:18:54.99579+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/9/ 16 \N \N f f -318 2019-09-30 18:18:55.173529+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 16 \N \N t f -319 2019-09-30 18:19:04.719225+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 16 \N \N f f -320 2019-09-30 18:19:04.819132+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 17 \N \N f f -321 2019-09-30 18:19:04.821703+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 17 \N \N f f -322 2019-09-30 18:19:05.029226+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 17 \N \N t f -323 2019-09-30 18:19:07.22068+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 17 \N \N f f -324 2019-09-30 18:19:07.346615+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 17 \N \N t f -325 2019-09-30 18:19:21.356249+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 17 \N \N t f -326 2019-09-30 18:19:27.576503+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 17 \N \N f f -327 2019-09-30 18:19:27.788684+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 17 \N \N t f -328 2019-09-30 18:19:33.319175+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 17 \N \N f f -329 2019-09-30 18:19:33.536471+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/10/ 17 \N \N f f -330 2019-09-30 18:19:33.890087+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 17 \N \N t f -331 2019-09-30 18:19:35.700237+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/10/ 17 \N \N f f -332 2019-09-30 18:19:35.907884+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 17 \N \N t f -333 2019-09-30 18:19:43.027524+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 17 \N \N f f -334 2019-09-30 18:19:43.169796+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 18 \N \N f f -335 2019-09-30 18:19:43.173764+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 18 \N \N f f -336 2019-09-30 18:19:43.434706+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 18 \N \N t f -337 2019-09-30 18:19:45.592322+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 18 \N \N f f -338 2019-09-30 18:19:45.752307+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 18 \N \N t f -339 2019-09-30 18:20:04.349395+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 18 \N \N t f -340 2019-09-30 18:20:11.103153+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 18 \N \N f f -341 2019-09-30 18:20:11.298605+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 18 \N \N t f -342 2019-09-30 18:20:22.605905+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 18 \N \N f f -343 2019-09-30 18:20:22.905666+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/11/ 18 \N \N f f -344 2019-09-30 18:20:23.355442+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 18 \N \N t f -345 2019-09-30 18:20:25.443709+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/11/ 18 \N \N f f -346 2019-09-30 18:20:25.679956+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 18 \N \N t f -347 2019-09-30 18:20:27.61087+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 18 \N \N f f -348 2019-09-30 18:20:27.81839+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 19 \N \N f f -349 2019-09-30 18:20:27.82304+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 19 \N \N f f -350 2019-09-30 18:20:28.076149+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 19 \N \N t f -351 2019-09-30 18:20:30.108654+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 19 \N \N f f -352 2019-09-30 18:20:30.369701+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 19 \N \N t f -353 2019-09-30 18:20:53.895232+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 19 \N \N f f -354 2019-09-30 18:20:54.104363+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 19 \N \N t f -355 2019-09-30 18:21:03.136764+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 19 \N \N f f -356 2019-09-30 18:21:03.353343+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/12/ 19 \N \N f f -357 2019-09-30 18:21:03.751276+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 19 \N \N t f -358 2019-09-30 18:21:05.483+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/12/ 19 \N \N f f -359 2019-09-30 18:21:05.645684+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 19 \N \N t f -360 2019-09-30 18:21:08.815132+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 19 \N \N f f -361 2019-09-30 18:21:08.917579+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 20 \N \N f f -362 2019-09-30 18:21:08.920458+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 20 \N \N f f -363 2019-09-30 18:21:09.095377+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 20 \N \N t f -364 2019-09-30 18:21:13.732909+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 20 \N \N f f -365 2019-09-30 18:21:13.93293+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 20 \N \N t f -366 2019-09-30 18:21:17.125306+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 20 \N \N f f -552 2019-09-30 18:50:41.85858+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 34 \N \N f f -367 2019-09-30 18:21:17.285254+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 20 \N \N t f -368 2019-09-30 18:21:38.203576+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 20 \N \N t f -369 2019-09-30 18:21:45.429556+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 20 \N \N f f -370 2019-09-30 18:21:45.675922+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 20 \N \N t f -371 2019-09-30 18:21:50.417153+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 20 \N \N f f -372 2019-09-30 18:21:50.637984+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/13/ 20 \N \N f f -373 2019-09-30 18:21:51.062257+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 20 \N \N t f -374 2019-09-30 18:21:53.568213+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/13/ 20 \N \N f f -375 2019-09-30 18:21:53.818481+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 20 \N \N t f -376 2019-09-30 18:22:01.594718+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 20 \N \N f f -377 2019-09-30 18:22:01.743091+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 21 \N \N f f -378 2019-09-30 18:22:01.746273+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 21 \N \N f f -379 2019-09-30 18:22:01.979857+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 21 \N \N t f -380 2019-09-30 18:22:03.781734+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 21 \N \N f f -381 2019-09-30 18:22:03.949611+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 21 \N \N t f -382 2019-09-30 18:22:26.939908+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 21 \N \N f f -383 2019-09-30 18:22:27.192617+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 21 \N \N t f -384 2019-09-30 18:22:36.084565+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 21 \N \N f f -385 2019-09-30 18:22:36.405693+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/14/ 21 \N \N f f -386 2019-09-30 18:22:36.87085+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 21 \N \N t f -387 2019-09-30 18:22:40.207478+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/14/ 21 \N \N f f -388 2019-09-30 18:22:40.376232+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 21 \N \N t f -389 2019-09-30 18:23:02.970582+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 21 \N \N f f -390 2019-09-30 18:23:03.095538+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 22 \N \N f f -391 2019-09-30 18:23:03.098321+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 22 \N \N f f -392 2019-09-30 18:23:03.347801+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 22 \N \N t f -393 2019-09-30 18:23:05.205968+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 22 \N \N f f -394 2019-09-30 18:23:05.351556+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 22 \N \N t f -395 2019-09-30 18:23:20.024802+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 22 \N \N t f -396 2019-09-30 18:23:26.232151+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 22 \N \N f f -397 2019-09-30 18:23:26.476237+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 22 \N \N t f -398 2019-09-30 18:23:42.393099+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 22 \N \N f f -399 2019-09-30 18:23:42.712555+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/15/ 22 \N \N f f -400 2019-09-30 18:23:43.166318+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 22 \N \N t f -401 2019-09-30 18:23:44.696469+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/15/ 22 \N \N f f -402 2019-09-30 18:23:44.921509+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 22 \N \N t f -403 2019-09-30 18:23:48.60508+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 22 \N \N f f -404 2019-09-30 18:23:48.717352+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 23 \N \N f f -405 2019-09-30 18:23:48.719944+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 23 \N \N f f -406 2019-09-30 18:23:48.875312+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 23 \N \N t f -407 2019-09-30 18:23:54.413138+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 23 \N \N f f -408 2019-09-30 18:23:54.563464+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 23 \N \N t f -409 2019-09-30 18:24:12.988007+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 23 \N \N f f -410 2019-09-30 18:24:13.260933+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 23 \N \N t f -411 2019-09-30 18:24:43.000237+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 23 \N \N f f -412 2019-09-30 18:24:43.257385+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/16/ 23 \N \N f f -413 2019-09-30 18:24:43.655913+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 23 \N \N t f -414 2019-09-30 18:24:46.233794+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/16/ 23 \N \N f f -415 2019-09-30 18:24:46.388711+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 23 \N \N t f -416 2019-09-30 18:39:37.000263+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 24 \N \N f f -417 2019-09-30 18:39:37.003244+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 24 \N \N f f -418 2019-09-30 18:39:38.162514+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 24 \N \N t f -419 2019-09-30 18:39:39.985247+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 24 \N \N f f -420 2019-09-30 18:39:40.177789+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 24 \N \N t f -421 2019-09-30 18:39:44.086225+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 24 \N \N f f -422 2019-09-30 18:39:44.356575+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 24 \N \N f f -423 2019-09-30 18:39:44.562414+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 24 \N \N t f -424 2019-09-30 18:39:46.269832+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/my-resources/ 24 \N \N f f -425 2019-09-30 18:39:46.552639+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 24 \N \N t f -426 2019-09-30 18:39:59.038721+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 24 \N \N f f -427 2019-09-30 18:39:59.14192+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 25 \N \N f f -428 2019-09-30 18:39:59.144522+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 25 \N \N f f -429 2019-09-30 18:39:59.378828+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 25 \N \N t f -430 2019-09-30 18:40:05.993309+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 25 \N \N f f -431 2019-09-30 18:40:06.16113+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 25 \N \N t f -432 2019-09-30 18:40:08.485871+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 25 \N \N f f -433 2019-09-30 18:40:08.898265+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 25 \N \N f f -434 2019-09-30 18:40:09.070856+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 25 \N \N t f -435 2019-09-30 18:40:11.333315+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 25 \N \N f f -436 2019-09-30 18:40:11.470346+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 26 \N \N f f -437 2019-09-30 18:40:11.472977+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 26 \N \N f f -438 2019-09-30 18:40:11.620375+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 26 \N \N t f -439 2019-09-30 18:40:13.56987+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 26 \N \N f f -440 2019-09-30 18:40:13.734097+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 26 \N \N t f -441 2019-09-30 18:40:17.562425+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 26 \N \N f f -442 2019-09-30 18:40:17.894439+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 26 \N \N f f -443 2019-09-30 18:40:18.056313+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 26 \N \N t f -444 2019-09-30 18:40:20.125004+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 26 \N \N f f -445 2019-09-30 18:40:20.27357+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 26 \N \N t f -446 2019-09-30 18:40:47.121376+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/3 26 \N \N f f -447 2019-09-30 18:40:47.332283+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 26 \N \N t f -448 2019-09-30 18:40:53.02599+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 26 \N \N f f -449 2019-09-30 18:40:53.197152+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 27 \N \N f f -450 2019-09-30 18:40:53.200151+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 27 \N \N f f -451 2019-09-30 18:40:53.380634+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 27 \N \N t f -452 2019-09-30 18:40:55.149519+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 27 \N \N f f -453 2019-09-30 18:40:55.314108+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 27 \N \N t f -454 2019-09-30 18:41:02.20721+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 27 \N \N f f -455 2019-09-30 18:41:02.576225+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 27 \N \N f f -456 2019-09-30 18:41:02.802198+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 27 \N \N t f -457 2019-09-30 18:41:13.340909+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 27 \N \N f f -458 2019-09-30 18:41:13.588943+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 27 \N \N t f -459 2019-09-30 18:41:25.008778+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/4 27 \N \N f f -460 2019-09-30 18:41:25.206176+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 27 \N \N t f -461 2019-09-30 18:41:28.177521+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 27 \N \N f f -462 2019-09-30 18:41:28.36379+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 28 \N \N f f -463 2019-09-30 18:41:28.367864+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 28 \N \N f f -464 2019-09-30 18:41:28.514701+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 28 \N \N t f -465 2019-09-30 18:41:35.826573+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 28 \N \N f f -466 2019-09-30 18:41:35.974075+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 28 \N \N t f -467 2019-09-30 18:41:42.481976+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 28 \N \N f f -468 2019-09-30 18:41:42.872593+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 28 \N \N f f -469 2019-09-30 18:41:43.098826+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 28 \N \N t f -470 2019-09-30 18:41:45.799775+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 28 \N \N f f -471 2019-09-30 18:41:45.976968+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 28 \N \N t f -472 2019-09-30 18:42:01.881614+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/5 28 \N \N f f -473 2019-09-30 18:42:02.106919+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 28 \N \N t f -474 2019-09-30 18:42:07.377181+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 28 \N \N f f -475 2019-09-30 18:42:07.481979+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 29 \N \N f f -476 2019-09-30 18:42:07.485255+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 29 \N \N f f -477 2019-09-30 18:42:07.616758+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 29 \N \N t f -478 2019-09-30 18:42:08.8664+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 29 \N \N f f -479 2019-09-30 18:42:09.028799+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 29 \N \N t f -480 2019-09-30 18:42:18.426095+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 29 \N \N f f -481 2019-09-30 18:42:18.799817+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 29 \N \N f f -482 2019-09-30 18:42:19.019137+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 29 \N \N t f -483 2019-09-30 18:42:20.74272+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 29 \N \N f f -484 2019-09-30 18:42:21.003101+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 29 \N \N t f -485 2019-09-30 18:42:35.881114+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/6 29 \N \N f f -486 2019-09-30 18:42:36.110588+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 29 \N \N t f -487 2019-09-30 18:42:45.497714+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/6 29 \N \N f f -488 2019-09-30 18:42:45.661793+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 29 \N \N t f -489 2019-09-30 18:42:50.19416+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 29 \N \N f f -490 2019-09-30 18:42:50.319501+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 30 \N \N f f -491 2019-09-30 18:42:50.322469+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 30 \N \N f f -492 2019-09-30 18:42:50.474308+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 30 \N \N t f -493 2019-09-30 18:42:51.646703+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 30 \N \N f f -494 2019-09-30 18:42:51.824624+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 30 \N \N t f -495 2019-09-30 18:43:01.148112+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 30 \N \N f f -496 2019-09-30 18:43:01.474049+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 30 \N \N f f -497 2019-09-30 18:43:01.634874+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 30 \N \N t f -498 2019-09-30 18:43:04.066175+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 30 \N \N f f -499 2019-09-30 18:43:04.198258+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 30 \N \N t f -500 2019-09-30 18:43:16.651821+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/7 30 \N \N f f -501 2019-09-30 18:43:16.841416+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 30 \N \N t f -502 2019-09-30 18:43:28.079791+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 30 \N \N f f -503 2019-09-30 18:43:28.251218+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 30 \N \N t f -504 2019-09-30 18:43:33.966158+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 30 \N \N f f -505 2019-09-30 18:43:34.10794+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 31 \N \N f f -506 2019-09-30 18:43:34.111688+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 31 \N \N f f -507 2019-09-30 18:43:34.349292+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 31 \N \N t f -508 2019-09-30 18:43:38.432062+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 31 \N \N f f -509 2019-09-30 18:43:38.62996+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 31 \N \N t f -510 2019-09-30 18:43:53.754568+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 31 \N \N f f -511 2019-09-30 18:43:54.032018+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 31 \N \N f f -512 2019-09-30 18:43:54.223501+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 31 \N \N t f -513 2019-09-30 18:44:08.54791+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 31 \N \N f f -514 2019-09-30 18:44:08.841716+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 31 \N \N t f -515 2019-09-30 18:44:20.048361+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/8 31 \N \N f f -516 2019-09-30 18:44:20.23078+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 31 \N \N t f -517 2019-09-30 18:44:23.88041+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 31 \N \N f f -518 2019-09-30 18:44:24.046731+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 31 \N \N t f -519 2019-09-30 18:44:28.83195+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 31 \N \N f f -520 2019-09-30 18:44:28.953176+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 32 \N \N f f -521 2019-09-30 18:44:28.955926+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 32 \N \N f f -522 2019-09-30 18:44:29.131902+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 32 \N \N t f -523 2019-09-30 18:44:44.606096+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 32 \N \N f f -524 2019-09-30 18:44:44.80501+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 32 \N \N t f -525 2019-09-30 18:44:51.988749+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 32 \N \N f f -526 2019-09-30 18:44:52.239588+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 32 \N \N f f -527 2019-09-30 18:44:52.399445+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 32 \N \N t f -528 2019-09-30 18:45:12.067908+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 32 \N \N f f -529 2019-09-30 18:45:12.242396+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 32 \N \N t f -530 2019-09-30 18:45:20.474918+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 32 \N \N f f -531 2019-09-30 18:45:20.731849+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 32 \N \N t f -532 2019-09-30 18:45:22.931594+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 32 \N \N f f -533 2019-09-30 18:45:23.162122+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 32 \N \N t f -534 2019-09-30 18:45:36.723118+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/9 32 \N \N f f -535 2019-09-30 18:45:36.985839+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 32 \N \N t f -536 2019-09-30 18:45:44.286238+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/9 32 \N \N f f -537 2019-09-30 18:45:44.44577+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 32 \N \N t f -538 2019-09-30 18:46:05.057072+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 32 \N \N f f -539 2019-09-30 18:46:05.21361+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 33 \N \N f f -540 2019-09-30 18:46:05.217817+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 33 \N \N f f -541 2019-09-30 18:46:05.51918+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 33 \N \N t f -542 2019-09-30 18:46:06.869954+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 33 \N \N f f -543 2019-09-30 18:46:06.997256+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 33 \N \N t f -544 2019-09-30 18:46:13.374186+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 33 \N \N f f -545 2019-09-30 18:46:13.779281+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 33 \N \N f f -546 2019-09-30 18:46:14.023368+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 33 \N \N t f -547 2019-09-30 18:50:20.130906+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 33 \N \N f f -548 2019-09-30 18:50:20.355354+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 33 \N \N t f -549 2019-09-30 18:50:38.217814+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/10 33 \N \N f f -550 2019-09-30 18:50:38.472576+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 33 \N \N t f -551 2019-09-30 18:50:41.736258+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 33 \N \N f f -553 2019-09-30 18:50:41.861466+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 34 \N \N f f -554 2019-09-30 18:50:42.037283+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 34 \N \N t f -555 2019-09-30 18:50:45.600462+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 34 \N \N f f -556 2019-09-30 18:50:45.781182+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 34 \N \N t f -557 2019-09-30 18:50:49.943213+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 34 \N \N f f -558 2019-09-30 18:50:50.294837+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 34 \N \N f f -559 2019-09-30 18:50:50.55859+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 34 \N \N t f -560 2019-09-30 18:50:54.798093+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 34 \N \N f f -561 2019-09-30 18:50:55.003006+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 34 \N \N t f -562 2019-09-30 18:51:06.251129+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/11 34 \N \N f f -563 2019-09-30 18:51:06.514185+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 34 \N \N t f -564 2019-09-30 18:51:17.322258+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 34 \N \N f f -565 2019-09-30 18:51:17.475146+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 35 \N \N f f -566 2019-09-30 18:51:17.478239+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 35 \N \N f f -567 2019-09-30 18:51:17.65859+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 35 \N \N t f -568 2019-10-01 18:18:49.1711+00 begin_session 2 user_ip=172.19.0.1|user_type=None|user_email_domain=None 36 \N \N f f -569 2019-10-01 18:18:49.17424+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 36 \N \N f f -570 2019-10-01 18:18:49.675967+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 36 \N \N t f -571 2019-10-01 18:18:55.703586+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 36 \N \N f f -572 2019-10-01 18:18:55.847067+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 36 \N \N f f -573 2019-10-01 18:18:56.023658+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 36 \N \N t f -574 2019-10-01 18:19:00.164141+00 login 2 user_ip=172.19.0.1|user_type=None|user_email_domain=com 36 \N \N f f -575 2019-10-01 18:19:00.613822+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/home/ 36 \N \N f f -576 2019-10-01 18:19:00.845308+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 36 \N \N t f -577 2019-10-01 18:19:04.817087+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/collaborate/ 36 \N \N f f -578 2019-10-01 18:19:05.013456+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 36 \N \N t f -579 2019-10-01 18:19:06.746381+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/groups 36 \N \N f f -580 2019-10-01 18:19:06.88906+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 36 \N \N t f -581 2019-10-01 18:19:21.204454+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/group/12 36 \N \N f f -582 2019-10-01 18:19:21.465353+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 36 \N \N t f -583 2019-10-01 18:19:24.875963+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/my-groups/ 36 \N \N f f -584 2019-10-01 18:19:25.16972+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 36 \N \N t f -585 2019-10-01 18:19:27.63599+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/my-resources/ 36 \N \N f f -586 2019-10-01 18:19:27.943258+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 36 \N \N t f -587 2019-10-01 18:19:35.362342+00 logout 2 user_ip=172.19.0.1|user_type=None|user_email_domain=com 36 \N \N f f -588 2019-10-01 18:19:35.544164+00 begin_session 2 user_ip=172.19.0.1|user_type=None|user_email_domain=None 37 \N \N f f -589 2019-10-01 18:19:35.548885+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 37 \N \N f f -590 2019-10-01 18:19:35.755748+00 visit 2 user_ip=172.19.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 37 \N \N t f -591 2019-12-11 18:18:49.860895+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 38 \N \N f f -592 2019-12-11 18:18:49.866914+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/landingPage/ 38 \N \N f f -593 2019-12-11 18:18:50.152005+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 38 \N \N t f -594 2019-12-11 18:18:51.3526+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/collaborate/ 38 \N \N f f -595 2019-12-11 18:18:51.546636+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 38 \N \N t f -596 2019-12-11 18:18:53.863911+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 38 \N \N f f -597 2019-12-11 18:18:54.017934+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 38 \N \N t f -598 2019-12-11 18:18:57.806467+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 38 \N \N f f -599 2019-12-11 18:18:58.297323+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 38 \N \N t f -600 2019-12-11 18:19:10.291468+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 38 \N \N t f -601 2019-12-11 18:19:19.82304+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 38 \N \N f f -602 2019-12-11 18:19:20.145494+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 38 \N \N t f -603 2019-12-11 18:19:22.849162+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 38 \N \N f f -604 2019-12-11 18:19:23.022669+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 38 \N \N t f -605 2019-12-11 18:19:43.206434+00 login 2 user_ip=172.18.0.1|user_type=Unspecified|user_email_domain=org 38 \N \N f f -606 2019-12-11 18:19:43.496907+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/user/17/ 38 \N \N f f -607 2019-12-11 18:19:43.972643+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=Unspecified|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -608 2019-12-11 18:19:54.170354+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/17/ 38 \N \N f f -609 2019-12-11 18:19:54.403353+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -610 2019-12-11 18:19:55.982134+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 38 \N \N f f -611 2019-12-11 18:19:56.124927+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -612 2019-12-11 18:19:57.813022+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 38 \N \N f f -613 2019-12-11 18:19:58.025582+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -614 2019-12-11 18:21:09.652544+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 38 \N \N f f -615 2019-12-11 18:21:09.937657+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -616 2019-12-11 18:21:11.717448+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 38 \N \N f f -617 2019-12-11 18:21:11.941934+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -618 2019-12-11 18:21:22.844787+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/13 38 \N \N f f -619 2019-12-11 18:21:23.140977+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 38 \N \N t f -620 2019-12-11 18:21:28.579062+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 38 \N \N f f -621 2019-12-11 18:21:28.879873+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 39 \N \N f f -622 2019-12-11 18:21:28.884231+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 39 \N \N f f -623 2019-12-11 18:21:29.069314+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 39 \N \N t f -624 2019-12-11 18:21:33.079705+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 39 \N \N f f -625 2019-12-11 18:21:33.293265+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 39 \N \N t f -626 2019-12-11 18:21:38.577943+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 39 \N \N f f -627 2019-12-11 18:21:38.926894+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 39 \N \N f f -628 2019-12-11 18:21:39.193441+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 39 \N \N t f -629 2019-12-11 18:21:56.021387+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/7/ 39 \N \N f f -630 2019-12-11 18:21:56.280129+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 39 \N \N t f -631 2019-12-11 18:22:00.784457+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 39 \N \N f f -632 2019-12-11 18:22:01.000477+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 39 \N \N t f -633 2019-12-11 18:22:10.838491+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 40 \N \N f f -634 2019-12-11 18:22:10.841221+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/7/ 40 \N \N f f -635 2019-12-11 18:22:11.030938+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 40 \N \N t f -636 2019-12-11 18:51:21.129447+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 41 \N \N f f -637 2019-12-11 18:51:21.133584+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 41 \N \N f f -638 2019-12-11 18:51:21.385979+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 41 \N \N t f -639 2019-12-11 18:51:23.052274+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 41 \N \N f f -640 2019-12-11 18:51:23.272716+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 41 \N \N t f -641 2019-12-11 18:51:27.379174+00 visit 2 user_ip=172.18.0.1|http_method=POST|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 41 \N \N f f -642 2019-12-11 18:51:27.640383+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 41 \N \N t f -643 2019-12-11 18:51:30.853972+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 41 \N \N f f -644 2019-12-11 18:51:31.122239+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 41 \N \N f f -645 2019-12-11 18:51:31.43373+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 41 \N \N t f -646 2019-12-11 18:51:34.710507+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 41 \N \N f f -647 2019-12-11 18:51:34.93553+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 41 \N \N t f -648 2019-12-11 18:51:36.453008+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 41 \N \N f f -649 2019-12-11 18:51:36.655742+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 41 \N \N t f -650 2019-12-11 18:51:39.007564+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/3 41 \N \N f f -651 2019-12-11 18:51:39.265713+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 41 \N \N t f -652 2019-12-11 18:51:45.782222+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/3 41 \N \N f f -653 2019-12-11 18:51:46.008962+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 41 \N \N t f -654 2019-12-11 18:52:13.293942+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 41 \N \N f f -655 2019-12-11 18:52:13.454474+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 42 \N \N f f -656 2019-12-11 18:52:13.461243+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 42 \N \N f f -657 2019-12-11 18:52:13.704297+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 42 \N \N t f -658 2019-12-11 18:52:15.340291+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 42 \N \N f f -659 2019-12-11 18:52:15.501736+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 42 \N \N t f -660 2019-12-11 18:52:42.110106+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 42 \N \N f f -661 2019-12-11 18:52:42.377908+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 42 \N \N f f -662 2019-12-11 18:52:42.590901+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 42 \N \N t f -663 2019-12-11 18:52:46.608142+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/8/ 42 \N \N f f -664 2019-12-11 18:52:46.849799+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 42 \N \N t f -665 2019-12-11 18:53:13.449438+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 42 \N \N f f -666 2019-12-11 18:53:13.65217+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 42 \N \N t f -667 2019-12-11 18:53:22.328664+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 43 \N \N f f -668 2019-12-11 18:53:22.334732+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/8/ 43 \N \N f f -669 2019-12-11 18:53:22.535402+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 43 \N \N t f -670 2019-12-11 18:53:43.663956+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/collaborate/ 43 \N \N f f -671 2019-12-11 18:53:43.882049+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 43 \N \N t f -672 2019-12-11 18:53:45.087254+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/groups 43 \N \N f f -673 2019-12-11 18:53:45.237615+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 43 \N \N t f -674 2019-12-11 18:53:47.390192+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 43 \N \N f f -675 2019-12-11 18:53:47.583425+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 43 \N \N t f -676 2019-12-11 18:53:53.074731+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 43 \N \N f f -677 2019-12-11 18:53:53.318162+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/my-groups/ 43 \N \N f f -678 2019-12-11 18:53:53.608891+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 43 \N \N t f -679 2019-12-11 18:53:55.955707+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/4 43 \N \N f f -680 2019-12-11 18:53:56.171502+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 43 \N \N t f -681 2019-12-11 18:54:05.893999+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/4 43 \N \N f f -682 2019-12-11 18:54:06.182142+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 43 \N \N t f -683 2019-12-11 18:54:15.218904+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 43 \N \N f f -684 2019-12-11 18:54:15.44437+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 44 \N \N f f -685 2019-12-11 18:54:15.450483+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 44 \N \N f f -686 2019-12-11 18:54:15.713833+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 44 \N \N t f -687 2019-12-11 18:54:20.469764+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 44 \N \N f f -688 2019-12-11 18:54:20.717583+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 44 \N \N t f -689 2019-12-11 18:54:28.034365+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 44 \N \N f f -690 2019-12-11 18:54:28.500558+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 44 \N \N f f -691 2019-12-11 18:54:28.764159+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 44 \N \N t f -692 2019-12-11 18:54:44.593061+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/9/ 44 \N \N f f -693 2019-12-11 18:54:44.851838+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 44 \N \N t f -694 2019-12-11 18:54:51.638311+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 44 \N \N f f -695 2019-12-11 18:54:51.875261+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 44 \N \N t f -696 2019-12-11 18:54:59.858513+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 45 \N \N f f -697 2019-12-11 18:54:59.864937+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/9/ 45 \N \N f f -698 2019-12-11 18:55:00.068895+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 45 \N \N t f -699 2019-12-11 18:55:02.74917+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/collaborate/ 45 \N \N f f -700 2019-12-11 18:55:02.894001+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 45 \N \N t f -701 2019-12-11 18:55:04.995866+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/groups 45 \N \N f f -702 2019-12-11 18:55:05.174716+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 45 \N \N t f -703 2019-12-11 18:55:09.408575+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 45 \N \N f f -704 2019-12-11 18:55:09.579161+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 45 \N \N t f -705 2019-12-11 18:55:10.960193+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 45 \N \N f f -706 2019-12-11 18:55:11.108006+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 45 \N \N t f -707 2019-12-11 18:55:20.214983+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 45 \N \N f f -708 2019-12-11 18:55:20.513292+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 45 \N \N f f -709 2019-12-11 18:55:20.750917+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 45 \N \N t f -710 2019-12-11 18:55:24.954014+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/my-resources/ 45 \N \N f f -711 2019-12-11 18:55:25.203372+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 45 \N \N t f -712 2019-12-11 18:55:38.707686+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 45 \N \N f f -713 2019-12-11 18:55:38.939056+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 45 \N \N t f -714 2019-12-11 18:55:40.777346+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 45 \N \N f f -715 2019-12-11 18:55:40.941394+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 45 \N \N t f -716 2019-12-11 18:55:43.192877+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/5 45 \N \N f f -717 2019-12-11 18:55:43.36015+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 45 \N \N t f -718 2019-12-11 18:55:49.900629+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/5 45 \N \N f f -719 2019-12-11 18:55:50.15687+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 45 \N \N t f -720 2019-12-11 18:55:53.823584+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 45 \N \N f f -721 2019-12-11 18:55:53.949424+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 46 \N \N f f -722 2019-12-11 18:55:53.952616+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 46 \N \N f f -723 2019-12-11 18:55:54.227277+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 46 \N \N t f -724 2019-12-11 18:55:56.124858+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 46 \N \N f f -725 2019-12-11 18:55:56.32478+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 46 \N \N t f -726 2019-12-11 18:56:06.075016+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 46 \N \N f f -727 2019-12-11 18:56:06.438434+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 46 \N \N f f -728 2019-12-11 18:56:06.694205+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -729 2019-12-11 18:56:08.481464+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 46 \N \N f f -730 2019-12-11 18:56:08.665892+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -731 2019-12-11 18:56:10.186116+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 46 \N \N f f -732 2019-12-11 18:56:10.45474+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -733 2019-12-11 18:56:12.999428+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/6 46 \N \N f f -734 2019-12-11 18:56:13.18503+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -735 2019-12-11 18:56:20.156362+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/6 46 \N \N f f -736 2019-12-11 18:56:20.357504+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -737 2019-12-11 18:56:23.598955+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/10/ 46 \N \N f f -738 2019-12-11 18:56:23.831929+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -739 2019-12-11 18:56:31.817026+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 46 \N \N f f -740 2019-12-11 18:56:32.063233+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 46 \N \N t f -741 2019-12-11 18:56:41.421003+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 47 \N \N f f -742 2019-12-11 18:56:41.423864+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/10/ 47 \N \N f f -743 2019-12-11 18:56:41.65667+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 47 \N \N t f -744 2019-12-11 18:56:46.961202+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 47 \N \N f f -745 2019-12-11 18:56:47.125808+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 47 \N \N t f -746 2019-12-11 18:56:58.204163+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 47 \N \N f f -747 2019-12-11 18:56:58.427419+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 47 \N \N f f -748 2019-12-11 18:56:58.621669+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -749 2019-12-11 18:57:00.820055+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 47 \N \N f f -750 2019-12-11 18:57:00.96265+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -751 2019-12-11 18:57:02.737853+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 47 \N \N f f -752 2019-12-11 18:57:02.90746+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -753 2019-12-11 18:57:05.04943+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/7 47 \N \N f f -754 2019-12-11 18:57:05.235726+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -755 2019-12-11 18:57:14.280895+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/7 47 \N \N f f -756 2019-12-11 18:57:14.552543+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -757 2019-12-11 18:57:32.268241+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/11/ 47 \N \N f f -758 2019-12-11 18:57:32.449533+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -759 2019-12-11 18:57:36.735972+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 47 \N \N f f -760 2019-12-11 18:57:36.89767+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 47 \N \N t f -761 2019-12-11 18:57:45.935596+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 48 \N \N f f -762 2019-12-11 18:57:45.937872+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/11/ 48 \N \N f f -763 2019-12-11 18:57:46.105662+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 48 \N \N t f -764 2019-12-11 18:57:49.265462+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 48 \N \N f f -765 2019-12-11 18:57:49.493519+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 48 \N \N t f -766 2019-12-11 18:57:58.490989+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 48 \N \N f f -767 2019-12-11 18:57:58.851893+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 48 \N \N f f -768 2019-12-11 18:57:59.135729+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -769 2019-12-11 18:58:16.965254+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 48 \N \N f f -770 2019-12-11 18:58:17.176269+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -771 2019-12-11 18:58:18.404088+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 48 \N \N f f -772 2019-12-11 18:58:18.576995+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -773 2019-12-11 18:58:27.774598+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/8 48 \N \N f f -774 2019-12-11 18:58:27.94824+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -775 2019-12-11 18:58:34.103998+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/8 48 \N \N f f -776 2019-12-11 18:58:34.262379+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -777 2019-12-11 18:58:41.398445+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/12/ 48 \N \N f f -778 2019-12-11 18:58:41.645968+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -779 2019-12-11 18:58:45.918313+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 48 \N \N f f -780 2019-12-11 18:58:46.145983+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 48 \N \N t f -781 2019-12-11 18:58:54.72506+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 49 \N \N f f -782 2019-12-11 18:58:54.728048+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/12/ 49 \N \N f f -783 2019-12-11 18:58:54.893086+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 49 \N \N t f -784 2019-12-11 19:02:08.973227+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 49 \N \N f f -785 2019-12-11 19:02:09.253563+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 49 \N \N t f -786 2019-12-11 19:02:19.435919+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 49 \N \N f f -787 2019-12-11 19:02:19.848424+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 49 \N \N f f -788 2019-12-11 19:02:20.174075+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -789 2019-12-11 19:02:26.593685+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 49 \N \N f f -790 2019-12-11 19:02:26.886705+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -791 2019-12-11 19:02:28.474069+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 49 \N \N f f -792 2019-12-11 19:02:28.752474+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -793 2019-12-11 19:02:31.237023+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/9 49 \N \N f f -794 2019-12-11 19:02:31.477555+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -795 2019-12-11 19:06:38.61053+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/9 49 \N \N f f -796 2019-12-11 19:06:38.982856+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -797 2019-12-11 19:06:42.91607+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/13/ 49 \N \N f f -798 2019-12-11 19:06:43.143694+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -799 2019-12-11 19:06:47.728922+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 49 \N \N f f -800 2019-12-11 19:06:48.016024+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 49 \N \N t f -801 2019-12-11 19:06:56.061543+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 50 \N \N f f -802 2019-12-11 19:06:56.066148+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/13/ 50 \N \N f f -803 2019-12-11 19:06:56.260208+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 50 \N \N t f -804 2019-12-11 19:07:10.7306+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 50 \N \N f f -805 2019-12-11 19:07:10.985534+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 50 \N \N t f -806 2019-12-11 19:07:17.847964+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 50 \N \N f f -807 2019-12-11 19:07:18.131777+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 50 \N \N f f -808 2019-12-11 19:07:18.341712+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -809 2019-12-11 19:07:19.997163+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 50 \N \N f f -810 2019-12-11 19:07:20.240183+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -811 2019-12-11 19:07:21.269986+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 50 \N \N f f -812 2019-12-11 19:07:21.587416+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -813 2019-12-11 19:07:23.455361+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/10 50 \N \N f f -814 2019-12-11 19:07:23.670349+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -815 2019-12-11 19:07:29.882198+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/10 50 \N \N f f -816 2019-12-11 19:07:30.097278+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -817 2019-12-11 19:07:32.758414+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/14/ 50 \N \N f f -818 2019-12-11 19:07:33.037766+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -819 2019-12-11 19:07:37.110458+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 50 \N \N f f -820 2019-12-11 19:07:37.294538+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 50 \N \N t f -821 2019-12-11 19:07:45.58035+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 51 \N \N f f -822 2019-12-11 19:07:45.585054+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/14/ 51 \N \N f f -823 2019-12-11 19:07:45.868664+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 51 \N \N t f -824 2019-12-11 19:08:00.104457+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 51 \N \N f f -825 2019-12-11 19:08:00.331289+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 51 \N \N t f -826 2019-12-11 19:08:06.328767+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 51 \N \N f f -827 2019-12-11 19:08:06.700765+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 51 \N \N f f -828 2019-12-11 19:08:07.003593+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -829 2019-12-11 19:08:10.19786+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 51 \N \N f f -830 2019-12-11 19:08:10.464197+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -831 2019-12-11 19:08:11.626509+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 51 \N \N f f -832 2019-12-11 19:08:11.845454+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -833 2019-12-11 19:08:14.279288+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/11 51 \N \N f f -834 2019-12-11 19:08:14.562782+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -835 2019-12-11 19:08:21.201168+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/group/11 51 \N \N f f -836 2019-12-11 19:08:21.430322+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -837 2019-12-11 19:08:31.34664+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/15/ 51 \N \N f f -838 2019-12-11 19:08:31.621342+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -839 2019-12-11 19:08:36.360876+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 51 \N \N f f -840 2019-12-11 19:08:36.617442+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 51 \N \N t f -841 2019-12-11 19:08:44.221559+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 52 \N \N f f -842 2019-12-11 19:08:44.224811+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/15/ 52 \N \N f f -843 2019-12-11 19:08:44.428551+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 52 \N \N t f -844 2019-12-11 19:08:51.499174+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 52 \N \N f f -845 2019-12-11 19:08:51.697657+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 52 \N \N t f -846 2019-12-11 19:08:57.709035+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=com 52 \N \N f f -847 2019-12-11 19:08:58.106418+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/home/ 52 \N \N f f -848 2019-12-11 19:08:58.358799+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -849 2019-12-11 19:09:01.046206+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/collaborate/ 52 \N \N f f -850 2019-12-11 19:09:01.219263+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -851 2019-12-11 19:09:02.802946+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/groups 52 \N \N f f -852 2019-12-11 19:09:03.046804+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -853 2019-12-11 19:09:11.415491+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/group/12 52 \N \N f f -854 2019-12-11 19:09:11.639173+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -855 2019-12-11 19:09:17.55929+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/group/12 52 \N \N f f -856 2019-12-11 19:09:17.834571+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -857 2019-12-11 19:09:21.667722+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/user/6/ 52 \N \N f f -858 2019-12-11 19:09:21.913147+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -859 2019-12-11 19:09:27.665016+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/accounts/update/ 52 \N \N f f -860 2019-12-11 19:09:27.87913+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=com|request_url=/hsapi/userInfo/ 52 \N \N t f -861 2019-12-11 19:09:35.279477+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 53 \N \N f f -862 2019-12-11 19:09:35.285707+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/6/ 53 \N \N f f -863 2019-12-11 19:09:35.537531+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 53 \N \N t f -864 2019-12-11 20:03:19.903427+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 54 \N \N f f -865 2019-12-11 20:03:19.934016+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 54 \N \N f f -866 2019-12-11 20:03:20.768586+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 54 \N \N t f -867 2019-12-11 20:03:22.951273+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 54 \N \N f f -868 2019-12-11 20:03:23.180359+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 54 \N \N t f -869 2019-12-11 20:06:35.884883+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 54 \N \N f f -870 2019-12-11 20:06:36.387509+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 54 \N \N f f -871 2019-12-11 20:06:36.672718+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 54 \N \N t f -872 2019-12-11 20:07:10.92709+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/collaborate/ 54 \N \N f f -873 2019-12-11 20:07:11.191012+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 54 \N \N t f -874 2019-12-11 20:07:12.881263+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/groups 54 \N \N f f -875 2019-12-11 20:07:13.043602+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 54 \N \N t f -876 2019-12-11 20:09:13.95007+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/my-resources/ 54 \N \N f f -877 2019-12-11 20:09:14.292662+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 54 \N \N t f -878 2019-12-11 20:09:19.569589+00 logout 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 54 \N \N f f -879 2019-12-11 20:09:19.691414+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 55 \N \N f f -880 2019-12-11 20:09:19.695803+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 55 \N \N f f -881 2019-12-11 20:09:19.971668+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 55 \N \N t f -882 2019-12-11 20:21:23.284588+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 55 \N \N f f -883 2019-12-11 20:21:23.545614+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 55 \N \N t f -884 2019-12-11 20:21:26.042224+00 login 2 user_ip=172.18.0.1|user_type=None|user_email_domain=org 55 \N \N f f -885 2019-12-11 20:21:26.399969+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 55 \N \N f f -886 2019-12-11 20:21:26.639008+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 55 \N \N t f -887 2019-12-11 20:21:32.668084+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/home/ 55 \N \N f f -888 2019-12-11 20:21:33.168195+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 55 \N \N t f -889 2019-12-11 20:21:37.592333+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/user/16/ 55 \N \N f f -890 2019-12-11 20:21:37.819828+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 55 \N \N t f -891 2019-12-11 20:21:42.353224+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/accounts/update/ 55 \N \N f f -892 2019-12-11 20:21:42.545586+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=org|request_url=/hsapi/userInfo/ 55 \N \N t f -893 2019-12-11 20:21:52.606076+00 begin_session 2 user_ip=172.18.0.1|user_type=None|user_email_domain=None 56 \N \N f f -894 2019-12-11 20:21:52.608679+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/user/16/ 56 \N \N f f -895 2019-12-11 20:21:52.812806+00 visit 2 user_ip=172.18.0.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/userInfo/ 56 \N \N t f -896 2025-06-10 23:07:52.473596+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 57 \N \N f f -897 2025-06-10 23:07:52.476626+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 57 \N \N f f -898 2025-06-10 23:07:52.586609+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 57 \N \N f f -899 2025-06-10 23:08:11.93632+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 57 \N \N f f -900 2025-06-10 23:08:11.991365+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 57 \N \N f f -901 2025-06-10 23:08:15.518527+00 login 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 57 \N \N f f -902 2025-06-10 23:08:15.601747+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/home/ 57 \N \N f f -903 2025-06-10 23:08:15.695231+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 57 \N \N f f -904 2025-06-10 23:08:15.717329+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 57 \N \N t f -905 2025-06-10 23:08:28.473135+00 create 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0|resource_size_bytes=0|resource_type=CompositeResource|resource_guid=ad0b5df2e8434a5aaad455a322bc1fd5 57 ad0b5df2e8434a5aaad455a322bc1fd5 16 f f -906 2025-06-10 23:08:28.479214+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/create-resource/do/ 57 \N \N f f -907 2025-06-10 23:08:29.573775+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/resource/ad0b5df2e8434a5aaad455a322bc1fd5/ 57 ad0b5df2e8434a5aaad455a322bc1fd5 16 f t -908 2025-06-10 23:08:30.516588+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 57 \N \N f f -909 2025-06-10 23:08:30.51874+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/ad0b5df2e8434a5aaad455a322bc1fd5/list-referenced-content/ 57 \N \N f f -910 2025-06-10 23:08:30.751643+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 57 \N \N t f -911 2025-06-10 23:08:30.765112+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/ad0b5df2e8434a5aaad455a322bc1fd5/list-referenced-content/ 57 \N \N f f -912 2025-06-10 23:08:30.79653+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/ad0b5df2e8434a5aaad455a322bc1fd5/aggregation-files-to-sync/ 57 \N \N f f -913 2025-06-10 23:08:30.963657+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/ad0b5df2e8434a5aaad455a322bc1fd5/non-preferred-paths/ 57 \N \N f f -914 2025-06-10 23:14:06.514267+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/home/ 57 \N \N f f -915 2025-06-10 23:14:07.67362+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/home/ 57 \N \N f f -916 2025-06-10 23:14:08.364287+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 57 \N \N f f -917 2025-06-10 23:14:09.227371+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/hsapi/userInfo/ 57 \N \N t f -918 2025-06-10 23:14:11.712654+00 logout 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 57 \N \N f f -919 2025-06-10 23:14:11.752005+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 58 \N \N f f -920 2025-06-10 23:14:11.752962+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 58 \N \N f f -921 2025-06-10 23:14:11.813437+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 58 \N \N f f -922 2025-06-10 23:14:14.420889+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 58 \N \N f f -923 2025-06-10 23:14:14.503455+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 58 \N \N f f -924 2025-06-10 23:14:53.073436+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 58 \N \N f f -925 2025-06-10 23:14:53.14282+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 58 \N \N f f -926 2025-06-10 23:14:56.463187+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/login/ 58 \N \N f f -927 2025-06-10 23:15:00.208099+00 login 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 58 \N \N f f -928 2025-06-10 23:15:00.907751+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 58 \N \N f f -929 2025-06-10 23:15:01.321997+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 58 \N \N f f -930 2025-06-10 23:15:05.386103+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 58 \N \N f f -931 2025-06-10 23:15:05.799534+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 58 \N \N f f -932 2025-06-10 23:15:08.580091+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/5/change/ 58 \N \N f f -933 2025-06-10 23:15:08.986515+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 58 \N \N f f -934 2025-06-10 23:15:24.627224+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 58 \N \N f f -935 2025-06-10 23:15:30.023423+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/18/change/ 58 \N \N f f -936 2025-06-10 23:15:30.444303+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 58 \N \N f f -937 2025-06-10 23:15:33.879013+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 58 \N \N f f -938 2025-06-10 23:15:34.299022+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 58 \N \N f f -939 2025-06-10 23:15:35.267478+00 logout 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 58 \N \N f f -940 2025-06-10 23:15:35.297503+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 59 \N \N f f -941 2025-06-10 23:15:35.29839+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/logout/ 59 \N \N f f -942 2025-06-10 23:15:38.046995+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 59 \N \N f f -943 2025-06-10 23:15:38.166754+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 59 \N \N f f -944 2025-06-10 23:15:40.164858+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 59 \N \N f f -945 2025-06-10 23:15:40.229609+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 59 \N \N f f -946 2025-06-10 23:15:43.368983+00 login 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 59 \N \N f f -947 2025-06-10 23:15:43.441869+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/home/ 59 \N \N f f -948 2025-06-10 23:15:43.538585+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 59 \N \N f f -949 2025-06-10 23:15:43.550286+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 59 \N \N t f -950 2025-06-10 23:15:49.253801+00 create 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0|resource_size_bytes=0|resource_type=CompositeResource|resource_guid=f211b93642f84c55a0bdd1b12880e32e 59 f211b93642f84c55a0bdd1b12880e32e 17 f f -951 2025-06-10 23:15:49.260788+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/create-resource/do/ 59 \N \N f f -952 2025-06-10 23:15:50.186749+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 59 f211b93642f84c55a0bdd1b12880e32e 17 f t -953 2025-06-10 23:15:50.332833+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 59 \N \N f f -954 2025-06-10 23:15:50.497652+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 59 \N \N f f -955 2025-06-10 23:15:50.505527+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 59 \N \N t f -956 2025-06-10 23:15:50.53544+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 59 \N \N f f -957 2025-06-10 23:15:50.547467+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 59 \N \N f f -958 2025-06-10 23:15:50.753678+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 59 \N \N f f -1262 2025-06-11 15:54:00.889696+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 73 \N \N f f -1263 2025-06-11 15:54:17.506626+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/share-resource-with-group/view/14/ 73 \N \N f f -1264 2025-06-11 15:54:29.373283+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/collaborate/ 73 \N \N f f -1265 2025-06-11 15:54:29.4495+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1266 2025-06-11 15:54:29.480211+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1267 2025-06-11 15:54:30.582807+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/groups 73 \N \N f f -1268 2025-06-11 15:54:30.636832+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1269 2025-06-11 15:54:30.658698+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1270 2025-06-11 15:54:48.128963+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/15 73 \N \N f f -1271 2025-06-11 15:54:48.214642+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1272 2025-06-11 15:54:48.238851+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1273 2025-06-11 15:54:52.97862+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-groups/ 73 \N \N f f -1274 2025-06-11 15:54:53.039306+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1284 2025-06-11 15:55:18.246935+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 73 \N \N f f -1285 2025-06-11 15:55:18.338006+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/relevant-tools/ 73 \N \N f f -1286 2025-06-11 15:55:18.349171+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 73 \N \N f f -1287 2025-06-11 15:55:18.461113+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 73 \N \N f f -1288 2025-06-11 15:55:18.813033+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1289 2025-06-11 15:55:18.841877+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 73 \N \N f f -1290 2025-06-11 15:55:19.032872+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 73 \N \N f f -959 2025-06-10 23:17:50.466545+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 59 \N \N f f -960 2025-06-10 23:17:50.758004+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 59 \N \N f f -961 2025-06-10 23:35:06.230092+00 begin_session 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 60 \N \N f f -962 2025-06-10 23:35:06.239395+00 download 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0|resource_size_bytes=276754|resource_type=CompositeResource|resource_guid=f211b93642f84c55a0bdd1b12880e32e|tracking_visitor_id=59|doi=|resource_metadata={"title": "asdf", "creators": "last, user1", "is_replaced_by": null, "is_version_of": null, "resource_url": "http://localhost:8000/resource/f211b93642f84c55a0bdd1b12880e32e/"}|file_size=276754|filename=Screenshot_2025-06-03_at_9.26.17AM.png 60 f211b93642f84c55a0bdd1b12880e32e 17 f f -963 2025-06-10 23:50:06.772584+00 begin_session 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 61 \N \N f f -964 2025-06-10 23:50:06.777161+00 logout 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 61 \N \N f f -965 2025-06-10 23:50:06.856586+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 62 \N \N f f -966 2025-06-10 23:50:06.857714+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 62 \N \N f f -967 2025-06-10 23:50:07.202156+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 62 \N \N f f -968 2025-06-10 23:50:08.77668+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 62 \N \N f f -969 2025-06-10 23:50:08.911854+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 62 \N \N f f -970 2025-06-10 23:50:13.213022+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 62 \N \N f f -971 2025-06-10 23:50:13.363988+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 62 \N \N f f -972 2025-06-10 23:50:39.574284+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 62 \N \N f f -973 2025-06-10 23:50:39.773011+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 62 \N \N f f -974 2025-06-10 23:50:44.076485+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/login/ 62 \N \N f f -975 2025-06-10 23:50:47.925616+00 login 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 62 \N \N f f -976 2025-06-10 23:50:48.714299+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 62 \N \N f f -977 2025-06-10 23:50:49.225825+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 62 \N \N f f -978 2025-06-10 23:50:53.850865+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 62 \N \N f f -979 2025-06-10 23:50:54.377915+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 62 \N \N f f -980 2025-06-10 23:51:02.181542+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/19/change/ 62 \N \N f f -981 2025-06-10 23:51:02.69102+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 62 \N \N f f -982 2025-06-10 23:51:06.310696+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 62 \N \N f f -983 2025-06-10 23:51:06.810035+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 62 \N \N f f -984 2025-06-11 02:12:34.822983+00 begin_session 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 63 \N \N f f -985 2025-06-11 02:12:34.832543+00 logout 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 63 \N \N f f -986 2025-06-11 02:12:34.872194+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 64 \N \N f f -987 2025-06-11 02:12:34.873283+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/logout/ 64 \N \N f f -988 2025-06-11 02:12:38.84168+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 64 \N \N f f -989 2025-06-11 02:12:38.916155+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 64 \N \N f f -990 2025-06-11 02:12:40.545432+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 64 \N \N f f -991 2025-06-11 02:12:40.625387+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 64 \N \N f f -992 2025-06-11 02:12:54.822084+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 64 \N \N t f -993 2025-06-11 02:13:09.295712+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 64 \N \N f f -994 2025-06-11 02:13:09.351307+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 64 \N \N f f -995 2025-06-11 02:13:11.289003+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 64 \N \N f f -996 2025-06-11 02:13:11.337798+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 64 \N \N f f -997 2025-06-11 02:13:39.390723+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 64 \N \N f f -998 2025-06-11 02:13:39.449936+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 64 \N \N f f -999 2025-06-11 02:13:46.398323+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/login/ 64 \N \N f f -1000 2025-06-11 02:13:51.126941+00 login 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 64 \N \N f f -1001 2025-06-11 02:13:51.880502+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 64 \N \N f f -1002 2025-06-11 02:13:52.277474+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 64 \N \N f f -1003 2025-06-11 02:14:05.899984+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 64 \N \N f f -1004 2025-06-11 02:14:06.440189+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 64 \N \N f f -1005 2025-06-11 02:14:10.437503+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/20/change/ 64 \N \N f f -1006 2025-06-11 02:14:10.846452+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 64 \N \N f f -1007 2025-06-11 02:14:14.562963+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 64 \N \N f f -1008 2025-06-11 02:14:14.957974+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 64 \N \N f f -1009 2025-06-11 02:14:18.239767+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/21/change/ 64 \N \N f f -1010 2025-06-11 02:14:18.643364+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 64 \N \N f f -1011 2025-06-11 02:14:21.982877+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 64 \N \N f f -1012 2025-06-11 02:14:22.41829+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 64 \N \N f f -1013 2025-06-11 02:14:23.62716+00 logout 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 64 \N \N f f -1014 2025-06-11 02:14:23.666007+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 65 \N \N f f -1015 2025-06-11 02:14:23.667047+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/logout/ 65 \N \N f f -1016 2025-06-11 02:14:26.149863+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 65 \N \N f f -1017 2025-06-11 02:14:26.209973+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 65 \N \N f f -1018 2025-06-11 02:47:54.353054+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 66 \N \N f f -1019 2025-06-11 02:47:54.357205+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 66 \N \N f f -1020 2025-06-11 02:47:54.431027+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 66 \N \N f f -1021 2025-06-11 02:48:04.776331+00 login 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 66 \N \N f f -1022 2025-06-11 02:48:04.842583+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/home/ 66 \N \N f f -1023 2025-06-11 02:48:04.931805+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 66 \N \N f f -1024 2025-06-11 02:48:04.947976+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 66 \N \N t f -1025 2025-06-11 02:48:14.820961+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 66 f211b93642f84c55a0bdd1b12880e32e 17 f t -1275 2025-06-11 15:54:53.054894+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1276 2025-06-11 15:54:54.511681+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/14 73 \N \N f f -1277 2025-06-11 15:54:54.566142+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1278 2025-06-11 15:54:54.586721+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1026 2025-06-11 02:48:14.995937+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 66 \N \N f f -1027 2025-06-11 02:48:15.098695+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 66 \N \N t f -1028 2025-06-11 02:48:15.156294+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 66 \N \N f f -1029 2025-06-11 02:48:15.314035+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 66 \N \N f f -1030 2025-06-11 02:48:15.324437+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/relevant-tools/ 66 \N \N f f -1031 2025-06-11 02:48:15.35773+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 66 \N \N f f -1032 2025-06-11 02:48:15.652094+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 66 \N \N f f -1033 2025-06-11 02:48:15.790554+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 66 \N \N f f -1034 2025-06-11 02:48:22.889193+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 66 \N \N f f -1035 2025-06-11 02:48:23.563117+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 66 \N \N f f -1036 2025-06-11 02:48:26.942351+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/share-resource-with-user/view/20/ 66 \N \N f f -1037 2025-06-11 02:50:35.312677+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 66 \N \N f f -1038 2025-06-11 02:50:36.667453+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 66 \N \N f f -1039 2025-06-11 02:50:43.359249+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 67 \N \N f f -1040 2025-06-11 02:50:43.360323+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 67 \N \N f f -1041 2025-06-11 02:50:43.566122+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 67 \N \N f f -1042 2025-06-11 02:50:48.74175+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/admin/login/ 67 \N \N f f -1043 2025-06-11 02:50:52.676718+00 login 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 67 \N \N f f -1044 2025-06-11 02:50:53.429559+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/ 67 \N \N f f -1045 2025-06-11 02:50:53.838385+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1046 2025-06-11 02:50:56.279201+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 67 \N \N f f -1047 2025-06-11 02:50:56.720291+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1048 2025-06-11 02:51:03.001977+00 logout 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 66 \N \N f f -1049 2025-06-11 02:51:03.046236+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 68 \N \N f f -1050 2025-06-11 02:51:03.047397+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 68 \N \N f f -1051 2025-06-11 02:51:03.107518+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 68 \N \N f f -1052 2025-06-11 02:51:04.957623+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 68 \N \N f f -1053 2025-06-11 02:51:05.013889+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 68 \N \N f f -1054 2025-06-11 02:51:19.024139+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 68 \N \N t f -1055 2025-06-11 02:51:32.205719+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 68 \N \N f f -1056 2025-06-11 02:51:32.263267+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 68 \N \N f f -1057 2025-06-11 02:51:36.129264+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 67 \N \N f f -1058 2025-06-11 02:51:36.553437+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1059 2025-06-11 02:51:37.947613+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/22/change/ 67 \N \N f f -1060 2025-06-11 02:51:38.369264+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1061 2025-06-11 02:51:42.096799+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 67 \N \N f f -1062 2025-06-11 02:51:42.50812+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1063 2025-06-11 02:53:51.199773+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 68 \N \N f f -1064 2025-06-11 02:53:51.263082+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 68 \N \N f f -1065 2025-06-11 02:53:56.435416+00 login 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 68 \N \N f f -1066 2025-06-11 02:53:56.49338+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/home/ 68 \N \N f f -1067 2025-06-11 02:53:56.584811+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 68 \N \N f f -1068 2025-06-11 02:53:56.594753+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 68 \N \N t f -1069 2025-06-11 02:53:59.326608+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 68 f211b93642f84c55a0bdd1b12880e32e 17 f t -1070 2025-06-11 02:53:59.459465+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 68 \N \N f f -1071 2025-06-11 02:53:59.490441+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 68 \N \N f f -1072 2025-06-11 02:53:59.610533+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 68 \N \N t f -1073 2025-06-11 02:53:59.721733+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 68 \N \N f f -1074 2025-06-11 02:53:59.727278+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 68 \N \N f f -1075 2025-06-11 02:53:59.730329+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/relevant-tools/ 68 \N \N f f -1076 2025-06-11 02:54:00.168316+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 68 \N \N f f -1077 2025-06-11 02:54:00.202398+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 68 \N \N f f -1078 2025-06-11 02:54:06.200199+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 68 \N \N f f -1079 2025-06-11 02:54:06.503782+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 68 \N \N f f -1080 2025-06-11 02:54:11.217001+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/share-resource-with-user/edit/22/ 68 \N \N f f -1081 2025-06-11 02:54:58.372594+00 logout 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 68 \N \N f f -1082 2025-06-11 02:54:58.422113+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 69 \N \N f f -1083 2025-06-11 02:54:58.423164+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 69 \N \N f f -1084 2025-06-11 02:54:58.489967+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1085 2025-06-11 02:55:00.052336+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 69 \N \N f f -1086 2025-06-11 02:55:00.095205+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1087 2025-06-11 02:55:03.122989+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 69 \N \N f f -1088 2025-06-11 02:55:03.175075+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1089 2025-06-11 02:55:31.076525+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 69 \N \N f f -1090 2025-06-11 02:55:31.136797+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1091 2025-06-11 02:56:23.719632+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 67 \N \N f f -1092 2025-06-11 02:56:24.160775+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1093 2025-06-11 02:56:25.62791+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/23/change/ 67 \N \N f f -1094 2025-06-11 02:56:26.02974+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1095 2025-06-11 02:56:29.831233+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 67 \N \N f f -1096 2025-06-11 02:56:30.228816+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 67 \N \N f f -1097 2025-06-11 03:00:43.578331+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 69 \N \N f f -1098 2025-06-11 03:00:43.669627+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1099 2025-06-11 03:00:48.860275+00 login 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 69 \N \N f f -1100 2025-06-11 03:00:48.929499+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/home/ 69 \N \N f f -1101 2025-06-11 03:00:49.001518+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1102 2025-06-11 03:00:49.018232+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 69 \N \N t f -1103 2025-06-11 03:00:52.551035+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 69 f211b93642f84c55a0bdd1b12880e32e 17 f t -1104 2025-06-11 03:00:52.678413+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1105 2025-06-11 03:00:52.708346+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 69 \N \N f f -1106 2025-06-11 03:00:52.80995+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 69 \N \N t f -1110 2025-06-11 03:00:53.316527+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 69 \N \N f f -1116 2025-06-11 03:02:40.193247+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1141 2025-06-11 03:21:21.222506+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 70 \N \N f f -1279 2025-06-11 15:55:05.722511+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/14 73 \N \N f f -1280 2025-06-11 15:55:05.773369+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1281 2025-06-11 15:55:05.800474+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1282 2025-06-11 15:55:17.802909+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 73 f211b93642f84c55a0bdd1b12880e32e 17 f t -1283 2025-06-11 15:55:18.248086+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1326 2025-06-11 15:56:52.08772+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 75 \N \N t f -1327 2025-06-11 15:56:57.032466+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/collaborate/ 75 \N \N f f -1328 2025-06-11 15:56:57.10674+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1329 2025-06-11 15:56:57.123184+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 75 \N \N t f -1330 2025-06-11 15:56:58.314624+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/groups 75 \N \N f f -1331 2025-06-11 15:56:58.408549+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1332 2025-06-11 15:56:58.427302+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 75 \N \N t f -1333 2025-06-11 15:57:02.365504+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/group/14 75 \N \N f f -1334 2025-06-11 15:57:02.426992+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1335 2025-06-11 15:57:02.447737+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 75 \N \N t f -1336 2025-06-11 15:57:03.715935+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/make-group-membership-request/14/ 75 \N \N f f -1337 2025-06-11 15:57:09.927813+00 logout 2 user_ip=192.168.65.1|user_type=University Faculty|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 75 \N \N f f -1338 2025-06-11 15:57:09.960715+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 76 \N \N f f -1339 2025-06-11 15:57:09.961463+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 76 \N \N f f -1107 2025-06-11 03:00:52.887284+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/relevant-tools/ 69 \N \N f f -1108 2025-06-11 03:00:52.89541+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 69 \N \N f f -1109 2025-06-11 03:00:52.90097+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 69 \N \N f f -1111 2025-06-11 03:00:53.32234+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 69 \N \N f f -1112 2025-06-11 03:01:01.281839+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 69 \N \N f f -1113 2025-06-11 03:01:01.889225+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 69 \N \N f f -1114 2025-06-11 03:01:03.587513+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/share-resource-with-user/owner/23/ 69 \N \N f f -1115 2025-06-11 03:02:40.096557+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 69 f211b93642f84c55a0bdd1b12880e32e 17 f t -1117 2025-06-11 03:02:40.207405+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 69 \N \N f f -1118 2025-06-11 03:02:40.375813+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 69 \N \N t f -1291 2025-06-11 15:55:26.665598+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 73 \N \N f f -1292 2025-06-11 15:55:28.674241+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 73 \N \N f f -1293 2025-06-11 15:55:28.966406+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 73 \N \N f f -1294 2025-06-11 15:55:29.376565+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 73 \N \N f f -1295 2025-06-11 15:55:31.883254+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 73 \N \N f f -1296 2025-06-11 15:55:35.349404+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/share-resource-with-group/edit/15/ 73 \N \N f f -1297 2025-06-11 15:55:41.803255+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/collaborate/ 73 \N \N f f -1298 2025-06-11 15:55:41.864176+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1299 2025-06-11 15:55:41.883642+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1300 2025-06-11 15:55:43.444541+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/groups 73 \N \N f f -1301 2025-06-11 15:55:43.5004+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1302 2025-06-11 15:55:43.523442+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1303 2025-06-11 15:55:49.580333+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/14 73 \N \N f f -1304 2025-06-11 15:55:49.646377+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1305 2025-06-11 15:55:49.678363+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1306 2025-06-11 15:56:02.785449+00 logout 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 73 \N \N f f -1307 2025-06-11 15:56:02.860155+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 75 \N \N f f -1308 2025-06-11 15:56:02.861497+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 75 \N \N f f -1309 2025-06-11 15:56:02.923187+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1310 2025-06-11 15:56:09.777025+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 75 \N \N f f -1311 2025-06-11 15:56:09.84075+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1312 2025-06-11 15:56:19.543036+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 75 \N \N t f -1313 2025-06-11 15:56:31.43891+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 75 \N \N f f -1119 2025-06-11 03:02:40.421193+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 69 \N \N f f -1120 2025-06-11 03:02:40.432554+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 69 \N \N f f -1121 2025-06-11 03:02:40.597629+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 69 \N \N f f -1122 2025-06-11 03:02:40.670222+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 69 \N \N f f -1123 2025-06-11 03:02:45.642246+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/title/2/update-metadata/ 69 \N \N f f -1124 2025-06-11 03:03:58.117654+00 create 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0|resource_size_bytes=0|resource_type=CompositeResource|resource_guid=d5c432ae01eb4f03a73d589e54d341b3 69 d5c432ae01eb4f03a73d589e54d341b3 18 f f -1125 2025-06-11 03:03:58.122257+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/create-resource/do/ 69 \N \N f f -1126 2025-06-11 03:03:59.037508+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/d5c432ae01eb4f03a73d589e54d341b3/ 69 d5c432ae01eb4f03a73d589e54d341b3 18 f t -1127 2025-06-11 03:03:59.156108+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 69 \N \N f f -1128 2025-06-11 03:03:59.158336+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/list-referenced-content/ 69 \N \N f f -1129 2025-06-11 03:03:59.300765+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 69 \N \N t f -1130 2025-06-11 03:03:59.318353+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/list-referenced-content/ 69 \N \N f f -1131 2025-06-11 03:03:59.335089+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/aggregation-files-to-sync/ 69 \N \N f f -1132 2025-06-11 03:03:59.722582+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/non-preferred-paths/ 69 \N \N f f -1133 2025-06-11 03:04:12.512771+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/set-resource-flag/ 69 \N \N f f -1134 2025-06-11 03:21:16.591567+00 begin_session 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 70 \N \N f f -1135 2025-06-11 03:21:16.592901+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources/ 70 \N \N f f -1136 2025-06-11 03:21:16.732891+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 70 \N \N f f -1137 2025-06-11 03:21:16.789462+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 70 \N \N t f -1138 2025-06-11 03:21:16.835325+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources-counts/ 70 \N \N f f -1139 2025-06-11 03:21:20.936585+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 70 f211b93642f84c55a0bdd1b12880e32e 17 f t -1140 2025-06-11 03:21:21.11639+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 70 \N \N f f -1142 2025-06-11 03:21:21.242729+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 70 \N \N t f -1143 2025-06-11 03:21:21.298283+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/relevant-tools/ 70 \N \N f f -1144 2025-06-11 03:21:21.324919+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 70 \N \N f f -1145 2025-06-11 03:21:21.335547+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 70 \N \N f f -1146 2025-06-11 03:21:21.685786+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 70 \N \N f f -1147 2025-06-11 03:21:21.738021+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 70 \N \N f f -1148 2025-06-11 15:17:50.815973+00 begin_session 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 71 \N \N f f -1149 2025-06-11 15:17:50.817554+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 71 \N \N f f -1150 2025-06-11 15:17:51.548951+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 71 \N \N f f -1151 2025-06-11 15:17:53.846265+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/share-resource-with-user/view/20/ 71 \N \N f f -1152 2025-06-11 15:17:55.593604+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 71 \N \N f f -1153 2025-06-11 15:17:55.964069+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 71 \N \N f f -1154 2025-06-11 15:17:59.493298+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/share-resource-with-user/edit/22/ 71 \N \N f f -1155 2025-06-11 15:18:01.259987+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 71 \N \N f f -1156 2025-06-11 15:18:01.803289+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 71 \N \N f f -1157 2025-06-11 15:18:16.824376+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/share-resource-with-user/owner/23/ 71 \N \N f f -1158 2025-06-11 15:39:27.562924+00 begin_session 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 72 \N \N f f -1159 2025-06-11 15:39:27.564976+00 create 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0|resource_size_bytes=0|resource_type=CompositeResource|resource_guid=a2c0df5bf3eb4d8c8a34beaffe169f91 72 a2c0df5bf3eb4d8c8a34beaffe169f91 19 f f -1160 2025-06-11 15:39:27.571257+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/create-resource/do/ 72 \N \N f f -1161 2025-06-11 15:39:28.433008+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/a2c0df5bf3eb4d8c8a34beaffe169f91/ 72 a2c0df5bf3eb4d8c8a34beaffe169f91 19 f t -1162 2025-06-11 15:39:28.54812+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1163 2025-06-11 15:39:28.557745+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 72 \N \N f f -1164 2025-06-11 15:39:28.754234+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1165 2025-06-11 15:39:28.779079+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/aggregation-files-to-sync/ 72 \N \N f f -1166 2025-06-11 15:39:28.793892+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 72 \N \N f f -1167 2025-06-11 15:39:29.096626+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/non-preferred-paths/ 72 \N \N f f -1168 2025-06-11 15:39:32.417157+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/description/add-metadata/ 72 \N \N f f -1169 2025-06-11 15:39:34.621707+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/subject/add-metadata/ 72 \N \N f f -1170 2025-06-11 15:39:41.8109+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 72 \N \N f f -1171 2025-06-11 15:39:41.852734+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 72 \N \N f f -1172 2025-06-11 15:39:48.845716+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1173 2025-06-11 15:39:49.89664+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1174 2025-06-11 15:39:52.648001+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/share-resource-with-user/view/20/ 72 \N \N f f -1175 2025-06-11 15:39:54.232963+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1176 2025-06-11 15:39:54.827064+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1177 2025-06-11 15:39:58.709426+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/share-resource-with-user/edit/22/ 72 \N \N f f -1178 2025-06-11 15:40:00.278421+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1179 2025-06-11 15:40:00.711893+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1180 2025-06-11 15:40:04.587837+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/share-resource-with-user/owner/23/ 72 \N \N f f -1181 2025-06-11 15:40:24.536141+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/a2c0df5bf3eb4d8c8a34beaffe169f91/ 72 a2c0df5bf3eb4d8c8a34beaffe169f91 19 f t -1182 2025-06-11 15:40:24.643665+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1183 2025-06-11 15:40:24.662163+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 72 \N \N f f -1184 2025-06-11 15:40:24.810146+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1185 2025-06-11 15:40:24.871462+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/relevant-tools/ 72 \N \N f f -1186 2025-06-11 15:40:24.874889+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/aggregation-files-to-sync/ 72 \N \N f f -1187 2025-06-11 15:40:24.883238+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 72 \N \N f f -1188 2025-06-11 15:40:25.099281+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/non-preferred-paths/ 72 \N \N f f -1189 2025-06-11 15:40:25.134994+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 72 \N \N f f -1190 2025-06-11 15:40:31.424543+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/set-resource-flag/ 72 \N \N f f -1191 2025-06-11 15:43:58.898808+00 create 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0|resource_size_bytes=0|resource_type=CompositeResource|resource_guid=5670903e39d54026a729abd4cc148f99 72 5670903e39d54026a729abd4cc148f99 20 f f -1192 2025-06-11 15:43:58.903579+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/create-resource/do/ 72 \N \N f f -1193 2025-06-11 15:43:59.78753+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/5670903e39d54026a729abd4cc148f99/ 72 5670903e39d54026a729abd4cc148f99 20 f t -1194 2025-06-11 15:43:59.89457+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1195 2025-06-11 15:43:59.92267+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 72 \N \N f f -1196 2025-06-11 15:44:00.231554+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 72 \N \N f f -1198 2025-06-11 15:44:00.293854+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/aggregation-files-to-sync/ 72 \N \N f f -1197 2025-06-11 15:44:00.288659+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1199 2025-06-11 15:44:00.424178+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/non-preferred-paths/ 72 \N \N f f -1200 2025-06-11 15:44:06.607316+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1201 2025-06-11 15:44:08.999666+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/share-resource-with-user/view/20/ 72 \N \N f f -1202 2025-06-11 15:44:10.606191+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1203 2025-06-11 15:44:11.142842+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1204 2025-06-11 15:44:14.685249+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/share-resource-with-user/edit/22/ 72 \N \N f f -1205 2025-06-11 15:44:16.256314+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1206 2025-06-11 15:44:16.705299+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/user-autocomplete/ 72 \N \N f f -1207 2025-06-11 15:44:19.841869+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/share-resource-with-user/owner/23/ 72 \N \N f f -1208 2025-06-11 15:44:28.40391+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/description/add-metadata/ 72 \N \N f f -1209 2025-06-11 15:44:31.449276+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/subject/add-metadata/ 72 \N \N f f -1213 2025-06-11 15:44:43.161778+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1214 2025-06-11 15:44:43.174809+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 72 \N \N f f -1215 2025-06-11 15:44:43.311746+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1216 2025-06-11 15:44:43.35444+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/relevant-tools/ 72 \N \N f f -1217 2025-06-11 15:44:43.363457+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/aggregation-files-to-sync/ 72 \N \N f f -1218 2025-06-11 15:44:43.366281+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 72 \N \N f f -1219 2025-06-11 15:44:43.585948+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/non-preferred-paths/ 72 \N \N f f -1220 2025-06-11 15:44:43.63531+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 72 \N \N f f -1221 2025-06-11 15:44:47.167837+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/set-resource-flag/ 72 \N \N f f -1222 2025-06-11 15:50:54.646059+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/collaborate/ 72 \N \N f f -1223 2025-06-11 15:50:54.740305+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1224 2025-06-11 15:50:55.040824+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1225 2025-06-11 15:50:56.072144+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/groups 72 \N \N f f -1226 2025-06-11 15:50:56.122908+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1227 2025-06-11 15:50:56.140538+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1228 2025-06-11 15:51:32.369566+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/14 72 \N \N f f -1230 2025-06-11 15:51:32.487183+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 72 \N \N t f -1252 2025-06-11 15:53:35.545634+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1253 2025-06-11 15:53:42.445064+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/f211b93642f84c55a0bdd1b12880e32e/ 73 f211b93642f84c55a0bdd1b12880e32e 17 f t -1256 2025-06-11 15:53:42.714101+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 73 \N \N t f -1258 2025-06-11 15:53:42.78407+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/relevant-tools/ 73 \N \N f f -1259 2025-06-11 15:53:42.790875+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/aggregation-files-to-sync/ 73 \N \N f f -1260 2025-06-11 15:53:43.041776+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/non-preferred-paths/ 73 \N \N f f -1261 2025-06-11 15:53:43.735849+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 73 \N \N f f -1314 2025-06-11 15:56:31.500583+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1315 2025-06-11 15:56:35.648807+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 74 \N \N f f -1316 2025-06-11 15:56:36.084698+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 74 \N \N f f -1317 2025-06-11 15:56:38.103267+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/25/change/ 74 \N \N f f -1318 2025-06-11 15:56:38.524216+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 74 \N \N f f -1210 2025-06-11 15:44:37.408419+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 72 \N \N f f -1211 2025-06-11 15:44:37.45954+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 72 \N \N f f -1212 2025-06-11 15:44:43.074124+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/5670903e39d54026a729abd4cc148f99/ 72 5670903e39d54026a729abd4cc148f99 20 f t -1229 2025-06-11 15:51:32.486407+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 72 \N \N f f -1231 2025-06-11 15:52:43.476044+00 logout 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 72 \N \N f f -1232 2025-06-11 15:52:43.528794+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 73 \N \N f f -1233 2025-06-11 15:52:43.529974+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 73 \N \N f f -1234 2025-06-11 15:52:43.633946+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1235 2025-06-11 15:52:44.856564+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/sign-up/ 73 \N \N f f -1236 2025-06-11 15:52:44.921523+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1237 2025-06-11 15:52:59.573561+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/dictionary/universities/ 73 \N \N t f -1238 2025-06-11 15:53:14.020705+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 73 \N \N f f -1239 2025-06-11 15:53:14.085761+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1240 2025-06-11 15:53:16.256999+00 begin_session 2 user_ip=192.168.65.1|user_type=|user_email_domain=com|user_email_domain_full=example.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 74 \N \N f f -1241 2025-06-11 15:53:16.258796+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 74 \N \N f f -1242 2025-06-11 15:53:16.689779+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 74 \N \N f f -1243 2025-06-11 15:53:18.587097+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/24/change/ 74 \N \N f f -1244 2025-06-11 15:53:19.006276+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 74 \N \N f f -1245 2025-06-11 15:53:23.750441+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 74 \N \N f f -1246 2025-06-11 15:53:24.298938+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 74 \N \N f f -1247 2025-06-11 15:53:29.508329+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 73 \N \N f f -1248 2025-06-11 15:53:29.559105+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1249 2025-06-11 15:53:35.380092+00 login 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 73 \N \N f f -1250 2025-06-11 15:53:35.458998+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/home/ 73 \N \N f f -1251 2025-06-11 15:53:35.525166+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1254 2025-06-11 15:53:42.611616+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 73 \N \N f f -1255 2025-06-11 15:53:42.661493+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 73 \N \N f f -1257 2025-06-11 15:53:42.778075+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/f211b93642f84c55a0bdd1b12880e32e/list-referenced-content/ 73 \N \N f f -1319 2025-06-11 15:56:42.882162+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/auth/user/ 74 \N \N f f -1320 2025-06-11 15:56:43.368703+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=|user_email_domain=com|request_url=/admin/jsi18n/ 74 \N \N f f -1321 2025-06-11 15:56:45.096111+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 75 \N \N f f -1322 2025-06-11 15:56:45.152368+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1323 2025-06-11 15:56:51.941818+00 login 2 user_ip=192.168.65.1|user_type=University Faculty|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 75 \N \N f f -1324 2025-06-11 15:56:52.005012+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/home/ 75 \N \N f f -1325 2025-06-11 15:56:52.067946+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 75 \N \N f f -1340 2025-06-11 15:57:10.016275+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 76 \N \N f f -1341 2025-06-11 15:57:11.608238+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 76 \N \N f f -1342 2025-06-11 15:57:11.669598+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 76 \N \N f f -1343 2025-06-11 15:57:16.990866+00 login 2 user_ip=192.168.65.1|user_type=University Faculty|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 76 \N \N f f -1344 2025-06-11 15:57:17.038148+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/home/ 76 \N \N f f -1345 2025-06-11 15:57:17.108868+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 76 \N \N f f -1346 2025-06-11 15:57:17.121017+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 76 \N \N t f -1347 2025-06-11 15:57:19.717665+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/collaborate/ 76 \N \N f f -1348 2025-06-11 15:57:19.790388+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 76 \N \N f f -1349 2025-06-11 15:57:19.80055+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 76 \N \N t f -1350 2025-06-11 15:57:20.81603+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/groups 76 \N \N f f -1366 2025-06-11 15:57:32.926155+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1367 2025-06-11 15:57:34.410499+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/collaborate/ 77 \N \N f f -1368 2025-06-11 15:57:34.469926+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1369 2025-06-11 15:57:34.480111+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1370 2025-06-11 15:57:35.755115+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/groups 77 \N \N f f -1371 2025-06-11 15:57:35.816131+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1372 2025-06-11 15:57:35.832305+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1373 2025-06-11 15:57:38.962845+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/14 77 \N \N f f -1374 2025-06-11 15:57:39.021691+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1375 2025-06-11 15:57:39.043182+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1376 2025-06-11 15:57:45.104366+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/14 77 \N \N f f -1377 2025-06-11 15:57:48.347171+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-groups/ 77 \N \N f f -1378 2025-06-11 15:57:48.404278+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1379 2025-06-11 15:57:48.421369+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1380 2025-06-11 15:57:50.578508+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/15 77 \N \N f f -1381 2025-06-11 15:57:50.64536+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1382 2025-06-11 15:57:50.666828+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1383 2025-06-11 15:57:54.095558+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group/15 77 \N \N f f -1351 2025-06-11 15:57:20.888164+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 76 \N \N f f -1352 2025-06-11 15:57:20.905792+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 76 \N \N t f -1353 2025-06-11 15:57:23.702784+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/group/15 76 \N \N f f -1354 2025-06-11 15:57:23.777525+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 76 \N \N f f -1355 2025-06-11 15:57:23.796072+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/userInfo/ 76 \N \N t f -1356 2025-06-11 15:57:25.1352+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Faculty|user_email_domain=com|request_url=/hsapi/_internal/make-group-membership-request/15/ 76 \N \N f f -1357 2025-06-11 15:57:27.713792+00 logout 2 user_ip=192.168.65.1|user_type=University Faculty|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 76 \N \N f f -1358 2025-06-11 15:57:27.755548+00 begin_session 2 user_ip=192.168.65.1|user_type=None|user_email_domain=None|user_email_domain_full=None|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 77 \N \N f f -1359 2025-06-11 15:57:27.756526+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/ 77 \N \N f f -1360 2025-06-11 15:57:27.807381+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1361 2025-06-11 15:57:29.281942+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/accounts/login/ 77 \N \N f f -1362 2025-06-11 15:57:29.348535+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=None|user_email_domain=None|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1363 2025-06-11 15:57:32.772972+00 login 2 user_ip=192.168.65.1|user_type=University Professional or Research Staff|user_email_domain=com|user_email_domain_full=mail.com|is_human=True|user_agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0 77 \N \N f f -1364 2025-06-11 15:57:32.835644+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/home/ 77 \N \N f f -1365 2025-06-11 15:57:32.904947+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1384 2025-06-11 16:01:16.060922+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/search/ 77 \N \N f f -1385 2025-06-11 16:01:16.319867+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1386 2025-06-11 16:01:16.440659+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1387 2025-06-11 16:01:16.724247+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/discoverapi/ 77 \N \N f f -1388 2025-06-11 16:01:16.95834+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources/ 77 \N \N f f -1389 2025-06-11 16:01:17.041901+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1390 2025-06-11 16:01:17.146354+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1391 2025-06-11 16:01:17.187579+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources-counts/ 77 \N \N f f -1392 2025-06-11 16:01:21.904482+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/5670903e39d54026a729abd4cc148f99/ 77 5670903e39d54026a729abd4cc148f99 20 f t -1393 2025-06-11 16:01:22.078062+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1394 2025-06-11 16:01:22.162276+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 77 \N \N f f -1395 2025-06-11 16:01:22.194732+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1396 2025-06-11 16:01:22.271961+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/relevant-tools/ 77 \N \N f f -1397 2025-06-11 16:01:22.278442+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/list-referenced-content/ 77 \N \N f f -1398 2025-06-11 16:01:22.292615+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/aggregation-files-to-sync/ 77 \N \N f f -1399 2025-06-11 16:01:22.701766+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/non-preferred-paths/ 77 \N \N f f -1400 2025-06-11 16:01:22.73021+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 77 \N \N f f -1401 2025-06-11 16:01:28.877888+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1402 2025-06-11 16:01:30.809704+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/share-resource-with-group/view/14/ 77 \N \N f f -1403 2025-06-11 16:01:32.69806+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1404 2025-06-11 16:01:33.03964+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1405 2025-06-11 16:01:33.559631+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1406 2025-06-11 16:01:34.274029+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1407 2025-06-11 16:01:38.442098+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/5670903e39d54026a729abd4cc148f99/share-resource-with-group/edit/15/ 77 \N \N f f -1408 2025-06-11 16:01:40.693747+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources/ 77 \N \N f f -1409 2025-06-11 16:01:40.748442+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1416 2025-06-11 16:01:43.819442+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/relevant-tools/ 77 \N \N f f -1417 2025-06-11 16:01:43.847418+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 77 \N \N f f -1418 2025-06-11 16:01:43.851423+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/aggregation-files-to-sync/ 77 \N \N f f -1419 2025-06-11 16:01:44.252266+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/non-preferred-paths/ 77 \N \N f f -1420 2025-06-11 16:01:44.301744+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/data-store-structure/ 77 \N \N f f -1421 2025-06-11 16:01:49.615976+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1422 2025-06-11 16:01:52.15134+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/share-resource-with-group/view/14/ 77 \N \N f f -1423 2025-06-11 16:01:53.999726+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1424 2025-06-11 16:01:57.827368+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/share-resource-with-group/edit/15/ 77 \N \N f f -1425 2025-06-11 16:02:00.539197+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources/ 77 \N \N f f -1426 2025-06-11 16:02:00.616743+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1428 2025-06-11 16:02:00.805764+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources-counts/ 77 \N \N f f -1429 2025-06-11 16:02:03.062369+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/d5c432ae01eb4f03a73d589e54d341b3/ 77 d5c432ae01eb4f03a73d589e54d341b3 18 f t -1430 2025-06-11 16:02:03.172317+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1433 2025-06-11 16:02:03.329124+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/relevant-tools/ 77 \N \N f f -1434 2025-06-11 16:02:03.366239+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/list-referenced-content/ 77 \N \N f f -1410 2025-06-11 16:01:40.825098+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1411 2025-06-11 16:01:40.846354+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/my-resources-counts/ 77 \N \N f f -1412 2025-06-11 16:01:43.520381+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/resource/a2c0df5bf3eb4d8c8a34beaffe169f91/ 77 a2c0df5bf3eb4d8c8a34beaffe169f91 19 f t -1413 2025-06-11 16:01:43.642687+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/get_tasks_by_user/ 77 \N \N f f -1414 2025-06-11 16:01:43.670613+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/a2c0df5bf3eb4d8c8a34beaffe169f91/list-referenced-content/ 77 \N \N f f -1415 2025-06-11 16:01:43.762537+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1427 2025-06-11 16:02:00.790009+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1431 2025-06-11 16:02:03.216718+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/list-referenced-content/ 77 \N \N f f -1432 2025-06-11 16:02:03.302774+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/userInfo/ 77 \N \N t f -1435 2025-06-11 16:02:03.365491+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/aggregation-files-to-sync/ 77 \N \N f f -1436 2025-06-11 16:02:03.648575+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/non-preferred-paths/ 77 \N \N f f -1437 2025-06-11 16:02:10.000526+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1438 2025-06-11 16:02:11.964007+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/share-resource-with-group/view/14/ 77 \N \N f f -1439 2025-06-11 16:02:14.273923+00 visit 2 user_ip=192.168.65.1|http_method=GET|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/group-autocomplete/ 77 \N \N f f -1440 2025-06-11 16:02:17.516817+00 visit 2 user_ip=192.168.65.1|http_method=POST|http_code=200|user_type=University Professional or Research Staff|user_email_domain=com|request_url=/hsapi/_internal/d5c432ae01eb4f03a73d589e54d341b3/share-resource-with-group/edit/15/ 77 \N \N f f -\. - - --- --- Data for Name: hs_tracking_visitor; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.hs_tracking_visitor (id, first_seen, user_id) FROM stdin; -1 2016-06-23 17:06:32.171224+00 4 -2 2016-06-23 17:07:55.656084+00 \N -3 2017-02-02 16:16:56.851102+00 \N -4 2017-02-02 17:23:27.980519+00 \N -5 2017-02-02 17:27:56.524908+00 \N -6 2017-02-02 17:28:40.809782+00 \N -7 2017-05-18 23:38:49.592669+00 \N -8 2017-08-18 14:41:26.366412+00 \N -9 2017-09-01 18:10:51.822911+00 \N -10 2017-09-01 18:34:26.164483+00 \N -11 2019-09-30 17:57:55.493+00 5 -12 2019-09-30 18:09:05.240161+00 \N -13 2019-09-30 18:15:10.771158+00 6 -14 2019-09-30 18:16:47.435114+00 7 -15 2019-09-30 18:17:35.51776+00 8 -16 2019-09-30 18:18:12.699192+00 9 -17 2019-09-30 18:19:04.812407+00 10 -18 2019-09-30 18:19:43.161539+00 11 -19 2019-09-30 18:20:27.810989+00 12 -20 2019-09-30 18:21:08.91086+00 13 -21 2019-09-30 18:22:01.737048+00 14 -22 2019-09-30 18:23:03.089177+00 15 -23 2019-09-30 18:23:48.710677+00 16 -24 2019-09-30 18:39:36.991937+00 \N -25 2019-09-30 18:39:59.136064+00 \N -26 2019-09-30 18:40:11.464983+00 \N -27 2019-09-30 18:40:53.189362+00 \N -28 2019-09-30 18:41:28.356035+00 \N -29 2019-09-30 18:42:07.476487+00 \N -30 2019-09-30 18:42:50.312085+00 \N -31 2019-09-30 18:43:34.101191+00 \N -32 2019-09-30 18:44:28.946495+00 \N -33 2019-09-30 18:46:05.204825+00 \N -34 2019-09-30 18:50:41.85366+00 \N -35 2019-09-30 18:51:17.468016+00 \N -36 2019-10-01 18:18:49.16275+00 \N -37 2019-10-01 18:19:35.536192+00 \N -38 2019-12-11 18:18:49.844666+00 17 -39 2019-12-11 18:21:28.872481+00 \N -40 2019-12-11 18:22:10.832573+00 \N -41 2019-12-11 18:51:21.120066+00 \N -42 2019-12-11 18:52:13.443834+00 \N -43 2019-12-11 18:53:22.318845+00 \N -44 2019-12-11 18:54:15.436878+00 \N -45 2019-12-11 18:54:59.849296+00 \N -46 2019-12-11 18:55:53.942165+00 \N -47 2019-12-11 18:56:41.414082+00 \N -48 2019-12-11 18:57:45.928917+00 \N -49 2019-12-11 18:58:54.718444+00 \N -50 2019-12-11 19:06:56.053359+00 \N -51 2019-12-11 19:07:45.570508+00 \N -52 2019-12-11 19:08:44.214488+00 \N -53 2019-12-11 19:09:35.270273+00 \N -54 2019-12-11 20:03:19.846108+00 \N -55 2019-12-11 20:09:19.68388+00 \N -56 2019-12-11 20:21:52.600769+00 \N -57 2025-06-10 23:07:52.457657+00 \N -58 2025-06-10 23:14:11.749289+00 \N -59 2025-06-10 23:15:35.295453+00 18 -60 2025-06-10 23:50:06.852396+00 \N -61 2025-06-11 02:12:34.869332+00 \N -62 2025-06-11 02:14:23.662965+00 \N -63 2025-06-11 02:47:54.333478+00 \N -64 2025-06-11 02:50:43.356455+00 \N -65 2025-06-11 02:51:03.042576+00 \N -66 2025-06-11 02:54:58.418863+00 \N -67 2025-06-11 15:52:43.523098+00 \N -68 2025-06-11 15:56:02.856282+00 24 -69 2025-06-11 15:57:09.958898+00 25 -70 2025-06-11 15:57:27.753199+00 \N -\. - - --- --- Data for Name: oauth2_provider_accesstoken; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.oauth2_provider_accesstoken (id, token, expires, scope, application_id, user_id, created, updated, source_refresh_token_id, id_token_id, token_checksum) FROM stdin; -\. - - --- --- Data for Name: oauth2_provider_application; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.oauth2_provider_application (id, client_id, redirect_uris, client_type, authorization_grant_type, client_secret, name, user_id, skip_authorization, created, updated, algorithm, post_logout_redirect_uris, hash_client_secret, allowed_origins) FROM stdin; -\. - - --- --- Data for Name: oauth2_provider_grant; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.oauth2_provider_grant (id, code, expires, redirect_uri, scope, application_id, user_id, created, updated, code_challenge, code_challenge_method, nonce, claims) FROM stdin; -\. - - --- --- Data for Name: oauth2_provider_idtoken; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.oauth2_provider_idtoken (id, jti, expires, scope, created, updated, application_id, user_id) FROM stdin; -\. - - --- --- Data for Name: oauth2_provider_refreshtoken; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.oauth2_provider_refreshtoken (id, token, access_token_id, application_id, user_id, created, updated, revoked, token_family) FROM stdin; -\. - - --- --- Data for Name: pages_link; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.pages_link (page_ptr_id) FROM stdin; -6 -14 -15 -\. - - --- --- Data for Name: pages_page; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.pages_page (id, keywords_string, site_id, title, slug, _meta_title, description, gen_description, created, updated, status, publish_date, expiry_date, short_url, in_sitemap, _order, parent_id, in_menus, titles, content_model, login_required) FROM stdin; -8 1 Resend Verification Email resend-verification-email Resend Email Verification Please give us your email address and we will resend the confirmation t 2016-01-25 19:32:20.248488+00 2016-01-25 19:32:20.248488+00 2 2016-01-25 19:32:20.247193+00 \N \N t 8 \N Resend Verification Email form f -11 1 Create Resource create-resource Create Resource create resource t 2016-01-25 19:35:15.10115+00 2016-01-25 19:35:15.10115+00 2 2016-01-25 19:35:15.100153+00 \N \N t 11 \N Create Resource richtextpage f -12 1 Sign Up sign-up Sign Up sign up t 2016-01-25 19:40:35.894321+00 2016-01-25 19:40:35.894321+00 2 2016-01-25 19:40:35.893206+00 \N \N t 12 \N Sign Up richtextpage f -9 1 Terms of Use https://help.hydroshare.org/about-hydroshare/policies/terms-of-use Terms of Use HydroShare Terms of Use\nLast modified July 7, 2013 t 2016-01-25 19:33:24.439209+00 2017-09-01 18:25:48.01336+00 2 2016-01-25 19:33:24+00 \N \N t 9 \N Terms of Use richtextpage f -10 1 Statement of Privacy https://help.hydroshare.org/about-hydroshare/policies/statement-of-privacy Statement of Privacy HydroShare Statement of Privacy\nLast modified July 7, 2013 t 2016-01-25 19:34:22.084583+00 2017-09-01 18:26:27.33157+00 2 2016-01-25 19:34:22+00 \N \N t 10 \N Statement of Privacy richtextpage f -2 1 Home / HydroShare is an online collaboration environment for sharing data, models, and code.  Join the community to start sharing. t 2016-01-25 19:17:47.144396+00 2016-01-25 19:17:47.144396+00 2 2016-01-25 19:17:47.143386+00 \N \N t 0 \N Home homepage f -3 1 My Resources my-resources My Resources my-resources t 2016-01-25 19:22:48.667099+00 2016-01-25 19:29:50.956511+00 2 2016-01-25 19:22:48+00 \N \N t 1 \N 1,2,3 My Resources richtextpage f -4 1 Discover search Discover Discover t 2016-01-25 19:23:52.174668+00 2016-01-25 19:52:37.387455+00 2 2016-01-25 19:23:52+00 \N \N t 2 \N 1,2,3 Discover richtextpage f -13 1 Collaborate collaborate collaborate t 2016-06-23 17:07:04.042277+00 2016-06-23 17:07:04.042277+00 2 2016-06-23 17:07:04.008329+00 \N \N t 3 \N 1 Collaborate richtextpage f -6 1 Apps https://appsdev.hydroshare.org/apps \N Apps t 2016-01-25 19:26:44.887463+00 2016-01-25 19:26:44.887463+00 2 2016-01-25 19:26:44.886468+00 \N \N f 4 \N 1,2,3 Apps link f -14 1 Help http://help.hydroshare.org/ \N Help t 2017-09-01 18:12:49.579765+00 2017-09-01 18:13:50.018396+00 2 2017-09-01 18:12:49+00 \N \N f 5 \N 1 Help link f -15 1 About http://help.hydroshare.org//about-hydroshare/ \N About t 2017-09-01 18:13:41.539301+00 2017-09-01 18:13:50.015184+00 2 2017-09-01 18:13:41.539168+00 \N \N f 6 \N 1 About link f -7 1 Verify Account verify-account Verify Account Thank you for signing up for HydroShare! We have sent you an email from hydroshare.org to verify your account.  Please click on the link within the email and verify your account with us and you can get started sharing data and models with HydroShare. t 2016-01-25 19:28:12.867432+00 2016-01-25 19:28:12.867432+00 2 2016-01-25 19:28:12.866419+00 \N \N t 7 \N Verify Account richtextpage f -16 1 asdf resource/ad0b5df2e8434a5aaad455a322bc1fd5 \N asdf t 2025-06-10 23:08:22.518892+00 2025-06-10 23:08:28.376035+00 2 2025-06-10 23:08:22.515312+00 \N \N t 13 \N asdf compositeresource f -20 1 discoverable resource resource/5670903e39d54026a729abd4cc148f99 \N discoverable resource t 2025-06-11 15:43:57.274329+00 2025-06-11 15:44:37.064759+00 2 2025-06-11 15:43:57.270552+00 \N \N t 17 \N discoverable resource compositeresource f -17 1 private resource resource/f211b93642f84c55a0bdd1b12880e32e \N asdf t 2025-06-10 23:15:47.717692+00 2025-06-11 03:02:45.627118+00 2 2025-06-10 23:15:47.715096+00 \N \N t 14 \N private resource compositeresource f -18 1 private link sharing resource resource/d5c432ae01eb4f03a73d589e54d341b3 \N private link sharing resource t 2025-06-11 03:03:56.605768+00 2025-06-11 03:03:58.024818+00 2 2025-06-11 03:03:56.598829+00 \N \N t 15 \N private link sharing resource compositeresource f -19 1 public resource resource/a2c0df5bf3eb4d8c8a34beaffe169f91 \N public resource t 2025-06-11 15:39:25.83867+00 2025-06-11 15:39:41.508267+00 2 2025-06-11 15:39:25.835184+00 \N \N t 16 \N public resource compositeresource f -\. - - --- --- Data for Name: pages_richtextpage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.pages_richtextpage (page_ptr_id, content) FROM stdin; -7

Thank you for signing up for HydroShare! We have sent you an email from hydroshare.org to verify your account.  Please click on the link within the email and verify your account with us and you can get started sharing data and models with HydroShare.

\n

Please click here if you do not receive a verification email within 1 hour.

-3

my-resources

-11

create resource

-12

sign up

-4

Discover

-13

collaborate

-9

HydroShare Terms of Use

\n

Last modified July 7, 2013

\n

Thank you for using the HydroShare hydrologic data sharing system hosted at hydroshare.org.  HydroShare services are provided by a team of researchers associated with the Consortium of Universities for the Advancement of Hydrologic Science, Inc. and funded by the National Science Foundation.  The services are hosted at participating institutions including the Renaissance Computing Institute at University of North Carolina, Utah State University, Brigham Young University, Tufts, University of Virginia, University of California at San Diego, University of Texas, Purdue and CUAHSI. Your access to hydroshare.org is subject to your agreement to these Terms of Use. By using our services at hydroshare.org, you are agreeing to these terms.  Please read them carefully.

\n

Modification of the Agreement

\n

We maintain the right to modify these Terms of Use and may do so by posting modifications on this page. Any modification is effective immediately upon posting the modification unless otherwise stated. Your continued use of hydroshare.org following the posting of any modification signifies your acceptance of that modification. You should regularly visit this page to review the current Terms of Use.

\n

Conduct Using our Services

\n

The hydroshare.org site is intended to support data and model sharing in hydrology.  This is broadly interpreted to include any discipline or endeavor that has something to do with water.  You are responsible at all times for using hydroshare.org in a manner that is legal, ethical, and not to the detriment of others and for purposes related to hydrology. You agree that you will not in your use of hydroshare.org:

\n\n

Certain portions of hydroshare.org are limited to registered users and/or allow a user to participate in online services by entering personal information. You agree that any information provided to hydroshare.org in these areas will be complete and accurate, and that you will neither register under the name of nor attempt to enter hydroshare.org under the name of another person or entity.

\n

You are responsible for maintaining the confidentiality of your user ID and password, if any, and for restricting access to your computer, and you agree to accept responsibility for all activities that occur under your account or password. Hydroshare.org does not authorize use of your User ID by third-parties.

\n

We may, in our sole discretion, terminate or suspend your access to and use of hydroshare.org without notice and for any reason, including for violation of these Terms of Use or for other conduct that we, in our sole discretion, believe to be unlawful or harmful to others. In the event of termination, you are no longer authorized to access hydroshare.org.

\n

Disclaimers

\n

HYDROSHARE AND ANY INFORMATION, PRODUCTS OR SERVICES ON IT ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Hydroshare.org and its participating institutions do not warrant, and hereby disclaim any warranties, either express or implied, with respect to the accuracy, adequacy or completeness of any good, service, or information obtained from hydroshare.org. Hydroshare.org and its participating institutions do not warrant that Hydroshare.org will operate in an uninterrupted or error-free manner or that hydroshare.org is free of viruses or other harmful components. Use of hydroshare.org is at your own risk.

\n

You agree that hydroshare.org and its participating institutions shall have no liability for any consequential, indirect, punitive, special or incidental damages, whether foreseeable or unforeseeable (including, but not limited to, claims for defamation, errors, loss of data, or interruption in availability of data), arising out of or relating to your use of water-hub.org or any resource that you access through hydroshare.org.

\n

The hydroshare.org site hosts content from a number of authors. The statements and views of these authors are theirs alone, and do not reflect the stances or policies of the HydroShare research team or their sponsors, nor does their posting imply the endorsement of HydroShare or their sponsors.

\n

Choice of Law/Forum Selection/Attorney Fees

\n

You agree that any dispute arising out of or relating to hydroshare.org, whether based in contract, tort, statutory or other law, will be governed by federal law and by the laws of North Carolina, excluding its conflicts of law provisions. You further consent to the personal jurisdiction of and exclusive venue in the federal and state courts located in and serving the United States of America, North Carolina as the exclusive legal forums for any such dispute.

-10

HydroShare Statement of Privacy

\n

Last modified July 7, 2013

\n

HydroShare is operated by a team of researchers associated with the Consortium of Universities for the Advancement of Hydrologic Science, Inc. and funded by the National Science Foundation.  The services are hosted at participating institutions including the Renaissance Computing Institute at University of North Carolina, Utah State University, Brigham Young University, Tufts, University of Virginia, University of California at San Diego, University of Texas, Purdue and CUAHSI.  In the following these are referred to as participating institutions.

\n

We respect your privacy. We will only use your personal identification information to support and manage your use of hydroshare.org, including the use of tracking cookies to facilitate hydroshare.org security procedures. The HydroShare participating institutions and the National Science Foundation (which funds hydroshare.org development) regularly request hydroshare.org usages statistics and other information. Usage of hydroshare.org is monitored and usage statistics are collected and reported on a regular basis. Hydroshare.org also reserves the right to contact you to request additional information or to keep you updated on changes to Hydroshare.org. You may opt out of receiving newsletters and other non-essential communications. No information that would identify you personally will be provided to sponsors or third parties without your permission.

\n

While HydroShare uses policies and procedures to manage the access to content according to the access control settings set by users all information posted or stored on hydroshare.org is potentially available to other users of hydroshare.org and the public. The HydroShare participating institutions and hydroshare.org disclaim any responsibility for the preservation of confidentiality of such information. Do not post or store information on hydroshare.org if you expect to or are obligated to protect the confidentiality of that information.

-\. - - --- --- Data for Name: robots_rule; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.robots_rule (id, robot, crawl_delay) FROM stdin; -1 * 5.0 -\. - - --- --- Data for Name: robots_rule_allowed; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.robots_rule_allowed (id, rule_id, url_id) FROM stdin; -\. - - --- --- Data for Name: robots_rule_disallowed; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.robots_rule_disallowed (id, rule_id, url_id) FROM stdin; -1 1 1 -\. - - --- --- Data for Name: robots_rule_sites; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.robots_rule_sites (id, rule_id, site_id) FROM stdin; -1 1 1 -\. - - --- --- Data for Name: robots_url; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.robots_url (id, pattern) FROM stdin; -1 / -\. - - --- --- Data for Name: security_cspreport; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.security_cspreport (id, document_uri, referrer, blocked_uri, violated_directive, original_policy, date_received, sender_ip, user_agent) FROM stdin; -\. - - --- --- Data for Name: security_passwordexpiry; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.security_passwordexpiry (id, password_expiry_date, user_id) FROM stdin; -\. - - --- --- Data for Name: spatial_ref_sys; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spatial_ref_sys (srid, auth_name, auth_srid, srtext, proj4text) FROM stdin; -\. - - --- --- Data for Name: theme_homepage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_homepage (page_ptr_id, heading, slide_in_one_icon, slide_in_one, slide_in_two_icon, slide_in_two, slide_in_three_icon, slide_in_three, header_background, header_image, welcome_heading, content, recent_blog_heading, number_recent_posts, message_end_date, message_start_date, message_type, show_message) FROM stdin; -2 HydroShare Share and Collaborate

HydroShare is an online collaboration environment for sharing data, models, and code.  Join the community to start sharing.

Latest blog posts 3 \N \N Information f -\. - - --- --- Data for Name: theme_iconbox; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_iconbox (id, _order, icon, title, link_text, link, homepage_id) FROM stdin; -\. - - --- --- Data for Name: theme_quotamessage; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_quotamessage (id, warning_content_prepend, enforce_content_prepend, content, soft_limit_percent, published_resource_percent, quota_usage_info) FROM stdin; -1 Your quota for HydroShare resources is {allocated}{unit} in {zone} zone. You currently have resources that consume {used}{unit}, {percent}% of your quota. Once your quota reaches 100% you will no longer be able to create new resources in HydroShare. Your action was refused because you have exceeded your quota. Your quota for HydroShare resources is {allocated}{unit} in {zone} zone. You currently have resources that consume {used}{unit}, {percent}% of your quota. To request additional quota, please contact help@cuahsi.org. We will try to accommodate reasonable requests for additional quota. If you have a large quota request you may need to contribute toward the costs of providing the additional space you need. See https://help.hydroshare.org/about-hydroshare/policies/quota/ for more information about the quota policy. 80 0 Your quota for HydroShare resources is {allocated}{unit}. You currently have resources that consume {used}{unit}, {percent}% of your quota. -\. - - --- --- Data for Name: theme_quotarequest; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_quotarequest (id, date_requested, justification, storage, quota_id, request_from_id, status) FROM stdin; -\. - - --- --- Data for Name: theme_siteconfiguration; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_siteconfiguration (id, col1_heading, col1_content, col2_heading, col2_content, col3_heading, col3_content, twitter_link, facebook_link, pinterest_link, youtube_link, github_link, linkedin_link, vk_link, gplus_link, has_social_network_links, copyright, site_id) FROM stdin; -1 Contact us

Email us at help@cuahsi.org

Follow Open Source

HydroShare is Open Source. Find us on Github.

\n

Report a bug here

\n

This is HydroShare Version DEVELOPMENT

http://twitter.com/cuahsi https://www.facebook.com/pages/CUAHSI-Consortium-of-Universities-for-the-Advancement-of-Hydrologic-Science-Inc/179921902590 http://www.youtube.com/user/CUAHSI http://github.com/hydroshare https://www.linkedin.com/company/2632114 t © {% now "Y" %} CUAHSI. This material is based upon work supported by the National Science Foundation (NSF) under awards 1148453 and 1148090. Any opinions, findings, conclusions, or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the NSF. 1 -\. - - --- --- Data for Name: theme_userprofile; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_userprofile (id, picture, title, subject_areas, organization, phone_1, phone_1_type, phone_2, phone_2_type, public, cv, details, user_id, country, middle_name, state, user_type, website, identifiers, email_opt_out, _bucket_name, minio_access_key, minio_secret_key) FROM stdin; -5 \N \N asdf \N Mobile \N Mobile t 5 Unspecified \N Unspecified \N \N f \N \N \N -6 \N \N CZO \N Mobile \N Mobile t 6 Unspecified \N Unspecified \N \N f \N \N \N -7 \N \N CZO \N Mobile \N Mobile t 7 Unspecified \N Unspecified \N \N f \N \N \N -8 \N \N CZO \N Mobile \N Mobile t 8 Unspecified \N Unspecified \N \N f \N \N \N -9 \N \N CZO \N Mobile \N Mobile t 9 Unspecified \N Unspecified \N \N f \N \N \N -10 \N \N CZO \N Mobile \N Mobile t 10 Unspecified \N Unspecified \N \N f \N \N \N -11 \N \N CZO \N Mobile \N Mobile t 11 Unspecified \N Unspecified \N \N f \N \N \N -12 \N \N CZO \N Mobile \N Mobile t 12 Unspecified \N Unspecified \N \N f \N \N \N -13 \N \N CZO \N Mobile \N Mobile t 13 Unspecified \N Unspecified \N \N f \N \N \N -14 \N \N CZO \N Mobile \N Mobile t 14 Unspecified \N Unspecified \N \N f \N \N \N -15 \N \N CZO \N Mobile \N Mobile t 15 Unspecified \N Unspecified \N \N f \N \N \N -16 \N \N CZO \N Mobile \N Mobile t 16 Unspecified \N Unspecified \N \N f \N \N \N -17 \N \N CZO \N Mobile \N Mobile t 17 Unspecified \N Unspecified \N \N f \N \N \N -4 Research Software Engineer \N RENCI Mobile Mobile t 4 Unspecified Unspecified f \N \N \N -18 \N \N USU \N \N \N \N t \N 18 BH \N CEN University Professional or Research Staff \N f user1 110NZ7BTUKIODZ6G327E loz3DNWtf67cRCY9U7JZLpX9I5sYWhB0rayaF68t -19 \N \N USU \N \N \N \N t \N 19 AF \N BAL University Faculty \N f user2 DYIW20C4AKOWQF4Z4OS0 F3m5eTixeiapVkA9uLLOAmVNLoOea11tztjLZwfC -20 \N \N USU \N \N \N \N t \N 20 AF \N BAL University Faculty \N f user3 QOSI1XWSSK1K312VNJQJ vlXRinQ+fY1aY7THTu0nyv2XbjJtoXm+Qw9DjoOl -21 \N \N USU \N \N \N \N t \N 21 AF \N BAL University Faculty \N f groupuser QQFQV03BODDSZDYOVEF3 owliXG1Xb3gt9yADAkKF+opxd4XsJNSEcMQjy2Q4 -22 \N \N USU \N \N \N \N t \N 22 AF \N BAL University Faculty \N f user4 RH9X00RGVJ8CM08ZTSSH wVGrd1HPZ5iBteOfQuWouO3yklnrrstqPm8iAGw7 -23 \N \N USU \N \N \N \N t \N 23 AF \N BAL University Faculty \N f user5 6K4QGTZZ6QX4F96NKAG2 xu0xcfxhF6lHq6i5pmi9zPAdGiS7dfS+amLHg+wo -24 \N \N USU \N \N \N \N t \N 24 AF \N BAL University Faculty \N f user6 14ZWU3CIFL0ZCJMK5MVL 3FV70Xpuxq6GLpTHmcju+2ihRlxKlYt7miSn6tva -25 \N \N USU \N \N \N \N t \N 25 AF \N BAL University Faculty \N f user7 73V7LB5R9881MELEH9PN b6ePzMiG0IewNKwA0ij3mCPRTc9wONfSOETzppYs -\. - - --- --- Data for Name: theme_userquota; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.theme_userquota (id, zone, user_id) FROM stdin; -1 hydroshare 5 -2 hydroshare 6 -3 hydroshare 7 -4 hydroshare 8 -5 hydroshare 9 -6 hydroshare 10 -7 hydroshare 11 -8 hydroshare 12 -9 hydroshare 13 -10 hydroshare 14 -11 hydroshare 15 -12 hydroshare 16 -13 hydroshare 17 -14 hydroshare 4 -15 hydroshare 18 -16 hydroshare 19 -17 hydroshare 20 -18 hydroshare 21 -19 hydroshare 22 -20 hydroshare 23 -21 hydroshare 24 -22 hydroshare 25 -\. - - --- --- Data for Name: thumbnail_kvstore; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.thumbnail_kvstore (key, value) FROM stdin; -\. - - --- --- Data for Name: geocode_settings; Type: TABLE DATA; Schema: tiger; Owner: postgres --- - -COPY tiger.geocode_settings (name, setting, unit, category, short_desc) FROM stdin; -\. - - --- --- Data for Name: pagc_gaz; Type: TABLE DATA; Schema: tiger; Owner: postgres --- - -COPY tiger.pagc_gaz (id, seq, word, stdword, token, is_custom) FROM stdin; -\. - - --- --- Data for Name: pagc_lex; Type: TABLE DATA; Schema: tiger; Owner: postgres --- - -COPY tiger.pagc_lex (id, seq, word, stdword, token, is_custom) FROM stdin; -\. - - --- --- Data for Name: pagc_rules; Type: TABLE DATA; Schema: tiger; Owner: postgres --- - -COPY tiger.pagc_rules (id, rule, is_custom) FROM stdin; -\. - - --- --- Data for Name: topology; Type: TABLE DATA; Schema: topology; Owner: postgres --- - -COPY topology.topology (id, name, srid, "precision", hasz) FROM stdin; -\. - - --- --- Data for Name: layer; Type: TABLE DATA; Schema: topology; Owner: postgres --- - -COPY topology.layer (topology_id, layer_id, schema_name, table_name, feature_column, feature_type, level, child_id) FROM stdin; -\. - - --- --- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.auth_group_id_seq', 15, true); - - --- --- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 2352, true); - - --- --- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.auth_permission_id_seq', 1086, true); - - --- --- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 23, true); - - --- --- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.auth_user_id_seq', 25, true); - - --- --- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false); - - --- --- Name: blog_blogcategory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.blog_blogcategory_id_seq', 1, false); - - --- --- Name: blog_blogpost_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.blog_blogpost_categories_id_seq', 1, false); - - --- --- Name: blog_blogpost_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.blog_blogpost_id_seq', 1, false); - - --- --- Name: blog_blogpost_related_posts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.blog_blogpost_related_posts_id_seq', 1, false); - - --- --- Name: celery_taskmeta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.celery_taskmeta_id_seq', 1, false); - - --- --- Name: celery_tasksetmeta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.celery_tasksetmeta_id_seq', 1, false); - - --- --- Name: conf_setting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.conf_setting_id_seq', 1, false); - - --- --- Name: core_sitepermission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.core_sitepermission_id_seq', 1, false); - - --- --- Name: core_sitepermission_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.core_sitepermission_sites_id_seq', 1, false); - - --- --- Name: corsheaders_corsmodel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.corsheaders_corsmodel_id_seq', 1, false); - - --- --- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_admin_log_id_seq', 57, true); - - --- --- Name: django_comment_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_comment_flags_id_seq', 1, false); - - --- --- Name: django_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_comments_id_seq', 1, false); - - --- --- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_content_type_id_seq', 289, true); - - --- --- Name: django_docker_processes_containeroverrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_containeroverrides_id_seq', 1, false); - - --- --- Name: django_docker_processes_dockerenvvar_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_dockerenvvar_id_seq', 1, false); - - --- --- Name: django_docker_processes_dockerlink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_dockerlink_id_seq', 1, false); - - --- --- Name: django_docker_processes_dockerport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_dockerport_id_seq', 1, false); - - --- --- Name: django_docker_processes_dockerprocess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_dockerprocess_id_seq', 1, false); - - --- --- Name: django_docker_processes_dockerprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_dockerprofile_id_seq', 1, false); - - --- --- Name: django_docker_processes_dockervolume_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_dockervolume_id_seq', 1, false); - - --- --- Name: django_docker_processes_overrideenvvar_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_overrideenvvar_id_seq', 1, false); - - --- --- Name: django_docker_processes_overridelink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_overridelink_id_seq', 1, false); - - --- --- Name: django_docker_processes_overrideport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_overrideport_id_seq', 1, false); - - --- --- Name: django_docker_processes_overridevolume_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_docker_processes_overridevolume_id_seq', 1, false); - - --- --- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_migrations_id_seq', 416, true); - - --- --- Name: django_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_redirect_id_seq', 2, true); - - --- --- Name: django_s3_avu_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_s3_avu_id_seq', 16, true); - - --- --- Name: django_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.django_site_id_seq', 1, true); - - --- --- Name: djcelery_crontabschedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.djcelery_crontabschedule_id_seq', 1, false); - - --- --- Name: djcelery_intervalschedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.djcelery_intervalschedule_id_seq', 1, false); - - --- --- Name: djcelery_periodictask_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.djcelery_periodictask_id_seq', 1, false); - - --- --- Name: djcelery_taskstate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.djcelery_taskstate_id_seq', 1, false); - - --- --- Name: djcelery_workerstate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.djcelery_workerstate_id_seq', 1, false); - - --- --- Name: forms_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.forms_field_id_seq', 1, false); - - --- --- Name: forms_fieldentry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.forms_fieldentry_id_seq', 1, false); - - --- --- Name: forms_formentry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.forms_formentry_id_seq', 1, false); - - --- --- Name: ga_ows_ogrdataset_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.ga_ows_ogrdataset_id_seq', 1, false); - - --- --- Name: ga_ows_ogrdatasetcollection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.ga_ows_ogrdatasetcollection_id_seq', 1, false); - - --- --- Name: ga_ows_ogrlayer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.ga_ows_ogrlayer_id_seq', 1, false); - - --- --- Name: ga_resources_orderedresource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.ga_resources_orderedresource_id_seq', 1, false); - - --- --- Name: ga_resources_renderedlayer_styles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.ga_resources_renderedlayer_styles_id_seq', 1, false); - - --- --- Name: galleries_galleryimage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.galleries_galleryimage_id_seq', 1, false); - - --- --- Name: generic_assignedkeyword_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.generic_assignedkeyword_id_seq', 1, false); - - --- --- Name: generic_keyword_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.generic_keyword_id_seq', 1, false); - - --- --- Name: generic_rating_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.generic_rating_id_seq', 1, false); - - --- --- Name: health_check_db_testmodel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.health_check_db_testmodel_id_seq', 1, false); - - --- --- Name: hs_access_control_community_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_community_id_seq', 1, true); - - --- --- Name: hs_access_control_communityresourceprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_communityresourceprivilege_id_seq', 1, false); - - --- --- Name: hs_access_control_communityresourceprovenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_communityresourceprovenance_id_seq', 1, false); - - --- --- Name: hs_access_control_feature_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_feature_id_seq', 1, false); - - --- --- Name: hs_access_control_groupaccess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupaccess_id_seq', 14, true); - - --- --- Name: hs_access_control_groupcommunityprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupcommunityprivilege_id_seq', 11, true); - - --- --- Name: hs_access_control_groupcommunityprovenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupcommunityprovenance_id_seq', 11, true); - - --- --- Name: hs_access_control_groupcommunityrequest_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupcommunityrequest_id_seq', 1, false); - - --- --- Name: hs_access_control_groupmembershiprequest_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupmembershiprequest_id_seq', 2, true); - - --- --- Name: hs_access_control_groupresourceprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupresourceprivilege_id_seq', 8, true); - - --- --- Name: hs_access_control_groupresourceprovenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_groupresourceprovenance_id_seq', 8, true); - - --- --- Name: hs_access_control_requestcommunity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_requestcommunity_id_seq', 1, false); - - --- --- Name: hs_access_control_resourceaccess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_resourceaccess_id_seq', 5, true); - - --- --- Name: hs_access_control_useraccess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_useraccess_id_seq', 22, true); - - --- --- Name: hs_access_control_usercommunityprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_usercommunityprivilege_id_seq', 2, true); - - --- --- Name: hs_access_control_usercommunityprovenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_usercommunityprovenance_id_seq', 2, true); - - --- --- Name: hs_access_control_usergroupprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_usergroupprivilege_id_seq', 16, true); - - --- --- Name: hs_access_control_usergroupprovenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_usergroupprovenance_id_seq', 16, true); - - --- --- Name: hs_access_control_userresourceprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_userresourceprivilege_id_seq', 17, true); - - --- --- Name: hs_access_control_userresourceprovenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_access_control_userresourceprovenance_id_seq', 17, true); - - --- --- Name: hs_app_netCDF_originalcoverage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public."hs_app_netCDF_originalcoverage_id_seq"', 1, false); - - --- --- Name: hs_app_netCDF_variable_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public."hs_app_netCDF_variable_id_seq"', 1, false); - - --- --- Name: hs_app_timeseries_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_app_timeseries_method_id_seq', 1, false); - - --- --- Name: hs_app_timeseries_processinglevel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_app_timeseries_processinglevel_id_seq', 1, false); - - --- --- Name: hs_app_timeseries_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_app_timeseries_site_id_seq', 1, false); - - --- --- Name: hs_app_timeseries_timeseriesresult_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_app_timeseries_timeseriesresult_id_seq', 1, false); - - --- --- Name: hs_app_timeseries_utcoffset_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_app_timeseries_utcoffset_id_seq', 1, false); - - --- --- Name: hs_app_timeseries_variable_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_app_timeseries_variable_id_seq', 1, false); - - --- --- Name: hs_collection_resource_collectiondeletedresource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_collection_resource_collectiondeletedresource_id_seq', 1, false); - - --- --- Name: hs_collection_resource_collectiondeletedresource_resourc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_collection_resource_collectiondeletedresource_resourc_id_seq', 1, false); - - --- --- Name: hs_communities_topic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_communities_topic_id_seq', 75, true); - - --- --- Name: hs_core_citation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_citation_id_seq', 1, false); - - --- --- Name: hs_core_contributor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_contributor_id_seq', 1, false); - - --- --- Name: hs_core_coremetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_coremetadata_id_seq', 5, true); - - --- --- Name: hs_core_coverage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_coverage_id_seq', 1, false); - - --- --- Name: hs_core_creator_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_creator_id_seq', 5, true); - - --- --- Name: hs_core_date_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_date_id_seq', 10, true); - - --- --- Name: hs_core_description_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_description_id_seq', 2, true); - - --- --- Name: hs_core_format_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_format_id_seq', 4, true); - - --- --- Name: hs_core_fundingagency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_fundingagency_id_seq', 1, false); - - --- --- Name: hs_core_genericresource_collections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_genericresource_collections_id_seq', 1, false); - - --- --- Name: hs_core_geospatialrelation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_geospatialrelation_id_seq', 1, false); - - --- --- Name: hs_core_groupownership_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_groupownership_id_seq', 1, false); - - --- --- Name: hs_core_identifier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_identifier_id_seq', 5, true); - - --- --- Name: hs_core_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_language_id_seq', 5, true); - - --- --- Name: hs_core_publisher_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_publisher_id_seq', 1, false); - - --- --- Name: hs_core_relation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_relation_id_seq', 1, false); - - --- --- Name: hs_core_resourcefile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_resourcefile_id_seq', 7, true); - - --- --- Name: hs_core_rights_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_rights_id_seq', 5, true); - - --- --- Name: hs_core_subject_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_subject_id_seq', 2, true); - - --- --- Name: hs_core_tasknotification_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_tasknotification_id_seq', 1, false); - - --- --- Name: hs_core_title_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_title_id_seq', 5, true); - - --- --- Name: hs_core_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_core_type_id_seq', 5, true); - - --- --- Name: hs_dictionary_subjectarea_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_dictionary_subjectarea_id_seq', 136, true); - - --- --- Name: hs_dictionary_uncategorizedterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_dictionary_uncategorizedterm_id_seq', 34, true); - - --- --- Name: hs_dictionary_university_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_dictionary_university_id_seq', 18726, true); - - --- --- Name: hs_file_types_csvfilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_csvfilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_csvlogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_csvlogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_cvaggregationstatistic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvaggregationstatistic_id_seq', 1, false); - - --- --- Name: hs_file_types_cvelevationdatum_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvelevationdatum_id_seq', 1, false); - - --- --- Name: hs_file_types_cvmedium_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvmedium_id_seq', 1, false); - - --- --- Name: hs_file_types_cvmethodtype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvmethodtype_id_seq', 1, false); - - --- --- Name: hs_file_types_cvsitetype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvsitetype_id_seq', 1, false); - - --- --- Name: hs_file_types_cvspeciation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvspeciation_id_seq', 1, false); - - --- --- Name: hs_file_types_cvstatus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvstatus_id_seq', 1, false); - - --- --- Name: hs_file_types_cvunitstype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvunitstype_id_seq', 1, false); - - --- --- Name: hs_file_types_cvvariablename_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvvariablename_id_seq', 1, false); - - --- --- Name: hs_file_types_cvvariabletype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_cvvariabletype_id_seq', 1, false); - - --- --- Name: hs_file_types_filesetlogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_filesetlogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_filesetmetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_filesetmetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_genericfilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_genericfilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_genericlogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_genericlogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_geofeaturefilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_geofeaturefilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_geofeaturelogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_geofeaturelogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_georasterfilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_georasterfilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_georasterlogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_georasterlogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_modelinstancefilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_modelinstancefilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_modelinstancelogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_modelinstancelogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_modelprogramfilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_modelprogramfilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_modelprogramlogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_modelprogramlogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_modelprogramresourcefiletype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_modelprogramresourcefiletype_id_seq', 1, false); - - --- --- Name: hs_file_types_netcdffilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_netcdffilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_netcdflogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_netcdflogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_reftimeseriesfilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_reftimeseriesfilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_reftimeserieslogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_reftimeserieslogicalfile_id_seq', 1, false); - - --- --- Name: hs_file_types_timeseriesfilemetadata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_timeseriesfilemetadata_id_seq', 1, false); - - --- --- Name: hs_file_types_timeserieslogicalfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_file_types_timeserieslogicalfile_id_seq', 1, false); - - --- --- Name: hs_geo_raster_resource_bandinformation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_geo_raster_resource_bandinformation_id_seq', 1, false); - - --- --- Name: hs_geo_raster_resource_cellinformation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_geo_raster_resource_cellinformation_id_seq', 1, false); - - --- --- Name: hs_geo_raster_resource_originalcoverage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_geo_raster_resource_originalcoverage_id_seq', 1, false); - - --- --- Name: hs_geographic_feature_resource_fieldinformation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_geographic_feature_resource_fieldinformation_id_seq', 1, false); - - --- --- Name: hs_geographic_feature_resource_geometryinformation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_geographic_feature_resource_geometryinformation_id_seq', 1, false); - - --- --- Name: hs_geographic_feature_resource_originalcoverage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_geographic_feature_resource_originalcoverage_id_seq', 1, false); - - --- --- Name: hs_labels_resourcelabels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_labels_resourcelabels_id_seq', 5, true); - - --- --- Name: hs_labels_userlabels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_labels_userlabels_id_seq', 22, true); - - --- --- Name: hs_labels_userresourceflags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_labels_userresourceflags_id_seq', 1, false); - - --- --- Name: hs_labels_userresourcelabels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_labels_userresourcelabels_id_seq', 1, false); - - --- --- Name: hs_labels_userstoredlabels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_labels_userstoredlabels_id_seq', 1, false); - - --- --- Name: hs_odm2_odm2variable_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_odm2_odm2variable_id_seq', 1, false); - - --- --- Name: hs_tools_resource_apphomepageurl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_apphomepageurl_id_seq', 1, false); - - --- --- Name: hs_tools_resource_helppageurl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_helppageurl_id_seq', 1, false); - - --- --- Name: hs_tools_resource_issuespageurl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_issuespageurl_id_seq', 1, false); - - --- --- Name: hs_tools_resource_mailinglisturl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_mailinglisturl_id_seq', 1, false); - - --- --- Name: hs_tools_resource_requesturlbase_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_requesturlbase_id_seq', 1, false); - - --- --- Name: hs_tools_resource_requesturlbaseaggregation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_requesturlbaseaggregation_id_seq', 1, false); - - --- --- Name: hs_tools_resource_requesturlbasefile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_requesturlbasefile_id_seq', 1, false); - - --- --- Name: hs_tools_resource_roadmap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_roadmap_id_seq', 1, false); - - --- --- Name: hs_tools_resource_showonopenwithlist_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_showonopenwithlist_id_seq', 1, false); - - --- --- Name: hs_tools_resource_sourcecodeurl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_sourcecodeurl_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedaggtypechoices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedaggtypechoices_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedaggtypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedaggtypes_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedaggtypes_supported_agg_types_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedfileextensions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedfileextensions_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedrestypechoices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedrestypechoices_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedrestypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedrestypes_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedrestypes_supported_res_types_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedsharingstatus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedsharingstatus_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedsharingstatus_sharing_status_id_seq', 1, false); - - --- --- Name: hs_tools_resource_supportedsharingstatuschoices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_supportedsharingstatuschoices_id_seq', 1, false); - - --- --- Name: hs_tools_resource_testingprotocolurl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_testingprotocolurl_id_seq', 1, false); - - --- --- Name: hs_tools_resource_toolicon_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_toolicon_id_seq', 1, false); - - --- --- Name: hs_tools_resource_toolversion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tools_resource_toolversion_id_seq', 1, false); - - --- --- Name: hs_tracking_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tracking_session_id_seq', 77, true); - - --- --- Name: hs_tracking_variable_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tracking_variable_id_seq', 1440, true); - - --- --- Name: hs_tracking_visitor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.hs_tracking_visitor_id_seq', 70, true); - - --- --- Name: oauth2_provider_accesstoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.oauth2_provider_accesstoken_id_seq', 1, false); - - --- --- Name: oauth2_provider_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.oauth2_provider_application_id_seq', 1, false); - - --- --- Name: oauth2_provider_grant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.oauth2_provider_grant_id_seq', 1, false); - - --- --- Name: oauth2_provider_idtoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.oauth2_provider_idtoken_id_seq', 1, false); - - --- --- Name: oauth2_provider_refreshtoken_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.oauth2_provider_refreshtoken_id_seq', 1, false); - - --- --- Name: pages_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.pages_page_id_seq', 20, true); - - --- --- Name: robots_rule_allowed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.robots_rule_allowed_id_seq', 1, false); - - --- --- Name: robots_rule_disallowed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.robots_rule_disallowed_id_seq', 1, true); - - --- --- Name: robots_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.robots_rule_id_seq', 1, true); - - --- --- Name: robots_rule_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.robots_rule_sites_id_seq', 1, true); - - --- --- Name: robots_url_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.robots_url_id_seq', 1, true); - - --- --- Name: security_cspreport_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.security_cspreport_id_seq', 1, false); - - --- --- Name: security_passwordexpiry_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.security_passwordexpiry_id_seq', 1, false); - - --- --- Name: theme_iconbox_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.theme_iconbox_id_seq', 1, false); - - --- --- Name: theme_quotamessage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.theme_quotamessage_id_seq', 1, true); - - --- --- Name: theme_quotarequest_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.theme_quotarequest_id_seq', 1, false); - - --- --- Name: theme_siteconfiguration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.theme_siteconfiguration_id_seq', 1, true); - - --- --- Name: theme_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.theme_userprofile_id_seq', 25, true); - - --- --- Name: theme_userquota_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.theme_userquota_id_seq', 22, true); - - --- --- Name: topology_id_seq; Type: SEQUENCE SET; Schema: topology; Owner: postgres --- - -SELECT pg_catalog.setval('topology.topology_id_seq', 1, false); - - --- --- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group - ADD CONSTRAINT auth_group_name_key UNIQUE (name); - - --- --- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group_permissions - ADD CONSTRAINT auth_group_permissions_group_id_permission_id_key UNIQUE (group_id, permission_id); - - --- --- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group_permissions - ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); - - --- --- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group - ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); - - --- --- Name: auth_permission auth_permission_content_type_id_codename_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_permission - ADD CONSTRAINT auth_permission_content_type_id_codename_key UNIQUE (content_type_id, codename); - - --- --- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_permission - ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); - - --- --- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_groups - ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id); - - --- --- Name: auth_user_groups auth_user_groups_user_id_group_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_groups - ADD CONSTRAINT auth_user_groups_user_id_group_id_key UNIQUE (user_id, group_id); - - --- --- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user - ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id); - - --- --- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_user_permissions - ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id); - - --- --- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_user_permissions - ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_key UNIQUE (user_id, permission_id); - - --- --- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user - ADD CONSTRAINT auth_user_username_key UNIQUE (username); - - --- --- Name: blog_blogcategory blog_blogcategory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogcategory - ADD CONSTRAINT blog_blogcategory_pkey PRIMARY KEY (id); - - --- --- Name: blog_blogpost_categories blog_blogpost_categories_blogpost_id_blogcategory_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_categories - ADD CONSTRAINT blog_blogpost_categories_blogpost_id_blogcategory_id_key UNIQUE (blogpost_id, blogcategory_id); - - --- --- Name: blog_blogpost_categories blog_blogpost_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_categories - ADD CONSTRAINT blog_blogpost_categories_pkey PRIMARY KEY (id); - - --- --- Name: blog_blogpost blog_blogpost_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost - ADD CONSTRAINT blog_blogpost_pkey PRIMARY KEY (id); - - --- --- Name: blog_blogpost_related_posts blog_blogpost_related_posts_from_blogpost_id_to_blogpost_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_related_posts - ADD CONSTRAINT blog_blogpost_related_posts_from_blogpost_id_to_blogpost_id_key UNIQUE (from_blogpost_id, to_blogpost_id); - - --- --- Name: blog_blogpost_related_posts blog_blogpost_related_posts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_related_posts - ADD CONSTRAINT blog_blogpost_related_posts_pkey PRIMARY KEY (id); - - --- --- Name: celery_taskmeta celery_taskmeta_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.celery_taskmeta - ADD CONSTRAINT celery_taskmeta_pkey PRIMARY KEY (id); - - --- --- Name: celery_taskmeta celery_taskmeta_task_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.celery_taskmeta - ADD CONSTRAINT celery_taskmeta_task_id_key UNIQUE (task_id); - - --- --- Name: celery_tasksetmeta celery_tasksetmeta_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.celery_tasksetmeta - ADD CONSTRAINT celery_tasksetmeta_pkey PRIMARY KEY (id); - - --- --- Name: celery_tasksetmeta celery_tasksetmeta_taskset_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.celery_tasksetmeta - ADD CONSTRAINT celery_tasksetmeta_taskset_id_key UNIQUE (taskset_id); - - --- --- Name: conf_setting conf_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.conf_setting - ADD CONSTRAINT conf_setting_pkey PRIMARY KEY (id); - - --- --- Name: core_sitepermission core_sitepermission_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission - ADD CONSTRAINT core_sitepermission_pkey PRIMARY KEY (id); - - --- --- Name: core_sitepermission_sites core_sitepermission_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission_sites - ADD CONSTRAINT core_sitepermission_sites_pkey PRIMARY KEY (id); - - --- --- Name: core_sitepermission_sites core_sitepermission_sites_sitepermission_id_site_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission_sites - ADD CONSTRAINT core_sitepermission_sites_sitepermission_id_site_id_key UNIQUE (sitepermission_id, site_id); - - --- --- Name: core_sitepermission core_sitepermission_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission - ADD CONSTRAINT core_sitepermission_user_id_key UNIQUE (user_id); - - --- --- Name: corsheaders_corsmodel corsheaders_corsmodel_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.corsheaders_corsmodel - ADD CONSTRAINT corsheaders_corsmodel_pkey PRIMARY KEY (id); - - --- --- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_admin_log - ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); - - --- --- Name: django_comment_flags django_comment_flags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_comment_flags - ADD CONSTRAINT django_comment_flags_pkey PRIMARY KEY (id); - - --- --- Name: django_comment_flags django_comment_flags_user_id_comment_id_flag_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_comment_flags - ADD CONSTRAINT django_comment_flags_user_id_comment_id_flag_key UNIQUE (user_id, comment_id, flag); - - --- --- Name: django_comments django_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_comments - ADD CONSTRAINT django_comments_pkey PRIMARY KEY (id); - - --- --- Name: django_content_type django_content_type_app_label_45f3b1d93ec8c61c_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_content_type - ADD CONSTRAINT django_content_type_app_label_45f3b1d93ec8c61c_uniq UNIQUE (app_label, model); - - --- --- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_content_type - ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_containeroverrides django_docker_processes_containeroverrides_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_containeroverrides - ADD CONSTRAINT django_docker_processes_containeroverrides_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_dockerenvvar django_docker_processes_dockerenvvar_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerenvvar - ADD CONSTRAINT django_docker_processes_dockerenvvar_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_dockerlink django_docker_processes_dockerlink_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerlink - ADD CONSTRAINT django_docker_processes_dockerlink_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_dockerport django_docker_processes_dockerport_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerport - ADD CONSTRAINT django_docker_processes_dockerport_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_dockerprocess django_docker_processes_dockerprocess_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprocess - ADD CONSTRAINT django_docker_processes_dockerprocess_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_dockerprocess django_docker_processes_dockerprocess_token_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprocess - ADD CONSTRAINT django_docker_processes_dockerprocess_token_key UNIQUE (token); - - --- --- Name: django_docker_processes_dockerprofile django_docker_processes_dockerprofile_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprofile - ADD CONSTRAINT django_docker_processes_dockerprofile_name_key UNIQUE (name); - - --- --- Name: django_docker_processes_dockerprofile django_docker_processes_dockerprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprofile - ADD CONSTRAINT django_docker_processes_dockerprofile_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_dockervolume django_docker_processes_dockervolume_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockervolume - ADD CONSTRAINT django_docker_processes_dockervolume_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_overrideenvvar django_docker_processes_overrideenvvar_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overrideenvvar - ADD CONSTRAINT django_docker_processes_overrideenvvar_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_overridelink django_docker_processes_overridelink_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridelink - ADD CONSTRAINT django_docker_processes_overridelink_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_overrideport django_docker_processes_overrideport_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overrideport - ADD CONSTRAINT django_docker_processes_overrideport_pkey PRIMARY KEY (id); - - --- --- Name: django_docker_processes_overridevolume django_docker_processes_overridevolume_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridevolume - ADD CONSTRAINT django_docker_processes_overridevolume_pkey PRIMARY KEY (id); - - --- --- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_migrations - ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); - - --- --- Name: django_redirect django_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_redirect - ADD CONSTRAINT django_redirect_pkey PRIMARY KEY (id); - - --- --- Name: django_redirect django_redirect_site_id_old_path_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_redirect - ADD CONSTRAINT django_redirect_site_id_old_path_key UNIQUE (site_id, old_path); - - --- --- Name: django_s3_avu django_s3_avu_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_s3_avu - ADD CONSTRAINT django_s3_avu_pkey PRIMARY KEY (id); - - --- --- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_session - ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); - - --- --- Name: django_site django_site_domain_a2e37b91_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_site - ADD CONSTRAINT django_site_domain_a2e37b91_uniq UNIQUE (domain); - - --- --- Name: django_site django_site_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_site - ADD CONSTRAINT django_site_pkey PRIMARY KEY (id); - - --- --- Name: djcelery_crontabschedule djcelery_crontabschedule_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_crontabschedule - ADD CONSTRAINT djcelery_crontabschedule_pkey PRIMARY KEY (id); - - --- --- Name: djcelery_intervalschedule djcelery_intervalschedule_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_intervalschedule - ADD CONSTRAINT djcelery_intervalschedule_pkey PRIMARY KEY (id); - - --- --- Name: djcelery_periodictask djcelery_periodictask_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_periodictask - ADD CONSTRAINT djcelery_periodictask_name_key UNIQUE (name); - - --- --- Name: djcelery_periodictask djcelery_periodictask_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_periodictask - ADD CONSTRAINT djcelery_periodictask_pkey PRIMARY KEY (id); - - --- --- Name: djcelery_periodictasks djcelery_periodictasks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_periodictasks - ADD CONSTRAINT djcelery_periodictasks_pkey PRIMARY KEY (ident); - - --- --- Name: djcelery_taskstate djcelery_taskstate_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_taskstate - ADD CONSTRAINT djcelery_taskstate_pkey PRIMARY KEY (id); - - --- --- Name: djcelery_taskstate djcelery_taskstate_task_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_taskstate - ADD CONSTRAINT djcelery_taskstate_task_id_key UNIQUE (task_id); - - --- --- Name: djcelery_workerstate djcelery_workerstate_hostname_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_workerstate - ADD CONSTRAINT djcelery_workerstate_hostname_key UNIQUE (hostname); - - --- --- Name: djcelery_workerstate djcelery_workerstate_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_workerstate - ADD CONSTRAINT djcelery_workerstate_pkey PRIMARY KEY (id); - - --- --- Name: forms_field forms_field_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_field - ADD CONSTRAINT forms_field_pkey PRIMARY KEY (id); - - --- --- Name: forms_fieldentry forms_fieldentry_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_fieldentry - ADD CONSTRAINT forms_fieldentry_pkey PRIMARY KEY (id); - - --- --- Name: forms_form forms_form_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_form - ADD CONSTRAINT forms_form_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: forms_formentry forms_formentry_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_formentry - ADD CONSTRAINT forms_formentry_pkey PRIMARY KEY (id); - - --- --- Name: ga_ows_ogrdataset ga_ows_ogrdataset_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrdataset - ADD CONSTRAINT ga_ows_ogrdataset_pkey PRIMARY KEY (id); - - --- --- Name: ga_ows_ogrdatasetcollection ga_ows_ogrdatasetcollection_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrdatasetcollection - ADD CONSTRAINT ga_ows_ogrdatasetcollection_pkey PRIMARY KEY (id); - - --- --- Name: ga_ows_ogrlayer ga_ows_ogrlayer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrlayer - ADD CONSTRAINT ga_ows_ogrlayer_pkey PRIMARY KEY (id); - - --- --- Name: ga_resources_catalogpage ga_resources_catalogpage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_catalogpage - ADD CONSTRAINT ga_resources_catalogpage_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: ga_resources_dataresource ga_resources_dataresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_dataresource - ADD CONSTRAINT ga_resources_dataresource_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: ga_resources_orderedresource ga_resources_orderedresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_orderedresource - ADD CONSTRAINT ga_resources_orderedresource_pkey PRIMARY KEY (id); - - --- --- Name: ga_resources_relatedresource ga_resources_relatedresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_relatedresource - ADD CONSTRAINT ga_resources_relatedresource_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: ga_resources_renderedlayer ga_resources_renderedlayer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer - ADD CONSTRAINT ga_resources_renderedlayer_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: ga_resources_renderedlayer_styles ga_resources_renderedlayer_styles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer_styles - ADD CONSTRAINT ga_resources_renderedlayer_styles_pkey PRIMARY KEY (id); - - --- --- Name: ga_resources_renderedlayer_styles ga_resources_renderedlayer_styles_renderedlayer_id_style_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer_styles - ADD CONSTRAINT ga_resources_renderedlayer_styles_renderedlayer_id_style_id_key UNIQUE (renderedlayer_id, style_id); - - --- --- Name: ga_resources_resourcegroup ga_resources_resourcegroup_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_resourcegroup - ADD CONSTRAINT ga_resources_resourcegroup_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: ga_resources_style ga_resources_style_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_style - ADD CONSTRAINT ga_resources_style_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: galleries_gallery galleries_gallery_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.galleries_gallery - ADD CONSTRAINT galleries_gallery_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: galleries_galleryimage galleries_galleryimage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.galleries_galleryimage - ADD CONSTRAINT galleries_galleryimage_pkey PRIMARY KEY (id); - - --- --- Name: generic_assignedkeyword generic_assignedkeyword_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_assignedkeyword - ADD CONSTRAINT generic_assignedkeyword_pkey PRIMARY KEY (id); - - --- --- Name: generic_keyword generic_keyword_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_keyword - ADD CONSTRAINT generic_keyword_pkey PRIMARY KEY (id); - - --- --- Name: generic_rating generic_rating_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_rating - ADD CONSTRAINT generic_rating_pkey PRIMARY KEY (id); - - --- --- Name: generic_threadedcomment generic_threadedcomment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_threadedcomment - ADD CONSTRAINT generic_threadedcomment_pkey PRIMARY KEY (comment_ptr_id); - - --- --- Name: health_check_db_testmodel health_check_db_testmodel_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.health_check_db_testmodel - ADD CONSTRAINT health_check_db_testmodel_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_communityresourceprivilege hs_access_control_commun_community_id_resource_id_8c98adee_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprivilege - ADD CONSTRAINT hs_access_control_commun_community_id_resource_id_8c98adee_uniq UNIQUE (community_id, resource_id); - - --- --- Name: hs_access_control_communityresourceprovenance hs_access_control_commun_resource_id_community_id_33fe6f26_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprovenance - ADD CONSTRAINT hs_access_control_commun_resource_id_community_id_33fe6f26_uniq UNIQUE (resource_id, community_id, start); - - --- --- Name: hs_access_control_community hs_access_control_community_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_community - ADD CONSTRAINT hs_access_control_community_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_communityresourceprivilege hs_access_control_communityresourceprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprivilege - ADD CONSTRAINT hs_access_control_communityresourceprivilege_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_communityresourceprovenance hs_access_control_communityresourceprovenance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprovenance - ADD CONSTRAINT hs_access_control_communityresourceprovenance_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_feature hs_access_control_feature_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_feature - ADD CONSTRAINT hs_access_control_feature_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_feature hs_access_control_feature_user_id_feature_a873c754_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_feature - ADD CONSTRAINT hs_access_control_feature_user_id_feature_a873c754_uniq UNIQUE (user_id, feature); - - --- --- Name: hs_access_control_groupaccess hs_access_control_groupaccess_group_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupaccess - ADD CONSTRAINT hs_access_control_groupaccess_group_id_key UNIQUE (group_id); - - --- --- Name: hs_access_control_groupaccess hs_access_control_groupaccess_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupaccess - ADD CONSTRAINT hs_access_control_groupaccess_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_groupcommunityprivilege hs_access_control_groupc_community_id_group_id_9ab7aa21_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprivilege - ADD CONSTRAINT hs_access_control_groupc_community_id_group_id_9ab7aa21_uniq UNIQUE (community_id, group_id); - - --- --- Name: hs_access_control_groupcommunityprovenance hs_access_control_groupc_community_id_group_id_st_9112e561_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprovenance - ADD CONSTRAINT hs_access_control_groupc_community_id_group_id_st_9112e561_uniq UNIQUE (community_id, group_id, start); - - --- --- Name: hs_access_control_groupcommunityprivilege hs_access_control_groupcommunityprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprivilege - ADD CONSTRAINT hs_access_control_groupcommunityprivilege_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_groupcommunityprovenance hs_access_control_groupcommunityprovenance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprovenance - ADD CONSTRAINT hs_access_control_groupcommunityprovenance_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_groupcommunityrequest hs_access_control_groupcommunityrequest_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityrequest - ADD CONSTRAINT hs_access_control_groupcommunityrequest_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_groupmembershiprequest hs_access_control_groupmembershiprequest_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupmembershiprequest - ADD CONSTRAINT hs_access_control_groupmembershiprequest_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_groupresourceprovenance hs_access_control_groupresourcep_group_id_157babc573be246e_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprovenance - ADD CONSTRAINT hs_access_control_groupresourcep_group_id_157babc573be246e_uniq UNIQUE (group_id, resource_id, start); - - --- --- Name: hs_access_control_groupresourceprivilege hs_access_control_groupresourcepr_group_id_51ccf8b056500a7_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprivilege - ADD CONSTRAINT hs_access_control_groupresourcepr_group_id_51ccf8b056500a7_uniq UNIQUE (group_id, resource_id); - - --- --- Name: hs_access_control_groupresourceprivilege hs_access_control_groupresourceprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprivilege - ADD CONSTRAINT hs_access_control_groupresourceprivilege_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_groupresourceprovenance hs_access_control_groupresourceprovenance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprovenance - ADD CONSTRAINT hs_access_control_groupresourceprovenance_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_requestcommunity hs_access_control_requestcommunity_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_requestcommunity - ADD CONSTRAINT hs_access_control_requestcommunity_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_resourceaccess hs_access_control_resourceaccess_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_resourceaccess - ADD CONSTRAINT hs_access_control_resourceaccess_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_resourceaccess hs_access_control_resourceaccess_resource_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_resourceaccess - ADD CONSTRAINT hs_access_control_resourceaccess_resource_id_key UNIQUE (resource_id); - - --- --- Name: hs_access_control_useraccess hs_access_control_useraccess_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_useraccess - ADD CONSTRAINT hs_access_control_useraccess_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_useraccess hs_access_control_useraccess_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_useraccess - ADD CONSTRAINT hs_access_control_useraccess_user_id_key UNIQUE (user_id); - - --- --- Name: hs_access_control_usercommunityprivilege hs_access_control_userco_community_id_user_id_52fe2ea6_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprivilege - ADD CONSTRAINT hs_access_control_userco_community_id_user_id_52fe2ea6_uniq UNIQUE (community_id, user_id); - - --- --- Name: hs_access_control_usercommunityprovenance hs_access_control_userco_community_id_user_id_sta_4ec553da_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprovenance - ADD CONSTRAINT hs_access_control_userco_community_id_user_id_sta_4ec553da_uniq UNIQUE (community_id, user_id, start); - - --- --- Name: hs_access_control_usercommunityprivilege hs_access_control_usercommunityprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprivilege - ADD CONSTRAINT hs_access_control_usercommunityprivilege_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_usercommunityprovenance hs_access_control_usercommunityprovenance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprovenance - ADD CONSTRAINT hs_access_control_usercommunityprovenance_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_usergroupprivilege hs_access_control_usergroupprivil_user_id_48a0f7a1b974b91b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprivilege - ADD CONSTRAINT hs_access_control_usergroupprivil_user_id_48a0f7a1b974b91b_uniq UNIQUE (user_id, group_id); - - --- --- Name: hs_access_control_usergroupprivilege hs_access_control_usergroupprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprivilege - ADD CONSTRAINT hs_access_control_usergroupprivilege_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_usergroupprovenance hs_access_control_usergroupproven_user_id_548c10e220120a3e_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprovenance - ADD CONSTRAINT hs_access_control_usergroupproven_user_id_548c10e220120a3e_uniq UNIQUE (user_id, group_id, start); - - --- --- Name: hs_access_control_usergroupprovenance hs_access_control_usergroupprovenance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprovenance - ADD CONSTRAINT hs_access_control_usergroupprovenance_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_userresourceprivilege hs_access_control_userresourcepri_user_id_424814b34310c9d3_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprivilege - ADD CONSTRAINT hs_access_control_userresourcepri_user_id_424814b34310c9d3_uniq UNIQUE (user_id, resource_id); - - --- --- Name: hs_access_control_userresourceprivilege hs_access_control_userresourceprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprivilege - ADD CONSTRAINT hs_access_control_userresourceprivilege_pkey PRIMARY KEY (id); - - --- --- Name: hs_access_control_userresourceprovenance hs_access_control_userresourcepro_user_id_52195a50359334ec_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprovenance - ADD CONSTRAINT hs_access_control_userresourcepro_user_id_52195a50359334ec_uniq UNIQUE (user_id, resource_id, start); - - --- --- Name: hs_access_control_userresourceprovenance hs_access_control_userresourceprovenance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprovenance - ADD CONSTRAINT hs_access_control_userresourceprovenance_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_originalcoverage hs_app_netCDF_originalcov_content_type_id_6aeae6195249cfcf_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverage - ADD CONSTRAINT "hs_app_netCDF_originalcov_content_type_id_6aeae6195249cfcf_uniq" UNIQUE (content_type_id, object_id); - - --- --- Name: hs_file_types_originalcoverage hs_app_netCDF_originalcoverage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverage - ADD CONSTRAINT "hs_app_netCDF_originalcoverage_pkey" PRIMARY KEY (id); - - --- --- Name: hs_file_types_variable hs_app_netCDF_variable_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_variable - ADD CONSTRAINT "hs_app_netCDF_variable_pkey" PRIMARY KEY (id); - - --- --- Name: hs_file_types_method hs_app_timeseries_method_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_method - ADD CONSTRAINT hs_app_timeseries_method_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_processinglevel hs_app_timeseries_processinglevel_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_processinglevel - ADD CONSTRAINT hs_app_timeseries_processinglevel_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_site hs_app_timeseries_site_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_site - ADD CONSTRAINT hs_app_timeseries_site_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_timeseriesresult hs_app_timeseries_timeseriesresult_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeseriesresult - ADD CONSTRAINT hs_app_timeseries_timeseriesresult_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_utcoffset hs_app_timeseries_utcoffset_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_utcoffset - ADD CONSTRAINT hs_app_timeseries_utcoffset_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_variabletimeseries hs_app_timeseries_variable_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_variabletimeseries - ADD CONSTRAINT hs_app_timeseries_variable_pkey PRIMARY KEY (id); - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_od9f5 hs_collection_resource_collec_collectiondeletedresource_id__key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource_resource_od9f5 - ADD CONSTRAINT hs_collection_resource_collec_collectiondeletedresource_id__key UNIQUE (collectiondeletedresource_id, user_id); - - --- --- Name: hs_collection_resource_collectiondeletedresource hs_collection_resource_collectiondeletedresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource - ADD CONSTRAINT hs_collection_resource_collectiondeletedresource_pkey PRIMARY KEY (id); - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_od9f5 hs_collection_resource_collectiondeletedresource_resource__pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource_resource_od9f5 - ADD CONSTRAINT hs_collection_resource_collectiondeletedresource_resource__pkey PRIMARY KEY (id); - - --- --- Name: hs_communities_topic hs_communities_topic_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_communities_topic - ADD CONSTRAINT hs_communities_topic_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_citation hs_core_citation_content_type_id_object_id_7681c663_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_citation - ADD CONSTRAINT hs_core_citation_content_type_id_object_id_7681c663_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_citation hs_core_citation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_citation - ADD CONSTRAINT hs_core_citation_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_contributor hs_core_contributor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_contributor - ADD CONSTRAINT hs_core_contributor_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_coremetadata hs_core_coremetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_coremetadata - ADD CONSTRAINT hs_core_coremetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_coverage hs_core_coverage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_coverage - ADD CONSTRAINT hs_core_coverage_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_coverage hs_core_coverage_type_5e44b8195dffb14e_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_coverage - ADD CONSTRAINT hs_core_coverage_type_5e44b8195dffb14e_uniq UNIQUE (type, content_type_id, object_id); - - --- --- Name: hs_core_creator hs_core_creator_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_creator - ADD CONSTRAINT hs_core_creator_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_date hs_core_date_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_date - ADD CONSTRAINT hs_core_date_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_date hs_core_date_type_51dc7e471f315ec_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_date - ADD CONSTRAINT hs_core_date_type_51dc7e471f315ec_uniq UNIQUE (type, content_type_id, object_id); - - --- --- Name: hs_core_description hs_core_description_content_type_id_101f8a6db2013e88_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_description - ADD CONSTRAINT hs_core_description_content_type_id_101f8a6db2013e88_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_description hs_core_description_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_description - ADD CONSTRAINT hs_core_description_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_format hs_core_format_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_format - ADD CONSTRAINT hs_core_format_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_format hs_core_format_value_8b10e84db4524d5_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_format - ADD CONSTRAINT hs_core_format_value_8b10e84db4524d5_uniq UNIQUE (value, content_type_id, object_id); - - --- --- Name: hs_core_fundingagency hs_core_fundingagency_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_fundingagency - ADD CONSTRAINT hs_core_fundingagency_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_genericresource_collections hs_core_genericresource_colle_from_baseresource_id_to_baser_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource_collections - ADD CONSTRAINT hs_core_genericresource_colle_from_baseresource_id_to_baser_key UNIQUE (from_baseresource_id, to_baseresource_id); - - --- --- Name: hs_core_genericresource_collections hs_core_genericresource_collections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource_collections - ADD CONSTRAINT hs_core_genericresource_collections_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_genericresource hs_core_genericresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_core_genericresource_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: hs_core_geospatialrelation hs_core_geospatialrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_geospatialrelation - ADD CONSTRAINT hs_core_geospatialrelation_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_groupownership hs_core_groupownership_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_groupownership - ADD CONSTRAINT hs_core_groupownership_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_identifier hs_core_identifier_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_identifier - ADD CONSTRAINT hs_core_identifier_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_identifier hs_core_identifier_url_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_identifier - ADD CONSTRAINT hs_core_identifier_url_key UNIQUE (url); - - --- --- Name: hs_core_language hs_core_language_content_type_id_3effcbe0af54718f_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_language - ADD CONSTRAINT hs_core_language_content_type_id_3effcbe0af54718f_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_language hs_core_language_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_language - ADD CONSTRAINT hs_core_language_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_publisher hs_core_publisher_content_type_id_1d402c032dd55330_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_publisher - ADD CONSTRAINT hs_core_publisher_content_type_id_1d402c032dd55330_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_publisher hs_core_publisher_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_publisher - ADD CONSTRAINT hs_core_publisher_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_relation hs_core_relation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_relation - ADD CONSTRAINT hs_core_relation_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_resourcefile hs_core_resourcefile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_resourcefile - ADD CONSTRAINT hs_core_resourcefile_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_resourcefile hs_core_resourcefile_resource_file_ab307f6e_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_resourcefile - ADD CONSTRAINT hs_core_resourcefile_resource_file_ab307f6e_uniq UNIQUE (resource_file); - - --- --- Name: hs_core_rights hs_core_rights_content_type_id_ef5b26c774a3f32_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_rights - ADD CONSTRAINT hs_core_rights_content_type_id_ef5b26c774a3f32_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_rights hs_core_rights_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_rights - ADD CONSTRAINT hs_core_rights_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_subject hs_core_subject_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_subject - ADD CONSTRAINT hs_core_subject_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_subject hs_core_subject_value_4ec0e8f3e12395cd_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_subject - ADD CONSTRAINT hs_core_subject_value_4ec0e8f3e12395cd_uniq UNIQUE (value, content_type_id, object_id); - - --- --- Name: hs_core_tasknotification hs_core_tasknotification_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_tasknotification - ADD CONSTRAINT hs_core_tasknotification_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_tasknotification hs_core_tasknotification_task_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_tasknotification - ADD CONSTRAINT hs_core_tasknotification_task_id_key UNIQUE (task_id); - - --- --- Name: hs_core_title hs_core_title_content_type_id_558a1cad4b729d8a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_title - ADD CONSTRAINT hs_core_title_content_type_id_558a1cad4b729d8a_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_title hs_core_title_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_title - ADD CONSTRAINT hs_core_title_pkey PRIMARY KEY (id); - - --- --- Name: hs_core_type hs_core_type_content_type_id_18ed89604613f1ed_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_type - ADD CONSTRAINT hs_core_type_content_type_id_18ed89604613f1ed_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_core_type hs_core_type_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_type - ADD CONSTRAINT hs_core_type_pkey PRIMARY KEY (id); - - --- --- Name: hs_dictionary_subjectarea hs_dictionary_subjectarea_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_dictionary_subjectarea - ADD CONSTRAINT hs_dictionary_subjectarea_pkey PRIMARY KEY (id); - - --- --- Name: hs_dictionary_uncategorizedterm hs_dictionary_uncategorizedterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_dictionary_uncategorizedterm - ADD CONSTRAINT hs_dictionary_uncategorizedterm_pkey PRIMARY KEY (id); - - --- --- Name: hs_dictionary_university hs_dictionary_university_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_dictionary_university - ADD CONSTRAINT hs_dictionary_university_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_csvfilemetadata hs_file_types_csvfilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_csvfilemetadata - ADD CONSTRAINT hs_file_types_csvfilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_csvlogicalfile hs_file_types_csvlogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_csvlogicalfile - ADD CONSTRAINT hs_file_types_csvlogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_csvlogicalfile hs_file_types_csvlogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_csvlogicalfile - ADD CONSTRAINT hs_file_types_csvlogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvaggregationstatistic hs_file_types_cvaggregationstatistic_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvaggregationstatistic - ADD CONSTRAINT hs_file_types_cvaggregationstatistic_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvelevationdatum hs_file_types_cvelevationdatum_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvelevationdatum - ADD CONSTRAINT hs_file_types_cvelevationdatum_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvmedium hs_file_types_cvmedium_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvmedium - ADD CONSTRAINT hs_file_types_cvmedium_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvmethodtype hs_file_types_cvmethodtype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvmethodtype - ADD CONSTRAINT hs_file_types_cvmethodtype_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvsitetype hs_file_types_cvsitetype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvsitetype - ADD CONSTRAINT hs_file_types_cvsitetype_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvspeciation hs_file_types_cvspeciation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvspeciation - ADD CONSTRAINT hs_file_types_cvspeciation_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvstatus hs_file_types_cvstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvstatus - ADD CONSTRAINT hs_file_types_cvstatus_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvunitstype hs_file_types_cvunitstype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvunitstype - ADD CONSTRAINT hs_file_types_cvunitstype_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvvariablename hs_file_types_cvvariablename_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvvariablename - ADD CONSTRAINT hs_file_types_cvvariablename_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cvvariabletype hs_file_types_cvvariabletype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvvariabletype - ADD CONSTRAINT hs_file_types_cvvariabletype_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_filesetlogicalfile hs_file_types_filesetlogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetlogicalfile - ADD CONSTRAINT hs_file_types_filesetlogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_filesetlogicalfile hs_file_types_filesetlogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetlogicalfile - ADD CONSTRAINT hs_file_types_filesetlogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_filesetmetadata hs_file_types_filesetmetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetmetadata - ADD CONSTRAINT hs_file_types_filesetmetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_genericfilemetadata hs_file_types_genericfilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericfilemetadata - ADD CONSTRAINT hs_file_types_genericfilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_genericlogicalfile hs_file_types_genericlogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericlogicalfile - ADD CONSTRAINT hs_file_types_genericlogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_genericlogicalfile hs_file_types_genericlogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericlogicalfile - ADD CONSTRAINT hs_file_types_genericlogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_geofeaturefilemetadata hs_file_types_geofeaturefilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturefilemetadata - ADD CONSTRAINT hs_file_types_geofeaturefilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_geofeaturelogicalfile hs_file_types_geofeaturelogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturelogicalfile - ADD CONSTRAINT hs_file_types_geofeaturelogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_geofeaturelogicalfile hs_file_types_geofeaturelogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturelogicalfile - ADD CONSTRAINT hs_file_types_geofeaturelogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_georasterfilemetadata hs_file_types_georasterfilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterfilemetadata - ADD CONSTRAINT hs_file_types_georasterfilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_georasterlogicalfile hs_file_types_georasterlogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterlogicalfile - ADD CONSTRAINT hs_file_types_georasterlogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_georasterlogicalfile hs_file_types_georasterlogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterlogicalfile - ADD CONSTRAINT hs_file_types_georasterlogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_modelinstancefilemetadata hs_file_types_modelinstancefilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancefilemetadata - ADD CONSTRAINT hs_file_types_modelinstancefilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_modelinstancelogicalfile hs_file_types_modelinstancelogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancelogicalfile - ADD CONSTRAINT hs_file_types_modelinstancelogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_modelinstancelogicalfile hs_file_types_modelinstancelogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancelogicalfile - ADD CONSTRAINT hs_file_types_modelinstancelogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_modelprogramfilemetadata hs_file_types_modelprogramfilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramfilemetadata - ADD CONSTRAINT hs_file_types_modelprogramfilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_modelprogramlogicalfile hs_file_types_modelprogramlogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramlogicalfile - ADD CONSTRAINT hs_file_types_modelprogramlogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_modelprogramlogicalfile hs_file_types_modelprogramlogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramlogicalfile - ADD CONSTRAINT hs_file_types_modelprogramlogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_modelprogramresourcefiletype hs_file_types_modelprogramresourcefiletype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramresourcefiletype - ADD CONSTRAINT hs_file_types_modelprogramresourcefiletype_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_netcdffilemetadata hs_file_types_netcdffilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdffilemetadata - ADD CONSTRAINT hs_file_types_netcdffilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_netcdflogicalfile hs_file_types_netcdflogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdflogicalfile - ADD CONSTRAINT hs_file_types_netcdflogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_netcdflogicalfile hs_file_types_netcdflogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdflogicalfile - ADD CONSTRAINT hs_file_types_netcdflogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_reftimeseriesfilemetadata hs_file_types_reftimeseriesfilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeseriesfilemetadata - ADD CONSTRAINT hs_file_types_reftimeseriesfilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_reftimeserieslogicalfile hs_file_types_reftimeserieslogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeserieslogicalfile - ADD CONSTRAINT hs_file_types_reftimeserieslogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_reftimeserieslogicalfile hs_file_types_reftimeserieslogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeserieslogicalfile - ADD CONSTRAINT hs_file_types_reftimeserieslogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_timeseriesfilemetadata hs_file_types_timeseriesfilemetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeseriesfilemetadata - ADD CONSTRAINT hs_file_types_timeseriesfilemetadata_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_timeserieslogicalfile hs_file_types_timeserieslogicalfile_metadata_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeserieslogicalfile - ADD CONSTRAINT hs_file_types_timeserieslogicalfile_metadata_id_key UNIQUE (metadata_id); - - --- --- Name: hs_file_types_timeserieslogicalfile hs_file_types_timeserieslogicalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeserieslogicalfile - ADD CONSTRAINT hs_file_types_timeserieslogicalfile_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_bandinformation hs_geo_raster_resource_bandinformation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_bandinformation - ADD CONSTRAINT hs_geo_raster_resource_bandinformation_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_cellinformation hs_geo_raster_resource_ce_content_type_id_2a5663531ffdbfc0_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cellinformation - ADD CONSTRAINT hs_geo_raster_resource_ce_content_type_id_2a5663531ffdbfc0_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_file_types_cellinformation hs_geo_raster_resource_cellinformation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cellinformation - ADD CONSTRAINT hs_geo_raster_resource_cellinformation_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_originalcoverageraster hs_geo_raster_resource_or_content_type_id_721e66b15ced348a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverageraster - ADD CONSTRAINT hs_geo_raster_resource_or_content_type_id_721e66b15ced348a_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_file_types_originalcoverageraster hs_geo_raster_resource_originalcoverage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverageraster - ADD CONSTRAINT hs_geo_raster_resource_originalcoverage_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_originalcoveragegeofeature hs_geographic_feature_res_content_type_id_304dc81d9f5c66f1_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoveragegeofeature - ADD CONSTRAINT hs_geographic_feature_res_content_type_id_304dc81d9f5c66f1_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_file_types_geometryinformation hs_geographic_feature_res_content_type_id_580ebce926dd9f27_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geometryinformation - ADD CONSTRAINT hs_geographic_feature_res_content_type_id_580ebce926dd9f27_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_file_types_fieldinformation hs_geographic_feature_resource_fieldinformation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_fieldinformation - ADD CONSTRAINT hs_geographic_feature_resource_fieldinformation_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_geometryinformation hs_geographic_feature_resource_geometryinformation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geometryinformation - ADD CONSTRAINT hs_geographic_feature_resource_geometryinformation_pkey PRIMARY KEY (id); - - --- --- Name: hs_file_types_originalcoveragegeofeature hs_geographic_feature_resource_originalcoverage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoveragegeofeature - ADD CONSTRAINT hs_geographic_feature_resource_originalcoverage_pkey PRIMARY KEY (id); - - --- --- Name: hs_labels_resourcelabels hs_labels_resourcelabels_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_resourcelabels - ADD CONSTRAINT hs_labels_resourcelabels_pkey PRIMARY KEY (id); - - --- --- Name: hs_labels_resourcelabels hs_labels_resourcelabels_resource_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_resourcelabels - ADD CONSTRAINT hs_labels_resourcelabels_resource_id_key UNIQUE (resource_id); - - --- --- Name: hs_labels_userlabels hs_labels_userlabels_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userlabels - ADD CONSTRAINT hs_labels_userlabels_pkey PRIMARY KEY (id); - - --- --- Name: hs_labels_userlabels hs_labels_userlabels_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userlabels - ADD CONSTRAINT hs_labels_userlabels_user_id_key UNIQUE (user_id); - - --- --- Name: hs_labels_userresourceflags hs_labels_userresourceflags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourceflags - ADD CONSTRAINT hs_labels_userresourceflags_pkey PRIMARY KEY (id); - - --- --- Name: hs_labels_userresourceflags hs_labels_userresourceflags_user_id_69a243739138a875_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourceflags - ADD CONSTRAINT hs_labels_userresourceflags_user_id_69a243739138a875_uniq UNIQUE (user_id, resource_id, kind); - - --- --- Name: hs_labels_userresourcelabels hs_labels_userresourcelabels_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourcelabels - ADD CONSTRAINT hs_labels_userresourcelabels_pkey PRIMARY KEY (id); - - --- --- Name: hs_labels_userresourcelabels hs_labels_userresourcelabels_user_id_b650ac9425073db_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourcelabels - ADD CONSTRAINT hs_labels_userresourcelabels_user_id_b650ac9425073db_uniq UNIQUE (user_id, resource_id, label); - - --- --- Name: hs_labels_userstoredlabels hs_labels_userstoredlabels_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userstoredlabels - ADD CONSTRAINT hs_labels_userstoredlabels_pkey PRIMARY KEY (id); - - --- --- Name: hs_labels_userstoredlabels hs_labels_userstoredlabels_user_id_7fcfa0bbb19f026e_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userstoredlabels - ADD CONSTRAINT hs_labels_userstoredlabels_user_id_7fcfa0bbb19f026e_uniq UNIQUE (user_id, label); - - --- --- Name: hs_odm2_odm2variable hs_odm2_odm2variable_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_odm2_odm2variable - ADD CONSTRAINT hs_odm2_odm2variable_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_apphomepageurl hs_tools_resource_apphome_content_type_id_41aff373ca64806a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_apphomepageurl - ADD CONSTRAINT hs_tools_resource_apphome_content_type_id_41aff373ca64806a_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_apphomepageurl hs_tools_resource_apphomepageurl_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_apphomepageurl - ADD CONSTRAINT hs_tools_resource_apphomepageurl_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_helppageurl hs_tools_resource_helppa_content_type_id_object_i_d2e33058_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_helppageurl - ADD CONSTRAINT hs_tools_resource_helppa_content_type_id_object_i_d2e33058_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_helppageurl hs_tools_resource_helppageurl_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_helppageurl - ADD CONSTRAINT hs_tools_resource_helppageurl_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_issuespageurl hs_tools_resource_issues_content_type_id_object_i_d06c4981_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_issuespageurl - ADD CONSTRAINT hs_tools_resource_issues_content_type_id_object_i_d06c4981_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_issuespageurl hs_tools_resource_issuespageurl_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_issuespageurl - ADD CONSTRAINT hs_tools_resource_issuespageurl_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_mailinglisturl hs_tools_resource_mailin_content_type_id_object_i_578164dc_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_mailinglisturl - ADD CONSTRAINT hs_tools_resource_mailin_content_type_id_object_i_578164dc_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_mailinglisturl hs_tools_resource_mailinglisturl_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_mailinglisturl - ADD CONSTRAINT hs_tools_resource_mailinglisturl_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_requesturlbaseaggregation hs_tools_resource_reques_content_type_id_object_i_7138d2d0_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbaseaggregation - ADD CONSTRAINT hs_tools_resource_reques_content_type_id_object_i_7138d2d0_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_requesturlbasefile hs_tools_resource_reques_content_type_id_object_i_c19d6e42_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbasefile - ADD CONSTRAINT hs_tools_resource_reques_content_type_id_object_i_c19d6e42_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_requesturlbase hs_tools_resource_request_content_type_id_4247c7cfc01d751b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbase - ADD CONSTRAINT hs_tools_resource_request_content_type_id_4247c7cfc01d751b_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_requesturlbase hs_tools_resource_requesturlbase_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbase - ADD CONSTRAINT hs_tools_resource_requesturlbase_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_requesturlbaseaggregation hs_tools_resource_requesturlbaseaggregation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbaseaggregation - ADD CONSTRAINT hs_tools_resource_requesturlbaseaggregation_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_requesturlbasefile hs_tools_resource_requesturlbasefile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbasefile - ADD CONSTRAINT hs_tools_resource_requesturlbasefile_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_roadmap hs_tools_resource_roadma_content_type_id_object_i_1dfe8d00_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_roadmap - ADD CONSTRAINT hs_tools_resource_roadma_content_type_id_object_i_1dfe8d00_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_roadmap hs_tools_resource_roadmap_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_roadmap - ADD CONSTRAINT hs_tools_resource_roadmap_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_showonopenwithlist hs_tools_resource_showon_content_type_id_object_i_e9bb40a3_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_showonopenwithlist - ADD CONSTRAINT hs_tools_resource_showon_content_type_id_object_i_e9bb40a3_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_showonopenwithlist hs_tools_resource_showonopenwithlist_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_showonopenwithlist - ADD CONSTRAINT hs_tools_resource_showonopenwithlist_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_sourcecodeurl hs_tools_resource_source_content_type_id_object_i_6528c94e_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_sourcecodeurl - ADD CONSTRAINT hs_tools_resource_source_content_type_id_object_i_6528c94e_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_sourcecodeurl hs_tools_resource_sourcecodeurl_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_sourcecodeurl - ADD CONSTRAINT hs_tools_resource_sourcecodeurl_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedrestypes hs_tools_resource_suppor_content_type_id_object_i_1896ba1a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes - ADD CONSTRAINT hs_tools_resource_suppor_content_type_id_object_i_1896ba1a_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_supportedsharingstatus hs_tools_resource_suppor_content_type_id_object_i_5504ea35_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus - ADD CONSTRAINT hs_tools_resource_suppor_content_type_id_object_i_5504ea35_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_supportedfileextensions hs_tools_resource_suppor_content_type_id_object_i_607791ba_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedfileextensions - ADD CONSTRAINT hs_tools_resource_suppor_content_type_id_object_i_607791ba_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_supportedaggtypes hs_tools_resource_suppor_content_type_id_object_i_caea8f65_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes - ADD CONSTRAINT hs_tools_resource_suppor_content_type_id_object_i_caea8f65_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types hs_tools_resource_suppor_supportedaggtypes_id_sup_a893b005_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes_supported_agg_types - ADD CONSTRAINT hs_tools_resource_suppor_supportedaggtypes_id_sup_a893b005_uniq UNIQUE (supportedaggtypes_id, supportedaggtypechoices_id); - - --- --- Name: hs_tools_resource_supportedaggtypechoices hs_tools_resource_supportedaggtypechoices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypechoices - ADD CONSTRAINT hs_tools_resource_supportedaggtypechoices_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedaggtypes hs_tools_resource_supportedaggtypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes - ADD CONSTRAINT hs_tools_resource_supportedaggtypes_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types hs_tools_resource_supportedaggtypes_supported_agg_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes_supported_agg_types - ADD CONSTRAINT hs_tools_resource_supportedaggtypes_supported_agg_types_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedfileextensions hs_tools_resource_supportedfileextensions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedfileextensions - ADD CONSTRAINT hs_tools_resource_supportedfileextensions_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types hs_tools_resource_supportedre_supportedrestypes_id_supporte_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes_supported_res_types - ADD CONSTRAINT hs_tools_resource_supportedre_supportedrestypes_id_supporte_key UNIQUE (supportedrestypes_id, supportedrestypechoices_id); - - --- --- Name: hs_tools_resource_supportedrestypechoices hs_tools_resource_supportedrestypechoices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypechoices - ADD CONSTRAINT hs_tools_resource_supportedrestypechoices_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedrestypes hs_tools_resource_supportedrestypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes - ADD CONSTRAINT hs_tools_resource_supportedrestypes_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types hs_tools_resource_supportedrestypes_supported_res_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes_supported_res_types - ADD CONSTRAINT hs_tools_resource_supportedrestypes_supported_res_types_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status hs_tools_resource_supportedsh_supportedsharingstatus_id_sup_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus_sharing_status - ADD CONSTRAINT hs_tools_resource_supportedsh_supportedsharingstatus_id_sup_key UNIQUE (supportedsharingstatus_id, supportedsharingstatuschoices_id); - - --- --- Name: hs_tools_resource_supportedsharingstatus hs_tools_resource_supportedsharingstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus - ADD CONSTRAINT hs_tools_resource_supportedsharingstatus_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status hs_tools_resource_supportedsharingstatus_sharing_status_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus_sharing_status - ADD CONSTRAINT hs_tools_resource_supportedsharingstatus_sharing_status_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_supportedsharingstatuschoices hs_tools_resource_supportedsharingstatuschoices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatuschoices - ADD CONSTRAINT hs_tools_resource_supportedsharingstatuschoices_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_testingprotocolurl hs_tools_resource_testin_content_type_id_object_i_7784dfe6_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_testingprotocolurl - ADD CONSTRAINT hs_tools_resource_testin_content_type_id_object_i_7784dfe6_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_testingprotocolurl hs_tools_resource_testingprotocolurl_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_testingprotocolurl - ADD CONSTRAINT hs_tools_resource_testingprotocolurl_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_toolicon hs_tools_resource_toolico_content_type_id_2eb114df398af35f_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolicon - ADD CONSTRAINT hs_tools_resource_toolico_content_type_id_2eb114df398af35f_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_toolicon hs_tools_resource_toolicon_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolicon - ADD CONSTRAINT hs_tools_resource_toolicon_pkey PRIMARY KEY (id); - - --- --- Name: hs_tools_resource_toolmetadata hs_tools_resource_toolmetadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolmetadata - ADD CONSTRAINT hs_tools_resource_toolmetadata_pkey PRIMARY KEY (coremetadata_ptr_id); - - --- --- Name: hs_tools_resource_toolversion hs_tools_resource_toolver_content_type_id_2a1bdb955c1a5eb5_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolversion - ADD CONSTRAINT hs_tools_resource_toolver_content_type_id_2a1bdb955c1a5eb5_uniq UNIQUE (content_type_id, object_id); - - --- --- Name: hs_tools_resource_toolversion hs_tools_resource_toolversion_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolversion - ADD CONSTRAINT hs_tools_resource_toolversion_pkey PRIMARY KEY (id); - - --- --- Name: hs_tracking_session hs_tracking_session_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_session - ADD CONSTRAINT hs_tracking_session_pkey PRIMARY KEY (id); - - --- --- Name: hs_tracking_variable hs_tracking_variable_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_variable - ADD CONSTRAINT hs_tracking_variable_pkey PRIMARY KEY (id); - - --- --- Name: hs_tracking_visitor hs_tracking_visitor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_visitor - ADD CONSTRAINT hs_tracking_visitor_pkey PRIMARY KEY (id); - - --- --- Name: hs_tracking_visitor hs_tracking_visitor_user_id_e219697e1ed13ee_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_visitor - ADD CONSTRAINT hs_tracking_visitor_user_id_e219697e1ed13ee_uniq UNIQUE (user_id); - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_accesstoken_id_token_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_accesstoken_id_token_id_key UNIQUE (id_token_id); - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_accesstoken_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_accesstoken_pkey PRIMARY KEY (id); - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_accesstoken_source_refresh_token_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_accesstoken_source_refresh_token_id_key UNIQUE (source_refresh_token_id); - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_accesstoken_token_checksum_85319a26_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_accesstoken_token_checksum_85319a26_uniq UNIQUE (token_checksum); - - --- --- Name: oauth2_provider_application oauth2_provider_application_client_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_application - ADD CONSTRAINT oauth2_provider_application_client_id_key UNIQUE (client_id); - - --- --- Name: oauth2_provider_application oauth2_provider_application_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_application - ADD CONSTRAINT oauth2_provider_application_pkey PRIMARY KEY (id); - - --- --- Name: oauth2_provider_grant oauth2_provider_grant_code_49ab4ddf_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_grant - ADD CONSTRAINT oauth2_provider_grant_code_49ab4ddf_uniq UNIQUE (code); - - --- --- Name: oauth2_provider_grant oauth2_provider_grant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_grant - ADD CONSTRAINT oauth2_provider_grant_pkey PRIMARY KEY (id); - - --- --- Name: oauth2_provider_idtoken oauth2_provider_idtoken_jti_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_idtoken - ADD CONSTRAINT oauth2_provider_idtoken_jti_key UNIQUE (jti); - - --- --- Name: oauth2_provider_idtoken oauth2_provider_idtoken_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_idtoken - ADD CONSTRAINT oauth2_provider_idtoken_pkey PRIMARY KEY (id); - - --- --- Name: oauth2_provider_refreshtoken oauth2_provider_refreshtoken_access_token_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_refreshtoken - ADD CONSTRAINT oauth2_provider_refreshtoken_access_token_id_key UNIQUE (access_token_id); - - --- --- Name: oauth2_provider_refreshtoken oauth2_provider_refreshtoken_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_refreshtoken - ADD CONSTRAINT oauth2_provider_refreshtoken_pkey PRIMARY KEY (id); - - --- --- Name: oauth2_provider_refreshtoken oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_refreshtoken - ADD CONSTRAINT oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq UNIQUE (token, revoked); - - --- --- Name: pages_link pages_link_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_link - ADD CONSTRAINT pages_link_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: pages_page pages_page_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_page - ADD CONSTRAINT pages_page_pkey PRIMARY KEY (id); - - --- --- Name: pages_richtextpage pages_richtextpage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_richtextpage - ADD CONSTRAINT pages_richtextpage_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: robots_rule_allowed robots_rule_allowed_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_allowed - ADD CONSTRAINT robots_rule_allowed_pkey PRIMARY KEY (id); - - --- --- Name: robots_rule_allowed robots_rule_allowed_rule_id_url_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_allowed - ADD CONSTRAINT robots_rule_allowed_rule_id_url_id_key UNIQUE (rule_id, url_id); - - --- --- Name: robots_rule_disallowed robots_rule_disallowed_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_disallowed - ADD CONSTRAINT robots_rule_disallowed_pkey PRIMARY KEY (id); - - --- --- Name: robots_rule_disallowed robots_rule_disallowed_rule_id_url_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_disallowed - ADD CONSTRAINT robots_rule_disallowed_rule_id_url_id_key UNIQUE (rule_id, url_id); - - --- --- Name: robots_rule robots_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule - ADD CONSTRAINT robots_rule_pkey PRIMARY KEY (id); - - --- --- Name: robots_rule_sites robots_rule_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_sites - ADD CONSTRAINT robots_rule_sites_pkey PRIMARY KEY (id); - - --- --- Name: robots_rule_sites robots_rule_sites_rule_id_site_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_sites - ADD CONSTRAINT robots_rule_sites_rule_id_site_id_key UNIQUE (rule_id, site_id); - - --- --- Name: robots_url robots_url_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_url - ADD CONSTRAINT robots_url_pkey PRIMARY KEY (id); - - --- --- Name: security_cspreport security_cspreport_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.security_cspreport - ADD CONSTRAINT security_cspreport_pkey PRIMARY KEY (id); - - --- --- Name: security_passwordexpiry security_passwordexpiry_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.security_passwordexpiry - ADD CONSTRAINT security_passwordexpiry_pkey PRIMARY KEY (id); - - --- --- Name: security_passwordexpiry security_passwordexpiry_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.security_passwordexpiry - ADD CONSTRAINT security_passwordexpiry_user_id_key UNIQUE (user_id); - - --- --- Name: theme_homepage theme_homepage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_homepage - ADD CONSTRAINT theme_homepage_pkey PRIMARY KEY (page_ptr_id); - - --- --- Name: theme_iconbox theme_iconbox_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_iconbox - ADD CONSTRAINT theme_iconbox_pkey PRIMARY KEY (id); - - --- --- Name: theme_quotamessage theme_quotamessage_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_quotamessage - ADD CONSTRAINT theme_quotamessage_pkey PRIMARY KEY (id); - - --- --- Name: theme_quotarequest theme_quotarequest_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_quotarequest - ADD CONSTRAINT theme_quotarequest_pkey PRIMARY KEY (id); - - --- --- Name: theme_siteconfiguration theme_siteconfiguration_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_siteconfiguration - ADD CONSTRAINT theme_siteconfiguration_pkey PRIMARY KEY (id); - - --- --- Name: theme_userprofile theme_userprofile__bucket_name_b8e43ed3_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userprofile - ADD CONSTRAINT theme_userprofile__bucket_name_b8e43ed3_uniq UNIQUE (_bucket_name); - - --- --- Name: theme_userprofile theme_userprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userprofile - ADD CONSTRAINT theme_userprofile_pkey PRIMARY KEY (id); - - --- --- Name: theme_userprofile theme_userprofile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userprofile - ADD CONSTRAINT theme_userprofile_user_id_key UNIQUE (user_id); - - --- --- Name: theme_userquota theme_userquota_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userquota - ADD CONSTRAINT theme_userquota_pkey PRIMARY KEY (id); - - --- --- Name: theme_userquota theme_userquota_user_id_329a4f07aa9f15a4_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userquota - ADD CONSTRAINT theme_userquota_user_id_329a4f07aa9f15a4_uniq UNIQUE (user_id, zone); - - --- --- Name: thumbnail_kvstore thumbnail_kvstore_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.thumbnail_kvstore - ADD CONSTRAINT thumbnail_kvstore_pkey PRIMARY KEY (key); - - --- --- Name: django_s3_avu unique_avu; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_s3_avu - ADD CONSTRAINT unique_avu UNIQUE (name, "attName"); - - --- --- Name: auth_group_name_253ae2a6331666e8_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_group_name_253ae2a6331666e8_like ON public.auth_group USING btree (name varchar_pattern_ops); - - --- --- Name: auth_group_permissions_0e939a4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_group_permissions_0e939a4f ON public.auth_group_permissions USING btree (group_id); - - --- --- Name: auth_group_permissions_8373b171; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_group_permissions_8373b171 ON public.auth_group_permissions USING btree (permission_id); - - --- --- Name: auth_permission_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_permission_417f1b1c ON public.auth_permission USING btree (content_type_id); - - --- --- Name: auth_user_groups_0e939a4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_user_groups_0e939a4f ON public.auth_user_groups USING btree (group_id); - - --- --- Name: auth_user_groups_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_user_groups_e8701ad4 ON public.auth_user_groups USING btree (user_id); - - --- --- Name: auth_user_user_permissions_8373b171; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_user_user_permissions_8373b171 ON public.auth_user_user_permissions USING btree (permission_id); - - --- --- Name: auth_user_user_permissions_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_user_user_permissions_e8701ad4 ON public.auth_user_user_permissions USING btree (user_id); - - --- --- Name: auth_user_username_51b3b110094b8aae_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX auth_user_username_51b3b110094b8aae_like ON public.auth_user USING btree (username varchar_pattern_ops); - - --- --- Name: blog_blogcategory_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogcategory_site_id ON public.blog_blogcategory USING btree (site_id); - - --- --- Name: blog_blogpost_categories_blogcategory_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_categories_blogcategory_id ON public.blog_blogpost_categories USING btree (blogcategory_id); - - --- --- Name: blog_blogpost_categories_blogpost_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_categories_blogpost_id ON public.blog_blogpost_categories USING btree (blogpost_id); - - --- --- Name: blog_blogpost_publish_date_1015da2554a8e97f_uniq; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_publish_date_1015da2554a8e97f_uniq ON public.blog_blogpost USING btree (publish_date); - - --- --- Name: blog_blogpost_related_posts_from_blogpost_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_related_posts_from_blogpost_id ON public.blog_blogpost_related_posts USING btree (from_blogpost_id); - - --- --- Name: blog_blogpost_related_posts_to_blogpost_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_related_posts_to_blogpost_id ON public.blog_blogpost_related_posts USING btree (to_blogpost_id); - - --- --- Name: blog_blogpost_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_site_id ON public.blog_blogpost USING btree (site_id); - - --- --- Name: blog_blogpost_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX blog_blogpost_user_id ON public.blog_blogpost USING btree (user_id); - - --- --- Name: celery_taskmeta_hidden; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX celery_taskmeta_hidden ON public.celery_taskmeta USING btree (hidden); - - --- --- Name: celery_taskmeta_task_id_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX celery_taskmeta_task_id_like ON public.celery_taskmeta USING btree (task_id varchar_pattern_ops); - - --- --- Name: celery_tasksetmeta_hidden; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX celery_tasksetmeta_hidden ON public.celery_tasksetmeta USING btree (hidden); - - --- --- Name: celery_tasksetmeta_taskset_id_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX celery_tasksetmeta_taskset_id_like ON public.celery_tasksetmeta USING btree (taskset_id varchar_pattern_ops); - - --- --- Name: conf_setting_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX conf_setting_site_id ON public.conf_setting USING btree (site_id); - - --- --- Name: core_sitepermission_sites_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX core_sitepermission_sites_site_id ON public.core_sitepermission_sites USING btree (site_id); - - --- --- Name: core_sitepermission_sites_sitepermission_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX core_sitepermission_sites_sitepermission_id ON public.core_sitepermission_sites USING btree (sitepermission_id); - - --- --- Name: django_admin_log_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_admin_log_417f1b1c ON public.django_admin_log USING btree (content_type_id); - - --- --- Name: django_admin_log_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_admin_log_e8701ad4 ON public.django_admin_log USING btree (user_id); - - --- --- Name: django_comment_flags_comment_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comment_flags_comment_id ON public.django_comment_flags USING btree (comment_id); - - --- --- Name: django_comment_flags_flag; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comment_flags_flag ON public.django_comment_flags USING btree (flag); - - --- --- Name: django_comment_flags_flag_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comment_flags_flag_like ON public.django_comment_flags USING btree (flag varchar_pattern_ops); - - --- --- Name: django_comment_flags_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comment_flags_user_id ON public.django_comment_flags USING btree (user_id); - - --- --- Name: django_comments_content_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_content_type_id ON public.django_comments USING btree (content_type_id); - - --- --- Name: django_comments_is_removed_52a03ae3; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_is_removed_52a03ae3 ON public.django_comments USING btree (is_removed); - - --- --- Name: django_comments_object_pk_7fc98e83; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_object_pk_7fc98e83 ON public.django_comments USING btree (object_pk); - - --- --- Name: django_comments_object_pk_7fc98e83_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_object_pk_7fc98e83_like ON public.django_comments USING btree (object_pk varchar_pattern_ops); - - --- --- Name: django_comments_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_site_id ON public.django_comments USING btree (site_id); - - --- --- Name: django_comments_submit_date_514ed2d9; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_submit_date_514ed2d9 ON public.django_comments USING btree (submit_date); - - --- --- Name: django_comments_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_comments_user_id ON public.django_comments USING btree (user_id); - - --- --- Name: django_docker_processes_containeroverrides_3885db4e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_containeroverrides_3885db4e ON public.django_docker_processes_containeroverrides USING btree (docker_profile_id); - - --- --- Name: django_docker_processes_dockerenvvar_3885db4e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerenvvar_3885db4e ON public.django_docker_processes_dockerenvvar USING btree (docker_profile_id); - - --- --- Name: django_docker_processes_dockerlink_3885db4e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerlink_3885db4e ON public.django_docker_processes_dockerlink USING btree (docker_profile_id); - - --- --- Name: django_docker_processes_dockerlink_621534b3; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerlink_621534b3 ON public.django_docker_processes_dockerlink USING btree (docker_overrides_id); - - --- --- Name: django_docker_processes_dockerlink_f4faa4b8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerlink_f4faa4b8 ON public.django_docker_processes_dockerlink USING btree (docker_profile_from_id); - - --- --- Name: django_docker_processes_dockerport_3885db4e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerport_3885db4e ON public.django_docker_processes_dockerport USING btree (docker_profile_id); - - --- --- Name: django_docker_processes_dockerproce_token_1211961caacdde18_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerproce_token_1211961caacdde18_like ON public.django_docker_processes_dockerprocess USING btree (token varchar_pattern_ops); - - --- --- Name: django_docker_processes_dockerprocess_83a0eb3f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerprocess_83a0eb3f ON public.django_docker_processes_dockerprocess USING btree (profile_id); - - --- --- Name: django_docker_processes_dockerprocess_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerprocess_e8701ad4 ON public.django_docker_processes_dockerprocess USING btree (user_id); - - --- --- Name: django_docker_processes_dockerprofil_name_75d7d5a2a3b969e3_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockerprofil_name_75d7d5a2a3b969e3_like ON public.django_docker_processes_dockerprofile USING btree (name varchar_pattern_ops); - - --- --- Name: django_docker_processes_dockervolume_3885db4e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_dockervolume_3885db4e ON public.django_docker_processes_dockervolume USING btree (docker_profile_id); - - --- --- Name: django_docker_processes_overrideenvvar_064a291d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_overrideenvvar_064a291d ON public.django_docker_processes_overrideenvvar USING btree (container_overrides_id); - - --- --- Name: django_docker_processes_overridelink_064a291d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_overridelink_064a291d ON public.django_docker_processes_overridelink USING btree (container_overrides_id); - - --- --- Name: django_docker_processes_overridelink_f4faa4b8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_overridelink_f4faa4b8 ON public.django_docker_processes_overridelink USING btree (docker_profile_from_id); - - --- --- Name: django_docker_processes_overrideport_064a291d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_overrideport_064a291d ON public.django_docker_processes_overrideport USING btree (container_overrides_id); - - --- --- Name: django_docker_processes_overridevolume_064a291d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_docker_processes_overridevolume_064a291d ON public.django_docker_processes_overridevolume USING btree (container_overrides_id); - - --- --- Name: django_redirect_91a0b591; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_redirect_91a0b591 ON public.django_redirect USING btree (old_path); - - --- --- Name: django_redirect_9365d6e7; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_redirect_9365d6e7 ON public.django_redirect USING btree (site_id); - - --- --- Name: django_redirect_old_path_9db3e423470cdaf_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_redirect_old_path_9db3e423470cdaf_like ON public.django_redirect USING btree (old_path varchar_pattern_ops); - - --- --- Name: django_session_de54fa62; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_session_de54fa62 ON public.django_session USING btree (expire_date); - - --- --- Name: django_session_session_key_461cfeaa630ca218_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_session_session_key_461cfeaa630ca218_like ON public.django_session USING btree (session_key varchar_pattern_ops); - - --- --- Name: django_site_domain_a2e37b91_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX django_site_domain_a2e37b91_like ON public.django_site USING btree (domain varchar_pattern_ops); - - --- --- Name: djcelery_periodictask_crontab_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_periodictask_crontab_id ON public.djcelery_periodictask USING btree (crontab_id); - - --- --- Name: djcelery_periodictask_interval_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_periodictask_interval_id ON public.djcelery_periodictask USING btree (interval_id); - - --- --- Name: djcelery_periodictask_name_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_periodictask_name_like ON public.djcelery_periodictask USING btree (name varchar_pattern_ops); - - --- --- Name: djcelery_taskstate_hidden; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_hidden ON public.djcelery_taskstate USING btree (hidden); - - --- --- Name: djcelery_taskstate_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_name ON public.djcelery_taskstate USING btree (name); - - --- --- Name: djcelery_taskstate_name_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_name_like ON public.djcelery_taskstate USING btree (name varchar_pattern_ops); - - --- --- Name: djcelery_taskstate_state; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_state ON public.djcelery_taskstate USING btree (state); - - --- --- Name: djcelery_taskstate_state_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_state_like ON public.djcelery_taskstate USING btree (state varchar_pattern_ops); - - --- --- Name: djcelery_taskstate_task_id_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_task_id_like ON public.djcelery_taskstate USING btree (task_id varchar_pattern_ops); - - --- --- Name: djcelery_taskstate_tstamp; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_tstamp ON public.djcelery_taskstate USING btree (tstamp); - - --- --- Name: djcelery_taskstate_worker_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_taskstate_worker_id ON public.djcelery_taskstate USING btree (worker_id); - - --- --- Name: djcelery_workerstate_hostname_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_workerstate_hostname_like ON public.djcelery_workerstate USING btree (hostname varchar_pattern_ops); - - --- --- Name: djcelery_workerstate_last_heartbeat; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX djcelery_workerstate_last_heartbeat ON public.djcelery_workerstate USING btree (last_heartbeat); - - --- --- Name: forms_field_form_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX forms_field_form_id ON public.forms_field USING btree (form_id); - - --- --- Name: forms_fieldentry_entry_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX forms_fieldentry_entry_id ON public.forms_fieldentry USING btree (entry_id); - - --- --- Name: forms_formentry_form_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX forms_formentry_form_id ON public.forms_formentry USING btree (form_id); - - --- --- Name: ga_ows_ogrdataset_0a1a4dd8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrdataset_0a1a4dd8 ON public.ga_ows_ogrdataset USING btree (collection_id); - - --- --- Name: ga_ows_ogrdataset_81aebe41; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrdataset_81aebe41 ON public.ga_ows_ogrdataset USING btree (human_name); - - --- --- Name: ga_ows_ogrdataset_b068931c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrdataset_b068931c ON public.ga_ows_ogrdataset USING btree (name); - - --- --- Name: ga_ows_ogrdataset_extent_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrdataset_extent_id ON public.ga_ows_ogrdataset USING gist (extent); - - --- --- Name: ga_ows_ogrdataset_human_name_2718979caa46bdd6_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrdataset_human_name_2718979caa46bdd6_like ON public.ga_ows_ogrdataset USING btree (human_name text_pattern_ops); - - --- --- Name: ga_ows_ogrdataset_name_5ef251b0d7fbd366_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrdataset_name_5ef251b0d7fbd366_like ON public.ga_ows_ogrdataset USING btree (name varchar_pattern_ops); - - --- --- Name: ga_ows_ogrlayer_81aebe41; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrlayer_81aebe41 ON public.ga_ows_ogrlayer USING btree (human_name); - - --- --- Name: ga_ows_ogrlayer_b068931c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrlayer_b068931c ON public.ga_ows_ogrlayer USING btree (name); - - --- --- Name: ga_ows_ogrlayer_d366d308; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrlayer_d366d308 ON public.ga_ows_ogrlayer USING btree (dataset_id); - - --- --- Name: ga_ows_ogrlayer_extent_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrlayer_extent_id ON public.ga_ows_ogrlayer USING gist (extent); - - --- --- Name: ga_ows_ogrlayer_human_name_517fb130c5bed6d7_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrlayer_human_name_517fb130c5bed6d7_like ON public.ga_ows_ogrlayer USING btree (human_name text_pattern_ops); - - --- --- Name: ga_ows_ogrlayer_name_440515aa32d1fbcb_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_ows_ogrlayer_name_440515aa32d1fbcb_like ON public.ga_ows_ogrlayer USING btree (name varchar_pattern_ops); - - --- --- Name: ga_resources_catalogpage_5e7b1936; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_catalogpage_5e7b1936 ON public.ga_resources_catalogpage USING btree (owner_id); - - --- --- Name: ga_resources_dataresource_5e7b1936; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_dataresource_5e7b1936 ON public.ga_resources_dataresource USING btree (owner_id); - - --- --- Name: ga_resources_dataresource_bounding_box_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_dataresource_bounding_box_id ON public.ga_resources_dataresource USING gist (bounding_box); - - --- --- Name: ga_resources_dataresource_c17888f6; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_dataresource_c17888f6 ON public.ga_resources_dataresource USING btree (next_refresh); - - --- --- Name: ga_resources_dataresource_native_bounding_box_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_dataresource_native_bounding_box_id ON public.ga_resources_dataresource USING gist (native_bounding_box); - - --- --- Name: ga_resources_orderedresource_6cfffab0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_orderedresource_6cfffab0 ON public.ga_resources_orderedresource USING btree (data_resource_id); - - --- --- Name: ga_resources_orderedresource_e46a33dd; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_orderedresource_e46a33dd ON public.ga_resources_orderedresource USING btree (resource_group_id); - - --- --- Name: ga_resources_relatedresource_51211265; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_relatedresource_51211265 ON public.ga_resources_relatedresource USING btree (foreign_resource_id); - - --- --- Name: ga_resources_renderedlayer_5e7b1936; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_renderedlayer_5e7b1936 ON public.ga_resources_renderedlayer USING btree (owner_id); - - --- --- Name: ga_resources_renderedlayer_6cfffab0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_renderedlayer_6cfffab0 ON public.ga_resources_renderedlayer USING btree (data_resource_id); - - --- --- Name: ga_resources_renderedlayer_d3785984; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_renderedlayer_d3785984 ON public.ga_resources_renderedlayer USING btree (default_style_id); - - --- --- Name: ga_resources_renderedlayer_styles_066f4da0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_renderedlayer_styles_066f4da0 ON public.ga_resources_renderedlayer_styles USING btree (renderedlayer_id); - - --- --- Name: ga_resources_renderedlayer_styles_528292b4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_renderedlayer_styles_528292b4 ON public.ga_resources_renderedlayer_styles USING btree (style_id); - - --- --- Name: ga_resources_style_5e7b1936; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX ga_resources_style_5e7b1936 ON public.ga_resources_style USING btree (owner_id); - - --- --- Name: galleries_galleryimage_gallery_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX galleries_galleryimage_gallery_id ON public.galleries_galleryimage USING btree (gallery_id); - - --- --- Name: generic_assignedkeyword_content_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX generic_assignedkeyword_content_type_id ON public.generic_assignedkeyword USING btree (content_type_id); - - --- --- Name: generic_assignedkeyword_keyword_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX generic_assignedkeyword_keyword_id ON public.generic_assignedkeyword USING btree (keyword_id); - - --- --- Name: generic_keyword_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX generic_keyword_site_id ON public.generic_keyword USING btree (site_id); - - --- --- Name: generic_rating_content_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX generic_rating_content_type_id ON public.generic_rating USING btree (content_type_id); - - --- --- Name: generic_rating_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX generic_rating_user_id ON public.generic_rating USING btree (user_id); - - --- --- Name: generic_threadedcomment_replied_to_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX generic_threadedcomment_replied_to_id ON public.generic_threadedcomment USING btree (replied_to_id); - - --- --- Name: hs_access_control_communit_community_id_6b0528e5; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_communit_community_id_6b0528e5 ON public.hs_access_control_communityresourceprivilege USING btree (community_id); - - --- --- Name: hs_access_control_communit_community_id_d99cfdf0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_communit_community_id_d99cfdf0 ON public.hs_access_control_communityresourceprovenance USING btree (community_id); - - --- --- Name: hs_access_control_communit_grantor_id_3ec5bad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_communit_grantor_id_3ec5bad4 ON public.hs_access_control_communityresourceprovenance USING btree (grantor_id); - - --- --- Name: hs_access_control_communit_grantor_id_451d7a0c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_communit_grantor_id_451d7a0c ON public.hs_access_control_communityresourceprivilege USING btree (grantor_id); - - --- --- Name: hs_access_control_communit_resource_id_454c9c9f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_communit_resource_id_454c9c9f ON public.hs_access_control_communityresourceprovenance USING btree (resource_id); - - --- --- Name: hs_access_control_communit_resource_id_c2e3d0e4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_communit_resource_id_c2e3d0e4 ON public.hs_access_control_communityresourceprivilege USING btree (resource_id); - - --- --- Name: hs_access_control_feature_user_id_f7b54071; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_feature_user_id_f7b54071 ON public.hs_access_control_feature USING btree (user_id); - - --- --- Name: hs_access_control_groupcom_community_id_84dd001c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcom_community_id_84dd001c ON public.hs_access_control_groupcommunityprovenance USING btree (community_id); - - --- --- Name: hs_access_control_groupcom_community_owner_id_1dc22dbe; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcom_community_owner_id_1dc22dbe ON public.hs_access_control_groupcommunityrequest USING btree (community_owner_id); - - --- --- Name: hs_access_control_groupcommunityprivilege_community_id_9ead4ef2; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityprivilege_community_id_9ead4ef2 ON public.hs_access_control_groupcommunityprivilege USING btree (community_id); - - --- --- Name: hs_access_control_groupcommunityprivilege_grantor_id_19665fe3; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityprivilege_grantor_id_19665fe3 ON public.hs_access_control_groupcommunityprivilege USING btree (grantor_id); - - --- --- Name: hs_access_control_groupcommunityprivilege_group_id_ff0f35d5; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityprivilege_group_id_ff0f35d5 ON public.hs_access_control_groupcommunityprivilege USING btree (group_id); - - --- --- Name: hs_access_control_groupcommunityprovenance_grantor_id_9aa4c4fe; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityprovenance_grantor_id_9aa4c4fe ON public.hs_access_control_groupcommunityprovenance USING btree (grantor_id); - - --- --- Name: hs_access_control_groupcommunityprovenance_group_id_b09a2f11; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityprovenance_group_id_b09a2f11 ON public.hs_access_control_groupcommunityprovenance USING btree (group_id); - - --- --- Name: hs_access_control_groupcommunityrequest_community_id_68acef01; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityrequest_community_id_68acef01 ON public.hs_access_control_groupcommunityrequest USING btree (community_id); - - --- --- Name: hs_access_control_groupcommunityrequest_group_id_cc4bb20b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityrequest_group_id_cc4bb20b ON public.hs_access_control_groupcommunityrequest USING btree (group_id); - - --- --- Name: hs_access_control_groupcommunityrequest_group_owner_id_b005fc64; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupcommunityrequest_group_owner_id_b005fc64 ON public.hs_access_control_groupcommunityrequest USING btree (group_owner_id); - - --- --- Name: hs_access_control_groupmembershiprequest_0c4f5cd1; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupmembershiprequest_0c4f5cd1 ON public.hs_access_control_groupmembershiprequest USING btree (request_from_id); - - --- --- Name: hs_access_control_groupmembershiprequest_4561f31b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupmembershiprequest_4561f31b ON public.hs_access_control_groupmembershiprequest USING btree (group_to_join_id); - - --- --- Name: hs_access_control_groupmembershiprequest_a3f20815; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupmembershiprequest_a3f20815 ON public.hs_access_control_groupmembershiprequest USING btree (invitation_to_id); - - --- --- Name: hs_access_control_groupresourceprivilege_82c60f9f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupresourceprivilege_82c60f9f ON public.hs_access_control_groupresourceprivilege USING btree (resource_id); - - --- --- Name: hs_access_control_groupresourceprivilege_9e767b7c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupresourceprivilege_9e767b7c ON public.hs_access_control_groupresourceprivilege USING btree (grantor_id); - - --- --- Name: hs_access_control_groupresourceprivilege_dc2a4728; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupresourceprivilege_dc2a4728 ON public.hs_access_control_groupresourceprivilege USING btree (group_id); - - --- --- Name: hs_access_control_groupresourceprovenance_0e939a4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupresourceprovenance_0e939a4f ON public.hs_access_control_groupresourceprovenance USING btree (group_id); - - --- --- Name: hs_access_control_groupresourceprovenance_7e847bf8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupresourceprovenance_7e847bf8 ON public.hs_access_control_groupresourceprovenance USING btree (grantor_id); - - --- --- Name: hs_access_control_groupresourceprovenance_e2f3ef5b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_groupresourceprovenance_e2f3ef5b ON public.hs_access_control_groupresourceprovenance USING btree (resource_id); - - --- --- Name: hs_access_control_requestc_community_to_approve_id_4670cdbb; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_requestc_community_to_approve_id_4670cdbb ON public.hs_access_control_requestcommunity USING btree (community_to_approve_id); - - --- --- Name: hs_access_control_requestcommunity_requested_by_id_88bc04ee; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_requestcommunity_requested_by_id_88bc04ee ON public.hs_access_control_requestcommunity USING btree (requested_by_id); - - --- --- Name: hs_access_control_usercommunityprivilege_community_id_14d5752b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usercommunityprivilege_community_id_14d5752b ON public.hs_access_control_usercommunityprivilege USING btree (community_id); - - --- --- Name: hs_access_control_usercommunityprivilege_grantor_id_b75f8636; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usercommunityprivilege_grantor_id_b75f8636 ON public.hs_access_control_usercommunityprivilege USING btree (grantor_id); - - --- --- Name: hs_access_control_usercommunityprivilege_user_id_85f37b5b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usercommunityprivilege_user_id_85f37b5b ON public.hs_access_control_usercommunityprivilege USING btree (user_id); - - --- --- Name: hs_access_control_usercommunityprovenance_community_id_847d4e07; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usercommunityprovenance_community_id_847d4e07 ON public.hs_access_control_usercommunityprovenance USING btree (community_id); - - --- --- Name: hs_access_control_usercommunityprovenance_grantor_id_a80855ea; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usercommunityprovenance_grantor_id_a80855ea ON public.hs_access_control_usercommunityprovenance USING btree (grantor_id); - - --- --- Name: hs_access_control_usercommunityprovenance_user_id_6bfff69e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usercommunityprovenance_user_id_6bfff69e ON public.hs_access_control_usercommunityprovenance USING btree (user_id); - - --- --- Name: hs_access_control_usergroupprivilege_80b9f3ef; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usergroupprivilege_80b9f3ef ON public.hs_access_control_usergroupprivilege USING btree (user_id); - - --- --- Name: hs_access_control_usergroupprivilege_9e767b7c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usergroupprivilege_9e767b7c ON public.hs_access_control_usergroupprivilege USING btree (grantor_id); - - --- --- Name: hs_access_control_usergroupprivilege_dc2a4728; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usergroupprivilege_dc2a4728 ON public.hs_access_control_usergroupprivilege USING btree (group_id); - - --- --- Name: hs_access_control_usergroupprovenance_0e939a4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usergroupprovenance_0e939a4f ON public.hs_access_control_usergroupprovenance USING btree (group_id); - - --- --- Name: hs_access_control_usergroupprovenance_7e847bf8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usergroupprovenance_7e847bf8 ON public.hs_access_control_usergroupprovenance USING btree (grantor_id); - - --- --- Name: hs_access_control_usergroupprovenance_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_usergroupprovenance_e8701ad4 ON public.hs_access_control_usergroupprovenance USING btree (user_id); - - --- --- Name: hs_access_control_userresourceprivilege_80b9f3ef; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_userresourceprivilege_80b9f3ef ON public.hs_access_control_userresourceprivilege USING btree (user_id); - - --- --- Name: hs_access_control_userresourceprivilege_82c60f9f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_userresourceprivilege_82c60f9f ON public.hs_access_control_userresourceprivilege USING btree (resource_id); - - --- --- Name: hs_access_control_userresourceprivilege_9e767b7c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_userresourceprivilege_9e767b7c ON public.hs_access_control_userresourceprivilege USING btree (grantor_id); - - --- --- Name: hs_access_control_userresourceprovenance_7e847bf8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_userresourceprovenance_7e847bf8 ON public.hs_access_control_userresourceprovenance USING btree (grantor_id); - - --- --- Name: hs_access_control_userresourceprovenance_e2f3ef5b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_userresourceprovenance_e2f3ef5b ON public.hs_access_control_userresourceprovenance USING btree (resource_id); - - --- --- Name: hs_access_control_userresourceprovenance_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_access_control_userresourceprovenance_e8701ad4 ON public.hs_access_control_userresourceprovenance USING btree (user_id); - - --- --- Name: hs_app_netCDF_originalcoverage_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX "hs_app_netCDF_originalcoverage_417f1b1c" ON public.hs_file_types_originalcoverage USING btree (content_type_id); - - --- --- Name: hs_app_netCDF_variable_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX "hs_app_netCDF_variable_417f1b1c" ON public.hs_file_types_variable USING btree (content_type_id); - - --- --- Name: hs_app_timeseries_method_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_app_timeseries_method_417f1b1c ON public.hs_file_types_method USING btree (content_type_id); - - --- --- Name: hs_app_timeseries_processinglevel_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_app_timeseries_processinglevel_417f1b1c ON public.hs_file_types_processinglevel USING btree (content_type_id); - - --- --- Name: hs_app_timeseries_site_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_app_timeseries_site_417f1b1c ON public.hs_file_types_site USING btree (content_type_id); - - --- --- Name: hs_app_timeseries_timeseriesresult_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_app_timeseries_timeseriesresult_417f1b1c ON public.hs_file_types_timeseriesresult USING btree (content_type_id); - - --- --- Name: hs_app_timeseries_utcoffset_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_app_timeseries_utcoffset_417f1b1c ON public.hs_file_types_utcoffset USING btree (content_type_id); - - --- --- Name: hs_app_timeseries_variable_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_app_timeseries_variable_417f1b1c ON public.hs_file_types_variabletimeseries USING btree (content_type_id); - - --- --- Name: hs_collection_resource_collectiondeletedresource_0a1a4dd8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_collection_resource_collectiondeletedresource_0a1a4dd8 ON public.hs_collection_resource_collectiondeletedresource USING btree (collection_id); - - --- --- Name: hs_collection_resource_collectiondeletedresource_d19ec81d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_collection_resource_collectiondeletedresource_d19ec81d ON public.hs_collection_resource_collectiondeletedresource USING btree (deleted_by_id); - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_o2660; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_collection_resource_collectiondeletedresource_resource_o2660 ON public.hs_collection_resource_collectiondeletedresource_resource_od9f5 USING btree (collectiondeletedresource_id); - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_ocd4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_collection_resource_collectiondeletedresource_resource_ocd4f ON public.hs_collection_resource_collectiondeletedresource_resource_od9f5 USING btree (user_id); - - --- --- Name: hs_core_citation_content_type_id_972d87c6; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_citation_content_type_id_972d87c6 ON public.hs_core_citation USING btree (content_type_id); - - --- --- Name: hs_core_contributor_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_contributor_417f1b1c ON public.hs_core_contributor USING btree (content_type_id); - - --- --- Name: hs_core_coverage_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_coverage_417f1b1c ON public.hs_core_coverage USING btree (content_type_id); - - --- --- Name: hs_core_creator_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_creator_417f1b1c ON public.hs_core_creator USING btree (content_type_id); - - --- --- Name: hs_core_date_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_date_417f1b1c ON public.hs_core_date USING btree (content_type_id); - - --- --- Name: hs_core_description_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_description_417f1b1c ON public.hs_core_description USING btree (content_type_id); - - --- --- Name: hs_core_format_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_format_417f1b1c ON public.hs_core_format USING btree (content_type_id); - - --- --- Name: hs_core_fundingagency_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_fundingagency_417f1b1c ON public.hs_core_fundingagency USING btree (content_type_id); - - --- --- Name: hs_core_genericresource_3700153c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_3700153c ON public.hs_core_genericresource USING btree (creator_id); - - --- --- Name: hs_core_genericresource_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_417f1b1c ON public.hs_core_genericresource USING btree (content_type_id); - - --- --- Name: hs_core_genericresource_44cc026e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_44cc026e ON public.hs_core_genericresource USING btree (doi); - - --- --- Name: hs_core_genericresource_6e3c2cc2; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_6e3c2cc2 ON public.hs_core_genericresource USING btree (last_changed_by_id); - - --- --- Name: hs_core_genericresource_7258c37c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_7258c37c ON public.hs_core_genericresource USING btree (short_id); - - --- --- Name: hs_core_genericresource_collections_169f7fce; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_collections_169f7fce ON public.hs_core_genericresource_collections USING btree (from_baseresource_id); - - --- --- Name: hs_core_genericresource_collections_91410dc4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_collections_91410dc4 ON public.hs_core_genericresource_collections USING btree (to_baseresource_id); - - --- --- Name: hs_core_genericresource_doi_1fd041a54c9b75f0_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_doi_1fd041a54c9b75f0_like ON public.hs_core_genericresource USING btree (doi varchar_pattern_ops); - - --- --- Name: hs_core_genericresource_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_e8701ad4 ON public.hs_core_genericresource USING btree (user_id); - - --- --- Name: hs_core_genericresource_quota_holder_id_83c8873b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_quota_holder_id_83c8873b ON public.hs_core_genericresource USING btree (quota_holder_id); - - --- --- Name: hs_core_genericresource_short_id_1ccf03b27239c9d9_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_genericresource_short_id_1ccf03b27239c9d9_like ON public.hs_core_genericresource USING btree (short_id varchar_pattern_ops); - - --- --- Name: hs_core_geospatialrelation_content_type_id_fc62c5a5; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_geospatialrelation_content_type_id_fc62c5a5 ON public.hs_core_geospatialrelation USING btree (content_type_id); - - --- --- Name: hs_core_groupownership_0e939a4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_groupownership_0e939a4f ON public.hs_core_groupownership USING btree (group_id); - - --- --- Name: hs_core_groupownership_5e7b1936; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_groupownership_5e7b1936 ON public.hs_core_groupownership USING btree (owner_id); - - --- --- Name: hs_core_identifier_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_identifier_417f1b1c ON public.hs_core_identifier USING btree (content_type_id); - - --- --- Name: hs_core_identifier_url_5612dd61d821222e_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_identifier_url_5612dd61d821222e_like ON public.hs_core_identifier USING btree (url varchar_pattern_ops); - - --- --- Name: hs_core_language_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_language_417f1b1c ON public.hs_core_language USING btree (content_type_id); - - --- --- Name: hs_core_publisher_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_publisher_417f1b1c ON public.hs_core_publisher USING btree (content_type_id); - - --- --- Name: hs_core_relation_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_relation_417f1b1c ON public.hs_core_relation USING btree (content_type_id); - - --- --- Name: hs_core_resourcefile_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_resourcefile_417f1b1c ON public.hs_core_resourcefile USING btree (content_type_id); - - --- --- Name: hs_core_resourcefile_af839760; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_resourcefile_af839760 ON public.hs_core_resourcefile USING btree (logical_file_content_type_id); - - --- --- Name: hs_core_resourcefile_object_id_resource_file_908610e9_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_resourcefile_object_id_resource_file_908610e9_idx ON public.hs_core_resourcefile USING btree (object_id, resource_file); - - --- --- Name: hs_core_resourcefile_resource_file_ab307f6e_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_resourcefile_resource_file_ab307f6e_like ON public.hs_core_resourcefile USING btree (resource_file varchar_pattern_ops); - - --- --- Name: hs_core_rights_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_rights_417f1b1c ON public.hs_core_rights USING btree (content_type_id); - - --- --- Name: hs_core_subject_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_subject_417f1b1c ON public.hs_core_subject USING btree (content_type_id); - - --- --- Name: hs_core_tasknotification_task_id_b755952a_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_tasknotification_task_id_b755952a_like ON public.hs_core_tasknotification USING btree (task_id varchar_pattern_ops); - - --- --- Name: hs_core_tasknotification_username_1ea0ae30; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_tasknotification_username_1ea0ae30 ON public.hs_core_tasknotification USING btree (username); - - --- --- Name: hs_core_tasknotification_username_1ea0ae30_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_tasknotification_username_1ea0ae30_like ON public.hs_core_tasknotification USING btree (username varchar_pattern_ops); - - --- --- Name: hs_core_title_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_title_417f1b1c ON public.hs_core_title USING btree (content_type_id); - - --- --- Name: hs_core_type_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_core_type_417f1b1c ON public.hs_core_type USING btree (content_type_id); - - --- --- Name: hs_file_types_csvlogicalfile_resource_id_6e34890f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_csvlogicalfile_resource_id_6e34890f ON public.hs_file_types_csvlogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_cvaggregationstatistic_metadata_id_251a5892; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvaggregationstatistic_metadata_id_251a5892 ON public.hs_file_types_cvaggregationstatistic USING btree (metadata_id); - - --- --- Name: hs_file_types_cvelevationdatum_metadata_id_99cb1db8; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvelevationdatum_metadata_id_99cb1db8 ON public.hs_file_types_cvelevationdatum USING btree (metadata_id); - - --- --- Name: hs_file_types_cvmedium_metadata_id_382a1b6d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvmedium_metadata_id_382a1b6d ON public.hs_file_types_cvmedium USING btree (metadata_id); - - --- --- Name: hs_file_types_cvmethodtype_metadata_id_244a33f0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvmethodtype_metadata_id_244a33f0 ON public.hs_file_types_cvmethodtype USING btree (metadata_id); - - --- --- Name: hs_file_types_cvsitetype_metadata_id_4f0047b9; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvsitetype_metadata_id_4f0047b9 ON public.hs_file_types_cvsitetype USING btree (metadata_id); - - --- --- Name: hs_file_types_cvspeciation_metadata_id_25e79d42; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvspeciation_metadata_id_25e79d42 ON public.hs_file_types_cvspeciation USING btree (metadata_id); - - --- --- Name: hs_file_types_cvstatus_metadata_id_13261b95; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvstatus_metadata_id_13261b95 ON public.hs_file_types_cvstatus USING btree (metadata_id); - - --- --- Name: hs_file_types_cvunitstype_metadata_id_8dd379c0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvunitstype_metadata_id_8dd379c0 ON public.hs_file_types_cvunitstype USING btree (metadata_id); - - --- --- Name: hs_file_types_cvvariablename_metadata_id_6390cd41; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvvariablename_metadata_id_6390cd41 ON public.hs_file_types_cvvariablename USING btree (metadata_id); - - --- --- Name: hs_file_types_cvvariabletype_metadata_id_ff268daa; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_cvvariabletype_metadata_id_ff268daa ON public.hs_file_types_cvvariabletype USING btree (metadata_id); - - --- --- Name: hs_file_types_filesetlogicalfile_resource_id_7032df73; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_filesetlogicalfile_resource_id_7032df73 ON public.hs_file_types_filesetlogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_genericlogicalfile_resource_id_b5915dec; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_genericlogicalfile_resource_id_b5915dec ON public.hs_file_types_genericlogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_geofeaturelogicalfile_resource_id_05b89011; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_geofeaturelogicalfile_resource_id_05b89011 ON public.hs_file_types_geofeaturelogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_georasterlogicalfile_resource_id_ec57a3c3; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_georasterlogicalfile_resource_id_ec57a3c3 ON public.hs_file_types_georasterlogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_modelinstancefilemetadata_executed_by_id_4d181869; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_modelinstancefilemetadata_executed_by_id_4d181869 ON public.hs_file_types_modelinstancefilemetadata USING btree (executed_by_id); - - --- --- Name: hs_file_types_modelinstancelogicalfile_resource_id_7ff2e26d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_modelinstancelogicalfile_resource_id_7ff2e26d ON public.hs_file_types_modelinstancelogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_modelprogram_mp_metadata_id_7d558023; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_modelprogram_mp_metadata_id_7d558023 ON public.hs_file_types_modelprogramresourcefiletype USING btree (mp_metadata_id); - - --- --- Name: hs_file_types_modelprogramlogicalfile_resource_id_cfc1a9d6; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_modelprogramlogicalfile_resource_id_cfc1a9d6 ON public.hs_file_types_modelprogramlogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_modelprogramresourcefiletype_res_file_id_9cd12298; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_modelprogramresourcefiletype_res_file_id_9cd12298 ON public.hs_file_types_modelprogramresourcefiletype USING btree (res_file_id); - - --- --- Name: hs_file_types_netcdflogicalfile_resource_id_fa54b4db; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_netcdflogicalfile_resource_id_fa54b4db ON public.hs_file_types_netcdflogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_reftimeserieslogicalfile_resource_id_a9ded1ff; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_reftimeserieslogicalfile_resource_id_a9ded1ff ON public.hs_file_types_reftimeserieslogicalfile USING btree (resource_id); - - --- --- Name: hs_file_types_timeserieslogicalfile_resource_id_cc4550ba; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_file_types_timeserieslogicalfile_resource_id_cc4550ba ON public.hs_file_types_timeserieslogicalfile USING btree (resource_id); - - --- --- Name: hs_geo_raster_resource_bandinformation_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_geo_raster_resource_bandinformation_417f1b1c ON public.hs_file_types_bandinformation USING btree (content_type_id); - - --- --- Name: hs_geo_raster_resource_cellinformation_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_geo_raster_resource_cellinformation_417f1b1c ON public.hs_file_types_cellinformation USING btree (content_type_id); - - --- --- Name: hs_geo_raster_resource_originalcoverage_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_geo_raster_resource_originalcoverage_417f1b1c ON public.hs_file_types_originalcoverageraster USING btree (content_type_id); - - --- --- Name: hs_geographic_feature_resource_fieldinformation_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_geographic_feature_resource_fieldinformation_417f1b1c ON public.hs_file_types_fieldinformation USING btree (content_type_id); - - --- --- Name: hs_geographic_feature_resource_geometryinformation_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_geographic_feature_resource_geometryinformation_417f1b1c ON public.hs_file_types_geometryinformation USING btree (content_type_id); - - --- --- Name: hs_geographic_feature_resource_originalcoverage_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_geographic_feature_resource_originalcoverage_417f1b1c ON public.hs_file_types_originalcoveragegeofeature USING btree (content_type_id); - - --- --- Name: hs_labels_userresourceflags_e2f3ef5b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_labels_userresourceflags_e2f3ef5b ON public.hs_labels_userresourceflags USING btree (resource_id); - - --- --- Name: hs_labels_userresourceflags_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_labels_userresourceflags_e8701ad4 ON public.hs_labels_userresourceflags USING btree (user_id); - - --- --- Name: hs_labels_userresourcelabels_e2f3ef5b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_labels_userresourcelabels_e2f3ef5b ON public.hs_labels_userresourcelabels USING btree (resource_id); - - --- --- Name: hs_labels_userresourcelabels_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_labels_userresourcelabels_e8701ad4 ON public.hs_labels_userresourcelabels USING btree (user_id); - - --- --- Name: hs_labels_userstoredlabels_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_labels_userstoredlabels_e8701ad4 ON public.hs_labels_userstoredlabels USING btree (user_id); - - --- --- Name: hs_tools_resource_apphomepageurl_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_apphomepageurl_417f1b1c ON public.hs_tools_resource_apphomepageurl USING btree (content_type_id); - - --- --- Name: hs_tools_resource_helppageurl_content_type_id_fd68ab0a; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_helppageurl_content_type_id_fd68ab0a ON public.hs_tools_resource_helppageurl USING btree (content_type_id); - - --- --- Name: hs_tools_resource_issuespageurl_content_type_id_79144377; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_issuespageurl_content_type_id_79144377 ON public.hs_tools_resource_issuespageurl USING btree (content_type_id); - - --- --- Name: hs_tools_resource_mailinglisturl_content_type_id_4ba8ca5a; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_mailinglisturl_content_type_id_4ba8ca5a ON public.hs_tools_resource_mailinglisturl USING btree (content_type_id); - - --- --- Name: hs_tools_resource_requestu_content_type_id_774b809e; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_requestu_content_type_id_774b809e ON public.hs_tools_resource_requesturlbaseaggregation USING btree (content_type_id); - - --- --- Name: hs_tools_resource_requesturlbase_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_requesturlbase_417f1b1c ON public.hs_tools_resource_requesturlbase USING btree (content_type_id); - - --- --- Name: hs_tools_resource_requesturlbasefile_content_type_id_8ee7ab04; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_requesturlbasefile_content_type_id_8ee7ab04 ON public.hs_tools_resource_requesturlbasefile USING btree (content_type_id); - - --- --- Name: hs_tools_resource_roadmap_content_type_id_2b28b9e3; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_roadmap_content_type_id_2b28b9e3 ON public.hs_tools_resource_roadmap USING btree (content_type_id); - - --- --- Name: hs_tools_resource_showonopenwithlist_content_type_id_46647bfc; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_showonopenwithlist_content_type_id_46647bfc ON public.hs_tools_resource_showonopenwithlist USING btree (content_type_id); - - --- --- Name: hs_tools_resource_sourcecodeurl_content_type_id_e38d6841; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_sourcecodeurl_content_type_id_e38d6841 ON public.hs_tools_resource_sourcecodeurl USING btree (content_type_id); - - --- --- Name: hs_tools_resource_supporte_content_type_id_ec21b8f5; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supporte_content_type_id_ec21b8f5 ON public.hs_tools_resource_supportedfileextensions USING btree (content_type_id); - - --- --- Name: hs_tools_resource_supporte_supportedaggtypechoices_id_a4b8b2e0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supporte_supportedaggtypechoices_id_a4b8b2e0 ON public.hs_tools_resource_supportedaggtypes_supported_agg_types USING btree (supportedaggtypechoices_id); - - --- --- Name: hs_tools_resource_supporte_supportedaggtypes_id_763fc392; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supporte_supportedaggtypes_id_763fc392 ON public.hs_tools_resource_supportedaggtypes_supported_agg_types USING btree (supportedaggtypes_id); - - --- --- Name: hs_tools_resource_supportedaggtypes_content_type_id_4d8a44dd; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedaggtypes_content_type_id_4d8a44dd ON public.hs_tools_resource_supportedaggtypes USING btree (content_type_id); - - --- --- Name: hs_tools_resource_supportedrestypes_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedrestypes_417f1b1c ON public.hs_tools_resource_supportedrestypes USING btree (content_type_id); - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types_a538657; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedrestypes_supported_res_types_a538657 ON public.hs_tools_resource_supportedrestypes_supported_res_types USING btree (supportedrestypechoices_id); - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types_ae94a0b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedrestypes_supported_res_types_ae94a0b ON public.hs_tools_resource_supportedrestypes_supported_res_types USING btree (supportedrestypes_id); - - --- --- Name: hs_tools_resource_supportedsharingstatus_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedsharingstatus_417f1b1c ON public.hs_tools_resource_supportedsharingstatus USING btree (content_type_id); - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status_ba95e5d; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedsharingstatus_sharing_status_ba95e5d ON public.hs_tools_resource_supportedsharingstatus_sharing_status USING btree (supportedsharingstatuschoices_id); - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status_c4e90cb; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_supportedsharingstatus_sharing_status_c4e90cb ON public.hs_tools_resource_supportedsharingstatus_sharing_status USING btree (supportedsharingstatus_id); - - --- --- Name: hs_tools_resource_testingprotocolurl_content_type_id_65c76ca0; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_testingprotocolurl_content_type_id_65c76ca0 ON public.hs_tools_resource_testingprotocolurl USING btree (content_type_id); - - --- --- Name: hs_tools_resource_toolicon_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_toolicon_417f1b1c ON public.hs_tools_resource_toolicon USING btree (content_type_id); - - --- --- Name: hs_tools_resource_toolversion_417f1b1c; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tools_resource_toolversion_417f1b1c ON public.hs_tools_resource_toolversion USING btree (content_type_id); - - --- --- Name: hs_tracking_session_bfc2f125; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tracking_session_bfc2f125 ON public.hs_tracking_session USING btree (visitor_id); - - --- --- Name: hs_tracking_variable_7fc8ef54; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tracking_variable_7fc8ef54 ON public.hs_tracking_variable USING btree (session_id); - - --- --- Name: hs_tracking_variable_resource_id_1e36eb64; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tracking_variable_resource_id_1e36eb64 ON public.hs_tracking_variable USING btree (resource_id); - - --- --- Name: hs_tracking_visitor_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX hs_tracking_visitor_e8701ad4 ON public.hs_tracking_visitor USING btree (user_id); - - --- --- Name: oauth2_provider_accesstoken_6bc0a4eb; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_accesstoken_6bc0a4eb ON public.oauth2_provider_accesstoken USING btree (application_id); - - --- --- Name: oauth2_provider_accesstoken_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_accesstoken_e8701ad4 ON public.oauth2_provider_accesstoken USING btree (user_id); - - --- --- Name: oauth2_provider_accesstoken_token_checksum_85319a26_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_accesstoken_token_checksum_85319a26_like ON public.oauth2_provider_accesstoken USING btree (token_checksum varchar_pattern_ops); - - --- --- Name: oauth2_provider_application_9d667c2b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_application_9d667c2b ON public.oauth2_provider_application USING btree (client_secret); - - --- --- Name: oauth2_provider_application_client_id_58c909672dac14b2_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_application_client_id_58c909672dac14b2_like ON public.oauth2_provider_application USING btree (client_id varchar_pattern_ops); - - --- --- Name: oauth2_provider_application_client_secret_7a03c41cdcace5e9_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_application_client_secret_7a03c41cdcace5e9_like ON public.oauth2_provider_application USING btree (client_secret varchar_pattern_ops); - - --- --- Name: oauth2_provider_application_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_application_e8701ad4 ON public.oauth2_provider_application USING btree (user_id); - - --- --- Name: oauth2_provider_grant_6bc0a4eb; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_grant_6bc0a4eb ON public.oauth2_provider_grant USING btree (application_id); - - --- --- Name: oauth2_provider_grant_code_49ab4ddf_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_grant_code_49ab4ddf_like ON public.oauth2_provider_grant USING btree (code varchar_pattern_ops); - - --- --- Name: oauth2_provider_grant_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_grant_e8701ad4 ON public.oauth2_provider_grant USING btree (user_id); - - --- --- Name: oauth2_provider_idtoken_application_id_08c5ff4f; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_idtoken_application_id_08c5ff4f ON public.oauth2_provider_idtoken USING btree (application_id); - - --- --- Name: oauth2_provider_idtoken_user_id_dd512b59; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_idtoken_user_id_dd512b59 ON public.oauth2_provider_idtoken USING btree (user_id); - - --- --- Name: oauth2_provider_refreshtoken_6bc0a4eb; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_refreshtoken_6bc0a4eb ON public.oauth2_provider_refreshtoken USING btree (application_id); - - --- --- Name: oauth2_provider_refreshtoken_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX oauth2_provider_refreshtoken_e8701ad4 ON public.oauth2_provider_refreshtoken USING btree (user_id); - - --- --- Name: pages_page_parent_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX pages_page_parent_id ON public.pages_page USING btree (parent_id); - - --- --- Name: pages_page_publish_date_4b581dded15f4cdf_uniq; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX pages_page_publish_date_4b581dded15f4cdf_uniq ON public.pages_page USING btree (publish_date); - - --- --- Name: pages_page_site_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX pages_page_site_id ON public.pages_page USING btree (site_id); - - --- --- Name: robots_rule_allowed_29608e0a; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX robots_rule_allowed_29608e0a ON public.robots_rule_allowed USING btree (url_id); - - --- --- Name: robots_rule_allowed_e1150e65; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX robots_rule_allowed_e1150e65 ON public.robots_rule_allowed USING btree (rule_id); - - --- --- Name: robots_rule_disallowed_29608e0a; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX robots_rule_disallowed_29608e0a ON public.robots_rule_disallowed USING btree (url_id); - - --- --- Name: robots_rule_disallowed_e1150e65; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX robots_rule_disallowed_e1150e65 ON public.robots_rule_disallowed USING btree (rule_id); - - --- --- Name: robots_rule_sites_9365d6e7; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX robots_rule_sites_9365d6e7 ON public.robots_rule_sites USING btree (site_id); - - --- --- Name: robots_rule_sites_e1150e65; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX robots_rule_sites_e1150e65 ON public.robots_rule_sites USING btree (rule_id); - - --- --- Name: theme_iconbox_a6c7fe0b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX theme_iconbox_a6c7fe0b ON public.theme_iconbox USING btree (homepage_id); - - --- --- Name: theme_quotarequest_quota_id_b3e948d9; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX theme_quotarequest_quota_id_b3e948d9 ON public.theme_quotarequest USING btree (quota_id); - - --- --- Name: theme_quotarequest_request_from_id_020f329b; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX theme_quotarequest_request_from_id_020f329b ON public.theme_quotarequest USING btree (request_from_id); - - --- --- Name: theme_siteconfiguration_9365d6e7; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX theme_siteconfiguration_9365d6e7 ON public.theme_siteconfiguration USING btree (site_id); - - --- --- Name: theme_userprofile__bucket_name_b8e43ed3_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX theme_userprofile__bucket_name_b8e43ed3_like ON public.theme_userprofile USING btree (_bucket_name varchar_pattern_ops); - - --- --- Name: theme_userquota_e8701ad4; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX theme_userquota_e8701ad4 ON public.theme_userquota USING btree (user_id); - - --- --- Name: thumbnail_kvstore_key_3f850178_like; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX thumbnail_kvstore_key_3f850178_like ON public.thumbnail_kvstore USING btree (key varchar_pattern_ops); - - --- --- Name: django_docker_processes_overridelink D08b32ecb2a1f6c60231933ce1770ca8; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridelink - ADD CONSTRAINT "D08b32ecb2a1f6c60231933ce1770ca8" FOREIGN KEY (container_overrides_id) REFERENCES public.django_docker_processes_containeroverrides(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_orderedresource D0d41531a62e8a1740c2e8b57a4309ae; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_orderedresource - ADD CONSTRAINT "D0d41531a62e8a1740c2e8b57a4309ae" FOREIGN KEY (data_resource_id) REFERENCES public.ga_resources_dataresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_geofeaturelogicalfile D14f4d644c6fd8096a3e6064242122ef; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturelogicalfile - ADD CONSTRAINT "D14f4d644c6fd8096a3e6064242122ef" FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_geofeaturefilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerlink D16cd563c928a22ccbdb7c425a399b3c; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerlink - ADD CONSTRAINT "D16cd563c928a22ccbdb7c425a399b3c" FOREIGN KEY (docker_profile_from_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerprocess D1c0b5309109a103589fe605907962d9; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprocess - ADD CONSTRAINT "D1c0b5309109a103589fe605907962d9" FOREIGN KEY (profile_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockervolume D1cd11468aed7088c8176baf1733f0a9; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockervolume - ADD CONSTRAINT "D1cd11468aed7088c8176baf1733f0a9" FOREIGN KEY (docker_profile_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_userresourceprivilege D22dcb573d00d765370a2f5986bb9bec; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprivilege - ADD CONSTRAINT "D22dcb573d00d765370a2f5986bb9bec" FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_userresourcelabels D2339626414192982538d20c2f5e41c1; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourcelabels - ADD CONSTRAINT "D2339626414192982538d20c2f5e41c1" FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource_collections D31151cd560fcd8a9d7eac2bbb5b84c9; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource_collections - ADD CONSTRAINT "D31151cd560fcd8a9d7eac2bbb5b84c9" FOREIGN KEY (to_baseresource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerlink D31c29d49b8f7ec3acaeadd6d03d4a4f; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerlink - ADD CONSTRAINT "D31c29d49b8f7ec3acaeadd6d03d4a4f" FOREIGN KEY (docker_profile_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerport D33ece86ac4d6b9f723a21fc5ee52956; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerport - ADD CONSTRAINT "D33ece86ac4d6b9f723a21fc5ee52956" FOREIGN KEY (docker_profile_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_orderedresource D3774497fc72c82be6a35a3e9797e2da; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_orderedresource - ADD CONSTRAINT "D3774497fc72c82be6a35a3e9797e2da" FOREIGN KEY (resource_group_id) REFERENCES public.ga_resources_resourcegroup(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_relatedresource D3ddf29327dcf888bd232c7b0fc88c25; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_relatedresource - ADD CONSTRAINT "D3ddf29327dcf888bd232c7b0fc88c25" FOREIGN KEY (foreign_resource_id) REFERENCES public.ga_resources_dataresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_toolmetadata D4174b69c892f2b9a3bd164e041c7307; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolmetadata - ADD CONSTRAINT "D4174b69c892f2b9a3bd164e041c7307" FOREIGN KEY (coremetadata_ptr_id) REFERENCES public.hs_core_coremetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_renderedlayer D4494202da9df682a8acda71be9628f3; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer - ADD CONSTRAINT "D4494202da9df682a8acda71be9628f3" FOREIGN KEY (default_style_id) REFERENCES public.ga_resources_style(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_overridelink D5b97bbd43dc74b22e279a355699342b; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridelink - ADD CONSTRAINT "D5b97bbd43dc74b22e279a355699342b" FOREIGN KEY (docker_profile_from_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_containeroverrides D608e8d602265386bd6d7afacb14cc09; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_containeroverrides - ADD CONSTRAINT "D608e8d602265386bd6d7afacb14cc09" FOREIGN KEY (docker_profile_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_resourcefile D61444138ccc9b7ca512515523d0160b; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_resourcefile - ADD CONSTRAINT "D61444138ccc9b7ca512515523d0160b" FOREIGN KEY (logical_file_content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource_collections D66495776709e8754037f4f18d4258ac; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource_collections - ADD CONSTRAINT "D66495776709e8754037f4f18d4258ac" FOREIGN KEY (from_baseresource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_ows_ogrdataset D66abd734664aa960007027384fa6de8; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrdataset - ADD CONSTRAINT "D66abd734664aa960007027384fa6de8" FOREIGN KEY (collection_id) REFERENCES public.ga_ows_ogrdatasetcollection(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_renderedlayer_styles D6b8a9e44c81b6ef0edc08ba3acdf181; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer_styles - ADD CONSTRAINT "D6b8a9e44c81b6ef0edc08ba3acdf181" FOREIGN KEY (renderedlayer_id) REFERENCES public.ga_resources_renderedlayer(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerenvvar D6f5f0817512c0e51eb157b953080433; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerenvvar - ADD CONSTRAINT "D6f5f0817512c0e51eb157b953080433" FOREIGN KEY (docker_profile_id) REFERENCES public.django_docker_processes_dockerprofile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupresourceprovenance D763f5ed6fe4d4d08ecfcae173cbca3d; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprovenance - ADD CONSTRAINT "D763f5ed6fe4d4d08ecfcae173cbca3d" FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_renderedlayer D7e7cede746315ab9e08ce902995fd0e; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer - ADD CONSTRAINT "D7e7cede746315ab9e08ce902995fd0e" FOREIGN KEY (data_resource_id) REFERENCES public.ga_resources_dataresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_collection_resource_collectiondeletedresource D939acd71ef4c768cad03ae2dffa0298; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource - ADD CONSTRAINT "D939acd71ef4c768cad03ae2dffa0298" FOREIGN KEY (collection_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupresourceprivilege a7a04a83e3272ec48b241a40cc3fe88d; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprivilege - ADD CONSTRAINT a7a04a83e3272ec48b241a40cc3fe88d FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_permission auth_content_type_id_508cf46651277a81_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_permission - ADD CONSTRAINT auth_content_type_id_508cf46651277a81_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_group_permissions auth_group_permissio_group_id_689710a9a73b7457_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group_permissions - ADD CONSTRAINT auth_group_permissio_group_id_689710a9a73b7457_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_group_permissions auth_group_permission_id_1f49ccbbdc69d2fc_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_group_permissions - ADD CONSTRAINT auth_group_permission_id_1f49ccbbdc69d2fc_fk_auth_permission_id FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_user_user_permissions auth_user__permission_id_384b62483d7071f0_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_user_permissions - ADD CONSTRAINT auth_user__permission_id_384b62483d7071f0_fk_auth_permission_id FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_user_groups auth_user_groups_group_id_33ac548dcf5f8e37_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_groups - ADD CONSTRAINT auth_user_groups_group_id_33ac548dcf5f8e37_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_user_groups auth_user_groups_user_id_4b5ed4ffdb8fd9b0_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_groups - ADD CONSTRAINT auth_user_groups_user_id_4b5ed4ffdb8fd9b0_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: auth_user_user_permissions auth_user_user_permiss_user_id_7f0938558328534a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.auth_user_user_permissions - ADD CONSTRAINT auth_user_user_permiss_user_id_7f0938558328534a_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_reftimeserieslogicalfile b20d482030b02e9f2ccb0e6458b6c281; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeserieslogicalfile - ADD CONSTRAINT b20d482030b02e9f2ccb0e6458b6c281 FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_reftimeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_netcdflogicalfile b517e4a4254c99705d2ef3b2b833cff4; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdflogicalfile - ADD CONSTRAINT b517e4a4254c99705d2ef3b2b833cff4 FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_netcdffilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_resourceaccess b63b96a572d7b3efb2f8fb476540a554; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_resourceaccess - ADD CONSTRAINT b63b96a572d7b3efb2f8fb476540a554 FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_userresourceflags b880a3861b1b4ee955080e12d158b7e7; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourceflags - ADD CONSTRAINT b880a3861b1b4ee955080e12d158b7e7 FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: blog_blogpost_categories blogcategory_id_refs_id_91693b1c; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_categories - ADD CONSTRAINT blogcategory_id_refs_id_91693b1c FOREIGN KEY (blogcategory_id) REFERENCES public.blog_blogcategory(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: blog_blogpost_categories blogpost_id_refs_id_6a2ad936; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_categories - ADD CONSTRAINT blogpost_id_refs_id_6a2ad936 FOREIGN KEY (blogpost_id) REFERENCES public.blog_blogpost(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerlink ca4a9cd99a95a85ce7365a740304c84e; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerlink - ADD CONSTRAINT ca4a9cd99a95a85ce7365a740304c84e FOREIGN KEY (docker_overrides_id) REFERENCES public.django_docker_processes_containeroverrides(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_georasterlogicalfile cf0442e99cc22aab4bc90b95654d14ab; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterlogicalfile - ADD CONSTRAINT cf0442e99cc22aab4bc90b95654d14ab FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_georasterfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_genericlogicalfile cf79e6373a5ffeee73541ef57e96090d; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericlogicalfile - ADD CONSTRAINT cf79e6373a5ffeee73541ef57e96090d FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_genericfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: generic_threadedcomment comment_ptr_id_refs_id_d4c241e5; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_threadedcomment - ADD CONSTRAINT comment_ptr_id_refs_id_d4c241e5 FOREIGN KEY (comment_ptr_id) REFERENCES public.django_comments(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_resourcelabels d4e9b3137507001988ea891be22e9789; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_resourcelabels - ADD CONSTRAINT d4e9b3137507001988ea891be22e9789 FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_admin_log djan_content_type_id_697914295151027a_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_admin_log - ADD CONSTRAINT djan_content_type_id_697914295151027a_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_admin_log django_admin_log_user_id_52fdd58701c5f563_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_admin_log - ADD CONSTRAINT django_admin_log_user_id_52fdd58701c5f563_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_comment_flags django_comment_flags_comment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_comment_flags - ADD CONSTRAINT django_comment_flags_comment_id_fkey FOREIGN KEY (comment_id) REFERENCES public.django_comments(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_dockerprocess django_docker_processe_user_id_4bc3352b630db9d6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_dockerprocess - ADD CONSTRAINT django_docker_processe_user_id_4bc3352b630db9d6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_redirect django_redirect_site_id_121a4403f653e524_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_redirect - ADD CONSTRAINT django_redirect_site_id_121a4403f653e524_fk_django_site_id FOREIGN KEY (site_id) REFERENCES public.django_site(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: djcelery_periodictask djcelery_periodictask_crontab_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_periodictask - ADD CONSTRAINT djcelery_periodictask_crontab_id_fkey FOREIGN KEY (crontab_id) REFERENCES public.djcelery_crontabschedule(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: djcelery_periodictask djcelery_periodictask_interval_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_periodictask - ADD CONSTRAINT djcelery_periodictask_interval_id_fkey FOREIGN KEY (interval_id) REFERENCES public.djcelery_intervalschedule(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: djcelery_taskstate djcelery_taskstate_worker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.djcelery_taskstate - ADD CONSTRAINT djcelery_taskstate_worker_id_fkey FOREIGN KEY (worker_id) REFERENCES public.djcelery_workerstate(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_userresourceprovenance e19cf6cec3169736eacf85ac0d3461fb; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprovenance - ADD CONSTRAINT e19cf6cec3169736eacf85ac0d3461fb FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_overrideenvvar e5fed3f499b0200346f7d75572f21043; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overrideenvvar - ADD CONSTRAINT e5fed3f499b0200346f7d75572f21043 FOREIGN KEY (container_overrides_id) REFERENCES public.django_docker_processes_containeroverrides(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_overrideport ed07907c5bbff48aa33f866d15220f0a; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overrideport - ADD CONSTRAINT ed07907c5bbff48aa33f866d15220f0a FOREIGN KEY (container_overrides_id) REFERENCES public.django_docker_processes_containeroverrides(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_od9f5 fdb8bb299277d4067f76710058feb68c; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource_resource_od9f5 - ADD CONSTRAINT fdb8bb299277d4067f76710058feb68c FOREIGN KEY (collectiondeletedresource_id) REFERENCES public.hs_collection_resource_collectiondeletedresource(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: django_docker_processes_overridevolume fffc21cda66b01603a10a01bdad6da7a; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.django_docker_processes_overridevolume - ADD CONSTRAINT fffc21cda66b01603a10a01bdad6da7a FOREIGN KEY (container_overrides_id) REFERENCES public.django_docker_processes_containeroverrides(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: forms_field forms_field_form_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_field - ADD CONSTRAINT forms_field_form_id_fkey FOREIGN KEY (form_id) REFERENCES public.forms_form(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: forms_fieldentry forms_fieldentry_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_fieldentry - ADD CONSTRAINT forms_fieldentry_entry_id_fkey FOREIGN KEY (entry_id) REFERENCES public.forms_formentry(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: forms_formentry forms_formentry_form_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_formentry - ADD CONSTRAINT forms_formentry_form_id_fkey FOREIGN KEY (form_id) REFERENCES public.forms_form(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: blog_blogpost_related_posts from_blogpost_id_refs_id_6404941b; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_related_posts - ADD CONSTRAINT from_blogpost_id_refs_id_6404941b FOREIGN KEY (from_blogpost_id) REFERENCES public.blog_blogpost(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_renderedlayer_styles ga__style_id_5936d77d79781cb3_fk_ga_resources_style_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer_styles - ADD CONSTRAINT ga__style_id_5936d77d79781cb3_fk_ga_resources_style_page_ptr_id FOREIGN KEY (style_id) REFERENCES public.ga_resources_style(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_ows_ogrlayer ga_ows_ogrl_dataset_id_6e73ed83065ab28e_fk_ga_ows_ogrdataset_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_ows_ogrlayer - ADD CONSTRAINT ga_ows_ogrl_dataset_id_6e73ed83065ab28e_fk_ga_ows_ogrdataset_id FOREIGN KEY (dataset_id) REFERENCES public.ga_ows_ogrdataset(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_catalogpage ga_resources_cata_page_ptr_id_3a34c22b98e9c9d9_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_catalogpage - ADD CONSTRAINT ga_resources_cata_page_ptr_id_3a34c22b98e9c9d9_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_catalogpage ga_resources_catalogp_owner_id_1f14a105abf0305d_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_catalogpage - ADD CONSTRAINT ga_resources_catalogp_owner_id_1f14a105abf0305d_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_dataresource ga_resources_data_page_ptr_id_4f03f820364cc814_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_dataresource - ADD CONSTRAINT ga_resources_data_page_ptr_id_4f03f820364cc814_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_dataresource ga_resources_datareso_owner_id_73f783a9e0765a16_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_dataresource - ADD CONSTRAINT ga_resources_datareso_owner_id_73f783a9e0765a16_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_relatedresource ga_resources_rela_page_ptr_id_5b6dd4b2b1bc4396_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_relatedresource - ADD CONSTRAINT ga_resources_rela_page_ptr_id_5b6dd4b2b1bc4396_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_renderedlayer ga_resources_rend_page_ptr_id_79d7ddc1ebb5949d_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer - ADD CONSTRAINT ga_resources_rend_page_ptr_id_79d7ddc1ebb5949d_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_renderedlayer ga_resources_renderedl_owner_id_b1ea62c22422ddf_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_renderedlayer - ADD CONSTRAINT ga_resources_renderedl_owner_id_b1ea62c22422ddf_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_resourcegroup ga_resources_reso_page_ptr_id_4a4164112cf8cc60_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_resourcegroup - ADD CONSTRAINT ga_resources_reso_page_ptr_id_4a4164112cf8cc60_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_style ga_resources_styl_page_ptr_id_1c486a7554041e16_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_style - ADD CONSTRAINT ga_resources_styl_page_ptr_id_1c486a7554041e16_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: ga_resources_style ga_resources_style_owner_id_25e12844a4baec14_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ga_resources_style - ADD CONSTRAINT ga_resources_style_owner_id_25e12844a4baec14_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: galleries_gallery galleries_gallery_page_ptr_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.galleries_gallery - ADD CONSTRAINT galleries_gallery_page_ptr_id_fkey FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: galleries_galleryimage galleries_galleryimage_gallery_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.galleries_galleryimage - ADD CONSTRAINT galleries_galleryimage_gallery_id_fkey FOREIGN KEY (gallery_id) REFERENCES public.galleries_gallery(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: generic_assignedkeyword generic_assignedkeyword_keyword_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_assignedkeyword - ADD CONSTRAINT generic_assignedkeyword_keyword_id_fkey FOREIGN KEY (keyword_id) REFERENCES public.generic_keyword(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: generic_threadedcomment generic_threadedcomment_replied_to_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.generic_threadedcomment - ADD CONSTRAINT generic_threadedcomment_replied_to_id_fkey FOREIGN KEY (replied_to_id) REFERENCES public.generic_threadedcomment(comment_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_originalcoverage hs_a_content_type_id_1c8d1eac05f91712_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverage - ADD CONSTRAINT hs_a_content_type_id_1c8d1eac05f91712_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_utcoffset hs_a_content_type_id_1f7b7e7568a47f65_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_utcoffset - ADD CONSTRAINT hs_a_content_type_id_1f7b7e7568a47f65_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_method hs_a_content_type_id_20e32c2b2e7f28d2_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_method - ADD CONSTRAINT hs_a_content_type_id_20e32c2b2e7f28d2_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_processinglevel hs_a_content_type_id_451721750e25a0b3_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_processinglevel - ADD CONSTRAINT hs_a_content_type_id_451721750e25a0b3_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_timeseriesresult hs_a_content_type_id_5883e361b4531c3c_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeseriesresult - ADD CONSTRAINT hs_a_content_type_id_5883e361b4531c3c_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_variabletimeseries hs_a_content_type_id_6bea7582e11ffdc9_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_variabletimeseries - ADD CONSTRAINT hs_a_content_type_id_6bea7582e11ffdc9_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_site hs_a_content_type_id_6c3a0d31ca8f2ee2_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_site - ADD CONSTRAINT hs_a_content_type_id_6c3a0d31ca8f2ee2_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupmembershiprequest hs_access_co_group_to_join_id_5cf445aa01ee1f48_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupmembershiprequest - ADD CONSTRAINT hs_access_co_group_to_join_id_5cf445aa01ee1f48_fk_auth_group_id FOREIGN KEY (group_to_join_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupmembershiprequest hs_access_con_invitation_to_id_5cdd6acd6d11df75_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupmembershiprequest - ADD CONSTRAINT hs_access_con_invitation_to_id_5cdd6acd6d11df75_fk_auth_user_id FOREIGN KEY (invitation_to_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupmembershiprequest hs_access_cont_request_from_id_3447b6ef4a91ce7d_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupmembershiprequest - ADD CONSTRAINT hs_access_cont_request_from_id_3447b6ef4a91ce7d_fk_auth_user_id FOREIGN KEY (request_from_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_communityresourceprivilege hs_access_control_co_community_id_6b0528e5_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprivilege - ADD CONSTRAINT hs_access_control_co_community_id_6b0528e5_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_communityresourceprovenance hs_access_control_co_community_id_d99cfdf0_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprovenance - ADD CONSTRAINT hs_access_control_co_community_id_d99cfdf0_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_communityresourceprovenance hs_access_control_co_grantor_id_3ec5bad4_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprovenance - ADD CONSTRAINT hs_access_control_co_grantor_id_3ec5bad4_fk_auth_user FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_communityresourceprivilege hs_access_control_co_grantor_id_451d7a0c_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprivilege - ADD CONSTRAINT hs_access_control_co_grantor_id_451d7a0c_fk_auth_user FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_communityresourceprovenance hs_access_control_co_resource_id_454c9c9f_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprovenance - ADD CONSTRAINT hs_access_control_co_resource_id_454c9c9f_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_communityresourceprivilege hs_access_control_co_resource_id_c2e3d0e4_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_communityresourceprivilege - ADD CONSTRAINT hs_access_control_co_resource_id_c2e3d0e4_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_feature hs_access_control_feature_user_id_f7b54071_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_feature - ADD CONSTRAINT hs_access_control_feature_user_id_f7b54071_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupresourceprivilege hs_access_control_g_grantor_id_1e68e0395847f2b3_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprivilege - ADD CONSTRAINT hs_access_control_g_grantor_id_1e68e0395847f2b3_fk_auth_user_id FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupresourceprovenance hs_access_control_g_grantor_id_3e5d815f5ca90e8a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprovenance - ADD CONSTRAINT hs_access_control_g_grantor_id_3e5d815f5ca90e8a_fk_auth_user_id FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityrequest hs_access_control_gr_community_id_68acef01_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityrequest - ADD CONSTRAINT hs_access_control_gr_community_id_68acef01_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityprovenance hs_access_control_gr_community_id_84dd001c_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprovenance - ADD CONSTRAINT hs_access_control_gr_community_id_84dd001c_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityprivilege hs_access_control_gr_community_id_9ead4ef2_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprivilege - ADD CONSTRAINT hs_access_control_gr_community_id_9ead4ef2_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityrequest hs_access_control_gr_community_owner_id_1dc22dbe_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityrequest - ADD CONSTRAINT hs_access_control_gr_community_owner_id_1dc22dbe_fk_auth_user FOREIGN KEY (community_owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityprivilege hs_access_control_gr_grantor_id_19665fe3_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprivilege - ADD CONSTRAINT hs_access_control_gr_grantor_id_19665fe3_fk_auth_user FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityprovenance hs_access_control_gr_grantor_id_9aa4c4fe_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprovenance - ADD CONSTRAINT hs_access_control_gr_grantor_id_9aa4c4fe_fk_auth_user FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupaccess hs_access_control_gr_group_id_1bd0754af26faaf7_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupaccess - ADD CONSTRAINT hs_access_control_gr_group_id_1bd0754af26faaf7_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupresourceprivilege hs_access_control_gr_group_id_3d9dbfade29a5ab5_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprivilege - ADD CONSTRAINT hs_access_control_gr_group_id_3d9dbfade29a5ab5_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityprovenance hs_access_control_gr_group_id_b09a2f11_fk_auth_grou; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprovenance - ADD CONSTRAINT hs_access_control_gr_group_id_b09a2f11_fk_auth_grou FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityrequest hs_access_control_gr_group_id_cc4bb20b_fk_auth_grou; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityrequest - ADD CONSTRAINT hs_access_control_gr_group_id_cc4bb20b_fk_auth_grou FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityprivilege hs_access_control_gr_group_id_ff0f35d5_fk_auth_grou; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityprivilege - ADD CONSTRAINT hs_access_control_gr_group_id_ff0f35d5_fk_auth_grou FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupcommunityrequest hs_access_control_gr_group_owner_id_b005fc64_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupcommunityrequest - ADD CONSTRAINT hs_access_control_gr_group_owner_id_b005fc64_fk_auth_user FOREIGN KEY (group_owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_groupresourceprovenance hs_access_control_gro_group_id_71a5c4d23eb742c_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_groupresourceprovenance - ADD CONSTRAINT hs_access_control_gro_group_id_71a5c4d23eb742c_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_requestcommunity hs_access_control_re_community_to_approve_4670cdbb_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_requestcommunity - ADD CONSTRAINT hs_access_control_re_community_to_approve_4670cdbb_fk_hs_access FOREIGN KEY (community_to_approve_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_requestcommunity hs_access_control_re_requested_by_id_88bc04ee_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_requestcommunity - ADD CONSTRAINT hs_access_control_re_requested_by_id_88bc04ee_fk_auth_user FOREIGN KEY (requested_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_userresourceprovenance hs_access_control_u_grantor_id_2b562b352020c1dd_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprovenance - ADD CONSTRAINT hs_access_control_u_grantor_id_2b562b352020c1dd_fk_auth_user_id FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_userresourceprivilege hs_access_control_u_grantor_id_4701883fe2eecd92_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprivilege - ADD CONSTRAINT hs_access_control_u_grantor_id_4701883fe2eecd92_fk_auth_user_id FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usergroupprovenance hs_access_control_u_grantor_id_4f35ffdf779659db_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprovenance - ADD CONSTRAINT hs_access_control_u_grantor_id_4f35ffdf779659db_fk_auth_user_id FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usergroupprivilege hs_access_control_u_grantor_id_742a65bf460606de_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprivilege - ADD CONSTRAINT hs_access_control_u_grantor_id_742a65bf460606de_fk_auth_user_id FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usercommunityprivilege hs_access_control_us_community_id_14d5752b_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprivilege - ADD CONSTRAINT hs_access_control_us_community_id_14d5752b_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usercommunityprovenance hs_access_control_us_community_id_847d4e07_fk_hs_access; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprovenance - ADD CONSTRAINT hs_access_control_us_community_id_847d4e07_fk_hs_access FOREIGN KEY (community_id) REFERENCES public.hs_access_control_community(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usercommunityprovenance hs_access_control_us_grantor_id_a80855ea_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprovenance - ADD CONSTRAINT hs_access_control_us_grantor_id_a80855ea_fk_auth_user FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usercommunityprivilege hs_access_control_us_grantor_id_b75f8636_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprivilege - ADD CONSTRAINT hs_access_control_us_grantor_id_b75f8636_fk_auth_user FOREIGN KEY (grantor_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usergroupprivilege hs_access_control_us_group_id_7a23b411f5887d80_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprivilege - ADD CONSTRAINT hs_access_control_us_group_id_7a23b411f5887d80_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usercommunityprovenance hs_access_control_us_user_id_6bfff69e_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprovenance - ADD CONSTRAINT hs_access_control_us_user_id_6bfff69e_fk_auth_user FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usercommunityprivilege hs_access_control_us_user_id_85f37b5b_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usercommunityprivilege - ADD CONSTRAINT hs_access_control_us_user_id_85f37b5b_fk_auth_user FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usergroupprovenance hs_access_control_user_group_id_e4144ab68f857d_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprovenance - ADD CONSTRAINT hs_access_control_user_group_id_e4144ab68f857d_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_useraccess hs_access_control_user_user_id_243e1d62fa0c4421_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_useraccess - ADD CONSTRAINT hs_access_control_user_user_id_243e1d62fa0c4421_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_userresourceprovenance hs_access_control_user_user_id_2f4a1c58f99f6ed2_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprovenance - ADD CONSTRAINT hs_access_control_user_user_id_2f4a1c58f99f6ed2_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usergroupprovenance hs_access_control_user_user_id_4569a2ddb14e3c0a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprovenance - ADD CONSTRAINT hs_access_control_user_user_id_4569a2ddb14e3c0a_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_userresourceprivilege hs_access_control_user_user_id_5009f3b148778457_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_userresourceprivilege - ADD CONSTRAINT hs_access_control_user_user_id_5009f3b148778457_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_access_control_usergroupprivilege hs_access_control_userg_user_id_d8086f326b13647_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_access_control_usergroupprivilege - ADD CONSTRAINT hs_access_control_userg_user_id_d8086f326b13647_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_variable hs_ap_content_type_id_321744f4b1f2b5d_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_variable - ADD CONSTRAINT hs_ap_content_type_id_321744f4b1f2b5d_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_description hs_c_content_type_id_15a9d2f60f693357_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_description - ADD CONSTRAINT hs_c_content_type_id_15a9d2f60f693357_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_title hs_c_content_type_id_1958c85a8a2ac493_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_title - ADD CONSTRAINT hs_c_content_type_id_1958c85a8a2ac493_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_contributor hs_c_content_type_id_26443469fd65abd2_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_contributor - ADD CONSTRAINT hs_c_content_type_id_26443469fd65abd2_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_coverage hs_c_content_type_id_296a972a9ca195a8_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_coverage - ADD CONSTRAINT hs_c_content_type_id_296a972a9ca195a8_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_language hs_c_content_type_id_2c6549c3389e1640_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_language - ADD CONSTRAINT hs_c_content_type_id_2c6549c3389e1640_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_identifier hs_c_content_type_id_2e3e6f5f1647294b_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_identifier - ADD CONSTRAINT hs_c_content_type_id_2e3e6f5f1647294b_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_publisher hs_c_content_type_id_2ebca0f0d370a961_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_publisher - ADD CONSTRAINT hs_c_content_type_id_2ebca0f0d370a961_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_type hs_c_content_type_id_387c72dac133e70a_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_type - ADD CONSTRAINT hs_c_content_type_id_387c72dac133e70a_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_fundingagency hs_c_content_type_id_393df80b6039f971_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_fundingagency - ADD CONSTRAINT hs_c_content_type_id_393df80b6039f971_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource hs_c_content_type_id_425582f505cae13e_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_c_content_type_id_425582f505cae13e_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_format hs_c_content_type_id_52f2f9c2122dcd99_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_format - ADD CONSTRAINT hs_c_content_type_id_52f2f9c2122dcd99_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_subject hs_c_content_type_id_5a61162ae031c50f_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_subject - ADD CONSTRAINT hs_c_content_type_id_5a61162ae031c50f_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_rights hs_c_content_type_id_6b579f99df9842ef_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_rights - ADD CONSTRAINT hs_c_content_type_id_6b579f99df9842ef_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_resourcefile hs_c_content_type_id_70ad608f2be0cb50_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_resourcefile - ADD CONSTRAINT hs_c_content_type_id_70ad608f2be0cb50_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_creator hs_c_content_type_id_77574a4e7e85b859_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_creator - ADD CONSTRAINT hs_c_content_type_id_77574a4e7e85b859_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_relation hs_c_content_type_id_775b5304ceb81cfe_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_relation - ADD CONSTRAINT hs_c_content_type_id_775b5304ceb81cfe_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_date hs_co_content_type_id_9c7365e54949ce2_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_date - ADD CONSTRAINT hs_co_content_type_id_9c7365e54949ce2_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_collection_resource_collectiondeletedresource hs_collection_re_deleted_by_id_14f506bd7f16121a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource - ADD CONSTRAINT hs_collection_re_deleted_by_id_14f506bd7f16121a_fk_auth_user_id FOREIGN KEY (deleted_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_collection_resource_collectiondeletedresource_resource_od9f5 hs_collection_resource__user_id_e3a8b375cc0cf7a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_collection_resource_collectiondeletedresource_resource_od9f5 - ADD CONSTRAINT hs_collection_resource__user_id_e3a8b375cc0cf7a_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource hs_core_baseresourc_creator_id_306123f66b8ed448_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_core_baseresourc_creator_id_306123f66b8ed448_fk_auth_user_id FOREIGN KEY (creator_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource hs_core_baseresource_user_id_38abc1be206c7b0a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_core_baseresource_user_id_38abc1be206c7b0a_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_citation hs_core_citation_content_type_id_972d87c6_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_citation - ADD CONSTRAINT hs_core_citation_content_type_id_972d87c6_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource hs_core_genericre_page_ptr_id_61d7ef1ac505649e_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_core_genericre_page_ptr_id_61d7ef1ac505649e_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource hs_core_genericresou_last_changed_by_id_f9ce5919_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_core_genericresou_last_changed_by_id_f9ce5919_fk_auth_user FOREIGN KEY (last_changed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_genericresource hs_core_genericresou_quota_holder_id_83c8873b_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_genericresource - ADD CONSTRAINT hs_core_genericresou_quota_holder_id_83c8873b_fk_auth_user FOREIGN KEY (quota_holder_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_geospatialrelation hs_core_geospatialre_content_type_id_fc62c5a5_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_geospatialrelation - ADD CONSTRAINT hs_core_geospatialre_content_type_id_fc62c5a5_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_groupownership hs_core_groupownersh_group_id_73ab445f0d3ce28a_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_groupownership - ADD CONSTRAINT hs_core_groupownersh_group_id_73ab445f0d3ce28a_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_core_groupownership hs_core_groupownershi_owner_id_1c73b09f1651e342_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_core_groupownership - ADD CONSTRAINT hs_core_groupownershi_owner_id_1c73b09f1651e342_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_csvlogicalfile hs_file_types_csvlog_metadata_id_5a258cc1_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_csvlogicalfile - ADD CONSTRAINT hs_file_types_csvlog_metadata_id_5a258cc1_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_csvfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_csvlogicalfile hs_file_types_csvlog_resource_id_6e34890f_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_csvlogicalfile - ADD CONSTRAINT hs_file_types_csvlog_resource_id_6e34890f_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvaggregationstatistic hs_file_types_cvaggr_metadata_id_251a5892_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvaggregationstatistic - ADD CONSTRAINT hs_file_types_cvaggr_metadata_id_251a5892_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvelevationdatum hs_file_types_cvelev_metadata_id_99cb1db8_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvelevationdatum - ADD CONSTRAINT hs_file_types_cvelev_metadata_id_99cb1db8_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvmedium hs_file_types_cvmedi_metadata_id_382a1b6d_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvmedium - ADD CONSTRAINT hs_file_types_cvmedi_metadata_id_382a1b6d_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvmethodtype hs_file_types_cvmeth_metadata_id_244a33f0_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvmethodtype - ADD CONSTRAINT hs_file_types_cvmeth_metadata_id_244a33f0_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvsitetype hs_file_types_cvsite_metadata_id_4f0047b9_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvsitetype - ADD CONSTRAINT hs_file_types_cvsite_metadata_id_4f0047b9_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvspeciation hs_file_types_cvspec_metadata_id_25e79d42_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvspeciation - ADD CONSTRAINT hs_file_types_cvspec_metadata_id_25e79d42_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvstatus hs_file_types_cvstat_metadata_id_13261b95_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvstatus - ADD CONSTRAINT hs_file_types_cvstat_metadata_id_13261b95_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvunitstype hs_file_types_cvunit_metadata_id_8dd379c0_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvunitstype - ADD CONSTRAINT hs_file_types_cvunit_metadata_id_8dd379c0_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvvariablename hs_file_types_cvvari_metadata_id_6390cd41_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvvariablename - ADD CONSTRAINT hs_file_types_cvvari_metadata_id_6390cd41_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cvvariabletype hs_file_types_cvvari_metadata_id_ff268daa_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cvvariabletype - ADD CONSTRAINT hs_file_types_cvvari_metadata_id_ff268daa_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_filesetlogicalfile hs_file_types_filese_metadata_id_7affa8aa_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetlogicalfile - ADD CONSTRAINT hs_file_types_filese_metadata_id_7affa8aa_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_filesetmetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_filesetlogicalfile hs_file_types_filese_resource_id_7032df73_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_filesetlogicalfile - ADD CONSTRAINT hs_file_types_filese_resource_id_7032df73_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_genericlogicalfile hs_file_types_generi_resource_id_b5915dec_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_genericlogicalfile - ADD CONSTRAINT hs_file_types_generi_resource_id_b5915dec_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_geofeaturelogicalfile hs_file_types_geofea_resource_id_05b89011_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geofeaturelogicalfile - ADD CONSTRAINT hs_file_types_geofea_resource_id_05b89011_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_georasterlogicalfile hs_file_types_georas_resource_id_ec57a3c3_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_georasterlogicalfile - ADD CONSTRAINT hs_file_types_georas_resource_id_ec57a3c3_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelinstancefilemetadata hs_file_types_modeli_executed_by_id_4d181869_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancefilemetadata - ADD CONSTRAINT hs_file_types_modeli_executed_by_id_4d181869_fk_hs_file_t FOREIGN KEY (executed_by_id) REFERENCES public.hs_file_types_modelprogramlogicalfile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelinstancelogicalfile hs_file_types_modeli_metadata_id_a4aeb5ca_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancelogicalfile - ADD CONSTRAINT hs_file_types_modeli_metadata_id_a4aeb5ca_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_modelinstancefilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelinstancelogicalfile hs_file_types_modeli_resource_id_7ff2e26d_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelinstancelogicalfile - ADD CONSTRAINT hs_file_types_modeli_resource_id_7ff2e26d_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelprogramlogicalfile hs_file_types_modelp_metadata_id_ee63921b_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramlogicalfile - ADD CONSTRAINT hs_file_types_modelp_metadata_id_ee63921b_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_modelprogramfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelprogramresourcefiletype hs_file_types_modelp_mp_metadata_id_7d558023_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramresourcefiletype - ADD CONSTRAINT hs_file_types_modelp_mp_metadata_id_7d558023_fk_hs_file_t FOREIGN KEY (mp_metadata_id) REFERENCES public.hs_file_types_modelprogramfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelprogramresourcefiletype hs_file_types_modelp_res_file_id_9cd12298_fk_hs_core_r; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramresourcefiletype - ADD CONSTRAINT hs_file_types_modelp_res_file_id_9cd12298_fk_hs_core_r FOREIGN KEY (res_file_id) REFERENCES public.hs_core_resourcefile(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_modelprogramlogicalfile hs_file_types_modelp_resource_id_cfc1a9d6_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_modelprogramlogicalfile - ADD CONSTRAINT hs_file_types_modelp_resource_id_cfc1a9d6_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_netcdflogicalfile hs_file_types_netcdf_resource_id_fa54b4db_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_netcdflogicalfile - ADD CONSTRAINT hs_file_types_netcdf_resource_id_fa54b4db_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_reftimeserieslogicalfile hs_file_types_reftim_resource_id_a9ded1ff_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_reftimeserieslogicalfile - ADD CONSTRAINT hs_file_types_reftim_resource_id_a9ded1ff_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_timeserieslogicalfile hs_file_types_timese_metadata_id_7cb28920_fk_hs_file_t; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeserieslogicalfile - ADD CONSTRAINT hs_file_types_timese_metadata_id_7cb28920_fk_hs_file_t FOREIGN KEY (metadata_id) REFERENCES public.hs_file_types_timeseriesfilemetadata(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_timeserieslogicalfile hs_file_types_timese_resource_id_cc4550ba_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_timeserieslogicalfile - ADD CONSTRAINT hs_file_types_timese_resource_id_cc4550ba_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_cellinformation hs_g_content_type_id_2f01db94cd029b0f_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_cellinformation - ADD CONSTRAINT hs_g_content_type_id_2f01db94cd029b0f_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_fieldinformation hs_g_content_type_id_322c34901bfae5cb_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_fieldinformation - ADD CONSTRAINT hs_g_content_type_id_322c34901bfae5cb_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_originalcoverageraster hs_g_content_type_id_3c68392c27f3db93_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoverageraster - ADD CONSTRAINT hs_g_content_type_id_3c68392c27f3db93_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_geometryinformation hs_g_content_type_id_4dbd862ddd6248f6_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_geometryinformation - ADD CONSTRAINT hs_g_content_type_id_4dbd862ddd6248f6_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_bandinformation hs_g_content_type_id_63f5acc301191318_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_bandinformation - ADD CONSTRAINT hs_g_content_type_id_63f5acc301191318_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_file_types_originalcoveragegeofeature hs_g_content_type_id_66d126c2b3cf7352_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_file_types_originalcoveragegeofeature - ADD CONSTRAINT hs_g_content_type_id_66d126c2b3cf7352_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_userlabels hs_labels_userlabels_user_id_67d4ad8ba6073785_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userlabels - ADD CONSTRAINT hs_labels_userlabels_user_id_67d4ad8ba6073785_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_userresourceflags hs_labels_userresource_user_id_17c2ac15d94c26f8_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourceflags - ADD CONSTRAINT hs_labels_userresource_user_id_17c2ac15d94c26f8_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_userresourcelabels hs_labels_userresourcel_user_id_ca1355f4a3868e3_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userresourcelabels - ADD CONSTRAINT hs_labels_userresourcel_user_id_ca1355f4a3868e3_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_labels_userstoredlabels hs_labels_userstoredla_user_id_534d602d9683725a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_labels_userstoredlabels - ADD CONSTRAINT hs_labels_userstoredla_user_id_534d602d9683725a_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_toolicon hs_t_content_type_id_4054d4b11537b3be_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolicon - ADD CONSTRAINT hs_t_content_type_id_4054d4b11537b3be_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_toolversion hs_t_content_type_id_51e17884abf9eddc_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_toolversion - ADD CONSTRAINT hs_t_content_type_id_51e17884abf9eddc_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_requesturlbase hs_t_content_type_id_62b8f4790407354c_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbase - ADD CONSTRAINT hs_t_content_type_id_62b8f4790407354c_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedrestypes hs_t_content_type_id_767d162d9152deeb_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes - ADD CONSTRAINT hs_t_content_type_id_767d162d9152deeb_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedsharingstatus hs_t_content_type_id_7b1338cffe685cdf_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus - ADD CONSTRAINT hs_t_content_type_id_7b1338cffe685cdf_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_apphomepageurl hs_t_content_type_id_7ded22f42d3aa879_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_apphomepageurl - ADD CONSTRAINT hs_t_content_type_id_7ded22f42d3aa879_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_helppageurl hs_tools_resource_he_content_type_id_fd68ab0a_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_helppageurl - ADD CONSTRAINT hs_tools_resource_he_content_type_id_fd68ab0a_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_issuespageurl hs_tools_resource_is_content_type_id_79144377_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_issuespageurl - ADD CONSTRAINT hs_tools_resource_is_content_type_id_79144377_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_mailinglisturl hs_tools_resource_ma_content_type_id_4ba8ca5a_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_mailinglisturl - ADD CONSTRAINT hs_tools_resource_ma_content_type_id_4ba8ca5a_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_requesturlbaseaggregation hs_tools_resource_re_content_type_id_774b809e_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbaseaggregation - ADD CONSTRAINT hs_tools_resource_re_content_type_id_774b809e_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_requesturlbasefile hs_tools_resource_re_content_type_id_8ee7ab04_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_requesturlbasefile - ADD CONSTRAINT hs_tools_resource_re_content_type_id_8ee7ab04_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_roadmap hs_tools_resource_ro_content_type_id_2b28b9e3_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_roadmap - ADD CONSTRAINT hs_tools_resource_ro_content_type_id_2b28b9e3_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_showonopenwithlist hs_tools_resource_sh_content_type_id_46647bfc_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_showonopenwithlist - ADD CONSTRAINT hs_tools_resource_sh_content_type_id_46647bfc_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_sourcecodeurl hs_tools_resource_so_content_type_id_e38d6841_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_sourcecodeurl - ADD CONSTRAINT hs_tools_resource_so_content_type_id_e38d6841_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedaggtypes hs_tools_resource_su_content_type_id_4d8a44dd_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes - ADD CONSTRAINT hs_tools_resource_su_content_type_id_4d8a44dd_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedfileextensions hs_tools_resource_su_content_type_id_ec21b8f5_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedfileextensions - ADD CONSTRAINT hs_tools_resource_su_content_type_id_ec21b8f5_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types hs_tools_resource_su_supportedaggtypechoi_a4b8b2e0_fk_hs_tools_; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes_supported_agg_types - ADD CONSTRAINT hs_tools_resource_su_supportedaggtypechoi_a4b8b2e0_fk_hs_tools_ FOREIGN KEY (supportedaggtypechoices_id) REFERENCES public.hs_tools_resource_supportedaggtypechoices(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedaggtypes_supported_agg_types hs_tools_resource_su_supportedaggtypes_id_763fc392_fk_hs_tools_; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedaggtypes_supported_agg_types - ADD CONSTRAINT hs_tools_resource_su_supportedaggtypes_id_763fc392_fk_hs_tools_ FOREIGN KEY (supportedaggtypes_id) REFERENCES public.hs_tools_resource_supportedaggtypes(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types hs_tools_resource_su_supportedrestypechoi_ecec13a3_fk_hs_tools_; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes_supported_res_types - ADD CONSTRAINT hs_tools_resource_su_supportedrestypechoi_ecec13a3_fk_hs_tools_ FOREIGN KEY (supportedrestypechoices_id) REFERENCES public.hs_tools_resource_supportedrestypechoices(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedrestypes_supported_res_types hs_tools_resource_su_supportedrestypes_id_322fa62c_fk_hs_tools_; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedrestypes_supported_res_types - ADD CONSTRAINT hs_tools_resource_su_supportedrestypes_id_322fa62c_fk_hs_tools_ FOREIGN KEY (supportedrestypes_id) REFERENCES public.hs_tools_resource_supportedrestypes(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status hs_tools_resource_su_supportedsharingstat_349cb667_fk_hs_tools_; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus_sharing_status - ADD CONSTRAINT hs_tools_resource_su_supportedsharingstat_349cb667_fk_hs_tools_ FOREIGN KEY (supportedsharingstatus_id) REFERENCES public.hs_tools_resource_supportedsharingstatus(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_supportedsharingstatus_sharing_status hs_tools_resource_su_supportedsharingstat_4e4477a3_fk_hs_tools_; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_supportedsharingstatus_sharing_status - ADD CONSTRAINT hs_tools_resource_su_supportedsharingstat_4e4477a3_fk_hs_tools_ FOREIGN KEY (supportedsharingstatuschoices_id) REFERENCES public.hs_tools_resource_supportedsharingstatuschoices(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tools_resource_testingprotocolurl hs_tools_resource_te_content_type_id_65c76ca0_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tools_resource_testingprotocolurl - ADD CONSTRAINT hs_tools_resource_te_content_type_id_65c76ca0_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tracking_session hs_tracking_session_visitor_id_53849c82_fk_hs_tracki; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_session - ADD CONSTRAINT hs_tracking_session_visitor_id_53849c82_fk_hs_tracki FOREIGN KEY (visitor_id) REFERENCES public.hs_tracking_visitor(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tracking_variable hs_tracking_variable_resource_id_1e36eb64_fk_hs_core_g; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_variable - ADD CONSTRAINT hs_tracking_variable_resource_id_1e36eb64_fk_hs_core_g FOREIGN KEY (resource_id) REFERENCES public.hs_core_genericresource(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tracking_variable hs_tracking_variable_session_id_3c66f572_fk_hs_tracki; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_variable - ADD CONSTRAINT hs_tracking_variable_session_id_3c66f572_fk_hs_tracki FOREIGN KEY (session_id) REFERENCES public.hs_tracking_session(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: hs_tracking_visitor hs_tracking_visitor_user_id_faa35031_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.hs_tracking_visitor - ADD CONSTRAINT hs_tracking_visitor_user_id_faa35031_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_acce_id_token_id_85db651b_fk_oauth2_pr; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_acce_id_token_id_85db651b_fk_oauth2_pr FOREIGN KEY (id_token_id) REFERENCES public.oauth2_provider_idtoken(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_acce_source_refresh_token_e66fbc72_fk_oauth2_pr; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_acce_source_refresh_token_e66fbc72_fk_oauth2_pr FOREIGN KEY (source_refresh_token_id) REFERENCES public.oauth2_provider_refreshtoken(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_accesstoken_application_id_b22886e1_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_accesstoken_application_id_b22886e1_fk FOREIGN KEY (application_id) REFERENCES public.oauth2_provider_application(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_accesstoken oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_accesstoken - ADD CONSTRAINT oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_application oauth2_provider_application_user_id_79829054_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_application - ADD CONSTRAINT oauth2_provider_application_user_id_79829054_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_grant oauth2_provider_grant_application_id_81923564_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_grant - ADD CONSTRAINT oauth2_provider_grant_application_id_81923564_fk FOREIGN KEY (application_id) REFERENCES public.oauth2_provider_application(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_grant oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_grant - ADD CONSTRAINT oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_idtoken oauth2_provider_idto_application_id_08c5ff4f_fk_oauth2_pr; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_idtoken - ADD CONSTRAINT oauth2_provider_idto_application_id_08c5ff4f_fk_oauth2_pr FOREIGN KEY (application_id) REFERENCES public.oauth2_provider_application(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_idtoken oauth2_provider_idtoken_user_id_dd512b59_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_idtoken - ADD CONSTRAINT oauth2_provider_idtoken_user_id_dd512b59_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_refreshtoken oauth2_provider_refr_access_token_id_775e84e8_fk_oauth2_pr; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_refreshtoken - ADD CONSTRAINT oauth2_provider_refr_access_token_id_775e84e8_fk_oauth2_pr FOREIGN KEY (access_token_id) REFERENCES public.oauth2_provider_accesstoken(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_refreshtoken oauth2_provider_refreshtoken_application_id_2d1c311b_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_refreshtoken - ADD CONSTRAINT oauth2_provider_refreshtoken_application_id_2d1c311b_fk FOREIGN KEY (application_id) REFERENCES public.oauth2_provider_application(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: oauth2_provider_refreshtoken oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.oauth2_provider_refreshtoken - ADD CONSTRAINT oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: forms_form page_ptr_id_refs_id_fe19b67b; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.forms_form - ADD CONSTRAINT page_ptr_id_refs_id_fe19b67b FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: pages_link pages_link_page_ptr_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_link - ADD CONSTRAINT pages_link_page_ptr_id_fkey FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: pages_page pages_page_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_page - ADD CONSTRAINT pages_page_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: pages_richtextpage pages_richtextpage_page_ptr_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.pages_richtextpage - ADD CONSTRAINT pages_richtextpage_page_ptr_id_fkey FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: robots_rule_allowed robots_rule_allowed_rule_id_aa90358c_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_allowed - ADD CONSTRAINT robots_rule_allowed_rule_id_aa90358c_fk FOREIGN KEY (rule_id) REFERENCES public.robots_rule(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: robots_rule_allowed robots_rule_allowed_url_id_6157f60a_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_allowed - ADD CONSTRAINT robots_rule_allowed_url_id_6157f60a_fk FOREIGN KEY (url_id) REFERENCES public.robots_url(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: robots_rule_disallowed robots_rule_disallowed_rule_id_fad7328c_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_disallowed - ADD CONSTRAINT robots_rule_disallowed_rule_id_fad7328c_fk FOREIGN KEY (rule_id) REFERENCES public.robots_rule(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: robots_rule_disallowed robots_rule_disallowed_url_id_8e02db92_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_disallowed - ADD CONSTRAINT robots_rule_disallowed_url_id_8e02db92_fk FOREIGN KEY (url_id) REFERENCES public.robots_url(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: robots_rule_sites robots_rule_sites_rule_id_7921a799_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_sites - ADD CONSTRAINT robots_rule_sites_rule_id_7921a799_fk FOREIGN KEY (rule_id) REFERENCES public.robots_rule(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: robots_rule_sites robots_rule_sites_site_id_3274a4d8ebfc398f_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.robots_rule_sites - ADD CONSTRAINT robots_rule_sites_site_id_3274a4d8ebfc398f_fk_django_site_id FOREIGN KEY (site_id) REFERENCES public.django_site(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: security_passwordexpiry security_passwordexpiry_user_id_366560db_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.security_passwordexpiry - ADD CONSTRAINT security_passwordexpiry_user_id_366560db_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: core_sitepermission_sites sitepermission_id_refs_id_7dccdcbd; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.core_sitepermission_sites - ADD CONSTRAINT sitepermission_id_refs_id_7dccdcbd FOREIGN KEY (sitepermission_id) REFERENCES public.core_sitepermission(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_iconbox theme_homepage_id_7a358283d1fd2d7_fk_theme_homepage_page_ptr_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_iconbox - ADD CONSTRAINT theme_homepage_id_7a358283d1fd2d7_fk_theme_homepage_page_ptr_id FOREIGN KEY (homepage_id) REFERENCES public.theme_homepage(page_ptr_id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_homepage theme_homepage_page_ptr_id_10fe08bd3bddde20_fk_pages_page_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_homepage - ADD CONSTRAINT theme_homepage_page_ptr_id_10fe08bd3bddde20_fk_pages_page_id FOREIGN KEY (page_ptr_id) REFERENCES public.pages_page(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_quotarequest theme_quotarequest_quota_id_b3e948d9_fk_theme_userquota_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_quotarequest - ADD CONSTRAINT theme_quotarequest_quota_id_b3e948d9_fk_theme_userquota_id FOREIGN KEY (quota_id) REFERENCES public.theme_userquota(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_quotarequest theme_quotarequest_request_from_id_020f329b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_quotarequest - ADD CONSTRAINT theme_quotarequest_request_from_id_020f329b_fk_auth_user_id FOREIGN KEY (request_from_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_siteconfiguration theme_siteconfigurat_site_id_71aa83f18a4be0eb_fk_django_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_siteconfiguration - ADD CONSTRAINT theme_siteconfigurat_site_id_71aa83f18a4be0eb_fk_django_site_id FOREIGN KEY (site_id) REFERENCES public.django_site(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_userprofile theme_userprofile_user_id_4e02d2b427b5e510_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userprofile - ADD CONSTRAINT theme_userprofile_user_id_4e02d2b427b5e510_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: theme_userquota theme_userquota_user_id_4ef704d14e5a5ddd_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.theme_userquota - ADD CONSTRAINT theme_userquota_user_id_4ef704d14e5a5ddd_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: blog_blogpost_related_posts to_blogpost_id_refs_id_6404941b; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.blog_blogpost_related_posts - ADD CONSTRAINT to_blogpost_id_refs_id_6404941b FOREIGN KEY (to_blogpost_id) REFERENCES public.blog_blogpost(id) DEFERRABLE INITIALLY DEFERRED; - - --- --- Name: SCHEMA public; Type: ACL; Schema: -; Owner: pg_database_owner --- - -REVOKE USAGE ON SCHEMA public FROM PUBLIC; -GRANT ALL ON SCHEMA public TO postgres; -GRANT ALL ON SCHEMA public TO PUBLIC; - - --- --- PostgreSQL database dump complete --- - diff --git a/tests/json_payloads/access_control_changed/from_discoverable/to_private.json b/tests/json_payloads/access_control_changed/from_discoverable/to_private.json deleted file mode 100644 index ff75111..0000000 --- a/tests/json_payloads/access_control_changed/from_discoverable/to_private.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "5670903e39d54026a729abd4cc148f99", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "false", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json b/tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json deleted file mode 100644 index 6577f85..0000000 --- a/tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "5670903e39d54026a729abd4cc148f99", - "public": "false", - "allow_private_sharing": "true", - "discoverable": "false", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_discoverable/to_public.json b/tests/json_payloads/access_control_changed/from_discoverable/to_public.json deleted file mode 100644 index 5793c7b..0000000 --- a/tests/json_payloads/access_control_changed/from_discoverable/to_public.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "5670903e39d54026a729abd4cc148f99", - "public": "true", - "allow_private_sharing": "false", - "discoverable": "true", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_private/to_discoverable.json b/tests/json_payloads/access_control_changed/from_private/to_discoverable.json deleted file mode 100644 index 1fca78e..0000000 --- a/tests/json_payloads/access_control_changed/from_private/to_discoverable.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "f211b93642f84c55a0bdd1b12880e32e", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "true", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_private/to_private_sharing.json b/tests/json_payloads/access_control_changed/from_private/to_private_sharing.json deleted file mode 100644 index b285063..0000000 --- a/tests/json_payloads/access_control_changed/from_private/to_private_sharing.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "f211b93642f84c55a0bdd1b12880e32e", - "public": "false", - "allow_private_sharing": "true", - "discoverable": "false", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_private/to_public.json b/tests/json_payloads/access_control_changed/from_private/to_public.json deleted file mode 100644 index ddb1147..0000000 --- a/tests/json_payloads/access_control_changed/from_private/to_public.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "f211b93642f84c55a0bdd1b12880e32e", - "public": "true", - "allow_private_sharing": "false", - "discoverable": "true", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json b/tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json deleted file mode 100644 index f971851..0000000 --- a/tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "d5c432ae01eb4f03a73d589e54d341b3", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "true", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_private_link/to_private.json b/tests/json_payloads/access_control_changed/from_private_link/to_private.json deleted file mode 100644 index 5efafe1..0000000 --- a/tests/json_payloads/access_control_changed/from_private_link/to_private.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "d5c432ae01eb4f03a73d589e54d341b3", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "false", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_private_link/to_public.json b/tests/json_payloads/access_control_changed/from_private_link/to_public.json deleted file mode 100644 index 97f1c98..0000000 --- a/tests/json_payloads/access_control_changed/from_private_link/to_public.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "d5c432ae01eb4f03a73d589e54d341b3", - "public": "true", - "allow_private_sharing": "false", - "discoverable": "true", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_public/to_discoverable.json b/tests/json_payloads/access_control_changed/from_public/to_discoverable.json deleted file mode 100644 index d484db5..0000000 --- a/tests/json_payloads/access_control_changed/from_public/to_discoverable.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "a2c0df5bf3eb4d8c8a34beaffe169f91", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "true", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_public/to_private.json b/tests/json_payloads/access_control_changed/from_public/to_private.json deleted file mode 100644 index 5d17de8..0000000 --- a/tests/json_payloads/access_control_changed/from_public/to_private.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "a2c0df5bf3eb4d8c8a34beaffe169f91", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "false", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/from_public/to_private_sharing.json b/tests/json_payloads/access_control_changed/from_public/to_private_sharing.json deleted file mode 100644 index c9dedc7..0000000 --- a/tests/json_payloads/access_control_changed/from_public/to_private_sharing.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "resources": [ - { - "id": "a2c0df5bf3eb4d8c8a34beaffe169f91", - "public": "false", - "allow_private_sharing": "true", - "discoverable": "false", - "user_access": [], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/user_access/to_edit.json b/tests/json_payloads/access_control_changed/user_access/to_edit.json deleted file mode 100644 index 5dba1d9..0000000 --- a/tests/json_payloads/access_control_changed/user_access/to_edit.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "resources": [ - { - "id": "f211b93642f84c55a0bdd1b12880e32e", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "false", - "user_access": [{ - "id": "19", - "access": "EDIT" - }], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/access_control_changed/user_access/to_view.json b/tests/json_payloads/access_control_changed/user_access/to_view.json deleted file mode 100644 index d6d090d..0000000 --- a/tests/json_payloads/access_control_changed/user_access/to_view.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "resources": [ - { - "id": "f211b93642f84c55a0bdd1b12880e32e", - "public": "false", - "allow_private_sharing": "false", - "discoverable": "false", - "user_access": [{ - "id": "19", - "access": "VIEW" - }], - "bucket_name": "user1" - } - ] -} \ No newline at end of file diff --git a/tests/json_payloads/edit_authorization/user1_delete_object.json b/tests/json_payloads/edit_authorization/user1_delete_object.json deleted file mode 100644 index f42589f..0000000 --- a/tests/json_payloads/edit_authorization/user1_delete_object.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [ - "127" - ], - "Accept-Encoding": [ - "zstd,gzip" - ], - "Content-Md5": [ - "lGb4Oy7z9x0HmLsOl+LiCA==" - ], - "CurrentTime": [ - "2025-06-11T15:11:54Z" - ], - "EpochTime": [ - "1749654714" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "f0a8d713bf35cf5a1ff55e11e2a7736d5ddbd58264abac2e7ff46cab9572be91" - ], - "X-Amz-Date": [ - "20250611T151154Z" - ], - "authType": [ - "REST-HEADER" - ], - "delete": [ - "" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:DeleteObject", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/nintendo.tar.gz", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } - } \ No newline at end of file diff --git a/tests/json_payloads/edit_authorization/user1_delete_objects.json b/tests/json_payloads/edit_authorization/user1_delete_objects.json deleted file mode 100644 index b69357f..0000000 --- a/tests/json_payloads/edit_authorization/user1_delete_objects.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [ - "127" - ], - "Accept-Encoding": [ - "zstd,gzip" - ], - "Content-Md5": [ - "lGb4Oy7z9x0HmLsOl+LiCA==" - ], - "CurrentTime": [ - "2025-06-11T15:11:54Z" - ], - "EpochTime": [ - "1749654714" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "f0a8d713bf35cf5a1ff55e11e2a7736d5ddbd58264abac2e7ff46cab9572be91" - ], - "X-Amz-Date": [ - "20250611T151154Z" - ], - "authType": [ - "REST-HEADER" - ], - "delete": [ - "" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:DeleteObjects", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/nintendo.tar.gz", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } - } \ No newline at end of file diff --git a/tests/json_payloads/edit_authorization/user1_put_object.json b/tests/json_payloads/edit_authorization/user1_put_object.json deleted file mode 100644 index 3b5efa7..0000000 --- a/tests/json_payloads/edit_authorization/user1_put_object.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [ - "13488670" - ], - "Accept-Encoding": [ - "zstd,gzip" - ], - "Content-Type": [ - "application/pdf" - ], - "CurrentTime": [ - "2025-06-11T15:02:12Z" - ], - "EpochTime": [ - "1749654132" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "STREAMING-AWS4-HMAC-SHA256-PAYLOAD" - ], - "X-Amz-Date": [ - "20250611T150212Z" - ], - "X-Amz-Decoded-Content-Length": [ - "13470045" - ], - "authType": [ - "REST-HEADER" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:PutObject", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/nintendo-magazine-holiday2025.pdf", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } - } \ No newline at end of file diff --git a/tests/json_payloads/edit_authorization/user1_put_object_legal_hold.json b/tests/json_payloads/edit_authorization/user1_put_object_legal_hold.json deleted file mode 100644 index 8e69876..0000000 --- a/tests/json_payloads/edit_authorization/user1_put_object_legal_hold.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [ - "13488670" - ], - "Accept-Encoding": [ - "zstd,gzip" - ], - "Content-Type": [ - "application/pdf" - ], - "CurrentTime": [ - "2025-06-11T15:02:12Z" - ], - "EpochTime": [ - "1749654132" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "STREAMING-AWS4-HMAC-SHA256-PAYLOAD" - ], - "X-Amz-Date": [ - "20250611T150212Z" - ], - "X-Amz-Decoded-Content-Length": [ - "13470045" - ], - "authType": [ - "REST-HEADER" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:PutObjectLegalHold", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/nintendo-magazine-holiday2025.pdf", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } - } \ No newline at end of file diff --git a/tests/json_payloads/edit_authorization/user1_upload_part.json b/tests/json_payloads/edit_authorization/user1_upload_part.json deleted file mode 100644 index c87afe3..0000000 --- a/tests/json_payloads/edit_authorization/user1_upload_part.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [ - "13488670" - ], - "Accept-Encoding": [ - "zstd,gzip" - ], - "Content-Type": [ - "application/pdf" - ], - "CurrentTime": [ - "2025-06-11T15:02:12Z" - ], - "EpochTime": [ - "1749654132" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "STREAMING-AWS4-HMAC-SHA256-PAYLOAD" - ], - "X-Amz-Date": [ - "20250611T150212Z" - ], - "X-Amz-Decoded-Content-Length": [ - "13470045" - ], - "authType": [ - "REST-HEADER" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:UploadPart", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/nintendo-magazine-holiday2025.pdf", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } - } \ No newline at end of file diff --git a/tests/json_payloads/minio_admin_request.json b/tests/json_payloads/minio_admin_request.json deleted file mode 100644 index a7af2a5..0000000 --- a/tests/json_payloads/minio_admin_request.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "minioadmin" - ], - "Prefix": [], - "prefix": [], - "content_length": [ - "169" - ], - "Accept-Encoding": [ - "zstd,gzip" - ], - "Authorization": [ - "AWS4-HMAC-SHA256 Credential=minioadmin/20250611//s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=2eebeaf678b39a78ce39625f2ed8361f79b1a10bb24392b31fd8ee3b05d9b60c" - ], - "CurrentTime": [ - "2025-06-11T02:14:23Z" - ], - "EpochTime": [ - "1749608063" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "172.18.0.10" - ], - "User-Agent": [ - "MinIO (linux; amd64) madmin-go/3.0.70 mc/RELEASE.2025-05-21T01-59-54Z" - ], - "UserAgent": [ - "MinIO (linux; amd64) madmin-go/3.0.70 mc/RELEASE.2025-05-21T01-59-54Z" - ], - "X-Amz-Content-Sha256": [ - "bae9bcbc5cdfb4dfb38f449b532dedd17e1cf87e0347b0287d9ad4e6816d208d" - ], - "X-Amz-Date": [ - "20250611T021423Z" - ], - "authType": [ - "REST-HEADER" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "minioadmin" - ], - "versionid": [ - "" - ] - }, - "action": "admin:CreateServiceAccount", - "bucket": "", - "object": "", - "account": "minioadmin", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/json_payloads/view_authorization/user1_get_object.json b/tests/json_payloads/view_authorization/user1_get_object.json deleted file mode 100644 index 27662bf..0000000 --- a/tests/json_payloads/view_authorization/user1_get_object.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [], - "AWSAccessKeyId": [ - "110NZ7BTUKIODZ6G327E" - ], - "Accept": [ - "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" - ], - "Accept-Encoding": [ - "gzip, deflate, br, zstd" - ], - "Accept-Language": [ - "en-US,en;q=0.5" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "keep-alive" - ], - "Cookie": [ - "csrftoken=z7ebpbXCQh8YcIEIeVWyBYnF0f6urRky; _hp2_id.1320547260=%7B%22userId%22%3A%222187379029585657%22%2C%22pageviewId%22%3A%222900534741682822%22%2C%22sessionId%22%3A%226475946284285431%22%2C%22identity%22%3Anull%2C%22trackerVersion%22%3A%224.0%22%7D; djdtProfilingPanel=on; sessionid=imimk29htsdqfsw99mdrao1kjmgbdjs0" - ], - "CurrentTime": [ - "2025-06-10T23:35:06Z" - ], - "EpochTime": [ - "1749598506" - ], - "Expires": [ - "1749602106" - ], - "Pragma": [ - "no-cache" - ], - "Priority": [ - "u=4" - ], - "Referer": [ - "http://localhost:8000/", - "http://localhost:8000/" - ], - "Sec-Fetch-Dest": [ - "iframe" - ], - "Sec-Fetch-Mode": [ - "navigate" - ], - "Sec-Fetch-Site": [ - "cross-site" - ], - "SecureTransport": [ - "false" - ], - "Signature": [ - "mYhcr8n0FwosaH1eu/i4aFQqDzE=" - ], - "SourceIp": [ - "192.168.65.1" - ], - "Upgrade-Insecure-Requests": [ - "1" - ], - "User-Agent": [ - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0" - ], - "UserAgent": [ - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0" - ], - "accesskey": [ - "110NZ7BTUKIODZ6G327E" - ], - "authType": [ - "REST-QUERY-STRING" - ], - "parent": [ - "user1" - ], - "principaltype": [ - "AssumedRole" - ], - "response-content-disposition": [ - "attachment; filename=\"Screenshot_2025-06-03_at_9.26.17AM.png\"" - ], - "sa-policy": [ - "inherited-policy" - ], - "signatureversion": [ - "AWS" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:GetObject", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/Screenshot_2025-06-03_at_9.26.17AM.png", - "account": "110NZ7BTUKIODZ6G327E", - "groups": null, - "originalAction": "", - "owner": false, - "claims": { - "accessKey": "110NZ7BTUKIODZ6G327E", - "parent": "user1", - "sa-policy": "inherited-policy" - }, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/json_payloads/view_authorization/user1_get_object_legal_hold.json b/tests/json_payloads/view_authorization/user1_get_object_legal_hold.json deleted file mode 100644 index f8d9fbd..0000000 --- a/tests/json_payloads/view_authorization/user1_get_object_legal_hold.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [], - "AWSAccessKeyId": [ - "110NZ7BTUKIODZ6G327E" - ], - "Accept": [ - "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" - ], - "Accept-Encoding": [ - "gzip, deflate, br, zstd" - ], - "Accept-Language": [ - "en-US,en;q=0.5" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "keep-alive" - ], - "Cookie": [ - "csrftoken=z7ebpbXCQh8YcIEIeVWyBYnF0f6urRky; _hp2_id.1320547260=%7B%22userId%22%3A%222187379029585657%22%2C%22pageviewId%22%3A%222900534741682822%22%2C%22sessionId%22%3A%226475946284285431%22%2C%22identity%22%3Anull%2C%22trackerVersion%22%3A%224.0%22%7D; djdtProfilingPanel=on; sessionid=imimk29htsdqfsw99mdrao1kjmgbdjs0" - ], - "CurrentTime": [ - "2025-06-10T23:35:06Z" - ], - "EpochTime": [ - "1749598506" - ], - "Expires": [ - "1749602106" - ], - "Pragma": [ - "no-cache" - ], - "Priority": [ - "u=4" - ], - "Referer": [ - "http://localhost:8000/", - "http://localhost:8000/" - ], - "Sec-Fetch-Dest": [ - "iframe" - ], - "Sec-Fetch-Mode": [ - "navigate" - ], - "Sec-Fetch-Site": [ - "cross-site" - ], - "SecureTransport": [ - "false" - ], - "Signature": [ - "mYhcr8n0FwosaH1eu/i4aFQqDzE=" - ], - "SourceIp": [ - "192.168.65.1" - ], - "Upgrade-Insecure-Requests": [ - "1" - ], - "User-Agent": [ - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0" - ], - "UserAgent": [ - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0" - ], - "accesskey": [ - "110NZ7BTUKIODZ6G327E" - ], - "authType": [ - "REST-QUERY-STRING" - ], - "parent": [ - "user1" - ], - "principaltype": [ - "AssumedRole" - ], - "response-content-disposition": [ - "attachment; filename=\"Screenshot_2025-06-03_at_9.26.17AM.png\"" - ], - "sa-policy": [ - "inherited-policy" - ], - "signatureversion": [ - "AWS" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:GetObjectLegalHold", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/Screenshot_2025-06-03_at_9.26.17AM.png", - "account": "110NZ7BTUKIODZ6G327E", - "groups": null, - "originalAction": "", - "owner": false, - "claims": { - "accessKey": "110NZ7BTUKIODZ6G327E", - "parent": "user1", - "sa-policy": "inherited-policy" - }, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/json_payloads/view_authorization/user1_get_object_retention.json b/tests/json_payloads/view_authorization/user1_get_object_retention.json deleted file mode 100644 index a432d2f..0000000 --- a/tests/json_payloads/view_authorization/user1_get_object_retention.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [], - "content_length": [], - "AWSAccessKeyId": [ - "110NZ7BTUKIODZ6G327E" - ], - "Accept": [ - "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" - ], - "Accept-Encoding": [ - "gzip, deflate, br, zstd" - ], - "Accept-Language": [ - "en-US,en;q=0.5" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "keep-alive" - ], - "Cookie": [ - "csrftoken=z7ebpbXCQh8YcIEIeVWyBYnF0f6urRky; _hp2_id.1320547260=%7B%22userId%22%3A%222187379029585657%22%2C%22pageviewId%22%3A%222900534741682822%22%2C%22sessionId%22%3A%226475946284285431%22%2C%22identity%22%3Anull%2C%22trackerVersion%22%3A%224.0%22%7D; djdtProfilingPanel=on; sessionid=imimk29htsdqfsw99mdrao1kjmgbdjs0" - ], - "CurrentTime": [ - "2025-06-10T23:35:06Z" - ], - "EpochTime": [ - "1749598506" - ], - "Expires": [ - "1749602106" - ], - "Pragma": [ - "no-cache" - ], - "Priority": [ - "u=4" - ], - "Referer": [ - "http://localhost:8000/", - "http://localhost:8000/" - ], - "Sec-Fetch-Dest": [ - "iframe" - ], - "Sec-Fetch-Mode": [ - "navigate" - ], - "Sec-Fetch-Site": [ - "cross-site" - ], - "SecureTransport": [ - "false" - ], - "Signature": [ - "mYhcr8n0FwosaH1eu/i4aFQqDzE=" - ], - "SourceIp": [ - "192.168.65.1" - ], - "Upgrade-Insecure-Requests": [ - "1" - ], - "User-Agent": [ - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0" - ], - "UserAgent": [ - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0" - ], - "accesskey": [ - "110NZ7BTUKIODZ6G327E" - ], - "authType": [ - "REST-QUERY-STRING" - ], - "parent": [ - "user1" - ], - "principaltype": [ - "AssumedRole" - ], - "response-content-disposition": [ - "attachment; filename=\"Screenshot_2025-06-03_at_9.26.17AM.png\"" - ], - "sa-policy": [ - "inherited-policy" - ], - "signatureversion": [ - "AWS" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:GetObjectRetention", - "bucket": "user1", - "object": "f211b93642f84c55a0bdd1b12880e32e/data/contents/Screenshot_2025-06-03_at_9.26.17AM.png", - "account": "110NZ7BTUKIODZ6G327E", - "groups": null, - "originalAction": "", - "owner": false, - "claims": { - "accessKey": "110NZ7BTUKIODZ6G327E", - "parent": "user1", - "sa-policy": "inherited-policy" - }, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/json_payloads/view_authorization/user1_list_bucket.json b/tests/json_payloads/view_authorization/user1_list_bucket.json deleted file mode 100644 index 140d2e0..0000000 --- a/tests/json_payloads/view_authorization/user1_list_bucket.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [ - "f211b93642f84c55a0bdd1b12880e32e/" - ], - "content_length": [], - "Accept-Encoding": [ - "zstd,gzip" - ], - "CurrentTime": [ - "2025-06-11T03:21:33Z" - ], - "EpochTime": [ - "1749612093" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" - ], - "X-Amz-Date": [ - "20250611T032133Z" - ], - "authType": [ - "REST-HEADER" - ], - "delimiter": [ - "/" - ], - "encoding-type": [ - "url" - ], - "fetch-owner": [ - "true" - ], - "list-type": [ - "2" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:ListBucket", - "bucket": "user1", - "object": "", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/json_payloads/view_authorization/user1_list_objects.json b/tests/json_payloads/view_authorization/user1_list_objects.json deleted file mode 100644 index cba2159..0000000 --- a/tests/json_payloads/view_authorization/user1_list_objects.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [ - "f211b93642f84c55a0bdd1b12880e32e/" - ], - "content_length": [], - "Accept-Encoding": [ - "zstd,gzip" - ], - "CurrentTime": [ - "2025-06-11T03:21:33Z" - ], - "EpochTime": [ - "1749612093" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" - ], - "X-Amz-Date": [ - "20250611T032133Z" - ], - "authType": [ - "REST-HEADER" - ], - "delimiter": [ - "/" - ], - "encoding-type": [ - "url" - ], - "fetch-owner": [ - "true" - ], - "list-type": [ - "2" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:ListObjects", - "bucket": "user1", - "object": "", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/json_payloads/view_authorization/user1_list_objects_v2.json b/tests/json_payloads/view_authorization/user1_list_objects_v2.json deleted file mode 100644 index 67b6fe0..0000000 --- a/tests/json_payloads/view_authorization/user1_list_objects_v2.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "input": { - "conditions": { - "preferred_username": [], - "username": [ - "user1" - ], - "Prefix": [], - "prefix": [ - "f211b93642f84c55a0bdd1b12880e32e/" - ], - "content_length": [], - "Accept-Encoding": [ - "zstd,gzip" - ], - "CurrentTime": [ - "2025-06-11T03:21:33Z" - ], - "EpochTime": [ - "1749612093" - ], - "Referer": [ - "" - ], - "SecureTransport": [ - "false" - ], - "SourceIp": [ - "192.168.65.1" - ], - "User-Agent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "UserAgent": [ - "MinIO (darwin; arm64) minio-go/v7.0.88 mc/RELEASE.2025-03-12T17-29-24Z" - ], - "X-Amz-Content-Sha256": [ - "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" - ], - "X-Amz-Date": [ - "20250611T032133Z" - ], - "authType": [ - "REST-HEADER" - ], - "delimiter": [ - "/" - ], - "encoding-type": [ - "url" - ], - "fetch-owner": [ - "true" - ], - "list-type": [ - "2" - ], - "principaltype": [ - "Account" - ], - "signatureversion": [ - "AWS4-HMAC-SHA256" - ], - "userid": [ - "user1" - ], - "versionid": [ - "" - ] - }, - "action": "s3:ListObjectsV2", - "bucket": "user1", - "object": "", - "account": "user1", - "groups": null, - "originalAction": "", - "owner": true, - "claims": {}, - "denyOnly": false - } -} \ No newline at end of file diff --git a/tests/test_access_control_changed_from_discoverable.py b/tests/test_access_control_changed_from_discoverable.py deleted file mode 100644 index a4e3693..0000000 --- a/tests/test_access_control_changed_from_discoverable.py +++ /dev/null @@ -1,210 +0,0 @@ -import pytest -from fastapi.testclient import TestClient -from redis import Redis - -from api.routers.access_control_changed import router as access_control_changed_router -from tests.test_minio_authorization_webhook import ( - check_discoverable_edit_authorization, - check_discoverable_view_authorization, - check_discoverable_view_get_authorization, - check_private_edit_authorization, - check_private_link_edit_authorization, - check_private_link_view_authorization, - check_private_view_authorization, - check_public_edit_authorization, - check_public_view_authorization, -) - -client = TestClient(access_control_changed_router) - - -@pytest.fixture(autouse=True) -def clear_redis_cache(): - redis_client = Redis(host='redis', port=6379, db=0) - redis_client.flushdb() - - -@pytest.mark.parametrize("action_json", ["user1_get_object_legal_hold.json", "user1_get_object_retention.json"]) -def test_discoverable_get_to_public_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_get_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_discoverable/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public view authorization - check_public_view_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize( - "action_json", ["user1_list_bucket.json", "user1_list_objects.json", "user1_list_objects_v2.json"] -) -def test_discoverable_view_to_public_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_discoverable/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public view authorization - check_public_view_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_discoverable_to_public_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_edit_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_discoverable/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public edit authorization - check_public_edit_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize("action_json", ["user1_get_object_legal_hold.json", "user1_get_object_retention.json"]) -def test_discoverable_get_to_private_sharing_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_get_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_view_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize( - "action_json", ["user1_list_bucket.json", "user1_list_objects.json", "user1_list_objects_v2.json"] -) -def test_discoverable_view_to_private_sharing_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_view_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_discoverable_to_private_sharing_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_edit_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_discoverable/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link edit authorization - check_private_link_edit_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize( - "action_json", ["user1_list_bucket.json", "user1_list_objects.json", "user1_list_objects_v2.json"] -) -def test_discoverable_to_private_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_authorization(request_body) - - # update resource to private - with open("tests/json_payloads/access_control_changed/from_discoverable/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private view authorization - check_private_view_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize("action_json", ["user1_get_object_legal_hold.json", "user1_get_object_retention.json"]) -def test_discoverable_to_private_get(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_get_authorization(request_body) - - # update resource to private - with open("tests/json_payloads/access_control_changed/from_discoverable/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private view authorization - check_private_view_authorization(request_body, "5670903e39d54026a729abd4cc148f99") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_discoverable_to_private_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_edit_authorization(request_body) - - # update resource to private - with open("tests/json_payloads/access_control_changed/from_discoverable/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private edit authorization - check_private_edit_authorization(request_body, "5670903e39d54026a729abd4cc148f99") diff --git a/tests/test_access_control_changed_from_private.py b/tests/test_access_control_changed_from_private.py deleted file mode 100644 index cde5354..0000000 --- a/tests/test_access_control_changed_from_private.py +++ /dev/null @@ -1,187 +0,0 @@ -import pytest -from fastapi.testclient import TestClient -from redis import Redis - -from api.routers.access_control_changed import router as access_control_changed_router -from tests.test_minio_authorization_webhook import ( - check_discoverable_edit_authorization, - check_discoverable_view_authorization, - check_discoverable_view_get_authorization, - check_private_edit_authorization, - check_private_link_edit_authorization, - check_private_link_view_authorization, - check_private_view_authorization, - check_public_edit_authorization, - check_public_view_authorization, -) - -client = TestClient(access_control_changed_router) - - -@pytest.fixture(autouse=True) -def clear_redis_cache(): - redis_client = Redis(host='redis', port=6379, db=0) - redis_client.flushdb() - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects.json", - "user1_list_objects_v2.json", - ], -) -def test_private_to_public_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_private/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public view authorization - check_public_view_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_to_public_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_edit_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_private/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public edit authorization - check_public_edit_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects_v2.json", - ], -) -def test_private_to_private_link_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_private/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_view_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_to_private_link_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_edit_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_private/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_edit_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize("action_json", ["user1_list_bucket.json", "user1_list_objects_v2.json"]) -def test_private_to_discoverable_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable view authorization - check_discoverable_view_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize("action_json", ["user1_get_object_legal_hold.json", "user1_get_object_retention.json"]) -def test_private_to_discoverable_view_get(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable view authorization - check_discoverable_view_get_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_to_discoverable_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_edit_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable edit authorization - check_discoverable_edit_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") diff --git a/tests/test_access_control_changed_from_private_link.py b/tests/test_access_control_changed_from_private_link.py deleted file mode 100644 index 1e3dffe..0000000 --- a/tests/test_access_control_changed_from_private_link.py +++ /dev/null @@ -1,187 +0,0 @@ -import pytest -from fastapi.testclient import TestClient -from redis import Redis - -from api.routers.access_control_changed import router as access_control_changed_router -from tests.test_minio_authorization_webhook import ( - check_discoverable_edit_authorization, - check_discoverable_view_authorization, - check_discoverable_view_get_authorization, - check_private_edit_authorization, - check_private_link_edit_authorization, - check_private_link_view_authorization, - check_private_view_authorization, - check_public_edit_authorization, - check_public_view_authorization, -) - -client = TestClient(access_control_changed_router) - - -@pytest.fixture(autouse=True) -def clear_redis_cache(): - redis_client = Redis(host='redis', port=6379, db=0) - redis_client.flushdb() - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects.json", - "user1_list_objects_v2.json", - ], -) -def test_private_link_to_private_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_view_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_private_link/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public view authorization - check_private_view_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_link_to_private_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_edit_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_private_link/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public edit authorization - check_private_edit_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects_v2.json", - ], -) -def test_private_link_to_public_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_view_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_private_link/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_view_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_link_to_public_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_edit_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_private_link/to_public.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_public_edit_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") - - -@pytest.mark.parametrize("action_json", ["user1_list_bucket.json", "user1_list_objects_v2.json"]) -def test_private_link_to_discoverable_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_view_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable view authorization - check_discoverable_view_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") - - -@pytest.mark.parametrize("action_json", ["user1_get_object_legal_hold.json", "user1_get_object_retention.json"]) -def test_private_link_to_discoverable_view_get(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_view_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable view authorization - check_discoverable_view_get_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_link_to_discoverable_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_edit_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private_link/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable edit authorization - check_discoverable_edit_authorization(request_body, "d5c432ae01eb4f03a73d589e54d341b3") diff --git a/tests/test_access_control_changed_from_public.py b/tests/test_access_control_changed_from_public.py deleted file mode 100644 index f5105ba..0000000 --- a/tests/test_access_control_changed_from_public.py +++ /dev/null @@ -1,187 +0,0 @@ -import pytest -from fastapi.testclient import TestClient -from redis import Redis - -from api.routers.access_control_changed import router as access_control_changed_router -from tests.test_minio_authorization_webhook import ( - check_discoverable_edit_authorization, - check_discoverable_view_authorization, - check_discoverable_view_get_authorization, - check_private_edit_authorization, - check_private_link_edit_authorization, - check_private_link_view_authorization, - check_private_view_authorization, - check_public_edit_authorization, - check_public_view_authorization, -) - -client = TestClient(access_control_changed_router) - - -@pytest.fixture(autouse=True) -def clear_redis_cache(): - redis_client = Redis(host='redis', port=6379, db=0) - redis_client.flushdb() - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects.json", - "user1_list_objects_v2.json", - ], -) -def test_public_to_private_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_public_view_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_public/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public view authorization - check_private_view_authorization(request_body, "a2c0df5bf3eb4d8c8a34beaffe169f91") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_public_to_private_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_public_edit_authorization(request_body) - - # update resource to public - with open("tests/json_payloads/access_control_changed/from_public/to_private.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check public edit authorization - check_private_edit_authorization(request_body, "a2c0df5bf3eb4d8c8a34beaffe169f91") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects_v2.json", - ], -) -def test_public_to_private_link_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_public_view_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_public/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_view_authorization(request_body, "a2c0df5bf3eb4d8c8a34beaffe169f91") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_public_to_private_link_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_public_edit_authorization(request_body) - - # update resource to private link sharing - with open("tests/json_payloads/access_control_changed/from_public/to_private_sharing.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check private link view authorization - check_private_link_edit_authorization(request_body, "a2c0df5bf3eb4d8c8a34beaffe169f91") - - -@pytest.mark.parametrize("action_json", ["user1_list_bucket.json", "user1_list_objects_v2.json"]) -def test_private_to_discoverable_view(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable view authorization - check_discoverable_view_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize("action_json", ["user1_get_object_legal_hold.json", "user1_get_object_retention.json"]) -def test_private_to_discoverable_view_get(action_json): - # populate the cache - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable view authorization - check_discoverable_view_get_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_to_discoverable_edit(action_json): - # populate the cache - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_edit_authorization(request_body) - - # update resource to discoverable sharing - with open("tests/json_payloads/access_control_changed/from_private/to_discoverable.json", "r") as file: - access_control_changed_payload = file.read() - response = client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # check discoverable edit authorization - check_discoverable_edit_authorization(request_body, "f211b93642f84c55a0bdd1b12880e32e") diff --git a/tests/test_access_control_changed_user.py b/tests/test_access_control_changed_user.py deleted file mode 100644 index f5b9fd3..0000000 --- a/tests/test_access_control_changed_user.py +++ /dev/null @@ -1,86 +0,0 @@ -import pytest -from fastapi.testclient import TestClient -from redis import Redis - -from api.routers.access_control_changed import router as access_control_changed_router -from api.routers.minio import router as minio_router - -minio_client = TestClient(minio_router) -access_control_changed_client = TestClient(access_control_changed_router) - - -@pytest.fixture(autouse=True) -def clear_redis_cache(): - redis_client = Redis(host='redis', port=6379, db=0) - redis_client.flushdb() - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects.json", - "user1_list_objects_v2.json", - ], -) -def test_view_user_access_change_view(action_json): - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = minio_client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # update user2 to have view access - with open("tests/json_payloads/access_control_changed/user_access/to_view.json", "r") as file: - access_control_changed_payload = file.read() - response = access_control_changed_client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # user2 has view access - request_body = request_body.replace("user1", "user2") - response = minio_client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -@pytest.mark.parametrize( - "action_json", - [ - "view_authorization/user1_get_object_legal_hold.json", - "view_authorization/user1_get_object_retention.json", - "view_authorization/user1_list_bucket.json", - "view_authorization/user1_list_objects.json", - "/view_authorization/user1_list_objects_v2.json", - "edit_authorization/user1_put_object.json", - "edit_authorization/user1_put_object_legal_hold.json", - "edit_authorization/user1_upload_part.json", - "edit_authorization/user1_delete_object.json", - "edit_authorization/user1_delete_objects.json", - ], -) -def test_edit_user_access_change_edit(action_json): - with open(f"tests/json_payloads/{action_json}", "r") as file: - request_body = file.read() - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = minio_client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # update user2 to have edit access - with open("tests/json_payloads/access_control_changed/user_access/to_edit.json", "r") as file: - access_control_changed_payload = file.read() - response = access_control_changed_client.post("/hook/", data=access_control_changed_payload) - assert response.status_code == 204 - - # user2 has edit access - request_body = request_body.replace("user1", "user2") - response = minio_client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} diff --git a/tests/test_minio_authorization_webhook.py b/tests/test_minio_authorization_webhook.py deleted file mode 100644 index e972f81..0000000 --- a/tests/test_minio_authorization_webhook.py +++ /dev/null @@ -1,590 +0,0 @@ -import pytest -from fastapi.testclient import TestClient -from redis import Redis - -from api.routers.minio import router as minio_router - -client = TestClient(minio_router) - -# 7 users, 2 groups, and 4 resources are defined in the init-scripts/hydroshare-staged-snapshot.sql file. -# The following tests loop through all 4 resources and check the authorization for each user and group. -# The users, groups and resources are defined as follows: - -# user1 (18) owns the reesource -# user2 (19) does not have access to the resource -# user3 (20) has view access to the resource -# user4 (22) has edit access to the resource -# user5 (23) is an owner -# user6 (24) is is a member of view group -# user7 (25) is a member of edit group - - -# view group has view access to f211b93642f84c55a0bdd1b12880e32e with user6 as a member -# edit group has edit access to f211b93642f84c55a0bdd1b12880e32e with user7 as a member - -# f211b93642f84c55a0bdd1b12880e32e is the resource id for the private resource -# d5c432ae01eb4f03a73d589e54d341b3 is the resource id for the private link resource -# a2c0df5bf3eb4d8c8a34beaffe169f91 is the resource id for the public resource -# 5670903e39d54026a729abd4cc148f99 is the resource id for the discoverable resource - - -@pytest.fixture(autouse=True) -def clear_redis_cache(): - redis_client = Redis(host='redis', port=6379, db=0) - redis_client.flushdb() - - -# private resource checks -def check_private_view_authorization(request_body, resource_id=None): - if resource_id: - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is the owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -def check_private_edit_authorization(request_body, resource_id=None): - if resource_id: - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is the owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects.json", - "user1_list_objects_v2.json", - ], -) -def test_private_view(action_json): - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_view_authorization(request_body) - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_edit(action_json): - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_edit_authorization(request_body) - - -# private link actions -def check_private_link_view_authorization(request_body, resource_id="d5c432ae01eb4f03a73d589e54d341b3"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -def check_private_link_edit_authorization(request_body, resource_id="d5c432ae01eb4f03a73d589e54d341b3"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects_v2.json", - ], -) -def test_private_link_view(action_json): - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_view_authorization(request_body) - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_private_link_edit(action_json): - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_private_link_edit_authorization(request_body) - - -# public actions -def check_public_view_authorization(request_body, resource_id="a2c0df5bf3eb4d8c8a34beaffe169f91"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -def check_public_edit_authorization(request_body, resource_id="a2c0df5bf3eb4d8c8a34beaffe169f91"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - "user1_list_bucket.json", - "user1_list_objects_v2.json", - ], -) -def test_public_view(action_json): - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_public_view_authorization(request_body) - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_public_edit(action_json): - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_public_edit_authorization(request_body) - - -# discoverable actions -def check_discoverable_view_get_authorization(request_body, resource_id="5670903e39d54026a729abd4cc148f99"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -# discoverable actions -def check_discoverable_view_authorization(request_body, resource_id="5670903e39d54026a729abd4cc148f99"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -def check_discoverable_edit_authorization(request_body, resource_id="5670903e39d54026a729abd4cc148f99"): - request_body = request_body.replace("f211b93642f84c55a0bdd1b12880e32e", resource_id) - # user1 is owner and quota holder - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user2 has no explicit access - request_body = request_body.replace("user1", "user2") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user3 has view access - request_body = request_body.replace("user2", "user3") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user4 has edit access - request_body = request_body.replace("user3", "user4") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user5 is an owner - request_body = request_body.replace("user4", "user5") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # user6 is a member of view group - request_body = request_body.replace("user5", "user6") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} - - # user7 is a member of edit group - request_body = request_body.replace("user6", "user7") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_get_object_legal_hold.json", - "user1_get_object_retention.json", - ], -) -def test_discoverable_view_get(action_json): - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_get_authorization(request_body) - - -@pytest.mark.parametrize( - "action_json", ["user1_list_bucket.json", "user1_list_objects.json", "user1_list_objects_v2.json"] -) -def test_discoverable_view(action_json): - with open(f"tests/json_payloads/view_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_view_authorization(request_body) - - -@pytest.mark.parametrize( - "action_json", - [ - "user1_put_object.json", - "user1_put_object_legal_hold.json", - "user1_upload_part.json", - "user1_delete_object.json", - "user1_delete_objects.json", - ], -) -def test_discoverable_edit(action_json): - with open(f"tests/json_payloads/edit_authorization/{action_json}", "r") as file: - request_body = file.read() - check_discoverable_edit_authorization(request_body) - - -# admin actions -def test_admin_request(): - with open("tests/json_payloads/minio_admin_request.json", "r") as file: - request_body = file.read() - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # assert cuahsi has authorization - request_body = request_body.replace("minioadmin", "cuahsi") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": True}} - - # assert user1 does not have authorization - request_body = request_body.replace("cuahsi", "user1") - response = client.post("/authorization/", data=request_body) - assert response.status_code == 200 - assert response.json() == {"result": {"allow": False}} diff --git a/tests/test_minio_service_accounts.py b/tests/test_minio_service_accounts.py deleted file mode 100644 index fffc14a..0000000 --- a/tests/test_minio_service_accounts.py +++ /dev/null @@ -1,52 +0,0 @@ -import uuid - -import pytest -from fastapi.testclient import TestClient - -from api.routers.service_accounts import router as service_accounts_router - -client = TestClient(service_accounts_router) - - -@pytest.fixture -def mock_service_account_data(): - return { - "username": "testuser" + str(uuid.uuid4()), # Generate a unique username for each test - } - - -def test_create_service_account(mock_service_account_data): - response = client.post("/auth/minio/sa/", json=mock_service_account_data) - assert response.status_code == 201 - response_json = response.json() - assert "access_key" in response_json - assert "secret_key" in response_json - - -def test_get_service_accounts(mock_service_account_data): - response = client.post("/auth/minio/sa/", json=mock_service_account_data) - assert response.status_code == 201 - access_key = response.json()["access_key"] - response = client.get(f"/auth/minio/sa/{mock_service_account_data['username']}") - assert response.status_code == 200 - service_accounts = response.json().get("service_accounts") - assert isinstance(service_accounts, list) - assert len(service_accounts) == 1 - service_account = service_accounts[0] - assert "access_key" in service_account - assert service_account["access_key"] == access_key - assert "expiry" in service_account - - -def test_delete_service_account(mock_service_account_data): - response = client.post("/auth/minio/sa/", json=mock_service_account_data) - assert response.status_code == 201 - access_key = response.json()["access_key"] - response = client.get(f"/auth/minio/sa/{mock_service_account_data['username']}") - assert response.status_code == 200 - assert len(response.json()["service_accounts"]) == 1 - response = client.delete(f"/auth/minio/sa/{access_key}") - assert response.status_code == 204 - response = client.get(f"/auth/minio/sa/{mock_service_account_data['username']}") - assert response.status_code == 200 - assert len(response.json()["service_accounts"]) == 0