diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa87eb397..9df67fadc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,14 +9,14 @@ jobs: publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - id: build-paper-qa-pymupdf uses: hynek/build-and-inspect-python-package@v2 with: path: packages/paper-qa-pymupdf upload-name-suffix: -paper-qa-pymupdf - name: Download built paper-qa-pymupdf artifact to dist/ - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ steps.build-paper-qa-pymupdf.outputs.artifact-name }} path: dist @@ -28,7 +28,7 @@ jobs: path: packages/paper-qa-pypdf upload-name-suffix: -paper-qa-pypdf - name: Download built paper-qa-pypdf artifact to dist/ - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ steps.build-paper-qa-pypdf.outputs.artifact-name }} path: dist @@ -39,7 +39,7 @@ jobs: with: upload-name-suffix: -paper-qa - name: Download built paper-qa artifact to dist/ - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ steps.build-paper-qa.outputs.artifact-name }} path: dist diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 751e718b0..99df511ea 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,12 +14,19 @@ jobs: matrix: python-version: [3.11, 3.13] # Our min and max supported Python versions steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # For setuptools-scm, replace with fetch-tags after https://github.com/actions/checkout/issues/1471 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - uses: astral-sh/setup-uv@v6 + with: + enable-cache: true + - run: echo "UV_PROJECT_ENVIRONMENT=$(python -c "import sysconfig; print(sysconfig.get_config_var('prefix'))")" >> $GITHUB_ENV + - run: uv python pin ${{ matrix.python-version }} # uv requires .python-version to match OS Python: https://github.com/astral-sh/uv/issues/11389 + - run: uv sync --python-preference only-system + - run: git checkout .python-version # For clean git diff given `pre-commit run --show-diff-on-failure` - uses: pre-commit/action@v3.0.1 - uses: pre-commit-ci/lite-action@v1.1.0 if: always() @@ -29,7 +36,7 @@ jobs: matrix: python-version: [3.11] # Our min supported Python version steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: astral-sh/setup-uv@v6 with: enable-cache: true @@ -72,7 +79,7 @@ jobs: matrix: python-version: [3.11, 3.13] # Our min and max supported Python versions steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: astral-sh/setup-uv@v6 with: enable-cache: true diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4a8bd9086..ebf548223 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - id: mixed-line-ending - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.2 + rev: v0.12.8 hooks: - id: ruff-check args: [--fix, --exit-non-zero-on-fix] @@ -54,11 +54,11 @@ repos: hooks: - id: check-mailmap - repo: https://github.com/henryiii/validate-pyproject-schema-store - rev: 2025.06.23 + rev: 2025.08.07 hooks: - id: validate-pyproject - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.7.19 + rev: 0.8.6 hooks: - id: uv-lock - repo: https://github.com/adamchainz/blacken-docs @@ -71,11 +71,10 @@ repos: hooks: - id: nb-clean args: [--preserve-cell-outputs, --remove-empty-cells] - - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.45.0 + - repo: https://github.com/jackdewinter/pymarkdown + rev: v0.9.31 hooks: - - id: markdownlint - args: [--config=pyproject.toml, --configPointer=/tool/markdownlint] + - id: pymarkdown exclude: docs/tutorials/ - repo: https://github.com/mwouts/jupytext rev: v1.17.2 @@ -88,30 +87,10 @@ repos: rev: 0.0.10 hooks: - id: markdown-toc-creator - - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.16.1 + - repo: local # Use local so we can inspect paperqa.version hooks: - id: mypy - args: [--pretty, --ignore-missing-imports] - additional_dependencies: - - aiohttp>=3.10.6 # Match pyproject.toml - - PyMuPDF>=1.24.12 - - anyio - - fhlmi>=0.28 # Match pyproject.toml - - fhaviary[llm]>=0.20 # Match pyproject.toml - - ldp>=0.25.0 # Match pyproject.toml - - html2text - - httpx - - pybtex - - numpy - - pydantic~=2.11 # Match pyproject.toml - - pydantic-settings - - qdrant-client - - rich - - tantivy>=0.22.2 # Match pyproject.toml - - tenacity - - tiktoken>=0.4.0 # Match pyproject.toml - - types-setuptools - - types-PyYAML - - sentence-transformers - - pyzotero + name: mypy + entry: mypy + language: system + types_or: [python, pyi] diff --git a/README.md b/README.md index 3be9deffb..5f6e295d7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # PaperQA2 -[![GitHub](https://img.shields.io/badge/github-%23121011.svg?logo=github&logoColor=white)](https://github.com/Future-House/paper-qa) + + +[![GitHub](https://img.shields.io/badge/GitHub-black?logo=github&logoColor=white)](https://github.com/Future-House/paper-qa) [![PyPI version](https://badge.fury.io/py/paper-qa.svg)](https://badge.fury.io/py/paper-qa) [![tests](https://github.com/Future-House/paper-qa/actions/workflows/tests.yml/badge.svg)](https://github.com/Future-House/paper-qa) ![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg) @@ -35,6 +37,7 @@ question answering, summarization, and contradiction detection. - [Local Embedding Models (Sentence Transformers)](#local-embedding-models-sentence-transformers) - [Adjusting number of sources](#adjusting-number-of-sources) - [Using Code or HTML](#using-code-or-html) + - [Multimodal Support](#multimodal-support) - [Using External DB/Vector DB and Caching](#using-external-dbvector-db-and-caching) - [Creating Index](#creating-index) - [Manifest Files](#manifest-files) @@ -287,7 +290,7 @@ pqa --settings \ ### Bundled Settings -Inside [`paperqa/configs`](paperqa/configs) we bundle known useful settings: +Inside [`src/paperqa/configs`](src/paperqa/configs) we bundle known useful settings: | Setting Name | Description | | ------------ | ---------------------------------------------------------------------------------------------------------------------------- | @@ -307,7 +310,7 @@ For each OpenAI tier, a pre-built setting exists to limit usage. pqa --settings 'tier1_limits' ask 'What is PaperQA2?' ``` -This will limit your system to use the [tier1_limits](paperqa/configs/tier1_limits.json), +This will limit your system to use the [tier1_limits](src/paperqa/configs/tier1_limits.json), and slow down your queries to accommodate. You can also specify them manually with any rate limit string that matches the specification in @@ -726,6 +729,28 @@ session = await docs.aquery("Where is the search bar in the header defined?") print(session) ``` +### Multimodal Support + +Multimodal support centers on: + +- Standalone images +- Images or tables in PDFs + +The `Docs` object stores media via a `ParsedMedia` object. +When chunking a document, media are not split at chunk boundaries, +so it's possible 2+ chunks can correspond with the same media. +This means within PaperQA each chunk +has a one-to-many relationship between `ParsedMedia` and chunks. + +Depending on the source document, the same image can appear multiple times +(e.g. each page of a PDF has a logo in the margins). +Thus, clients should consider media databases +to have a many-to-many relationship with chunks. + +When creating contextual summaries on a given chunk (a `Text`), +the summary LLM is passed both the chunk's text and the chunk's associated media, +but the output contextual summary itself remains text-only. + ### Using External DB/Vector DB and Caching You may want to cache parsed texts and embeddings in an external database or file. @@ -880,6 +905,7 @@ will return much faster than the first query and we'll be certain the authors ma | `answer.evidence_retrieval` | `True` | Use retrieval vs processing all docs. | | `answer.evidence_summary_length` | `"about 100 words"` | Length of evidence summary. | | `answer.evidence_skip_summary` | `False` | Whether to skip summarization. | +| `answer.evidence_text_only_fallback` | `False` | Whether to allow context creation to retry without media present. | | `answer.answer_max_sources` | `5` | Max number of sources for an answer. | | `answer.max_answer_attempts` | `None` | Max attempts to generate an answer. | | `answer.answer_length` | `"about 200 words, but can be longer"` | Length of final answer. | @@ -894,6 +920,7 @@ will return much faster than the first query and we'll be certain the authors ma | `parsing.pdfs_use_block_parsing` | `False` | Opt-in flag for block-based PDF parsing over text-based PDF parsing. | | `parsing.use_doc_details` | `True` | Whether to get metadata details for docs. | | `parsing.overlap` | `250` | Characters to overlap chunks. | +| `parsing.multimodal` | `True` | Flag to parse both text and images from applicable documents. | | `parsing.defer_embedding` | `False` | Whether to defer embedding until summarization. | | `parsing.parse_pdf` | `paperqa_pypdf.parse_pdf_to_pages` | Function to parse PDF files. | | `parsing.configure_pdf_parser` | No-op | Callable to configure the PDF parser within `parse_pdf`, useful for behaviors such as enabling logging. | diff --git a/docs/tutorials/settings_tutorial.ipynb b/docs/tutorials/settings_tutorial.ipynb index 205d4b22a..6dc470d26 100644 --- a/docs/tutorials/settings_tutorial.ipynb +++ b/docs/tutorials/settings_tutorial.ipynb @@ -96,9 +96,9 @@ "metadata": {}, "source": [ "The `Settings` class is used to configure the PaperQA settings.\n", - "Official documentation can be found [here](https://github.com/Future-House/paper-qa?tab=readme-ov-file#settings-cheatsheet) and the open source code can be found [here](https://github.com/Future-House/paper-qa/blob/main/paperqa/settings.py).\n", + "Official documentation can be found [here](https://github.com/Future-House/paper-qa?tab=readme-ov-file#settings-cheatsheet) and the open source code can be found [here](https://github.com/Future-House/paper-qa/blob/main/src/paperqa/settings.py).\n", "\n", - "Here is a basic example of how to use the `Settings` class. We will be unnecessarily verbose for the sake of clarity. Please notice that most of the settings are optional and the defaults are good for most cases. Refer to the [descriptions of each setting](https://github.com/Future-House/paper-qa/blob/main/paperqa/settings.py) for more information.\n", + "Here is a basic example of how to use the `Settings` class. We will be unnecessarily verbose for the sake of clarity. Please notice that most of the settings are optional and the defaults are good for most cases. Refer to the [descriptions of each setting](https://github.com/Future-House/paper-qa/blob/main/src/paperqa/settings.py) for more information.\n", "\n", "Within this `Settings` object, I'd like to discuss specifically how the llms are configured and how `paperqa` looks for papers.\n", "\n", diff --git a/docs/tutorials/settings_tutorial.md b/docs/tutorials/settings_tutorial.md index acc16177e..7035df528 100644 --- a/docs/tutorials/settings_tutorial.md +++ b/docs/tutorials/settings_tutorial.md @@ -75,9 +75,9 @@ async with aiohttp.ClientSession() as session, session.get(url, timeout=60) as r ``` The `Settings` class is used to configure the PaperQA settings. -Official documentation can be found [here](https://github.com/Future-House/paper-qa?tab=readme-ov-file#settings-cheatsheet) and the open source code can be found [here](https://github.com/Future-House/paper-qa/blob/main/paperqa/settings.py). +Official documentation can be found [here](https://github.com/Future-House/paper-qa?tab=readme-ov-file#settings-cheatsheet) and the open source code can be found [here](https://github.com/Future-House/paper-qa/blob/main/src/paperqa/settings.py). -Here is a basic example of how to use the `Settings` class. We will be unnecessarily verbose for the sake of clarity. Please notice that most of the settings are optional and the defaults are good for most cases. Refer to the [descriptions of each setting](https://github.com/Future-House/paper-qa/blob/main/paperqa/settings.py) for more information. +Here is a basic example of how to use the `Settings` class. We will be unnecessarily verbose for the sake of clarity. Please notice that most of the settings are optional and the defaults are good for most cases. Refer to the [descriptions of each setting](https://github.com/Future-House/paper-qa/blob/main/src/paperqa/settings.py) for more information. Within this `Settings` object, I'd like to discuss specifically how the llms are configured and how `paperqa` looks for papers. diff --git a/docs/tutorials/where_do_I_get_papers.md b/docs/tutorials/where_do_I_get_papers.md index c8f51a289..18599fe97 100644 --- a/docs/tutorials/where_do_I_get_papers.md +++ b/docs/tutorials/where_do_I_get_papers.md @@ -59,7 +59,7 @@ You can also manually drag-and-drop PDFs onto each reference. To download papers, you need to get an API key for your account. 1. Get your library ID, and set it as the environment variable `ZOTERO_USER_ID`. - - For personal libraries, this ID is given [here](https://www.zotero.org/settings/keys) at the part "_Your userID for use in API calls is XXXXXX_". + - For personal libraries, this ID is given [here](https://www.zotero.org/settings/security#applications) at the part "_Your userID for use in API calls is XXXXXX_". - For group libraries, go to your group page `https://www.zotero.org/groups/groupname`, and hover over the settings link. The ID is the integer after /groups/. (_h/t pyzotero!_) 2. Create a new API key [here](https://www.zotero.org/settings/keys/new) and set it as the environment variable `ZOTERO_API_KEY`. - The key will need read access to the library. diff --git a/packages/paper-qa-pymupdf/README.md b/packages/paper-qa-pymupdf/README.md index 7207c69c2..ea33c4f30 100644 --- a/packages/paper-qa-pymupdf/README.md +++ b/packages/paper-qa-pymupdf/README.md @@ -1,6 +1,8 @@ # paper-qa-pymupdf -[![GitHub](https://img.shields.io/badge/github-%23121011.svg?logo=github&logoColor=white)](https://github.com/Future-House/paper-qa/tree/main/packages/paper-qa-pymupdf) + + +[![GitHub](https://img.shields.io/badge/GitHub-black?logo=github&logoColor=white)](https://github.com/Future-House/paper-qa/tree/main/packages/paper-qa-pymupdf) [![PyPI version](https://badge.fury.io/py/paper-qa-pymupdf.svg)](https://badge.fury.io/py/paper-qa-pymupdf) [![tests](https://github.com/Future-House/paper-qa/actions/workflows/tests.yml/badge.svg)](https://github.com/Future-House/paper-qa) ![License](https://img.shields.io/badge/license-AGPLv3-blue.svg) diff --git a/packages/paper-qa-pymupdf/src/paperqa_pymupdf/reader.py b/packages/paper-qa-pymupdf/src/paperqa_pymupdf/reader.py index 004745483..ff07bf44e 100644 --- a/packages/paper-qa-pymupdf/src/paperqa_pymupdf/reader.py +++ b/packages/paper-qa-pymupdf/src/paperqa_pymupdf/reader.py @@ -1,7 +1,7 @@ import os import pymupdf -from paperqa.types import ParsedMetadata, ParsedText +from paperqa.types import ParsedMedia, ParsedMetadata, ParsedText from paperqa.utils import ImpossibleParsingError from paperqa.version import __version__ as pqa_version @@ -16,18 +16,61 @@ def setup_pymupdf_python_logging() -> None: BLOCK_TEXT_INDEX = 4 +# Attributes of pymupdf.Pixmap that contain useful metadata +PYMUPDF_PIXMAP_ATTRS = { + "alpha", + # YAGNI on "digest" because it's not JSON serializable + "height", + "irect", + "is_monochrome", + "is_unicolor", + "n", + "size", + "stride", + "width", + "x", + "xres", + "y", + "yres", +} def parse_pdf_to_pages( path: str | os.PathLike, page_size_limit: int | None = None, use_block_parsing: bool = False, + parse_media: bool = True, + full_page: bool = False, + image_cluster_tolerance: float | tuple[float, float] = 25, + image_dpi: float | None = 150, **_, ) -> ParsedText: + """Parse a PDF. + + Args: + path: Path to the PDF file to parse. + page_size_limit: Sensible character limit one page's text, + used to catch bad PDF reads. + use_block_parsing: Opt-in flag to parse text block-wise. + parse_media: Flag to also parse media (e.g. images, tables). + full_page: Set True to screenshot the entire page as one image, + instead of parsing individual images or tables. + image_cluster_tolerance: Tolerance (points) passed to `Page.cluster_drawings`. + Can be a single value to apply to both X and Y directions, + or a two-tuple to specify X and Y directions separately. + The default was chosen to perform well on image extraction from LitQA2 PDFs. + image_dpi: Dots per inch for images captured from the PDF. + **_: Thrown away kwargs. + """ + x_tol, y_tol = ( + image_cluster_tolerance + if isinstance(image_cluster_tolerance, tuple) + else (image_cluster_tolerance, image_cluster_tolerance) + ) with pymupdf.open(path) as file: - pages: dict[str, str] = {} - total_length = 0 + content: dict[str, str | tuple[str, list[ParsedMedia]]] = {} + total_length = count_media = 0 for i in range(file.page_count): try: @@ -63,13 +106,60 @@ def parse_pdf_to_pages( f" long, which exceeds the {page_size_limit} char limit for the PDF" f" at path {path}." ) - pages[str(i + 1)] = text + media: list[ParsedMedia] = [] + if parse_media: + if full_page: # Capture the entire page as one image + pix = page.get_pixmap(dpi=image_dpi) + media.append( + ParsedMedia( + index=0, + data=pix.tobytes(), + info={"type": "screenshot"} + | {a: getattr(pix, a) for a in PYMUPDF_PIXMAP_ATTRS}, + ) + ) + else: + # Capture drawings/figures + for box_i, box in enumerate( + page.cluster_drawings( + drawings=page.get_drawings(), + x_tolerance=x_tol, + y_tolerance=y_tol, + ) + ): + pix = page.get_pixmap(clip=box, dpi=image_dpi) + media.append( + ParsedMedia( + index=box_i, + data=pix.tobytes(), + info={"bbox": tuple(box), "type": "drawing"} + | {a: getattr(pix, a) for a in PYMUPDF_PIXMAP_ATTRS}, + ) + ) + + # Capture tables + for table_i, table in enumerate(t for t in page.find_tables()): + pix = page.get_pixmap(clip=table.bbox, dpi=image_dpi) + media.append( + ParsedMedia( + index=table_i, + data=pix.tobytes(), + text=table.to_markdown().strip(), + info={"bbox": tuple(table.bbox), "type": "table"} + | {a: getattr(pix, a) for a in PYMUPDF_PIXMAP_ATTRS}, + ) + ) + content[str(i + 1)] = text, media + else: + content[str(i + 1)] = text total_length += len(text) + count_media += len(media) metadata = ParsedMetadata( - parsing_libraries=[f"pymupdf ({pymupdf.__version__})"], + parsing_libraries=[f"{pymupdf.__name__} ({pymupdf.__version__})"], paperqa_version=pqa_version, total_parsed_text_length=total_length, + count_parsed_media=count_media, parse_type="pdf", ) - return ParsedText(content=pages, metadata=metadata) + return ParsedText(content=content, metadata=metadata) diff --git a/packages/paper-qa-pymupdf/tests/test_paperqa_pymupdf.py b/packages/paper-qa-pymupdf/tests/test_paperqa_pymupdf.py index ac9047b26..2f5d1d06c 100644 --- a/packages/paper-qa-pymupdf/tests/test_paperqa_pymupdf.py +++ b/packages/paper-qa-pymupdf/tests/test_paperqa_pymupdf.py @@ -1,9 +1,13 @@ +import base64 +import json from pathlib import Path +from typing import cast import pymupdf import pytest -from paperqa.readers import PDFParserFn -from paperqa.utils import ImpossibleParsingError +from paperqa import Doc, Docs +from paperqa.readers import PDFParserFn, chunk_pdf +from paperqa.utils import ImpossibleParsingError, bytes_to_string from paperqa_pymupdf import parse_pdf_to_pages @@ -11,7 +15,8 @@ STUB_DATA_DIR = REPO_ROOT / "tests" / "stub_data" -def test_parse_pdf_to_pages() -> None: +@pytest.mark.asyncio +async def test_parse_pdf_to_pages() -> None: assert isinstance(parse_pdf_to_pages, PDFParserFn) filepath = STUB_DATA_DIR / "pasa.pdf" @@ -21,19 +26,131 @@ def test_parse_pdf_to_pages() -> None: assert ( "Abstract\n\nWe introduce PaSa, an advanced Paper Search" "\nagent powered by large language models." - ) in parsed_text.content["1"], "Block parsing failed to handle abstract" + ) in parsed_text.content["1"][0], "Block parsing failed to handle abstract" - # Check Figure 1 - p2_text = parsed_text.content["2"] + # Check the images in Figure 1 + assert not isinstance(parsed_text.content["2"], str) + p2_text, p2_media = parsed_text.content["2"] assert "Figure 1" in p2_text, "Expected Figure 1 title" assert "Crawler" in p2_text, "Expected Figure 1 contents" + (p2_image,) = [m for m in p2_media if m.info["type"] == "drawing"] + assert p2_image.index == 0 + assert isinstance(p2_image.data, bytes) + + # Check the image is valid base64 + base64_data = bytes_to_string(p2_image.data) + assert base64_data + assert base64.b64decode(base64_data, validate=True) == p2_image.data + + # Check we can round-trip serialize the image + serde_p2_image = type(p2_image).model_validate_json(p2_image.model_dump_json()) + assert serde_p2_image == p2_image + + # Check useful attributes are present and are JSON serializable + json.dumps(p2_image.info) + for attr in ("width", "height"): + dim = p2_image.info[attr] + assert isinstance(dim, int | float) + assert dim > 0, "Edge length should be positive" + + # Check Figure 1 can be used to answer questions + doc = Doc( + docname="He2025", + dockey="stub", + citation=( + 'He, Yichen, et al. "PaSa: An LLM Agent for Comprehensive Academic Paper' + ' Search." *arXiv*, 2025, arXiv:2501.10120v1. Accessed 2025.' + ), + ) + texts = chunk_pdf(parsed_text, doc=doc, chunk_chars=3000, overlap=100) + # pylint: disable=duplicate-code + fig_1_text = texts[1] + assert ( + "Figure 1: Architecture of PaSa" in fig_1_text.text + ), "Expecting Figure 1 for the test to work" + assert fig_1_text.media, "Expecting media to test multimodality" + fig_1_text.text = "stub" # Replace text to confirm multimodality works + docs = Docs() + assert await docs.aadd_texts(texts=[fig_1_text], doc=doc) + for query, substrings_min_counts in [ + ("What actions can the Crawler take?", [(("search", "expand", "stop"), 2)]), + ("What actions can the Selector take?", [(("select", "drop"), 2)]), + ( + "How many User Query are there, and what do they do?", + [(("two", "2"), 2), (("crawler", "selector"), 2)], + ), + ]: + session = await docs.aquery(query=query) + assert session.contexts, "Expected contexts to be generated" + assert all( + c.text.text == fig_1_text.text and c.text.media == fig_1_text.media + for c in session.contexts + ), "Expected context to reuse Figure 1's text and media" + for substrings, min_count in cast( + list[tuple[tuple[str, ...], int]], substrings_min_counts + ): + assert ( + sum(x in session.answer.lower() for x in substrings) >= min_count + ), f"Expected {session.answer=} to have at {substrings} present" + + # Let's check the full page parsing behavior + parsed_text_full_page = parse_pdf_to_pages(filepath, full_page=True) + assert isinstance(parsed_text_full_page.content, dict) + assert "1" in parsed_text_full_page.content, "Parsed text should contain page 1" + assert "2" in parsed_text_full_page.content, "Parsed text should contain page 2" + for page_num in ("1", "2"): + page_content = parsed_text_full_page.content[page_num] + assert not isinstance(page_content, str), f"Page {page_num} should have images" + # Check each page has exactly one image + page_text, (full_page_image,) = page_content + assert page_text + assert full_page_image.index == 0, "Full page image should have index 0" + assert isinstance(full_page_image.data, bytes) + assert len(full_page_image.data) > 0, "Full page image should have data" + # Check useful attributes are present and are JSON serializable + json.dumps(p2_image.info) + for attr in ("width", "height"): + dim = full_page_image.info[attr] + assert isinstance(dim, int | float) + assert dim > 0, "Edge length should be positive" + + # Check the no-media behavior + parsed_text_no_media = parse_pdf_to_pages(filepath, parse_media=False) + assert isinstance(parsed_text_no_media.content, dict) + assert all(isinstance(c, str) for c in parsed_text_no_media.content.values()) # Check metadata - (parsing_library,) = parsed_text.metadata.parsing_libraries - assert pymupdf.__name__ in parsing_library - assert parsed_text.metadata.parse_type == "pdf" + for pt in (parsed_text, parsed_text_full_page, parsed_text_no_media): + (parsing_library,) = pt.metadata.parsing_libraries + assert pymupdf.__name__ in parsing_library + assert pt.metadata.parse_type == "pdf" + + # Check commonalities across all modes + assert ( + len(parsed_text.content) + == len(parsed_text_full_page.content) + == len(parsed_text_no_media.content) + ), "All modes should parse the same number of pages" def test_page_size_limit_denial() -> None: with pytest.raises(ImpossibleParsingError, match="char limit"): parse_pdf_to_pages(STUB_DATA_DIR / "paper.pdf", page_size_limit=10) # chars + + +def test_table_parsing() -> None: + filepath = STUB_DATA_DIR / "influence.pdf" + parsed_text = parse_pdf_to_pages(filepath) + assert isinstance(parsed_text.content, dict) + assert all( + t and t[0] != "\n" and t[-1] != "\n" for t in parsed_text.content.values() + ), "Expected no leading/trailing newlines in parsed text" + assert "1" in parsed_text.content, "Parsed text should contain page 1" + all_tables = { + i: [m for m in pagenum_media[1] if m.info["type"] == "table"] + for i, pagenum_media in parsed_text.content.items() + if isinstance(pagenum_media, tuple) + } + assert ( + sum(len(tables) for tables in all_tables.values()) >= 2 + ), "Expected a few tables to be parsed" diff --git a/packages/paper-qa-pypdf/README.md b/packages/paper-qa-pypdf/README.md index 09e72646d..e52ddb5da 100644 --- a/packages/paper-qa-pypdf/README.md +++ b/packages/paper-qa-pypdf/README.md @@ -1,6 +1,8 @@ # paper-qa-pypdf -[![GitHub](https://img.shields.io/badge/github-%23121011.svg?logo=github&logoColor=white)](https://github.com/Future-House/paper-qa/tree/main/packages/paper-qa-pypdf) + + +[![GitHub](https://img.shields.io/badge/GitHub-black?logo=github&logoColor=white)](https://github.com/Future-House/paper-qa/tree/main/packages/paper-qa-pypdf) [![PyPI version](https://badge.fury.io/py/paper-qa-pypdf.svg)](https://badge.fury.io/py/paper-qa-pypdf) [![tests](https://github.com/Future-House/paper-qa/actions/workflows/tests.yml/badge.svg)](https://github.com/Future-House/paper-qa) ![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg) diff --git a/packages/paper-qa-pypdf/pyproject.toml b/packages/paper-qa-pypdf/pyproject.toml index c40d6f5e9..40369a809 100644 --- a/packages/paper-qa-pypdf/pyproject.toml +++ b/packages/paper-qa-pypdf/pyproject.toml @@ -33,6 +33,11 @@ name = "paper-qa-pypdf" readme = "README.md" requires-python = ">=3.11" +[project.optional-dependencies] +media = [ + "pypdfium2>=4.22.0", # Pin for PYPDFIUM_INFO addition +] + [tool.ruff] extend = "../../pyproject.toml" diff --git a/packages/paper-qa-pypdf/src/paperqa_pypdf/reader.py b/packages/paper-qa-pypdf/src/paperqa_pypdf/reader.py index bf260071b..ea08935b7 100644 --- a/packages/paper-qa-pypdf/src/paperqa_pypdf/reader.py +++ b/packages/paper-qa-pypdf/src/paperqa_pypdf/reader.py @@ -1,21 +1,44 @@ +import io import os +from typing import Any import pypdf -from paperqa.types import ParsedMetadata, ParsedText +from paperqa.types import ParsedMedia, ParsedMetadata, ParsedText from paperqa.utils import ImpossibleParsingError from paperqa.version import __version__ as pqa_version +try: + import pypdfium2 as pdfium +except ImportError: + pdfium = None + +# Attributes of pdfium.PdfBitmap that contain useful metadata +PDFIUM_BITMAP_ATTRS = {"width", "height", "stride", "n_channels", "mode"} + def parse_pdf_to_pages( path: str | os.PathLike, page_size_limit: int | None = None, - **_, + parse_media: bool = True, + full_page: bool = False, + **_: Any, ) -> ParsedText: + """Parse a PDF. + + Args: + path: Path to the PDF file to parse. + page_size_limit: Sensible character limit one page's text, + used to catch bad PDF reads. + parse_media: Flag to also parse media (e.g. images, tables). + full_page: Set True to screenshot the entire page as one image, + instead of parsing individual images or tables. + **_: Thrown away kwargs. + """ with open(path, "rb") as file: pdf_reader = pypdf.PdfReader(file) - pages: dict[str, str] = {} - total_length = 0 + pages: dict[str, str | tuple[str, list[ParsedMedia]]] = {} + total_length = count_media = 0 for i, page in enumerate(pdf_reader.pages): text = page.extract_text() if page_size_limit and len(text) > page_size_limit: @@ -25,13 +48,57 @@ def parse_pdf_to_pages( f" at path {path}." ) - pages[str(i + 1)] = text + if parse_media: + if not full_page: + raise NotImplementedError( + "Media support without just a screenshot of the full page" + " is not yet implemented." + ) + # Render the whole page to a PIL image. + try: + pdf_doc = pdfium.PdfDocument(str(path)) + except AttributeError as exc: + raise ImportError( + "Media parsing requires 'pypdfium2' to be installed for rasterization support." + " Please install it via `pip install paper-qa-pypdf[media]`." + ) from exc + + pdfium_page: pdfium.PdfPage = pdf_doc[i] + pdfium_rendered_page: pdfium.PdfBitmap = pdfium_page.render(scale=1) + buf = io.BytesIO() + pdfium_rendered_page.to_pil().save(buf, format="PNG") + pages[str(i + 1)] = text, [ + ParsedMedia( + index=0, + data=buf.getvalue(), + info={ + "type": "screenshot", + "page_width": pdfium_page.get_width(), + "page_height": pdfium_page.get_height(), + } + | { + f"bitmap_{a}": getattr(pdfium_rendered_page, a) + for a in PDFIUM_BITMAP_ATTRS + }, + ) + ] + count_media += 1 + else: + pages[str(i + 1)] = text total_length += len(text) + pypdf_version_str = f"{pypdf.__name__} ({pypdf.__version__})" metadata = ParsedMetadata( - parsing_libraries=[f"pypdf ({pypdf.__version__})"], + parsing_libraries=[ + ( + f"{pypdf_version_str}, {pdfium.__name__} ({pdfium.PYPDFIUM_INFO})" + if parse_media + else pypdf_version_str + ) + ], paperqa_version=pqa_version, total_parsed_text_length=total_length, + count_parsed_media=count_media, parse_type="pdf", ) return ParsedText(content=pages, metadata=metadata) diff --git a/packages/paper-qa-pypdf/tests/test_paperqa_pypdf.py b/packages/paper-qa-pypdf/tests/test_paperqa_pypdf.py index 6f5a298ce..38981ce45 100644 --- a/packages/paper-qa-pypdf/tests/test_paperqa_pypdf.py +++ b/packages/paper-qa-pypdf/tests/test_paperqa_pypdf.py @@ -1,10 +1,14 @@ +import base64 +import json import re from pathlib import Path +from typing import cast import pypdf import pytest -from paperqa.readers import PDFParserFn -from paperqa.utils import ImpossibleParsingError +from paperqa import Doc, Docs +from paperqa.readers import PDFParserFn, chunk_pdf +from paperqa.utils import ImpossibleParsingError, bytes_to_string from paperqa_pypdf import parse_pdf_to_pages @@ -12,29 +16,102 @@ STUB_DATA_DIR = REPO_ROOT / "tests" / "stub_data" -def test_parse_pdf_to_pages() -> None: +@pytest.mark.asyncio +async def test_parse_pdf_to_pages() -> None: assert isinstance(parse_pdf_to_pages, PDFParserFn) filepath = STUB_DATA_DIR / "pasa.pdf" - parsed_text = parse_pdf_to_pages(filepath) - assert isinstance(parsed_text.content, dict) - assert "1" in parsed_text.content, "Parsed text should contain page 1" + parsed_text_full_page = parse_pdf_to_pages(filepath, full_page=True) + assert isinstance(parsed_text_full_page.content, dict) + assert "1" in parsed_text_full_page.content, "Parsed text should contain page 1" + assert isinstance(parsed_text_full_page.content["1"], tuple) matches = re.findall( r"Abstract\nWe introduce PaSa, an advanced Paper ?Search" r"\nagent powered by large language models.", - parsed_text.content["1"], + parsed_text_full_page.content["1"][0], ) assert len(matches) == 1, "Parsing failed to handle abstract" - # Check Figure 1 - p2_text = parsed_text.content["2"] + # Check the images in Figure 1 + assert not isinstance(parsed_text_full_page.content["2"], str) + p2_text, p2_media = parsed_text_full_page.content["2"] assert "Figure 1" in p2_text, "Expected Figure 1 title" assert "Crawler" in p2_text, "Expected Figure 1 contents" + (p2_image,) = p2_media + assert p2_image.index == 0 + assert isinstance(p2_image.data, bytes) + + # Check the image is valid base64 + base64_data = bytes_to_string(p2_image.data) + assert base64_data + assert base64.b64decode(base64_data, validate=True) == p2_image.data + + # Check we can round-trip serialize the image + serde_p2_image = type(p2_image).model_validate_json(p2_image.model_dump_json()) + assert serde_p2_image == p2_image + + # Check useful attributes are present and are JSON serializable + json.dumps(p2_image.info) + for attr in ("page_width", "page_height"): + dim = serde_p2_image.info[attr] + assert isinstance(dim, int | float) + assert dim > 0, "Edge length should be positive" + + # Check Figure 1 can be used to answer questions + doc = Doc( + docname="He2025", + dockey="stub", + citation=( + 'He, Yichen, et al. "PaSa: An LLM Agent for Comprehensive Academic Paper' + ' Search." *arXiv*, 2025, arXiv:2501.10120v1. Accessed 2025.' + ), + ) + texts = chunk_pdf(parsed_text_full_page, doc=doc, chunk_chars=3000, overlap=100) + # pylint: disable=duplicate-code + fig_1_text = texts[1] + assert ( + "Figure 1: Architecture of PaSa" in fig_1_text.text + ), "Expecting Figure 1 for the test to work" + assert fig_1_text.media, "Expecting media to test multimodality" + fig_1_text.text = "stub" # Replace text to confirm multimodality works + docs = Docs() + assert await docs.aadd_texts(texts=[fig_1_text], doc=doc) + for query, substrings_min_counts in [ + ("What actions can the Crawler take?", [(("search", "expand", "stop"), 2)]), + ("What actions can the Selector take?", [(("select", "drop"), 2)]), + ( + "How many User Query are there, and what do they do?", + [(("two", "2"), 2), (("crawler", "selector"), 2)], + ), + ]: + session = await docs.aquery(query=query) + assert session.contexts, "Expected contexts to be generated" + assert all( + c.text.text == fig_1_text.text and c.text.media == fig_1_text.media + for c in session.contexts + ), "Expected context to reuse Figure 1's text and media" + for substrings, min_count in cast( + list[tuple[tuple[str, ...], int]], substrings_min_counts + ): + assert ( + sum(x in session.answer.lower() for x in substrings) >= min_count + ), f"Expected {session.answer=} to have at {substrings} present" + + # Check the no-media behavior + parsed_text_no_media = parse_pdf_to_pages(filepath, parse_media=False) + assert isinstance(parsed_text_no_media.content, dict) + assert all(isinstance(c, str) for c in parsed_text_no_media.content.values()) # Check metadata - (parsing_library,) = parsed_text.metadata.parsing_libraries - assert pypdf.__name__ in parsing_library - assert parsed_text.metadata.parse_type == "pdf" + for pt in (parsed_text_full_page, parsed_text_no_media): + (parsing_library,) = pt.metadata.parsing_libraries + assert pypdf.__name__ in parsing_library + assert pt.metadata.parse_type == "pdf" + + # Check commonalities across all modes + assert len(parsed_text_full_page.content) == len( + parsed_text_no_media.content + ), "All modes should parse the same number of pages" def test_page_size_limit_denial() -> None: diff --git a/pyproject.toml b/pyproject.toml index 727339c8a..aecef0a67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ dev = [ "ipython>=8", # Pin to keep recent "litellm>=1.68,<1.71", # Lower pin for PydanticDeprecatedSince20 fixes, upper pin for VCR cassette breaks (https://github.com/BerriAI/litellm/issues/11724) "mypy>=1.8", # Pin for mutable-override - "paper-qa[ldp,pypdf,pymupdf,typing,zotero,local,qdrant]", + "paper-qa[image,ldp,pypdf-media,pymupdf,typing,zotero,local,qdrant]", "pre-commit>=3.4", # Pin to keep recent "pydantic~=2.11", # Pin for start of model_fields deprecation "pylint-pydantic", @@ -78,6 +78,9 @@ dev = [ "typeguard", "vcrpy>=6", # Pin for https://github.com/kevin1024/vcrpy/issues/884 ] +image = [ + "pillow>=10.3.0", # Pin for py.typed +] ldp = [ "ldp>=0.25.0", # For new LLM client interface ] @@ -89,6 +92,7 @@ openreview = [ ] pymupdf = ["paper-qa-pymupdf"] pypdf = ["paper-qa-pypdf"] +pypdf-media = ["paper-qa-pypdf[media]"] qdrant = [ "qdrant-client", ] @@ -123,15 +127,6 @@ skip = [ "tests/stub_data/*", ] -[tool.markdownlint] -no-inline-html = false - -[tool.markdownlint.line-length] -code_block_line_length = 88 # Match ruff line-length -line_length = 120 # Match ruff max-doc-length -stern = true -tables = false - [tool.mypy] # Type-checks the interior of functions without type annotations. check_untyped_defs = true @@ -198,6 +193,7 @@ module = [ "openreview", # SEE: https://github.com/openreview/openreview-py/issues/2551 "pybtex.*", # SEE: https://bitbucket.org/pybtex-devs/pybtex/issues/141/type-annotations "pymupdf", # SEE: https://github.com/pymupdf/PyMuPDF/issues/2883 + "pypdfium2", # SEE: https://github.com/pypdfium2-team/pypdfium2/issues/367 "pyzotero", # SEE: https://github.com/urschrei/pyzotero/issues/110 ] @@ -300,6 +296,16 @@ score = false # Minimum lines number of a similarity. min-similarity-lines = 12 +[tool.pymarkdown] +plugins.line-length.code_block_line_length = 88 # Match ruff line-length +plugins.line-length.enabled = true +plugins.line-length.line_length = 120 # Match ruff max-doc-length +plugins.line-length.stern = true +plugins.line-length.tables = false +plugins.no-duplicate-heading.siblings_only = true # GitHub appends -X for duplicated headings +plugins.no-emphasis-as-heading.enabled = false +plugins.no-inline-html.enabled = false + [tool.pytest.ini_options] # Add the specified OPTS to the set of command line arguments as if they had been # specified by the user. diff --git a/src/paperqa/clients/__init__.py b/src/paperqa/clients/__init__.py index 7464993dc..64ee54a8a 100644 --- a/src/paperqa/clients/__init__.py +++ b/src/paperqa/clients/__init__.py @@ -7,7 +7,7 @@ import aiohttp from lmi.utils import gather_with_concurrency -from pydantic import BaseModel, ConfigDict +from pydantic import BaseModel, ConfigDict, Field from paperqa.types import Doc, DocDetails @@ -36,21 +36,33 @@ class DocMetadataTask(BaseModel): - """Holder for provider and processor tasks.""" + """Simple container pairing metadata providers with processors.""" model_config = ConfigDict(arbitrary_types_allowed=True) - providers: Collection[MetadataProvider] - processors: Collection[MetadataPostProcessor] + providers: Collection[MetadataProvider] = Field( + description=( + "Metadata providers allotted to this task." + " An example would be providers for Crossref and Semantic Scholar." + ) + ) + processors: Collection[MetadataPostProcessor] = Field( + description=( + "Metadata post-processors allotted to this task." + " An example would be a journal quality filter." + ) + ) def provider_queries( self, query: dict ) -> list[Coroutine[Any, Any, DocDetails | None]]: + """Set up query coroutines for each contained metadata provider.""" return [p.query(query) for p in self.providers] def processor_queries( self, doc_details: DocDetails, session: aiohttp.ClientSession ) -> list[Coroutine[Any, Any, DocDetails]]: + """Set up process coroutines for each contained metadata post-processor.""" return [ p.process(copy.copy(doc_details), session=session) for p in self.processors ] @@ -78,7 +90,6 @@ def __init__( if nested, will query in order looking for termination criteria after each. Will terminate early if either DocDetails.is_hydration_needed is False OR if all requested fields are present in the DocDetails object. - """ self._session = session self.tasks: list[DocMetadataTask] = [] diff --git a/src/paperqa/clients/client_data/journal_quality.csv b/src/paperqa/clients/client_data/journal_quality.csv index b59183c50..4430754fd 100644 --- a/src/paperqa/clients/client_data/journal_quality.csv +++ b/src/paperqa/clients/client_data/journal_quality.csv @@ -1,39371 +1,40113 @@ -clean_name,quality -francke verlag,1 -aaai press,1 -aalborg university press,1 -aalto arts books,1 -aarhus university press,1 -abc-clio,0 -abilene christian university press,1 -abstrakt forlag,1 -academia adacta,1 -academia press,1 -academic press,2 -academica,1 -accademia nazionale dei lincei,1 -acco,1 -academic conferences international,1 -acoustical society of america,0 -acta graphica publishers,0 -acta press,1 -actes sud,1 -acton publishers,1 -acumen,1 -addis ababa university press,1 -adonis & abbey publishers ltd.,1 -advanced knowledge international,1 -africa institute of south africa,1 -africa world press,1 -associazione italiana di ingegneria chimica,1 -aisthesis verlag,1 -akadémiai kiadó,1 -"akademie der wissenschaften und der literatur, mainz",1 -akademie der wissenschaften zu göttingen,1 -akademie verlag,1 -akademisk forlag,1 -akademisk publisering,1 -akashi shoten,1 -akilles forlag,1 -aletejja,1 -alfred kröner,1 -allen & unwin,1 -allied publishers group,1 -almenna bókafélagið,1 -almqvist & wiksell,1 -alpha science international,1 -altamira press,2 -alvheim & eide,1 -american association for the advancement of science,1 -american association of petroleum geologists,1 -american center for oriental research,1 -american ceramic society,1 -american chemical society,2 -american concrete institute,1 -american geophysical union,1 -american historical association,1 -american institute of aeronautics and astronautics,1 -american institute of biological sciences,1 -american institute of chemical engineers,1 -american institute of mathematical sciences,2 -american institute of physics,1 -american mathematical society,2 -american nuclear society,2 -american oriental society,0 -american physical society,1 -american psychiatric publishing,1 -american psychological association,1 -american school of classical studies at athens,1 -american science press,1 -american scientific publishers,1 -american society of civil engineers,1 -ams press,1 -amsterdam university press,2 -analytic press,1 -anthem press,1 -appelhans-verlag,1 -aratake shuppan,1 -archaeopress,1 -archeotex,1 -archetype publications,1 -arcibel editores,1 -arco libros,1 -areopagus,1 -arkiv förlag & tidskrift,1 -armand colin,1 -artech house,1 -asanger verlag,1 -aschehoug & co,1 -association for information science and technology,1 -asm international,1 -asme gear research institute,1 -aspen publishers,1 -associated university presses,1 -association for canadian studies,1 -association for computational linguistics,1 -acm,1 -association for symbolic logic,1 -association for the advancement of computing in education,1 -american society for testing and materials,1 -atena,0 -ateneo de manila university press,1 -athabasca university press,1 -athena,1 -narr francke attempto verlag,1 -australian academic press,1 -australian computer society,1 -anu press,1 -baar-verlag,1 -baifukan,1 -baker,1 -balkema,1 -barcelona publishers,1 -bardi editore,1 -basic books,1 -bayerische akademie der wissenschaften,1 -baylor university press,0 -"baywood publishing company, inc.",1 -beacon press,1 -begell house,1 -belknap press of harvard university press,2 -berg,0 -berghahn books,2 -berkeley electronic press,1 -berlin-brandenburgische akademie der wissenschaften,1 -berliner wissenschafts-verlag,1 -bernstein-verlag,1 -bhr group,1 -biblion verlag,1 -"bibliopolis, edizioni di filosofia e scienze",1 -bilingua ga editions,1 -billesø & baltzer,1 -biochemical society,1 -biomed central,1 -biopress,1 -bios scientific publishers,1 -bioscientifica,1 -birkhäuser,1 -bis oldenburg,1 -blackhorse publishing,1 -blackwell munksgaard,1 -blackwell verlag,2 -bloomsbury academic,2 -bmj books,1 -bokförlaget atlantis,1 -bokförlaget nya doxa,1 -bokförlaget signum,1 -bonner amerikanistische studien,1 -albert bonniers förlag,0 -boréa bokförlag,1 -borgen,1 -boydell & brewer,2 -bps blackwell,1 -brandes & apsel verlag,1 -brepols,2 -bricoleur press,1 -brill,3 -british computer society,1 -british ecological society,1 -british film institute publishing,1 -british library publishing,1 -british museum press,1 -broadview press,1 -brookings institution press,1 -bruylant,1 -bulzoni,1 -butterworth-heinemann,1 -bärenreiter-verlag,1 -böhlau verlag,2 -c. hurst & co.,1 -c.a. reitzel,1 -beck,2 -cabi,1 -cálliidlágádus,1 -cambria press,1 -cambridge scholars publishing,1 -cambridge university press,3 -camden house,1 -campo das letras,1 -campus verlag,2 -canadian conservation institute,1 -"canadian institute of mining, metallurgy and petroleum",1 -canadian scholars press inc.,1 -cappelen damm,1 -captus press inc.,1 -carfax publishing,1 -carl hanser verlag,1 -carl heymanns verlag,1 -carlsson bokförlag,1 -carnegie mellon university press,1 -carocci editore,1 -ediciones casa verde,1 -cascadilla press,1 -caspar forlag,1 -catholic university of america press,1 -cci press,1 -university press of maryland,1 -cedam,1 -central european university press,1 -centre détudes du xixe siècle joseph sable,1 -centro de estudios andaluces,1 -channel view publications,1 -chatto & windus,1 -chicago linguistic society,1 -chinese university press,1 -christian ejlers´s forlag,1 -claeys & casteels,1 -clemson university digital press,1 -climepsi editores,1 -cluj university press,1 -cnrs editions,1 -cognitive science society,1 -cognizant communication corporation,1 -cold spring harbor laboratory press,2 -college publications,1 -columbia university press,2 -comadem international,1 -conbrio verlagsgesellschaft,1 -continuous innovation network,1 -continuum,0 -copenhagen business school press,1 -copernicus publications,1 -cork university press,1 -cornell university press,2 -corwin press,1 -crc press,1 -"croatian society for communications, computing, electronics, measurement and control",1 -csiro publishing,1 -csli publications,1 -cumberland academic press,1 -d.s. brewer,2 -daidalos,1 -danmarks pædagogiske universitets forlag,1 -dansklærerforeningen,1 -dar al-kitab al-miṣri,1 -davvi girji,1 -de boccard,1 -de gruyter,3 -de luca editori d´arte,1 -de sitter publications,1 -cengage learning,1 -demos,1 -consejo superior de investigaciones científicas,1 -norske samlaget,1 -det norske videnskaps-akademi,1 -deutsche orient-gesellschaft,1 -deutscher kunstverlag,1 -deutsche universitäts-verlag,1 -deutsches archäologisches institut,1 -diavlos,1 -dkv - deutscher kälte- und klimatechnischer verein,1 -dmitrii bulanin,1 -dom štampe,1 -dr. a.j. denkena verlag,1 -dsm technical publications,1 -duckworth,1 -duculot,1 -duke university press,2 -dumbarton oaks,1 -duncker & humblot,1 -dunod editeur,1 -duquesne university press,1 -e & fn spon,1 -e. schweizerbartsche verlagsbuchhandlung,1 -earthscan,1 -east-west books,0 -european council for modelling and simulation,0 -economica,1 -ecpr press,1 -elsevier doyma,1 -ediciones universidad de navarra sa,1 -ediciones universitarias de valparaiso,1 -edições colibri,1 -edições cosmos,1 -edifir - edizioni,1 -edinburgh university press,2 -edita,1 -edition kirchhof & franke,1 -edition sigma,1 -edition text + kritik,2 -editions dalloz,1 -editions du centre pompidou,1 -éditions du seuil,1 -editions jerome millon,1 -éditions kimé,1 -éditions klincksieck,1 -editora campus,1 -universidade federal de santa catarina editora,1 -universidade do porto - reitoria,0 -editorial caminho,1 -editorial comares,1 -editorial el manual moderno,1 -editorial estampa,1 -editorial trillas,1 -editorial universidad de antioquia,1 -editorial verbo,1 -editura polirom,1 -edizioni di pagina,1 -edizioni erickson,1 -francoangeli,1 -edizioni plus pisa university press,1 -edizioni unicopli,1 -edp sciences,1 -edward elgar,2 -edwin mellen press,1 -libera-säätiö,0 -eisenbrauns,1 -electa,1 -"electrical engineering/electronics, computer, communications and information technology association",1 -electrochemical society,1 -elsevier,2 -emerald,1 -energy institute,1 -english heritage,1 -english place-name society,1 -ens editions,1 -eolss publishing,1 -equinox publishing,2 -ergon-verlag,1 -reinhardt,1 -esri press,1 -european association for computer graphics,1 -eurooppalaisen filosofian seura ry,1 -european association for signal and image processing,1 -european association of geoscientists and engineers,1 -european council for an energy efficient economy,1 -european geosciences union,1 -european institute of public administration,1 -european language resources distribution agency,1 -european mathematical society publishing house,2 -european optical society,1 -european power electronics and drives association,1 -european safety and reliability association,1 -european society for research in mathematics education,1 -european space agency,1 -european university at st. petersburg,0 -european wind energy association,1 -evangelische verlagsanstalt gmbh,1 -fabrizio serra editore,1 -fadls forlag a/s,1 -fagbokforlaget,1 -fairleigh dickinson university press,1 -falmer press,1 -meiner verlag,1 -filander verlag,1 -filosofia,1 -fischer taschenbuch verlag - forum wissenschaft hochschule,1 -foi-komers,0 -fondation louis de broglie,1 -fondo editorial universidad eafit,1 -fordham university press,2 -foreign languages press,1 -forest products society,1 -forlag1,1 -forlaget ajour,1 -forlaget anis,1 -forlaget hexis,1 -forlaget hikuin,1 -forlaget kolon,1 -medusa,1 -karnov group denmark,1 -fortress press,1 -four courts press,1 -frank & timme,1 -frank cass publishers,1 -franz steiner verlag,2 -fritzes,1 -fródskapur,1 -fudan university press,1 -fundacion infancia y aprendizaje,1 -føroya fródskaparfelag,1 -g.b. palumbo & c. editore,1 -springer gabler,1 -gad,1 -gallaudet university press,1 -gallimard,2 -garland science publishing,1 -gaudeamus,2 -geographica bernensia,1 -geological association of canada,1 -geological society,1 -geological society of america,1 -georg editeur,1 -georg olms verlag,1 -georg thieme verlag,1 -george mason university press,1 -georg-eckert-insitut für internationale schulbuchforschung,1 -georgetown university press,1 -getty conservation institute,1 -ghana universities press,1 -gidlunds,1 -giorgio bretschneider editore,1 -giuffre,1 -giunti editore spa,1 -glasshouse press,1 -global academic publishing,1 -global oriental,1 -global science books,1 -gorbachev foundation,1 -gorgias press,1 -editorial gredos,1 -greenleaf publishing ltd,1 -greenwood press,1 -gta verlag,1 -guilford publications,1 -gulf professional publishing,1 -gummerus,0 -gunter narr verlag,1 -gyldendal akademisk,1 -gyldendal,1 -gütersloher verlagshaus,1 -hackett publishing company,1 -hai-kustannus,0 -hallgren & fallgren,1 -hampton press,1 -handelshøjskolens forlag,1 -hans reitzels forlag,1 -harcourt trade publishers,1 -harpercollins publishers,1 -harrassowitz verlag,2 -hart publishing,2 -harvard university press,3 -harvey miller publishers,1 -harvey whitney books,1 -gordon & breach publishing group,1 -hatje cantz,1 -haupt verlag,1 -haworth press,1 -heidelberg press,1 -heidelberger akademie der wissenschaften,1 -heinemann,1 -hendrickson publishers,1 -herder editrice e libreria,1 -herder verlag,1 -hermes academic publishing and bookshop a/s,1 -hermes science publications,1 -hið íslenska bókmenntafélag,1 -hindawi publishing corporation,1 -historiska museets förlag,1 -hodder & stoughton,1 -hogrefe,1 -hong kong university press,1 -honoré champion,2 -hrvatska sveucilisna naklada,1 -human kinetics publishers,1 -humana press,1 -humanity books,1 -hyean publishing,1 -hyphen press,1 -høyskoleforlaget,1 -i.b. tauris,1 -iadis press,0 -iahs press,1 -iberoamericana vervuert,1 -ibidem-verlag,1 -international chamber of commerce,1 -icfai university press,1 -idrc books,1 -ieee communications society,1 -ieee computer society press,1 -ieee,1 -wiley-ieee press,1 -igi global,1 -ij-forlaget,1 -iko-verlag,1 -im publications,1 -imperial college press,1 -imprensa nacional - casa da moeda,1 -imprint academic,1 -inderscience publishers,1 -indian institute of advanced study,1 -indian national science academy,1 -indiana university press,1 -informa healthcare,1 -informa law,1 -information age publishing,1 -information science reference,1 -informations forlag,1 -informing science institute,1 -informing science press,1 -inra editions,1 -insticc press,1 -institut de france,1 -institut de recherche et coordination acoustique/musique,1 -institut für werkstoffwissenschaft und werkstofftechnologie,1 -institute for operations research and the management sciences,1 -"institute of marine engineering, science and technology",1 -institute of mathematical statistics,1 -institute of mediæval music,1 -institute of physics publishing,1 -institute of physics and engineering in medicine,1 -institutet för språk och folkminnen,1 -institution of chemical engineers,1 -institution of engineering and technology,1 -institution of mechanical engineers,1 -institution of occupational safety and health,1 -institution of structural engineers,1 -instituto camões,1 -intellect,2 -inter-disciplinary press,1 -international academy for production engineering,1 -international association for bridge and structural engineering,1 -international association for computer information systems,1 -international association for fire safety science,1 -"international academy of technology, education and development",1 -international association for universal design,1 -international association of engineers,1 -international association for hydro-environment engineering and research,1 -international astronomical union,1 -international atomic energy agency,1 -international computer music association,1 -international federation for information processing,0 -information management international inc.,1 -international institute for conservation of historic and artistic works,1 -international institute for environment and development,1 -international institute of informatics and systemics,0 -international institute of refrigeration,1 -international pragmatics association,1 -international reading association,1 -iste,1 -international society for asphalt pavements,1 -international society for productivity enhancement,1 -international society of offshore and polar engineers,1 -international universities press,1 -interscience communications,1 -intersentia,1 -intervention press,1 -ios press,1 -iowa state university press,1 -irish academic press,1 -ishara press,0 -island press,1 -ist press,1 -istituto papirologico g. vitelli,1 -istituto poligraficio e zecca dello stato,1 -practical action publishing,1 -i-tech education and publishing kg,1 -it-universitetet i københavn,1 -iudicium verlag,1 -iustus förlag,1 -iwa publishing,1 -jagiellonian university press,1 -jai press,1 -james currey,2 -japan institute of navigation,1 -japan scientific societies press,1 -jeremy mills publishing,1 -jessica kingsley publishers,1 -jiangsu education publishing house,1 -jimoondang,1 -john benjamins,2 -john libbey publishing,1 -john wiley & sons,2 -johns hopkins university press,2 -jones and bartlett publishers,1 -jure,1 -juventa verlag,1 -jysk arkæologisk selskab,1 -de gruyter saur,1 -kachere series publications,1 -kansanvalistusseura,1 -karlstad university press,1 -karolinum,1 -karthala,1 -kasparek verlag,1 -kassel university press,1 -kegan paul,1 -kent state university press,1 -kew publishing,1 -kikimora publications,1 -kings college publications,1 -kirjapaja,0 -boer verlag,1 -klett-cotta,1 -klim,1 -kluwer academic publishers,2 -kluwer law international,2 -knnv publishers,1 -kongelige danske videnskabernes selskab,1 -konrad theiss verlag,1 -kopaed,1 -kotimaisten kielten keskus,1 -dafolo,0 -kungl. gustav adolfs akademien för svensk folkkultur,1 -kungl. samfundet för utgivandet av handskrifter rörande skandinaviens historia,1 -kungl. vitterhets historie och antikvitets akademien,1 -kungliga skogs- och lantbruksakademien,1 -kunstakademiets arkitektskoles forlag,1 -kurosio publishers,1 -kustannus oy duodecim,0 -siltala,0 -kustannus-puntsi,0 -kvan,1 -königshausen & neumann,1 -la librairie vuibert,1 -sociedad de etnomusicología,1 -labyrinth press,1 -lakimiesliiton kustannus,1 -lamy,1 -lan,1 -lapland university press,1 -law press china,1 -lawrence and wishart,1 -lawrence erlbaum associates,2 -left coast press,1 -leo s. olschki,1 -l´erma di bretschneider,1 -les belles lettres,1 -university of ottawa press,1 -presses universitaires du mirail,1 -leuven university press,1 -lexington books,1 -lexisnexis butterworths,1 -l´harmattan,1 -liber,1 -droz,2 -liikuntatieteellinen seura,1 -lincom,1 -institut national de recherche en informatique et en automatique,1 -lippincott williams & wilkins,1 -lit verlag,2 -liverpool university press,1 -livraria almedina,0 -bertrand livreiros,1 -logos verlag berlin,1 -london mathematical society,2 -longman,1 -louisiana state university press,1 -luchterhand,1 -lucius und lucius,1 -luleå tekniska universitet,1 -lynne rienner publishers,1 -m.e. sharpe,2 -macmillan,1 -macromarketing society,1 -maik nauka/interperiodica,1 -makadam,1 -makumira publications,1 -manchester university press,2 -maney publishing,1 -manohar publishers & distributors,1 -marcel dekker,1 -marie curie sklodowska university press,1 -marin drinov academic publishing house,1 -mario congedo editore,1 -marquette university press,1 -martin dunitz,1 -brill nijhoff,2 -maruzen,1 -mary ann liebert,1 -materials research society,1 -mattes verlag,1 -max niemeyer,2 -mcdonald institute for archaeological research,1 -mcfarland,1 -mcgill-queens university press,1 -mcgraw-hill,1 -medpharm networks,1 -mentis verlag,1 -mercer university press,1 -merve verlag,1 -methuen,1 -metropol verlag,1 -meyer & meyer sport,1 -michigan state university press,1 -middlesex university press,1 -minard,1 -lettres modernes minard,1 -mineralogical society of america,1 -"minerals, metals & materials society",1 -minerva,0 -minerva shobo,1 -minnesota historical society press,1 -misjonshøgskolens forlag,1 -mit press,3 -modern humanities research association,1 -modern language association of america,1 -mohr siebeck,2 -morgan & claypool publishers,1 -morgan kaufmann publishers,1 -motilal banarsidass,0 -mouton de gruyter,2 -mucchi editore,1 -multilingual matters,2 -multi-science publishing,1 -multivers,1 -munksgaard,1 -munshiram manoharlal,1 -muravei publishers,1 -murmansk state humanities university,1 -museum of modern art,1 -museum tusculanum,1 -naklada jesenski i turk,1 -nashboro press,1 -national academies press,1 -national center for radio and television studies,1 -national trust,1 -natur och kultur,1 -nature publishing group,0 -naval institute press,1 -nederlands instituut voor het nabije oosten,1 -neukirchener verlag,1 -new york academy of sciences,1 -new york university press,2 -national institute of adult continuing education,1 -nias press,1 -nodus publikationen,1 -nomos,2 -nordic academic press,1 -nordica,1 -nordicom,1 -nordiska afrikainstitutet,1 -nordrhein-westfälische akademie der wissenschaften und der künste,1 -norsk arkitekturforlag,1 -norstedts,1 -norstedts juridik,1 -northern contemporary,1 -northern illinois university press,1 -northwestern university press,1 -norwegian-american historical association,1 -norvik press,1 -nottingham university press,1 -nova science publishers,1 -novus forlag,1 -nrc research press,1 -nueva sociedad,1 -oceanside publications,1 -oekom verlag,1 -ohio state university press,1 -ohio university press,2 -ohmsha,1 -old testament society of south africa,1 -de gruyter oldenbourg,1 -editiones scholasticae,1 -open court publishing company,1 -open university press,1 -ophrys,1 -oplandske bokforlag,1 -orbis books,1 -ordfront förlag,1 -oregon state university press,1 -orient blackswan,1 -orkana forlag,1 -otava,0 -ox bow press,2 -oxbow books,1 -oxford university press,3 -pabst science publishers,1 -pace university press,1 -palgrave macmillan,2 -pan american health organization,1 -panama-verlag,1 -panozzo editore,1 -parlor press,1 -passagen verlag,1 -paul åström forlag,1 -paulist press,1 -pax forlag,1 -pearson education,1 -peeters,2 -pendragon press,2 -penn state university press,1 -pennwell books,1 -pergamon press,1 -peter lang,1 -phaidon press,1 -pharmaceutical press,1 -philip wilson publishers,1 -philosophical society of turkey,1 -phoibos verlag,1 -physica verlag,1 -pickering & chatto,1 -plaza y valdes,1 -plural editores,1 -plural publishing,1 -pluto press,1 -policy press,1 -politisk revy,1 -polity press,3 -polyteknisk forlag,1 -pontificium institutum biblicum,1 -portland press,1 -praeger,2 -praesens verlag,1 -pravda severa,1 -pearson higher education,1 -presses universitaires paris sorbonne,1 -presses de l`université laval,1 -presses de l`université de montréal,1 -presses de l`université du québec,1 -presses sorbonne nouvelle,1 -presses universitaires d`aix-marseille,1 -presses universitaires de bordeaux,1 -presses universitaires de caen,1 -presses universitaires de france,2 -presses universitaires de franche-comté,1 -presses universitaires de rennes,1 -presses universitaires de strasbourg,1 -presses universitaires du septentrion,1 -princeton architectural press,1 -princeton university press,3 -pro-ed,1 -professional engineering publishing,1 -profil verlag,1 -projektverlag,1 -prosveshcheniye publishing,1 -psychology press,1 -psychosozial-verlag,1 -dansk psykologisk forlag,1 -publicacions de la universitat de valència,1 -publications du crahm,1 -purdue university press,1 -pyatigorsk state linguistic university publishing house,1 -quality press,1 -quasar,1 -radcliffe publishing,1 -rainer hampp verlag,1 -rand corporation,1 -random house,0 -raster förlag,1 -rawat,1 -reaktion books,1 -real academia de ciencias,1 -reclam verlag,1 -red dot,1 -regnum books,1 -research publishing services,1 -research signpost,1 -rff press,1 -rhodos,1 -riksantikvarieämbetet,1 -rilem publications,1 -rit press,1 -rockefeller university press,1 -rocky mountain modern language association,1 -brill rodopi,2 -rombach druck- und verlagshaus,1 -roskilde universitetsforlag,1 -rossijskaja akademija nauk,1 -rossijskaja nacionalnaja biblioteka,1 -routledge,2 -routledge mental health,1 -routledgecurzon,1 -routledgefalmer,2 -rowman & littlefield publishers,2 -royal meteorological society,1 -royal society of chemistry,2 -royal society of medicine press,1 -rozenberg publishers,1 -rsc,1 -russell sage foundation,1 -rutgers university press,1 -rüdiger köppe verlag,1 -s. karger,1 -sargon editrice,1 -sae international,1 -sage publications,3 -sakkoulas publishers,1 -sall data,1 -samfundslitteratur,1 -santérus academic press,1 -sar press,1 -elsevier saunders,1 -scandinavian academic press,1 -scandinavian veterinary press,1 -scarecrow press,1 -schattauer,1 -schibri-verlag,1 -schildts & söderströms,0 -schneider verlag hohengehren,1 -scholars´ press,0 -school of oriental and african studies,1 -science publishers inc.,1 -scientific association for infocommunications,1 -scm press,1 -scottish place-name society,1 -sean kingston publishing,1 -sebu forlag,1 -sellier,1 -brill sense,1 -société pour l`étude du proche-orient ancien,1 -shaker verlag,1 -sheffield phoenix press,1 -singapore university press,1 -skira,1 -skolska knjiga,1 -slavica publishers,1 -slowo / obraz terytoria,1 -smithsonian institution scholarly press,1 -snorrastofa,1 -sns förlag,1 -sociedad mexicana de entomología,1 -société de législation comparée,1 -"société de l`electricité, de l`electronique et des technologies de l`information et de la communication",1 -société royale de numismatique de belgique,1 -society antiquaries of scotland,1 -society for industrial and applied mathematics,1 -"society for mining, metallurgy and exploration",1 -society for underwater technology,1 -society of automotive engineers,1 -society of biblical literature,2 -society of environmental toxicology and chemistry,1 -society of naval architects and marine engineers,1 -society of petroleum engineers,1 -society of plastics engineers,1 -society of sedimentary geology,1 -solum,1 -south african institute of mining and metallurgy,1 -southern illinois university press,1 -southern methodist university press,1 -soveltavan kielentutkimuksen keskus,0 -spartacus,1 -springer spektrum,1 -spie,1 -spon press,1 -springer,2 -springer publishing company,1 -springer science+business media,2 -st. jerome publishing,1 -st. martins press,1 -st. petersburg university press,1 -stanford university press,3 -state university of new york press,2 -stauffenburg verlag,0 -stroemfeld verlag,1 -studentlitteratur,1 -studienverlag,1 -sub-saharan publishers,1 -suhrkamp,2 -suomalainen tiedeakatemia,2 -suomalaisen kirjallisuuden seura,2 -suomalais-ugrilainen seura,1 -suomen lääkäriliitto,0 -suomen muinaismuistoyhdistys,1 -suomen tiedeseura,1 -sussex academic press,1 -swedish science press,1 -sweet & maxwell,1 -svenska litteratursällskapet i finland,2 -swets & zeitlinger,1 -syddansk universitetsforlag,1 -östlings bokförlag symposion,1 -synchron,1 -sypress forlag,1 -syracuse university press,2 -system dynamics society,1 -systime academic,1 -szczecin university press,1 -sächsischen akademie der wissenschaften zu leipzig,1 -t&t clark,1 -taidehistorian seura,1 -alma talent,1 -tampere university press,1 -tapir akademisk forlag,1 -taschen,1 -taylor & francis,2 -teachers college press,1 -techne press,1 -teis,1 -tel aviv university,1 -temple university press,1 -teos,1 -terveyden ja hyvinvoinnin laitos,0 -texas a&m university press,1 -texas christian university press,1 -texas tech university press,1 -texas western press,1 -thales,1 -thames & hudson,1 -american university in cairo press,1 -australasian institute of mining and metallurgy,1 -bialik institute publishing house,1 -caddis press,1 -design society,1 -helen hamlyn centre for design,1 -mathematical association of america,1 -neo-assyrian text corpus project,1 -red sea press,1 -society for imaging science and technology,0 -society for modeling and simulation international,0 -university of akron press,1 -university of alabama press,1 -university of alberta press,1 -university of arkansas press,1 -university of virginia press,1 -university press of kentucky,1 -thieme medical publishers,1 -thomas telford,1 -transaction publishers,1 -transcript verlag,1 -transnational publishers,1 -trauner verlag,1 -trentham books,1 -troubador publishing,1 -truman state university press,1 -turia + kant,1 -tutkijaliitto,1 -työterveyslaitos,0 -työväen historian ja perinteen tutkimuksen seura,1 -ugo mursia editore,1 -uitgeverij boom,1 -unesco,0 -unge pædagoger,0 -union académique internationale,1 -unisa press,1 -icon : the institute of conservation,1 -united nations university press,1 -united states institute of peace press,1 -univers enciclopedic,1 -universidad nacional autónoma de méxico,0 -universitatea babes-bolyai,1 -universitetsforlaget,1 -university of alaska press,1 -university of arizona press,1 -university of birmingham press,1 -university of british columbia press,1 -university of california press,2 -university of chicago press,3 -university of delaware press,1 -university of exeter press,1 -university of georgia press,1 -university of hawaii press,1 -university of iceland press,1 -university of illinois press,1 -university of iowa press,1 -university of latvia press,1 -university of maine press,1 -university of massachusetts press,1 -university of michigan press,2 -university of minnesota press,2 -university of missouri press,1 -university of nebraska press,1 -university of new mexico press,1 -university of new south wales press,1 -university of nevada press,1 -university of north carolina press,2 -university of north texas press,1 -university of oklahoma press,1 -university of pennsylvania press,2 -university of pittsburgh press,1 -university of plymouth press,1 -university of puerto rico press,1 -university of rochester press,1 -university of salford,1 -university of south carolina press,1 -university of tennessee press,1 -university of texas press,1 -university of the west indies press,1 -university of toronto press,1 -university of utah press,1 -university of wales press,1 -university of warsaw press,1 -university of washington press,1 -university of wisconsin press,1 -university press of america,1 -university press of colorado,1 -university press of florida,1 -university press of kansas,1 -university press of mississippi,1 -university press of new england,1 -universitätsverlag winter,2 -urban & fischer,1 -usenix : the advanced computing systems association,1 -ustav pro ceskou literaturu,1 -utah state university press,1 -utb verlag,1 -uvk verlagsgesellschaft,1 -kohlhammer,1 -w.w. norton,1 -waanders,1 -wageningen academic publishers,1 -wallflower press,1 -wallstein verlag,2 -vanden broele,1 -vandenhoeck & ruprecht,2 -vanderbilt university press,1 -washington state university press,1 -wasmuth,1 -vastapaino,2 -watson publishing international,1 -waxmann,1 -wayne state university press,1 -vdf hochschulverlag ag an der eth zürich,1 -vdm verlag dr. müller,0 -weaver press,1 -vedams books,1 -wehrhahn verlag,1 -weidler buchverlag,1 -verlag anton saurwein,1 -verlag barbara budrich,1 -verlag der österreichischen akademie der wissenschaften,1 -verlag des römisch-germanischen zentralmuseums,1 -verlag dr. köster,1 -verlag fassbaender,1 -brill schöningh,1 -verlag für polizeiwissenschaft,1 -hamburger edition his verlagsges,1 -verlag hans huber,1 -j. b. metzler,2 -verlag julius klinkhardt,1 -verlag karl alber,1 -verlag marie leidorf,1 -verlag otto sagner,1 -verlag philipp von zabern,1 -verlag rüegger zürich,1 -verlag schnell und steiner,1 -verlag vorwerk 8,1 -verlagsgruppe beltz,1 -verso,2 -veröffentlichungen der universität duisburg-essen,1 -wesleyan university presss,1 -west virginia university press,1 -westburn publishers,1 -westminster john knox press,1 -westview press,1 -white horse press,1 -whittles publishing,1 -vidarforlaget as,1 -vienna university press,1 -vikingeskibsmuseet,0 -wiley-blackwell,2 -wiley-vch verlag,2 -wilfrid laurier university press,1 -wilhelm fink verlag,2 -willan publishing,1 -eerdmans,1 -william carey library,1 -virtus interpress,1 -wissenschaftliche buchgesellschaft,1 -wissenschaftlicher verlag trier,1 -wissenschaftsverlag vauk kiel,1 -wit press,1 -vita e pensiero,1 -witherby publishing group,1 -wits university press,1 -vittorio klostermann,2 -witwatersrand university press,1 -wolters kluwer,1 -woodhead publishing,1 -world scientific,1 -wseas press,0 -vostochnaya literatura,1 -springer vs,1 -wsoy,0 -sanoma pro,0 -vsp international science publishers,1 -uniwersytetu mikolaja kopernika,1 -wydawnictwo naukowe uniwersytetu im. adama mickiewicza,1 -wydawnictwo via nova,1 -wydawnictwu adam marszalek,1 -yale university press,3 -yokohama publishers,1 -zed books,2 -åbo akademis förlag,1 -aalto-yliopisto,0 -accademia della crusca,1 -antenore,1 -aracne editrice,1 -arator,0 -arbeidsforskningsinstituttet,0 -asm press,1 -avain,0 -bentham science publishers,1 -bonacci,0 -breitkopf & härtel,1 -center for international forestry research,0 -classiques garnier,1 -diakonia-ammattikorkeakoulu,0 -dialogos förlag,1 -edipuglia,0 -edition patrick frey,0 -editorial aresta,1 -editorial de la universidad de costa rica,0 -edizioni della normale,1 -edizioni dell´orso,1 -einaudi,0 -elämäntapaliitto,0 -emmegi,0 -ets,0 -council of europe,0 -evropejskij dom,0 -facultas,0 -finra ry,0 -food and agriculture organization of the united nations,0 -fundación p.i.e.b.,0 -geologian tutkimuskeskus,0 -guangxi normal university press,0 -guerra,0 -harjavallan kaupunki,0 -helsingin seudun kauppakamari,0 -helsingin yliopisto,0 -historiska media,1 -hyönteistarvike tibiale oy,0 -ibfd,1 -il mulino,0 -intech open,0 -infor,0 -itä-suomen yliopisto,0 -rossiiskaya politicheskaya enciklopediya,0 -jyväskylän kaupunki,0 -jyväskylän yliopisto,0 -kajaanin ammattikorkeakoulu,0 -kansaneläkelaitos,0 -kehrämedia oy,0 -kirkon tutkimuskeskus,0 -kol`skij nauchny`j centr ran,0 -kansallinen koulutuksen arviointikeskus,0 -koulutuksen arviointineuvosto,0 -kulttuuripoliittisen tutkimuksen edistämissäätiö,0 -kuluttajatutkimuskeskus,0 -aurinko kustannus,0 -ilias oy,0 -kuvataideakatemia,0 -lap lambert academic publishing,0 -lappeenrannan kaupunki,0 -lappeenrannan teknillinen yliopisto,0 -laterza,0 -le monnier università,0 -vrin,1 -like,0 -london metropolitan university,0 -maa- ja elintarviketalouden tutkimuskeskus,0 -medusa-software,0 -metsäkustannus,0 -miina sillanpään säätiö,0 -"musiikin, kulttuurin ja taiteen edistämisyhdistys ry",0 -national metallurgical academy of ukraine,0 -nifu,1 -nino aragno editore,1 -nordfo,0 -novoe literaturnoe obozrenie,1 -nuori suomi ry,0 -oikeuspoliittinen tutkimuslaitos,0 -omakustanteet,0 -opetus- ja kulttuuriministeriö,0 -opetushallitus,0 -opinpaja,0 -oulun yliopisto,0 -oxford research,0 -finn lectura,0 -paperi ja puu oy,0 -pohjois-suomen historiallinen yhdistys,0 -pqr-kultur,0 -international society for professiornal innovation management,0 -santalahti-kustannus,1 -pudasjärven kaupunki,0 -puolustusministeriö,0 -pääkaupunkiseudun sosiaalialan osaamiskeskus socca,0 -republic of letters,1 -riista- ja kalatalouden tutkimuslaitos,0 -rossijskaya pravovaya akademiya ministerstva yusticii rossijskoj federacii,0 -salerno editrice,1 -satakunnan museo,0 -"secretariat of the convention on biological diversity, implementation and outreach division",0 -siirtolaisuusinstituutti,0 -slovenský archeologický a historický inštitút,0 -sitra,0 -suomen kuntaliitto,0 -suomen käyttäytymistieteellinen tutkimuslaitos,0 -suomen lähetysseura ry,0 -suomen rakennusmedia oy,0 -suomen ympäristökeskus,0 -svenska handelshögskolan,0 -tankesmedjan magma,0 -teatterikorkeakoulu,0 -tekes,0 -teologiska fakulteten vid åbo akademi,0 -tietosanoma,0 -tivit,0 -tufnell press,1 -turun kauppakorkeakoulu,0 -turun yliopisto,0 -työ- ja elinkeinoministeriö,0 -ursa,0 -unigrafia oy,0 -utet libreria,0 -vaasan yliopisto,0 -vtt,0 -valtioneuvoston kanslia,0 -valtiotieteellinen yhdistys,1 -valtiovarainministeriö,0 -vecchiarelli,0 -verlag empirische pädagogik,1 -wochenschau,0 -astroprint,0 -äidinkielen opettajain liitto ry,0 -äidinkielen opetustieteen seura,0 -poliisiammattikorkeakoulu,0 -max-lab,0 -sanasato,0 -tampereen teknillinen yliopisto,0 -helsingin kaupunki,0 -ulkopoliittinen instituutti,0 -académie des sciences belles-lettres et arts de besançon et de franche-comté,1 -amanita,0 -"ámbar diseño, s.c.",0 -archives contemporaines,1 -alto comissariado para a imigração e diálogo intercultural,1 -artos & norma bokförlag,0 -suomen valtio,0 -ateneumin taidemuseo,0 -athens institute for education and research,0 -yazyki slavyanskoj kultury,1 -baltic development forum,0 -bergamo university press,0 -verlag bertelsmann stiftung,0 -bibliothèque historique vaudoise,0 -biobien innovations,0 -bokförlaget bas,0 -brookes publishing,1 -caister academic press,0 -universidad de cantabria,0 -national central university,0 -kirkkohallitus,0 -imprensa universidade de coimbra,0 -collegium biblicum,0 -commercial press,0 -cq press,0 -izdatel stvo delo,0 -departamento de agricultura de la diputación foral de bizkaia,0 -university of malta,0 -universidade de coimbra,0 -deutscher akademischer austauschdienst,0 -dgvt verlag,0 -djøf,1 -eburon,1 -kaleida forma,0 -edizioni di storia e letteratura,0 -eduskunnan tulevaisuusvaliokunta,0 -eesti keele sihtasutus,0 -eesti teaduste akadeemia kirjastus,1 -european food safety authority,0 -taloustieto oy,0 -epilepsy australia limited,1 -erich schmidt verlag,1 -euro+med plantbase,0 -european consortium for church and state research,0 -espon,0 -facet publishing,1 -prešovská univerzita,0 -firera & liuzzo publishing,1 -suomen bioenergiayhdistys ry,0 -formatex research center,0 -formalpress,0 -franzbecker,0 -future internet assembly,0 -föreningen brage,0 -förvaltningshögskolan vid göteborgs universitet,0 -hämeen ammattikorkeakoulu,0 -helbing lichtenhahn,0 -herbert von halem verlag,1 -research institute for humanity and nature,0 -international society of automation,0 -jan van eyck academie,0 -johtamistaidon opisto,0 -kandidaattikustannus oy,0 -kaposvári egyetem,0 -kemi-tornion ammattikorkeakoulu,0 -kerhokeskus - koulutyön tuki ry,0 -kogan page,0 -la documentation francaise,1 -laurea-ammattikorkeakoulu,0 -libri publishing,0 -lodz university press,0 -maahenki,0 -maanpuolustuskorkeakoulu,0 -maggioli editore,1 -magnolia press,1 -manifestolibri,0 -mediakasvatusseura,0 -mercator european research centre,0 -the merlin press ltd,0 -metropolis,0 -ulkoasiainministeriö,0 -museum für völkerkunde hamburg,0 -"museum of evolution, uppsala",0 -naisit publishers,0 -contemporary history fund,1 -transworld research network,1 -trovant,0 -severo-zapadnaya akademiya gosudarstvennoj sluzhby`,0 -non fighting generation ry,0 -nordiska museets förlag,0 -norsk utenrikspolitisk institutt,0 -jenny stanford publishing,1 -paradigm publishers,1 -pen & sword,0 -pensoft publishers,1 -pohjois-karjalan ammattikorkeakoulu,0 -potsdam universitätsverlag,1 -presses universitaires blaise pascal,1 -processeng engineering,0 -pskovskii gosudarstvenny`i pedagogicheskii universitet imeni s. m. kirova,0 -publications de la sorbonne,0 -redleaf press,0 -research-publishing.net,0 -rollespilsakademiet,0 -satakunnan ammattikorkeakoulu,0 -savukeidas,0 -shipra publications,0 -social sciences academic press,1 -statens offentliga utredningar,0 -studia academica slovaca,0 -summa,0 -satakunnan historiallinen seura ry,0 -suomen jazz & pop arkisto,0 -svenska kyrkohistoriska föreningen,0 -tallinna ülikool,0 -tammi,0 -tampereen kaupunki,0 -tartu ülikooli kirjastus,1 -warburg institute,0 -trans tech publications,1 -united states department of agriculture forest service,0 -united nations,0 -universidad de deusto,0 -university of ljubljana,0 -university of notre dame press,1 -"institutionen för nordiska språk, uppsala universitet",1 -african sun media,1 -utet,0 -w. bertelsmann verlag,0 -verlag bauer & raspe,0 -verlag der carl friedrich von wiezsäcker stiftung,0 -wunderkammer press,0 -wydawnictwa uniwersytetu warszawskiego,0 -väestöliitto,0 -väyläkirjat,0 -ympäristöministeriö,0 -zeta books,1 -nanjing university press,0 -st. petersburgskij gumanitarny`j universitet profsoyuzov,0 -globe law and business,1 -lapin yliopisto,0 -tampereen yliopisto,0 -åbo akademi,0 -aboa centre for economics,0 -akava,0 -alue- ja ympäristötutkimuksen seura ry,0 -designmuseo,0 -eläketurvakeskus,0 -filmiverkko ry,0 -finlands svenska andelsförbund,0 -fotogrammetrian ja kaukokartoituksen seura,0 -föreningen för nordisk filologi,0 -gallen-kallelan museo,0 -hallinnon tutkimuksen seura,0 -helsingin seudun liikenne -kuntayhtymä,0 -helsinki-kirjat oy,0 -hipputeos oy,0 -hämeenlinnan kaupunki,0 -icomosin suomen osasto ry,0 -international environmental history group,0 -juminkeko-säätiö,0 -jyväskylän ammattikorkeakoulu,0 -kansallinen sivistysliitto ry,0 -karisto oy,0 -karttakeskus oy,0 -katharos oy,0 -kauppalehti,0 -kauppatieteellinen yhdistys ry,0 -kaustisen lukio,0 -kehitysvammaliitto ry,0 -keski-suomen sukututkijat ry,0 -kirjallisuudentutkijain seura,0 -kirjallisuus- ja kulttuuriyhdistys särö ry,0 -kirkon ulkomaanapu,0 -kopijyvä,0 -kunnallisalan kehittämissäätiö,0 -kustannus oy rajalla,0 -kustannus oy uusi tie,0 -kustannusosakeyhtiö atlasart,0 -kymenlaakson ammattikorkeakoulu,0 -lahden ammattikorkeakoulu,0 -lapin tutkimusseura ry,0 -lastenkirjainstituutti,0 -leadec leadership development center oy,0 -limor kustannus,0 -lähikuva-yhdistys,0 -maaseudun uusi aika ry,0 -metropolia ammattikorkeakoulu,0 -metsähallitus,0 -metsäntutkimuslaitos,0 -muotialan asuin- ja toimintakeskus,0 -"opetus-, kasvatus- ja koulutusalojen säätiö",0 -oulun seudun ammattikorkeakoulu,0 -oy valitut palat - readers digest ab,0 -parvs publishing,0 -posiva oy,0 -prologos ry,0 -pyhäjärvi-instituutti,0 -päijät-hämeen liitto,0 -päijät-hämeen tutkimusseura ry,0 -rakennustieto oy,0 -rantasalmen ympäristökasvatusinstituutti,0 -rovaniemen ammattikorkeakoulu,0 -saarijärvi-seura r.y.,0 -saksalainen kirjastoyhdistys ry,0 -satakuntaliitto,0 -savon koulutuskuntayhtymä,0 -savon sotilasperinneyhdistys porrassalmi r.y.,0 -sibelius-akatemia,0 -sievin kunta,0 -siy sisäilmatieto oy,0 -sosiaali- ja terveysministeriö,0 -sosiaali- ja terveysturvan keskusliitto,0 -sosiaalityön tutkimuksen seura,0 -suojärven pitäjäseura,0 -suomen ainedidaktinen tutkimusseura,0 -suomen antropologinen seura,0 -suomen arkeologinen seura,0 -suomen geoteknillinen yhdistys ry,0 -suomen historiallinen seura ry,0 -suomen humanistiliitto,0 -suomen kansantietouden tutkijain seura ry,0 -suomen kouluhistoriallinen seura,0 -suomen kääntäjien ja tulkkien liitto ry,0 -suomen maantieteellinen seura,0 -suomen maatalousmuseo sarka,0 -suomen rakennustaiteen museo,0 -suomen rauhantutkimusyhdistys ry,0 -suomen sotatieteellinen seura ry,0 -suomen taideyhdistys,0 -suomen tilastoseura ry,0 -suomen toimikunta euroopan turvallisuuden edistämiseksi,0 -suomen yk-liitto ry,0 -suomi-ranska yhdistysten liiton nuorisotoimikunta ry,0 -svenska skolhistoriska föreningen i finland rf.,0 -sylva ry,0 -tampereen ammattikorkeakoulu,0 -tekniikan historian seura ths ry,0 -teknologiainfo teknova oy,0 -teknologiateollisuus ry,0 -the westermarck society ry,0 -therapeia-säätiö,0 -tilastokeskus,0 -torniolaakson neuvosto,0 -tornionlaakson maakuntamuseo,0 -turun ammattikorkeakoulu,0 -turun historiallinen yhdistys ry,1 -turun taidemuseo,0 -uudenmaan liitto,0 -vaasan tiedekirjasto,0 -valamon luostari,0 -valtion taloudellinen tutkimuskeskus,0 -vihreä sivistysliitto ry,0 -vuorimiesyhdistys ry,0 -yhteiset lapsemme ry,0 -aalto university executive education oy,0 -amos andersonin taidemuseo,0 -"australian government - department of innovation, industry, science and research",0 -"behrs, b., verlag gmbh & co. kg",0 -brandeis university press,1 -chandos,0 -china architecture and building press,0 -createspace,0 -docendo,0 -eco-innovation observatory,0 -editions a. pedone,0 -editions de laube,0 -éditions yvon blais,0 -editorial académica española,0 -ehkäisevä päihdetyö ehyt ry,0 -european commission,0 -european research institute for social work,0 -finanssi- ja vakuutuskustannus oy finva,0 -friedrich-ebert-stiftung,0 -getsemania - kalervo palsan ystävät ry,0 -international council for research and innovation in building and construction,0 -international labour organisation,0 -international monetary fund,0 -into,1 -kalevi sorsa -säätiö,0 -karel`skij nauchny`j centr ran,0 -karjalan kielen seura ry,0 -kingston business school,0 -kiviteollisuusliitto ry,0 -klaip?dos universiteto leidykla,0 -kon acad wetenschappen letteren,0 -kuntoutussäätiö,0 -paasilinna,0 -lahti venture capitals,0 -magnus publications,0 -narcissus self publishing,0 -natura optima dux foundation,0 -nauchno-izdatelskij centr indrik,0 -nordens välfärdscenter,0 -now publishers,0 -petrozavodskij gosudarstvenny`j universitet,0 -psychiatria fennica oy,0 -renome,0 -research institute for a tobacco free society (riftfs),0 -seinäjoen ammattikorkeakoulu,0 -serus oy,0 -sos-lapsikylä ry,0 -suomen pankki,0 -suomen pelastusalan keskusjärjestö ry,0 -työtehoseura ry,0 -ulster institute for social research,0 -juvenes print,0 -k&h-kustannus,0 -gower,1 -"akademia muzyczna im. karola lipi?skiego, rada biblioteczno-wydawnicza",0 -black dog press,0 -univerza na primorskem,0 -veritas,0 -kustannusosakeyhtiö medicina oy,0 -kmk scientific press,0 -battlebridge publications,0 -jelenkor kiadó,0 -kustannus oy maamerkki,0 -mirovni institut,0 -tieteentekijöiden liitto,0 -eesti kunstimuuseum,0 -iatefl,0 -maa- ja metsätalousministeriö,0 -lurra editions,0 -epubli : ein imprint der neopubli,0 -akademika forlag,1 -baltic university press,0 -verlag für gesprächsforschung,0 -pontifical institute of mediaeval studies,0 -"akademia ekonomiczna im. karola adamieckiego, wydawnictwo uczelniane",0 -whiting & birch,0 -suomen museoliitto ry,0 -tilde university press,0 -stichting werkgroep adelsgeschiednis,0 -kampus kustannus,0 -ensi- ja turvakotien liitto,0 -salem press,0 -teatterimuseo,0 -nordic council of ministers,0 -open book publishers,1 -thelem,0 -mediapinta,0 -v & r unipress,1 -joensuun taidemuseo,0 -who regional office for europe,0 -sammakko,0 -edições pedago,0 -lars müller publishers,0 -vilnius university,0 -alinea editrice,0 -cern - the european organization for nuclear research,0 -arctic monitoring and assessment programme,0 -rossijskij gosudarstvenny`j gumanitarny`j universitet,0 -welsh academic press,1 -tokai university press,0 -cornell university southeast asia program publications,0 -netbiblo,0 -cengage learning asia,0 -institut d´études slaves,0 -universidad de las palmas de gran canaria,0 -escuela técnica superior de arquitectura de madrid,0 -daanish books,0 -e`kon-inform,0 -higher education press,0 -schwabe verlag,0 -st. petersburg center for the history of ideas,0 -interesource group publishing,0 -didrichsenin taidemuseo,0 -högskolan kristianstad,0 -lönnströmin taidemuseo,0 -rovaniemen kaupunki,0 -ostravská univerzita,0 -dispute,0 -czestochowa university of technology,0 -s. hirzel verlag,0 -asser press,0 -n-1 publications,0 -council for international organizations of medical sciences,0 -wyższa szkoła ekonomiczna w białymstoku,0 -éditions nouvelles cécile defaut,0 -landsforeningen af læsepædagoger,0 -vk-kustannus oy,0 -addison-wesley,0 -oikeusministeriö,0 -korea national open university press,0 -suomen maataloustieteellinen seura,0 -cacucci editore,0 -walter & duncan gordon foundation,0 -deutsche bundesbank,0 -norges musikkhøgskole,0 -bückle & böhm,0 -online dictionary of intercultural philosophy,0 -european trade union institute,0 -european university institute,0 -hochschule für angewandte wissenschaften münchen,0 -heidelberg university,0 -sanoma magazines,0 -universidade de lisboa,0 -editura universitatii al. i. cuza,0 -pegem akademi,0 -timss & pirls international study center,0 -wohlers associates,0 -vu uitgeverij,0 -platforma obwatelska,0 -turun museokeskus,0 -cheske vysoke ucheni technicke v praze,0 -ehrensvärd-seura ry,0 -éditions érès,0 -södertörns högskola,0 -victoria business school,0 -jamtli,0 -societas sanctae birgittae,0 -gyldendal juridisk,0 -institutet för pentekostala studier,0 -future medicine ltd,0 -eidos,0 -lakehead university centre for northern studies,0 -hammaslääketieteen historian seura aurora,0 -museovirasto,0 -mäntykustannus,0 -grif i k,0 -karlstads universitet,0 -tappi press,0 -nsu press,0 -suomen kasvatus- ja perheneuvontaliitto,0 -vantaa-seura : vandasällskapet ry,0 -mikkelin valokuvakeskus,0 -idiootti,0 -s b editori,0 -saxa verlag,0 -vvm,0 -tekstiilikulttuuriseura ry,0 -"scuola vaticana di paleografia, diplomatica e archivistica",0 -imatran kaupunki,0 -international union of forest research organizations,0 -sheffield hallam university press,0 -tianjin ifengspace,0 -steiner schools fellowship publications,0 -stockholms universitet,0 -tverskoj gosudarstvenny`j universitet,0 -regnum,0 -institut razvitiya obrazovaniya,0 -algemeen rijksarchief,0 -matkailualan tutkimus- ja koulutusinstituutti,0 -lahden kaupunki,0 -mir russkogo slova,0 -eesti teatriliit,0 -teatterintutkimuksen seura ry,0 -mediakasvatuskeskus metka,0 -faros,0 -arcada -nylands svenska yrkeshögskola,0 -lestadiolainen uusheräys ry,0 -haaga-helia ammattikorkeakoulu,0 -argument-verlag,0 -kustannusyhtiö ta-tieto oy,0 -éditions ifrikiya,0 -larcier,0 -morcelliana,0 -presses universitaires de paris ouest,0 -belin,1 -universidad de valladolid,0 -del umbral,0 -pentagon press,0 -uppsala universitet,0 -cierre edizioni,0 -analytrics,0 -suomen sairaanhoitajaliitto ry,0 -payot,0 -common ground publishing,0 -academia-l´harmattan,0 -editura universitaria,0 -harbin institute of technology,0 -north pinehurst press,0 -oy turun sanomat,0 -suomen teologinen instituutti,0 -infinity publishing,0 -lääketietokeskus oy,0 -"koseisha koseikaku co., ltd.",0 -ekf líceum kiadó,0 -suomen kilpailuoikeudellinen yhdistys,0 -klartext verlagsgesellschaft mbh,0 -fingrid oyj,0 -sara hildénin taidemuseo,0 -międzynarodowego centrum kultury,0 -nyugat-magyarországi egyetem kiadó,0 -perheyritysten liitto,0 -euraap technical working group on compact antennas,0 -gsdi association,0 -viella,1 -turun kaupunki,0 -harvard oriental series,1 -academie royale de belgique,0 -center for global nonkilling,0 -kijárat kiadó,0 -leipziger universitätsverlag gmbh,0 -latvijas lauksaimniecības universitāte,0 -european science foundation,0 -europa édition,0 -rug bibliotheek,0 -stockholm institute for scandinavian law,0 -suomen keskiajan arkeologian seura ry,0 -suomen vanhan kirjallisuuden päivät,0 -slatkine,0 -prometheus,0 -suomen valokuvataiteen museon säätiö,0 -rossijskij gosudarstvennyj pedagogicheskij universitet im. a.i. gercena,0 -tallinna ülikooli kirjastus,1 -dreyers,0 -ediciones del orto,0 -villa lanten ystävät ry,0 -karnac books,0 -arena senter for europaforskning,0 -river publishers,1 -editions latomus,0 -balkanološki institut,0 -ekdoseis vanias,0 -sociedad española de paleopatología,0 -droste verlag,1 -universitäts-verlag webler,0 -parerga,0 -baltic marine environment protection commission,0 -bandecchi e vivaldi,0 -porin taidemuseo,0 -linköping university electronic press,0 -unifepress,0 -ilmamaa,0 -producciones cima,0 -sfk-ofis,0 -orquestra editora,0 -labor et fides,0 -molin & sorgenfrei förlag,0 -rosenlarv,0 -dialogue society,0 -raabe,0 -hedmark fylkeskommune,0 -informreklama,0 -aikamedia,0 -res publica,0 -krasnodarskij gosudarstvenny`j universitet kul`tury` i iskusstv,0 -narva muuseum,0 -lunar & planetary institute,0 -oecd,0 -suomen asiakkuusmarkkinointiliitto,0 -suomen kielen seura,0 -cité de l´architecture et du patrimoine,0 -ålands landskapsregering,0 -lulu.com,0 -nestor-istorija,1 -international debate education association,0 -pohjois-karjalan historiallinen yhdistys ry,0 -st. petersburgskij gosudarstvenny`j universitet,0 -javni sklad republike slovenije za kulturne dejavnosti,0 -vostochnaja literatura,0 -riskbook,0 -suomen akatemia,0 -international network for engineering education and research,0 -linnaeus university press,0 -bellona,0 -diamond light source ltd,0 -publikon,0 -institute of educational sciences,0 -bis publishers,0 -gia publications,0 -aller media oy,0 -suoseura ry,0 -työoikeudellinen yhdistys ry,0 -centar za demokraciju i pravo miko tripalo,0 -sisu idrottsböcker,0 -harbour,0 -allergiatutkimussäätiö,0 -padise vallavalitsus,0 -bertil ohlin förlag,0 -universidade de passo fundo,0 -lu latviešu valodas institūt,0 -keski-pohjanmaan ammattikorkeakoulu,0 -työväenperinne - arbetartradition ry,0 -suomen ympäristöoikeustieteen seura ry,0 -werner hülsbusch,0 -turvallisuustieteellinen yhdistys,0 -mandelbaum verlag,0 -publicacions de l´abadia de montserrat,0 -sternberg press,0 -padova university press,0 -tartu ülikool,0 -hymnologian ja liturgiikan seura,0 -chronos-verlag,0 -ivanovskij gosudarstvennyj universitet,0 -salon verlag,0 -eurajoen kotiseutuyhdistys,0 -svenska kyrkan,0 -ekdoseis papazisi,0 -lyubavich,0 -novoe izdatel`stvo,0 -world affairs press,0 -iaria xps press,0 -portal forlag,1 -kendall hunt publishing,0 -world health organization,0 -mac keith press,0 -nordic innovation,0 -international council of sport science and physical education,0 -vapaan sivistystyön yhteisjärjestö,0 -al-farabi kazakh national university,0 -arizona center fo medieval & renaissance studies,0 -armenian state pedagogical university,0 -associazione genesi,0 -aurora-kustannus,0 -centrum wiskunde & informatica,0 -crimetime,0 -editorial uoc,0 -ellinogermaniki agogi,0 -eno-verkkokoulun tuki ry,0 -hämeen heimoliitto ry,0 -international association for hungarian studies,0 -kotikielen seura,0 -metanoia instituutti,0 -observa science in society,0 -osuuskunta poesia,0 -symposium books,0 -sellier european law publishers,0 -shinhyoron,0 -taksvärkki ry,0 -klassika-xxi,0 -international association for the study of attachment,0 -yleinen teollisuusliitto ry,0 -petropolis,0 -metagis-systems,0 -shanghai normal university,0 -china ocean university press,0 -international ambient media association,0 -lugymedia,0 -markus wiener publishers,0 -open humanities press,1 -örebro universitet,0 -ilmatieteen laitos,0 -bhv-peterburg,0 -booktango,0 -chapman and hall/crc,1 -europa law publishing,1 -høgskolen i oslo og akershus,0 -hollolan kunta,0 -ipr university center,0 -"elinkeino-, liikenne- ja ympäristökeskusten yhteiset viestintäpalvelut -yksikkö",0 -karas-sana oy,0 -kulturstiftung sibirien,1 -kurikan kaupunki,0 -lääkealan turvallisuus- ja kehittämiskeskus fimea,0 -liikunnan ja kansanterveyden edistämissäätiö,0 -metaixmio,0 -mikkelin ammattikorkeakoulu,0 -neue gesellschaft für bildende kunst e.v.,0 -open society foundations,0 -payel yayinlari,0 -peking university press,0 -ruslania books oy,0 -shinyosha,0 -pietarsaaren kaupunki,0 -vesi- ja viemärilaitosyhdistys ry,0 -svensk-österbottniska samfundet r.f.,0 -united press global,0 -vantaan kaupunki,0 -ventus publishing,0 -wolkowicz editores,0 -zaglossus,0 -maks press,0 -academia verlag,1 -academperiodica,0 -agio publishing house,0 -akademija nauk tatarstan,1 -ambroobook,0 -annablume,0 -article press,1 -atlantic publishers & distributors,0 -automatic press,0 -bahcesehir university,0 -dvv media group gmbh,0 -caucasus institute,0 -göteborgs universitet,0 -konrad-adenauer-stiftung,0 -centre d études européennes,0 -universidad de buenos aires,1 -collaborative media group inc.,0 -volgogradskij gosudarstvenny`j universitet,0 -andromeda books,0 -universidade do minho,0 -iris group,0 -leykam buchverlag,0 -union of the baltic cities commission on environment,0 -consello da cultura galega,0 -conservation of arctic flora and fauna,0 -dalnauka,0 -de boeck,0 -debrecen university press,0 -des femmes - antoinette fouque,0 -didymos-verlag,0 -disserta verlag,0 -ediciones el almendro de córdoba,1 -ediciones godot,0 -editions du cipa,0 -éditions québécoises de l´oeuvre,0 -editora da universidade federal de minas gerais,0 -"editorial agrícola española, s.a.",0 -editura cetatea de scaun,0 -edizioni magma,0 -european forest institute,0 -égalité,0 -eiconics ltd,0 -ekho verlag,0 -eleven international publishing,1 -enke,0 -universität osnabrück,0 -europäischer hochschulverlag,0 -univerzita karlova,0 -firenze university press,1 -universität flensburg,0 -spring,0 -gondolat,0 -gotland university press,0 -högskolan i borås,0 -humanity in action press,0 -al-mujamma? al-thaq?f?,0 -international association of it lawyers,0 -ibis,0 -iconcept press,1 -information engineering research institute,0 -balassi intézet,0 -instituto nacional de pesquisas da amazônia,0 -institutul european,0 -izdatelskij dom azhur,0 -kokkolan kaupunki,0 -kalligram,0 -korean institute of ciriminology,0 -éditions la découverte,0 -la fundación para el desarrollo económico y social hispano-marroquí,0 -la pieve poligrafica editore,0 -ladan,0 -lannoo,0 -istorijos instituto leidykla,0 -lunds universitet,0 -framespa,0 -mediaxxi,0 -mittuniversitetet,0 -mintis,0 -missouri botanical garden press,0 -national chengchi university,0 -"akademicheskij nauchno-izdatel`skij, proizvodstvenno-poligraficheskij i knigorasprostranitel`skij centr ran izdatel`stvo nauka",0 -new academic press,0 -nippon hyoron,0 -njar publishers,0 -novosibirskij gosudarstvenny`j pedagogicheskij universitet,0 -österreichische computer gesellschaft,0 -universidad jorge tadeo lozano,0 -openword,0 -oulun historiaseura ry,0 -unipress,0 -pacific field corn association,0 -penerbit universiti sains malaysia,0 -penzenskij gosudarstvenny`j universitet,1 -perussanoma,0 -government population council,0 -pravna fakulteta ljubljana,0 -prensas de la universidad de zaragoza,1 -presses des mines,0 -presses universitaires de louvain,1 -presses universitaires de sainte gemme,0 -pskovskij gosudarstvenny`j universitet,0 -racine,0 -ramanujan mathematical society,1 -ram-verlag,0 -roman books,0 -universus academic press,1 -russell house publishing,0 -savaria university press,1 -scrivener publishing,0 -seers books,0 -severny`j (arkticheskij) federal`ny`j universitet,0 -nationaal informatiecentrum leermiddelen,0 -spck publishing,0 -styria multi media men gmbh & co kg thomas findler,0 -spinifex press,0 -suomen käsityön museo,0 -suomen oppihistoriallinen seura,1 -suomen sammalseura ry,0 -suomen toivo -ajatuspaja,0 -suomen ylioppilaskuntien liitto ry,0 -swedenborg foundation press,1 -starickaya tipografiya,0 -association of chartered certified accountants,0 -stiftelsen marknadstekniskt centrum,0 -southern african-nordic centre,0 -försvarshögskolan,0 -torkel opsahl academic epublisher,0 -turku centre for computer science,0 -turun a-kilta,0 -ubc press,1 -udmurtskij gosudarstvenny`j universitet,0 -umeå universitet. institutionen för nordiska språk,0 -umeå universitet,0 -uni-med verlag ag,0 -united nations environment programme and the world health organization,0 -università degli studi suor orsola benincasa,0 -universitätsverlag göttingen,0 -wydawnictwo uniwersytetu w białymstoku,1 -university of calgary press,1 -wydawnictwo uniwersytetu ekonomicznego w katowicach,0 -univerza v mariboru,0 -universidade trás-os-montes e alto douro,0 -universitetet i tromsø,0 -university of warwick,0 -venngeist,0 -westfälisches dampfboot,1 -wiley-iste,2 -wydawnictwo naukowe scholar,0 -acer press,0 -cei-bois,0 -cloud software finland,0 -centro matemática aplicada - universidade açores,0 -editura universităţii din bucureşti,0 -frame,0 -helsingin hovioikeus,0 -regionális kutatások intézete,0 -invalidisäätiö,0 -the international society for orthodox church music,0 -iuniverse publication,0 -kokos julkaisuja,0 -designskolen kolding,0 -metropolis m,0 -national art education association,0 -saaremaa ülikoolide keskus,0 -sällskapet moas vänner,0 -suomen lastenneurologinen yhdistys ry,0 -suomen biologian seura vanamo ry,0 -turku 2011 -säätiö,0 -universität innsbruck,0 -université de nantes,0 -barkhuis,0 -urbanismisäätiö,0 -bridging baltic,0 -orizons,0 -julkisten ja hyvinvointialojen liitto,0 -suomalaisen työn liitto,0 -association européenne pour l´enseignement en architecture,0 -ekumenik i norden,0 -fundacja rozwoju systemu edukacji,0 -wydawnictwo werset,0 -gosudarstvennaya polyarnaya akademiya,0 -pisa university press,1 -figura,0 -centre liégeois d´édition scientifique,0 -tambovskij gosudarstvennyj universitet im. g.r.derzhavina,0 -éditions de la société internationale d’études yourcenariennes,0 -libreria editrice vaticana,1 -visoka šola za zdravstvene vede slovenj gradec,0 -sibirskij gosudarstvennyj aerokosmitsheskij universitet,0 -korean women´s development institute,0 -högskolan dalarna,0 -wydawnictwo politechniki poznańskiej,0 -addleton academic publishers,1 -caminhos romanos,0 -hellenic folkore research centre,0 -arcipelago edizioni,0 -centar za crkvene studije,0 -võru instituut,0 -kovac,0 -herder-institut e.v.,1 -flinta,0 -ob``edinennoe gumanitarnoe izdatel`stvo,1 -akademicheskij proekt,0 -bo ejeby förlag,1 -language science press,2 -scientific and academic publishing,0 -officina di studi medievali,0 -"ediciones eunate, s.a.",1 -universidad de alcalá de henares,0 -respublikanskaya tipografiya krasny`j oktyabr`,0 -verbum,1 -wessmans musikförlag,0 -kht-media,0 -university press of eastern finland,0 -dunedin academic press,1 -shanghai foreign language education press,0 -europaeischer hochschulverlag gmbh & co. kg,1 -eclettica edizioni,0 -institutet för rättshistorisk forskning,1 -etc press,0 -cambridge scientific publishers ltd,1 -svenska fornskriftsällskapet,1 -sällskapet runica et mediaevalia,0 -eb-verlag,1 -universiti putra malaysia press,0 -aacc international,0 -moscow university press,0 -institut russkogo âzyka im. v.v. vinogradova,1 -academia,0 -ael,0 -vartija-aikakauslehden kannatusyhdistys r.y.,0 -tinta könyvkiadó,0 -american center for life cycle assessment,0 -suomen ortodoksisen kulttuurikeskuksen säätiö,0 -aschendorff,1 -atremi,0 -axac,1 -axl books,0 -"belgorodskij universitet kooperacii, e`konomiki i prava",0 -cascade books,0 -cengage gale,0 -ciriec-españa,0 -cleen oy,0 -cooperativa editorial magisterio,0 -davidsfonds,0 -daya publishing house,0 -delta book world,0 -deutsches jugendinstitut e.v.,0 -diaphanes ag,0 -edition lumière,1 -éditions passage(s),0 -editora sinodal,0 -editura universtitãtii transilvania din brasov,0 -la provincia sannita,0 -ekm teaduskirjastus,1 -eiho-sha,0 -ekdoseis alexandreia,0 -elena plaksina verlag,0 -eötvös loránd tudományegyetem,0 -presses universitaires de reims,1 -sisekaitseakadeemia,0 -euroopan muuttoliikeverkosto,0 -eurooppalainen suomi ry,0 -calico,1 -european educational research association,1 -european network of heads of schools of architecture,0 -european sleep research society,0 -finlandssvenska kompetenscentret inom det sociala området,0 -forest research institute,0 -freie universität berlin,0 -giannone edizioni,0 -editorial universidad de granada,0 -habelt,1 -hakkert,1 -helsingin kaupunginmuseo,0 -hermann,1 -herzog august bibliothek,0 -huoltaja-säätiö,0 -instytut filozofii i socjologii pan,0 -ihmisoikeuskeskus,0 -ikäinstituutti,0 -il centro di eccellenza per la cultura e la ricerca infermieristica,0 -instituto de estudios judiciales,1 -intergovernmental panel on climate change,0 -international peace studies centre,0 -ionia publications,0 -istituto affari internazionali,0 -altajskij gosudarstvenny`j universitet,0 -izdatelstvo uralskogo universiteta,0 -kokshetauskij gosudarstvennyj universitet im. sh. ualihanova,0 -johnny kniga,0 -jossey-bass,1 -jure förlag,0 -kasama shoin,0 -keskusrikospoliisi,0 -københavns universitet,0 -kodansha,0 -kok,0 -uniwersytet warmińsko-mazurski w olsztynie,0 -warelia,0 -lag och bok,0 -lakiasiainhuone oy,0 -langaa research and publishing common initiative group,0 -latviešu valodas agentura,0 -leiden university press,1 -libraries unlimited,0 -znanstvena založba filozofske fakultete univerze v ljubljani,0 -luontosäde,0 -max-planck-gesellschaft zur förderung der wissenschaften e.v.. bibliothek,0 -medical future verlag,0 -göteborgs universitet institutionen för svenska språket,0 -michael imhof verlag,0 -michigan publishing,1 -monash university publishing,1 -nakanishiya shuppan,0 -napkút kiadó,0 -nato cooperative cyber defence centre of excellence,0 -nemo,0 -ntamo,0 -graduate institute publications,0 -optik-verlag,0 -osaka books,0 -pacini editore,0 -palombi editori,0 -pickwick publications,0 -flick studio,0 -privatrettsfondet,0 -éditions de l´université de savoie,1 -raha-automaattiyhdistys,0 -editura institutului pentru studierea problemelor minorităţilor naţionale,0 -rubbettino,0 -sagamore publishing,0 -saudi commission for tourism and antiquities,0 -sauramps médical,0 -science press,0 -seikokai,0 -selskabet for skole- og uddannelseshistorie,0 -shojihomu.co,0 -showado,0 -sivuosa,0 -slovart publishing,0 -soste suomen sosiaali ja terveys ry,0 -edition leipzig,0 -suomen bysanttikomitea ry,0 -suomen tietokirjailijat ry,0 -ympäristökustannus oy,0 -riksarkivet,0 -sveriges lantbruksuniversitet,0 -nyugat-magyarországi egyetem savaria egyetemi központ,0 -tallinn creative hub,0 -taloudellinen tiedotustoimisto,0 -hellenic centre,0 -editura academiei române,0 -tieto- ja viestintätekniikan ammattilaiset ry,0 -tirant humanidades,0 -tjs opintokeskus,0 -tropenbos,0 -ugarit-verlag,0 -univerzitet u banjoj luci,0 -latvijas universitate,0 -university of tokyo,0 -academic & scientific publishers,1 -"institut yazy`ka, literatury` i istorii komi nauchnogo centra ural`skogo otdeleniya rossijskoj akademii nauk",0 -vaasan yritysinformaatio oy,0 -valdaj,0 -vanhustyön keskusliitto,0 -ventspils augstskola,0 -verdier,0 -"izdatel`stvo ""ves` mir""",0 -voltaire foundation,1 -welttrends,0 -zakład wydawniczy nomos,0 -gibb memorial trust,1 -centre d´études sur les médias,0 -editora ufpr,0 -university college dublin,0 -ammattiosaamisen kehittämisyhdistys amke ry,0 -logos pljus,0 -lietuvos edukologijos universitetas,0 -klog éditions,0 -instytut pamięci narodowej,0 -solfanelli editore,0 -cie internationale beleuchtungskommission,0 -nordic centre in shanghai,0 -the harry s. truman research institute for the advancement of peace,0 -ekonomická univerzita,0 -all european academies,0 -editora prismas,0 -dansk sprognævn,0 -birch and the star,0 -suomen egyptologinen seura ry,0 -ethniko kai kapodistriako panepistimio athinon,0 -università degli studi di napoli l´orientale,0 -ekonomiska forskningsinstitutet vid handelshögskolan i stockholm,0 -koulutuksen tutkimuslaitos,0 -open science publishers,0 -peniope verlag anja urbanek,1 -daigaku kyoiku shuppan,0 -lambert-lucas,1 -verso,0 -somogy éditions d´art,0 -anja mäntylän rahasto,0 -european educative projects,0 -ehv academicpress,1 -akdeniz university,0 -sh traveledu,0 -wydawnictwo libron,0 -hogeschool utrecht kenniscentrum technologie,0 -prince of songkla university,0 -european university cyprus,0 -eesti loomeagentuur oü,0 -uniwersytet śląski,0 -suomen syöpäyhdistys ry,0 -technische universität hamburg-harburg,0 -waterhill publishing,0 -finlands svenska folkdansring,0 -led edizioni universitarie,0 -templeton press,0 -paternoster press,0 -agenzia x,0 -american phytopathological society,1 -arhangelsk lotsiia,0 -balassi kiadó,0 -chemtec publishing,0 -cirad,1 -city university of hong kong,0 -community child care cooperative,0 -destech publications inc.,0 -éditions de linguistique et de philologie,1 -editora intersaberes,0 -aeternitas,0 -utajärven kunta,0 -eesti rahva muuseum,0 -euromed press,0 -european squirrel initiative,0 -eusl verlagsgesellschaft,0 -institución fernando el católico,0 -lasten keskus,0 -lenand,0 -luonnonvarakeskus,0 -magazine house,0 -metroverlag,0 -johannes gutenberg-universität,0 -on line förlag ab,0 -osaka kyoiku tosho,0 -partuuna,0 -universidad complutense de madrid,0 -rhode island school of design,0 -sidestone press,0 -sley-media oy,0 -spandugino,0 -wonca europe,0 -sued management oy,0 -suomen pipliaseura ry.,0 -strålsäkerhetsmyndigheten,0 -university of namibia press,1 -universitas studiorum,1 -università degli studi di bergamo,0 -university of western sydney,0 -oficyna wydawnicza sgh,0 -oficyna wydawnicza politechniki warszawskiej,0 -verbrecher verlag,0 -vest-agder-museet kristiansand,0 -wydawnictwo universytetu wroclawskiego,1 -yleisradio,0 -solombal`skaya tipografiya,0 -ob edinenie otechestvo,0 -ordena druzhby` narodov institut e`tnologii i antropologii im. n.n.mikluxo-maklaya rossijskoj akademii nauk,0 -"izdatel`skij centr ""azbukovnik""",0 -media-xolding yakutiya,0 -hiersemann,0 -vysoká škola výtvarných umení,0 -akademine leidyba,0 -alameda,0 -fino traço editora,0 -edições levana,0 -kustannusosakeyhtiö auditorium,0 -yazy`ki slavyanskoj kul`tury`,0 -bardwell press,0 -berkshire publishing group,0 -lunds universitets kyrkohistoriska arkiv,0 -central conservatory of music press,0 -centrum för arbetarhistoria i landskrona,0 -charles c. thomas publisher,0 -china social sciences press,1 -univerzita konštantína filozofa,0 -budapesti corvinus egyetem,0 -d.k. print world (p) ltd,0 -edify,0 -editora ufjf,0 -eme éditions,0 -eszterházy károly főiskola,0 -european press academic publishing,0 -sveučilište u zagrebu,0 -franco cesati editore,0 -fratelli lega,0 -gedisa,0 -gudrun schröder verlag,0 -icaria editorial,0 -institute for adult learning,0 -institut za uporedno pravo,0 -universidad de tarapacá,0 -intercoop,0 -"international energy agency, photovoltaic power systems programme",0 -instituto superior da maia,0 -israel exploration society,0 -kava-pech,0 -kolon,1 -sisäasiainministeriö,0 -perséides,0 -agerings bokförlag,0 -magyar tudományos akadémia,0 -max-planck-institut für europäische rechtsgeschichte,0 -mediamir,0 -ministerstwo spraw zagranicznych,0 -narratio,0 -národní muzeum,0 -nomerta kustannus oy,0 -ålands fredsinstitut,0 -ochanomizu shobo,0 -oneworld publications,0 -orion pharma,0 -univerzita mateja bela v banskej bystrici,0 -pensa multimedia,0 -stowarzyszenie pro cultura litteraria,0 -edizioni orientalia christiana,0 -quinnipiac university,0 -ril editores,0 -kanon,0 -canterbury press,0 -saqi books,0 -scientific research publishing,0 -sereco ab,0 -svenska kulturfonden,0 -thomson reuters,0 -tudpress,0 -universidad de los andes,0 -universidade da coruña,0 -veda,0 -vinnova,0 -visor,0 -international council for research in agro-forestry,0 -wydawnictwo sejmowe,0 -wydawnnictwo poznanskiego towarzystwa przyjaciol nauk,0 -yeditepe university,0 -universität für bodenkultur wien universitätsbibliothek,0 -aarhus universitet,0 -frontiers media,0 -kynnys ry,0 -pellervon julkaisupalvelu oy,0 -stiftelsen pro artibus,0 -fondacija za regionalno razvitie,0 -delft technical university,0 -dituria,0 -libraccio editore,0 -pearson ft press,1 -wuhan university press,0 -unesco chair on gender equality and women's empowerment - university of cyprus,0 -ltd publishing house universal,0 -kul`t-inform-press,0 -editorial doble j,1 -editorial universidad del rosario,0 -editorial sindéresis,1 -lund university press,1 -stockholm university press,1 -ubiquity press,0 -latvijas universitates latvijas vestures instituts,0 -ucl press,1 -norsk kulturråd,0 -atlantis press bv,0 -vde verlag,1 -university of portsmouth,0 -european union institute for security studies,0 -latvijas arpolitikas instituts,0 -landesverteidigungsakademie,0 -svenska institutet för europapolitiska studier,0 -centre for economic and regional studies of the hungarian academy of sciences,0 -postmetropolis editorial,0 -audio engineering society,0 -american society of mechanical engineers,1 -eai publishing,0 -scitepress science and technology publications,0 -european nuclear society,0 -association for information systems,1 -bmva press,1 -csrea press,0 -optical society of america,1 -international business information management association,0 -curran associates inc.,0 -infonomics society,1 -pulp & paper fundamental research society,1 -fördervereinigung fluidtechnik,1 -international cartographic association,1 -ecaade,1 -eurosis-eti,0 -société française de radioprotection,0 -fast-ls ltd,0 -zouhdi,1 -"fakulteta za organizacijske vede kranj, zalozba moderna organizacija",0 -institut jozef stefan,0 -world publishing audio-video & electronic press,1 -society of digital information & wireless communications,0 -space technology centre,0 -international statistical institute,1 -university of reading,0 -phonetics teaching & learning conference,1 -national institute of informatics,0 -centre des hautes études internationales d'informatique documentaire,0 -libreriauniversitaria.it,0 -bhatkal & sen,0 -european association of erasmus coordinators,0 -via university college,0 -cisa publisher,0 -universitätsverlag der tu berlin,1 -suomen filosofinen yhdistys ry,1 -presses universitaires de liège,1 -genueve ediciones,0 -arquitectura viva,0 -savonia-ammattikorkeakoulu,0 -suomen rakennusinsinöörien liitto ry.,0 -academy of fine arts in lodz,0 -vernon press,1 -university industry innovation network,0 -tallinna tehnikaülikooli kirjastus,0 -european association of distance teaching universities,0 -klaus schwarz verlag,1 -university of skövde,0 -linde verlag,1 -"causal productions pty, limited",0 -société européenne pour la formation des ingénieurs,1 -association scientifique pour la géologie et ses applications,0 -frommann-holzboog,1 -international council for small business,0 -czech institute of academic education,0 -international association of maritime universities,0 -c.f. müller,1 -nibio,0 -i6doc.com,0 -national technical university of athens,0 -tallinna tehnikaülikool,0 -antologia kiado,0 -belarusian state university,0 -burleigh and dodds science publishing,0 -wtm-verlag,1 -ecole d'architecture de grenoble,0 -gea college,0 -art house,0 -kuurojen liitto ry.,0 -university college cork,0 -atlas contact,0 -vesilaitosyhdistys ry.,0 -fontana media,0 -kustannusosakeyhtiö taide,0 -luterisma mantojuma fonds,0 -musikeon books,0 -higher school of economics,0 -hokkaido university,0 -aalborg universitet,0 -africa academy of management,0 -agh university of science and technology,0 -global change research institute of the czech academy of sciences,0 -alfred university press,0 -american association of physics teachers,1 -university of pretoria,0 -asociación de acústicos argentinos,0 -association for iron and steel technology,0 -association for teacher education in europe,1 -association mondiale de la route,0 -associazione italiana di metallurgiana,0 -australian acoustical society,0 -baltijskaâ meždunarodnaâ akademiâ,0 -balto print,0 -belgorodskij gosudarstvenny`j nacional`ny`j issledovatel`skij universitet,0 -book-of-abstracts.com,0 -bozen-bolzano university press,0 -brigham young university,0 -british academy of management,0 -budapesti m?szaki és gazdaságtudományi egyetem,0 -centar za istraživanje i razvoj upravljanja d.o.o.,0 -"preferred meeting management, incorporated",0 -cineclube avanca,0 -civil-comp press,0 -climate informatics,0 -comunicare.ro,0 -ediciones uo,0 -conspress,0 -copenhagen business school,0 -deutsche gesellschaft für luft- und raumfahrt - lilienthal-oberth e.v.,0 -diamond congress ltd,0 -dokuz eylül university,0 -hellenic maintenance society,0 -elliniki simeiotiki etairia,0 -ane books pvt. ltd.,0 -ems - editions management et société,0 -european distance and e-learning network,0 -european fuel cell forum ag,0 -handelshøyskolen,0 -european physical society,1 -european powder metallurgy association,0 -admiral makarov state university of maritime and inland shipping,0 -grada publishing,0 -books on demand,0 -university of newcastle upon tyne,0 -icccbe2016 organizing committee,1 -iimc international information management corporation ltd,0 -ikam - institute of knowledge asset management,0 -institute of research engineers & doctors,0 -instytut w?ókien naturalnych i ro?lin zielarskich,0 -intellectual property publishing house,0 -international aset,0 -international association for tourism policy,0 -international center for numerical methods in engineering cimne,1 -international institute of social and economic sciences,0 -international organization center of academic research,0 -international society for indoor air quality and climate,0 -saratov state university,0 -advanced building skins,0 -laser institute of america,0 -mate ltd.,0 -society for global business & economic development,0 -"nakanishi print co., ltd. shoukado shoten",0 -national institute of information and communications technology,0 -national institute of technology sendai college,0 -nceub,0 -newswood limited,0 -nordic academic press of architectural research,1 -nottingham trent university,0 -omniascience,0 -panepistimio peiraios,0 -pohto oy,0 -editorial cujae,0 -professor ian clarke,0 -profi-tisk group,0 -polimax,0 -society of motion picture and television engineers,0 -sophia centre press,0 -state research center of the russian federation,0 -szent istván university,0 -tbs research centre,0 -techconnect,0 -editura u.t. press,0 -technische universität bergakademie freiberg,0 -technische universität wien,0 -the choir press,0 -the silesian university of technology,0 -the society for east sea,0 -the society of naval architects of korea,0 -university of hong kong,0 -türk mühendys ve mymar odalari byrlydy,0 -grafisches zentrum htu gmbh,0 -universidade catolica portuguesa do porto,0 -universita degli studi di salerno,0 -universita degli studi di torino,0 -universitatsverlag ilmenau,0 -universite de lorraine,0 -fachhochschule nordwestschweiz,0 -university of aston,0 -university of glasgow,0 -architectural science association,0 -university of nottingham,0 -university of primorska press,0 -university of szeged,0 -university of technology sydney,0 -högskolan väst,0 -fh oö forschungs- & entwicklungs gmbh,0 -vdi verlag gmbh,0 -vilniaus kolegija,0 -wip wirtschaft und infrastruktur gmbh & co. planungs kg,0 -insciencepress,0 -vsb - technical university of ostrava,0 -finno-ugric studies association of canada,0 -heijnenkoelink,0 -luglio editore,0 -maciej kanert pro jezeli p to q,0 -suomi-venäjä-seura,0 -svenska missionsrådet,0 -uniwersytet warszwski,0 -uniwersytetu im. adama mickiewicza w poznaniu,0 -american society of agronomy,1 -internet society,0 -production & operations management society,0 -editorial de la universitat politècnica de valència,0 -african minds,0 -"lex nova, s.a.u.",0 -beech stave press,1 -hellenic open university,0 -quiedit,0 -nota bene yayinlari,0 -pun - editions universitaires de lorraine,1 -environmental law institute,1 -leftword books,0 -new age books,0 -university of belgrade,0 -cardiff university welsh school of architecture,0 -comunicación social ediciones y publicaciones,0 -universidad externado de colombia,0 -lidel,0 -lithos,0 -rb grafica,0 -quintessence publishing co ltd,0 -editoriale scientifica,1 -european parliament,0 -juristförlaget i lund,0 -garamond,0 -eddy.se ab,0 -mondial,0 -goodfellow publishers limited,0 -varrak as,0 -malta classics association,0 -voronezh state university,0 -university of zadar,0 -tritonic books,0 -bogucki wydawnictwo naukowe,0 -impressions nouvelles,0 -dike verlag,1 -wydawnictwo naukowe akapit,0 -pubblicazioni cassinesi,0 -universidade federal do amazonas,0 -"sindikat vzgoje, izobraževanja, znanosti in kulture slovenije",0 -wydawnictwo attyka,0 -grafica composer,0 -universitat politècnica de catalunya,0 -università degli studi roma tre,0 -main school of fire service,0 -eelk konsistoorium,0 -staryj sad,0 -institute of education press,1 -d.k. publishers & distributors,0 -izdatel'stvo kuzbassvuzizdat,0 -zlatoust,0 -rostok,0 -abai kazakh national pedagogical university,0 -vaasan ammattikorkeakoulu,0 -university of campinas,0 -pulp and paper technical association of canada,0 -university of waterloo,0 -editions du cerf,1 -tamkang university,0 -royal college of art,0 -design management institute,0 -"izdatel`stvo ""forum""",0 -fondo de cultura economica,0 -förlagsaktiebolaget scriptum,0 -hartung-gorre,0 -kansainvälisen liikkuvuuden ja yhteistyön keskus cimo,0 -norges geologiske undersøkelse,1 -cooperatie in planning ua,0 -fundacja interdisciplinary research foundation,0 -observer research foundation,0 -wfb wirtschaftsförderung bremen gmbh,0 -benet oy,0 -szkola glowna turystyki i rekreacji,0 -royal institution of naval architects,1 -euspen,0 -georg,0 -societas scientiarum olomucensis ii,0 -museums & the web,0 -conflict management institute (university of helsinki),0 -apple academic press inc.,0 -latvijas kara muzejs,0 -physical society of japan,1 -sigillum,0 -goldsmiths press,1 -edusp,0 -stockholmia förlag,0 -transnational press london,0 -presses universitaires de lyon,1 -interdisciplinary research foundation,0 -la ergástula,0 -punctum books,1 -ljubljana university press,0 -association pierre belon,0 -abrapso editora,1 -acsa press,0 -institut umění - divadelní ústav,1 -asia-pacific society for computers in education,0 -association of researchers in construction management,0 -atomic energy society of japan,1 -av-arkki,0 -editions averbode erasm,0 -bibacc publishing,0 -bibliopolis,0 -gleerups,0 -centre on foreign policy and federalism,0 -european police college,0 -"izdatel`stvo ""chisty`j list""",0 -national university of tucumán,0 -classicus,0 -vasto,0 -crossway,0 -edizioni cuecm,0 -dublin city university,0 -de facto editora,0 -editorial universidad de caldas,0 -design research society,1 -didakt kiadó,0 -docomomo international,0 -escola de artes ciências e humanidades,0 -ediciones universidad de salamanca,0 -edisai,0 -hochschule anhalt,0 -editora da furg,0 -editora milfontes,0 -médica panamericana,0 -educación editora,0 -"instituto politécnico de santarém, escola superior de educação",0 -european microwave association,0 -eur’orbem éditions,0 -centre for lifelong learning services,0 -svenska bildningsförbundet r.f.,0 -european network of living labs,0 -edizioni università di trieste,0 -editions fedora,0 -fernwood publishing,1 -university of split,0 -fruct oy,0 -shanghai people's publishing house,1 -förlaget m ab oy,0 -garant,1 -jagiellonian library,0 -gracewing,0 -green lines instituto para o desenvolvimento sustentável,0 -harvard ukrainian research institute,0 -hawaii international conference on system sciences,1 -helion & company,0 -helsingin ja uudenmaan sairaanhoitopiiri,0 -hochschule für technik und wirtschaft des saarlandes,0 -international association for escience,0 -south east european research center,0 -mechanical engineering institute,0 -portland international conference on management of engineering and technology,0 -international union of radio science,0 -iéseg éditions,0 -"institut français des sciences et technologies des transports, de l’aménagement et des réseaux",0 -international institute of informatics and systemics,0 -leeds university press,0 -print pro,0 -instytut technologii eksploatacji,0 -"izdatel`stvo ""lema""",0 -instituti albanologjik,0 -bdk america,0 -itc press,1 -japan society of applied physics,0 -international bali institute of tourism,0 -international federation of surveyors,0 -international union for conservation of nature,0 -gsi helmholtzzentrum für schwerionenforschung,0 -university of central lancashire,0 -kabinetnyj uchenyj,0 -editora kelps,0 -korean geotechnical society,0 -księgarnia akademicka,0 -kunnossapitoyhdistys promaint ry,0 -izdatel`stvo lan`,0 -landesamt für denkmalpflege und archäologie sachsen-anhalt,0 -slovensko društvo za razsvetljavo,0 -lietuvos edukologijos universiteto leidykla,0 -politechnika lubelska,0 -museumsetc,0 -martin-luther-verlag,0 -matfyzpress,0 -mdpi,0 -moskovskij pedagogicheskij gosudarstvenny`j universitet,0 -masarykova univerzita,0 -nikola vaptsarov naval academy,0 -atrain&nord,0 -norsk betongforening,0 -northern earth,0 -osservatorio linguistico della svizzera italiana,0 -patron,0 -pitagora editrice,0 -pitchstone publishing,0 -pontes,0 -editorial digital sa,0 -université du québec à montréal,0 -presses de sciences po,1 -prometeo libros,0 -the provincial institute for the protection of cultural monuments,0 -ptetis publishers,0 -reichert verlag,1 -research institute for linguistics of the hungarian academy of sciences,0 -riveneuve,0 -rovaniemen taidemuseo,0 -russian state university of justice,0 -südostservice gmbh,0 -saarmste,0 -sampe europe,0 -schüren verlag,0 -instituto superior engenharia do porto,0 -libri shkollor,0 -chulalongkorn university,0 -slovenska akademija znanosti in umetnosti,0 -comité organisateur du congrès sga québec 2017,0 -institute of logistics and transport,0 -specialpedagogiska skolmyndigheten,0 -spurbuchverlag,0 -the state hermitage museum,1 -statistics lithuania,0 -suomen perusta,0 -suprema gráfica e editora,0 -adventure s. a.,0 -tampereen dosenttiyhdistys,0 -tessellations,0 -clay minerals society,0 -korean society of aesthetics,0 -aisb publication,0 -strzemiński academy of art,0 -skogs- och träforskningsinstitutet,0 -al'tiora forte,0 -veleučilište velika gorica,0 -university of calgary,0 -eötvös loránd university,0 -saobraćajno-tehnički fakultet,0 -godel editorial,0 -primum verbum,0 -university of macedonia,0 -university of miskolc,0 -university for peace,0 -university of wollongong,0 -verlag der technischen universität graz universitätsbibliothek,0 -verlag holler,0 -westphalia press,1 -publishing house of marine,0 -friedrich-alexander-universität erlangen-nürnberg,0 -paul scherrer institut,0 -österreichische computer-gesellschaft,0 -buki vedi,0 -pechoro-ily`chskij gosudarstvenny`j prirodny`j biosferny`j zapovednik,0 -listos,0 -institute for small business affairs,0 -the institute of electrical engineers of japan,0 -nova sandek,0 -doppiavoce,0 -association of geographic information laboratories in europe,0 -american meteorological society,1 -technická univerzita v liberci,0 -american astronautical society,0 -universität rostock,0 -stofnun árna magnússonar í íslenskum fræðum,0 -editions universitaires de dijon,0 -editreg,0 -inštitut za novejšo zgodovino,0 -institut universitaire varenne,0 -heat transfer research,1 -saint vladimir's seminary press,1 -ivp academic,0 -edizioni di archilet,0 -svensk förening för matematikdidaktisk forskning,0 -fondazione cisam,1 -institute-museum of the armenian genocide,0 -suomen kulttuuriperintökasvatuksen seura,0 -legenda,1 -procompal publicaciones,1 -editora ufrj,0 -polish botanical society,0 -macat international,0 -ifsa publishing,0 -conseil international des grands réseaux électriques,1 -engineering conferences international,0 -omniscriptum,0 -bloomsbury publishing india,0 -apress,0 -hempen verlag,1 -fmcad,1 -otatieto,1 -polskie towarzystwo informatyczne,0 -the centre for sustainable design,0 -insea publications,1 -palmkrons förlag,0 -mayfly,0 -bristol university press,1 -vysoká škola ekonomická - nakladatelství oeconomica,0 -uga éditions,1 -agenda publishing,1 -ediciones ampersand,0 -angelo pontecorboli editore,0 -transport and telecommunication institute,0 -university of hong kong : comparative education research centre,1 -forum of slavic cultures,0 -suomen haavanhoitoyhdistys ry,0 -suomalainen lakimiesyhdistys,1 -international agency for research on cancer,1 -premiss förlag,0 -mälardalens högskola,0 -mimesis international,0 -editora via verita,0 -ucopress,0 -trialba ediciones,0 -kunsthøgskolen i oslo,0 -thammasat university,0 -gapa press,0 -universidad iberoamericana,0 -wissenschaftlicher kommissionsverlag,0 -kerber verlag,0 -stämpfli verlag,0 -valokuvakeskus peri,0 -centre d'études sur les jeunes et les médias,0 -motto books,0 -tehy ry,0 -vajra books,0 -retorika,0 -amity foundation,0 -academia,0 -marietti,0 -kunsten,0 -künnimees,0 -kirjastus juura,0 -il cerchio,0 -ciela,0 -chikuma shobo,0 -äripäev,0 -adocs,0 -grupo editorial kipus,0 -wipf & stock publishers,0 -atlande,0 -bar publishing,1 -candlin & mynard epublishing,0 -centre international d'étude du dix-huitième siècle,0 -izdatel`stvo pushkinskij dom,0 -cité du design – école supérieure d’art et design (epcc),0 -clacso,1 -e-international relations,1 -editorial de la facultad de filosofía y letras universidad de buenos aires,0 -editorial reus,0 -les presses du réel,0 -pegasus,0 -"pontificia universidad católica del perú, fondo editorial",0 -sibirskij federal`ny`j universitet,0 -zondervan,0 -wachholtz verlag,0 -vetenskapssocieteten i lund,0 -"conservatoire et jardin botaniques, de la ville de genève",0 -korean society for rock mechanics,0 -rencontres de moriond,0 -craterre,0 -ku leuven,0 -university of cambridge,0 -yerevan state university of architecture and construction,0 -"sub lupa, wydawnictwo naukowe",0 -association for computational creativity,1 -the hong kong university of science and technology,0 -the education university of hong kong,0 -hong kong society for transportation studies,0 -shu-te university,0 -european centre for minority issues,0 -feevale,0 -h:ström,0 -ars una,0 -international association for aesthetics,0 -istituto della enciclopedia italiana,0 -kaakkois-suomen ammattikorkeakoulu,0 -kollesis editrice,0 -"tovarystvo z obmezhenoiu vidpovidalnistiu ""try k""",0 -logisma editore,0 -medieval institute publications,1 -medströms bokförlag,0 -paradigma,0 -"izdatelstvo ""veles""",0 -röhrig universitätsverlag,0 -omep hrvatska,0 -casa editrice università la sapienza,1 -imaps nordic,0 -izdatel`stvo tomskogo universiteta,0 -excellence cluster topoi,0 -u press,1 -katedra,0 -fédération internationale des professeurs de français,0 -société française de littérature générale et comparée,0 -institute of acoustics,0 -university of western ontario,0 -australian & new zealand academy of management,0 -"university of south australia - faculty of art, architecture & design",0 -georgia tech school of interactive computing,0 -acadia,0 -university of the free state,0 -association for consumer research,1 -heriot-watt university,0 -international society for the study of work & organizational values,0 -comsol,0 -southampton solent university,0 -university of greenwich department of architecture and landscape,0 -alta metallurgical services,0 -canadian human-computer communications society (chccs),0 -center for transatlantic relations,0 -university of kragujevac,0 -niilo mäki instituutti,0 -astronomical society of the pacific,0 -university of iceland,0 -säteilyturvakeskus,0 -kask conservatorium,0 -linköpings universitet,0 -university of surrey : surrey business school,0 -lancaster university,0 -southern african institute of mining and metallurgy,0 -globalbiz research,0 -ravensbourne publications,0 -cercle ferdinand de saussure,1 -asmet - austrian society for metallurgy and materials,0 -weblaw,0 -gdmb verlag,0 -mainz,0 -schloss dagstuhl - leibniz zentrum für informatik,0 -nünnerich-asmus verlag,0 -international solar energy society,1 -shumpusha,0 -"predpriyatie ""novaya texnika""",0 -mamatov,0 -rg - press,0 -istoricheskaya pamyat`,0 -kazahskij universitet mezhdunarodnyh otnoshenij i mirovyh yazykov im. abylaj hana,0 -lietuvos kompiuterininkų sąjunga,0 -univerzita palackého v olomouci,0 -tanger,0 -oficyna wydawnicza politechniki wrocławskiej,0 -stowarzyszenie techniczne odlewnikow polskich,0 -giuseppe t. cirella,0 -iated academy,0 -publicacions i edicions de la universitat de barcelona,0 -universidade de brasília,0 -"mašinski fakultet, izdavačka delatnost",0 -tomorrow people,0 -danmarks tekniske universitet,0 -syddansk universitet,0 -nordic acoustics association,0 -giannini editore,0 -istituto nazionale di fisica nucleare,0 -junction publishing,0 -wydawnictwo politechniki śląskiej,0 -cotsen institute of archaeology at ucla,1 -görres-druckerei und verlag,0 -ledizioni,1 -eta-florence renewable energies,0 -università degli studi di modena e reggio emilia,0 -università degli studi di messina,0 -f & c edizioni,0 -lorenzo de medici press,0 -university of saskatchewan,0 -pmsa publishing,0 -australian scholarly publishing,0 -scientia,0 -china university of political science and law press,0 -arkitekturforlaget b,0 -nordregio,0 -turība university,0 -montenegrin sports academy,1 -haapsalu ja läänemaa muuseumid,0 -hm studies and publishing,0 -eesti noorsootöö keskus,0 -poseidon förlag,0 -alliance for childhood european network foundation,0 -korea maritime institute,0 -pécsi tudományegyetem,0 -adria section of the combustion institue (asci),0 -wageningen university,0 -universiteit antwerpen,0 -korean institute of chemical engineers,0 -european society for precision engineering and nanotechnology,0 -australasian fluid mechanics society,0 -american marketing association,0 -australian dance council,0 -forum holzbau,0 -verlag wissenschaftliche scripten,0 -st. petersburgskij gosudarstvenny`j politexnicheskij universitet,0 -nauchno-innovacionny`j centr,1 -družestvo na rusistite v bulgaria,0 -esne editorial,0 -ocas,0 -infobase creation sdn bhd,0 -pravoslavny`j svyato-tixonovskij gumanitarny`j universitet,0 -triarchy press,0 -research and publishing institute for security and defence studies at university of public and individual security apeiron in krakow,1 -luiss university press,1 -irstea bordeaux,0 -teagasc,0 -dairycare cost action fa1308,0 -česká andragogická společnost,0 -abc-clio greenwood,0 -czech academy of sciences,0 -basam books,0 -fiatal írók szövetsége,0 -van schaik publishers,0 -edizioni pantarei,0 -institut kajian etnik ukm (kita),0 -felsőbbfokú tanulmányok intézete,0 -university of cape town,0 -fib fédération internationale du béton,0 -nova md,0 -mare & martin,0 -studera press,0 -ariadna ediciones,1 -editorial universidad francisco de vitoria,0 -"instituto politécnico de lisboa, escola superior de educação",0 -sismel - edizioni del galluzzo,0 -"izdatel`stvo ""e`kon-inform""",0 -zaphon,0 -wayeb,0 -beauchesne,0 -muzej antropologii i e`tnografii im. petra velikogo (kunstkamera) ran,1 -slovenská vedecká spoločnosť pre telesnú výchovu a šport,0 -aryan books international,0 -letra e voz,1 -outras expressões,0 -trivent publishing,1 -book publisher international,1 -lunds universitet : arkeologiska institutionen och historiska museet,0 -eetos,1 -kulttuurihistorian seura,0 -napvilág kiadó,0 -mapryal,0 -oficyna naukowa,0 -university of regina press,1 -wydawnictwo naukowe pwn,0 -baltan laboratories,0 -národní technická knihovna,0 -wydawnictwo naukowe uniwersytetu pedagogicznego im. komisji edukacji narodowej,0 -sociedad española de acústica,0 -australasian speech science & technology association,1 -asos yayınları,0 -university of bath,0 -appita,0 -australian centre for geomechanics,0 -eesti kunstiakadeemia,0 -"khalifa international award for date, palm and agricultural innovation",0 -"""rau"" publishing house, russian-armenian (slavonic) state university",0 -icelandic geotechnical society,0 -ua editora,0 -hungarian academy of sciences centre for energy research,0 -hong kong polytechnic university,0 -union of scientists in bulgaria,0 -american society for nondestructive testing,1 -scientia socialis,1 -abada editores,0 -deutsche gesellschaft für akustik,0 -norges miljø- og biovitenskapelige universitet,0 -digicopy fecem,0 -universiteit utrecht,0 -justus-liebig-universität giessen : universitätsbibliothek,0 -independent publishing network,0 -mendel university in brno,0 -bashkirskaya e`nciklopediya,0 -novgorodskij gosudarstvenny`j universitet imeni yaroslava mudrogo,0 -university of strathclyde publishing,0 -kungliga musikhögskolan,0 -omskij gosudarstvenny`j universitet im. f.m.dostoevskogo,0 -nafems,0 -technische akademie esslingen,0 -ocean press,0 -malmö universitet,0 -edizioni efesto,0 -university of wolverhampton,0 -university of thessaly,0 -asla : svenska föreningen för tillämpad språkvetenskap,1 -university of tyumen,0 -twi,0 -universitätsbibliothek paderborn,0 -cnr - insean,0 -charles scribner's sons,0 -ice publishing,1 -hebrew union college press,0 -urbanomic media,0 -atf press,0 -tvz theologischer verlag,0 -josette lyon,0 -diplomatische akademie wien,0 -vienna academic press,0 -rudn university,0 -rossijskaya gosudarstvennaya biblioteka iskusstv,0 -narodowy instytut fryderyka chopina,0 -dykinson,0 -marcus förlag,0 -myndigheten för kulturanalys,0 -pryvatne bahatoprofilne pidpryyemstvo ekonomika,0 -universität hamburg,0 -editorial aluvión,0 -ellerströms,0 -haymarket books,0 -international society for computers and their applications,0 -law business research,0 -istes organization,0 -presses universitaires de grenoble,0 -fondation européenne d'études progressistes,0 -red globe press,0 -stockholms konstnärliga högskola,0 -americana ebooks,0 -ex tuto,1 -valiz,0 -yorkshire sculpture park,0 -kultur.region.niederösterreich,0 -ijab - fachstelle für internationale jugendarbeit der bundesrepublik deutschland,0 -westensee-verlag,0 -kerns verlag,0 -druck-zuck,0 -thomé-kozmiensky verlag,1 -freie universität berlin universitätsbibliothek,0 -gyldendal norsk forlag,1 -wydawnictwo c.h.beck spółka z o.o.,0 -ministerio de educación de la provincia de santa fe,0 -fores,0 -magyarországi zsidó hitközségek szövetsége,0 -comunidad de madrid,0 -mosaico produção editorial,0 -pelckmans pro,0 -foreign language teaching and research press,0 -banco central de chile,0 -international management development association,0 -macquarie university,0 -international society for music education,0 -"izdatel`stvo ""triada""",0 -international council of museums,1 -modelling & simulation society of australia & new zealand,0 -independent publisher,0 -international society of the learning sciences,0 -knowledge systems institute,0 -international institute for advanced studies in systems research and cybernetics,0 -fle learning,0 -engineers australia,0 -escp business school,0 -k.i.t. group gmbh dresden,0 -tipograf,0 -eforeia archaiotiton thesprotias,0 -jihočeská univerzita v českých budějovicích,0 -sciendo,0 -edicions de la universitat de lleida,0 -university of novi sad,0 -faculty of maritime studies,0 -borè srl,0 -accademia musicale studio musica,0 -accademia nazionale di santa cecilia,0 -semico,0 -author-publishers,0 -boekengilde,0 -josip juraj strossmayer university of osijek,0 -university of dubrovnic,0 -eduardo tomé,0 -university of madeira,0 -university of algarve,0 -batumi state maritime academy,0 -riba publishing,1 -norwegian university of science and technology,0 -eyewear publishing,0 -"uniwersytet technologiczno-humanistyczny im. kazimierza pulaskiego w radomiu, wydawnictwo",0 -"katedra pedagogiki społecznej i andragogiki - wydział pedagogiczny, uniwersytet pedagogiczny w krakowie",0 -academic studies press,1 -dio press,0 -helsinki university press,1 -central asia program,0 -vulkan,0 -wydawnictwo uniwersytetu lodzkiego,0 -utzverlag gmbh,0 -bord de l'eau,0 -myers education press,1 -texmat,0 -lim editrice,0 -tip.le.co,0 -artemisia edizioni,0 -university of westminster press,0 -saint petersburg center for the history of ideas,0 -ekdoseis isnafi,0 -counterpress,1 -efs budbäraren,0 -kulttuuriklubi,0 -officyna,0 -editora crv,0 -brazil publishing,0 -publicacions institucionals ua,0 -akademie věd české republiky,0 -mistra urban futures,0 -institut lingvisticheskix issledovanij rossijskoj akademii nauk,1 -izdatel'skii dom yask,0 -gangemi editore,0 -international society of arboriculture,0 -istituto italiano di studi germanici,0 -mzuni press,0 -kaleidoscope learning,0 -american rock mechanics association,1 -star-dundee,0 -j ross publishing,0 -metis presses,0 -akademische verlagsgemeinschaft münchen,1 -ixe editions,0 -universidad del azuay,0 -the arabic language academy,0 -presses de l'inalco,1 -appell förlag,0 -vilniaus dailės akademijos leidykla,0 -periodika,0 -les liens qui libèrent,0 -benjam pöntinen,0 -nacrazvitie,0 -korea institute for health and social affairs publishing,0 -croquant,0 -instytut nauk prawnych polskiej akademii nauk,0 -aram basim reklam veyayincilik sanayi ticaret limite,0 -aberdeen university press,0 -wydawnictwo uniwersytetu rzeszowskiego,0 -world council of churches publications,0 -izhevskij institut komp`yuterny`x issledovanij,0 -wydawnictwo dig,0 -european respiratory society,0 -ediciones morata,0 -suomen patristinen seura,0 -grodnenskij gosudarstvennyj universitet imeni janki kupaly,0 -arkitekturmuseet,0 -fabrika komiksov,0 -universitas malikussaleh press,0 -riihimäen kaupunki,0 -huaxia publishing house,0 -coleg cymraeg cenedlaethol,0 -fastcase,0 -international building performance simulation association,0 -manchester metropolitan university,0 -cardiff university press,0 -aosis publishing,0 -the scientific press,0 -tredition,0 -fraunhofer verlag,0 -technische universität dresden. slub,0 -miles-verlag,0 -ama service gmbh,0 -get it published verlag,0 -kyoto sangyo daigaku,0 -cherepoveckij gosudarstvenny`j universitet,0 -institut,0 -alfa print,0 -sekvoiya,0 -institut teknologi sepuluh nopember,0 -reîntregirea,0 -f & f international,0 -mokslinės leidybos deimantas,0 -pamiela argitaletxea,0 -kragujevac filološko-umetnički fakultet,0 -università degli studi di firenze,0 -università della svizzera italiana,0 -centro di cultura e storia amalfitana,0 -società italiana marketing,0 -università di bologna,0 -associazione italiana colore,0 -run nijmegen school of management,0 -chalmers tekniska högskola,0 -meta4books vzw,0 -international association for automation and robotics in construction,0 -aerosolitutkimusseura ry.,0 -woodema,0 -aisti associação ibérica de sistemas e tecnologias de informação,0 -e&d ltd,0 -korean institute of bridge and structural engineers,0 -ex-libris comunicação integrada,0 -phoneix yayınevi,0 -slovenská národná knižnica,0 -latvijas kristīgā akadēmija,0 -centr soxraneniya kul`turnogo naslediya,0 -avangard prima,0 -omskblankizdat,0 -thompson educational publishing,0 -mosaic press,0 -edições húmus,0 -queen's university,0 -universidad autónoma de barcelona,0 -politechnika gdanska wydawnictwo,0 -virginia tech publishing,0 -centro de investigaciones sociologicas,0 -izdatelstvo ja,0 -editorial fontamara,0 -centro de estudos de história religiosa,0 -ulrike helmer verlag,0 -westarp verlagsservicegesellschaft,1 -pm press,0 -uni-press graz verlag,0 -widmaier verlag,0 -northwest lichenologists,0 -f a davis company,0 -philosophia verlag,0 -suomen arvostelijain liitto ry,0 -ausonius,0 -editora poisson,0 -forum editrice universitaria udinese,0 -universidade de santiago de compostela,0 -la musa talìa,0 -american center of oriental research,0 -oeconomia,0 -side view press,0 -juuso salokoski,0 -município santo tirso,0 -palet yayınları,0 -catholic university of murcia,0 -beijing language and culture university press,0 -lipetsk state pedagogical university,0 -eesti koostöö kogu,0 -agile publishing,0 -bononia university press,0 -all'insegna del giglio,0 -presses de l'ifpo,0 -inner mongolia people's publishing house,0 -lobachevsky state university of nizhni novgorod,0 -k. j. ståhlbergin säätiö,0 -hacettepe üniversitesi,0 -edizioni ca' foscari - digital publishing,1 -editorial universidad de sevilla,1 -editorial universidad icesi,1 -laboratoire de recherche historique rhône-alpes,0 -supsi scuola universitaria professionale,0 -universidad de guadalajara,0 -mattering press,0 -aracne,0 -novum publishing,0 -mousse publishing,0 -emma - espoon modernin taiteen museo,0 -edition vulpes,0 -vocifuoriscena,0 -suomen telelääketieteen ja e-health seura ry,0 -ekdoseis asini,0 -music technology group,0 -lysa publishers,0 -archaeolingua alapítvány,0 -lienart éditions,0 -quodlibet,0 -tored,1 -mordovskij gosudarstvenny`j universitet im. n.p.ogareva,0 -campisano editore,0 -verlag für geschichte und kultur,0 -gompel & svacina,0 -rosebud books,0 -komi respublikanskaya akademiya gosudarstvennoj sluzhby` i upravleniya,0 -ku leuven soc onderzoekinstituut,0 -prezidentskaya biblioteka imeni b.n.el`cina,0 -stefania guerra,0 -guidi paolo,0 -facultad latinoamericana de ciencias sociales - flacso,0 -ediciones abya-yala,0 -iceland's arctic council chairmanship,0 -rahvusvaheline kaitseuuringute keskus,0 -universidad católica andrés bello,0 -bysantin tutkimuksen seura,0 -institute of archaeology at jerusalem university,0 -inštitut za lokalno samoupravo maribor,0 -univerzitetni rehabilitacijski inštitut republike slovenije - soča,0 -"biotehniška fakulteta, oddelek za lesarstvo",0 -era content,0 -suomen varhaiskasvatus,0 -kustannusliike parkko,0 -karjalan sivistysseura ry,0 -ropecon ry,0 -luther-kirjat,0 -iberialais-amerikkalainen säätiö,0 -booknet oy,0 -arvinius + orfeus publishing,0 -arc humanities press,1 -the british council,0 -association of professional futurists,0 -robert hamm,0 -the kapralova society,0 -massey university press,0 -"institut društvenih nauka, izdavačka delatnost",0 -sílex ediciones,0 -victorina press,0 -proud pen limited,0 -vervuert verlag,1 -accademia university press,0 -american political science association,0 -aadr – art architecture design research,1 -pennsylvania state university press,1 -showing theory press,0 -kismet press,1 -ori press,0 -octares,0 -european liberal forum,0 -ecole française de rome,1 -mairie de beaune,0 -universität greifswald,0 -druckverlag kettler,0 -jovis verlag,0 -lexxion verlagsgesellschaft,0 -edition donau-universität krems,0 -worms verlag,0 -esperiana verlag,0 -sangen-sha,0 -rikkyo daigaku syuppankai,0 -izdatel`skie resheniya,0 -aksenov petr grigorevich,0 -leksrus,0 -perviytom,0 -nacional`ny`j issledovatel`skij nizhegorodskij gosudarstvenny`j universitet,0 -artes,0 -evropaikos organismos dimosiou dikaiou,0 -ekdoseis ellinikou anoiktou panepistimiou,0 -nová tiskárna pelhřimov,0 -wolters kluwer čr,0 -instytut kultury regionalnej i badań literackich franciszka karpińskiego,1 -wydawnictwo uniwersytetu gdańskiego,0 -katedra technologii i urządzeń zagospodarowania odpadów politechnika śląska,0 -eduardo oliva,0 -editorial tirant lo blanch,0 -ediciones asimétricas,0 -la ley,0 -editorial la muralla,0 -editorial verbo divino,0 -real instituto elcano,0 -fundación arquitectura coam,0 -institut za kriminološka i sociološkaistraživanja,0 -strandberg publishing,0 -mandragora,0 -g. giappichelli editore,0 -morlacchi editore,0 -officinaventuno,0 -lombardo accademia di scienze e lettere,0 -nationalmuseum,0 -enskilda högskolan stockholm,0 -fri tanke,0 -european centre for the development of vocational training,0 -asian development bank,0 -artem,0 -craniofacial publications,0 -clough center for the study of constitutional democracy,0 -nauchno-izdatel`skij centr infra-m,0 -archidocs,0 -kuortaneen kunta,0 -publishing house of central university of nationalitics,0 -svenska folkskolans vänner,0 -editora contracorrente,0 -endülüs yayınları,0 -ami press,0 -alvar aalto -säätiö,0 -tallinna tehnikakõrgkool,0 -ludwig múzeum,0 -immersion foundation,0 -institut lingvisticheskix issledovanij rossijskoj akademii nauk,0 -arts research africa,0 -grupa vern,0 -tu delft open,0 -international telecommunication union,0 -halmstad university press,0 -centro congressi internazionale,0 -ega professional congress organisers,0 -leonardo libri,0 -associazione italiana di storia urbana,0 -akademska misao,0 -"ministerio de educación, cultura y deporte. área de cultura",0 -universidad de burgos,0 -instytut maszyn przepływowych pan,0 -česká zemědělská univerzita v praze,0 -konya teknik üniversitesi,0 -society of mathematics education,0 -lithuanian national museum of art,0 -karadeniz teknik üniversitesi,0 -skifiya-print,0 -moscow state institute of international relations,0 -тomsk state university,0 -mazharov roman aleksandrovich,0 -st. petersburg state university of economics,0 -ural`skij gosudarstvenny`j pedagogicheskij universitet,0 -e`kolit,0 -echelle-1,0 -gito gesellschaft für industrielle informationstechnik und organisation mbh,0 -université de liège,0 -metal powder industries federation,0 -aircc publishing corporation,0 -international microelectronics and packaging society uk,0 -suomen automaatioseura,0 -jakajima,0 -università del salento,0 -"will-zocholl, mascha, prof. und annette kämpf-dern",0 -international society for music information retrieval,1 -atlas akademi,0 -nobuko,0 -leibniz-institut für deutsche sprache,1 -quae,0 -artifex,0 -european law institute,1 -the eriskay connection,0 -memorial university of newfoundland,0 -museu marítim de barcelona,0 -meson press,1 -idryma onasi : stegi grammaton kai technon,0 -turgut ozal education,0 -prognostics & health management society,0 -technische universitaet wien universitaetsbibliothek,0 -rombach wissenschaft,0 -food studies press,0 -"jentzsch-cuvillier, annette",0 -mercatorfonds,0 -donzelli editore,0 -consulta online,1 -düsseldorf university press,1 -editorial graó,0 -il calamo,0 -oriental institute of the university of chicago,1 -aptor software,0 -carus books,0 -atlas bokförlag,0 -editora da universidade federal de uberlândia,1 -university press bologna,0 -ethics international press,0 -eino roiha -säätiö,0 -udruženje za pravo osiguranja srbije,0 -sankei-sha,0 -fondazione politecnico di milano,0 -vidzemes augstskola,0 -verein für betriebswirtschaftlichen wissenstransfer des fachbereichs betriebswirtschaft e.v.,0 -kungl. tekniska högskolan i stockholm (kth),0 -pimenta cultural,0 -risto willamo,0 -emc imprint,0 -dr. manisha basumondal,1 -eudeba,0 -manucius,0 -euran kunta,0 -nammo vihtavuori oy,0 -"bölcsészettudományi kutatóközpont, irodalomtudományi intézet",0 -international society of information fusion,0 -epe association,1 -aesthetica editore,0 -hertervig forlag,0 -lse press,0 -volumina.pl daniel krzanowski,0 -rio kulturlandskapet,0 -akademie věd české republiky : ústav teoretické a aplikované mechaniky,0 -epfl-cclab : composite construction laboratory,0 -ivi,0 -nasjonalbiblioteket,0 -mieroszewski centre,0 -editions mergoil,0 -"idensitat, associació d'art contemporani",0 -iste editions,0 -filmarchiv austria,0 -luther-agricola-seura,1 -ulkomaanlehtoriyhdistys ry,0 -the digital press at the university of north dakota,0 -petra,0 -ch. links verlag : ein imprint von aufbau verlage,0 -tarbiyat modarres university,0 -igaku shoin,0 -maciej oczak,0 -echelle-1,0 -editorial hypermedia,0 -northwestern university libraries,0 -nt klasika,0 -rio book´s,0 -hugo valentin-centrum,0 -kültür ve turizm bakanlığı,0 -revistia,0 -the encyclopedia of china publishing house,0 -negah-e moaser,0 -çanakkale kitaplığı,0 -"wolkersdorfer, karoline : wolke events",0 -gosudarstvenny`j institut russkogo yazy`ka im. a.s.pushkina,0 -sociedad española de ciencias forestales,1 -garnet education,0 -erim vatansever,0 -maciej oczak,0 -studiecentrum voor kernenergie,0 -hong duc publishing house,0 -l3 soluções em tecnologia ltda,0 -svoe izdatel`stvo,0 -pilares d'elegância lda,0 -british institute of non-destructive testing,1 -yıldız teknik üniversitesi,0 -sistema solar,0 -aedam musicae,0 -filozofski fakultet - izdavačka delatnost,0 -mehmet akif ezan,0 -international platform of jurists for east timor,0 -herne,0 -vladimirskij gosudarstvenny`j universitet,0 -editorial aranzadi,0 -sdvig press,1 -ru-science,0 -bozen-bolzano university,0 -bayshop (generis publishing),0 -huazhong university of science and technology press,0 -labour publishing house,0 -adults learning mathematics,1 -new mexico geological society,0 -the academy of global business research and practice,0 -sacrasage press,0 -editora artemis,0 -guillermo escolar editor,0 -productivity press,0 -ionio panepistimio,0 -ifri,0 -studium,0 -the wac clearinghouse,0 -heibonsha,0 -east china normal university press,0 -nammo lapua oy,0 -instituto de literatura comparada margarida losa,0 -av edition,0 -cleup,0 -paradigma akademi yayınevi,0 -ispim oy,0 -iuorio edizioni,0 -nurmeksen kaupunki,0 -krakowski instytut prawa karnego fundacja,0 -jovene editore,0 -det teologisk fakultet : afdeling for bibelsk eksegese,0 -freie universität berlin : institut für publizistik- und kommunikationswissenschaft,0 -universidad sergio arboleda,0 -university of huddersfield,0 -aristoteleio panepistimio thessalonikis,0 -middlesex university,0 -generalitat de catalunya,0 -föreningen mediehistoriskt arkiv,1 -monetary and economic research center,0 -editora inovar,0 -institute of economic affairs,0 -gävle university press,0 -kregel publications,0 -demeter press,0 -monthly review press,0 -universidad de nariño,0 -edufscar,1 -aspekt press,0 -társadalomtudományi kutatóközpont,0 -rasananda barik,0 -decibel new music,0 -pearson,0 -inkoma,0 -santa casa da misericórdia lisboa,0 -österreichische gesellschaft für geomechanik,0 -european geothermal energy council,0 -icmsa,0 -retorika a,0 -politica,0 -suomalainen metodologiayhdistys,0 -dora yayıncılık,0 -óbudai egyetem,0 -detay anatolia akademik yayıncılık,0 -red española de filosofía - laboratorio filosófico de la pandemia y el antropoceno,0 -american fisheries society,0 -fedoapress,1 -historia et ius,1 -viestintätoimisto kirjokansi,0 -unipa press,0 -gozdarski inštitut slovenije : silva slovenica,0 -politecnico di milano,0 -diethnes panepistimio tis ellados,0 -udruženje hrvatskih arhitekata,0 -nota,0 -editura politehnica,0 -kobundo,0 -ampyx-verlag,0 -luigi pellegrini editore,0 -ceu press,1 -ludwig-maximilians-universität münchen : universitätsbibliothek,0 -liberà università maria ss. assunta : lumsa,0 -mta matematikai kutatóintézet,0 -osder publications,0 -florida state open publishing,0 -fakultet muzičke umetnosti,0 -nova univerza,0 -galaad edizioni,0 -prasad balan iyer,0 -ekta books distributers,0 -pechatny`j mir g. xanty`-mansijsk,0 -the architecture observer,0 -hollitzer wissenschaftsverlag,0 -editora científica digital,0 -società romana di storia patria,0 -wedge entomological research foundation,0 -university of london press,1 -wydawnictwo politechniki łódzkiej,0 -óbudai egyetem,0 -christian-albrechts-universität zu kiel,0 -vytauto didžiojo universitetas,0 -ekdotikos oikos melissa,0 -mongolian academy of sciences : the institute of language and literature,0 -puppa,0 -"röll, j.h.",0 -japan society of mechanical engineers,0 -canut yayinevi,0 -rootroo oy,0 -arheološki institut,0 -patt40 liverpool 2023,0 -marcello messina,0 -12 levha,0 -narcea,0 -mikael agricola -seura,0 -vakgr maatsch gezondh,0 -"universiteti ""polis""",0 -erol kurt,0 -research institute of sweden (rise),0 -american educational research association,0 -fundación cidob,0 -el colegio de méxico,0 -spector books,0 -common ground research networks,1 -polska akademia nauk,0 -marcianum press,0 -seinäjoen kaupunki,0 -shanghai scientific & technical publishers,0 -council for creative education,0 -sidney da silva facundes,0 -asociación española de dirección e ingeniería de proyectos,0 -suomen audiologian yhdistys ry,-1 -panepistimio patron,0 -canadian nuclear society,0 -hrvatsko nuklearno društvo,0 -fundación española de historia moderna,-1 -statsbiblioteket,-1 -euraap,-1 -ashrae,-1 -ar/dé,-1 -otto-friedrich-universität bamberg : university of bamberg press,-1 -kent ltd : doszhan,-1 -huoltaja-säätiö,-1 -edizioni nuova cultura,-1 -1066: tidsskrift for historisk forskning,1 -"1650-1850: ideas, aesthetics, and inquiries in the early modern era",0 -21st century music,1 -proceedings : international conference on 3-d digital imaging and modeling,1 -3dtv conference,1 -49th parallel : an interdisciplinary journal of north america,1 -4or,1 -a + u,1 -aa files,1 -aaa : arbeiten aus anglistik und amerikanistik,1 -"arts and artifacts in movie : technology, aesthetics, communication",1 -aapg bulletin,1 -aaps journal,1 -aaps pharmscitech,1 -aarboger for nordisk oldkyndighed og historie,1 -aatcc review,1 -ab imperio,2 -abacus: a journal of accounting finance and business studies,1 -abdominal imaging,1 -abhandlungen aus dem mathematischen seminar der universitat hamburg,1 -aboriginal history,1 -about performance,1 -abstract and applied analysis,1 -"abstracta: linguagem, mente e acao",1 -academic emergency medicine,2 -academic medicine,1 -academic pediatrics,1 -academic psychiatry,1 -academic radiology,1 -academy of entrepreneurship journal,0 -academy of management annals,3 -academy of management journal,3 -academy of management learning and education,3 -academy of management perspectives,2 -academy of management review,3 -ams review,1 -acadiensis,1 -access,1 -accident analysis and prevention,3 -accordia research papers,1 -accounting and business research,2 -accounting and finance,1 -accounting education,1 -accounting forum,1 -accounting historians journal,1 -accounting history,1 -accounting horizons,2 -accounting in europe,1 -accounting organizations and society,3 -accounting review,3 -"accounting, auditing and accountability journal",2 -accounting history review,1 -accounts of chemical research,2 -accreditation and quality assurance,1 -australian cultural history,1 -de achttiende eeuw,1 -das achtzehnte jahrhundert,1 -aci materials journal,1 -aci structural journal,1 -acm computing surveys,3 -annual conference of the special interest group on data communication,3 -acm conference on computer and communications security,3 -acm conference on computer-supported cooperative work and social computing,2 -proceedings of the acm conference on electronic commerce,1 -acm international conference on information & knowledge management,2 -proceedings : acm ieee design automation conference,1 -annual international conference on mobile computing and networking,3 -international symposium on computer architecture,3 -proceedings of the ieee international symposium on high performance distributed computing,1 -proceedings of the acm international symposium on mobility management and wireless access,1 -acm journal of data and information quality,1 -acm transactions on computing education,3 -acm journal on emerging technologies in computing systems,1 -acm multimedia,3 -acm sigaccess accessibility and computing proceedings,1 -acm sigchi annual conference on human factors in computing systems,3 -proceedings of the acm sigcomm internet measurement conference,1 -acm international conference and exhibition on computer graphics interactive techniques,2 -acm siggraph/eurographics symposium on computer animation,1 -acm sigkdd international conference on knowledge discovery and data mining,3 -acm-sigmod international conference on management of data,3 -acm sigact-sigmod-sigart symposium on principles of database systems,2 -proceedings of the symposium on operating systems principles,1 -acm sigsoft international symposium on the foundations of software engineering,2 -acm symposium on computational geometry,2 -acm symposium on principles of distributed computing,2 -acm symposium on theory of computing,3 -acm symposium on user interface software and technology,2 -acm transactions on accessible computing,1 -acm transactions on algorithms,3 -acm transactions on applied perception,1 -acm transactions on architecture and code optimization,1 -acm transactions on autonomous and adaptive systems,2 -acm transactions on computational logic,2 -acm transactions on computer systems,3 -acm transactions on computer-human interaction,3 -acm transactions on database systems,3 -acm transactions on design automation of electronic systems,1 -acm transactions on embedded computing systems,1 -acm transactions on graphics,3 -acm transactions on information systems,3 -acm transactions on interactive intelligent systems (tiis),1 -acm transactions on internet technology,3 -acm transactions on knowledge discovery from data,3 -acm transactions on mathematical software,3 -acm transactions on modeling and computer simulation,1 -"acm transactions on multimedia computing, communications, and applications",2 -acm transactions on programming languages and systems,3 -acm transactions on sensor networks,2 -acm transactions on software engineering and methodology,3 -acm transactions on the web,2 -acm international joint conference on pervasive and ubiquitous computing,2 -acm ubiquity,1 -acm/ieee international conference on human-robot interaction,1 -"international conference for high performance computing, networking, storage and analysis",1 -acm-siam symposium on discrete algorithms,2 -acme,1 -acme: annali della faculta di lettere et filosofia dell universita statale di milano,1 -annual acm sigplan-sigact symposium on principles of programming languages,2 -acm sigplan conference on programming language design and implementation,2 -acm siggraph symposium on interactive 3d graphics and games,1 -acog clinical review,1 -acoustical physics,1 -acoustical science and technology,1 -across languages and cultures,2 -across the disciplines,1 -acs applied materials and interfaces,2 -acs chemical biology,2 -acs chemical neuroscience,1 -acs combinatorial science,1 -acs medicinal chemistry letters,1 -acs nano,3 -acs symposium series,1 -acs/ieee international conference on computer systems and applications,1 -acsms health and fitness journal,1 -acta academiae regiae gustavi adolphi lxxxvii,1 -acta ad archaeologiam et artium historiam pertinentia,1 -acta adriatica,1 -acta agriculturae scandinavica combined,1 -acta agriculturae scandinavica section a : animal science,1 -acta agriculturae scandinavica section b : soil and plant science,1 -acta agriculturae scandinavica: supplementum,1 -acta alimentaria,1 -acta anaesthesiologica belgica,0 -acta anaesthesiologica scandinavica,1 -acta analytica : international periodical for philosophy in the analytical tradition,1 -acta anthropologica sinica,1 -acta antiqua academiae scientiarum hungaricae,1 -acta antiqua ostrobotniensia,1 -acta applicandae mathematicae,1 -acta archaelogica carpathica,1 -acta archaeologica,1 -acta archaeologica academiae scientiarum hungaricae,1 -acta archaeologica lovaniensia,1 -acta arithmetica,2 -acta astronautica,1 -acta baltico-slavica,1 -acta bioethica,1 -acta biologica cracoviensia series botanica,1 -acta biologica cracoviensia series zoologia,1 -acta biomaterialia,2 -acta biotheoretica,1 -acta borealia,1 -acta botanica brasilica,1 -acta botanica croatica,1 -acta botanica fennica,1 -acta botanica mexicana,1 -acta byzantina fennica,1 -acta cardiologica,1 -acta carsologica,1 -chinese journal of chemistry,1 -acta chimica slovenica,1 -acta chiropterologica,1 -acta chirurgica belgica,1 -acta chirurgica italica,1 -acta chromatographica,1 -acta cirurgica brasileira,1 -acta classica,1 -acta classica universitatis scientiarum debreceniensis,1 -acta clinica belgica,1 -acta comeniana,1 -"acta crystallographica section b : structural science, crystal engineering and materials",1 -acta cybernetica,1 -acta cytologica,1 -acta dermato-venereologica,2 -acta diabetologica,1 -acta endocrinologica-bucharest,1 -acta endoscopica,1 -acta entomologica musei nationalis pragae,1 -acta et commentationes universitatis tartuensis de mathematica,1 -acta ethnographica hungarica,1 -acta ethologica,1 -acta geodynamica et geomaterialia,1 -acta geographica slovenica-geografski zbornik,1 -acta geologica polonica,1 -acta geologica sinica-english edition,1 -acta geophysica,1 -acta geotechnica slovenica,1 -acta graphica,1 -acta haematologica,1 -acta herpetologica,1 -acta histochemica,1 -acta histochemica et cytochemica,1 -acta historiae artium academie scientiarium hungaricae,1 -acta historiae rerum naturalium nec non technicarum: new series,1 -acta historica astronomiae,1 -acta historica tallinnensia,1 -acta horticulturae,1 -acta humanitarica universitatis saulensis,1 -acta hyperborea: danish studies in classical archaeology,1 -"acta ibseniana: centre for ibsen studies, university of oslo",1 -acta ichthyologica et piscatoria,1 -acta imeko,1 -acta informatica,2 -acta instituti romani finlandiae,1 -acta kinesiologiae universitatis tartuensis,1 -acta linguistica hafniensia: international journal of linguistics,2 -acta linguistica lithuanica,1 -acta literaria,1 -acta materialia,3 -acta mathematica,3 -acta mathematica scientia,1 -acta mathematica sinica : english series,1 -acta mathematica universitatis comenianae,1 -acta mathematica vietnamica,1 -acta mathematicae applicatae sinica : english series,1 -acta mechanica,1 -acta mechanica sinica,1 -acta mechanica solida sinica,1 -acta metallurgica sinica,1 -acta microscopica,1 -acta montanistica slovaca,1 -acta mozartiana,1 -acta musicologica,3 -acta musicologica fennica,1 -acta neophilologica,1 -acta neurobiologiae experimentalis,1 -acta neurochirurgica,1 -acta neurologica belgica,1 -acta neurologica scandinavica,1 -acta neurologica scandinavica: supplementum,1 -acta neuropathologica,3 -acta neuropsychiatrica,1 -acta numerica,2 -acta obstetricia et gynecologica scandinavica,2 -acta oceanologica sinica,1 -acta odontologica scandinavica,1 -acta oecologica-international journal of ecology,1 -acta of bioengineering and biomechanics,1 -acta oncologica,1 -acta onomastica,1 -acta ophthalmologica,2 -acta organologica,1 -acta orientalia,1 -acta orientalia academiae scientiarum hungaricae,1 -acta ornithologica,1 -acta orthopaedica,1 -acta orthopaedica belgica,1 -acta orthopaedica et traumatologica turcica,1 -acta orthopaedica: supplementum,1 -acta ortopedica brasileira,1 -acta oto-laryngologica,1 -acta oto-laryngologica: supplement,1 -acta paediatrica,1 -acta palaeobotanica,1 -acta palaeontologica polonica,1 -acta palaeontologica sinica,1 -acta parasitologica,1 -apmis acta pathologica microbiologica et immunologica scandinavica: supplementum,1 -acta paulista de enfermagem,1 -acta pharmaceutica,1 -acta pharmacologica sinica,1 -acta philosophica fennica,1 -acta physica polonica a,1 -acta physica polonica b,1 -acta physica sinica,1 -acta physica slovaca,1 -acta physico-chimica sinica,0 -acta physiologiae plantarum,1 -acta physiologica,2 -"acta physiologica scandinavica, supplement",1 -acta phytopathologica et entomologica hungarica,1 -acta politica,2 -acta poloniae historica,1 -acta praehistorica et archaeologica,1 -acta protozoologica,1 -acta psychiatrica scandinavica,2 -"acta psychiatrica scandinavica, supplement",1 -acta psychologica,1 -acta radiologica,1 -acta scientiae veterinariae,1 -acta scientiarum-agronomy,1 -acta scientiarum-technology,1 -acta societatis botanicorum poloniae,1 -acta sociologica,2 -acta theologica,1 -acta tropica,1 -acta universitatis carolinae: philologica,1 -acta universitatis szegediensis: acta scientiarum mathematicarum,1 -acta veterinaria brno,1 -acta veterinaria hungarica,1 -acta veterinaria scandinavica,2 -acta veterinaria,1 -acta virologica,1 -acta zoologica,1 -acta zoologica academiae scientiarum hungaricae,1 -acta zoologica bulgarica,1 -acta zoologica fennica,1 -actas espanolas de psiquiatria,1 -actas urologicas espanolas,1 -actes de la recherche en sciences sociales,2 -actes du congrès - société française shakespeare,1 -"action, criticism and theory for music education",1 -action learning: research and practice,1 -action research,1 -action research international,1 -active and passive electronic components,1 -active learning in higher education,2 -"activities, adaptation and aging: the journal of activities management",1 -actual problems of economics,0 -actualite chimique,0 -acupuncture and electro-therapeutics research,1 -acupuncture in medicine,1 -ad hoc and sensor wireless networks,1 -ad hoc networks,2 -ad parnassum,1 -adalya,1 -adamantius,1 -adansonia,1 -adaptation,1 -adapted physical activity quarterly,1 -adaptive behavior,1 -addiction,3 -addiction biology,2 -addiction research and theory,1 -addictive behaviors,1 -addictive disorders and their treatment,1 -additives for polymers,1 -administration and society,2 -administration and policy in mental health and mental health services research,1 -administrative law review,1 -administrative science quarterly,3 -adoption and fostering,1 -adoption quarterly,1 -adsorption science and technology,1 -adsorption : journal of the international adsorption society,1 -adult education and development,1 -adult education quarterly,3 -adult learning,1 -adults learning mathematics : an international journal,1 -advanced composite materials,1 -advanced drug delivery reviews,3 -advanced engineering informatics,1 -advanced engineering materials,1 -advanced functional materials,3 -international conference on advanced information networking and applications,1 -advanced materials,3 -advanced materials and processes,1 -advanced materials research,1 -advanced nonlinear studies,1 -advanced packaging,1 -advanced powder technology,1 -advanced robotics,1 -advanced steel construction,1 -advanced studies in theoretical physics,0 -advanced synthesis and catalysis,2 -advanced topics in database research series,0 -advances and applications in statistics,1 -advances in accounting,1 -advances in agronomy,1 -advances in anatomic pathology,2 -advances in anatomy embryology and cell biology,1 -advances in applied ceramics,1 -advances in applied clifford algebras,1 -advances in applied mathematics,2 -advances in applied microbiology series,1 -advances in applied microeconomics,1 -advances in applied probability,2 -advances in artificial intelligence,1 -advances in astrobiology and biogeophysics,1 -advances in astronomy,1 -advances in atmospheric sciences,1 -advances in atomic molecular and optical physics,1 -advances in austrian economics,1 -advances in biochemical engineering : biotechnology,1 -advances in botanical research,1 -advances in calculus of variations,1 -advances in cancer research,1 -advances in carbohydrate chemistry and biochemistry series,1 -advances in cardiology,1 -advances in catalysis,2 -advances in cement research,1 -advances in chemical engineering,1 -advances in chemical physics,1 -advances in child development and behavior,1 -advances in chromatography,1 -advances in chronic kidney disease,1 -advances in clinical chemistry,1 -advances in colloid and interface science,1 -advances in complex systems,1 -advances in computational mathematics,1 -advances in computers,2 -advances in consciousness research,1 -advances in consumer research,1 -advances in criminological theory,1 -advances in data analysis and classification,1 -advances in decision sciences,0 -advances in dental research,1 -advances in developing human resources,1 -advances in differential equations,1 -advances in ecological research,1 -advances in econometrics,1 -advances in electrical and computer engineering,1 -advances in engineering software,1 -advances in biological regulation,1 -advances in enzymology and related subjects of biochemistry,1 -advances in experimental social psychology,2 -wit transactions on engineering sciences,1 -advances in gender research,1 -advances in genetics,1 -advances in geometry,1 -advances in geophysics,1 -advances in geosciences,1 -advances in health sciences education,2 -advances in heterocyclic chemistry,1 -advances in high energy physics,1 -advances in horticultural science,1 -advances in hospitality and leisure,1 -advances in human-computer interaction,1 -advances in imaging and electron physics,1 -advances in immunology,1 -advances in information security,1 -advances in inorganic chemistry,1 -advances in insect physiology,1 -advances in international marketing,1 -advances in limnology,1 -advances in marine biology,1 -advances in mathematical physics,0 -advances in mathematics,3 -advances in mathematics of communications,1 -advances in medical sciences,1 -advances in microbial physiology,1 -advances in natural sciences: nanoscience and nanotechnology,1 -advances in neonatal care,1 -advances in neural information processing systems,3 -advances in nursing science,2 -advances in nutritional research,1 -advances in optics and photonics,3 -advances in organometallic chemistry,1 -advances in oto-rhino-laryngology,1 -advances in parasitology,2 -advances in pediatrics,1 -advances in physical organic chemistry series,1 -advances in physics,3 -advances in physiology education,1 -advances in polymer science,1 -advances in polymer technology,1 -advances in printing science and technology,1 -advances in protein chemistry and structural biology,1 -advances in psychosomatic medicine,1 -advances in quantum chemistry,1 -advances in services marketing and management,1 -advances in skin and wound care,1 -advances in social work,1 -advances in space research,1 -advances in structural engineering,1 -advances in the economic analysis of participatory and labor-managed firms,1 -advances in the economics of environmental resources,1 -advances in the study of behavior,1 -advances in theoretical and mathematical physics,1 -advances in therapy,1 -advances in tribology,1 -advances in water resources,2 -advances in virus research,1 -advancing women in leadership,1 -advertising and society review,1 -aegaeum,1 -aegean archaeology,1 -aegyptus,1 -aeolian research,1 -aequationes mathematicae,1 -aerobiologia,1 -aeronautical journal,1 -aerosol and air quality research,1 -aerosol science and technology,1 -aerospace america,1 -aerospace science and technology,1 -aesthetic plastic surgery,1 -aethiopica,1 -aevum antiquum,1 -"aevum: rassegna di scienze storiche, linguistiche e filologiche",1 -afer : african ecclesiastical review,1 -affilia-journal of women and social work,1 -afinidad,0 -africa,3 -africa development-afrique et developpement,1 -africa media review,1 -africa theological journal,1 -africa today,1 -african affairs,3 -african american review,1 -african and asian studies,1 -african anthropologist,1 -african archaeological review,2 -african arts,2 -african christian studies,1 -african crop science journal: a journal of tropical crop science and production,1 -african development review-revue africaine de developpement,1 -african diaspora journal of mathematics,1 -african dynamics,1 -african economic history,1 -african entomology,1 -african geographical review,1 -african health sciences,1 -african historical review,1 -african identities,1 -african invertebrates,1 -african journal of agricultural research,0 -african journal of aquatic science,1 -african journal of business management,0 -african journal of ecology,1 -african journal of environmental assessment and management,1 -"african journal of food, agriculture, nutrition and development",1 -african journal of herpetology,1 -african journal of international and comparative law,1 -african journal of library archives and information science,1 -african journal of marine science,1 -african journal of microbiology research,0 -african journal of neurological sciences,1 -african journal of reproductive health,1 -african journal of traditional complementary and alternative medicines,0 -african journal on conflict resolution,1 -african literature today,1 -african music: journal of the african music society,1 -african natural history,1 -african philosophy,1 -african security review,1 -african social studies series,1 -african sociological review,1 -african sources for african history,1 -african studies,1 -african studies quarterly,1 -african studies review,1 -african yearbook of international law,1 -african zoology,1 -african-europe group for interdisciplinary studies,1 -afrika spectrum,1 -"afrika und uebersee: sprachen, kulturen",1 -afrique contemporaine,1 -afterall,1 -afterimage: the journal of media arts and cultural criticism,1 -agbioforum,1 -age and ageing,3 -ageing and society,2 -ageing international,1 -ageing research reviews,1 -agenda,1 -agenda: empowering women for gender equity,1 -aggression and violent behavior,2 -aggressive behavior,2 -aging and mental health,1 -aging cell,2 -aging clinical and experimental research,1 -aging male,1 -aging neuropsychology and cognition,1 -aging,1 -agora,1 -agora: papeles de filosofia,1 -agora: estudos classicos em debate,1 -agrarforschung schweiz,1 -agribusiness,1 -agricultural and food science,1 -agricultural and forest entomology,1 -agricultural and forest meteorology,3 -agricultural and resource economics review,1 -agricultural economics,1 -agricultural economics,1 -agricultural history,2 -agricultural history review,3 -journal of integrative agriculture,1 -agricultural systems,2 -agricultural water management,1 -agriculture and human values,2 -agriculture ecosystems and environment,3 -agro food industry hi-tech,1 -agrochimica,1 -agrociencia,1 -agroforestry systems,1 -agronomy for sustainable development,2 -agronomy journal,1 -agronomy monograph,1 -agronomy research,1 -agropedology,1 -ai and society,1 -ai communications,1 -ai edam-artificial intelligence for engineering design analysis and manufacturing,1 -ai magazine,1 -aiaa journal,1 -aibr-revista de antropologia iberoamericana,1 -aiche journal,1 -aidic conference series,1 -aids,1 -aids and behavior,1 -aids care: psychological and socio-medical aspects of aids/hiv,1 -aids education and prevention,1 -aids patient care and stds,2 -aids research and human retroviruses,1 -aids reviews,1 -aikuiskasvatus,1 -aila applied linguistics series,1 -aila review,1 -aip conference proceedings,1 -air medical journal,1 -air power history,1 -aircraft engineering and aerospace technology,1 -airline business,1 -ais transactions on human-computer interaction,1 -ajalooline ajakiri: the estonian historical journal,1 -african journal of aids research,1 -ajatus,2 -ajs review,1 -akkadica,2 -akroterion : journal for the classics in south africa,1 -aktuelle neurologie,1 -aktuelle rheumatologie,1 -aktuelle urologie,1 -akzente-zeitschrift fur literatur,1 -al-andalus magreb : estudios arabes e islamicos,1 -alasbimn journal,1 -albanian journal of mathematics,1 -albertiana,1 -alces: a journal devoted to the biology and management of moose,1 -alcheringa,1 -alcohol,1 -alcohol and alcoholism,1 -aldrichimica acta,1 -alea : latin american journal of probability and mathematical statistics,1 -alea: estudos neolatinos,1 -aleph: historical studies in science and judaism,1 -algebra and number theory,2 -algebra and logic,1 -algebra colloquium,1 -algebra universalis,1 -algebraic and geometric topology,1 -algebras and representation theory,1 -algemeen nederlands tijdschrift voor wijsbegeerte,1 -algorithmica,2 -algorithms for molecular biology,1 -alif: journal of comparative poetics,1 -l alighieri : rassegna bibliografica dantesca,1 -alimentary pharmacology and therapeutics,3 -aljamia,1 -alkalmazott nyelvtudomany,1 -allegoria: per uno studio materialistico della letteratura,1 -allelopathy journal,1 -allergologie,1 -allergology international,2 -allergy,3 -allergy and clinical immunology news,1 -allergy and asthma proceedings,1 -allergy: european journal of allergy and clinical immunology: supplement,1 -allgemeine forst und jagdzeitung,1 -allgemeine zeitschrift fur philosophie,1 -al-magallat al-tarihiyyat al-majribiyyat,1 -al-masaq: islam and the medieval mediterranean,1 -"alpha: revista de artes, letras y filosofia",1 -al-qantara,1 -altai hakpo,0 -altalanos nyelveszeti tanulmanyok,1 -forum stadt,1 -alter,1 -alternative and complementary therapies,1 -alternative medicine review,1 -alternative therapies in health and medicine,1 -alternative: an international journal of indigenous scholarship,2 -alternatives,1 -alternatives theatrales,1 -altertum,1 -altex alternatives to animal experimentation,1 -research in learning technology,1 -altorientalische forschungen,1 -alt-thuringen,1 -alue ja ympäristö,1 -aluminium,1 -alvissmal,1 -alzheimer disease and associated disorders,1 -alzheimer's & dementia,3 -amazoniana,1 -ambio,2 -ambix,1 -ameghiniana,1 -amerasia journal,1 -america indigena,1 -america latina hoy,1 -america,1 -american annals of the deaf,1 -american anthropologist,3 -american antiquity,3 -american archivist,1 -american art,1 -american bankruptcy law journal,1 -american bee journal,0 -american behavioral scientist,1 -american biology teacher,1 -american book publishing record,1 -american book review,1 -american business law journal,2 -american catholic philosophical quarterly,1 -american ceramic society bulletin,1 -american communication journal,1 -american communist history,1 -american criminal law review,1 -american economic journal: applied economics,3 -american economic journal: economic policy,3 -american economic journal: macroeconomics,3 -american economic journal: microeconomics,3 -american economic review,3 -american educational research journal,3 -american ethnologist,3 -american family physician,1 -american fern journal,1 -american foreign policy interests,1 -american heart journal,2 -american heritage,1 -american historical review,3 -american history,1 -american imago,1 -american indian culture and research journal,1 -american indian quarterly,1 -american jewish history,1 -american journal of agricultural economics,3 -american journal of alzheimers disease and other dementias,1 -american journal of ancient history,1 -american journal of applied sciences,1 -american journal of archaeology,3 -american journal of audiology,1 -american journal of bioethics,2 -american journal of botany,1 -american journal of cardiology,1 -american journal of cardiovascular drugs,1 -the american journal of chinese medicine,1 -american journal of clinical dermatology,1 -american journal of clinical nutrition,3 -american journal of clinical oncology-cancer clinical trials,1 -american journal of clinical pathology,1 -american journal of community psychology,1 -american journal of comparative law,3 -american journal of critical care,1 -american journal of dance therapy,1 -american journal of dentistry,1 -american journal of dermatopathology,1 -american journal of distance education,1 -american journal of drug and alcohol abuse,1 -american journal of economics and sociology,1 -american journal of education,1 -the neurodiagnostic journal,1 -american journal of emergency medicine,1 -american journal of enology and viticulture,1 -american journal of epidemiology,2 -american journal of evaluation,2 -american journal of family therapy,1 -american journal of forensic medicine and pathology,1 -american journal of gastroenterology,2 -american journal of geriatric pharmacotherapy,1 -american journal of geriatric psychiatry,1 -american journal of health behavior,1 -american journal of health promotion,1 -american journal of health studies,1 -american journal of health-system pharmacy,1 -american journal of hematology,2 -american journal of human biology,1 -american journal of human genetics,3 -american journal of hypertension,1 -american journal of industrial medicine,1 -american journal of infection control,1 -american journal of international law,3 -american journal of kidney diseases,2 -american journal of law and medicine,1 -american journal of legal history,1 -american journal of managed care,1 -american journal of mathematical and management sciences,1 -american journal of mathematics,3 -american journal of media psychology,1 -american journal of medical genetics. part a,1 -american journal of medical genetics. part b : neuropsychiatric genetics,1 -american journal of medical genetics. part c : seminars in medical genetics,1 -american journal of medical quality,1 -american journal of medicine,2 -american journal of mens health,1 -american journal of nephrology,1 -american journal of neuroradiology,1 -american journal of numismatics,1 -american journal of nursing,1 -american journal of obstetrics and gynecology,3 -american journal of occupational therapy,1 -american journal of ophthalmology,2 -american journal of orthodontics and dentofacial orthopedics,1 -american journal of orthopsychiatry,1 -american journal of otolaryngology,1 -american journal of pathology,2 -american journal of perinatology,1 -american journal of pharmaceutical education,1 -american journal of philology,3 -american journal of physical medicine and rehabilitation,1 -american journal of physics,1 -american journal of physiology : cell physiology,2 -american journal of physiology : endocrinology and metabolism,2 -american journal of physiology : gastrointestinal and liver physiology,2 -american journal of physiology : heart and circulatory physiology,2 -american journal of physiology : lung cellular and molecular physiology,2 -american journal of physiology : regulatory integrative and comparative physiology,2 -american journal of physiology-renal physiology,1 -american journal of political science,3 -american journal of potato research,1 -american journal of preventive medicine,2 -american journal of primatology,1 -american journal of psychiatric rehabilitation,1 -american journal of psychiatry,3 -american journal of psychoanalysis,1 -american journal of psychology,1 -american journal of psychotherapy,1 -american journal of public health,2 -american journal of reproductive immunology,1 -american journal of respiratory and critical care medicine,3 -american journal of respiratory cell and molecular biology,1 -american journal of rhinology and allergy,1 -american journal of roentgenology,1 -american journal of science,1 -american journal of semiotics,1 -american journal of sociology,3 -american journal of speech-language pathology,2 -american journal of sports medicine,3 -american journal of surgery,1 -american journal of surgical pathology,2 -american journal of the medical sciences,1 -american journal of theology and philosophy,1 -american journal of therapeutics,1 -american journal of transplantation,3 -american journal of tropical medicine and hygiene,1 -american journal of veterinary research,2 -american journal on addictions,1 -american journal on intellectual and developmental disabilities,2 -american laboratory,0 -american law and economics review,1 -american literary history,3 -american literary realism,1 -american literary scholarship,1 -american literature,3 -american malacological bulletin,1 -american mathematical monthly,1 -american midland naturalist,1 -american mineralogist,1 -american museum novitates,1 -american music,2 -american naturalist,3 -american nineteenth century history,1 -"american periodicals: a journal of history, criticism and bibliography",1 -american philosophical quarterly,2 -american poetry review,1 -american political science review,3 -american politics research,1 -american psychologist,3 -american quarterly,2 -american review of canadian studies,1 -american review of public administration,2 -american scholar,1 -american school of prehistoric research monograph series,1 -american sociological review,3 -american speech,2 -american statistician,1 -american studies in scandinavia,1 -american surgeon,1 -american translators association scholarly monograph series,1 -american university international law review,1 -americana,1 -americas,1 -americas conference on information systems,1 -amerikastudien,1 -amerindia,1 -amino acids,1 -ammattikasvatuksen aikakauskirja,1 -amme idaresi dergisi,1 -amphibia-reptilia,1 -ams-rapport,1 -ams-skrifter,1 -amsterdam studies in jewish philosophy,1 -amsterdamer beitrage zur alteren germanistik,1 -amsterdamer beitrage zur neueren germanistik,1 -amsterdamer publikationen zur sprache und literatur,1 -ams-varia,1 -amyloid-journal of protein folding disorders,1 -amyotrophic lateral sclerosis & frontotemporal degeneration,1 -anaerobe,1 -anaesthesia,2 -anaesthesia and intensive care,1 -der anaesthesist,1 -anais brasileiros de dermatologia,1 -anais de historia de alem-mar,1 -analecta augustiniana,1 -analecta bollandiana,1 -analecta cartusiana : review for carthusian history and spirituality,1 -analecta hibernica,1 -analecta husserliana: the yearbook of phenomenological research,1 -analecta malacitana,1 -analecta papyrologica,1 -analecta praehistorica leidensia,1 -analecta praemonstratensia,1 -analecta romana instituti danici,1 -analele stiintifice ale universitatii al i cuza din iasi-serie noua-matematica,1 -analele stiintifice ale universitatii ovidius constanta-seria matematica,1 -"analele universitatii din craiova, seria stiinte filologice, lingvistica",1 -anales cervantinos,1 -anales de antropologia,1 -anales de filologia clasica,1 -anales de la literatura espanola contemporanea,2 -anales de literatura chilena,1 -anales de literatura hispanoamericana,3 -anales de pediatria,1 -anales del instituto de investigaciones esteticas,1 -anales del jardin botanico de madrid,1 -anales del seminario de historia de la filosofia,1 -anales del sistema sanitario de navarra,1 -journal of the argentine chemical society,0 -anales galdosianos,1 -anali,1 -anali zavoda za povijesne znanosti hrvatske akademije znanosti i umjetnosti u dubrovniku,0 -analisi: quaderns de comunicacio i cultura,1 -analog integrated circuits and signal processing,1 -analyse und kritik: zeitschrift fuer sozialtheorie,1 -analysis,3 -analysis and pde,3 -analysis and applications,1 -analysis and mathematical physics,1 -analysis mathematica,1 -analyses of social issues and public policy,1 -analysis: international mathematical journal of analysis and its applications,1 -analyst,1 -analytica chimica acta,2 -analytical and bioanalytical chemistry,1 -analytical biochemistry,1 -analytical chemistry,3 -analytical letters,1 -analytical methods,1 -analytical sciences,1 -anaquel de estudios arabes,1 -anasthesiologie und intensivmedizin,1 -anasthesiologie intensivmedizin notfallmedizin schmerztherapie,1 -anatolia turizm ve cevre kulturu dergisi,1 -anatolia antiqua,1 -anatolian studies,2 -anatolica,1 -anatomia histologia embryologia,1 -anatomical record-advances in integrative anatomy and evolutionary biology,1 -anatomical science international,1 -ancient civilizations from scythia to siberia,2 -ancient egypt,1 -ancient history bulletin,1 -ancient judaism and early christianity,3 -"ancient mediterranean and medieval texts and contexts: studies in platonism, neoplatonism, and the platonic tradition",1 -ancient mesoamerica,1 -ancient narrative,1 -ancient near eastern studies,1 -ancient philosophy,2 -ancient society,1 -ancient west and east,1 -andamios,1 -andean geology,1 -anderseniana,1 -andrias,1 -andrologia,1 -anesthesia and analgesia,2 -anesthesia progress,1 -anesthesiology,2 -anesthesiology clinics,1 -angelaki-journal of the theoretical humanities,1 -angewandte chemie,3 -angiogenesis,2 -angiology,1 -angle orthodontist,1 -anglia,2 -anglican theological review,1 -anglistik,1 -anglo-norman studies,1 -anglo-saxon england,1 -anglo-saxon studies in archaeology and history,1 -animal,2 -animal behaviour,2 -animal biology,1 -animal biotechnology,1 -animal cells and systems,1 -animal cognition,1 -animal conservation,1 -animal feed science and technology,2 -animal genetics,2 -animal health research reviews,1 -animal reproduction science,1 -animal science journal,1 -animal science papers and reports,1 -animal welfare,1 -animation journal,1 -animation-an interdisciplinary journal,2 -animus: the canadian journal of philosophy and humanities,1 -annalen der physik,1 -"annalen des naturhistorischen museums in wien : serie a für mineralogie und petrographie, geologie und paläontologie, anthropologie und prähistorie",1 -"annales: histoire, sciences sociales",3 -"annales academiae scientiarum fennicae, humaniora",1 -annales academiae scientiarum fennicae: mathematica dissertationes,1 -annales archeologiques arabes syriennes,1 -annales botanici fennici,1 -annales d endocrinologie,1 -annales de bourgogne,1 -annales de bretagne et des pays de l'ouest,1 -annales de cardiologie et d angeiologie,1 -annales de chimie-science des materiaux,1 -annales de chirurgie plastique esthetique,1 -annales de demographie historique,1 -annales de dermatologie et de venereologie,1 -annales de geographie,1 -annales de l institut fourier,2 -annales de l’institut henri poincaré : analyse non linéaire,3 -annales de l’institut henri poincare-probabilites et statistiques,2 -annales de la fondation louis de broglie,1 -annales de la societe entomologique de france,1 -annales de la societe royale d archeologie de bruxelles,1 -annales de li.s.u.p.,1 -annales de limnologie-international journal of limnology,1 -annales de medecine veterinaire,1 -annales de paleontologie,1 -annales des sciences mathematiques du quebec,1 -annales du midi,1 -annales du service des antiquites de l egypte,1 -annales geophysicae,1 -annales historiques de la revolution francaise,1 -annales jean-jacques rousseau,1 -annales mathematiques blaise pascal,1 -annales medico-psychologiques,1 -annales polonici mathematici,1 -annales scientifiques de l ecole normale superieure,3 -annales societatis geologorum poloniae,1 -annales zoologici,1 -annales zoologici fennici,1 -annali benacensi,1 -annali d'italianistica,1 -annali dell istituto universitario orientale di napoli,1 -annali della scuola normale superiore di pisa,1 -annali della scuola normale superiore di pisa-classe di scienze,2 -annali di archeologia e di storia antica,1 -annali di ca foscari: rivista della facoltà di lingue e letterature straniere della università di venezia,1 -annali di matematica pura ed applicata,1 -annali di scienze religiose,1 -annali di storia dellesegesi,1 -annals academy of medicine singapore,1 -annals of actuarial science,1 -annals of agricultural and environmental medicine,1 -annals of air and space law,1 -annals of allergy asthma and immunology,1 -annals of anatomy-anatomischer anzeiger,1 -annals of applied biology,1 -annals of applied probability,3 -annals of applied statistics,3 -annals of arid zone,1 -annals of behavioral medicine,2 -annals of biomedical engineering,2 -annals of botany,2 -annals of cardiac anaesthesia,1 -annals of carnegie museum,1 -annals of clinical and laboratory science,1 -annals of clinical biochemistry,1 -annals of clinical microbiology and antimicrobials,1 -annals of clinical psychiatry,1 -annals of combinatorics,1 -annals of diagnostic pathology,1 -annals of dyslexia,1 -annals of emergency medicine,2 -annals of epidemiology,1 -annals of family medicine,1 -annals of finance,1 -annals of forest science,1 -annals of general psychiatry,1 -annals of geophysics,1 -annals of glaciology,1 -annals of global analysis and geometry,1 -annals of hematology,1 -annals of hepatology,1 -annals of human biology,1 -annals of human genetics,1 -annals of indian academy of neurology,1 -annals of internal medicine,3 -annals of long-term care,1 -annals of mathematics,3 -annals of mathematics and artificial intelligence,1 -annals of mathematics studies,1 -annals of medicine,2 -annals of microbiology,1 -annals of neurology,3 -annals of noninvasive electrocardiology,1 -annals of nuclear energy,1 -annals of nuclear medicine,1 -annals of nutrition and metabolism,1 -annals of occupational hygiene,1 -annals of oncology,3 -annals of operations research,1 -annals of ophthalmology,1 -annals of otology rhinology and laryngology,1 -annals of pharmacotherapy,1 -annals of physics,1 -annals of plastic surgery,1 -annals of probability,3 -annals of pure and applied logic,2 -annals of regional science,1 -annals of saudi medicine,1 -annals of scholarship,1 -annals of science,3 -annals of statistics,3 -annals of surgery,3 -annals of surgical oncology,2 -annals of telecommunications-annales des telecommunications,1 -annals of the american academy of political and social science,2 -annals of the association of american geographers,3 -annals of the entomological society of america,1 -annals of the history of computing,1 -annals of the icrp,1 -annals of the institute of statistical mathematics,1 -annals of the missouri botanical garden,1 -annals of the naprstek museum,1 -annals of the new york academy of sciences,1 -annals of the rheumatic diseases,3 -annals of the royal college of surgeons of england,1 -annals of thoracic and cardiovascular surgery,1 -annals of thoracic medicine,1 -annals of thoracic surgery,2 -annals of tourism research,3 -annals of transplantation,1 -pathogens and global health,1 -paediatrics and international child health,1 -annals of vascular surgery,1 -annee balzacienne,1 -annuaire de la haye de droit international,1 -annuaire du college de france : resume des cours et travaux,1 -annuaire europeen,1 -annuaire francais de droit international,1 -annuaire roumain danthropologie,1 -international acm sigir conference on research and development in information retrieval,2 -annual bulletin of historical literature,1 -proceedings of the annual conference of the cognitive science society,1 -annual conference on innovation & technology in computer science education,1 -annual ieee semiconductor thermal measurement and management symposium,1 -proceedings : international conference on dependable systems and networks,1 -annual meeting of the american institute of chemical engineers,1 -annual of the british school at athens,3 -annual of the department of antiquities of jordan,1 -annual publication in african linguistics,1 -annual reports in medicinal chemistry,1 -annual reports on nmr spectroscopy,1 -annual review of analytical chemistry,1 -annual review of anthropology,2 -annual review of applied linguistics,2 -annual review of astronomy and astrophysics,3 -annual review of biochemistry,2 -annual review of biomedical engineering,2 -annual review of biophysics,2 -annual review of cell and developmental biology,2 -annual review of clinical psychology,3 -review of cognitive linguistics,2 -annual review of critical psychology,1 -annual review of earth and planetary sciences,3 -annual review of ecology evolution and systematics,3 -annual review of economics,2 -annual review of entomology,2 -annual review of environment and resources,2 -annual review of financial economics,1 -annual review of fluid mechanics,3 -annual review of food science and technology,2 -annual review of genetics,2 -annual review of genomics and human genetics,2 -annual review of immunology,3 -annual review of law and social science,2 -annual review of marine science,3 -annual review of materials research,2 -annual review of medicine,2 -annual review of microbiology,1 -annual review of neuroscience,2 -annual review of nuclear and particle science,1 -annual review of nutrition,3 -annual review of pathology-mechanisms of disease,2 -annual review of pathology: mechanisms of disease,2 -annual review of pathology,2 -annual review of pharmacology and toxicology,3 -annual review of physical chemistry,1 -annual review of physiology,3 -annual review of phytopathology,2 -annual review of plant biology,2 -annual review of political science,3 -annual review of psychology,3 -annual review of public health,3 -annual review of resource economics,1 -annual review of sociology,3 -annual reviews in control,2 -proceedings : simulation symposium,1 -annual transactions of the nordic rheology society,1 -annuario della scuola archeologica di atene e delle missioni italiane in oriente,1 -annuario dellistituto storico italiano per leta moderna e contemporanea,1 -annuarium historiae conciliorum: internationale zeitschrift fur konziliengeschichtsforschung,1 -"anq-a quarterly journal of short articles, notes and reviews",1 -antaeus,1 -antarctic science,1 -antepodium,1 -anthropoetics: the journal of generative anthropolgy,1 -anthropologica,2 -anthropologica et praehistorica,1 -anthropological forum,2 -anthropological journal of european cultures,2 -anthropological linguistics,2 -anthropological notebooks,1 -anthropological quarterly,2 -anthropological review,1 -anthropological theory,3 -anthropozoologica,1 -anthropologie et societes,1 -anthropologischer anzeiger,1 -anthropologist,0 -anthropology and education quarterly,2 -anthropology and archeology of eurasia,1 -anthropology and humanism,1 -anthropology and medicine,2 -anthropology in action,2 -anthropology of east europe review,1 -anthropology of food: web journal dedicated to the sociology and anthropology of food,1 -anthropology southern africa,1 -anthropology today,1 -anthropos,1 -anthrozoos,1 -anti-cancer agents in medicinal chemistry,1 -anti-cancer drugs,1 -anticancer research,1 -antichthon,1 -anti-corrosion methods and materials,1 -antigonish review,1 -anti-inflammatory and anti-allergy agents in medicinal chemistry,1 -antike kunst,2 -antike münzen und geschnittene steine,1 -antike und abendland,1 -antike welt,1 -antimicrobial agents and chemotherapy,3 -antioch review,1 -antioxidants and redox signaling,2 -antipodas: journal of hispanic and galician studies,1 -antipode,3 -antipodes,1 -antiquaries journal,1 -antiquite classique,1 -antiquite tardive,2 -antiquites africaines,1 -antiquites nationales,1 -antiquity,3 -antitrust law journal,1 -antiviral chemistry and chemotherapy,1 -antiviral research,1 -antiviral therapy,1 -antonianum,1 -antonie van leeuwenhoek international journal of general and molecular microbiology,1 -antropolitica,1 -antropologi indonesia,1 -antropologia portuguesa,1 -antropologicas,1 -"anuari de filologia: seccio d, studia graeca et latina",1 -anuario de estudios americanos,1 -anuario de estudios medievales,1 -anuario de historia de la iglesia,1 -anuario de historia del derecho espanol,1 -anuario filosofico,1 -anuario musical,1 -anuarul institutul de etnografie si folclor constantin ibrailoiu,1 -anxiety stress and coping,1 -anz journal of surgery,1 -anzeiger des germanischen nationalmuseums,1 -anzeiger für die altertumswissenschaft,1 -anziam journal,1 -aorn journal,1 -apeiron,2 -apeiron: studies in infinite nature,1 -aperture,1 -aphasiology,2 -apidologie,1 -apl: organic electronics and photonics,1 -apmis,1 -apocrypha,1 -apollinaris,1 -apollo : the international magazine for collectors,1 -apoptosis,1 -aportes: revista de historia contemporanea,1 -appalachian journal,1 -the appea journal and conference proceedings,1 -appetite,2 -appita annual conference proceedings,1 -appita journal,1 -apples: journal of applied language studies,1 -applicable algebra in engineering communication and computing,1 -applicable analysis,1 -applicable analysis and discrete mathematics,1 -proceedings: international conference on application of concurrency to system design,1 -applications of mathematics,1 -applied and preventive psychology,1 -applied acoustics,2 -applied and computational harmonic analysis,2 -applied and computational mathematics,0 -applied and environmental microbiology,1 -applied animal behaviour science,2 -applied artificial intelligence,1 -applied biochemistry and biotechnology,1 -applied biochemistry and microbiology,1 -applied bionics and biomechanics,1 -applied cardiopulmonary pathophysiology,1 -applied catalysis a : general,2 -applied catalysis b : environmental,3 -applied categorical structures,1 -applied clay science,1 -applied cognitive psychology,1 -applied composite materials,1 -applied computational electromagnetics society journal,1 -applied developmental science,1 -applied ecology and environmental research,0 -applied economic perspectives and policy,1 -applied economics,1 -applied economics letters,1 -applied economics quarterly,1 -applied energy,3 -applied entomology and zoology,1 -applied environmental education and communication,1 -applied ergonomics,2 -applied financial economics,1 -applied geochemistry,1 -applied geography,2 -applied geomatics,1 -applied geophysics,1 -applied health economics and health policy,1 -applied immunohistochemistry and molecular morphology,1 -applied intelligence,1 -applied linguistics,3 -applied magnetic resonance,1 -applied mathematical finance,1 -applied mathematical modelling,1 -applied mathematical sciences,0 -applied mathematics and information sciences,0 -applied mathematics and computation,1 -applied mathematics and mechanics-english edition,1 -applied mathematics and optimization,2 -applied mathematics e: notes,1 -applied mathematics letters,1 -applied mathematics research express,1 -applied measurement in education,1 -applied mechanics reviews,1 -applied microbiology and biotechnology,2 -applied numerical mathematics,1 -applied nursing research,1 -applied ocean research,1 -applied ontology,2 -applied optics,1 -applied organometallic chemistry,1 -applied physics a-materials science and processing,1 -applied physics b-lasers and optics,1 -applied physics express,1 -applied physics letters,3 -applied physics reviews,2 -applied physiology nutrition and metabolism-physiologie appliquee nutrition et metabolisme,1 -applied psycholinguistics,2 -applied psychological measurement,1 -applied psychology,1 -applied psychophysiology and biofeedback,1 -applied radiation and isotopes,1 -applied radiology,1 -applied research in quality of life,1 -applied rheology,1 -applied sciences,1 -applied semiotics,1 -applied soft computing,1 -applied soil ecology,1 -applied spectroscopy,1 -applied spectroscopy reviews,1 -applied stochastic models in business and industry,1 -applied surface science,2 -applied theatre research,2 -applied thermal engineering,3 -applied vegetation science,1 -alsic: apprentissage des langues et systemes dinformation et de communication,1 -approaching religion,2 -apuntes hispanicos,1 -aquacultural engineering,1 -aquaculture,2 -aquaculture international,1 -aquaculture nutrition,1 -aquaculture research,1 -aquaculture economics and management,1 -aquatic biology,1 -aquatic botany,1 -aquatic conservation : marine and freshwater ecosystems,1 -aquatic ecology,1 -aquatic ecosystem health and management,1 -aquatic geochemistry,1 -aquatic insects,1 -aquatic invasions,1 -aquatic living resources,1 -aquatic mammals,1 -aquatic microbial ecology,1 -aquatic sciences,1 -aquatic toxicology,2 -aquichan,1 -arab gulf journal of scientific research,1 -arab historical review for ottoman studies,1 -arab media and society,1 -arab studies quarterly,1 -arabian archaeology and epigraphy,2 -arabian journal of geosciences,1 -arabic sciences and philosophy,1 -arabica,3 -aram periodical,1 -aramaic studies,1 -arbeiderhistorie,1 -arbeits- und forschungsberichte zur sächsischen bodendenkmalpflege,1 -"arbejderhistorie: tidsskrift for historie, kultur og politik",1 -arbetarhistoria: meddelande från arbetarrorelsens arkiv och bibliotek,0 -arbitration international,2 -arbitrium: zeitschrift für rezensionen zur germanistischen literaturwissenschaft,1 -"arbor : ciencia, pensamiento y cultura",1 -arca lovaniensis,0 -arcadia,2 -arch plus,1 -archaea,1 -archaeofauna,1 -arkheolohiya : zbirnyk naukovykh prats,1 -archaeologia aeliana,1 -archaeologia cambrensis,1 -archaeologia islandica,1 -archaeologia lituana,1 -archaeologia maritima mediterranea,1 -archaeologia medii aevi finlandiae,1 -archaeologia polona,1 -archaeologica austriaca,2 -archaeologica baltica,1 -archaeologica bulgarica,1 -archaeological and anthropological sciences,2 -archaeological dialogues,3 -archaeological prospection,2 -archaeological reports,1 -archaeologies,1 -archaeology,0 -archaeology and environment,1 -archaeology in oceania,1 -archaeology in wales,1 -archaeology ireland,1 -archaeology of york,1 -"archaeology, ethnology and anthropology of eurasia",1 -archaeometry,3 -archaeonautica,1 -archaiologikon deltion,0 -archäologie österreichs,1 -archäologische informationen: mitteilungen zur ur- und frühgeschichte,1 -archäologische mitteilungen aus iran und turan,1 -archäologischer anzeiger,1 -archäologisches korrespondenzblatt,1 -archeo,1 -archeologia,1 -archeologia classica,1 -archeologia e calcolatori,1 -archeologia medievale,2 -archeologia mosellana,1 -archeologia polski,1 -archeologia postmedievale,1 -archeologica veneta,1 -archeological papers of the american anthropological association,1 -archeologicke rozhledy,1 -archeologie du midi medieval,1 -archeologie en languedoc,1 -archeologie medievale,1 -archäologie der schweiz,1 -archeology international,1 -archéo-nil,1 -archipel-etudes interdisciplinaires sur le monde insulindien,1 -architectura: arkitekturhistorisk årsskrift,1 -architectural engineering and design management,2 -architectural history,2 -architectural science review,3 -architectural theory review,2 -architectura-zeitschrift für geschichte der baukunst,1 -archiv der mathematik,1 -archiv der pharmazie,1 -archiv des öffentlichen rechts,1 -archiv des völkerrechts,1 -archiv fuer orientforschung,1 -archiv für begriffsgeschichte,1 -archiv für das studium der neueren sprachen und literaturen,1 -"archiv für diplomatik, schriftgeschichte, siegel- und wappenkunde",1 -archiv fur geflugelkunde,1 -archiv für geschichte der philosophie,2 -"archiv für kriminologie: unter besonderer berücksichtigung der gerichtlichen physik, chemie und medizin",1 -archiv für kulturgeschichte,1 -archiv fur lebensmittelhygiene,1 -archiv für liturgiewissenschaft : internationale fachzeitschrift für liturgiewissenschaft,1 -archiv fur molluskenkunde,1 -archiv für musikwissenschaft,2 -archiv für papyrusforschung und verwandte gebiete,2 -archiv für rechts- und sozialphilosophie,1 -archiv für reformationsgeschichte,3 -archiv für religionsgeschichte,1 -archiv für sozialgeschichte,1 -archiv fu?r tierzucht,1 -archiv für völkerkunde,0 -archiv orientalni,1 -archivar: zeitschrift für archivwesen,1 -archivaria,1 -archive for history of exact sciences,2 -archive for mathematical logic,1 -archive for rational mechanics and analysis,3 -archive for the psychology of religion,3 -archive of applied mechanics,1 -archives and manuscripts,1 -archival science,3 -archives dhistoire doctrinale et litteraire du moyen age,1 -archives de pediatrie,1 -archives de philosophie,1 -archives de sciences sociales des religions,2 -archives des maladies professionnelles et de l environnement,1 -archives europeennes de sociologie,1 -archives internationales dhistoire des sciences,1 -archives of agronomy and soil science,1 -archives of american art journal,1 -archives of animal nutrition,1 -archives of asian art,1 -archives of biochemistry and biophysics,1 -archives of budo,1 -archives of cardiovascular diseases,1 -archives of clinical neuropsychology,1 -archives of computational methods in engineering,1 -archives of control sciences,1 -archives of dermatological research,1 -archives of disease in childhood,2 -archives of disease in childhood-fetal and neonatal edition,3 -archives of drug information,1 -archives of environmental and occupational health,1 -archives of environmental contamination and toxicology,1 -archives of environmental protection,1 -archives of gerontology and geriatrics,1 -archives of gynecology and obstetrics,1 -archives of histology and cytology,1 -archives of insect biochemistry and physiology,1 -archives of materials science and engineering,1 -archives of mechanics,1 -archives of medical research,1 -archives of medical science,1 -archives of metallurgy and materials,1 -archives of microbiology,1 -archives of mining sciences,1 -archives of natural history,1 -archives of oral biology,1 -archives of orthopaedic and trauma surgery,1 -archives of pathology and laboratory medicine,2 -archives of pharmacal research,1 -archives of physical medicine and rehabilitation,3 -archives of physiology and biochemistry,1 -archives of phytopathology and plant protection,1 -archives of psychiatric nursing,1 -archives of public health,1 -archives of sexual behavior,2 -archives of suicide research,1 -archives of thermodynamics,1 -archives of toxicology,3 -archives of virology,1 -archives of womens mental health,1 -archives: the journal of the british records association,1 -archivio glottologico italiano,1 -archivio per lantropologia e la etnologia,1 -archivio storico italiano,1 -archivium hibernicum,1 -archivo de filologia aragonesa,1 -archivo de prehistoria levantina,1 -archivo espanol de arqueologia,1 -archivo espanol de arte,2 -archivos de bronconeumologia,1 -archivos de medicina veterinaria,1 -archivos latinoamericanos de nutricion,1 -archivum,1 -archivum eurasiae medii aevi,1 -archivum franciscanum historicum,1 -archivum historiae pontificiae,1 -archivum historicum societatis iesu,1 -archivum immunologiae et therapiae experimentalis,1 -bulletin du cange,1 -archivum lithuanicum,1 -archivum mathematicum,1 -arctic,1 -arctic antarctic and alpine research,1 -arctic anthropology,2 -arctos,2 -ardea,1 -ardeola,1 -area,2 -arethusa,3 -argos,1 -argos: revista de la asociacion argentina estudios clasicos,1 -argumentation,2 -argumentation and advocacy,1 -argumentation et analyse du discours,1 -arhaiologiko ergo ste makedonia kai thrake,1 -arheologia moldovei,1 -"arheologia, etnografia i antropologia evrazii",1 -arheoloski vestnik,1 -arhiv za higijenu rada i toksikologiju,1 -ariadne,1 -ariane: revue detudes litteraires francaises,2 -arid land research and management,1 -ariel-a review of international english literature,2 -aries: journal for the study of western esotericism,2 -arina: nordisk tidskrift for kvensk forskning - pohjoismainen kveenitutkimuksen aikakausjulkaisu,1 -arion-a journal of humanities and the classics,2 -aristoteles semitico-latinus,1 -arizona quarterly,1 -arkansas historical quarterly,0 -arkiv for matematik,2 -arkiv för nordisk filologi,2 -arkivoc,1 -armed forces and society,1 -arms and armour,1 -arqueologia mexicana,1 -arquitetura revista,1 -arquivos brasileiros de cardiologia,1 -arquivos brasileiros de endocrinologia e metabologia,1 -arquivos brasileiros de oftalmologia,1 -arquivos de neuro-psiquiatria,1 -ars combinatoria,1 -ars disputandi: the online journal for philosophy of religion,1 -ars orientalis,1 -ars pharmaceutica,1 -art bulletin,3 -art education,1 -art history,3 -art in america,1 -art journal,3 -"art, antiquity, and law",1 -arte cristiana,1 -arte medievale,2 -"arteriosclerosis, thrombosis, and vascular biology",2 -arthritis research and therapy,2 -arthropod structure and development,1 -arthropod systematics and phylogeny,1 -arthropod-plant interactions,1 -arthroscopy-the journal of arthroscopic and related surgery,3 -arthroskopie,1 -arthuriana,1 -artibus asiae,1 -"artificial cells, blood substitutes and biotechnology",1 -artificial intelligence,3 -artificial intelligence and law,2 -artificial intelligence in medicine,2 -artificial intelligence review,1 -artificial life,2 -artificial organs,1 -"arts and humanities in higher education: an international journal of theory, research and practice",1 -arts asiatiques,1 -arts education policy review,1 -arts in psychotherapy,1 -arts of asia,1 -arv: nordic yearbook of folklore,1 -asaio journal,1 -asclepio: revista de historia de la medicina y de la ciencia,1 -asean economic bulletin,1 -asean journal on hospitality and tourism,1 -ashrae transactions,1 -asia - pacific review,1 -asia europe journal,1 -asia journal of theology,1 -asia life sciences,1 -asia major: a journal of far eastern studies,1 -asia pacific business review,1 -asia pacific journal of anthropology,1 -asia pacific journal of clinical nutrition,1 -asia pacific journal of economics and business,1 -asia pacific journal of human resources,1 -asia pacific journal of management,1 -asia pacific journal of marketing and logistics,1 -asia pacific journal of social work and development,1 -asia pacific journal of tourism research,1 -asia pacific journal on human rights and the law,1 -asia pacific law review,2 -asia pacific viewpoint,1 -asian and pacific migration journal,1 -asian business and management,1 -asian case research journal,1 -asian chemistry letters,1 -asian development review,1 -asian economic journal,1 -asian economic papers,1 -asian economic policy review,1 -asian efl journal,1 -asian ethnicity,1 -asian ethnology,1 -asian folklore studies,1 -asian highlands perspectives,1 -asian journal of andrology,1 -asian journal of chemistry,1 -asian journal of civil engineering,1 -asian journal of communication,1 -asian journal of comparative law,1 -asian journal of earth sciences,0 -asian journal of english language teaching,1 -asian journal of mathematics,1 -asian journal of occupational therapy,1 -asian journal of social psychology,1 -asian journal of social science,1 -asian journal of spectroscopy,1 -asian journal of technology innovation,1 -"asian journal of water, environment and pollution",1 -asian journal of womens studies,1 -asian journal of wto and international health law and policy,1 -asian medicine,1 -asian music,1 -asian nursing research,1 -asian pacific journal of allergy and immunology,1 -asian pacific journal of cancer prevention,1 -asian pacific journal of tropical medicine,1 -asian perspective,1 -asian perspectives,1 -asian philosophy,1 -asian population studies,1 -asian profile,1 -asian survey,2 -asian theatre journal,2 -asian women,1 -asian-pacific economic literature,1 -asia-pacific financial markets,1 -asia-pacific journal of accounting and economics,1 -asia-pacific journal of chemical engineering,1 -asia-pacific journal of education,1 -asia-pacific journal of molecular biology and biotechnology,1 -asia-pacific journal of operational research,1 -asiapacific mediaeducator,1 -asiatische forschungen,1 -asiatische studien,1 -"asilomar conference on signals, systems, and computers proceedings",1 -aslas skriftserie,1 -asn neuro,1 -assay and drug development technologies,1 -assemblage: the sheffield graduate journal of archaeology,1 -assembly automation,1 -assessing writing,1 -assessment,1 -assessment and evaluation in higher education,3 -"assessment in education: principles, policy and practice",2 -assistive technology,1 -annual meeting of the association for computational linguistics,3 -asta: advances in statistical analysis,1 -asterisque,2 -astin bulletin,1 -astrobiology,1 -astronomical and astrophysical transactions: the journal of the eurasian astronomical society,1 -astronomical journal,1 -astronomical society of the pacific conference series,1 -astronomische nachrichten,1 -astronomy and astrophysics,3 -astronomy and geophysics,1 -astronomy and astrophysics review,3 -astronomy letters: a journal of astronomy and space astrophysics,1 -astronomy reports,1 -astroparticle physics,1 -astrophysical bulletin,1 -astrophysical journal,1 -astrophysical journal letters,3 -astrophysical journal supplement series,2 -astrophysics,1 -astrophysics and space science,1 -astropolitics,1 -asymptotic analysis,1 -atencion primaria,1 -atene e roma: nuova serie seconda,1 -athenaeum,1 -athenaeum: studi periodici di letteratura e storia dellantichita,2 -atherosclerosis,2 -international journal of athletic therapy & training,1 -atiqot,1 -atla: alternatives to laboratory animals,1 -atlal,1 -atlanta review,1 -atlantic economic journal,1 -atlantic geology,1 -atlantic journal of communications,1 -"atlantic studies: literary, cultural and historical perspectives",2 -atlantis,1 -atlantis : a womens studies journal,1 -atmosfera,1 -atmosphere: ocean,1 -atmospheric chemistry and physics,3 -atmospheric environment,1 -atmospheric measurement techniques,2 -atmospheric research,1 -atmospheric science letters,1 -atomic data and nuclear data tables,1 -atomic energy,1 -atomic spectroscopy,1 -atomization and sprays,1 -attachment and human development,1 -attention and performance,1 -attention perception and psychophysics,1 -atti della accademia nazionale dei lincei: notizie degli scavi di antichita,1 -"atti della pontificia accademia romana di archeologia: serie 3, memorie",1 -"atti della pontificia accademia romana di archeologia: serie iii, rendiconti",1 -atti centro richerche e documentazione sullantichità classica,1 -atw : international journal for nuclear power,1 -audiological medicine,1 -audiology: official organ of the international society of audiology,1 -audiology and neuro-otology,1 -auditing: a journal of practice and theory,2 -at mineral processing. europe,1 -aufklärung: interdisziplinare halbjahrechrift zur erforschung des 18: jahrhunderts und seiner wirkungsgeschichte,1 -augmentative and alternative communication,1 -augustinian studies,2 -augustiniana,1 -augustinianum,1 -augustinus,1 -aula orientalis,1 -aun,1 -accademia etrusca di cortona: annuario,1 -auris nasus larynx,1 -aus politik und zeitgeschichte,1 -ausgrabungen und funde in westfalen-lippe,1 -ausimm bulletin,1 -austral ecology,1 -australasian biotechnology,1 -australasian canadian studies,1 -australasian drama studies,1 -australasian emergency nursing journal,1 -australasian journal of combinatorics,1 -australasian journal of dermatology,1 -australasian journal of disaster and trauma studies,1 -australasian journal of environmental management,1 -australasian journal of information systems,1 -australasian journal of philosophy,3 -australasian journal on ageing,1 -australasian marketing journal,1 -australasian psychiatry,1 -australasian journal of victorian studies,1 -australian and new zealand journal of obstetrics and gynaecology,1 -australian and new zealand journal of statistics,1 -australian aboriginal studies,1 -australian academic and research libraries,1 -australian accounting review,1 -australian and new zealand journal of art,1 -australian and new zealand journal of arts therapy,1 -australian and new zealand journal of family therapy,1 -australian and new zealand journal of psychiatry,1 -australian and new zealand journal of public health,1 -australian archaeology,1 -australian art education,1 -australian biblical review,1 -australian critical care: official journal of the confederation of australian critical care nurses,1 -australian dental journal,1 -australian economic papers,1 -australian economic review,1 -australian educational researcher,1 -australian endodontic journal,1 -australian family physician,1 -australian feminist studies,1 -australian geographer,1 -australian historical studies,1 -australian humanities review,1 -australian journal of adult learning,1 -australian journal of advanced nursing,1 -australian journal of agricultural and resource economics,1 -australian journal of anthropology,2 -australian journal of botany,1 -australian journal of chemistry,1 -australian journal of communication,1 -australian journal of crop science,1 -australasian journal of early childhood,1 -australian journal of earth sciences,1 -australian journal of education,1 -animal production science,1 -australian journal of family law,1 -australian journal of french studies,2 -australian journal of grape and wine research,1 -australian journal of human rights,1 -australian journal of international affairs,1 -australasian journal of irish studies,1 -australian journal of labour law,1 -australian journal of language and literacy,1 -australian journal of legal philosophy,1 -australian journal of linguistics,1 -australian journal of management,1 -australian journal of mathematical analysis and applications,1 -australian journal of music education,1 -australian journal of music therapy,1 -australian journal of pharmacy,1 -australian journal of political science,1 -australian journal of politics and history,1 -australian journal of primary health,1 -australian journal of public administration,1 -australian journal of rural health,1 -australian journal of social issues,1 -soil research,1 -australian journal of zoology,1 -australian library journal,1 -australian literary studies,1 -australian mathematical society: gazette,1 -australian meteorological and oceanographic journal,1 -australian mining,1 -australian occupational therapy journal,1 -australian prescriber,1 -journal for the academic study of religion,1 -australian social work,1 -australian systematic botany,1 -"australian tax forum: a journal of taxation policy, law and reform",1 -australian veterinary journal,1 -australian veterinary practitioner,1 -australian yearbook of international law,1 -austrian history yearbook,2 -austrian journal of forest science,1 -austrian studies,1 -aut aut,1 -autism,2 -autism research,1 -auto/biography studies,1 -autoimmunity,1 -autoimmunity reviews,1 -automated software engineering,2 -automatic control and computer sciences,1 -automatica,3 -automation and remote control,1 -automation in construction,2 -autonomic neuroscience: basic and clinical,1 -autonomous agents and multi-agent systems,2 -autonomous robots,2 -autophagy,2 -avant garde critical studies,1 -avian biology research,1 -avian diseases,1 -avian pathology,1 -allgemeine vermessungs-nachrichten,1 -ayer,2 -azania,1 -b e journal of economic analysis and policy,1 -b e journal of macroeconomics,1 -b e journal of theoretical economics,1 -b.c.a. sicilia,1 -b>quest: a journal of applied topics in business and economics,1 -babel: revue internationale de la traduction,1 -babesch: bulletin antieke beschaving,1 -babylon: tidsskrift om midtösten og nord-afrika,1 -bach,1 -bach-jahrbuch,1 -baessler archiv,1 -balkan journal of geometry and its applications,1 -balkan studies,1 -balkanistica,1 -ballet review,1 -baltic forestry,1 -baltic journal of economics,1 -baltic journal of management,1 -baltic linguistics,1 -baltica,1 -baltic-pontic studies,1 -baltische studien,1 -baltistica,1 -baltu filologija,1 -banach center publications,1 -banach journal of mathematical analysis,1 -bangladesh journal of botany,1 -bangladesh journal of plant taxonomy,1 -bankhistorisches archiv,1 -banking law journal,1 -banque des mots,1 -barnboken,1 -basic and clinical pharmacology and toxicology,2 -basic and applied ecology,1 -european journal of translational myology,1 -basic and applied social psychology,1 -basic income studies,1 -basic research in cardiology,2 -basin research,1 -bab working papers,1 -bayesian analysis,2 -bc studies,1 -bealoideas,1 -bebyggelsehistorisk tidskrift,1 -bedfordshire archaeology,1 -before farming : the archaeology and anthropology of hunter-gatherers,1 -behavior analyst,1 -behavior and philosophy,1 -behavior and social issues,1 -behavior genetics,1 -behavior modification,1 -behavior research methods,2 -behavior therapy,1 -behavioral and brain functions,1 -behavioral and brain sciences,2 -behavioral and social sciences librarian,1 -behavioral disorders,1 -behavioral ecology,3 -behavioral ecology and sociobiology,2 -behavioral interventions,1 -behavioral medicine,1 -behavioral neuroscience,1 -behavioral research in accounting,1 -behavioral sciences and the law,1 -behavioral sleep medicine,1 -behaviormetrika,1 -behaviour,1 -behaviour and information technology,2 -behaviour change,1 -behaviour research and therapy,3 -behavioural and cognitive psychotherapy,1 -behavioural brain research,1 -behavioural neurology,1 -behavioural pharmacology,1 -behavioural processes,1 -beihefte zur zeitschrift für französische sprache und literatur,1 -beihefte zur zeitschrift für romanische philologie,1 -beilstein journal of organic chemistry,1 -beiträge zur algebra und geometrie,1 -beiträge zur feministischen theorie und praxis,1 -beiträge zur film- und fernsehenwissenschaft,1 -beiträge zur geschichte der arbeiterbewegung,0 -beiträge zur geschichte der deutschen sprache und literatur,3 -beiträge zur geschichte der sprachwissenschaft,1 -beiträge zur namenforschung,1 -beiträge zur germanistischen sprachwissenschaft,1 -belfagor,1 -belgeo,1 -belgian journal of linguistics,1 -belgian journal of zoology,1 -belgisch tijdschrift voor nieuwste geschiedenis,1 -bell system technical journal,2 -belleten,1 -belphegor: popular literature and media culture,1 -ben jonson journal,1 -benchmarking,1 -benedictina: rivista di studi benedettini,1 -b-ent,1 -berber studies,1 -berichte der römisch-germanischen kommission,2 -berichte zur wissenschaftsgeschichte,1 -"berkeley journal of gender, law and justice",1 -berkeley technology law journal,1 -berliner beiträge zur skandinavistik,1 -berliner journal fur soziologie,1 -berliner theologische zeitschrift,1 -berliner und munchener tierarztliche wochenschrift,1 -bernoulli,2 -berytus archaeological studies,1 -best practice and research clinical endocrinology and metabolism,1 -best practice and research clinical haematology,1 -best practice and research clinical obstetrics and gynaecology,1 -best practice and research in clinical gastroenterology,1 -best practice and research in clinical rheumatology,1 -bestuurskunde,1 -beszédkutatás,1 -beton- und stahlbetonbau,1 -bibel und kirche,1 -biblica,2 -biblical archaeology review,2 -biblical interpretation,2 -biblical research,1 -biblical theology bulletin,1 -bibliotheca historica,1 -bibliotheca orientalis,1 -bibliotheque dhumanisme et renaissance: travaux et documents,1 -bibliothèque de lécole des chartes,1 -biblische notizen,2 -biblische zeitschrift,2 -bid: textos universitaris de biblioteconomia i documentacio,1 -bidrag till kännedom av finlands natur och folk,1 -bien dire et bien aprandre: revue de medievistique,1 -bmgn : low countries historical review,1 -bijdragen tot de geschiedenis: inzonderheid van het aloude hertogdom brabant,1 -"bijdragen tot de taal-, land- en volkenkunde",2 -bilig,1 -bilingual research journal,1 -bilingualism: language and cognition,3 -bioacoustics: the international journal of animal sound and its recording,1 -bioanalysis,1 -biocatalysis and biotransformation,1 -biocell,1 -biochemia medica,1 -biochemical and biophysical research communications,1 -biochemical engineering journal,1 -biochemical genetics,1 -biochemical journal,2 -biochemical pharmacology,2 -biochemical society symposia,1 -biochemical society transactions,1 -biochemical systematics and ecology,1 -biochemistry,1 -biochemistry and cell biology-biochimie et biologie cellulaire,1 -biochemistry and molecular biology education,1 -biochemistry: moscow,1 -biochimica et biophysica acta: bioenergetics,1 -biochimica et biophysica acta: biomembranes,1 -biochimica et biophysica acta: gene regulatory mechanisms,1 -biochimica et biophysica acta: general subjects,1 -biochimica et biophysica acta: molecular and cell biology of lipids,1 -biochimica et biophysica acta: molecular basis of disease,1 -biochimica et biophysica acta: molecular cell research,1 -biochimica et biophysica acta: proteins and proteomics,1 -biochimica et biophysica acta: reviews on cancer,1 -biochimica et biophysica acta (bba) - bioenergetics,1 -biochimica et biophysica acta (bba) - biomembranes,1 -biochimica et biophysica acta (bba) - gene regulatory mechanisms,1 -biochimica et biophysica acta (bba) - general subjects,1 -biochimica et biophysica acta (bba) - molecular and cell biology of lipids,1 -biochimica et biophysica acta (bba) - molecular basis of disease,1 -biochimica et biophysica acta (bba) - molecular cell research,1 -biochimica et biophysica acta (bba) - proteins and proteomics,1 -biochimica et biophysica acta (bba) - reviews on cancer,1 -biochimie,1 -biochip journal,1 -bioconjugate chemistry,1 -biocontrol,1 -biocontrol science,1 -biocontrol science and technology,1 -biocybernetics and biomedical engineering,1 -biocycle,1 -biodegradation,1 -biodemography and social biology,1 -biodiversity and conservation,2 -biodrugs,1 -bioelectrochemistry,1 -bioelectromagnetics,1 -bioenergy research,1 -bioessays,1 -bioethics,3 -biofabrication,1 -biofactors,1 -biofouling,1 -biofuels bioproducts and biorefining: biofpr,1 -biofutur,1 -biogenic amines,1 -biogeochemistry,1 -biogeosciences,2 -biogeosciences discussions,0 -biogerontology,1 -biography: an interdisciplinary quarterly,3 -bioinformatics,3 -bioinorganic chemistry and applications,1 -bioinspiration and biomimetics,1 -biointerphases,1 -biolinguistics,1 -biologia,1 -biologia plantarum,1 -biological and pharmaceutical bulletin,1 -biological agriculture and horticulture,1 -biological bulletin,1 -biological chemistry,1 -biological conservation,2 -biological control,1 -biological cybernetics,1 -biological invasions,2 -biological journal of the linnean society,1 -biological procedures online,1 -biological psychiatry,3 -biological psychology,2 -biological research,1 -biological research for nursing,1 -biological reviews,2 -biological rhythm research,1 -biological trace element research,1 -biologicals,1 -biologiya morya,1 -biology and philosophy,2 -biology and environment: proceedings of the royal irish academy,1 -biology and fertility of soils,2 -biology bulletin,1 -biology direct,1 -biology letters,2 -biology of reproduction,1 -biology of sport,1 -biology of the cell,1 -biomacromolecules,2 -biomarkers,1 -biomarkers in medicine,1 -biomass and bioenergy,2 -biomaterials,3 -biomechanics and modeling in mechanobiology,1 -biomedica,1 -biomedical and environmental sciences,1 -biomedical chromatography,1 -biomedical engineering,1 -biomedical engineering online,1 -biomedical materials,1 -bio-medical materials and engineering,1 -biomedical microdevices,1 -biomedical optics express,1 -biomedical sciences instrumentation,1 -biomedical signal processing and control,1 -biomedicine and pharmacotherapy,2 -biometals,1 -biometric technology today,0 -biometrical journal,1 -biometrics,2 -biometrika,3 -biomicrofluidics,1 -biomolecular nmr assignments,1 -biomolecules and therapeutics,1 -bioorganic and medicinal chemistry,1 -bioorganic and medicinal chemistry letters,1 -bioorganic chemistry,1 -bioorganicheskaya khimiya,0 -biopharm international,1 -biopharmaceutics and drug disposition,1 -biophysical chemistry,1 -biophysical journal,2 -biophysical reviews and letters,1 -biophysics,1 -biopolymers,1 -biopreservation and biobanking,1 -bioprocess and biosystems engineering,1 -bioremediation journal,1 -bioresource technology,2 -bioresources,1 -biorheology,1 -bioscene,1 -bioscience,2 -bioscience biotechnology and biochemistry,1 -bioscience journal,1 -bio-science law review,1 -bioscience reports,1 -biosecurity and bioterrorism: biodefense strategy practice and science,1 -biosensors and bioelectronics,3 -biostatistics,2 -biosystems,1 -biota neotropica,1 -biotechnic and histochemistry,1 -biotechniques,1 -biotechnologie agronomie societe et environnement,1 -biotechnology and biotechnological equipment,1 -biotechnology and genetic engineering reviews,1 -biotechnology advances,2 -biotechnology and applied biochemistry,1 -biotechnology and bioengineering,2 -biotechnology and bioprocess engineering,1 -biotechnology in animal husbandry,1 -biotechnology journal,1 -biotechnology law report,1 -biotechnology letters,1 -biotechnology progress,1 -biotherapy: an international journal on biological agents,1 -biotropica,1 -bipolar disorders,2 -bird behavior: an international and interdisciplinary multimedia journal,1 -bird conservation international,1 -bird study,1 -birth defects research part b: developmental and reproductive toxicology,1 -birth defects research part c: embryo today: reviews,1 -birth-issues in perinatal care,1 -bit numerical mathematics,2 -biuletyn polskiego towarzystwa jezykoznawczego,1 -bjog: an international journal of obstetrics and gynaecology,2 -bju international,2 -black music research journal,2 -black scholar,1 -blätter für deutsche und internationale politik,1 -blood,3 -blood cells molecules and diseases,1 -blood coagulation and fibrinolysis,1 -blood pressure,1 -blood pressure monitoring,1 -blood purification,1 -blood reviews,1 -blumea,1 -blyttia,1 -bmb reports,1 -bmc anesthesiology,1 -bmc biochemistry,1 -bmc bioinformatics,1 -bmc biology,2 -bmc biophysics,1 -bmc biotechnology,1 -bmc cancer,1 -bmc cardiovascular disorders,1 -bmc clinical pathology,1 -bmc dermatology,1 -bmc developmental biology,1 -"bmc ear, nose and throat disorders",1 -bmc ecology,1 -bmc emergency medicine,1 -bmc endocrine disorders,1 -bmc gastroenterology,1 -bmc genetics,1 -bmc genomics,1 -bmc geriatrics,2 -bmc health services research,2 -bmc immunology,1 -bmc infectious diseases,1 -bmc international health and human rights,1 -bmc medical education,1 -bmc medical ethics,1 -bmc medical genetics,1 -bmc medical genomics,1 -bmc medical imaging,1 -bmc medical informatics and decision making,1 -bmc medical physics,1 -bmc medical research methodology,1 -bmc medicine,2 -bmc microbiology,1 -bmc molecular biology,1 -bmc musculoskeletal disorders,1 -bmc nephrology,1 -bmc neurology,1 -bmc neuroscience,1 -bmc nursing,2 -bmc ophthalmology,1 -bmc oral health,1 -bmc palliative care,1 -bmc pediatrics,1 -bmc physiology,1 -bmc plant biology,1 -bmc pregnancy and childbirth,1 -bmc psychiatry,2 -bmc public health,1 -bmc pulmonary medicine,1 -bmc structural biology,1 -bmc surgery,1 -bmc systems biology,1 -bmc urology,1 -bmc veterinary research,1 -bmc womens health,1 -bmj,2 -bochumer philosophisches jahrbuch für antike und mittelalter,1 -bochumer studien zur philosophie,1 -bodenkultur,1 -body and society,3 -body image,2 -bogens verden: tidskrift for litteratur og kultur,1 -bohemia: zeitschrift für geschichte und kunst der böhmischen länder,1 -landbohistorisk tidskrift,1 -boletim de ciencias geodesicas,1 -boletim de estudos clássicos,1 -boletim do centro de pesquisa de processamento de alimentos,1 -boletim do instituto de pesca,1 -boletin de la asociacion de geografos espanoles,1 -boletin de la real academia de la historia,1 -boletin de la real academia espanola,1 -boletin de la sociedad botanica de mexico,1 -boletin de la sociedad espanola de ceramica y vidrio,1 -boletin de linguistica,1 -boletín del museo chileno de arte precolombino,1 -bolgarskaja rusistika,1 -bolletino dellunione matematica italiana: articoli di ricerca matematica,1 -bollettino darte,1 -bollettino dei classici,1 -bollettino del centro camuno di studi preistorici,1 -bollettino della badia greca di grottaferrata,1 -bollettino della societa geologica italiana,1 -bollettino della societa paleontologica italiana,1 -bollettino di archeologia,1 -bollettino di geofisica teorica ed applicata,1 -bollettino di storia delle scienze matematiche,1 -bollettino di studi latini,1 -bone,2 -bone marrow transplantation,1 -bonner jahrbücher,1 -bonner zoologische monographien,1 -book collector,0 -book history,2 -bookbird: a journal of international childrens literature,1 -borderlands e-journal: new spaces in the humanities,1 -boreal environment research,1 -boreas,2 -boreas: uppsala studies in ancient mediterranean and near eastern civilizations,1 -bosque,1 -boston university law review,1 -alpine botany,1 -botanica marina,1 -botanical journal of the linnean society,1 -botanical review,1 -botanical studies,1 -"plant diversity and evolution: phylogeny, biogeography, structure and function",1 -botany-botanique,1 -bothalia,1 -boundary 2: an international journal of literature and culture,2 -boundary-layer meteorology,1 -brachytherapy,1 -brain,3 -brain and development,1 -brain and cognition,2 -brain and language,2 -brain behavior and evolution,1 -brain behavior and immunity,1 -brain imaging and behavior,1 -brain impairment,1 -brain injury,1 -brain pathology,2 -brain research,1 -brain research bulletin,1 -brain stimulation,3 -brain structure and function,1 -brain topography,1 -brain tumor pathology,1 -brazilian archives of biology and technology,1 -brazilian dental journal,1 -brazilian journal of biology,1 -brazilian journal of chemical engineering,1 -brazilian journal of microbiology,1 -brazilian journal of physics,1 -brazilian journal of poultry science,1 -breast,1 -breast cancer,1 -breast cancer research,2 -breast cancer research and treatment,1 -breast care,1 -breast journal,1 -breastfeeding medicine,1 -brecht yearbook,1 -breeding science,1 -brief treatment and crisis intervention,1 -briefings in bioinformatics,2 -briefings in entrepreneurial finance,1 -briefings in functional genomics,1 -bristol and avon archaeology,1 -britannia: a journal of romano-british and kindred studies,1 -british accounting review,2 -british actuarial journal,1 -british and american studies,1 -british archaeological reports: british series,1 -british archaeological reports: international series,1 -british dental journal,1 -british educational research journal,3 -british food journal,1 -british journal for the history of philosophy,3 -british journal for the history of science,3 -british journal for the philosophy of science,3 -british journal of aesthetics,3 -british journal of anaesthesia,3 -british journal of biomedical science,1 -british journal of canadian studies,1 -british journal of cancer,2 -british journal of cardiology,1 -british journal of clinical pharmacology,2 -british journal of clinical psychology,1 -british journal of criminology,3 -british journal of dermatology,3 -"british journal of dermatology, supplement",1 -international journal of developmental disabilities,1 -british journal of developmental psychology,1 -british journal of educational psychology,2 -british journal of educational studies,2 -british journal of educational technology,2 -british journal of general practice,2 -british journal of guidance and counselling,1 -british journal of haematology,2 -british journal of health care management,1 -british journal of health psychology,1 -british journal of hospital medicine,1 -british journal of industrial relations,2 -british journal of learning disabilities,1 -british journal of management,3 -british journal of mathematical and statistical psychology,1 -psychology and psychotherapy,1 -british journal of middle eastern studies,2 -british journal of music education,2 -british journal of music therapy,1 -british journal of neurosurgery,1 -british journal of nutrition,2 -british journal of occupational therapy,1 -british journal of ophthalmology,3 -british journal of oral and maxillofacial surgery,1 -british journal of pharmacology,3 -british journal of political science,3 -british journal of politics and international relations,1 -british journal of psychiatry,3 -british journal of psychology,1 -british journal of radiology,1 -british journal of religious education,2 -british journal of social psychology,3 -british journal of social work,3 -british journal of sociology,3 -british journal of sociology of education,3 -british journal of special education,1 -british journal of sports medicine,3 -british journal of surgery,3 -british journalism review,1 -british medical bulletin,1 -british politics,1 -british poultry science,1 -british tax review,1 -british year book of international law,1 -brittonia,1 -brno studies in english,1 -bronte studies,1 -brookings papers on economic activity,1 -brookings trade forum,1 -brookings-wharton papers on financial services,1 -bryn mawr classical review,1 -bryologist,1 -buddhist-christian studies,1 -budkavlen,1 -buffalo bulletin,1 -buffalo law review,1 -building and environment,2 -building research and information,2 -building services engineering research and technology,1 -buildings and landscapes: journal of the vernacular architecture forum,1 -built environment,1 -bulgarian chemical communications,0 -bulgarian historical review,1 -bulgarian journal of agricultural science,1 -bulgarska etnologiia,0 -bulgarski ezik,1 -bulletin darcheologie marocaine,1 -bulletin de correspondance hellenique,2 -revue de droit comparé du travail et de la sécurité sociale,1 -bulletin de l academie nationale de medecine,1 -bulletin de l academie veterinaire de france,1 -bulletin de lecole francaise dextreme-orient,1 -bulletin de l'institut d'egypte,1 -bulletin de la socie?te? darche?ologie copte,1 -bulletin de la société dégyptologie de genève,1 -bulletin de la societe de linguistique de paris,2 -bulletin de la societe des sciences et des lettres de lodz,1 -bulletin de la societe francaise degyptologie,1 -bulletin de la societe geologique de france,1 -bulletin de la societe historique et archeologique du perigord,1 -bulletin de la societe internationale des etudes yourcenariennes,1 -bulletin de la societe mathematique de france,1 -bulletin de la societe prehistorique francaise,1 -bulletin de la societe toulousaine detudes classiques,1 -bulletin de la societe zoologique de france,1 -bulletin de linstitut francais darcheologie orientale du caire,1 -bulletin de linstitut francais detudes andines,1 -bulletin de litterature ecclesiastique,1 -bulletin de philosophie medievale,1 -bulletin des sciences mathematiques,1 -bulletin du cancer,1 -bulletin for international taxation,1 -bulletin hispanique,2 -bulletin mathematique de la societe des sciences mathematiques de roumanie,1 -bulletin monumental,1 -bulletin of canadian petroleum geology,1 -bulletin of earthquake engineering,1 -bulletin of economic research,1 -bulletin of electrochemistry,1 -bulletin of engineering geology and the environment,1 -bulletin of entomological research,1 -bulletin of environmental contamination and toxicology,1 -bulletin of experimental biology and medicine,1 -bulletin of geosciences,1 -bulletin of hispanic studies,3 -bulletin of indonesian economic studies,1 -bulletin of insectology,1 -bulletin of latin american research,1 -bulletin of marine science,1 -bulletin of materials science,1 -bulletin of mathematical biology,2 -bulletin of medieval canon law: new series,1 -"bulletin of science, technology and society",1 -bulletin of spanish studies,1 -bulletin of symbolic logic,3 -bulletin of the american mathematical society,2 -bulletin of the american meteorological society,2 -bulletin of the american museum of natural history,2 -bulletin of the american schools of oriental research,1 -bulletin of the american society of papyrologists,1 -bulletin of the ancient orient museum,1 -bulletin of the atomic scientists,1 -bulletin of the australian mathematical society,1 -bulletin of the belgian mathematical society-simon stevin,1 -bulletin of the brazilian mathematical society,1 -bulletin of the british society for the history of mathematics,1 -bulletin of the center for children`s books,1 -bulletin of the chemical society of ethiopia,0 -bulletin of the chemical society of japan,0 -bulletin of the comediantes,1 -bulletin of the computational statistics of japan,1 -bulletin of the council for research in music education,2 -bulletin of the egyptian museum,1 -bulletin of the european association of fish pathologists,1 -bulletin of the geological society of finland,1 -bulletin of the geological survey of canada,1 -bulletin of the history of medicine,2 -bulletin of the institute of classical studies,1 -bulletin of the institute of history and philology academia sinica,0 -bulletin of the iranian mathematical society,1 -bulletin of the john rylands university library of manchester,1 -bulletin of the korean chemical society,0 -bulletin of the korean mathematical society,1 -bulletin of the lebedev physics institute,1 -bulletin of the london mathematical society,2 -bulletin of the malaysian mathematical sciences society,1 -bulletin of the museum of far eastern antiquities,1 -bulletin of the peabody museum of natural history,1 -bulletin of the polish academy of sciences: mathematics,1 -bulletin of the school of oriental and african studies : university of london,1 -bulletin of the scientific instrument society,1 -bulletin of the section of logic,1 -bulletin of the seismological society of america,1 -bulletin of the torrey botanical club,1 -bulletin of the veterinary institute in pulawy,1 -bulletin of the world health organization,3 -bulletin of volcanology,1 -bulletin suisse de linguistique appliquee,1 -bulletins et memoires de la societe danthropologie de paris,0 -bullettino della commissione archeologica comunale di roma,1 -bunseki kagaku,0 -bunyan studies,1 -burlington magazine,3 -burns,1 -business and information systems engineering,2 -business and society,3 -business and economic history,1 -business and politics,1 -business and society review,1 -business communication quarterly,1 -business ethics quarterly,2 -business history,2 -business history review,3 -business horizons,1 -business law review,1 -business lawyer,1 -business process management journal,1 -business strategy and the environment,2 -business strategy review,1 -bwk,1 -byron journal,1 -byzantiaka,1 -byzantine and modern greek studies,2 -byzantinische forschungen,1 -byzantinische zeitschrift,2 -byzantinoslavica,1 -byzantion: revue internationale des etudes byzantines,3 -c theory,1 -ca: a cancer journal for clinicians,2 -"cab reviews: perspectives in agriculture, veterinary science, nutrition and natural resources",1 -digital tv europe,1 -cadernos de literatura brasileira,1 -cadernos de saude publica,1 -cadernos de traducao,1 -caesaraugusta,1 -caesarodunum,1 -cahiers du centre detudes chypriotes,1 -"cahiers alsaciens darcheologie, dart et dhistoire",1 -cahiers archaeologiques,1 -cahiers detudes hispaniques medievales,1 -cahiers détudes lévinassiennes,1 -cahiers dextreme-asie,1 -cahiers dhistoire et de philosophie des sciences,1 -cahiers de biologie marine,1 -cahiers de civilisation medievale,1 -cahiers de droit europeen,2 -cahiers de geographie de quebec,1 -cahiers de lassociation internationale des etudes francaises,1 -cahiers de lexicologie,1 -cahiers de linguistique asie orientale,2 -cahiers de linguistique francaise,1 -cahiers de linguistique theorique et appliquee,1 -cahiers de linstitut du moyen-âge grec et latin,1 -cahiers de nutrition et de dietetique,1 -cahiers de praxematique,1 -cahiers de topologie et geometrie differentielle categoriques,1 -cahiers des ameriques latines,1 -cahiers des etudes anciennes,1 -cahiers des religions africaines,1 -cahiers detudes africaines,1 -cahiers du centre gustave glotz: revue dhistoire ancienne,1 -cahiers du cinema,1 -cahiers du genre,1 -cahiers du monde russe,2 -cahiers élisabéthains: a biannual journal of english renaissance studies,1 -cahiers ferdinand de saussure,1 -cahiers internationaux de symbolisme,1 -cahiers jean giraudoux,1 -cahiers naturalistes,1 -cahiers victoriens et edouardiens,1 -cahiers voltaire,1 -calcified tissue international,1 -calcolo,1 -calculus of variations and partial differential equations,2 -calcutta statistical association bulletin,1 -caldasia,1 -calidoscopio,1 -california agriculture,1 -california cooperative oceanic fisheries investigations reports,1 -california fish and game,1 -california law review,2 -california management review,2 -california western international law journal,1 -call center magazine,0 -callaloo,1 -calphad: computer coupling of phase diagrams and thermochemistry,1 -calvin theological journal,1 -cambrian medieval celtic studies,1 -cambridge archaeological journal,3 -cambridge classical journal,2 -cambridge journal of economics,1 -cambridge journal of education,1 -"cambridge journal of regions, economy and society",2 -cambridge opera journal,3 -cambridge quarterly,2 -cambridge quarterly of healthcare ethics,1 -cambridge review of international affairs,1 -cambridge studies in advanced mathematics,1 -cambridge studies in linguistics,1 -camera obscura,2 -accounting perspectives,1 -canadian aeronautics and space journal,1 -canadian-american slavic studies,1 -canadian applied mathematics quarterly,1 -canadian association of radiologists journal-journal de l association canadienne des radiologistes,1 -canadian bulletin of medical history,1 -canadian business law journal,1 -canadian entomologist,1 -canadian family physician,1 -canadian field-naturalist,1 -canadian foreign policy,1 -canadian geographer-geographe canadien,1 -canadian geotechnical journal,1 -canadian historical review,1 -canadian journal of administrative sciences-revue canadienne des sciences de l administration,1 -canadian journal of african studies,1 -canadian journal of agricultural economics-revue canadienne d agroeconomie,1 -canadian journal of anesthesia,1 -canadian journal of animal science,1 -canadian journal of archaeology,1 -canadian journal of behavioural science-revue canadienne des sciences du comportement,1 -canadian journal of cardiology,1 -canadian journal of chemical engineering,1 -canadian journal of chemistry,0 -canadian journal of civil engineering,1 -canadian journal of communication,1 -canadian journal of community mental health,1 -canadian journal of counselling,1 -canadian journal of criminology and criminal justice,1 -canadian journal of development studies-revue canadienne d etudes du developpement,1 -canadian journal of diabetes,1 -canadian journal of dietetic practice and research,1 -canadian journal of earth sciences,1 -canadian journal of economics-revue canadienne d economique,1 -canadian journal of education,1 -canadian journal of educational administration and policy,1 -canadian journal of emergency medicine,1 -canadian journal of experimental psychology-revue canadienne de psychologie experimentale,1 -canadian journal of family law,1 -canadian journal of fisheries and aquatic sciences,2 -canadian journal of forest research-revue canadienne de recherche forestiere,2 -canadian journal of gastroenterology,1 -canadian journal of higher education,1 -canadian journal of history-annales canadiennes dhistoire,1 -canadian journal of human sexuality,1 -canadian journal of infectious diseases and medical microbiology,1 -canadian journal of information and library science-revue canadienne des sciences de l information et de bibliotheconomie,1 -canadian journal of law and jurisprudence: an international journal of legal thought,1 -canadian journal of law and society-revue canadienne de droit et societe,1 -canadian journal of linguistics-revue canadienne de linguistique,1 -canadian journal of mathematics-journal canadien de mathematiques,1 -canadian journal of microbiology,1 -canadian journal of music therapy,1 -canadian journal of native studies,1 -canadian journal of neurological sciences,1 -canadian journal of nursing research,1 -canadian journal of occupational therapy,1 -canadian journal of ophthalmology-journal canadien d ophtalmologie,1 -canadian journal of philosophy,2 -"canadian journal of philosophy, supplementary volume",1 -canadian journal of physics,1 -canadian journal of physiology and pharmacology,1 -canadian journal of plant science,1 -canadian journal of plastic surgery,1 -canadian journal of political science-revue canadienne de science politique,1 -canadian journal of psychiatry-revue canadienne de psychiatrie,1 -canadian journal of psychoanalysis,1 -canadian journal of public health-revue canadienne de sante publique,1 -canadian journal of remote sensing,1 -canadian journal of rural medicine-journal canadien de la medecine rurale,1 -canadian journal of school psychology,1 -"canadian journal of science, mathematics and technology education",1 -canadian journal of sociology-cahiers canadiens de sociologie,1 -canadian journal of soil science,1 -canadian journal of statistics-revue canadienne de statistique,1 -canadian journal of surgery,1 -canadian journal of veterinary research-revue canadienne de recherche veterinaire,1 -canadian journal of women and the law-revue femmes et droit,1 -canadian journal of zoology-revue canadienne de zoologie,1 -canadian journal on aging,1 -canadian literature,2 -canadian mathematical bulletin-bulletin canadien de mathematiques,1 -canadian medical association journal,1 -canadian metallurgical quarterly,1 -canadian mineralogist,1 -canadian mining journal,1 -canadian modern language review-revue canadienne des langues vivantes,1 -canadian online journal of queer studies in education,1 -canadian poetry,1 -canadian psychology-psychologie canadienne,1 -canadian public administration-administration publique du canada,1 -canadian public policy,1 -canadian respiratory journal,1 -canadian review of american studies,1 -canadian review of comparative literature,1 -canadian review of sociology-revue canadienne de sociologie,1 -canadian slavonic papers: an interdisciplinary journal devoted to central and eastern europe,2 -canadian tax journal,1 -canadian theatre review,2 -canadian water resources journal,1 -canadian veterinary journal-revue veterinaire canadienne,1 -canadian woman studies,1 -canadian yearbook of international law,1 -cancer,2 -cancer and metastasis reviews,1 -cancer biology and therapy,1 -cancer biomarkers,1 -cancer biotherapy and radiopharmaceuticals,1 -cancer causes and control,1 -cancer cell,3 -cancer cell international,1 -cancer chemotherapy and pharmacology,1 -cancer control,1 -cancer cytopathology,1 -cancer epidemiology,1 -cancer epidemiology biomarkers and prevention,2 -cancer gene therapy,1 -cancer genomics and proteomics,1 -cancer imaging,1 -cancer immunology immunotherapy,1 -cancer investigation,1 -cancer journal,1 -cancer letters,1 -cancer nursing,2 -cancer prevention research,1 -cancer radiotherapie,1 -cancer research,3 -cancer science,1 -cancer surveys,1 -cancer treatment reviews,1 -candollea,1 -capitalism and society,1 -"capitalism, nature, socialism",2 -capra: cave archaeology and palaeontology research archive,1 -caravelle: cahiers du monde hispanique et luso: bresilien,1 -carbohydrate polymers,2 -carbohydrate research,1 -carbon,2 -carbon: science and technology,0 -carbon and climate law review,1 -carbonates and evaporites,1 -carcinogenesis,1 -cardiology,1 -cardiology clinics,1 -cardiology in review,1 -cardiology in the young,1 -cardiovascular and hematological agents in medicinal chemistry,1 -cardiovascular and hematological disorders - drug targets,1 -cardiovascular and interventional radiology,1 -cardiovascular diabetology,1 -cardiovascular drugs and therapy,1 -cardiovascular pathology,1 -cardiovascular research,2 -cardiovascular therapeutics,1 -cardiovascular therapy and prevention,1 -cardiovascular toxicology,1 -cardiovascular ultrasound,1 -cardozo law review,1 -career development and transition for exceptional individuals,1 -career development international,1 -career development quarterly,2 -caribbean journal of science,1 -caries research,2 -caring for the ages,1 -carl nielsen studies,1 -carnets de geologie,1 -carnets du cediscor,1 -carpathian journal of earth and environmental sciences,1 -carrefours de leducation,1 -cartographic journal,1 -cartographic perspectives,1 -cartographica,1 -cartography and geographic information science,2 -caryologia,1 -casopis pro moderni filologii,1 -cassiodorus: rivista di studi sulla tarda antichita,1 -catalan journal of linguistics,1 -catalan review,1 -cataloging and classification quarterly,1 -catalysis letters,1 -catalysis reviews: science and engineering,2 -catalysis surveys from asia,0 -catalysis today,1 -catena,1 -cathedra: quarterly for the history of eretz-israel,1 -catheterization and cardiovascular interventions,1 -catholic biblical quarterly,2 -catholic historical review,2 -catholica: vierteljahresschrift für ökumenische theologie,1 -cato journal,1 -cattle practice,1 -cauce: revista de filologia y su didactica,1 -cauda pavonis: studies in hermeticism,1 -cave and karst science,1 -cbe: life sciences education,1 -ccamlr science,1 -"jeunesse: young people, texts, cultures",1 -cea critic,1 -cedla latin america studies,1 -celestial mechanics and dynamical astronomy,1 -cell,3 -cell and tissue banking,1 -cell and tissue research,1 -cell biochemistry and biophysics,1 -cell biochemistry and function,1 -cell biology and toxicology,1 -cell biology international,1 -cell calcium,1 -cell communication and adhesion,1 -cell communication and signaling,1 -cell cycle,1 -cell death and disease,1 -cell death and differentiation,2 -cell host and microbe,3 -cell metabolism,3 -cell proliferation,1 -cell research,2 -cell stem cell,3 -cell stress and chaperones,1 -cell structure and function,1 -cell transplantation,1 -cells tissues organs,1 -cellular and molecular biology letters,1 -cellular and molecular immunology,1 -cellular and molecular bioengineering,1 -cellular and molecular biology,0 -cellular and molecular life sciences,2 -cellular and molecular neurobiology,1 -cellular immunology,1 -cellular microbiology,1 -cellular physiology and biochemistry,1 -cellular polymers,1 -cellular reprogramming,1 -cellular signalling,1 -cellulose,2 -cellulose chemistry and technology,1 -celtica: journal of the school of celtic studies,1 -cement and concrete composites,3 -cement and concrete research,3 -cement wapno beton,1 -centaurus,1 -central asian survey,1 -central asiatic journal,1 -central europe,2 -central european history,3 -central european journal of communication,1 -central european journal of operations research,1 -central european journal of public health,1 -central european neurosurgery,1 -central european political studies review,1 -central nervous system agents in medicinal chemistry,1 -centro journal,1 -centropa: a journal of central european architecture and related arts,1 -cepal review,1 -cephalalgia,2 -ceramic engineering and science proceedings,1 -ceramic transactions,1 -ceramics international,1 -ceramics: art and perception,1 -ceramics-silikaty,1 -ceramics technical,1 -cereal chemistry,1 -cereal foods world,1 -cereal research communications,1 -cerebellum,1 -cerebral cortex,3 -cerebrovascular diseases,1 -cern reports,1 -cerne,1 -cervantes,1 -cesifo economic studies,1 -ceska a slovenska neurologie a neurochirurgie,1 -ceska literatura,2 -cesky casopis historicky: the czech historical review,1 -cesky lid: ethnologicky casopis,1 -ceu medievalia,1 -ceur workshop proceedings,1 -cfi: ceramic forum international,1 -chalcogenide letters,1 -les cahiers de champs visuels,1 -chance,1 -change: the magazine of higher learning,1 -changing english,1 -channels,1 -chaos,1 -chaos solitons and fractals,1 -chasqui: revista de literatura latinoamericana,1 -chateau-gaillard,1 -chaucer review,2 -cheiron: materiali e strumenti di aggiornamento storiografico,1 -chelonian conservation and biology,1 -chem-bio informatics journal,1 -chembiochem,1 -chemcatchem,1 -chemical and engineering news,1 -chemical and pharmaceutical bulletin,1 -chemical and biochemical engineering quarterly,1 -chemical and petroleum engineering,1 -chemical and process engineering-inzynieria chemiczna i procesowa,1 -chemical biology and drug design,1 -chemical communications,2 -chemical educator,1 -chemical engineering,1 -chemical engineering and technology,1 -chemical engineering and processing,1 -chemical engineering communications,1 -chemical engineering journal,3 -chemical engineering progress,1 -chemical engineering research and design,1 -chemical engineering science,3 -chemical geology,2 -chemical immunology,1 -chemical industry and chemical engineering quarterly,1 -chemical journal of chinese universities: chinese,0 -chemical papers,1 -chemical physics,1 -chemical physics letters,1 -chemical processing,1 -chemical record,1 -chemical research in chinese universities,0 -chemical research in toxicology,2 -chemical reviews,3 -chemical science,3 -chemical senses,1 -chemical society reviews,3 -chemical vapor deposition,1 -chemical week,1 -chemicke listy,0 -chemico-biological interactions,1 -chemie der erde-geochemistry,1 -chemie in unserer zeit,0 -chemie ingenieur technik,1 -chemija,0 -chemistry and biodiversity,1 -chemistry and industry,1 -chemistry and ecology,1 -chemistry and physics of carbon,1 -chemistry and physics of lipids,1 -chemistry and technology of fuels and oils,1 -chemistry central journal,1 -chemistry education research and practice,1 -chemistry letters,1 -chemistry of heterocyclic compounds,1 -chemistry of materials,3 -chemistry of natural compounds,1 -chemistry world,0 -chemistry: a european journal,2 -chemistry: an asian journal,1 -chemmedchem,1 -chemoecology,1 -chemometrics and intelligent laboratory systems,1 -chemosensory perception,1 -chemosphere,1 -chemotherapy,1 -chemphyschem,1 -chemsuschem,2 -chemical innovation,1 -chest,2 -chicago journal of theoretical computer science,1 -chicago review,1 -chigiana: rassegna annuale di studi musicologici,1 -child and family behavior therapy,1 -child and family social work,2 -child abuse and neglect,1 -child abuse review,1 -child and adolescent mental health,1 -child and adolescent psychiatric clinics of north america,1 -child and adolescent social work journal,1 -child and family law quarterly,2 -child and youth care forum,1 -child care health and development,1 -child care in practice,1 -child development,3 -child development perspectives,1 -child indicators research,1 -child language teaching and therapy,1 -child maltreatment,1 -child neuropsychology,1 -child psychiatry and human development,1 -child welfare,1 -childhood,3 -children and society,1 -children and youth services review,1 -children in war: the international journal of evacuee and war child studies,1 -children’s literature association quarterly,1 -childrens geographies: advancing interdisciplinary understanding of younger peoples lives,1 -childrens health care,1 -childrens literature in education,2 -"citizenship, social and economics education",1 -childs nervous system,1 -chilean journal of agricultural research,1 -chime,1 -chimia,1 -chimica oggi-chemistry today,0 -china and world economy,1 -china agricultural economic review,1 -china economic review,1 -china journal,3 -china ocean engineering,1 -china petroleum processing and petrochemical technology,1 -china quarterly,2 -china review international: a journal of reviews of scholarly literature in chinese studies,1 -china review: an interdisciplinary journal on greater china,1 -china studies,2 -chinese annals of mathematics series b,1 -chinese chemical letters,0 -chinese education and society,1 -chinese geographical science,1 -chinese journal of aeronautics,1 -chinese journal of analytical chemistry,0 -chinese journal of catalysis,1 -chinese journal of chemical engineering,1 -chinese journal of chemical physics,1 -diqiu huaxue,1 -chinese journal of geophysics: chinese edition,1 -chinese journal of inorganic chemistry,0 -chinese journal of international law,1 -chinese journal of mechanical engineering,1 -chinese journal of oceanology and limnology,1 -chinese journal of organic chemistry,0 -chinese journal of pathophysiology,1 -chinese journal of physics,1 -acta polymerica sinica,0 -chinese journal of structural chemistry,0 -chinese law and government,1 -chinese librarianship,1 -chinese management studies,1 -chinese medical journal,1 -chinese medical sciences journal,1 -chinese optics letters,1 -chinese physics c,1 -chinese physics letters,1 -chinese science and technology translators journal,1 -chinese sociological review,1 -chinese studies in history,1 -chirality,1 -chiron,1 -chirurg,1 -chirurgia,1 -chirurgie de la main,1 -viszeralmedizin,1 -christian bioethics,1 -chromatographia,1 -chromosoma,1 -chromosome research,1 -chronic illness,1 -chronicle of higher education,1 -chronique degypte,1 -chroniques italiennes,1 -chronobiology international,1 -chungara: revista de antropologia chilena,1 -church archaeology,1 -church history,2 -church history and religious culture,1 -ciberletras,1 -ciceroniana,1 -publication cie,1 -ciencia e saude coletiva,1 -ciencia e agrotecnologia,1 -ciencia e investigacion agraria,1 -ciencia e tecnica vitivinicola,1 -ciencia e tecnologia de alimentos,1 -ciencia florestal,1 -ciencias marinas,1 -cim journal,1 -cin: computers informatics nursing,2 -cinemas: revue detudes cinematographiques,1 -cinta de moebio,1 -circuit world,1 -circuits systems and signal processing,1 -circulation,3 -circulation journal,1 -circulation research,3 -circulation: arrhythmia and electrophysiology,1 -circulation: cardiovascular genetics,1 -circulation: cardiovascular imaging,2 -circulation: cardiovascular interventions,2 -circulation: cardiovascular quality and outcomes,1 -circulation: heart failure,2 -circulo de linguistica aplicada a la comunicacion,1 -cirp annals: manufacturing technology,1 -cirugia espanola,1 -cirugia y cirujanos,1 -citeaux: commentarii cistercienses,1 -cithara : essays in the judeo-christian tradition,1 -cities,2 -citizenship studies,2 -citizenship teaching and learning,1 -city,1 -city and community,1 -city and society,2 -civil engineering,1 -civil engineering and environmental systems,1 -civil justice quarterly,1 -civil szemle,1 -civil war history,1 -civil wars,1 -civitas: revista espanola de derecho europeo,1 -cla journal: college language association,1 -cladistics,2 -classica,1 -classica et mediaevalia: revue danoise de philologie et d histoire,2 -classical and quantum gravity,1 -classical antiquity,3 -classical bulletin,1 -classical journal,2 -classical philology,3 -classical quarterly,3 -classical review,2 -classical world,1 -quaderni di classiconorroena,1 -classics ireland,1 -classroom discourse,2 -clavis commentariorum antiquitatis et medii aevi,1 -clay minerals,1 -clay science,1 -clays and clay minerals,1 -clcweb: comparative literature and culture,1 -clean technologies and environmental policy,1 -"clean : soil, air, water",1 -cleft palate-craniofacial journal,1 -cleveland clinic journal of medicine,1 -climacteric,1 -climate dynamics,2 -climate law,1 -climate of the past,2 -climate policy,2 -climate research,1 -climatic change,2 -clinica chimica acta,1 -la clinica terapeutica,1 -clinical and developmental immunology,1 -clinical and experimental metastasis,1 -clinical and translational oncology,1 -clinical anatomy,1 -clinical and applied immunology reviews,1 -clinical and applied thrombosis-hemostasis,1 -clinical and experimental allergy,2 -clinical and experimental allergy reviews,1 -clinical and experimental dermatology,1 -clinical and experimental hypertension,1 -clinical and experimental immunology,1 -clinical and experimental medicine,1 -clinical and experimental nephrology,1 -clinical and experimental obstetrics and gynecology,1 -clinical and experimental ophthalmology,1 -clinical and experimental optometry,1 -clinical and experimental otorhinolaryngology,1 -clinical and experimental pharmacology and physiology,1 -clinical and experimental rheumatology,1 -clinical and investigative medicine,1 -clinical and vaccine immunology,1 -clinical autonomic research,1 -clinical biochemistry,1 -clinical biomechanics,1 -clinical breast cancer,1 -clinical cancer research,3 -clinical cardiology,1 -clinical case studies,1 -clinical chemistry,3 -clinical chemistry and laboratory medicine,1 -clinical child and family psychology review,2 -clinical child psychology and psychiatry,1 -clinical chiropractic,1 -clinical colorectal cancer,1 -clinical drug investigation,1 -clinical dysmorphology,1 -clinical eeg and neuroscience,1 -clinical endocrinology,1 -clinical epidemiology,3 -clinical gastroenterology and hepatology,2 -clinical genetics,1 -clinical genitourinary cancer,1 -clinical gerontologist,1 -clinical hemorheology and microcirculation,1 -clinical imaging,1 -clinical immunology,1 -clinical implant dentistry and related research,1 -clinical infectious diseases,3 -clinical journal of oncology nursing,1 -clinical journal of pain,1 -clinical journal of sport medicine,1 -clinical journal of the american society of nephrology,2 -clinical kinesiology,1 -clinical law review: a journal of lawyering and legal education,1 -clinical leadership and management review,1 -clinical linguistics and phonetics,3 -clinical lipidology,1 -clinical lung cancer,1 -clinical lymphoma myeloma and leukemia,1 -clinical medicine,1 -clinical microbiology and infection,2 -clinical microbiology reviews,3 -clinical nephrology,1 -clinical neurology and neurosurgery,1 -clinical neuropathology,1 -clinical neuropharmacology,1 -clinical neurophysiology,3 -clinical neuropsychiatry,1 -clinical neuropsychologist,1 -clinical neuroradiology,1 -clinical neuroscience research,1 -clinical nuclear medicine,1 -clinical nurse specialist,1 -clinical nursing research,1 -clinical nutrition,3 -clinical obstetrics and gynecology,1 -clinical oncology,1 -clinical oral implants research,3 -clinical oral investigations,2 -clinical orthopaedics and related research,2 -clinical otolaryngology,1 -clinical pediatric endocrinology,1 -clinical pediatrics,1 -clinical pharmacokinetics,2 -clinical pharmacology and therapeutics,3 -clinical physiology and functional imaging,1 -clinical practice and epidemiology in mental health,0 -clinical psychologist,1 -clinical psychology and psychotherapy,1 -clinical psychology review,3 -clinical psychology: science and practice,2 -clinical pulmonary medicine,1 -clinical radiology,1 -clinical rehabilitation,2 -clinical research and regulatory affairs,1 -clinical research in cardiology,1 -clinical respiratory journal,1 -clinical reviews in allergy and immunology,1 -clinical rheumatology,1 -clinical science,1 -clinical social work journal,1 -clinical therapeutics,1 -clinical theriogenology,1 -clinical toxicology,1 -clinical transplantation,1 -clinical trials,1 -clinics,1 -clinics in chest medicine,1 -clinics in colon and rectal surgery,1 -clinics in dermatology,1 -clinics in geriatric medicine,1 -clinics in laboratory medicine,1 -clinics in liver disease,1 -clinics in perinatology,2 -clinics in plastic surgery,1 -clinics in sports medicine,1 -clio medica,1 -"clio: a journal of literature, history, and the philosophy of history",2 -cliometrica,2 -clothing and textiles research journal,1 -clues: a journal of detection,1 -cluster computing: the journal of networks software tools and applications,1 -"computers, materials & continua",1 -cmes: computer modeling in engineering and sciences,1 -cns and neurological disorders-drug targets,1 -cns drugs,1 -cns neuroscience and therapeutics,1 -cns spectrums,1 -coaching psychologist,1 -coastal engineering,3 -coastal engineering journal,1 -coastal management,1 -cochrane database of systematic reviews,2 -codesign: international journal of cocreation in design and the arts,3 -codices manuscripti: zeitschrift für handschriftenkunde,1 -cogito,1 -cognitextes,1 -cognitio: revista de filosofia,1 -cognition,3 -cognition and emotion,2 -cognition and instruction,2 -"cognition, technology and work",1 -cognitive affective and behavioral neuroscience,1 -cognitive and behavioral neurology,1 -cognitive and behavioral practice,1 -cognitive development,1 -cognitive linguistics,3 -cognitive neurodynamics,1 -cognitive neuropsychiatry,1 -cognitive neuropsychology,1 -cognitive neuroscience,1 -cognitive processing,1 -cognitive psychology,3 -cognitive science,2 -cognitive semiotics,2 -cognitive systems research,1 -cognitive therapy and research,1 -co-herencia,1 -cold regions science and technology,2 -cold spring harbor perspectives in biology,1 -cold spring harbor protocols,1 -cold spring harbor symposia on quantitative biology,1 -cold war history,3 -coleopterists bulletin,1 -collectanea hibernica,1 -collectanea mathematica,1 -collection septieme art: 7e art,1 -chempluschem,1 -collections cerlico,1 -collections: a journal for museum and archives professionals,1 -college and research libraries,2 -college and research libraries news,1 -college composition and communication,1 -college english,1 -college literature,1 -college mathematics journal,1 -college music symposium,1 -collegian,1 -collegium antropologicum,1 -collegium medievale,1 -colloid and polymer science,1 -colloid journal,1 -colloids and surfaces a: physicochemical and engineering aspects,1 -colloids and surfaces b: biointerfaces,2 -colloquia germanica,1 -colloquia pontica,1 -colloquium helveticum: cahiers suisses de litterature generale et comparee,1 -colloquium mathematicum,1 -colombia medica,1 -colonial latin american historical review,1 -colonial latin american review,1 -coloproctology,1 -coloquio: letras,1 -color research and application,1 -coloration technology,1 -colorectal disease,1 -columbia journal of law and social problems,1 -columbia journal of transnational law,1 -columbia journalism review,0 -columbia law review,3 -columbia studies in the classical tradition,1 -combinatorial chemistry,1 -combinatorial chemistry and high throughput screening,1 -combinatorica,2 -"combinatorics, probability and computing",2 -combustion and flame,3 -combustion explosion and shock waves,1 -combustion science and technology,1 -combustion theory and modelling,1 -comitatus: a journal of medieval and renaissance studies,0 -commentarii mathematici helvetici,2 -commentary,1 -commentationes humanarum litterarum,0 -commentationes mathematicae universitatis carolinae,1 -commentationes scientiarum socialium,0 -comments on inorganic chemistry,1 -common knowledge,1 -common law world review,1 -common market law review,3 -communication and cognition,1 -communication and critical/cultural studies,1 -communication and medicine,1 -communication disorders quarterly,1 -communication education,2 -"communication et langages: presse, television, radio, publicite, edition, graphisme, formation, sociologie",1 -communication law and policy,1 -communication monographs,3 -communication quarterly,1 -communication reports,1 -communication research,3 -communication studies,1 -communication teacher,1 -communication theory,3 -"communication, culture and critique",1 -communicationes archeologicae hungariae,1 -communications,1 -communications in algebra,1 -communications in analysis and geometry,2 -communications in applied analysis,0 -communications in applied and industrial mathematics,1 -communications in applied mathematics and computational science,1 -communications in asteroseismology,1 -communications in computational physics,1 -communications in computer and information science,1 -communications in contemporary mathematics,1 -communications in information and systems,1 -communications in mathematical analysis,1 -communications in mathematical physics,3 -communications in mathematical sciences,1 -communications in nonlinear science and numerical simulation,1 -communications in number theory and physics,1 -communications in partial differential equations,3 -communications in soil science and plant analysis,1 -communications in statistics: simulation and computation,1 -communications in statistics: theory and methods,1 -communications in theoretical physics,1 -communications law,1 -communications of the acm,3 -communications of the association for information systems,2 -communications of the iima,1 -communications on applied nonlinear analysis,1 -communications on pure and applied analysis,1 -communications on pure and applied mathematics,3 -communio: international catholic review,1 -communio viatorum,1 -communist and post-communist studies,1 -community dental health,1 -community dentistry and oral epidemiology,2 -community development,1 -community development journal,1 -community ecology,1 -community mental health journal,1 -"community, work and family",1 -compar-a-ison: an international journal of comparative literature,1 -comparative american studies,1 -comparative and international law journal of southern africa,1 -comparative biochemistry and physiology a: molecular and integrative physiology,1 -comparative biochemistry and physiology b: biochemistry and molecular biology,1 -comparative biochemistry and physiology c: toxicology and pharmacology,1 -comparative biochemistry and physiology d: genomics and proteomics,1 -comparative civilizations review,1 -comparative clinical pathology,1 -comparative critical studies,1 -comparative drama,1 -comparative economic studies,1 -comparative education,3 -comparative education review,3 -comparative european politics,1 -comparative history of literatures in european languages,2 -comparative immunology microbiology and infectious diseases,1 -comparative labor law and policy journal,1 -comparative literature,3 -comparative literature studies,3 -comparative medicine,1 -comparative parasitology,1 -comparative political studies,3 -comparative politics,2 -comparative social research,1 -comparative sociology,1 -comparative strategy: an international journal,1 -comparative studies in society and history,3 -compel: the international journal for computation and mathematics in electrical and electronic engineering,1 -compendium: continuing education for veterinarians,1 -compensation and benefits review,1 -competition and change: the journal of global business and political economy,1 -competition and regulation in network industries,1 -competition policy international,1 -complementary therapies in clinical practice,1 -complementary therapies in medicine,1 -complex analysis and operator theory,1 -complex variables and elliptic equations,1 -complexity,1 -composite interfaces,1 -composite structures,2 -composites part a: applied science and manufacturing,2 -composites part b: engineering,3 -composites science and technology,2 -compositio mathematica,2 -compost science and utilization,1 -comprehensive psychiatry,2 -comprehensive reviews in food science and food safety,2 -comprehensive therapy,1 -compstat,1 -comptes rendus biologies,1 -comptes rendus chimie,0 -comptes rendus des seances de lacademie des inscriptions et belles-lettres,1 -comptes rendus geoscience,1 -comptes rendus mathematique,1 -comptes rendus mecanique,1 -comptes rendus palevol,1 -comptes rendus physique,1 -computational and applied mathematics,1 -computational and mathematical methods in medicine,0 -computational and mathematical organization theory,1 -computational biology and chemistry,1 -computational complexity,2 -computational economics,1 -computational geometry: theory and applications,1 -computational geosciences,1 -computational intelligence,1 -computational linguistics,3 -computational management science,1 -computational materials science,2 -computational mathematics and mathematical physics,1 -computational mathematics and modeling,1 -computational mechanics,1 -computational methods in applied mathematics,1 -computational methods and function theory,1 -computational optimization and applications,1 -computational statistics,1 -computational statistics and data analysis,1 -computer,2 -computer aided geometric design,1 -computer aided surgery,1 -computer aided verification,2 -computer animation and virtual worlds,1 -computer applications in engineering education,1 -computer assisted language learning,2 -computer communication review,1 -computer communications,1 -proceedings : international conference on computer communications and networks,1 -computer fraud and security,1 -computer graphics forum,1 -proceedings : computer graphics international,1 -computer graphics world,1 -computer journal,1 -computer languages systems and structures,1 -computer law & security review,1 -computer methods and programs in biomedicine,1 -computer methods in applied mechanics and engineering,3 -computer methods in biomechanics and biomedical engineering,1 -computer music journal,3 -computer networks,2 -computer physics communications,1 -computer science and information systems,1 -computer science and telecommunications,1 -computer science education,2 -computer science review,1 -computer speech and language,2 -computer standards and interfaces,1 -computer-supported collaborative learning,1 -computer supported cooperative work: the journal of collaborative computing,3 -computer systems science and engineering,1 -computer vision and image understanding,2 -computer-aided civil and infrastructure engineering,3 -computer-aided design,2 -computerized medical imaging and graphics,2 -computers and chemical engineering,2 -computers and education,3 -computers and electrical engineering,1 -computers and fluids,1 -computers and geosciences,1 -computers & graphics,1 -computers and industrial engineering,1 -computers and mathematics with applications,1 -computers and operations research,1 -computers and security,2 -computers and society,1 -computers and structures,3 -computers and composition,1 -computers and concrete,1 -computers and electronics in agriculture,2 -computers and geotechnics,2 -computers environment and urban systems,2 -computers in biology and medicine,2 -computers in education journal,1 -computers in entertainment,1 -computers in human behavior,3 -computers in industry,2 -computing : archives for scientific computing,1 -computing,0 -computing and informatics,1 -computing and visualization in science,1 -computing in science and engineering,1 -computing reviews,1 -comunicar,1 -concepts and transformation,1 -concepts in magnetic resonance part a,1 -concepts in magnetic resonance part b: magnetic resonance engineering,1 -concilium medii aevi,1 -concilium: international journal of theology,1 -concordia theological quarterly,1 -concrete international,1 -concurrency and computation: practice and experience,1 -concurrent engineering: research and applications,1 -condensed matter physics,1 -conference on uncertainty in artificial intelligence,2 -theoretical aspects of rationality and knowledge,1 -conference proceedings : international conference on indium phosphide and related materials,1 -"ieee international conference on systems, man, and cybernetics",1 -conference record of the industry applications society annual meeting,1 -conference record of the ieee photovoltaic specialists conference,1 -configurations,1 -conflict and communication,1 -conflict management and peace science,2 -conflict resolution quarterly,1 -"conflict, security and development",1 -confluencia: revista hispanica de cultura y literatura,1 -conformal geometry and dynamics,1 -confrontation,1 -congenital anomalies,1 -congenital heart disease,1 -congressus internationalis fenno-ugristarum,1 -connaissance des arts,1 -connect: the world of critical care nursing,1 -connection science,1 -connective tissue research,1 -connotations: a journal for critical debate,1 -conradian,1 -conradiana,1 -consciousness and emotion,1 -consciousness and cognition,2 -"consciousness, literature and the arts",1 -conservation and management of archaeological sites,2 -conservation and society,2 -conservation biology,3 -conservation genetics,1 -conservation letters,3 -constellations: an international journal of critical and democratic theory,1 -constitutional commentary,1 -constitutional law library,1 -constitutional political economy,1 -constraints,1 -construction and building materials,1 -construction history,1 -construction management and economics,1 -constructions,1 -constructions and frames,2 -constructive approximation,2 -constructivist foundations,1 -consulting psychology journal,1 -consumption markets and culture,1 -contact dermatitis,2 -contact lens and anterior eye,1 -contemporanea: rivista di storia dell800 e del 900,1 -contemporary accounting research,3 -contemporary aesthetics,2 -contemporary british history,2 -contemporary buddhism,2 -contemporary clinical trials,1 -contemporary drug problems,1 -contemporary economic policy,1 -contemporary educational psychology,3 -contemporary european history,3 -contemporary family therapy,1 -contemporary french and francophone studies,2 -contemporary french civilization,1 -contemporary hypnosis & integrative therapy,1 -contemporary issues in early childhood,2 -contemporary issues in technology and teacher education,1 -"contemporary justice review: issues in criminal, social and restorative justice",1 -contemporary law review,1 -contemporary literature,3 -contemporary mathematics,1 -contemporary music review,2 -contemporary nurse,1 -contemporary ob/gyn,1 -contemporary pacific,2 -contemporary physics,1 -contemporary political theory,2 -contemporary politics,1 -contemporary pragmatism,1 -contemporary problems of ecology,1 -contemporary psychoanalysis,1 -contemporary security policy,1 -contemporary sociology: a journal of reviews,1 -contemporary south asia,2 -contemporary theatre review,3 -contemporary womens writing,1 -contexts,1 -continental philosophy review,3 -continental shelf research,1 -continuity and change,2 -continuum mechanics and thermodynamics,1 -continuum: journal of media and cultural studies,1 -contraception,1 -contrast media and molecular imaging,0 -contrastes: revista interdisciplinar de filosofia,1 -contributions of the austrian ludwig wittgenstein society,1 -contributions to indian sociology,2 -contributions to mineralogy and petrology,2 -contributions to music education,1 -contributions to nephrology,1 -contributions to phenomenology,2 -contributions to plasma physics,1 -contributions to political economy,1 -contributions to zoology,1 -control and cybernetics,1 -control engineering and applied informatics,1 -control engineering practice,2 -control solutions international,1 -controversies,1 -convergence: the international journal of research into new media technologies,2 -convergencia: revista de ciencias sociales,1 -converging evidence in language and communication research,1 -conveyancer and property lawyer,1 -convivium: revista de filosofia,1 -international conference on the design of cooperative systems,1 -cooperation and conflict,2 -coordination chemistry reviews,1 -copd : journal of chronic obstructive pulmonary disease,1 -copenhagen journal of asian studies,1 -copenhagen studies in language,1 -coptica,1 -coral reefs,1 -core: conservation et restauration du patrimoine cultural,1 -cornea,1 -cornell hospitality quarterly,1 -cornell international law journal,1 -cornell journal of law and public policy,1 -cornell law review,2 -cornish archaeology,1 -coronary artery disease,1 -"la corónica: a journal of medieval hispanic languages, literatures, and cultures",1 -corpora,1 -"corporate board: role, duties and composition",1 -corporate communications,1 -corporate governance: the international journal of business in society,1 -corporate governance: an international review,2 -corporate reputation review,1 -corporate social responsibility and environmental management,1 -corpus linguistics and linguistic theory,3 -correspondances en mhnd,1 -corrosion,1 -corrosion engineering science and technology,1 -corrosion reviews,1 -corrosion science,3 -cortex,2 -cosmic research,1 -cosmos and history: the journal of natural and social philosophy,1 -cost effectiveness and resource allocation,1 -costume,1 -counseling and values,1 -counseling psychologist,1 -counselling and psychotherapy research,1 -counselling psychology quarterly,1 -counselor education and supervision,1 -craft research,2 -cranio,1 -crearta: the international journal of the education in the arts,1 -creativity and innovation management,1 -creativity research journal,1 -cretaceous research,1 -crime and delinquency,2 -crime and justice: a review of research,2 -crime law and social change,2 -crime media culture,1 -"crime, histoire et sociétés",1 -criminal behaviour and mental health,1 -criminal justice and behavior,2 -criminal justice ethics,1 -criminal justice history,1 -criminal justice policy review,1 -criminal justice studies,1 -criminal law and philosophy,1 -criminal law forum,1 -criminal law journal,1 -criminal law review,2 -criminology,3 -criminology and criminal justice,2 -c.r.i.n.: cahiers de recherche des instituts néerlandais de langue et de littérature française,1 -crisis: the journal of crisis intervention and suicide prevention,1 -"cristianesimo nella storia: ricerche storiche, esegetiche, teologiche",1 -critica darte,1 -critica del testo,1 -critica hispanica,1 -critica letteraria,1 -critical approaches to discourse analysis across disciplines,1 -critical arts : a south-north journal of cultural and media studies,1 -critical asian studies,1 -critical care,3 -critical care clinics,1 -critical care medicine,2 -critical care nursing quarterly,1 -critical criminology,2 -critical discourse studies,2 -critical horizons,1 -critical inquiry,3 -critical inquiry in language studies: an international journal,2 -critical pathways in cardiology,1 -critical perspectives,1 -critical perspectives on accounting,2 -critical perspectives on international business,1 -critical public health,1 -critical quarterly,3 -critical review,1 -critical review of international social and political philosophy,2 -critical reviews in analytical chemistry,1 -critical reviews in biochemistry and molecular biology,1 -critical reviews in biomedical engineering,1 -critical reviews in biotechnology,1 -critical reviews in clinical laboratory sciences,1 -critical reviews in environmental science and technology,2 -critical reviews in eukaryotic gene expression,1 -critical reviews in food science and nutrition,2 -critical reviews in immunology,1 -critical reviews in microbiology,1 -critical reviews in oncogenesis,1 -critical reviews in oncology hematology,1 -critical reviews in physical and rehabilitation medicine,1 -critical reviews in plant sciences,1 -critical reviews in therapeutic drug carrier systems,1 -critical reviews in toxicology,1 -critical social policy,2 -critical sociology,1 -critical studies in improvisation - etudes critiques en improvisation,1 -critical studies in media communication,1 -critical studies in television,1 -critical studies on terrorism,1 -"critical studies: a journal of critical theory, literature and culture",1 -critical survey,1 -critica,1 -criticism: a quarterly for literature and the arts,3 -criticon,1 -critique,2 -critique of anthropology,2 -critique of political economy,1 -critique: studies in contemporary fiction,2 -crm proceedings and lecture notes,1 -croatian journal of forest engineering,1 -croatian journal of philosophy,1 -croatian medical journal,1 -croatian yearbook of european law and policy,1 -croatica chemica acta,0 -croatica et slavica jadertina,1 -cromohs,1 -cronache ercolanesi,1 -cronos,1 -crop and pasture science,1 -crop protection,1 -crop science,1 -el croquis: de arquitectura y de diseno,1 -cross cultural management: an international journal,1 -cross/cultures: readings in the post/colonial literatures in english,1 -cross-cultural research,2 -crossings,1 -crossroads,1 -"crossroads: an interdisciplinary journal for the study of history, philosophy, religion and classics",1 -cr: the new centennial review,1 -crusades,1 -crustaceana,1 -cryobiology,1 -cryogenics,1 -cryoletters,1 -cryosphere,3 -cryptogamie algologie,1 -cryptogamie bryologie,1 -cryptogamie mycologie,1 -cryptologia,1 -crystal growth and design,2 -crystal research and technology,1 -crystallography reports,0 -crystallography reviews,1 -crystengcomm,1 -csli studies in computational inguistics,1 -"ctandf: ciencia, tecnologia y futuro",1 -cts: clinical and translational science,2 -cuadernos americanos,1 -cuadernos de desarrollo rural,1 -cuadernos de filología clásica: estudios griegos e indoeuropeos,1 -cuadernos de historia contemporanea,1 -cuadernos de historia del derecho,1 -cuadernos de historia moderna,1 -cuadernos de investigacion filologica,1 -cuadernos hispanoamericanos,1 -cuadernos para investigación de la literatura hispanica,1 -cuaj: canadian urological association journal,1 -cuban journal of agricultural science,1 -cubo,1 -cultura neolatina: rivista di filologia romanza,1 -"cultura, lenguaje y representacion-culture, language and representation",1 -cultura: international journal of philosophy of culture and axiology,1 -cultural and social history,2 -cultural analysis: an interdisciplinary forum on folklore and popular culture,2 -cultural anthropology,3 -cultural critique,1 -cultural diversity and ethnic minority psychology,2 -cultural dynamics,1 -cultural geographies,2 -cultural logic: an electronic journal of marxist theory and practice,1 -cultural politics,1 -cultural sociology,1 -cultural studies,3 -cultural studies: critical methodologies,1 -cultural studies of science education,1 -cultural studies review,1 -cultural trends,2 -cultural-historical psychology,1 -culture and history,1 -culture and psychology,2 -"culture, agriculture, food and environment",1 -culture and history of the ancient near east,2 -culture and religion,1 -culture et musées,1 -culture health and sexuality,2 -culture machine,1 -culture medicine and psychiatry,1 -culture unbound: journal of current cultural research,1 -culture and organization,1 -cultures et conflits,1 -cultuur: tijdschrift voor etnologie,1 -cuneiform digital library journal,1 -cuneiform monographs,1 -curator: the museum journal,2 -current,1 -current allergy and asthma reports,1 -current alzheimer research,1 -trends in anaesthesia and critical care,1 -current analytical chemistry,1 -current anthropology,3 -current applied physics,1 -current atherosclerosis reports,1 -current bioactive compounds,1 -current bioinformatics,1 -current biology,3 -current cancer drug targets,1 -current cardiology reports,1 -current chemical biology,1 -current computer-aided drug design,1 -current diabetes reports,1 -current directions in psychological science,2 -current drug delivery,1 -current drug discovery technologies,1 -current drug metabolism,1 -current drug targets,1 -current drug therapy,1 -current enzyme inhibition,1 -current eye research,1 -current gene therapy,1 -current genetics,1 -current genomics,1 -current history,1 -current hiv research,1 -current hypertension reports,1 -current infectious disease reports,1 -current issues in comparative education,1 -current issues in education,1 -current issues in language planning,1 -current issues in molecular biology,1 -current issues in tourism,2 -current legal problems,2 -current medical imaging reviews,1 -current medical research and opinion,1 -current medicinal chemistry,1 -anti-infective agents,1 -current microbiology,1 -current molecular medicine,1 -current musicology,1 -current nanoscience,1 -current neurology and neuroscience reports,2 -current neuropharmacology,1 -current neurovascular research,1 -current oncology,1 -current opinion in allergy and clinical immunology,1 -current opinion in anesthesiology,1 -current opinion in biotechnology,1 -current opinion in cardiology,1 -current opinion in cell biology,1 -current opinion in chemical biology,1 -current opinion in clinical nutrition and metabolic care,1 -current opinion in colloid and interface science,1 -current opinion in critical care,1 -current opinion in environmental sustainability,2 -current opinion in gastroenterology,1 -current opinion in genetics and development,1 -current opinion in hematology,1 -current opinion in immunology,1 -current opinion in infectious diseases,1 -current opinion in investigational drugs,1 -current opinion in lipidology,1 -current opinion in microbiology,1 -current opinion in molecular therapeutics,1 -current opinion in nephrology and hypertension,1 -current opinion in neurobiology,1 -current opinion in neurology,1 -current opinion in obstetrics and gynecology,1 -current opinion in oncology,1 -current opinion in ophthalmology,1 -current opinion in organ transplantation,1 -current opinion in otolaryngology and head and neck surgery,1 -current opinion in pediatrics,1 -current opinion in pharmacology,1 -current opinion in plant biology,1 -current opinion in psychiatry,1 -current opinion in pulmonary medicine,1 -current opinion in rheumatology,1 -current opinion in solid state and materials science,2 -current opinion in structural biology,1 -current opinion in urology,1 -current organic chemistry,1 -current organic synthesis,1 -current pain and headache reports,1 -current pharmaceutical analysis,1 -current pharmaceutical biotechnology,1 -current pharmaceutical design,1 -current politics and economics of europe,1 -current problems in cancer,1 -current problems in cardiology,1 -current problems in dermatology,1 -current problems in diagnostic radiology,1 -current problems in surgery,1 -current protein and peptide science,1 -current proteomics,1 -current psychiatry reports,1 -current psychology,1 -"current psychology letters: behaviour, brain and cognition",1 -current research in social psychology,1 -current rheumatology reviews,1 -current signal transduction therapy,1 -current sociology,2 -current sports medicine reports,1 -current stem cell research and therapy,1 -current swedish archaeology,1 -current therapeutic research: clinical and experimental,1 -current topics in developmental biology,1 -current topics in medicinal chemistry,1 -current topics in membranes,1 -current topics in microbiology and immunology,1 -current treatment options in neurology,1 -current treatment options in oncology,1 -current vascular pharmacology,1 -current womens health reviews,1 -current writing : text and reception in southern africa,1 -current zoology,1 -currents in biblical research,1 -curriculum and teaching,1 -curriculum inquiry,1 -curriculum journal,2 -curriculum matters,1 -custos e agronegócio,1 -cutaneous and ocular toxicology,1 -cutis,1 -cw3 journal: corvey women writers on the web,1 -cybergeo,1 -cybermetrics,1 -"cybernetics and human knowing: a journal of second order cybernetics, autopoiesis and cyber-semiotics",1 -cybernetics and information technologies,1 -cybernetics and systems,1 -cybernetics and systems analysis,1 -cyberpsychology behavior and social networking,1 -cybium,1 -cyprus review,1 -cyta: journal of food,1 -cytogenetic and genome research,1 -cytokine,1 -cytokine and growth factor reviews,1 -cytologia,1 -cytometry part a,1 -cytometry part b: clinical cytometry,1 -cytopathology,1 -cytoskeleton,1 -cytotechnology,1 -cytotherapy,1 -czech journal of animal science,1 -czech journal of food sciences,1 -czech journal of genetics and plant breeding,1 -czechoslovak mathematical journal,1 -dacia: revue darcheologie et dhistoire ancienne,1 -dacoromania,1 -dados: revista de ciencias sociais,1 -daedalus,2 -daimon: revista de filosofia,1 -dairy industries international,1 -dairy science and technology,1 -dalhousie french studies,1 -dalhousie law journal,1 -dalhousie review,1 -dalton transactions,1 -dance chronicle,2 -dance research,2 -dance research journal,3 -danish medical journal,1 -danish yearbook of philosophy,1 -danish yearbook of musicology,1 -dansk sociologi,1 -dansk teologisk tidsskrift,1 -danske studier,1 -danske talesprog,1 -dante studies,1 -dao: a journal of comparative philosophy,1 -daol: discourse analysis online,1 -daphnis: zeitschrift für mittlere deutsche literatur und kultur der frühen neuzeit,1 -das argument: zeitschrift für philosophie und sozialwissenschaften,1 -das zeichen: zeitschrift fur sprache und kultur gehörloser,1 -data and knowledge engineering,2 -data base for advances in information systems,1 -data compression conference,1 -data mining and knowledge discovery,3 -data science journal,1 -datutop,1 -dead sea discoveries,2 -deaf worlds: international journal of deaf studies,1 -deafness and education international,1 -death studies,1 -debat supplement,1 -decision analysis,1 -decision sciences,2 -decision support systems,3 -decisions in economics and finance,1 -deep-sea research part ii: topical studies in oceanography,1 -deep-sea research part i: oceanographic research papers,1 -defence and peace economics,1 -defence studies,1 -defense and security analysis,1 -defensor legis,1 -degres: revue de synthese a orientation semiologique,1 -dela : oddelek za geografijo filozofske fakultete v ljubljani,1 -deltion christianikīs archaiologikīs etaireias,1 -dementia,1 -dementia and geriatric cognitive disorders,1 -democratization,2 -demófilo : revista de cultura tradicional de andalucia,1 -demographic research,1 -demography,3 -demokratizatsiya: the journal of post-soviet democratization,2 -demonstratio mathematica,1 -dendrobiology,1 -dendrochronologia,1 -denkmalpflege,1 -dental materials,3 -dental materials journal,1 -dental traumatology,1 -dentomaxillofacial radiology,1 -denver university law review,1 -depression and anxiety,3 -der burger im staat,1 -der gynäkologe,1 -der mathematikunterricht,1 -"der moderne staat: zeitschrift für public policy, recht und management",1 -derbyshire archaeological journal,1 -dermatitis,1 -dermatologic clinics,1 -dermatologic surgery,1 -dermatologic therapy,1 -dermatology,1 -dermatology online journal,1 -desalination,2 -desalination and water treatment,1 -descant,1 -design and culture,2 -design and technology education: an international journal,1 -design automation for embedded systems,2 -design issues,3 -design journal,3 -design methods,1 -design philosophy papers,1 -design principles and practices,1 -design research quarterly,1 -design studies,3 -designed monomers and polymers,1 -designs codes and cryptography,3 -designs for learning,1 -deutsch als fremdsprache,3 -deutsche bücher: forum für literatur,1 -deutsche entomologische zeitschrift,1 -deutsche lebensmittel-rundschau,1 -deutsche mathematiker vereinigung: jahresbericht,1 -deutsche medizinische wochenschrift,1 -deutsche orient-gesellschaft: mitteilungen,1 -deutsche sprache,2 -deutsche vierteljahrsschrift für literaturwissenschaft und geistesgeschichte,3 -deutsche zeitschrift für philosophie,1 -deutsche zeitschrift für sportmedizin,1 -deutsches archiv für erforschung des mittelalters,2 -deutsches ärzteblatt: ausgabe a: ärztliche mitteilungen,1 -deutsches arzteblatt international,1 -deutsches schiffartsarchiv,1 -developing economies,1 -developing world bioethics,1 -development,1 -development,2 -development and change,3 -development and psychopathology,2 -development genes and evolution,1 -development growth and differentiation,1 -development in practice,1 -development policy review,1 -development southern africa,1 -developmental and comparative immunology,1 -developmental biology,1 -developmental cell,3 -developmental disabilities research reviews,1 -developmental dynamics,1 -developmental medicine and child neurology,3 -developmental neurobiology,1 -developmental neuropsychology,1 -developmental neuroscience,1 -developmental psychobiology,1 -developmental psychology,3 -developmental review,3 -developmental science,3 -developments in biologicals,1 -developments in earth surface processes,1 -developments in international law,1 -developments in paleoenvironmental research,1 -developments in precambrian geology,1 -developments in water science,1 -deviance et societe,1 -deviant behavior,1 -dh lawrence review,1 -diabetes,3 -diabetes and metabolism,1 -diabetes and vascular disease research,1 -diabetes care,3 -diabetes educator,1 -diabetes obesity and metabolism,1 -diabetes research and clinical practice,1 -diabetes spectrum,1 -diabetes technology and therapeutics,1 -diabetes/metabolism research and reviews,1 -diabetic medicine,1 -diabetologia,3 -diachronica,3 -diaconia: journal for the study of christian social practice,1 -diacritics: a review of contemporary criticism,3 -diadora,1 -diagnostic and interventional radiology,1 -diagnostic and therapeutic endoscopy,1 -diagnostic cytopathology,1 -diagnostic microbiology and infectious disease,1 -diagnostic molecular pathology,1 -diagnostic pathology,1 -diagnostica,1 -diakonian tutkimus,1 -dialectica,2 -dialectical anthropology,2 -dialectologia et geolinguistica,1 -zeitschrift für kulturphilosophie,1 -dialog: a journal of theology,1 -dialogue: canadian philosophical review,1 -dialogues d'histoire ancienne,1 -dialogues in human geography,2 -dialysis and transplantation,1 -diamond and related materials,1 -diaspora: a journal of transnational studies,2 -"diasporas, histoire et sociétés",1 -diaspory: nezavisimyj nauchnyj zhurnal,1 -diatom research,1 -dichtung-digital,1 -dickens quarterly,1 -dickens studies annual,1 -dickensian,1 -dictionaries: journal of the dictionary society of north america,1 -dictionary of literary biography,1 -didaskalia: ancient theater today,1 -diderot studies,1 -die casting engineer,1 -die friedens-warte,1 -die laute: jahrbuch der deutschen lautengesellschaft,1 -die philosophin,1 -die verwaltung: zeitschrift für verwaltungsrecht und verwaltungswissenschaften,1 -diedut,1 -dielheimer blätter zum alten testament und seiner rezeption in der alten kirche,1 -diesel progress north american edition,1 -differences: a journal of feminist cultural studies,3 -differential and integral equations,1 -differential equations,1 -differential equations and applications,1 -differential equations and dynamical systems: an international journal for theory and applications,1 -differential geometry and its applications,1 -differential geometry: dynamical systems,1 -differentiation,1 -solid state phenomena,1 -defect and diffusion forum,1 -diffusion fundamentals,1 -digest journal of nanomaterials and biostructures,1 -ieee international solid-state circuits conference,2 -ieee radio frequency integrated circuits symposium digest of papers,1 -digestion,1 -digestive and liver disease,1 -digestive diseases,1 -digestive diseases and sciences,1 -digestive endoscopy,1 -digestive surgery,1 -digital creativity,2 -digital formations,1 -digital humanities quarterly,1 -nordic journal of digital literacy,1 -digital signal processing,1 -dike,1 -din : religionsvitenskapelig tidsskrift,1 -diogenes,1 -dionysius,1 -diplomacy and statecraft,1 -diplomatic history,2 -diplomatic studies,1 -diritto e giustizia,1 -diritto penale e processo,1 -diritto pubblico,1 -disability and society,2 -disability and health journal,1 -disability and rehabilitation,1 -disability and rehabilitation: assistive technology,1 -disability studies quarterly,1 -disaster advances,0 -disaster medicine and public health preparedness,1 -disaster prevention and management,1 -disasters,2 -discours social: analyse du discours et sociocritique des textes,1 -discourse: studies in the cultural politics of education,2 -discourse and communication,2 -discourse and society,2 -discourse: journal for theoretical studies in media and culture,1 -"discourse approaches to politics, society and culture",1 -discourse processes,2 -discourse studies,3 -discourses in dance,1 -discrete and computational geometry,2 -discrete and continuous dynamical systems: series a,1 -discrete and continuous dynamical systems: series b,1 -discrete applied mathematics,2 -discrete dynamics in nature and society,1 -discrete event dynamic systems: theory and applications,1 -discrete mathematics,1 -discrete mathematics and theoretical computer science,1 -discrete optimization,1 -discussiones mathematicae: probability and statistics,1 -disease markers,0 -disease models and mechanisms,2 -diseases of aquatic organisms,1 -diseases of the colon and rectum,1 -diseases of the esophagus,1 -diskus: the on-disk journal of international religious studies,1 -diskussion musikpaedagogik,1 -dislocations in solids,1 -disp,1 -displays,1 -disputatio,1 -dissent,1 -dissertationes mathematicae,1 -dissolution technologies,1 -distance education,1 -distinktion,1 -distributed and parallel databases,1 -distributed computing,2 -diversity and distributions,2 -diving and hyperbaric medicine,1 -dix-huitieme siecle,1 -xviie siecle,1 -d-lib magazine,1 -dm disease-a-month,1 -dna and cell biology,1 -dna repair,1 -dna research,1 -document design companion series,1 -document numerique,1 -documenta archaeobiologiae,1 -documenta mathematica,2 -documenta ophthalmologica,1 -documenta praehistorica,1 -documenta: tijdschrift voor theater,1 -documenti e studi sulla tradizione filosofica medievale,1 -documents d analisi geografica,1 -documents d archeologie meridionale,1 -dohnanyi evkönyv,1 -doklady biochemistry and biophysics,0 -doklady chemistry,0 -doklady earth sciences,1 -doklady mathematics,1 -doklady physical chemistry,0 -doklady physics,1 -domestic animal endocrinology,1 -dose-response,1 -dostoevsky studies,1 -douleur et analgesie,1 -doxa: cuadernos de filosofia y derecho,1 -dqr studies in literature,1 -drama: nordisk dramapedagogisk tidsskrift,1 -dreaming,1 -drug and alcohol dependence,2 -drug and alcohol review,1 -drug and chemical toxicology,1 -drug and therapeutics bulletin,1 -drug delivery,1 -drug development and industrial pharmacy,1 -drug development research,1 -drug discovery today,2 -drug discovery today: disease mechanisms,1 -drug discovery today: disease models,1 -drug discovery today: technologies,1 -drug discovery today: therapeutic strategies,1 -therapeutic innovation & regulatory science,1 -drug metabolism and disposition,2 -drug metabolism and pharmacokinetics,1 -drug metabolism letters,1 -drug metabolism reviews,1 -drug news and perspectives,1 -drug resistance updates,2 -drug safety,1 -drug testing and analysis,1 -drugs,2 -drugs and aging,1 -drugs and therapy perspectives,1 -drugs of the future,1 -drugs of today,1 -drugs-education prevention and policy,1 -drustvena istrazivanja,1 -drvna industrija,1 -drying technology,1 -du,1 -du bois review,1 -duke environmental law and policy forum,1 -duke journal of comparative and international law,1 -duke journal of gender law and policy,1 -duke law journal,2 -duke mathematical journal,3 -dumbarton oaks papers,2 -duodecim,1 -durability and damage tolerance of composite materials and structures,1 -dutch crossing: a journal of low countries studies,1 -dutch journal for music theory,1 -dve domovini-two homelands,1 -dvt: dejiny ved a techniky,1 -dyes and pigments,1 -dynamic systems and applications,0 -dynamical systems: an international journal,1 -dynamics of atmospheres and oceans,1 -"dynamics of continuous, discrete and impulsive systems series a: mathematical analysis",1 -dynamics of partial differential equations,1 -dynamis,1 -dyslexia,2 -dysphagia,2 -dzieje najnowsze,1 -eandmj: engineering and mining journal,1 -ear and hearing,3 -early american literature,2 -early american studies: an interdisciplinary journal,1 -early child development and care,1 -early childhood education journal,1 -early childhood research and practice,1 -early childhood research quarterly,2 -early china,1 -early christianity,2 -early education and development,1 -early human development,1 -early intervention in psychiatry,1 -early keyboard journal,1 -early medieval europe,3 -early modern and modern studies,1 -early modern literary studies,1 -early modern women: an interdisciplinary journal,1 -early music,2 -early music history,3 -early popular visual culture,1 -early science and medicine,1 -early theatre,1 -early years: an international research journal,1 -earth and environmental science transactions of the royal society of edinburgh,1 -earth and planetary science letters,3 -earth interactions,1 -earth moon and planets,1 -earth planets and space,1 -earth sciences history,1 -earth sciences research journal,1 -earth surface processes and landforms,2 -earth system dynamics,1 -earthquake engineering and structural dynamics,2 -earthquake engineering and engineering vibration,1 -earthquake science,1 -earthquake spectra,1 -earth-science reviews,3 -east and west,1 -east asia,1 -east asian history,1 -"east asian science, technology, and medicine",1 -east european jewish affairs,1 -east european politics and societies,2 -eastern africa social science research review,1 -eastern anthropologist,0 -eastern buddhist,1 -eastern european countryside,1 -eastern european economics,1 -eating and weight disorders: studies on anorexia bulimia and obesity,1 -eating behaviors,1 -eating disorders,1 -e-beratungsjournal,1 -ebib: elektroniczny biuletyn informacyjny bibliotekarzy,1 -ebsco bulletin of serials changes,1 -ec tax review,2 -ecclesia orans: periodica de scientiis liturgicis,1 -ecclesiastical law journal,1 -echo,1 -echocardiography: a journal of cardiovascular ultrasound and allied techniques,1 -ecletica quimica,0 -ecloga,1 -eclr: european competition law review,2 -ecography,3 -ecohydrology,1 -ecological and environmental anthropology,1 -ecological applications,2 -ecological chemistry and engineering s-chemia i inzynieria ekologiczna s,1 -ecological complexity,1 -ecological economics,2 -ecological engineering,1 -ecological entomology,2 -ecological indicators,1 -ecological management and restoration,1 -ecological modelling,1 -ecological monographs,3 -ecological psychology,1 -ecological research,1 -ecology,3 -ecology and society,1 -ecology law quarterly,1 -ecology letters,3 -ecology of food and nutrition,1 -ecology of freshwater fish,1 -econ journal watch,1 -econometric reviews,2 -econometric theory,2 -econometrica,3 -econometrics journal,2 -economic affairs,1 -economic and industrial democracy,1 -economic and political weekly,1 -economic and social review,1 -economic botany,1 -economic computation and economic cybernetics studies and research,1 -economic development and cultural change,2 -economic development quarterly,1 -economic geography,3 -economic geology,2 -economic history review,3 -economic inquiry,2 -economic journal,3 -economic modelling,1 -economic notes,1 -economic policy,2 -economic record,1 -economic sociology: the european electronic newsletter,1 -economic systems,1 -economic systems research,1 -economic theory,2 -economica,2 -economics and human biology,1 -economics and philosophy,2 -economics and politics,1 -economics bulletin,1 -economics letters,1 -economics of education review,2 -economics of governance,1 -economics of innovation and new technology,1 -economic change and restructuring,1 -economist-netherlands,1 -economy and society,1 -econtent,1 -ecoscience,1 -ecosystems,2 -ecotoxicology,1 -ecotoxicology and environmental safety,2 -ecotropica,1 -ecs transactions,1 -european conference on computer-supported cooperative work,1 -ecti transactions,1 -ecumenical review,1 -edda,3 -edilex,1 -edinburgh journal of botany,1 -editio: internationales jahrbuch fur editionswissenschaft,1 -educacion xx1,1 -education 3-13,1 -education and culture,1 -education and information technologies,1 -education and society,1 -education and society in the middle ages and renaissance,1 -education and the law,1 -education and training,1 -education and training in autism and developmental disabilities,1 -education and treatment of children,1 -education and urban society,1 -education as change,1 -education economics,1 -education et societes,1 -education finance and policy,2 -education for health,1 -education for information,1 -education in chemistry,1 -education next,1 -education policy analysis archives,1 -education research and perspectives,1 -"education, citizenship and social justice",1 -educational action research,1 -educational administration quarterly,3 -educational and child psychology,1 -educational and psychological measurement,2 -educational assessment,1 -educational evaluation and policy analysis,3 -educational gerontology,1 -educational leadership,1 -educational management administration and leadership,2 -educational philosophy and theory,1 -educational policy,2 -educational practice and theory,1 -educational psychologist,3 -educational psychology,2 -educational psychology in practice,1 -educational psychology review,2 -educational research,2 -educational research and evaluation,1 -educational research for policy and practice,1 -educational research quarterly,1 -educational research review,3 -educational researcher,3 -educational review,2 -educational studies,1 -educational studies in mathematics,3 -educational technology and society,2 -educational theory,2 -ee : evaluation engineering,1 -eesti ja soome-ugri keeleteaduse ajakiri,1 -eesti rakenduslingvistika uhingu aastaraamat,1 -ägypten und levante: internationale zeitschrift für ägyptische archäologie,1 -egyptological memoirs,1 -ehealth international: the journal of applied health technology,1 -eighteenth century : theory and interpretation,1 -eighteenth-century fiction,2 -eighteenth-century ireland,1 -eighteenth-century life,1 -eighteenth-century music,2 -eighteenth-century studies,2 -eigse: a journal of irish studies,1 -eikasmos-quaderni bolognesi di filologia classica,1 -eikon,1 -eire-ireland,0 -eirene,1 -ejc supplements,1 -european journal of hospital pharmacy: science and practice,1 -e-journal of applied psychology,1 -e-journal of portuguese history,1 -e-journal of surface science and nanotechnology,1 -ejournalist,1 -ejso,1 -ekklisiastikos pharos,1 -eklem hastaliklari ve cerrahisi,1 -ekologia,1 -ekonomiska samfundets tidskrift,1 -experimental oncology,1 -e-l@tina,1 -elcvia electronic letters on computer vision and image analysis,1 -e-learning and digital media,1 -e-learning and education,1 -electoral studies,2 -electric power components and systems,1 -electric power systems research,2 -electrical engineering,1 -electroanalysis,1 -electroanalytical chemistry,1 -electrochemical and solid state letters,1 -electrochemistry,0 -electrochemistry communications,1 -electrochimica acta,2 -electromagnetic biology and medicine,1 -electromagnetics,1 -electronic antiquity,1 -electronic book review,1 -electronic commerce research,1 -electronic commerce research and applications,1 -electronic communications in probability,1 -electronic communications of the easst,1 -electronic design,1 -electronic government,1 -electronic green journal,1 -electronic journal of biotechnology,1 -electronic journal of business ethics and organization studies,1 -electronic journal of business research methods,1 -electronic journal of combinatorics,2 -electronic journal of communication,1 -electronic journal of comparative law,1 -electronic journal of differential equations,1 -electronic journal of e-government,1 -electronic journal of e-learning,0 -electronic journal of evolutionary modeling and economic dynamics,1 -electronic journal of geotechnical engineering,0 -electronic journal of human sexuality,1 -electronic journal of information systems evaluation,1 -journal of information technology in construction,1 -electronic journal of knowledge management,0 -electronic journal of linear algebra,1 -electronic journal of mathematics and technology,1 -electronic journal of organizational virtualness,0 -electronic journal of probability,2 -electronic journal of qualitative theory of differential equations,1 -electronic journal of research in educational psychology,1 -electronic journal of sociology,1 -electronic journal of statistics,2 -electronic journal of vedic studies,1 -electronic library,1 -electronic markets,1 -electronic materials letters,1 -electronic musicological review,1 -electronic notes in discrete mathematics,1 -electronic notes in theoretical computer science,1 -electronic research announcements in mathematical sciences,1 -electronic transactions on numerical analysis,2 -electronics information and planning,1 -electronics letters,1 -electrophoresis,1 -elelmiszervizsgalati kozlemenyek,1 -elemente der mathematik,1 -elements,2 -elenchos,1 -elh,3 -"ellinika: philological, historical and folkloric review",1 -e-logos: electronic journal for philosophy,1 -elore,2 -elt journal,1 -em: air and waste management associations magazine for environmental managers,1 -emakeele seltsi aastaraamat,1 -embo journal,3 -embo molecular medicine,3 -embo reports,3 -emergence: complexity and organization,1 -emergency medicine,1 -emergency medicine clinics of north america,1 -emergency medicine journal,1 -emergency radiology,1 -emerging infections,1 -emerging infectious diseases,2 -emerging markets finance and trade,1 -emerging markets review,1 -emerging themes in epidemiology,1 -emerita,1 -emily dickinson journal,1 -engineering management journal,1 -emotion,2 -"emotion, space and society",1 -emotional and behavioural difficulties,1 -empedocles: european journal for the philosophy of communication,1 -empirica,1 -empirical economics,1 -empirical musicology review,1 -empirical software engineering,3 -empirical studies in theology,2 -empirical studies of the arts,2 -employee relations,1 -empuries,1 -emu,1 -encephale: revue de psychiatrie clinique biologique et therapeutique,1 -enchoria,1 -enculturation,1 -endeavour,1 -endocrine,1 -endocrine journal,1 -endocrine pathology,1 -endocrine practice,1 -endocrine research,1 -endocrine reviews,2 -endocrine-related cancer,2 -endocrinologia y nutricion,1 -endocrinology,2 -endocrinology and metabolism clinics of north america,1 -endocytobiosis and cell research,1 -endoscopy,2 -endotrends,1 -energies,1 -energy,3 -energy and environmental science,3 -energy and fuels,1 -energy and buildings,3 -energy and environment,1 -energy conversion and management,2 -energy economics,1 -energy education science and technology part a: energy science and research,0 -energy education science and technology part b: social and educational studies,1 -energy exploration and exploitation,1 -energy journal,1 -energy materials: materials science and engineering for energy systems,1 -energy policy,1 -energy sources part a: recovery utilization and environmental effects,1 -energy sources part b: economics planning and policy,1 -energy studies review,1 -enfance,1 -enfermeria intensiva,1 -engenharia sanitaria e ambiental,1 -engineering,0 -engineering analysis with boundary elements,1 -engineering applications of artificial intelligence,2 -engineering computations,1 -engineering economist,1 -engineering failure analysis,1 -engineering fracture mechanics,2 -engineering geology,2 -engineering geology special publications,1 -engineering in life sciences,1 -engineering intelligent systems for electrical engineering and communications,1 -engineering journal: american institute of steel construction inc,1 -engineering optimization,1 -engineering structures,3 -engineering studies,1 -engineering with computers,1 -"engineering, construction and architectural management",1 -english,1 -english academy review,1 -english education,1 -english for specific purposes,2 -english historical review,3 -english in education,1 -english journal,1 -english language and linguistics,3 -english language teaching,0 -english linguistics,1 -english literary renaissance,2 -english literature in transition 1880-1920,2 -english manuscript studies: 1100-1700,1 -english studies,2 -english studies in africa,1 -english studies in canada,1 -english teaching forum,1 -english teaching: practice and critique,1 -english text construction,1 -english today: the international review of the english language,1 -english world-wide,2 -enlightenment and dissent,1 -ennen ja nyt,1 -ent: ear nose and throat journal,1 -enterprise and society,2 -enterprise information systems,2 -entertainment computing,1 -entomologia experimentalis et applicata,1 -entomologia generalis,1 -entomologica americana,1 -entomological news,1 -entomological science,1 -entomotropica,1 -entrepreneurship and regional development,2 -entrepreneurship theory and practice,3 -entreprises et histoire,1 -entropy,0 -environment,1 -environment and behavior,2 -environment and development economics,1 -environment and history,2 -environment and planning a,3 -environment and planning b: planning and design,2 -environment and planning d: society and space,3 -environment and urbanization,1 -environment international,3 -"environment, development and sustainability",1 -environmental and engineering geoscience,1 -environmental and resource economics,2 -environmental and ecological statistics,1 -environmental and experimental botany,1 -environmental and molecular mutagenesis,1 -environmental archaeology,2 -environmental biology of fishes,1 -environmental chemistry,1 -environmental chemistry letters,1 -environmental communication: a journal of nature and culture,1 -environmental conservation,1 -environmental earth sciences,1 -environmental economics and policy studies,1 -environmental education research,3 -environmental engineering and management journal,1 -environmental engineering science,1 -environmental entomology,1 -environmental ethics,2 -environmental fluid mechanics,1 -environmental forensics,1 -environmental geochemistry and health,1 -environmental geosciences,1 -environmental hazards,1 -environmental health,1 -environmental health and preventive medicine,1 -environmental health perspectives,3 -environmental history,3 -environmental impact assessment review,2 -environmental law and management,1 -environmental law reporter,1 -environmental liability,1 -environmental management,1 -environmental microbiology,2 -environmental microbiology reports,1 -environmental modeling and assessment,1 -environmental modelling and software,2 -environmental monitoring and assessment,1 -environmental packaging,1 -environmental policy and governance,2 -environmental policy and law,1 -environmental politics,2 -environmental pollution,2 -environmental progress and sustainable energy,1 -environmental research,2 -environmental research forum,1 -environmental research letters,3 -environmental reviews,1 -environmental science and policy,2 -environmental science and technology,2 -environmental science and pollution research,1 -environmental technology,1 -environmental toxicology,1 -environmental toxicology and chemistry,3 -environmental toxicology and pharmacology,1 -environmental values,3 -environmetrics,1 -environnement risques and sante,1 -enzyme and microbial technology,1 -eos,0 -eos: commentarii societatis philologiae polonorum,1 -european conference on power electronics and applications,1 -epe journal,1 -epeteris etairias byzantinon spoudon,1 -ephemera: theory and politics in organization,1 -ephemerides liturgicae,1 -ephemerides theologicae lovanienses,1 -epidemiologia and prevenzione,1 -epidemiology and psychiatric sciences,2 -epidemiologic perspectives and innovations,1 -epidemiologic reviews,2 -epidemiologie mikrobiologie imunologie,1 -epidemiology,3 -epidemiology and infection,1 -epigenetics,1 -epigenomics,1 -epigraphica: rivista internazionale di epigrafia,1 -epigraphica anatolica,1 -epilepsia,2 -les cahiers d`épilepsie,1 -epilepsy and behavior,1 -epilepsy research,1 -epileptic disorders,1 -episodes,1 -episteme,1 -episteme-sarja,1 -epistemologia,1 -epl,1 -epoche: a journal for the history of philosophy,1 -e-polymers,1 -eppo bulletin,1 -e-preservation science,1 -"equality, diversity and inclusion",1 -equine veterinary education,1 -equine veterinary journal,2 -equity and excellence in education,1 -equivalences,1 -eranos: acta philologica suecana,1 -eras,1 -erasmus law and economics review,1 -erde,1 -erdkunde,1 -"eretz-israel: archaeological, historical and geographical studies",1 -erfurt electronic studies in english,1 -ergodic theory and dynamical systems,2 -ergonomics,1 -ergonomics in design,1 -ergonomics open journal,0 -erhvervshistorisk årbog,1 -eriu,1 -erkenntnis,3 -ernahrungs umschau,1 -erziehung und unterricht,1 -esa bulletin: european space agency,1 -esaim : probability and statistics,1 -esaim : control optimisation and calculus of variations,1 -e-service journal,1 -esophagus,1 -esoterica,1 -espace geographique,1 -esperienze letterarie: rivista trimestrale di critica e di cultura,1 -esprit createur,2 -esq: a journal of the american renaissance,2 -essays and studies,1 -essays in biochemistry,1 -essays in criticism,3 -essays in economic and business history,1 -essays in education,1 -essays in medieval studies,1 -essays in philosophy,1 -essays in poetics,1 -essays in theatre-etudes theatrales,1 -essex archaeology and history,1 -estadística,1 -estetika: the european journal of aesthetics,2 -estonian journal of archaeology,1 -estonian journal of earth sciences,1 -estonian journal of ecology,1 -estreno: cuadernos del teatro espanol contemporaneo,1 -estuaries and coasts,1 -estuarine coastal and shelf science,1 -estudios atacamenos,1 -estudios biblicos,1 -estudios clasicos,1 -estudios constitucionales,1 -estudios de cultura maya,1 -estudios de cultura nahuatl,1 -estudios de la antiguedad,1 -estudios de linguistica universidad de alicante,1 -estudios de linguistica espanola,1 -estudios eclesiasticos,1 -estudios filologicos,1 -estudios filologicos alemanes,1 -estudios geologicos: madrid,1 -estudios interdisciplinarios de america latina y el caribe,1 -estudios romanicos,1 -estudios sobre el mensaje periodistico,1 -estudios sobre las culturas contemporaneas,1 -estudis: universidad de valencia,1 -estudis romanics,1 -estudos feministas,1 -estudos ibero-americanos,2 -etc: review of general semantics,1 -ethic@,1 -ethical human psychology and psychiatry,1 -ethical perspectives,1 -ethical space: the international journal of communication ethics,1 -ethical theory and moral practice,2 -ethics,3 -ethics and behavior,1 -ethics and medicine: an international journal of bioethics,1 -ethics and education,1 -ethics and information technology,2 -ethics and international affairs,1 -ethics and the environment,1 -ethics in science and environmental politics,1 -"ethics, policy and environment",1 -ethik in der medizin,1 -ethiopian journal of development research,1 -ethiopian journal of health development,1 -ethnic and racial studies,3 -ethnica,1 -ethnicities,3 -ethnicity and disease,1 -ethnicity and health,1 -ethnographia,1 -ethnographica: periodic publication of the peloponnese folklore foundation,1 -"ethnographie: creation, pratiques, publics",1 -ethnographisch-archaologische zeitschrift,1 -ethnography,2 -ethnography and education,2 -ethnohistory,2 -ethnologia balkanica: journal of southeast european anthropology,1 -ethnologia europae centralis,1 -ethnologia europaea,3 -ethnologia fennica,2 -ethnologia scandinavica,2 -ethnologia slovaca et slavica,1 -ethnologia: journal of the greek society for ethnology,1 -ethnologie francaise,1 -ethnology,2 -ethnomusicology,3 -ethnomusicology forum,3 -ethnopolitics,2 -ethnos,3 -ethology,1 -ethology ecology and evolution,1 -ethos,2 -etikk i praksis,1 -etnofoor,1 -etnografia polska,2 -etnografica: revista do centro em rede de investigacao em antropologia,1 -etnograficeskoe obozrenie,1 -etnolingwistyka,1 -etnologia polona,1 -etnologicke rozpravy,1 -etnoloska tribina,1 -etnomusikologian vuosikirja,1 -etnosistemi,1 -educational technology research and development,2 -etri journal,1 -etude de la population africaine,1 -etudes anglaises,1 -etudes celtique,1 -etudes cinematographiques,1 -etudes classiques,2 -etudes creoles,1 -etudes cretoises,1 -etudes de linguistique appliquee,1 -études et documents berbères,1 -etudes francaises,2 -nouvelles etudes francophones,1 -etudes germaniques,1 -etudes inuit,1 -etudes irlandaises,1 -etudes litteraires,1 -etudes medievales,1 -"etudes mongoles et siberiennes, centrasiatiques et tibetaines",1 -etudes phenomenologiques,2 -etudes philosophiques,1 -etudes photographiques,2 -études romanes de brno,1 -etudes romanes de lund,1 -etudes rurales,1 -etudes sur le judaïsme medieval,1 -etudes theatrales,1 -etudes theologiques et religieuses,1 -eubios: journal of asian and international bioethics,1 -eukaryotic cell,1 -eulimene,1 -euphorion: zeitschrift fur literaturgeschichte,3 -euphrosyne: revista de filologia classica,1 -euphytica,1 -eurasia antiqua,1 -"eurasia: journal of mathematics, science and technology education",1 -eurasian geography and economics,2 -eurasian prehistory,1 -eurasian soil science,1 -eurasip journal of embedded systems,1 -eurasip journal on advances in signal processing,1 -eurasip journal on image and video processing,1 -eurasip journal on wireless communications and networking,1 -eure: revista latinoamericana de estudios urbano regionales,1 -euresis: cahiers roumains detudes litteraires,1 -euro-atlantic studies,1 -eurochoices,1 -euromicro conference on real-time systems,1 -european conference on software maintenance and reengineering,1 -europa orientalis,1 -europace,2 -europaische zeitschrift fur wirtschaftsrecht,1 -europaische rundschau,1 -europarattslig tidskrift,1 -europarecht,2 -european accounting review,2 -european actuarial journal,1 -european addiction research,1 -european archives of oto-rhino-laryngology,1 -european archives of paediatric dentistry,1 -european archives of psychiatry and clinical neuroscience,1 -european association for animal production scientific series,1 -european biophysics journal with biophysics letters,1 -european bulletin of himalayan research,1 -european business law review,3 -european business organization law review,1 -european business review,1 -european cells and materials,1 -european child and adolescent psychiatry,2 -european coatings journal,1 -european company and financial law review,1 -european company law,1 -european competition journal,1 -european conference on computational biology,1 -european conference on computer vision,2 -european conference on information retrieval,2 -european conference on information systems,1 -european constitutional law review,3 -european countryside,1 -european cytokine network,1 -european diabetes nursing,1 -european diversity and autonomy papers,1 -european early childhood education research journal,2 -european eating disorders review,1 -european economic review,2 -european education,1 -european educational research journal,2 -european energy and environmental law review,1 -european federation of corrosion publications,1 -european financial management,2 -european food research and technology,1 -european foreign affairs review,1 -european gender equality law review,1 -european heart journal,3 -european heart journal supplements,1 -european history quarterly,3 -european human rights law review,2 -european integration online papers: eiop,1 -european intellectual property review,1 -european journal for church and state research,1 -european journal for sport and society,1 -european journal of adapted physical activity,1 -european journal of ageing,2 -european journal of agronomy,3 -european journal of american culture,1 -european journal of american studies,1 -european journal of anaesthesiology,1 -european journal of applied mathematics,1 -european journal of applied physiology,1 -european journal of archaeology,3 -european journal of behavior analysis,1 -european journal of cancer,2 -european journal of cancer care,1 -european journal of cancer prevention,1 -european journal of cardio-thoracic surgery,1 -european journal of cardiovascular nursing,1 -european journal of preventive cardiology,2 -european journal of cell biology,1 -european journal of clinical hypnosis,1 -european journal of clinical investigation,1 -european journal of clinical microbiology and infectious diseases,1 -european journal of clinical nutrition,1 -european journal of clinical pharmacology,1 -european journal of combinatorics,2 -european journal of communication,3 -european journal of contraception and reproductive health care,1 -european journal of control,1 -"european journal of crime, criminal law and criminal justice",2 -european journal of criminology,2 -european journal of cultural studies,2 -european journal of dental education,1 -european journal of dermatology,1 -european journal of development research,1 -european journal of developmental psychology,1 -international journal of developmental science,1 -european journal of drug metabolism and pharmacokinetics,1 -european journal of east asian studies,1 -european journal of economic and social systems,1 -european journal of education,2 -european journal of emergency medicine,1 -european journal of endocrinology,3 -"european journal of endocrinology, supplement",1 -european journal of engineering education,1 -european journal of english studies,2 -european journal of entomology,1 -european journal of environmental and civil engineering,1 -european journal of epidemiology,3 -european journal of finance,1 -european journal of forest research,2 -european journal of gastroenterology and hepatology,1 -european journal of general practice,1 -european journal of gynaecological oncology,1 -european journal of haematology,1 -european journal of health economics,1 -european journal of health law,2 -european journal of heart failure,3 -european journal of histochemistry,1 -european journal of horticultural science,1 -international journal of housing policy,1 -european journal of human genetics,2 -european journal of immunology,1 -european journal of industrial engineering,1 -european journal of industrial relations,1 -european journal of inflammation,1 -european journal of information systems,3 -european journal of innovation management,1 -european journal of inorganic chemistry,1 -european journal of internal medicine,1 -european journal of international law,3 -european journal of international management,1 -european journal of international relations,3 -european journal of jewish studies,1 -european journal of law and economics,1 -european journal of law reform,1 -european journal of legal studies,1 -european journal of lipid science and technology,1 -european journal of marketing,2 -european journal of mass spectrometry,1 -european journal of mechanics a: solids,2 -european journal of mechanics b: fluids,1 -european journal of medical genetics,1 -european journal of medical research,1 -european journal of medicinal chemistry,2 -european journal of mental health,1 -european journal of migration and law,2 -european journal of mineralogy,1 -european journal of navigation,1 -european journal of neurology,2 -european journal of neuroscience,2 -european journal of nuclear medicine and molecular imaging,3 -european journal of nutrition,2 -european journal of obstetrics and gynecology and reproductive biology,1 -european journal of oncology nursing,2 -"european journal of open, distance and e-learning",1 -european journal of operational research,2 -european journal of ophthalmology,1 -european journal of oral sciences,2 -european journal of organic chemistry,1 -european journal of orthodontics,1 -european journal of orthopaedic surgery and traumatology,1 -european journal of paediatric neurology,1 -european journal of pain,1 -european journal of palliative care,1 -european journal of pediatric surgery,1 -european journal of pediatrics,1 -european journal of personality,2 -european journal of pharmaceutical sciences,3 -european journal of pharmaceutics and biopharmaceutics,2 -european journal of pharmacology,2 -european journal of philosophy,3 -european journal of philosophy of religion,1 -european journal of phycology,1 -european journal of physical and rehabilitation medicine,1 -european journal of physics,1 -european journal of plant pathology,1 -european journal of plastic surgery,1 -european journal of political economy,1 -european journal of political research,3 -european journal of political theory,2 -european journal of population-revue europeenne de demographie,2 -european journal of pragmatism and american philosophy,1 -european journal of protistology,1 -european journal of psychiatry,1 -european journal of psychological assessment,1 -european journal of psychology of education,1 -"european journal of psychotherapy, counselling and health",1 -european journal of public health,2 -european journal of pure and applied mathematics,1 -european journal of radiology,1 -european journal of science and theology,0 -european journal of social education,1 -european journal of social psychology,3 -european journal of social security,1 -european journal of social theory,2 -european journal of social work,2 -european journal of soil biology,1 -european journal of soil science,2 -european journal of spatial development,1 -european journal of special needs education,2 -european journal of sport science,1 -european journal of teacher education,3 -european journal of the history of economic thought,1 -european journal of theology,1 -european journal of transport and infrastructure research,1 -european journal of trauma and emergency surgery,1 -european journal of underwater and hyperbaric medicine,1 -european journal of vascular and endovascular surgery,2 -european journal of wildlife research,1 -european journal of women`s studies,3 -european journal of wood and wood products,1 -european journal of work and organizational psychology,2 -european journal on criminal policy and research,1 -european joyce studies,1 -european law journal,3 -european law review,3 -european legacy: toward new paradigms,2 -european management journal,2 -european management review,1 -european medieval drama,1 -european neurology,1 -european neuropsychopharmacology,1 -european physical education review,2 -european physical journal a,2 -european physical journal b,1 -european physical journal c,2 -european physical journal d,1 -european physical journal e,1 -european physical journal h,1 -european physical journal plus,1 -european physical journal: applied physics,1 -european physical journal: special topics,1 -european planning studies,2 -european political science,1 -european political science review,2 -european polymer journal,1 -european psychiatry,2 -european psychologist,2 -european public law,2 -european radiology,2 -european respiratory journal,3 -european respiratory review,1 -european review,1 -european review for medical and pharmacological sciences,1 -european review of aging and physical activity,1 -european review of agricultural economics,2 -european review of applied psychology-revue europeenne de psychologie appliquee,1 -european review of contract law,2 -european review of economic history,2 -european review of history-revue europeenne d histoire,3 -european review of private law,2 -european review of social psychology,1 -european romantic review,2 -european security,1 -european signal processing conference,1 -european societies,2 -european sociological review,3 -european software engineering conference,2 -european spine journal,1 -european sport management quarterly,1 -european studies,1 -european surgery: acta chirurgica austriaca,1 -european surgical research,1 -european symposia on algorithms,2 -"european symposium on artificial neural networks, computational intelligence and machine learning",1 -european transactions on electrical power,1 -european transactions on telecommunications,1 -european transport : trasporti europei,1 -european union politics,2 -european urban and regional studies,2 -european urology,3 -european values studies,1 -european yearbook of minority issues,1 -europe-asia studies,3 -europe: revue litteraire mensuelle,1 -europes journal of psychology,1 -eurosurveillance,2 -eurosys conference,1 -evaluation,1 -evaluation and the health professions,1 -evaluation and program planning,1 -evaluation review,1 -evangelische theologie,1 -event management,1 -evidence-based cardiovascular medicine,1 -evidence-based communication assessment and intervention,1 -evidence-based complementary and alternative medicine,0 -evidence-based dentistry,1 -evidence-based nursing,1 -evolution,3 -evolution and development,1 -evolution and human behavior,2 -evolution psychiatrique,1 -evolutionary anthropology,3 -evolutionary applications,2 -evolutionary bioinformatics,1 -evolutionary biology,1 -evolutionary computation,2 -evolutionary ecology,1 -evolutionary ecology research,1 -evolutionary psychology,1 -ex auditu,1 -excavatio,1 -exceptional children,3 -exceptionality,1 -exchange: journal of missiological and ecumenical research,2 -excli journal,1 -exemplaria classica,1 -exemplaria: a journal of theory in medieval and renaissance studies,1 -exercise and sport sciences reviews,1 -exercise immunology review,1 -exilforschung: ein internationales jahrbuch,1 -existentia,1 -experimental aging research,1 -experimental agriculture,1 -experimental and applied acarology,1 -experimental and clinical endocrinology and diabetes,1 -experimental and clinical psychopharmacology,1 -experimental and clinical transplantation,1 -experimental and molecular medicine,1 -experimental and molecular pathology,1 -experimental and toxicologic pathology,1 -experimental animals,1 -experimental astronomy,1 -experimental brain research,1 -experimental cell research,1 -experimental dermatology,2 -experimental diabetes research,1 -experimental economics,2 -experimental eye research,1 -experimental heat transfer,1 -experimental hematology,1 -experimental lung research,1 -experimental mathematics,1 -experimental mechanics,1 -experimental neurology,1 -experimental parasitology,1 -experimental physiology,1 -experimental psychology,1 -experimental techniques,1 -experimental thermal and fluid science,1 -experiments in fluids,1 -expert evidence,1 -expert opinion on biological therapy,1 -expert opinion on drug delivery,1 -expert opinion on drug discovery,1 -expert opinion on drug metabolism and toxicology,1 -expert opinion on drug safety,1 -expert opinion on emerging drugs,1 -expert opinion on investigational drugs,1 -expert opinion on pharmacotherapy,1 -expert opinion on therapeutic patents,1 -expert opinion on therapeutic targets,1 -expert review of anticancer therapy,1 -expert review of anti-infective therapy,1 -expert review of medical devices,1 -expert review of molecular diagnostics,1 -expert review of neurotherapeutics,1 -expert review of pharmacoeconomics and outcomes research,1 -expert review of proteomics,1 -expert review of vaccines,1 -expert reviews in molecular medicine,1 -expert systems,1 -expert systems with applications,2 -explicator,1 -exploration and mining geology,1 -exploration geophysics,1 -french australian review,1 -explorations in economic history,3 -explorations in media ecology,1 -explorations in renaissance culture,1 -explore: the journal of science and healing,1 -expositiones mathematicae,1 -expository times,1 -express polymer letters,1 -expressions maghrebines,1 -extrapolation,2 -extremes,1 -extremophiles,1 -eye,1 -eye and contact lens-science and clinical practice,1 -fabrications,1 -fabula,2 -fachsprache,2 -facial plastic surgery,1 -facies,1 -facilities,2 -facta: a journal of roman material culture studies,1 -faith and philosophy,2 -faits de langues,1 -familial cancer,1 -families in society: the journal of contemporary social services,1 -family and community health,1 -family and community history,1 -family and consumer sciences research journal,1 -family business review,2 -family court review: an interdisciplinary journal,1 -family journal,1 -family law quarterly,1 -family medicine,1 -family process,2 -family relations,2 -"family science: global perspectives on research, policy and practice",1 -far east journal of theoretical statistics,1 -faraday discussions,1 -faravid,1 -fasciculi archaeologiae historicae,1 -faseb journal,2 -fashion theory: the journal of dress body and culture,2 -fataburen nordiska museets,1 -fathering: a journal of theory and research about men as parents,1 -fatigue and fracture of engineering materials and structures,1 -faulkner journal,1 -fauna norvegica,1 -faventia,1 -febs journal,2 -febs letters,1 -federal law review,1 -federal probation,1 -"felix ravenna: rivista di antichita ravennati, cristiane e byzantine",1 -felsefe tartışmaları,1 -femina politica,1 -feminism and psychology,1 -feminist criminology,2 -feminist economics,1 -feminist legal studies,2 -feminist media studies,2 -feminist review,2 -feminist studies,2 -feminist theology,1 -feminist theory,3 -feministische studien,1 -fems immunology and medical microbiology,1 -fems microbiology ecology,1 -fems microbiology letters,1 -fems microbiology reviews,2 -fems yeast research,1 -fennia,1 -fennoscandia archaeologica,2 -fenno-ugristica,1 -ferroelectrics,1 -ferroelectrics letters section,1 -fertility and sterility,3 -advances in solid state physics,1 -fetal and maternal medicine review,1 -fetal and pediatric pathology,1 -fetal diagnosis and therapy,1 -few-body systems,1 -ff communications,2 -fiber and integrated optics,1 -fibers and polymers,1 -fibonacci quarterly,1 -fibre chemistry,1 -fibreculture journal: internet theory criticism research,1 -fibres and textiles in eastern europe,1 -fichte-studien,1 -fiction international,1 -fiddlehead,1 -field crops research,2 -field methods,2 -fieldwork in religion,1 -fifteenth-century studies,1 -figurationen: gender - literatur - kultur,1 -film and history,1 -film criticism,1 -film history: an international journal,2 -film quarterly,2 -filmhistoria,1 -film-philosophy,1 -filologia,1 -filologia antica e moderna,1 -filologiâ i ?elovek,1 -filologia mediolatina: rivista della fondazione ezio franceschini,2 -filologia neotestamentaria,1 -filologija,1 -filomat,1 -filosofiâ hozâjstva,1 -filosofiâ i kul’tura,1 -filosofiâ nauki,1 -filosofiâ obrazovaniâ,1 -filosofiâ prava,1 -filosofiâ social’nyh kommunikacij,1 -filosofia unisinos,1 -filosoficky casopis,1 -filosofija-sociologija,1 -filosofisk tidskrift,1 -filosofskie nauki,1 -filozofia,1 -filozofia nauki,1 -filozofska istrazivanja,1 -filozofski vestnik,1 -filtration,1 -filtration and separation,1 -filtration industry analyst,1 -finance and stochastics,2 -finance india,1 -finance research letters,1 -financial accountability and management,1 -financial analysts journal,1 -financial history,1 -financial history review,1 -financial management,2 -financial markets and portfolio management,1 -"financial markets, institutions and instruments",1 -financial services review,1 -financial times music and copyright,0 -finanzarchiv,1 -finite elements in analysis and design,1 -finite fields and their applications,1 -finnische beiträge zur germanistik,1 -finnisch-ugrische forschungen,3 -finnisch-ugrische mitteilungen,1 -finnish defence studies,1 -kasvatusalan tutkimuksia,1 -finnish journal of ehealth and ewelfare,1 -musiikkikasvatus,1 -finska läkaresällskapets handlingar,1 -finskt museum,1 -fire and materials,1 -fire safety journal,2 -fire technology,2 -first break,1 -first language,2 -first monday,2 -fiscal studies,1 -fish and shellfish immunology,1 -fish and fisheries,3 -fish pathology,1 -fish physiology and biochemistry,1 -fisheries,1 -fisheries management and ecology,1 -fisheries oceanography,2 -fisheries research,2 -fishery bulletin,1 -fisioterapia,1 -fit monograph series/collection,1 -fitoterapia,1 -fixed point theory,1 -fizika metalliv i metallovedenie,1 -flavour and fragrance journal,1 -fleischwirtschaft,1 -flexible services and manufacturing journal,1 -flora,1 -florentia iliberritana,1 -florida entomologist,1 -florilegium,1 -flow measurement and instrumentation,2 -flow turbulence and combustion,1 -fluctuation and noise letters,1 -fluid dynamics,1 -fluid dynamics and materials processing,1 -fluid dynamics research,1 -fluid mechanichs and its application,1 -fluid phase equilibria,1 -fluminensia,1 -fluoride,1 -fly,1 -focaal: european journal of anthropology,2 -focus on alternative and complementary therapies,1 -focus on autism and other developmental disabilities,1 -focus on catalysts,1 -focus on exceptional children,1 -focus on pigments,1 -focus on powder coatings,1 -focus on surfactants,1 -folia biologica,1 -folia biologica: krakow,1 -folia estonica,1 -folia ethnographica,1 -folia geobotanica,1 -folia histochemica et cytobiologica,1 -folia linguistica,2 -folia linguistica historica,2 -folia microbiologica,1 -folia morphologica,1 -folia neuropathologica,1 -folia onomastica croatica,1 -folia orientalia,1 -folia parasitologica,1 -folia phoniatrica et logopaedica,1 -folia praehistorica posnaniensia,1 -folia primatologica,1 -folia scandinavica posnaniensia,1 -folia uralica debreceniensia,1 -folk life,1 -folk music journal,1 -folklore,2 -folkmalsstudier,2 -fonetica si dialectologie,1 -fontes archaeologici posnanienses,1 -fontes artis musicae,1 -fonti musicali italiane,1 -food additives and contaminants part b: surveillance issn,1 -food additives and contaminants part a: chemistry analysis control exposureand risk assessment,1 -food analytical methods,1 -food and agricultural immunology,1 -food and bioprocess technology,1 -food and bioproducts processing,1 -food and chemical toxicology,1 -food and drug law journal,1 -food and environmental virology,1 -food and foodways,1 -food and history,2 -food and nutrition bulletin,1 -food australia,1 -food biophysics,1 -food biotechnology,1 -food chemistry,2 -food control,2 -food hydrocolloids,3 -food hygiene and safety science,1 -food microbiology,2 -food policy,2 -food quality and preference,2 -food research international,2 -food reviews international,2 -food science and biotechnology,1 -food science and technology international,1 -food science and technology research,1 -food technology,1 -food technology and biotechnology,1 -"food, culture and society",1 -foodborne pathogens and disease,1 -foot,1 -foot and ankle international,1 -foot and ankle surgery,1 -for the learning of mathematics,1 -fordham international law journal,2 -fordham law review,1 -foreign affairs,1 -foreign language annals,2 -foreign literature studies,1 -foreign policy,1 -foreign policy analysis,1 -forensic science international,2 -forensic science international: genetics,3 -"forensic science, medicine and pathology",1 -forensic toxicology,1 -foresight,1 -forest ecology and management,3 -forest pathology,1 -forest policy and economics,2 -forest products journal,1 -forest science,1 -forest systems,1 -forestry,2 -forestry chronicle,0 -forests,1 -forma y funcion,1 -formal aspects of computing,2 -formal methods in system design,2 -formation emploi,1 -formulary,1 -formules: revue des creations formelles,1 -fornvannen,1 -foro amministrativo,1 -foro hispanico,1 -foro internacional,1 -foro italiano,1 -forschung im ingenieurwesen-engineering research,1 -forschungen zu burgen und schlossern,1 -forschungen zur osteuropäischen geschichte,1 -forschungen zur volks- und landeskunde,1 -fortschritte der neurologie psychiatrie,1 -fortschritte der physik-progress of physics,1 -forum: international journal of interpretation and translation,1 -forum archaeologiae: zeitschrift fur klassische archaologie,1 -forum der psychoanalyse,1 -forum for anthropology and culture,1 -forum for development studies,1 -forum for modern language studies,1 -forum for world literature studies,1 -forum homosexualitat und literatur,1 -forum italicum,1 -forum mathematicum,2 -forum modernes theater,1 -forum of nutrition,1 -forum qualitative sozialforschung,1 -forum: a journal of applied research in contemporary politics,1 -forvaltningsrattslig tidskrift,1 -fossil record,1 -fotogeschichte,1 -fottea,1 -foucault studies,1 -foundation: the international review of science fiction,1 -foundations and trends in communications and information theory,1 -foundations and trends in econometrics,1 -foundations and trends in human-computer interaction,1 -foundations and trends in information retrieval,3 -foundations and trends in web science,1 -foundations of chemistry,0 -foundations of computational mathematics,3 -foundations of genetic algorithms,1 -foundations of physics,1 -foundations of science,1 -fourrages,1 -fourth genre: explorations in nonfiction,1 -fractals: complex geometry patterns and scaling in nature and society,1 -framework: the journal of cinema and media,1 -francais moderne,2 -francia,1 -franciscan studies,1 -francophone postcolonial studies,1 -frankfurter elektronische rundschau zur altertumskunde,1 -frankfurter judaistische beitrage,1 -free radical biology and medicine,1 -free radical research,1 -freiburger zeitschrift fur philosophie und theologie,1 -fremdsprache deutsch: zeitschrift fur die praxis des deutschunterrichts,1 -french colonial history,1 -french cultural studies,1 -french forum,1 -french historical studies,1 -french history,2 -french politics,1 -french review,2 -french studies,3 -fresenius environmental bulletin,0 -freshwater biology,2 -freshwater crayfish,1 -frodskaparrit: annales societatis scientiarum faeroensis,1 -frontiers in artificial intelligence and applications,1 -frontiers in behavioral neuroscience,1 -frontiers in bioscience - elite,0 -frontiers in ecology and the environment,2 -frontiers in genetics,1 -frontiers in human neuroscience,1 -frontiers in neural circuits,1 -frontiers in neuroendocrinology,1 -frontiers in neuroscience,1 -frontiers in zoology,1 -frontiers of environmental science & engineering,1 -frontiers of gastrointestinal research,1 -frontiers of hormone research,1 -frontiers of law in china,1 -frontiers of physics,1 -frontiers of radiation therapy and oncology,1 -frontiers: a journal of women studies,1 -fruhmittelalterliche studien,1 -fruhneuzeit-info,1 -fruits,1 -fu jen studies: literature and linguistics,1 -fuel,2 -fuel and energy abstracts,0 -fuel cells,1 -fuel cells bulletin,1 -fuel processing technology,1 -"fullerenes, nanotubes, and carbon nanostructures",1 -functional and integrative genomics,1 -functional analysis and its applications,1 -functional differential equations,1 -functional ecology,3 -functional materials letters,1 -functional neurology,1 -functional plant biology,1 -functions of language,2 -fund og forskning i det kongelige biblioteks samlinger,1 -fundamenta informaticae,1 -fundamenta mathematicae,1 -fundamental and clinical pharmacology,1 -fundamental and applied limnology,1 -funde und ausgrabungen im bezirk trier,1 -fungal biology,1 -fungal diversity,3 -fungal ecology,1 -fungal genetics and biology,1 -funkcialaj ekvacioj : serio internacia,1 -furniture history,1 -fusion engineering and design,1 -fusion science and technology,1 -futura,1 -future anterior: journal of historic preservation history theory and criticism,2 -future generation computer systems: the international journal of grid computing: theory methods and applications,3 -future medicinal chemistry,1 -future microbiology,1 -future of children,2 -future virology,1 -futures,2 -futurist,1 -fuzzy optimization and decision making,1 -fuzzy sets and systems,1 -fysioterapeuten,1 -"g3: genes, genomes, genetics",2 -gaceta medica de mexico,1 -gaia: ecological perspectives for science and society,1 -gait and posture,1 -galileana: journal of galilean studies,1 -gallia prehistoire,1 -gallia: fouille et monuments en france metropolitaine,1 -galpin society journal,1 -galvanotechnik,1 -game studies: the international journal of computer game research,2 -games and culture: a journal of interactive media,3 -games and economic behavior,2 -garden history,1 -gastric cancer,2 -clinics and research in hepatology and gastroenterology,1 -gastroenterology,3 -gastroenterology clinics of north america,1 -gastroenterology nursing,1 -gastrointestinal endoscopy,1 -gay and lesbian issues and psychology review,1 -gayana,1 -gayana botanica,1 -geburtshilfe und frauenheilkunde,1 -gedrag and organisatie,1 -gefahrstoffe reinhaltung der luft,1 -gefasschirurgie,1 -gematologiya i transfuziologiya,1 -gems and gemology,1 -gender and society,3 -gender and behaviour,1 -gender and development,1 -gender and education,3 -gender and history,3 -gender and language,2 -gender issues,1 -gender medicine,1 -"gender, place and culture",2 -"gender, work and organization",3 -"gender, technology and development",1 -genders,1 -gene,1 -gene expression,1 -gene expression patterns,1 -gene regulation and systems biology,1 -gene therapy,1 -gene therapy and molecular biology,1 -gene therapy and regulation,1 -general and comparative endocrinology,1 -general hospital psychiatry,1 -general physiology and biophysics,1 -general relativity and gravitation,1 -generations: journal of the american society on aging,1 -genes and development,3 -genes and genetic systems,1 -genes and genomics,1 -genes and immunity,1 -genes and nutrition,1 -genes brain and behavior,1 -genes chromosomes and cancer,1 -genes to cells,1 -genesis,1 -genesis: revue internationale de critique genetique,1 -genetic counseling,1 -genetic engineering and biotechnology news,1 -genetic epidemiology,1 -genetic programming and evolvable machines,1 -genetic resources and crop evolution,1 -genetic testing and molecular biomarkers,1 -genetica,1 -genetics,2 -genetics and molecular biology,1 -genetics and molecular research,0 -genetics in medicine,3 -genetics research,1 -genetics selection evolution,2 -genetika,1 -geneva papers on risk and insurance-issues and practice,1 -geneva risk and insurance review,1 -genome,1 -genome biology,3 -genome biology and evolution,2 -proceedings : genome informatics workshop,1 -genome research,3 -genomics,1 -genomics society and policy,1 -genos,1 -genre,1 -geojournal,1 -geoacta,1 -geoarabia,1 -geoarchaeology: an international journal,2 -geobiology,2 -geobios,1 -geochemical journal,1 -geochemical transactions,1 -geochemistry geophysics geosystems,2 -geochemistry international,1 -geochemistry: exploration environment analysis,1 -geochimica et cosmochimica acta,2 -geochronometria,1 -geoderma,2 -geodetski list,1 -geodetski vestnik,1 -geodesy and cartography,1 -geodiversitas,1 -geofisica internacional,1 -geofizika,1 -geofluids,1 -geoforum,3 -geografie,1 -geografisk tidsskrift: danish journal of geography,1 -geografiska annaler series a: physical geography,1 -geografiska annaler series b: human geography,2 -geografiska notiser,1 -geographia antiqua,1 -geographical analysis,2 -geographical journal,1 -geographical research,1 -geographical review,1 -geographie economie societe,1 -geographie physique et quaternaire,1 -geographische zeitschrift,1 -geography,1 -geography compass,2 -geoheritage,1 -geoinformatica,1 -geokhimiya,1 -geologia croatica,1 -geologica acta,1 -geologica carpathica,1 -geological association of canada: special paper,1 -geological journal,1 -geological magazine,1 -geological quarterly,1 -geological society of america bulletin,2 -geological society special publication,1 -geology,3 -geology of ore deposits,1 -geology today,1 -geomagnetism and aeronomy,1 -geo-marine letters,1 -geomatica,1 -geomechanics and geoengineering,1 -geometriae dedicata,2 -geometric and functional analysis,3 -geometry and topology,3 -geometry and topology monographs,1 -geomicrobiology journal,1 -geomorphologie: relief processus environnement,1 -geomorphology,1 -geophysica,1 -geophysical and astrophysical fluid dynamics,1 -geophysical journal international,1 -geophysical monographs,1 -geophysical prospecting,1 -geophysical research letters,3 -geophysics,1 -geopolitics,3 -george washington law review,1 -georgetown immigration law journal,1 -georgetown journal of legal ethics,1 -georgetown law journal,2 -georgia review,1 -georgian mathematical journal,1 -"georgica: zeitschrift fur kultur, sprache und geschichte georgiens und kaukasiens",1 -geoscience canada,1 -geoscience frontiers,1 -geosciences journal,1 -geoscientific model development,3 -geospatial health,1 -geosphere,1 -geostandards and geoanalytical research,1 -geosynthetics international,1 -geotechnical and geological engineering,1 -geotechnical engineering,1 -geotechnical testing journal,1 -geotechnik,1 -geotechnique,3 -geotectonics,1 -geotextiles and geomembranes,2 -geothermics,1 -geotropico,1 -geriatric nursing,1 -geriatrics and gerontology international,1 -geriatrics and aging,1 -gerion,1 -german economic review,1 -german history,2 -german journal of psychiatry,1 -german law journal,2 -german life and letters,2 -german monitor,1 -german politics,1 -german politics and society,1 -german quarterly,2 -german studies review,1 -german yearbook of international law,1 -germania,2 -germanic review,3 -germanisch-romanische monatsschrift,3 -germanistik : deutsche sprach- und literaturwissenschaft,1 -germanistik : internationales referatenorgan mit bibliographischen hinweisen,1 -germanistische linguistik,1 -germanistische mitteilungen,1 -germanoslavica,1 -gerodontology,1 -gerontologia,1 -gerontologist,3 -gerontology,1 -geschichte der pharmazie,1 -geschichte in wissenschaft und unterricht,1 -geschichte lernen,1 -geschichte und gegenwart,1 -geschichte und gesellschaft,3 -gesprächsforschung,2 -gesta: international center of medieval art,2 -gestalt review,1 -gestion y politica publica,1 -gesture,2 -gesture studies,1 -gesunde pflanzen,1 -gesundheitsokonomie und qualitatsmanagement,1 -gesundheitswesen,1 -gewerblicher rechtsschutz und urheberrecht,1 -studium: tijdschrift voor wetenschaps- en universiteitsgeschiedenis,1 -gezelliana,1 -gff,1 -gi cancer,1 -gifted child quarterly,2 -gim international,1 -gineco ro,1 -ginecologia y obstetricia clinica,1 -ginekologia polska,1 -giornale critico della filosofia italiana,1 -giornale di diritto amministrativo,1 -giornale di metafisica,1 -giornale italiano di filologia,1 -giornale storico della letteratura italiana,1 -girlhood studies,1 -gis business: geoinformationstechnologie fur die praxis,1 -giscience and remote sensing,1 -giurisprudenza costituzionale,1 -giustizia amministrativa,1 -glasgow mathematical journal,1 -glasnik matematicki,1 -glasnik sed,1 -glass and ceramics,1 -glass physics and chemistry,1 -glass technology: european journal of glass science and technology part a,1 -glaube und denken,1 -glia,2 -global and planetary change,3 -global biogeochemical cycles,3 -global built environment review,1 -global change biology,3 -global change biology bioenergy,2 -"global change, peace and security",1 -global crime,1 -global ecology and biogeography,3 -global economic review,1 -global economy journal,1 -global environmental change: human and policy dimensions,3 -global environmental politics,3 -global finance journal,1 -global governance,1 -global journal of pure and applied mathematics,1 -global jurist,1 -global media and communication,1 -global media journal,0 -global nest journal,1 -global networks: a journal of transnational affairs,2 -global public health,1 -global social policy,1 -global society,1 -global telecoms business,1 -"globalisation, societies and education",1 -globalizations,2 -glossa,1 -glossos,1 -glot international,1 -glotta: zeitschrift fur griechische und lateinische sprache,2 -glq: a journal of lesbian and gay studies,2 -glycobiology,1 -glycoconjugate journal,1 -gms health technology assessment,1 -gms medizin-bibliothek-information,1 -gnomon: kritische zeitschrift fur die gesamte klassische altertumswissenschaft,2 -goethe jahrbuch,1 -goethe yearbook,1 -gold bulletin,1 -gondwana research,3 -gospodarka surowcami mineralnymi-mineral resources management,1 -gosudarstvennoe i munitsipal´noe upravlenija,1 -gosudarstvo i pravo,1 -goteborg studies in conservation,1 -gothenburg papers in theoretical linguistics,1 -gothic studies,1 -gottinger forum fur altertumswissenschaft,1 -gottingische gelehrte anzeigen,1 -governance: an international journal of policy administration and institutions,3 -government and opposition,2 -government information quarterly,2 -goya,1 -gps solutions,2 -gps world,1 -gradiva,1 -graecolatina et orientalia,1 -graefes archive for clinical and experimental ophthalmology,1 -gramma: journal of theory and criticism,1 -grana,1 -granular matter,1 -graphical models,1 -graphics interface,1 -graphs and combinatorics,2 -grasas y aceites,1 -grass and forage science,1 -grassland science,1 -gravitation and cosmology,1 -grazer beitrage,1 -grazer philosophische studien,2 -great lakes entomologist,1 -great plains quarterly,1 -greece and rome,2 -"greek, roman and byzantine studies",2 -green chemistry,3 -gregorianum,1 -grenzgange: beitrage zu einer modernen romanistik,1 -grey room,2 -griffith law review,1 -gripla,1 -groundwater,1 -ground water monitoring and remediation,1 -group,1 -group and organization management,2 -group analysis,1 -group decision and negotiation,1 -group dynamics: theory research and practice,1 -group processes and intergroup relations,2 -groups geometry and dynamics,1 -groupwork,1 -growth and change,1 -growth factors,1 -growth hormone and igf research,1 -grundlagen der germanistik,1 -grundwasser,1 -gruppendynamik und organisationsberatung,1 -gsa today,1 -guerres mondiales et conflits contemporains,1 -gumanitarnye i social’nye nauki,1 -gut,3 -gut and liver,1 -gymnasium,1 -gynakologische endokrinologie,1 -gynakologisch-geburtshilfliche rundschau,1 -gynecologic and obstetric investigation,1 -gynecologic oncology,2 -gynecological endocrinology,1 -gynecological surgery,1 -gynecologie obstetrique et fertilite,1 -gyroscopy and navigation,1 -habis,1 -habitat international,1 -hadašwt `arke` wlwgiywt,1 -hadronic journal,0 -hadtortenelmi kozlemenyek,1 -hadtudomany,1 -haematologica: the hematology journal,2 -haemophilia,1 -haften for kritiska studier,1 -hagiographica,1 -hahr: hispanic american historical review,3 -halduskultuur - administrative culture,1 -hallinnon tutkimus,2 -hallym international journal of aging,1 -hamburg studies on multilingualism,1 -hamburger jahrbuch fur musikwissenschaft,1 -hamdard islamicus,1 -hamostaseologie,1 -hamsun-selskapets skriftserie,1 -hand clinics,1 -handbook of experimental pharmacology,1 -handbook of metal physics,1 -handbook of oriental studies: section 1 the near and middle east,2 -handbook of oriental studies: section 2 south asia,1 -"handbuch der orientalistiek. 3. abt., südost asien",1 -handbook of oriental studies: section 5 japan,1 -handbook of oriental studies: section 8 uralic and central asian studies,1 -handbook of thermal analysis and calorimetry,1 -handbook on the physics and chemistry of rare earths,1 -surveys in operations research and management science,1 -handbooks of management accounting research,1 -handbuch der orientalistik,1 -handbuecher zur sprach- und kommunikationswissenschaft,1 -handchirurgie mikrochirurgie plastische chirurgie,1 -handelingen van de koninklijke commissie voor toponymie en dialectologie,1 -hansische geschichtsblatter,1 -hardy-ramanujan journal,1 -harm reduction journal,1 -harmful algae,1 -harvard business review,1 -harvard civil rights-civil liberties law review,2 -harvard design magazine,1 -harvard educational review,3 -harvard environmental law review,1 -harvard human rights journal,1 -harvard international law journal,3 -harvard international review,1 -harvard journal of asiatic studies,2 -harvard journal of law and public policy,1 -harvard journal of law and technology,1 -harvard journal on legislation,1 -harvard law review,3 -harvard library bulletin,1 -harvard negotiation law review,1 -harvard review of psychiatry,1 -harvard studies in classical philology,3 -harvard theological review,3 -harvard ukrainian studies,1 -harvard journal of law and gender,1 -harvey lectures,1 -haseltonia,1 -hastings center report,1 -hastings law journal,1 -hautarzt,1 -proceedings of the annual hawaii international conference on system sciences,1 -hawwa,1 -haz es ember,1 -hazardous waste consultant,1 -head and neck: journal for the sciences and specialties of the head and neck,3 -headache,2 -health,1 -health and place,2 -health and social care in the community,1 -health and social work,1 -health affairs,2 -health and human rights,1 -health and population: perspectives and issues,1 -health and quality of life outcomes,1 -health care analysis,2 -medicare & medicaid research review,1 -health care for women international,1 -health care management review,2 -health care management science,3 -health communication,1 -health economics,2 -"health economics, policy and law",2 -health education,1 -health education and behavior,1 -health education journal,1 -health education research,1 -health expectations,1 -health informatics journal,1 -health information and libraries journal,1 -health information management journal,1 -health marketing quarterly,1 -health physics,1 -health policy,2 -health policy and development,1 -health policy and planning,2 -health promotion international,1 -health promotion practice,1 -health psychology,3 -health psychology review,2 -health research policy and systems,2 -health risk and society,1 -health services and outcomes research methodology,1 -health services management research,1 -health services research,3 -health sociology review issn,1 -health technology assessment,1 -healthcare review online,1 -healthmed,0 -hearing research,2 -heart,2 -heart and lung,1 -heart and vessels,1 -heart failure reviews,1 -heart lung and circulation,1 -heart rhythm,1 -heart surgery forum,1 -heat and mass transfer,1 -heat transfer: asian research,1 -heat transfer engineering,1 -heat transfer research,1 -hebrew language and literature series,1 -hebrew studies,1 -hebrew union college annual,1 -hec forum,1 -hefte des archaologischen seminars bern,1 -hegel-jahrbuch,1 -hegel-studien,2 -heidegger studies,1 -heidegger-jahrbuch,1 -heimen,1 -heine-jahrbuch,1 -histoire epistemologie langage,1 -helgoland marine research,1 -helicobacter,1 -helikon,1 -helios,1 -hellas: a journal of poetry and the humanities,1 -hellenic journal of nuclear medicine,1 -hellenic journal of psychology,1 -helminthologia,1 -helvetica chimica acta,1 -annales henri poincaré : a journal of theoretical and mathematical physics,2 -hematological oncology,1 -hematologie,1 -hematology,1 -hematology-oncology clinics of north america,1 -hemecht : zeitschrift für luxemburger geschichte,1 -hemijska industrija,1 -hemingway review,1 -hemodialysis international,1 -hemoglobin,1 -henoch,1 -henry james review,1 -hepatitis monthly,0 -hepatobiliary and pancreatic diseases international,1 -hepato-gastro et oncologie digestive,1 -hepato-gastroenterology,1 -hepatology,3 -hepatology international,1 -hepatology research,1 -hephaistos,1 -herald of the russian academy of sciences,1 -herd: health environments research and design journal,1 -hereditary cancer in clinical practice,1 -hereditas,1 -heredity,2 -hermathena,1 -hermeneus: revista de traduccion,1 -hermes,1 -hermes: journal of language and communication in business,1 -hermes: zeitschrift fur klassische philologie,3 -hernia,1 -heroin addiction and related clinical problems,1 -herpetologica,1 -herpetological journal,1 -herpetological monographs,1 -hertfordshire archaeology and history,1 -herz,1 -herzogia,1 -herzschrittmachertherapie und elektrophysiologie,1 -hesperia,2 -hessische blatter fur volks- und kulturforschung,1 -heteroatom chemistry,1 -heterocycles,1 -heterocyclic communications,1 -hethitica,1 -heythrop journal: a quarterly review of philosophy and theology,1 -hidrobiologica,1 -hieronymus complutensis,1 -high ability studies,1 -high altitude medicine and biology,1 -high blood pressure and cardiovascular prevention,1 -high energy chemistry,1 -high energy density physics,1 -high performance polymers,1 -high pressure research,1 -high temperature,1 -high temperature material processes,1 -high temperature materials and processes,1 -high temperatures - high pressures,1 -higher education,3 -higher education dynamics,1 -higher education in europe,1 -higher education policy,1 -higher education quarterly,1 -higher education research and development,2 -higher education review,1 -himalayan geology,1 -hip international,1 -hippocampus,1 -hippokrates,1 -hiroshima journal of mathematics education,1 -hiroshima mathematical journal,1 -hispamerica: revista de literatura,1 -hispania antiqua,1 -hispania sacra,1 -hispania: a journal devoted to the teaching of spanish and portuguese,1 -hispania: revista espanola de historia,1 -hispanic journal,1 -hispanic research journal: iberian and latin american studies,1 -hispanic review,3 -hispanofila,1 -histochemistry and cell biology,1 -histoire de lart,1 -histoire des sciences medicales,1 -histoire et civilisation du livre,1 -histoire et mesure,1 -histoire et societes,1 -histoire et societes rurales,1 -histoire medievale et archeologie,1 -histoire sociale-social history,2 -"histoire, economie et societe",1 -histoires litteraires,1 -histology and histopathology,1 -histopathology,2 -historein,1 -historia,1 -historia agraria,1 -historia ciencias saude-manguinhos,1 -historia contemporanea,1 -historia critica,2 -historia mathematica,3 -historia mexicana,2 -historia mirabilis,1 -historia scientiarum,1 -historia social,1 -historia y comunicacion social,1 -historia y politica,2 -"historia, antropologia y fuentes orales",1 -historiallinen aikakauskirja,2 -historiallinen arkisto,1 -historiallisia tutkimuksia,2 -historian,1 -historia: santiago,2 -historia: zeitschrift fur alte geschichte,2 -historic brass society journal,1 -historic environment,1 -historica,1 -historical archaeology,2 -historical journal,3 -historical journal of film radio and television,2 -historical journal of japan,1 -historical materialism: research in critical marxist theory,1 -historical metallurgy,1 -historical methods,3 -historical records of australian science,1 -historical reflections-reflexions historiques,1 -historical research,2 -historical review : la revue historique,1 -historical social research-historische sozialforschung,1 -historical sociolinguistics and sociohistorical linguistics,1 -historical studies in industrial relations,1 -historical studies in the natural sciences,2 -historicky casopis,1 -historiographia linguistica,2 -"historische anthropologie: kultur, gesellschaft, alltag",1 -historische sozialforschung,1 -historische sprachforschung,3 -historische zeitschrift,3 -historisches jahrbuch,2 -historisk tidskrift (denmark),2 -historisk tidskrift (sweden),2 -historisk tidskrift för finland,2 -historisk tidsskrift (norway),2 -historiska och litteraturhistoriska studier,1 -history,3 -history and anthropology,3 -international journal of humanities and arts computing,2 -history and memory: studies in representation of the past,3 -history and philosophy of logic,2 -history and philosophy of the life sciences,1 -history and technology,2 -history and theory,3 -history compass,1 -history in africa,2 -history of economic ideas,1 -history of economics review,1 -history of education,2 -history of education quarterly,1 -history of education review,1 -history of european ideas,2 -history of intellectual culture,1 -history of philosophy quarterly,2 -history of photography,3 -history of political economy,1 -history of political thought,2 -history of psychiatry,1 -history of psychology,1 -history of religions,3 -history of science,2 -history of science and medicine library,1 -history of technology,1 -history of the family,3 -history of the human sciences,2 -history of universities,1 -history of warfare,2 -history teacher,1 -history today,0 -history workshop journal,3 -histria archaeologica,1 -hitachi review,1 -hitotsubashi journal of economics,1 -hiv clinical trials,1 -hiv medicine,1 -hno,1 -hobbes studies,1 -hofmannsthal jahrbuch zur europaeischen moderne,1 -hoitotiede,1 -hokkaido mathematical journal,1 -holistic nursing practice,1 -holocaust and genocide studies,2 -holocaust studies series,1 -holocene,1 -holzforschung,1 -home cultures,1 -home health care management and practice,1 -home health care services quarterly,1 -homeopathy,1 -homicide studies,1 -homme: revue francaise d'anthropologie,2 -homme: zeitschrift fur feministische geschichtswissenschaft,1 -homo oeconomicus,1 -homo: journal of comparative human biology,1 -homology homotopy and applications,1 -homonoia,1 -hong kong journal of emergency medicine,1 -hong kong journal of occupational therapy,1 -hong kong journal of paediatrics,1 -hopkins quarterly,1 -horizons,1 -horizons in biblical theology,1 -hormone and metabolic research,1 -hormone research in paediatrics,1 -hormones and behavior,1 -hormones,1 -horos,1 -horticultura brasileira,1 -horticultural reviews,1 -horticultural science,1 -horticulture environment and biotechnology,1 -hortscience,1 -horttechnology,1 -hortus artium mediaevalium,1 -hospital pharmacy,1 -houille blanche: revue internationale de l'eau,1 -housing policy debate,1 -housing studies,2 -"housing, theory and society",1 -houston journal of international law,1 -houston journal of mathematics,1 -howard journal of communications,1 -howard journal of criminal justice,1 -khozjajstvo i pravo,1 -hpb surgery,1 -hrvatska revija za rehabilitacijska istrazivanja,1 -hervormde teologiese studies,1 -hudebni veda,1 -hudson review,1 -hugoye: journal of syriac studies,1 -hugur,1 -human and experimental toxicology,1 -human affairs,1 -human and ecological risk assessment,1 -human antibodies,1 -human biology,1 -human brain mapping,2 -human cell,1 -human communication research,3 -human development,1 -human dimensions of wildlife,1 -human ecology,1 -human ecology review,1 -human ecology: an interdisciplinary journal,2 -human evolution,1 -human factors,2 -human factors and ergonomics in manufacturing and service industries,1 -human fertility,1 -human gene therapy,1 -human genetics,1 -human heredity,1 -human immunology,1 -human molecular genetics,2 -human movement science,1 -human mutation,2 -human nature: an interdisciplinary biosocial perspective,1 -human organization,2 -human pathology,1 -human performance,1 -journal of human performance in extreme environments,1 -human physiology,1 -human psychopharmacology: clinical and experimental,1 -human relations,3 -human reproduction,3 -human reproduction update,3 -human resource development international,1 -human resource development quarterly,1 -human resource development review,1 -human resource management,3 -human resource management journal,2 -human resource management review,2 -human resources for health,3 -human rights in development,1 -human rights law journal,1 -human rights law review,2 -human rights quarterly,2 -human rights review,1 -human studies,2 -human systems management,1 -human technology,1 -human vaccines & immunotherapeutics,1 -human-computer interaction,3 -humanimalia,1 -humanistica lovaniensia: journal of neo-latin studies,2 -zinatnes vestnesis,1 -hume studies,2 -humor,1 -hunch,1 -hungarian journal of english and american studies,1 -hungarian journal of industrial chemistry,1 -hungarian quarterly,1 -hungarian studies,1 -husserl studies,3 -hvmanitas,1 -hydro review: the magazine of the north american hydroelectric industry,1 -hydrobiologia,2 -hydrocarbon processing,1 -hydrogeology journal,1 -hydrological processes,1 -hydrological sciences journal-journal des sciences hydrologiques,1 -hydrologie und wasserbewirtschaftung,1 -hydrology and earth system sciences,2 -hydrology research,1 -hydrometallurgy,2 -hygiea internationalis,1 -hyle,1 -hymnos,1 -hypatia,3 -hyperboreus,1 -hyperfine interactions,1 -hypertension,2 -hypertension in pregnancy,1 -hypertension research,1 -hystrix: italian journal of mammalogy,1 -proceedings of the ieee conference on decision & control,1 -i tatti studies,1 -iadis international journal on computer science and information system,0 -iadis international journal on www/internet,1 -iaee international conference,0 -fire safety science,1 -iartem,1 -"modelling, identification and control",0 -applied informatics,0 -iawa journal,1 -iberica,2 -iberoamericana,1 -iberoamericana,1 -iberoromania,2 -ibis,1 -ibm journal of research and development,1 -ibsen studies,2 -icarus,1 -icelandic agricultural sciences,1 -ices journal of marine science,1 -icga journal,1 -ichnos: an international journal for plant and animal traces,1 -ichthyological exploration of freshwaters,1 -ichthyological research,1 -icon,1 -icon: journal of the international committee for the history of technology,1 -icon: international journal of constitutional law,3 -iconographica : rivista di iconografia medievale e moderna,1 -iconos : revista de ciencias sociales,1 -idea,1 -idealistic studies,1 -ideas in history,1 -ideas y valores,1 -ideggyogyaszati szemle-clinical neuroscience,1 -identities: global studies in culture and power,2 -identity,1 -idojaras,1 -idrugs,1 -ids bulletin: institute of development studies,1 -idäntutkimus,1 -proceedings of the annual conference of the ieee industrial electronics society,1 -iee control engineering series,1 -engineering and technology,0 -ieee aerospace and electronic systems magazine,1 -ieee annals of the history of computing,1 -ieee antennas and propagation magazine,2 -ieee antennas and wireless propagation letters,2 -ieee circuits and systems magazine,2 -ieee communications letters,2 -ieee communications magazine,2 -ieee communications surveys and tutorials,2 -ieee computational intelligence magazine,1 -csb conference proceedings,1 -ieee computer graphics and applications,2 -proceedings : ieee computer security foundations symposium,1 -ieee computer society conference on computer vision and pattern recognition,2 -proceedings : ieee conference on computational complexity,1 -ieee conference on computer communications,2 -proceedings of the ieee lcn ... annual ieee conference on local computer networks,1 -ieee conference publication,1 -ieee consumer communications and networking conference,1 -ieee control systems magazine,2 -ieee design and test,2 -ieee distributed systems online,1 -ieee electrical insulation magazine,2 -ieee electron device letters,2 -ieee energy conversion congress and exposition,1 -ieee pulse,1 -ieee engineering management review,1 -ieee geoscience and remote sensing letters,1 -ieee haptics symposium,1 -proceedings : international symposium on high-performance computer architecture,1 -ieee industrial electronics magazine,2 -ieee industry applications magazine,1 -ieee international symposium on information theory,1 -ieee instrumentation and measurement magazine,1 -ieee intelligent systems,2 -"proceedings of the ieee international conference on acoustics, speech, and signal processing",2 -ieee international conference on cloud computing,1 -ieee international conference on cluster computing,1 -ieee international conference on communications,1 -ieee international conference on data mining,2 -ieee international conference on e-science,0 -ieee international fuzzy systems conference proceedings,1 -proceedings : international conference on image processing,1 -ieee international conference on mobile ad-hoc and sensor systems,1 -ieee international conference on multimedia and expo workshops,1 -ieee international conference on pervasive computing and communications,2 -"ieee international conference on software testing, verification and validation workshops",1 -proceedings : international enterprise distributed object computing conference,1 -proceedings : ieee international parallel and distributed processing symposium,2 -ieee symposium on artificial life,1 -"ieee international symposium on personal, indoor, and mobile radio communications workshops",1 -proceedings : international symposium on software reliability engineering,1 -ieee international symposium on wearable computers,1 -ieee internet computing,3 -ieee journal of oceanic engineering,1 -ieee journal of quantum electronics,2 -ieee journal of selected topics in applied earth observations and remote sensing,1 -ieee journal of selected topics in quantum electronics,2 -ieee journal of selected topics in signal processing,3 -ieee journal of solid-state circuits,3 -ieee journal on selected areas in communications,2 -ieee latin america transactions,1 -ieee micro,3 -ieee microwave magazine,1 -ieee military communications conference proceedings,1 -ieee multimedia,1 -ieee network,3 -ieee pervasive computing,2 -ieee photonics journal,1 -ieee photonics technology letters,2 -ieee potentials,1 -ieee power and energy magazine,2 -ieee power & energy society general meeting,1 -proceedings of the ieee radar conference,1 -ieee radio and wireless symposium,1 -proceedings : ieee real-time and embedded technology and applications symposium,1 -ieee reviews in biomedical engineering,1 -ieee robotics and automation magazine,2 -ieee security & privacy,2 -proceedings of the ieee sensor array and multichannel signal processing workshop,1 -ieee sensors journal,2 -proceedings of ieee sensors,1 -ieee international workshop on signal processing advances in wireless communications,1 -ieee signal processing letters,2 -ieee signal processing magazine,3 -ieee software,2 -ieee spectrum,1 -ieee conference on games,1 -ieee symposium on computational intelligence for security and defense applications,1 -ieee symposium on computational intelligence in control and automation,1 -ieee symposium on computational intelligence in cyber security,1 -ieee symposium on computational intelligence in multi-criteria decision making,1 -annual symposium on foundations of computer science,3 -annual acm/ieee symposium on logic in computer science,2 -ieee symposium on security and privacy,3 -ieee symposium on visual languages and human-centric computing,1 -symposium on vlsi circuits,1 -ieee systems journal,2 -ieee technology and society magazine,1 -ieee transactions on aerospace and electronic systems,3 -ieee transactions on affective computing,3 -ieee transactions on antennas and propagation,3 -ieee transactions on applied superconductivity,1 -ieee transactions on automatic control,3 -ieee transactions on automation science and engineering,2 -ieee transactions on biomedical circuits and systems,1 -ieee transactions on biomedical engineering,2 -ieee transactions on broadcasting,1 -ieee transactions on circuits and systems for video technology,2 -ieee transactions on circuits and systems ii-express briefs,2 -ieee transactions on circuits and systems i-regular papers,2 -ieee transactions on communications,3 -ieee transactions on computer-aided design of integrated circuits and systems,2 -ieee transactions on computers,3 -ieee transactions on consumer electronics,1 -ieee transactions on control systems technology,2 -ieee transactions on dependable and secure computing,3 -ieee transactions on device and materials reliability,1 -ieee transactions on dielectrics and electrical insulation,2 -ieee transactions on education,1 -ieee transactions on electromagnetic compatibility,1 -ieee transactions on electron devices,3 -ieee transactions on energy conversion,2 -ieee transactions on engineering management,1 -ieee transactions on evolutionary computation,3 -ieee transactions on fuzzy systems,3 -ieee transactions on geoscience and remote sensing,3 -ieee transactions on haptics,2 -ieee transactions on image processing,3 -ieee transactions on industrial electronics,3 -ieee transactions on industrial informatics,3 -ieee transactions on industry applications,2 -ieee transactions on information forensics and security,2 -ieee transactions on information theory,3 -ieee transactions on instrumentation and measurement,3 -ieee transactions on intelligent transportation systems,2 -ieee transactions on knowledge and data engineering,3 -ieee transactions on magnetics,2 -ieee transactions on medical imaging,3 -ieee transactions on microwave theory and techniques,2 -ieee transactions on mobile computing,3 -ieee transactions on multimedia,3 -ieee transactions on nanobioscience,1 -ieee transactions on nanotechnology,1 -ieee transactions on network and service management,1 -ieee transactions on neural networks and learning systems,3 -ieee transactions on neural systems and rehabilitation engineering,2 -ieee transactions on nuclear science,1 -ieee transactions on parallel and distributed systems,2 -ieee transactions on pattern analysis and machine intelligence,3 -ieee transactions on plasma science,1 -ieee transactions on power delivery,2 -ieee transactions on power electronics,3 -ieee transactions on power systems,2 -ieee transactions on professional communication,1 -ieee transactions on reliability,2 -ieee transactions on robotics,3 -ieee transactions on semiconductor manufacturing,1 -ieee transactions on signal processing,3 -ieee transactions on smart grid,3 -ieee transactions on software engineering,3 -ieee transactions on sustainable energy,2 -"ieee transactions on systems, man, and cybernetics : systems",2 -ieee transactions on cybernetics,3 -ieee transactions on human-machine systems,1 -ieee transactions on ultrasonics ferroelectrics and frequency control,2 -ieee transactions on vehicular technology,3 -ieee transactions on very large scale integration (vlsi) systems,2 -ieee transactions on wireless communications,3 -ieee transactions on visualization and computer graphics,3 -ieee vehicular technology conference,1 -ieee vehicular technology magazine,2 -ieee wireless communications,2 -ieee wireless communications and networking conference,1 -proceedings : ieee vlsi test symposium,1 -ieee winter conference on applications of computer vision,1 -ieee/acm international conference on automated software engineering,2 -ieee/acm international conference on computer-aided design,1 -proceedings : grid conference,1 -international conference on software engineering,3 -ieee-acm transactions on computational biology and bioinformatics,2 -ieee-acm transactions on networking,2 -ieee-asme transactions on mechatronics,3 -ieej transactions on electrical and electronic engineering,1 -ieice electronics express,1 -ieice transactions on communications,1 -ieice transactions on electronics,1 -ieice transactions on fundamentals of electronics communications and computer sciences,1 -ieice transactions on information and systems,1 -iet circuits devices and systems,1 -iet communications,1 -iet computer vision,1 -iet computers and digital techniques,1 -iet control theory and applications,1 -iet electric power applications,1 -iet electrical systems in transportation,1 -iet generation transmission and distribution,2 -iet image processing,1 -iet information security,1 -iet intelligent transport systems,1 -iet microwaves antennas and propagation,1 -iet nanobiotechnology,1 -iet optoelectronics,1 -iet power electronics,2 -iet radar sonar and navigation,1 -iet renewable power generation,2 -iet science measurement and technology,1 -iet signal processing,1 -iet software,1 -iet systems biology,1 -iete journal of research,1 -iete technical review,1 -iic-international review of intellectual property and competition law,3 -iie transactions,1 -iipc publication series,1 -international journal of scottish theatre and screen,1 -ijs studies in judaica,1 -il mar nero,1 -il nome nel testo: rivista internazionale di onomastica letteraria,1 -il saggiatore musicale,1 -ilar journal,1 -illinois classical studies,1 -illinois journal of mathematics,1 -illness crisis and loss,1 -ilu: revista de ciencias de las religiones,1 -ima journal of applied mathematics,1 -ima journal of management mathematics,1 -ima journal of mathematical control and information,1 -ima journal of numerical analysis,2 -image and narrative,1 -image analysis and stereology,1 -international symposium on image and signal processing and analysis,1 -image and vision computing,2 -images re-vues,1 -"imagination, cognition and personality",1 -imaging,1 -imaging decisions mri,1 -imaging science journal,1 -imago mundi: the international journal for the history of cartography,1 -imago musicae,1 -imeko tc events series,1 -imf economic review,1 -immigrants and minorities,2 -immigration and asylum law and policy in europe,1 -immigration and nationality law review,1 -immunity,3 -immunobiology,1 -immunogenetics,1 -immunologic research,1 -immunological investigations,1 -immunological reviews,2 -immunology,1 -immunology and allergy clinics of north america,1 -immunology and cell biology,1 -immunology letters,1 -"immunology, endocrine and metabolic agents in medicinal chemistry",1 -immunopharmacology and immunotoxicology,1 -immunotherapy,1 -impact assessment and project appraisal,1 -impact: studies in language and society,1 -implant dentistry,1 -implementation science,1 -implicit religion,2 -improving schools,1 -in die skriflig,1 -in practice,1 -in silico biology,1 -in situ archeologica,1 -in vitro cellular and developmental biology: animal,1 -in vitro cellular and developmental biology: plant,1 -in vivo,1 -incontri linguistici,1 -indagationes mathematicae: new series,1 -independent review,1 -index: international survey of roman law,1 -index of middle english prose,1 -index on censorship,1 -india review,1 -indian economic and social history review,2 -indian heart journal,1 -indian historical review,1 -indian journal of agricultural sciences,1 -indian journal of agronomy,1 -indian journal of animal research,1 -indian journal of animal sciences,1 -indian journal of biochemistry and biophysics,1 -indian journal of biotechnology,1 -indian journal of cancer,1 -indian journal of chemical technology,1 -indian journal of dermatology venereology and leprology,1 -indian journal of engineering and materials sciences,1 -indian journal of fibre and textile research,1 -indian journal of gastroenterology,1 -indian journal of gender studies,1 -indian journal of heterocyclic chemistry,0 -indian journal of history of science,1 -indian journal of horticulture,1 -indian journal of human genetics,1 -indian journal of labour economics,1 -indian journal of marine sciences,1 -indian journal of medical research,1 -indian journal of medical sciences,0 -indian journal of microbiology,1 -indian journal of nephrology,1 -indian journal of ophthalmology,1 -indian journal of orthopaedics,1 -indian journal of otolaryngology and head and neck surgery,1 -indian journal of pediatrics,1 -indian journal of physics,1 -indian journal of pure and applied mathematics,1 -indian journal of pure and applied physics,1 -indian journal of social work,1 -indian journal of surgery,1 -indian pacing and electrophysiology journal,1 -indian pediatrics,1 -indian veterinary journal,1 -indiana journal of global legal studies,1 -indiana law journal,1 -indiana theory review,1 -indiana university mathematics journal,2 -indiana university uralic and altaic series,1 -indigenous affairs,1 -indigenous law journal,1 -indilinga : african journal of indigenous knowledge systems,1 -indogermanische forschungen,2 -indo-iranian journal,2 -indonesia,1 -indonesia and the malay world,1 -indoor air,2 -indoor and built environment,1 -industria textila,1 -industrial and engineering chemistry research,1 -industrial and labor relations review,2 -industrial and corporate change,2 -industrial archaeology news,1 -industrial archaeology review,1 -industrial archaeology: the journal of the society for industrial archeology,1 -industrial ceramics,1 -industrial crops and products,2 -industrial diamond review,1 -industrial engineer,1 -industrial health,1 -industrial law journal,2 -industrial lubrication and tribology,1 -industrial management and data systems,1 -industrial marketing management,3 -industrial relations,1 -industrial relations journal,1 -industrial robot: an international journal,1 -industrie alimentari,1 -industry and higher education,1 -industry and innovation,2 -infancy,1 -infant and child development,1 -infant behavior and development,1 -infant mental health journal,1 -infants and young children,1 -infection,1 -infection and immunity,1 -infection control and hospital epidemiology,1 -infection genetics and evolution,1 -infectious disease clinics of north america,1 -infectious diseases in clinical practice,1 -infectious diseases in obstetrics and gynecology,1 -infini,1 -infinite dimensional analysis quantum probability and related topics,1 -inflammation,1 -inflammation and allergy: drug targets,1 -inflammation research,1 -inflammatory bowel diseases,2 -inflammopharmacology,1 -influenza and other respiratory viruses,1 -info,1 -infor,1 -informaatiotutkimus,1 -informacao e sociedade: estudos,1 -informacije midem: journal of microelectronics electronic components and materials,1 -informacios tarsadalom,1 -informal logic,1 -informatica,1 -informatica,1 -informatics for health and social care,1 -informatics in education,1 -informatics in primary care,1 -computer science: research and development,1 -information and management,2 -information and communications technology law,2 -information and computation,2 -information and organization,3 -information and software technology,3 -information bulletin on variable stars,1 -information communication and society,2 -information design journal,1 -information development,1 -information economics and policy,1 -information fusion,3 -information grammaticale,2 -information polity,1 -information processing and management,3 -international conference on information processing in sensor networks,2 -information processing letters,1 -information research,2 -information resources management journal,1 -information sciences,3 -information sciences for decision making,1 -journal of information security and applications,1 -information services and use,1 -information society,2 -information systems,2 -information systems and e-business management,1 -information systems frontiers,2 -information systems journal,3 -information systems management,1 -information systems research,3 -information technologies and international development,1 -information technology and management,2 -information technology and people,2 -information technology and control,1 -information technology and disabilities,1 -information technology and libraries,1 -information technology for development,1 -"information technology, education and society",1 -information theory and applications,1 -information today,1 -information visualization,1 -"information, knowledge, systems management",1 -informationen deutsch als fremdsprache,1 -informationen zur raumentwicklung,1 -informationes theologiae europae: internationales okumenisches jahrbuch fur theologie,1 -informes de la construccion,1 -informs journal on computing,1 -informs transactions on education,1 -infrared physics and technology,1 -ingenieria hidraulica en mexico,1 -ingenieria quimica,1 -ingineria illuminatului,1 -inhalation toxicology,1 -injury prevention,1 -injury: international journal of the care of the injured,1 -inklings: jahrbuch fur literatur and asthetik,1 -inland water biology,1 -inland waters,1 -innate immunity,1 -inner asia,1 -innes review,1 -innovar: revista de ciencias administrativas y sociales,1 -innovation in language learning and teaching,1 -innovation journal,1 -innovation policy and the economy,1 -innovation : organization & management,2 -innovations in education and teaching international,1 -innovation: the european journal of social science research,1 -innovative food science and emerging technologies,1 -innovative higher education,1 -innsbrucker beitrage zur sprachwissenschaft,1 -inorganic chemistry,2 -inorganic chemistry communications,1 -inorganic materials,0 -inorganic reaction mechanisms,1 -inorganic syntheses,1 -inorganica chimica acta,1 -inostrannye jazyki v škole,1 -inquiry: an interdisciplinary journal of philosophy,2 -inquiry: the journal of health care organization provision and financing,1 -insect biochemistry and molecular biology,1 -insect conservation and diversity,1 -insect molecular biology,1 -insect science,1 -insect systematics and evolution,1 -insectes sociaux,1 -inside gnss,1 -inside the internet,1 -insight,1 -insight: journal of the american society of ophthalmic registered nurses,1 -institut de papyrologie et degyptologie de lille: cahiers de recherche,1 -institute of physics conference series,1 -instructional course lectures,1 -instructional science,3 -instrumentation science and technology,1 -instruments and experimental techniques,1 -insula: revista de letras y ciencias humanas,1 -insurance mathematics and economics,1 -integral,1 -integral equations and operator theory,1 -integral review,1 -integral transforms and special functions,1 -integrated assessment,1 -integrated computer-aided engineering,1 -integrated environmental assessment and management,1 -integrated ferroelectrics,1 -integration: the vlsi journal,1 -integrative and comparative biology,1 -integrative biology,1 -integrative cancer therapies,1 -integrative medicine,1 -integrative psychological and behavioral science,1 -integrative zoology,1 -inteligencia artificial,0 -intellectual and developmental disabilities,1 -intellectual history review,2 -intellectual property law library,1 -intelligence,3 -intelligence and national security,1 -intelligent automation and soft computing,1 -intelligent data analysis,1 -intensities: the journal of cult media,1 -intensive and critical care nursing,1 -intensive care medicine,3 -intereconomics: review of european economic policy,1 -interaccões,1 -interacting with computers,2 -interaction between compilers and computer architectures,1 -interaction studies,1 -interactions,1 -interactions: studies in communication and culture,1 -interactive learning environments,1 -inter-asia cultural studies,1 -interchange,1 -interciencia,1 -intercom,1 -intercultural communication studies,1 -intercultural education,1 -intercultural pragmatics,3 -interculturality and translation,1 -interdisciplinary journal for germanic linguistics and semiotic analysis,1 -"interdisciplinary journal of information, knowledge, and management",0 -interdisciplinary science reviews,1 -interdisciplinary studies in literature and environment,2 -interfaces,1 -interfaces,1 -interfaces and free boundaries,1 -"interiors: design, architecture, culture",1 -interjournal,1 -interlending and document supply,1 -interlitteraria,1 -intermedialites,1 -intermetallics,1 -internal and emergency medicine,1 -internal medicine,1 -internal medicine journal,1 -internasjonal politikk,1 -international advances in economic research,1 -international affairs,3 -international agrophysics,1 -international and comparative corporate law journal,2 -international and comparative criminal law series,1 -international and comparative law quarterly,3 -international anesthesiology clinics,1 -international angiology,1 -international arab journal of information technology,1 -international archives of allergy and immunology,1 -international archives of occupational and environmental health,1 -international biodeterioration and biodegradation,1 -international braz j urol: official journal of the brazilian society of urology,1 -apt bulletin: the journal of preservation technology,1 -international business review,2 -international clil research journal,1 -international clinical psychopharmacology,1 -international coaching psychology review,1 -"international colloquium on automata, languages and programming",2 -international communication gazette,1 -international communications in heat and mass transfer,1 -international community law review,1 -international comparative social studies,1 -international conference on affective computing and intelligent interaction and workshops,1 -"ieee international conference on application-specific systems, architectures, and processors",1 -international conference on artificial intelligence and statistics,2 -international conference on autonomous agents and multiagent systems,2 -international conference on biometrics,1 -proceedings of coling,1 -ieee international conference on computational photography,1 -international conference on computer graphics theory and applications,1 -ieee international conference on computer vision,3 -proceedings : ifcis international conference on cooperative information systems,1 -international conference on data engineering,2 -proceedings : international workshop on database and expert systems applications,1 -international conference on distributed computing systems,2 -proceedings of the international conference on document analysis and recognition,1 -ieee international conference on global software engineering workshops,1 -international conference on information systems,2 -international conference on information systems development,1 -proceedings : international conference on information visualisation,1 -international conference on intelligent systems design and applications,1 -international conference on intelligent user interfaces,2 -international conference on machine learning,3 -international conference on machine vision,1 -"international conference on mobile and ubiquitous systems : computing, networking and services",1 -international conference on network protocols,2 -proceeding of inss,1 -international conference on pattern recognition,1 -international conference on principles and practice of constraint programming,2 -international conference on quality software,1 -international conference on the synthesis and simulation of living systems,1 -annual international conference on the theory and applications of cryptographic techniques,3 -international conference on thermoelectrics,1 -proceedings of the international conference on web information systems engineering,1 -international conference on very large data bases,2 -international construction law review,1 -international criminal law review,1 -international dairy journal,1 -proceedings : international database engineering and applications symposium,1 -international dental journal,1 -international development planning review,1 -international economic journal,1 -international economic review,3 -international economics and economic policy,1 -international education journal,1 -international ejournal of engineering mathematics: theory and application,1 -international electronic journal for leadership in learning,1 -international electronic journal of algebra,1 -international electronic journal of mathematics education,1 -international emergency nursing,1 -international endodontic journal,3 -international entrepreneurship and management journal,1 -international environmental agreements: politics law and economics,1 -ifmbe proceedings,1 -international feminist journal of politics,2 -international fiction review,1 -international finance,1 -international ford madox ford studies,1 -international forestry review,1 -international forum of psychoanalysis,1 -international gambling studies,1 -international game theory review,1 -international geology review,1 -international heart journal,1 -international heat treatment and surface engineering,1 -international history review,3 -international humanitarian law series,1 -international hydrographic review,1 -international immunology,1 -international immunopharmacology,1 -international information and library review,1 -international insurance law review,1 -international interactions,1 -international joint conference on artificial intelligence,3 -proceedings of international joint conference on neural networks,1 -international journal,1 -international journal for academic development,1 -international journal for dialogical science,1 -international journal for educational and vocational guidance,1 -international journal for educational integrity,1 -international journal for equity in health,1 -international journal for ion mobility spectrometry,1 -international journal for mathematics teaching and learning,1 -international journal for multiscale computational engineering,1 -international journal for numerical and analytical methods in geomechanics,2 -international journal for numerical methods in biomedical engineering,1 -international journal for numerical methods in engineering,2 -international journal for numerical methods in fluids,1 -international journal for parasitology,1 -international journal for philosophy of religion,2 -international journal for quality in health care,1 -international journal for the advancement of counselling,1 -international journal for the psychology of religion,3 -international journal for the scholarship of teaching and learning,1 -international journal for the semiotics of law,1 -international journal for the study of the christian church,1 -international journal for vitamin and nutrition research,1 -international journal of acarology,1 -international journal of accounting,1 -international journal of accounting and information management,1 -international journal of accounting information systems,1 -international journal of action research,1 -international journal of ad hoc and ubiquitous computing,1 -international journal of adaptive control and signal processing,1 -international journal of adhesion and adhesives,1 -international journal of adolescence and youth,1 -international journal of advanced corporate learning,1 -international journal of advanced manufacturing technology,1 -international journal of advertising,1 -international journal of aeroacoustics,1 -international journal of african historical studies,2 -international journal of ageing and later life,1 -international journal of agent-oriented software engineering,1 -international journal of aging and human development,1 -international journal of agricultural and statistical sciences,1 -"international journal of agricultural resources, governance and ecology",1 -international journal of agricultural sustainability,1 -international journal of agriculture and biology,0 -international journal of algebra,0 -international journal of algebra and computation,1 -international journal of alternative propulsion,1 -international journal of american linguistics,2 -international journal of antennas and propagation,1 -international journal of antimicrobial agents,1 -international journal of applied ceramic technology,1 -international journal of applied earth observation and geoinformation,2 -international journal of applied electromagnetics and mechanics,1 -international journal of applied linguistics,2 -international journal of applied mathematics,0 -international journal of applied mathematics and computer science,1 -international journal of applied mathematics and mechanics,1 -international journal of applied mechanics and engineering,1 -international journal of applied philosophy,1 -international journal of applied psychoanalytic studies,1 -international journal of applied research in veterinary medicine,1 -international journal of applied sports sciences,1 -international journal of thermodynamics,1 -international journal of approximate reasoning,2 -international journal of aquatic research and education,1 -international journal of arabic-english studies,1 -international journal of architectural heritage,2 -international journal of aromatherapy,1 -international journal of art and design education,2 -international journal of artificial intelligence in education,1 -international journal of artificial organs,1 -international journal of arts and technology,1 -international journal of arts management,2 -international journal of astrobiology,1 -international journal of audiology,1 -international journal of automotive technology,1 -international journal of bank marketing,1 -international journal of behavioral development,2 -international journal of behavioral medicine,1 -international journal of behavioral nutrition and physical activity,3 -international journal of bifurcation and chaos,1 -international journal of bilingual education and bilingualism,2 -international journal of bilingualism,3 -international journal of biochemistry and cell biology,1 -"international journal of biodiversity science, ecosystems services and management",1 -international journal of bioelectromagnetism,1 -international journal of bioinformatics research and applications,1 -international journal of biological macromolecules,1 -international journal of biological markers,1 -international journal of biological sciences,1 -international journal of biomaterials,1 -international journal of biomathematics,1 -international journal of biomedical engineering and technology,1 -international journal of biomedical sciences,0 -international journal of biometeorology,1 -international journal of biostatistics,1 -international journal of border security and immigration policy,1 -international journal of buddhist thought and culture,1 -international journal of business and economics,1 -international journal of business and globalisation,1 -international journal of business and systems research,1 -international journal of business data communications and networking,1 -international journal of business governance and ethics,1 -international journal of business information systems,1 -international journal of business innovation and research,1 -international journal of business performance management,1 -international journal of business process integration and management,1 -international journal of business science and applied management,1 -international journal of cancer,2 -international journal of cardiology,1 -international journal of cardiovascular imaging,1 -international journal of cast metals research,1 -international journal of chemical kinetics,1 -international journal of chemical reactor engineering,1 -international journal of child and family welfare,1 -international journal of childrens rights,2 -international journal of children's spirituality,1 -international journal of circuit theory and applications,1 -international journal of circumpolar health,1 -international journal of climatology,1 -international journal of clinical and experimental hypnosis,1 -international journal of clinical and health psychology,1 -international journal of clinical oncology,1 -international journal of clinical pharmacology and therapeutics,1 -international journal of clinical practice,1 -international journal of clothing science and technology,1 -international journal of coal geology,2 -international journal of coal preparation and utilization,1 -international journal of cognitive informatics and natural intelligence,1 -international journal of cognitive linguistics,1 -international journal of cognitive therapy,1 -international journal of colorectal disease,1 -international journal of comic art,1 -international journal of communication,2 -international journal of communication systems,1 -international journal of communications law and policy,1 -international journal of community music,1 -international journal of comparative psychology,1 -international journal of comparative sociology,1 -international journal of computational cognition,1 -international journal of computational fluid dynamics,1 -international journal of computational geometry and applications,1 -international journal of computational intelligence,0 -international journal of computational intelligence and applications,1 -international journal of computational intelligence systems,1 -international journal of computational materials science and surface engineering,1 -international journal of computational methods,1 -international journal for computational methods in engineering science and mechanics,1 -international journal of computer applications in technology,1 -international journal of computer integrated manufacturing,2 -international journal of computer mathematics,1 -international journal of computer processing of oriental languages,1 -international journal of computer science and applications,1 -international journal of computer science and network security,0 -international journal of computer systems science and engineering,0 -international journal of computer vision,3 -international journal of computer-integrated design and construction,1 -international journal of computers and their applications,1 -international journal of computers communications and control,1 -international journal of computer-supported collaborative learning,3 -international journal of conflict and violence,1 -international journal of conflict management,1 -international journal of consumer studies,1 -international journal of contemporary hospitality management,1 -international journal of contemporary mathematical sciences,0 -international journal of contemporary sociology,1 -international journal of continuing engineering education and life-long learning,1 -international journal of control,1 -international journal of control automation and systems,1 -international journal of cooperative information systems,1 -international journal of corporate governance,1 -international journal of corpus linguistics,3 -international journal of cosmetic science,1 -international journal of crashworthiness,1 -international journal of cross cultural management,1 -international journal of cultural property,2 -international journal of cultural studies,3 -international journal of dairy technology,1 -international journal of damage mechanics,1 -international journal of data mining and bioinformatics,1 -international journal of data warehousing and mining,1 -international journal of dental hygiene,1 -international journal of dermatology,1 -international journal of design,3 -international journal of developmental biology,1 -international journal of developmental neuroscience,1 -international journal of diabetes in developing countries,1 -international journal of differential equations,0 -international journal of digital curation,1 -international journal of digital earth,1 -international journal of disability development and education,1 -international journal of disability management research,1 -international journal of distance education technologies,1 -international journal of distributed sensor networks,1 -"international journal of diversity in organisations, communities and nations",1 -international journal of doctoral studies,1 -international journal of drug policy,2 -international journal of dynamical systems and differential equations,1 -international journal of early childhood,1 -international journal of early years education,1 -international journal of earth sciences,1 -international journal of eating disorders,2 -international journal of e-business research,1 -international journal of e-collaboration,1 -international journal of ecology and development,1 -international journal of economic theory,1 -international journal of education and the arts,1 -international journal of education and development using information and communication technology,1 -international journal of education through art,3 -international journal of educational development,2 -international journal of educational management,1 -international journal of educational research,2 -international journal of electrical engineering education,1 -international journal of electrical power and energy systems,2 -international journal of electrochemical science,1 -international journal of electronic business,1 -international journal of electronic business management,1 -international journal of electronic commerce,2 -international journal of electronic government research,1 -international journal of electronic security and digital forensics,1 -international journal of electronics,1 -international journal of embedded systems,1 -international journal of emergency management,1 -international journal of emergency mental health,1 -international journal of emerging technologies and society,1 -international journal of energy research,1 -international journal of energy sector management,1 -international journal of engine research,1 -international journal of engineering education,1 -international journal of engineering science,2 -international journal of english studies,1 -international journal of enterprise information systems,1 -international journal of entrepreneurial behaviour and research,1 -international journal of entrepreneurship and innovation,1 -international journal of entrepreneurship and innovation management,1 -international journal of entrepreneurship and small business,1 -international review of entrepreneurship,1 -international journal of environment and pollution,1 -international journal of environmental analytical chemistry,1 -international journal of environmental health research,1 -international journal of environmental research,1 -international journal of environmental research and public health,0 -international journal of environmental science and technology,1 -international journal of environmental studies,1 -international journal of environmental technology and management,1 -international journal of epidemiology,3 -international journal of e-services and mobile applications,1 -international journal of evidence and proof,1 -international journal of evidence based coaching and mentoring,1 -international journal of evolution equations,1 -international journal of exergy,1 -international journal of experimental pathology,1 -international journal of fatigue,2 -international journal of fertility and sterility,1 -international journal of fertility and womens medicine,1 -international journal of finance and economics,1 -international journal of fluid mechanics research,1 -international journal of fluid power,1 -international journal of food engineering,1 -international journal of food microbiology,3 -international journal of food properties,1 -international journal of food science and technology,1 -international journal of food sciences and nutrition,1 -international journal of forecasting,2 -international journal of forensic mental health,1 -international journal of foresight and innovation policy,1 -international journal of forest engineering,1 -international journal of foundations of computer science,1 -international journal of fracture,1 -international journal of francophone studies,1 -international journal of fruit science,1 -international journal of fuzzy systems,1 -international journal of game theory,1 -international journal of general systems,1 -international journal of geographical information science,2 -international journal of geomechanics,1 -international journal of geometric methods in modern physics,1 -international journal of geophysics,1 -international journal of geriatric psychiatry,1 -international journal of gerontology,1 -international journal of global energy issues,1 -international journal of global environmental issues,1 -international journal of globalisation and small business,1 -international journal of green economics,1 -international journal of green energy,1 -international journal of greenhouse gas control,2 -international journal of group psychotherapy,1 -international journal of gynecological cancer,1 -international journal of gynecological pathology,1 -international journal of gynecology and obstetrics,1 -international journal of health care finance and economics,1 -international journal of health care quality assurance,1 -international journal of health geographics,1 -international journal of health planning and management,1 -international journal of healthcare information systems and informatics,1 -international journal of healthcare technology and management,1 -international journal of heat and fluid flow,1 -international journal of heat and mass transfer,2 -international journal of heavy vehicle systems,1 -international journal of hematology,1 -international journal of heritage studies,3 -international journal of high performance computing and networking,1 -international journal of high performance computing applications,2 -international journal of high speed computing,1 -international journal of high speed electronics and systems,1 -international journal of hindu studies,2 -international journal of historical archaeology,2 -international journal of hospitality and tourism administration,1 -international journal of hospitality management,2 -international journal of human genetics,0 -international journal of human resource management,2 -international journal of human resources development and management,1 -international journal of human-computer interaction,2 -international journal of human-computer studies,3 -international journal of humanoid robotics,1 -international journal of hybrid intelligent systems,1 -international journal of hydrogen energy,1 -international journal of hygiene and environmental health,2 -international journal of hyperthermia,1 -international journal of iberian studies,1 -international journal of image and graphics,1 -international journal of imaging systems and technology,1 -international journal of immunogenetics,1 -international journal of immunopathology and pharmacology,1 -international journal of impact engineering,2 -international journal of impotence research,1 -international journal of inclusive democracy,1 -international journal of inclusive education,2 -international journal of industrial ergonomics,1 -international journal of industrial organization,2 -international journal of infectious diseases,1 -international journal of information and computer security,1 -international journal of information management,3 -international journal of information policy and law,1 -international journal of information security,1 -international journal of information systems and change management,1 -international journal of information technology,0 -international journal of information technology and decision making,1 -international journal of information technology and management,1 -international journal of injury control and safety promotion,1 -international journal of innovation and learning,1 -international journal of innovation and regional development,1 -international journal of innovation and sustainable development,1 -international journal of innovation and technology management,1 -international journal of innovation management,1 -international journal of innovative computing information and control,1 -international journal of instructional media,1 -international journal of intangible heritage,1 -international journal of integrated care,2 -international journal of integrated supply management,1 -international journal of intelligence and counterintelligence,1 -international journal of intelligent computing and cybernetics,1 -international journal of intelligent information and database systems,1 -international journal of intelligent information technologies,1 -international journal of intelligent systems,1 -international journal of intelligent systems technologies and applications,1 -international journal of interactive mobile technologies,1 -international journal of intercultural relations,2 -international journal of internet and enterprise management,1 -international journal of internet marketing and advertising,1 -international journal of internet science,1 -international journal of interoperability in business information systems,1 -international journal of japanese sociology,1 -international journal of knowledge and learning,1 -international journal of knowledge based and intelligent engineering systems,1 -international journal of knowledge management,1 -international journal of knowledge management studies,1 -"international journal of knowledge, culture and change management",1 -international journal of laboratory hematology,1 -international journal of language and communication disorders,3 -international journal of law and information technology,2 -international journal of law and psychiatry,1 -international journal of law crime and justice,1 -"international journal of law, policy and the family",2 -international journal of leadership in education,1 -international journal of leadership studies,1 -international journal of learning,1 -international journal of learning and change,1 -international journal of learning and intellectual capital,1 -international journal of learning and media,1 -international journal of learning technology,1 -international journal of legal information,1 -international journal of legal medicine,2 -international journal of leprosy and other mycobacterial diseases,1 -international journal of lexicography,2 -international journal of liability and scientific enquiry,1 -international journal of life cycle assessment,2 -international journal of lifelong education,1 -international journal of listening,1 -international journal of logistics management,1 -international journal of logistics: research and applications,1 -international journal of low radiation,1 -international journal of lower extremity wounds,1 -international journal of machine tools and manufacture,3 -international journal of machining and machinability of materials,1 -international journal of management and decision making,1 -international journal of management and enterprise development,1 -international journal of management in education,1 -international journal of management practice,1 -international journal of management reviews,2 -international journal of manpower,1 -international journal of manufacturing technology and management,1 -international journal of marine and coastal law,1 -international journal of maritime engineering,1 -international journal of maritime history,2 -international journal of market research,1 -international journal of mass emergencies and disasters,1 -international journal of mass spectrometry,1 -international journal of material forming,1 -international journal of materials and product technology,1 -international journal of materials and structural reliability,1 -international journal of materials and structural integrity,1 -international journal of materials engineering innovation,1 -international journal of materials research,1 -international journal of mathematical analysis,0 -international journal of mathematical education in science and technology,1 -"international journal of mathematical modeling, simulation and applications",1 -international journal of mathematics,1 -international journal of mathematics and computer science,1 -international journal of mathematics and mathematical sciences,0 -"international journal of mathematics, game theory and algebra",1 -international journal of mechanical and materials engineering,1 -international journal of mechanical engineering education,1 -international journal of mechanical sciences,1 -international journal of mechanics and materials in design,1 -international journal of media and cultural politics,1 -international journal of medical informatics,3 -international journal of medical microbiology,1 -international journal of medical robotics and computer assisted surgery,1 -international journal of medical sciences,1 -international journal of medicinal mushrooms,1 -international journal of mens health,1 -international journal of mental health,1 -international journal of mental health and addiction,1 -international journal of mental health nursing,2 -journal of public mental health,1 -"international journal of metadata, semantics and ontologies",1 -international journal of metaheuristics,1 -international journal of methods in psychiatric research,1 -international journal of microstructure and materials properties,1 -international journal of middle east studies,2 -"international journal of migration, health and social care",1 -international journal of mineral processing,1 -international journal of minerals metallurgy and materials,1 -international journal of mining and mineral engineering,1 -"international journal of mining, reclamation and environment",1 -international journal of mobile communications,1 -international journal of mobile human computer interaction,1 -international journal of mobile learning and organisation,1 -international journal of modern physics a,1 -international journal of modern physics b,1 -international journal of modern physics c,1 -international journal of modern physics d,1 -international journal of modern physics e: nuclear physics,1 -international journal of molecular medicine,1 -international journal of molecular sciences,1 -international journal of morphology,1 -international journal of multilingualism,2 -international journal of multiphase flow,2 -international journal of music education,2 -international journal of nano and biomaterials,1 -international journal of nanomanufacturing,1 -international journal of nanomedicine,1 -international journal of nanoparticles,1 -international journal of nanoscience,1 -international journal of nanotechnology,1 -international journal of nautical archaeology,2 -international journal of nematology,1 -international journal of network management,1 -international journal of networking and virtual organisations,1 -international journal of neural systems,1 -international journal of neuropsychopharmacology,1 -international journal of neuroscience,1 -international journal of non-linear mechanics,1 -international journal of nonlinear sciences and numerical simulation,1 -international journal of nuclear knowledge management,1 -international journal of number theory,1 -international journal of numerical analysis and modeling,1 -international journal of numerical methods for heat and fluid flow,1 -international journal of numerical modelling: electronic networks devices and fields,1 -international journal of nursing education scholarship,1 -international journal of nursing practice,1 -international journal of nursing studies,3 -international journal of obesity,3 -international journal of obstetric anesthesia,1 -international journal of occupational and environmental health,1 -international journal of occupational safety and ergonomics,1 -international journal of odonatology,1 -international journal of offender therapy and comparative criminology,1 -international journal of offshore and polar engineering,1 -"international journal of oil, gas and coal technology",1 -international journal of older people nursing,1 -international journal of oncology,1 -international journal of operational research,1 -international journal of operations and production management,3 -international journal of oral and maxillofacial implants,1 -international journal of oral and maxillofacial surgery,1 -international journal of organisational behaviour,1 -international journal of organisational design and engineering,1 -international journal of organization theory and behavior,1 -international journal of osteoarchaeology,2 -international journal of paediatric dentistry,2 -international journal of paleopathology,1 -international journal of palliative nursing,1 -international journal of computers and applications,1 -international journal of parallel programming,2 -international journal of pattern recognition and artificial intelligence,1 -international journal of pavement engineering,1 -international journal of peace studies,1 -international journal of pedagogies and learning,1 -international journal of pediatric otorhinolaryngology,1 -international journal of peptide research and therapeutics,1 -international journal of performability engineering,1 -international journal of performance analysis in sport,1 -international journal of performance arts and digital media,1 -international journal of periodontics and restorative dentistry,1 -international journal of pervasive computing and communications,1 -international journal of pest management,1 -international journal of pharmaceutics,2 -international journal of pharmacology,0 -international journal of pharmacy practice,1 -international journal of philosophical studies,2 -international journal of photoenergy,1 -international journal of physical distribution and logistics management,2 -international journal of physical education: a review publication,1 -international journal of phytoremediation,1 -international journal of plant production,1 -international journal of plant sciences,1 -international journal of plasticity,3 -international journal of political economy: a journal of translations,1 -"international journal of politics, culture and society",1 -international journal of polymer analysis and characterization,1 -international journal of polymeric materials,1 -international journal of population geography,1 -international journal of powder metallurgy,1 -international journal of practical theology,2 -international journal of press-politics,3 -international journal of pressure vessels and piping,1 -international journal of primatology,1 -international journal of prisoner health,1 -international journal of private law,1 -international journal of procurement management,1 -international journal of product development,1 -international journal of product lifecycle management,1 -international journal of production economics,2 -international journal of production research,2 -international journal of productivity and performance management,1 -international journal of project management,3 -international journal of project organisation and management,1 -international journal of prosthodontics,1 -international journal of psychiatry in clinical practice,1 -international journal of psychiatry in medicine,1 -international journal of psychoanalysis,1 -international journal of psychology,1 -international journal of psychophysiology,1 -international journal of public administration,1 -international journal of public and private health care management and economics,1 -international journal of public health,1 -international journal of public opinion research,2 -international journal of public sector management,2 -international journal of public sector performance management,1 -international journal of public theology,1 -international journal of pure and applied mathematical sciences,1 -international journal of pure and applied mathematics,0 -international journal of qualitative methods,1 -international journal of qualitative studies in education,1 -international journal of qualitative studies on health and well-being,1 -international journal of quality and reliability management,1 -international journal of quantum chemistry,1 -international journal of quantum information,1 -international journal of radiation biology,1 -international journal of radiation oncology biology physics,2 -international journal of rapid solidification,1 -international journal of reality therapy,1 -international journal of refractory metals and hard materials,1 -international journal of refrigeration-revue internationale du froid,1 -international journal of refugee law,3 -international journal of rehabilitation research,1 -"international journal of reliability, quality and safety engineering",1 -international journal of remote sensing,1 -international journal of research in marketing,3 -international journal of retail and distribution management,1 -international journal of rf and microwave computer-aided engineering,1 -international journal of rheumatic diseases,1 -international journal of risk and safety in medicine,1 -international journal of risk assessment and management,1 -international journal of river basin management,1 -international journal of robotics and automation,1 -international journal of robotics research,3 -international journal of robust and nonlinear control,2 -international journal of rock mechanics and mining sciences,3 -international journal of rotating machinery,1 -international journal of rural management,1 -international journal of satellite communications and networking,1 -international journal of science and mathematics education,1 -international journal of science education,3 -international review of scottish studies,1 -international journal of security and networks,1 -international journal of sediment research,1 -international journal of selection and assessment,1 -international journal of self help and self care,1 -international journal of sensor networks,1 -international journal of services and standards,1 -international journal of services operations and informatics,1 -"international journal of services, technology and management",1 -international journal of sexual health,1 -international journal of shape modeling,1 -international journal of shipping and transport logistics,1 -international journal of intensive short-term dynamic psychotherapy,1 -international journal of simulation and process modelling,1 -international journal of six sigma and competitive advantage,1 -international journal of smart home,0 -international journal of social economics,1 -international journal of social psychiatry,2 -international journal of social research methodology,1 -international journal of social sciences,0 -international journal of social welfare,2 -international journal of sociology,1 -international journal of sociology and social policy,1 -international journal of sociology of agriculture and food,1 -international journal of software engineering and knowledge engineering,1 -international journal of solids and structures,2 -international journal of space structures,1 -international journal of spatial data infrastructures research,1 -international journal of special education,1 -international journal of speech language and the law,1 -international journal of speech technology,1 -international journal of speech-language pathology,1 -international journal of speleology,1 -international journal of sport and exercise psychology,1 -international journal of sport communication,1 -international journal of sport finance,1 -international journal of sport management,1 -international journal of sport management and marketing,1 -international journal of sport nutrition and exercise metabolism,1 -international journal of sport psychology,1 -international journal of sports marketing and sponsorship,1 -international journal of sports medicine,1 -international journal of sports physiology and performance,1 -international journal of sports science and coaching,1 -international journal of statistical sciences,1 -international journal of mathematics and statistics,0 -international journal of statistics and management systems,0 -international journal of std and aids,1 -international journal of stochastic analysis,0 -international journal of strategic communication,1 -international journal of strategic property management,1 -international journal of stress management,1 -international journal of stroke,1 -international journal of structural stability and dynamics,1 -international journal of sustainable development and planning,0 -international journal of surface science and engineering,1 -international journal of surgical pathology,1 -international journal of sustainability in higher education,1 -international journal of sustainable agricultural technology,1 -international journal of sustainable development,1 -international journal of sustainable development and world ecology,1 -international journal of sustainable energy,1 -international journal of sustainable engineering,1 -international journal of sustainable transportation,1 -international journal of systematic and evolutionary microbiology,1 -international journal of systematic theology,3 -international journal of systems science,1 -international journal of teaching and learning in higher education,1 -international journal of technoentrepreneurship,1 -international journal of technology and design education,2 -international journal of technology and globalisation,1 -international journal of technology and human interaction,1 -international journal of technology assessment in health care,1 -international journal of technology management,1 -international journal of technology transfer and commercialisation,1 -"international journal of technology, knowledge and society",1 -"international journal of technology, policy and management",1 -international journal of telemedicine and applications,1 -international journal of testing,1 -international journal of the book,1 -international journal of the classical tradition,2 -international journal of the economics of business,1 -international journal of the humanities,1 -international journal of the legal profession,1 -international journal of the society of materials engineering for resources,1 -international journal of the sociology of language,3 -international journal of theoretical and applied finance,1 -international journal of theoretical physics,1 -"international journal of theoretical physics, group theory and nonlinear optics",1 -international journal of thermal sciences,1 -international journal of thermophysics,1 -international journal of tourism research,1 -international journal of toxicology,1 -international journal of training and development,1 -international journal of transitional justice,1 -international journal of transport economics,1 -international journal of transport phenomena,1 -international journal of tropical insect science,1 -international journal of tuberculosis and lung disease,1 -international journal of turbo and jet-engines,1 -international journal of uncertainty fuzziness and knowledge-based systems,1 -international journal of unconventional computing,1 -international journal of urban and regional research,3 -international journal of urological nursing,1 -international journal of urology,1 -international journal of water resources development,1 -international journal of wavelets multiresolution and information processing,1 -international journal of web and grid services,1 -international journal of web based communities,1 -international journal of web information systems,1 -international journal of web services practices,1 -international journal of web services research,1 -international journal of web-based learning and teaching technologies,1 -international journal of vehicle design,1 -international journal of ventilation,1 -international journal of wilderness,1 -international journal of wildland fire,1 -international journal of vocational education and training,1 -international journal of work organisation and emotion,1 -international journal of workplace health management,1 -international journal of zizek studies,1 -international journal on artificial intelligence tools,1 -international journal on digital libraries,1 -international journal on document analysis and recognition,1 -international journal on minority and group rights,2 -international journal on hydropower and dams,1 -international journal on semantic web and information systems,1 -international journal on software tools for technology transfer,1 -international journal of emerging technologies in learning,0 -international labor and working-class history,2 -international labour review,1 -international litigation in practice,1 -international maritime health,1 -international marketing review,2 -international materials reviews,2 -international mathematical forum,0 -international mathematics research notices,2 -international medical journal,1 -international microbiology,1 -international migration,1 -international migration review,2 -international multilingualism research journal,1 -international negotiation,1 -international negotiation series,1 -international nursing review,2 -international ophthalmology,1 -international ophthalmology clinics,1 -international organization,3 -international orthopaedics,1 -international peacekeeping,1 -international perspectives on sexual and reproductive health,1 -international philosophical quarterly,1 -international planning studies,1 -international political science review,2 -international political sociology,2 -international politics,1 -international polymer processing,1 -international psychogeriatrics,1 -international public management journal,2 -international quarterly of community health education,1 -international regional science review,1 -international relations,1 -international relations of the asia-pacific,1 -international research in childrens literature,1 -international research in geographical and environmental education,1 -international review for the sociology of sport,1 -international review of administrative sciences,2 -international review of african american art,1 -international review of applied economics,1 -international review of cell and molecular biology,1 -international review of economics,1 -international review of economics and finance,1 -international review of education,1 -international review of electrical engineering: iree,1 -international review of environmental and resource economics,1 -international review of finance,1 -international review of financial analysis,1 -international review of hydrobiology,1 -international review of law and economics,3 -"international review of law, computers and technology",1 -international review of mission,1 -international review of neurobiology,1 -international review of psychiatry,1 -international review of qualitative research,1 -international review of research in developmental disabilities,1 -international review of research in open and distance learning,1 -"international review of retail, distribution and consumer research",1 -international review of social history,3 -international review of sociology,1 -international review of the aesthetics and sociology of music,1 -international review of victimology,1 -international reviews in physical chemistry,1 -international reviews of immunology,1 -international scientific journal of computing,1 -international security,3 -international semantic web conference,2 -international seminars in pediatric gastroenterology and nutrition,1 -international series in software engineering,1 -international shipbuilding progress,1 -international small business journal,2 -international social science journal,1 -international social security review,1 -international social work,2 -international sociology,2 -international sportmed journal,1 -international statistical review,1 -international studies,1 -international studies in educational administration,1 -international studies in human rights,1 -international studies in philosophy,1 -international studies in sociology and social anthropology,1 -international studies in sociology of education,1 -international studies in the philosophy of science,2 -international studies of management and organization,1 -international studies perspectives,1 -international studies quarterly,3 -international studies review,1 -international sugar journal,1 -international surgery,1 -proceedings : ieee symposium on computers and communications,1 -international symposium on empirical software engineering and measurement,2 -international symposium on software testing and analysis,2 -proceedings of the international symposium on symbolic and algebraic computation,1 -proceedings : international workshop on temporal representation and reasoning,1 -symposium on theoretical aspects of computer science,2 -international tax and public finance,2 -international trade journal,1 -international transactions in operational research,1 -"forests, trees and livelihoods",1 -international urogynecology journal,1 -international urology and nephrology,1 -international wood products journal,1 -international workshop on evaluating information access,1 -ieee/ifip international symposium on rapid system prototyping,1 -international world wide web conference,3 -international wound journal,1 -international yearbook of nephrology,1 -internationale kirchliche zeitschrift,1 -internationale politik,1 -"journal of educational media, memory, and society",1 -internationale zeitschrift fur philosophie,1 -internationaler wissenschaftliche korrespondenz zur geschichte der deutschen arbeiterbewegung,1 -internationales archiv für sozialgeschichte der deutschen literatur,3 -internationales jahrbuch fur hermeneutik,1 -internationales steuerrecht,1 -internet and higher education,3 -internet archaeology,1 -internet journal of allied health sciences and practice,1 -"language, culture and society",1 -internet journal of vibrational spectroscopy,1 -international journal on e-learning,1 -internet mathematics,1 -internet research,2 -internist,1 -interpres: rivista di studi quattrocenteschi,1 -interpretation: a journal of bible and theology,1 -interpreter and translator trainer,2 -interpreters newsletter,1 -interpreting,2 -intersecciones en antropologia,1 -intersections,2 -intersections,1 -intersections: gender and sexuality in asia and the pacific,1 -intersezioni,1 -intertax: international tax review,2 -intervention in school and clinic,1 -interventional neuroradiology,1 -interventions: international journal of postcolonial studies,2 -intervirology,1 -inti,1 -intralinea,1 -inventiones mathematicae,3 -inverse problems,3 -inverse problems and imaging,2 -invertebrate biology,1 -invertebrate neuroscience,1 -invertebrate reproduction and development,1 -invertebrate systematics,1 -investigacion bibliotecologica,1 -investigacion de historia economica,2 -investigaciones historicas: epoca moderna y contemporanea,1 -investigational new drugs,1 -investigations in mathematics learning,1 -investigative ophthalmology and visual science,2 -investigative radiology,3 -investment analysts journal,1 -invisible culture,1 -ionics,1 -iowa law review,1 -ip rax: praxis de internationalen privat- und verfahrensrechts,1 -bulletin of the indo-pacific prehistory association,1 -ippologia,1 -iral: international review of applied linguistics in language teaching,1 -iran and the caucasus,1 -iran: journal of the british institute of persian studies,2 -iranian journal of chemistry and chemical engineering: international english edition,1 -iranian journal of environmental health science and engineering,1 -iranian journal of fisheries sciences,1 -iranian journal of fuzzy systems,1 -iranian journal of pediatrics,0 -iranian journal of public health,1 -iranian journal of reproductive medicine,1 -iranian journal of science and technology transaction a: science,1 -iranian journal of veterinary research,1 -iranian polymer journal,0 -iranian studies,1 -iranica antiqua,1 -iraq,1 -irbm,1 -irenikon,1 -iride: filosofia e discussione pubblica,1 -irish accounting review,1 -irish economic and social history,1 -irish feminist review,1 -irish geography,1 -irish historical studies,1 -irish journal of agricultural and food research,1 -irish journal of anthropology,1 -irish journal of medical science,1 -irish journal of psychology,1 -irish journal of sociology,1 -irish political studies,1 -irish slavonic studies,1 -irish studies review,1 -irish sword,1 -irish theological quarterly,1 -irish university review,1 -irish veterinary journal,1 -iron and steel technology,1 -ironmaking and steelmaking,1 -irrigation and drainage,1 -irrigation and drainage systems,1 -irrigation science,1 -isa transactions,2 -isi bilimi ve teknigi dergisi-journal of thermal science and technology,1 -isij international,1 -isis,3 -iskos,1 -islam and christian-muslim relations,2 -islam and the modern age,1 -islam in africa,1 -islamic history and civilization,2 -islamic law and society,2 -"islamic philosophy, theology and science",2 -islamic quarterly,1 -islam: zeitschrift fur geschichte und kultur des islamischen orients,3 -island arc,1 -islenskt mal og almenn malfraedi,1 -proceedings : international symposium on mixed and augmented reality,1 -isme journal,3 -isokinetics and exercise science,1 -isonomia,1 -isotopes in environmental and health studies,1 -isprs journal of photogrammetry and remote sensing,2 -israel affairs,1 -israel exploration journal,2 -israel journal of chemistry,1 -israel journal of earth sciences,1 -israel journal of ecology and evolution,1 -israel journal of mathematics,2 -israel journal of veterinary medicine,1 -israel medical association journal,1 -israeli journal of aquaculture-bamidgeh,1 -issues and studies,1 -issues in accounting education,1 -issues in comprehensive pediatric nursing,1 -issues in educational research,1 -issues in forensic psychology,1 -issues in information systems,1 -issues in mathematics education,1 -issues in mental health nursing,1 -issues in psychoanalytic psychology,1 -issues in science and technology,1 -issues in science and technology librarianship,1 -istor,1 -istoriko-astronomicheskie issledovaniya,1 -istoriko-matematicheskie issledovania,1 -istros,1 -it professional,1 -itaca,1 -italia dialettale,1 -italia medioevale e umanistica,1 -italian journal of agronomy,1 -italian journal of animal science,1 -italian journal of biochemistry,1 -italian journal of food science,1 -italian journal of public law,1 -italian journal of zoology,1 -italian poetry review,1 -italian studies,3 -italian yearbook of international law,1 -italianist,2 -italianistica,2 -italica,1 -italienisch: zeitschrift fur italienische sprache und literatur,1 -italienische studien,1 -italique: poesie italienne de la renaissance,1 -ite journal: institute of transportation engineers,1 -itea: informacion tecnica economica agraria,1 -itinerario: international journal on the history of european expansion and global interaction,1 -itl : international journal of applied linguistics,1 -iubmb life,1 -iyyun: the jerusalem philosophical quarterly,1 -izvestiâ saratovskogo universiteta. novaâ seriâ. seriâ sociologiâ. politologiâ,1 -izvestiya atmospheric and oceanic physics,1 -izvestiya mathematics,1 -izvestiya: physics of the solid earth,1 -j@rgonia,1 -jaarboek: thomas instituut,1 -jaarboek van de maatschappij der nederlandse letterkunde te leiden,1 -jaarboek van het genootschap amstelodanum,1 -jaarboek van het stijn streuvels genootschap,1 -jaarboek voor nederlandse boekgeschiedenis,1 -studies of the netherlands institute for war documentation,1 -jaarboek voor vrouwengeschiedenis,1 -jacc : cardiovascular imaging,3 -jacc : cardiovascular interventions,2 -jahrbuch der berliner museen,1 -jahrbuch der deutschen schillergesellschaft,1 -jahrbuch der historischen forschung in der bundesrepublik deutschland,1 -jahrbuch der osterreichischen byzantinistik,2 -jahrbuch archaeologie schweiz,1 -jahrbuch des deutschen archaeologischen instituts,2 -jahrbuch des freien deutschen hochstifts,1 -jahrbuch des instituts für deutsche sprache,1 -jahrbuch des kunsthistorischen museums wien,1 -jahrbuch des romisch-germanischen zentralmuseums mainz,0 -jahrbuch deutsch als fremdsprache,2 -jahrbuch extremismus und demokratie,1 -jahrbuch fur finnisch-deutsche literaturbeziehungen,1 -jahrbuch fur antike und christentum,1 -jahrbuch fur antisemitismusforschung,1 -jahrbuch fur die geschichte mittel- und ostdeutschlands,1 -jahrbuch fur europaische geschichte,1 -jahrbuch fur europaische uberseegeschichte,1 -jahrbuch fur europaische verwaltungsgeschichte,1 -jahrbuch fur geschichte lateinamerikas,1 -jahrbuch fur hegelforschung,1 -jahrbuch fur historische kommunismusforschung,1 -jahrbuch fur internationale germanistik,1 -jahrbuch fur internationale germanistik: reihe c forschungsberichte,1 -jahrbuch fur numismatik und geldgeschichte,0 -jahrbuch für regionalgeschichte,1 -jahrbuch fur religionsphilosophie,1 -jahrbuch fur universitatsgeschichte,1 -jahrbuch fur westdeutsche landesgeschichte,1 -jahrbuch fur wirtschaftsgeschichte,2 -jahrbuch für europäische ethnologie,1 -jahrbücher für geschichte osteuropas,3 -jahrbucher fur nationalokonomie und statistik,1 -jahreshefte des osterreichischen archaologischen institutes in wien,2 -jaids: journal of acquired immune deficiency syndromes,1 -jama : journal of the american medical association,3 -james joyce literary supplement,1 -james joyce quarterly,1 -janac: journal of the association of nurses in aids care,1 -janus head,1 -janus: sosiaalipolitiikan ja sosiaalityön tutkimuksen aikakauslehti,1 -japan and the world economy,1 -japan journal of industrial and applied mathematics,1 -japan journal of nursing science,1 -japanese economic review,1 -japanese journal of applied entomology and zoology,1 -japanese journal of applied physics,1 -japanese journal of clinical oncology,1 -japanese journal of crop science,1 -japanese journal of mathematics,1 -japanese journal of ophthalmology,1 -japanese journal of physical fitness and sports medicine,1 -japanese journal of political science,1 -japanese journal of radiology,1 -japanese journal of religious studies,2 -japanese journal of veterinary research,1 -japanese language and literature,1 -japanese religions,1 -jaro: journal of the association for research in otolaryngology,2 -jarq: japan agricultural research quarterly,1 -jasss: the journal of artificial societies and social simulation,1 -javma: journal of the american veterinary medical association,2 -javnost : the public,1 -jazyk i kultura,1 -jazyk i recevaja dejatelnost,1 -jazykovedny casopis,1 -jazzforschung,1 -jbis: journal of the british interplanetary society,1 -jbr-btr,1 -jcac: journal of the canadian association for conservation,1 -jcms: journal of common market studies,2 -jcp: biochemical physics,1 -jcpsp: journal of the college of physicians and surgeons pakistan,1 -jcr: journal of clinical rheumatology,1 -jct coatingstech,1 -jenda : a journal of culture and african women studies,1 -jerusalem studies in arabic and islam,1 -jerusalem studies in religion and culture,1 -jetp letters,1 -journal européen des urgences et de réanimation,1 -jewish and christian perspectives series,2 -jewish bible quarterly,1 -jewish culture and history,1 -jewish history,2 -jewish identities in a changing world,1 -jewish quarterly review,1 -jewish social studies,1 -jezik,1 -jezik in slovstvo,1 -jezikoslovlje,1 -jezikoslovni zapiski,1 -jezyk polski,1 -jitta: journal of information technology theory and application,1 -jk science,1 -jmm international journal on media management,1 -jnt: journal of narrative theory,1 -"journal of obstetric, gynecologic, and neonatal nursing",1 -john clare society journal,1 -joint bone spine,1 -joint commission journal on quality and patient safety,1 -jökull,1 -jom,1 -jornal brasileiro de pneumologia,1 -jornal de pediatria,1 -journ@l electronique dhistoire des probabilites et de la statistique,1 -journal american water works association,0 -journal asiatique,1 -journal d analyse mathematique,2 -journal de chirurgie viscerale,1 -journal de gynecologie obstetrique et biologie de la reproduction,1 -journal de la societe des americanistes,1 -journal de la societe des oceanistes,1 -journal de mathematiques pures et appliquees,3 -journal de pediatrie et de puericulture,1 -journal de radiologie diagnostique et interventionnelle,1 -journal de theorie des nombres de bordeaux,1 -journal de therapie comportementale et cognitive,1 -journal de traumatologie du sport,1 -journal der deutschen dermatologischen gesellschaft,1 -journal des africanistes,1 -journal des anthropologues,1 -journal des savants,1 -journal du droit international,1 -jar: journal for artistic research,2 -journal for crime conflict and media culture,1 -journal for critical education policy studies,1 -journal for cultural research,2 -journal for drama in education,1 -journal for dramatic theory and criticism,1 -journal for east european management studies,1 -journal for eighteenth-century studies,2 -journal for european environmental and planning law,1 -journal for general philosophy of science,1 -journal for healthcare quality,1 -journal for international business and entrepreneurship development,1 -journal for late antique religion and culture,1 -journal for nature conservation,1 -journal for research in mathematics education,3 -journal for specialists in group work,1 -journal for specialists in pediatric nursing,1 -journal for the anthropological study of human movement,0 -journal for the education of the gifted,1 -journal for the history of astronomy,1 -journal for the scientific study of religion,3 -journal for the study of british cultures,1 -journal for the study of judaism,3 -"journal for the study of religion, nature and culture",1 -journal for the study of religions and ideologies,1 -journal for the study of the new testament,3 -journal for the study of the old testament,3 -journal for the study of the pseudepigrapha,2 -journal for the theory of social behaviour,2 -journal francais d ophtalmologie,1 -journal fur die reine und angewandte mathematik,3 -journal für entwicklungspolitik,1 -journal fur mathematik-didaktik,1 -journal fur verbraucherschutz und lebensmittelsicherheit-journal of consumer protection and food safety,1 -journal international de bioethique,1 -journal international des sciences de la vigne et du vin,1 -journal of aapos,1 -journal of academic librarianship,1 -journal of access services,1 -journal of accountancy,1 -journal of accounting and economics,3 -journal of accounting and organisational change,1 -journal of accounting and public policy,2 -journal of accounting education,1 -journal of accounting literature,1 -journal of accounting research,3 -"journal of accounting, auditing and finance",1 -journal of active and passive electronic devices,1 -journal of actuarial practice,1 -journal of addiction medicine,1 -journal of addictions and offender counseling,1 -journal of addictions nursing,1 -journal of addictive diseases,1 -journal of adhesion,1 -journal of adhesion science and technology,1 -journal of adhesive dentistry,1 -journal of adolescence,1 -journal of adolescent and adult literacy,2 -journal of adolescent health,1 -journal of adolescent research,1 -journal of adult development,1 -journal of adult protection,1 -journal of advanced concrete technology,1 -journal of advanced manufacturing systems,1 -journal of advanced materials,1 -journal of advanced nursing,3 -journal of advanced oxidation technologies,1 -journal of advanced perioperative care,1 -journal of advanced transportation,1 -journal of advanced zoology,1 -journal of adventure education and outdoor learning,1 -journal of advertising,2 -journal of advertising research,1 -journal of aerosol medicine and pulmonary drug delivery,1 -journal of aerosol science,1 -journal of aerospace computing information and communication,1 -journal of aerospace engineering,1 -journal of aesthetic education,2 -journal of aesthetics and art criticism,3 -journal of affective disorders,1 -journal of african american studies,1 -journal of african archaeology,2 -journal of african business,1 -journal of african cultural studies,2 -journal of african earth sciences,1 -journal of african economies,1 -journal of african elections,1 -journal of african history,3 -journal of african languages and linguistics,3 -journal of african law,1 -journal of african media studies,1 -journal of african zoology,1 -"journal of aggression, maltreatment and trauma",1 -journal of aging and health,2 -journal of aging and physical activity,1 -journal of aging and social policy,1 -journal of aging studies,1 -journal of agrarian change,2 -journal of agricultural and applied economics,1 -journal of agricultural and environmental ethics,1 -journal of agricultural and food chemistry,3 -journal of agricultural and food industrial organization,1 -journal of agricultural and food information,1 -journal of agricultural and resource economics,1 -"journal of agricultural, biological, and environmental statistics",1 -journal of agricultural economics,1 -journal of agricultural education and extension,1 -journal of agricultural science,0 -journal of agricultural science,2 -journal of agricultural science and technology,1 -journal of agriculture and rural development in the tropics and subtropics,1 -journal of agriculture of the university of puerto rico,1 -journal of agromedicine,1 -journal of agrometeorology,1 -journal of agronomy and crop science,1 -journal of air law and commerce,1 -journal of air transport management,1 -journal of aircraft,1 -journal of alcohol and drug education,1 -journal of algebra,2 -journal of algebra and its applications,1 -journal for algebra and number theory academia,1 -journal of algebraic combinatorics,1 -journal of algebraic geometry,2 -journal of algorithms and computational technology,1 -journal of algorithms-cognition informatics and logic,2 -journal of allergy and clinical immunology,3 -journal of allied health,1 -journal of alloys and compounds,1 -journal of alternative and complementary medicine,1 -journal of alzheimer's disease,1 -journal of ambient intelligence and smart environments,1 -journal of ambulatory care management,1 -journal of american college health,1 -journal of american culture,1 -journal of american drama and theatre,1 -journal of american ethnic history,2 -journal of american folklore,3 -journal of american history,3 -journal of american studies,2 -journal of american studies of turkey,1 -journal of analysis and applications,1 -journal of analytical and applied pyrolysis,1 -journal of analytical atomic spectrometry,1 -journal of analytical chemistry,0 -journal of analytical psychology,1 -journal of analytical toxicology,1 -journal of anatomy,2 -journal of ancient civilizations,1 -journal of ancient near eastern religions,2 -journal of ancient topography,1 -journal of anesthesia,1 -journal of anglican studies,1 -journal of anglo-italian studies,1 -journal of animal and feed sciences,1 -journal of animal and plant sciences,1 -journal of animal and veterinary advances,0 -journal of animal breeding and genetics,2 -journal of animal ecology,3 -journal of animal physiology and animal nutrition,1 -journal of animal science,2 -journal of anthropological archaeology,3 -journal of anthropological research,2 -journal of anthropological sciences,1 -journal of antibiotics,1 -journal of antimicrobial chemotherapy,2 -journal of anxiety disorders,2 -journal of aoac international,1 -journal of apicultural research,1 -journal of apicultural science,1 -journal of applied accounting research,1 -journal of applied analysis,1 -journal of applied and industrial mathematics,1 -journal of applied animal research,1 -journal of applied animal welfare science,1 -journal of applied aquaculture,1 -journal of applied behavior analysis,1 -journal of applied behavioral science,1 -journal of applied biobehavioral research,1 -journal of applied biomechanics,1 -journal of applied biomedicine,1 -journal of applied clinical medical physics,1 -journal of applied communication research,1 -journal of applied corporate finance,1 -journal of applied crystallography,1 -journal of applied developmental psychology,1 -journal of applied ecology,3 -journal of applied econometrics,2 -journal of applied economics,1 -journal of applied electrochemistry,1 -journal of applied entomology,1 -"journal of applied finance: theory, practice, education",1 -journal of applied fire science,1 -journal of applied genetics,1 -journal of applied geophysics,1 -journal of applied gerontology,1 -journal of applied horticulture,1 -journal of applied ichthyology,1 -journal of applied linguistics and professional practice,1 -journal of applied logic,1 -journal of applied management and entrepreneurship,1 -journal of applied mathematics,1 -journal of applied mathematics and computing,1 -journal of applied mathematics and decision sciences,0 -journal of applied mechanics and technical physics,1 -journal of applied mechanics: transactions of the asme,1 -journal of applied meteorology and climatology,1 -journal of applied microbiology,1 -journal of applied non-classical logics,1 -journal of applied oral science,1 -journal of applied packaging research,1 -journal of applied philosophy,2 -journal of applied phycology,1 -journal of applied physics,1 -journal of applied physiology,2 -journal of applied polymer science,1 -journal of applied poultry research,1 -journal of applied probability,1 -journal of applied probability and statistics,1 -journal of applied psychology,3 -journal of applied remote sensing,1 -journal of applied research,1 -journal of applied research in intellectual disabilities,1 -journal of applied social psychology,1 -journal of applied spectroscopy,1 -journal of applied sport psychology,1 -journal of applied statistical science,1 -journal of applied statistics,1 -journal of applied toxicology,1 -journal of approximation theory,1 -journal of aquatic animal health,1 -journal of aquatic food product technology,1 -journal of arabic and islamic studies,1 -zeitschrift fur arabische linguistik,1 -journal of arabic literature,2 -journal of arachnology,1 -arboriculture and urban forestry,1 -journal of archaeological method and theory,3 -journal of archaeological research,3 -journal of archaeological science,3 -journal of architectural and planning research,2 -journal of architectural conservation,2 -journal of architectural education,1 -journal of architectural engineering,1 -journal of architecture,3 -journal of archival organization,1 -journal of arid environments,1 -journal of arthroplasty,2 -journal of articles in support of the null hypothesis,1 -journal of artificial intelligence research,3 -journal of artificial organs,1 -"journal of arts management, law, and society",3 -journal of asia entrepreneurship and sustainability,1 -journal of asian american studies,1 -journal of asian and african studies,1 -journal of asian architecture and building engineering,1 -journal of asian business,1 -journal of asian earth sciences,1 -journal of asian economics,1 -journal of asian history,3 -journal of asian natural products research,1 -journal of asian pacific communication,1 -journal of asian studies,3 -journal of asia-pacific business,1 -journal of asia-pacific entomology,1 -journal of asset management,1 -journal of assisted reproduction and genetics,1 -journal of asthma,1 -journal of astm international,1 -journal of astronomical history and heritage,1 -journal of astrophysics and astronomy,1 -journal of atherosclerosis and thrombosis,1 -journal of athletic training,1 -journal of atmospheric and oceanic technology,1 -journal of atmospheric and solar-terrestrial physics,1 -journal of atmospheric chemistry,1 -"journal of atomic, molecular and optical physics",1 -journal of attention disorders,2 -journal of australian political economy,1 -journal of australian studies,1 -journal of autism and developmental disorders,2 -journal of autoimmunity,2 -"journal of automata, languages and combinatorics",1 -journal of automated methods and management in chemistry,1 -journal of automated reasoning,2 -journal of automation and information sciences,1 -autonomic and autacoid pharmacology,1 -journal of avian biology,2 -journal of avian medicine and surgery,1 -journal of back and musculoskeletal rehabilitation,1 -journal of bacteriology,1 -journal of balkan and near eastern studies,1 -journal of baltic science education,0 -journal of baltic studies,2 -journal of bamboo and rattan,1 -journal of band research,1 -journal of banking and finance,2 -journal of basic microbiology,1 -journal of beckett studies,2 -journal of behavior therapy and experimental psychiatry,1 -journal of behavioral and applied management,1 -journal of behavioral decision making,2 -journal of behavioral education,1 -journal of behavioral finance,1 -journal of behavioral health services and research,1 -journal of behavioral medicine,1 -journal of beijing college of politics and law,1 -journal of beliefs and values,1 -journal of bhutan studies,1 -journal of biblical literature,3 -journal of bioactive and compatible polymers,1 -journal of biobased materials and bioenergy,0 -journal of biochemical and molecular toxicology,1 -journal of biochemistry,1 -journal of bioeconomics,1 -journal of bioenergetics and biomembranes,1 -journal of bioethical inquiry,1 -journal of biogeography,2 -journal of bioinformatics and computational biology,1 -journal of biological chemistry,2 -journal of biological dynamics,1 -journal of biological education,1 -journal of biological engineering,1 -journal of biological inorganic chemistry,1 -journal of biological physics,1 -journal of biological regulators and homeostatic agents,0 -journal of biological research: thessaloniki,1 -journal of biological rhythms,1 -journal of biological systems,1 -journal of biomaterials applications,1 -journal of biomaterials science: polymer edition,1 -journal of biomechanical engineering: transactions of the asme,1 -journal of biomechanics,2 -journal of biomedical informatics,1 -journal of biomedical materials research part a,1 -journal of biomedical materials research part b: applied biomaterials,1 -journal of biomedical nanotechnology,0 -journal of biomedical optics,2 -journal of biomedical science,2 -journal of biomedicine and biotechnology,1 -journal of biomolecular nmr,1 -journal of biomolecular screening,1 -journal of biomolecular structure and dynamics,1 -journal of bionic engineering,1 -journal of biopharmaceutical statistics,1 -journal of biophotonics,1 -journal of bioscience and bioengineering,1 -journal of biosciences,1 -journal of biosocial science,1 -journal of biotechnology,1 -journal of bisexuality,1 -journal of black psychology,1 -journal of black studies,1 -journal of bodywork and movement therapies,1 -journal of bone and joint surgery: american volume,3 -the bone and joint journal,3 -journal of bone and mineral metabolism,1 -journal of bone and mineral research,3 -journal of borderlands studies,1 -journal of brand management,1 -journal of breast cancer,1 -journal of bridge engineering,1 -journal of british cinema and television,1 -journal of british studies,2 -journal of broadcasting and electronic media,2 -journal of bryology,1 -journal of buddhist ethics,1 -journal of building performance simulation,1 -journal of building physics,2 -journal of burn care and research,1 -journal of business and economic statistics,3 -journal of business and industrial marketing,1 -journal of business and finance librarianship,1 -journal of business and psychology,1 -journal of business and technical communication,1 -journal of business chemistry,1 -journal of business economics and management,1 -journal of business ethics,2 -journal of business ethics education,1 -journal of business finance and accounting,2 -journal of business law,2 -journal of business logistics,1 -journal of business research,2 -"journal of business systems, governance and ethics",1 -journal of business venturing,3 -journal of business-to-business marketing,1 -journal of camel practice and research,1 -journal of canadian petroleum technology,1 -journal of canadian studies : revue d'etudes canadiennes,2 -journal of cancer education,1 -journal of cancer research and clinical oncology,1 -journal of cancer research and therapeutics,1 -journal of carbohydrate chemistry,1 -journal of carcinogenesis,1 -journal of cardiac failure,1 -journal of cardiac surgery,1 -journal of cardiopulmonary rehabilitation and prevention,1 -journal of cardiothoracic and vascular anesthesia,1 -journal of cardiothoracic surgery,1 -journal of cardiovascular electrophysiology,1 -journal of cardiovascular magnetic resonance,2 -journal of cardiovascular medicine,1 -journal of cardiovascular nursing,2 -journal of cardiovascular pharmacology,1 -journal of cardiovascular pharmacology and therapeutics,1 -journal of cardiovascular surgery,1 -journal of career assessment,2 -journal of career development,1 -journal of caribbean archaeology,1 -journal of cases on information technology,1 -journal of catalysis,3 -journal of cataract and refractive surgery,1 -journal of cave and karst studies,1 -journal of cell biology,3 -journal of cell science,2 -journal of cellular and molecular medicine,1 -journal of cellular automata,1 -journal of cellular biochemistry,1 -journal of cellular physiology,1 -journal of cellular plastics,1 -journal of celtic linguistics,2 -journal of central south university,1 -journal of ceramic processing research,1 -journal of cereal science,1 -journal of cerebral blood flow and metabolism,3 -journal of cetacean research and management,1 -journal of chemical and engineering data,1 -journal of chemical biology,1 -journal of chemical crystallography,1 -journal of chemical ecology,1 -journal of chemical education,1 -journal of chemical engineering of japan,1 -journal of chemical information and modeling,1 -journal of chemical neuroanatomy,1 -journal of chemical physics,1 -journal of chemical research,1 -journal of chemical sciences,0 -journal of chemical technology and biotechnology,1 -journal of chemical theory and computation,2 -journal of chemical thermodynamics,1 -journal of chemometrics,1 -journal of chemotherapy,1 -journal of child and adolescent substance abuse,1 -journal of child and adolescent mental health,1 -journal of child and adolescent psychiatric nursing,1 -journal of child and adolescent psychopharmacology,1 -journal of child and family studies,1 -journal of child health care,1 -journal of child language,3 -journal of child neurology,1 -journal of child psychology and psychiatry,3 -journal of child psychotherapy,1 -journal of child sexual abuse,1 -journal of children and media,1 -journal of children and poverty,1 -journal of childrens services,1 -journal of chinese economics and business studies,1 -journal of chinese linguistics,2 -journal of chinese overseas,1 -journal of chinese philosophy,1 -journal of chinese social and economic history,1 -journal of christian education,1 -journal of chromatographic science,1 -journal of chromatography a,1 -journal of chromatography b: analytical technologies in the biomedical and life sciences,1 -journal of church and state,2 -journal of circuits systems and computers,1 -journal of civil engineering and management,1 -journal of civil society,1 -journal of classical sociology,1 -journal of classics teaching,1 -journal of classification,1 -journal of classroom interaction,1 -journal of cleaner production,2 -journal of climate,2 -journal of clinical and experimental neuropsychology,1 -journal of clinical anesthesia,1 -journal of clinical apheresis,1 -journal of clinical biochemistry and nutrition,1 -journal of clinical child and adolescent psychology,2 -journal of clinical densitometry,1 -journal of clinical dentistry,1 -journal of clinical endocrinology and metabolism,3 -journal of clinical engineering,1 -journal of clinical epidemiology,3 -journal of clinical ethics,1 -journal of clinical gastroenterology,1 -journal of clinical hypertension,1 -journal of clinical immunology,2 -journal of clinical investigation,3 -journal of clinical laboratory analysis,1 -journal of clinical lipidology,1 -journal of clinical microbiology,1 -journal of clinical monitoring and computing,1 -journal of clinical neuromuscular disease,1 -journal of clinical neurophysiology,1 -journal of clinical neuroscience,1 -journal of clinical nursing,3 -journal of clinical oncology,3 -journal of clinical orthodontics,1 -journal of clinical outcomes management,1 -journal of clinical pathology,1 -journal of clinical pediatric dentistry,1 -journal of clinical periodontology,3 -journal of clinical pharmacology,1 -journal of clinical pharmacy and therapeutics,1 -journal of clinical psychiatry,1 -journal of clinical psychology,1 -journal of clinical psychology in medical settings,1 -journal of clinical psychopharmacology,1 -journal of clinical sleep medicine,1 -journal of clinical ultrasound,1 -journal of clinical virology,1 -journal of cluster science,1 -journal of coastal research,0 -journal of cognition and culture,1 -journal of cognition and development,1 -journal of cognitive and behavioral psychotherapies,1 -journal of cognitive education and psychology,1 -journal of cognitive neuroscience,2 -journal of cognitive psychotherapy: an international quarterly,1 -journal of cold regions engineering,1 -journal of cold war studies,2 -journal of collective negotiations,1 -journal of college student development,1 -journal of college student psychotherapy,1 -"journal of college student retention: research, theory and practice",1 -journal of colloid and interface science,1 -journal of colonialism and colonial history,1 -journal of combinatorial designs,1 -journal of combinatorial optimization,1 -journal of combinatorial theory series a,3 -journal of combinatorial theory series b,2 -journal of combinatorics and number theory,1 -journal of commonwealth and comparative politics,1 -journal of commonwealth and postcolonial studies,1 -journal of commonwealth literature,2 -journal of communication,3 -journal of communication and religion,1 -journal of communication disorders,2 -journal of communication inquiry,1 -journal of communication management,1 -journal of communications,1 -journal of communications and networks,1 -journal of communications software and systems,1 -journal of communications technology and electronics,1 -journal of community and applied social psychology,2 -journal of community health,1 -journal of community health nursing,1 -journal of community informatics,1 -journal of community practice,1 -journal of community psychology,1 -journal of commutative algebra,1 -journal of comparative economics,2 -journal of comparative family studies,1 -journal of comparative germanic linguistics,2 -journal of comparative neurology,1 -journal of comparative pathology,1 -journal of comparative physiology a: neuroethology sensory neural and behavioral physiology,1 -"journal of comparative physiology b : biochemical, systemic, and environmental physiology",1 -journal of comparative policy analysis: research and practice,1 -journal of comparative psychology,1 -journal of comparative social work,1 -journal of competition law and economics,2 -journal of complexity,1 -journal of composite materials,1 -journal of composites for construction,2 -journal of computational acoustics,1 -journal of computational analysis and applications,1 -journal of computational and applied mathematics,1 -journal of computational and graphical statistics,3 -journal of computational and nonlinear dynamics,1 -journal of computational and theoretical nanoscience,0 -journal of computational biology,1 -journal of computational chemistry,1 -journal of computational electronics,1 -journal of computational finance,1 -journal of computational mathematics,1 -journal of computational methods in sciences and engineering,1 -journal of computational neuroscience,1 -journal of computational physics,2 -journal of computer and system sciences,3 -journal of computer and systems sciences international,1 -journal of computer assisted learning,2 -journal of computer assisted tomography,1 -"journal of computer chemistry, japan",0 -journal of computer information systems,1 -journal of computer science and technology,1 -journal of computer security,2 -scientific modeling and simulation,1 -journal of computer-aided molecular design,1 -journal of computer-mediated communication,3 -journal of computers,0 -journal of computers in mathematics and science teaching,1 -journal of computing and information science in engineering,1 -journal of computing in civil engineering,1 -journal of computing in higher education,1 -journal of conchology,1 -journal of concrete and applicable mathematics,1 -journal of conflict archaeology,1 -journal of conflict resolution,3 -journal of consciousness studies,1 -international journal of construction education and research,1 -journal of construction engineering and management: asce,2 -journal of constructional steel research,2 -journal of constructivist psychology,1 -journal of consulting and clinical psychology,3 -journal of consumer affairs,1 -journal of consumer behaviour,1 -journal of consumer culture,1 -journal of consumer marketing,1 -journal of consumer policy,1 -journal of consumer psychology,2 -journal of consumer research,3 -journal of contaminant hydrology,1 -journal of contemporary african studies,1 -journal of contemporary asia,2 -journal of contemporary china,1 -journal of contemporary criminal justice,1 -journal of contemporary dental practice,1 -journal of contemporary ethnography,2 -journal of contemporary european studies,1 -journal of contemporary history,3 -journal of contemporary management issues,1 -journal of contemporary mathematical analysis: armenian academy of sciences,1 -journal of contemporary physics: armenian academy of sciences,1 -journal of contemporary psychotherapy,1 -journal of contemporary religion,3 -journal of contingencies and crisis management,1 -journal of continuing education in the health professions,1 -journal of continuing higher education,1 -journal of contract law,1 -journal of control science and engineering,1 -journal of controlled release,3 -journal of convex analysis,1 -journal of coordination chemistry,1 -journal of coptic studies,1 -journal of corporate citizenship,1 -journal of corporate finance,3 -journal of corporate law studies,2 -journal of corporate real estate,1 -journal of correctional education,1 -journal of corrosion science and engineering,1 -journal of cosmetic and laser therapy,1 -journal of cosmetic dermatology,1 -journal of cosmetic science,1 -journal of cosmology and astroparticle physics,2 -journal of cotton science,1 -journal of counseling and development,2 -journal of counseling psychology,3 -journal of couple and relationship therapy,1 -journal of craniofacial surgery,1 -journal of cranio-maxillofacial surgery,1 -journal of creative behavior,1 -journal of credit risk,1 -journal of criminal justice,2 -journal of criminal justice and popular culture,1 -journal of criminal law and criminology,1 -journal of critical care,1 -journal of critical realism,1 -journal of crohns and colitis,2 -journal of crop improvement,1 -journal of cross-cultural gerontology,1 -journal of cross-cultural psychology,2 -journal of crustacean biology,1 -journal of cryptology,3 -journal of crystal growth,1 -journal of culinary science and technology,1 -journal of cultural economics,2 -journal of cultural geography,1 -journal of cultural heritage,3 -journal of cultural property conservation,1 -journal of cuneiform studies,1 -journal of curriculum studies,3 -journal of customer behaviour,1 -journal of cutaneous medicine and surgery,1 -journal of cutaneous pathology,1 -journal of cystic fibrosis,1 -journal of cytology,1 -journal of dairy research,1 -journal of dairy science,3 -journal of database management,1 -journal of deaf studies and deaf education,1 -journal of decision systems,1 -journal of democracy,0 -journal of dental education,1 -journal of dental hygiene,1 -journal of dental research,3 -journal of dentistry,2 -journal of derivatives,1 -journal of dermatological science,1 -journal of dermatological treatment,1 -journal of dermatology,1 -journal of design history,3 -journal of design research,1 -journal of developing areas,1 -journal of developing societies,1 -journal of development economics,3 -journal of development studies,2 -journal of developmental and behavioral pediatrics,1 -journal of developmental and physical disabilities,1 -journal of developmental biology and tissue engineering,0 -journal of developmental entrepreneurship,1 -journal of dharma,0 -journal of diabetes and its complications,1 -journal of diabetes science and technology,1 -journal of diagnostic medical sonography,1 -journal of difference equations and applications,1 -journal of differential equations,2 -journal of differential geometry,3 -journal of digestive diseases,1 -journal of digital information management,1 -journal of disability policy studies,1 -journal of discrete algorithms,1 -journal of dispersion science and technology,1 -journal of display technology,1 -journal of distance education,1 -journal of divorce and remarriage,1 -journal of documentation,3 -journal of drug delivery science and technology,1 -journal of drug education,1 -journal of drug issues,1 -journal of drug targeting,1 -journal of drugs in dermatology,1 -journal of dual diagnosis,1 -journal of dynamic systems measurement and control: transactions of the asme,1 -journal of dynamical and control systems,1 -journal of dynamics and differential equations,2 -journal of e.commerce and psychology,1 -journal of early adolescence,1 -journal of early childhood literacy,2 -journal of early childhood research,1 -journal of early childhood teacher education,1 -journal of early christian studies,3 -journal of early intervention,1 -journal of early modern history,3 -journal of earth science,1 -journal of earth system science,1 -journal of earthquake and tsunami,1 -journal of earthquake engineering,1 -journal of east asian archaeology,1 -journal of east asian linguistics,2 -journal of east asian studies,1 -journal of eastern african studies,1 -journal of eastern caribbean studies,1 -journal of eastern christian studies,1 -journal of east-west business,1 -journal of ecclesiastical history,3 -journal of ecology,3 -journal of econometrics,3 -journal of economic and social measurement,1 -journal of economic behavior and organization,2 -journal of economic dynamics and control,2 -journal of economic education,1 -journal of economic entomology,1 -journal of economic geography,3 -journal of economic growth,2 -journal of economic history,3 -journal of economic inequality,2 -journal of economic interaction and coordination,1 -journal of economic issues,1 -journal of economic literature,3 -journal of economic methodology,1 -journal of economic perspectives,2 -journal of economic policy reform,1 -journal of economic psychology,1 -journal of economic studies,1 -journal of economic surveys,1 -journal of economic theory,3 -journal of economics,1 -journal of economics and management strategy,2 -journal of economics and business,1 -journal of economics and finance,1 -journal of ecotourism,1 -journal of ect,1 -journal of ecumenical studies,1 -journal of education and christian belief,1 -journal of education and human development,0 -journal of education and work,2 -journal of education finance,1 -journal of education for business,1 -journal of education for international development,1 -journal of education for library and information science,1 -journal of education for students placed at risk,1 -journal of education for teaching,1 -journal of education in museums,1 -journal of education policy,3 -journal of educational administration,1 -journal of educational administration and history,1 -journal of educational and behavioral statistics,2 -journal of educational and psychological consultation,1 -journal of educational change,2 -journal of educational computing research,1 -"jem, journal of educational measurement",1 -journal of educational multimedia and hypermedia,1 -journal of educational psychology,3 -journal of educational research,2 -journal of educational technology systems,1 -journal of egyptian archaeology,3 -journal of elasticity,1 -journal of elastomers and plastics,1 -journal of elder abuse and neglect,1 -"journal of elections, public opinion, and parties",2 -journal of electrical engineering and technology,1 -journal of electroanalytical chemistry,1 -journal of electrocardiology,1 -journal of electroceramics,1 -journal of electromagnetic waves and applications,1 -journal of electromyography and kinesiology,2 -journal of electron spectroscopy and related phenomena,1 -journal of electronic commerce in organizations,1 -journal of electronic commerce research,1 -journal of electronic imaging,1 -journal of electronic materials,1 -journal of electronic packaging,1 -journal of electronic publishing,1 -journal of electronic testing: theory and applications,1 -journal of electronics and information technology,1 -journal of electrostatics,1 -journal of elementology,1 -journal of embeded computing,1 -journal of emergency medicine,1 -journal of emergency nursing,1 -journal of emerging market finance,1 -journal of emotional and behavioral disorders,1 -journal of empirical finance,2 -journal of empirical generalisations in marketing science,1 -journal of empirical legal studies,1 -journal of empirical research on human research ethics,1 -journal of empirical theology,2 -journal of employment counseling,1 -journal of endocrinological investigation,1 -journal of endocrinology,1 -journal of endodontics,2 -journal of endourology,1 -journal of endovascular therapy,1 -journal of energetic materials,1 -journal of energy and development,1 -journal of energy and natural resources law,2 -journal of energy engineering: asce,1 -journal of energy in southern africa,1 -journal of energy markets,1 -journal of energy resources technology: transactions of the asme,1 -journal of engineered fibers and fabrics,1 -journal of engineering and technology management,1 -journal of engineering design,1 -journal of engineering education,2 -journal of engineering for gas turbines and power: transactions of the asme,1 -journal of engineering materials and technology: transactions of the asme,1 -journal of engineering mathematics,1 -journal of engineering mechanics: asce,1 -journal of engineering physics and thermophysics,1 -journal of english and germanic philology,3 -journal of english for academic purposes,2 -journal of english linguistics,3 -journal of english studies,1 -journal of enhanced heat transfer,1 -journal of enterprise information management,1 -journal of enterprising communities,1 -journal of enterprising culture,1 -journal of entomological science,1 -journal of entrepreneurship,1 -journal of entrepreneurship education,0 -journal of environment and development,1 -journal of environmental and engineering geophysics,1 -journal of environmental assessment policy and management,1 -journal of environmental biology,1 -journal of environmental economics and management,3 -journal of environmental education,2 -journal of environmental engineering and science,1 -journal of environmental engineering: asce,1 -journal of environmental health,1 -journal of environmental horticulture,1 -journal of environmental hydrology,0 -journal of environmental informatics,1 -journal of environmental law,3 -journal of environmental management,2 -journal of environmental pathology toxicology and oncology,1 -journal of environmental planning and management,1 -journal of environmental policy and planning,2 -journal of environmental protection and ecology,0 -journal of environmental psychology,3 -journal of environmental quality,1 -journal of environmental radioactivity,1 -journal of environmental science and health part a: toxic/hazardous substances and environmental engineering,1 -journal of environmental science and health part b: pesticides food contaminants and agricultural wastes,1 -journal of environmental science and health part c: environmental carcinogenesis and ecotoxicology reviews,1 -journal of environmental sciences: china,1 -journal of environmental systems,1 -journal of enzyme inhibition and medicinal chemistry,1 -journal of epidemiology,1 -journal of cancer epidemiology & prevention,1 -journal of epidemiology and community health,3 -journal of equine science,1 -journal of equine veterinary science,1 -journal of equity,1 -journal of essential oil research,1 -journal of esthetic and restorative dentistry,1 -journal of ethics and social philosophy,2 -journal of ethnic and migration studies,3 -journal of ethnicity in criminal justice,1 -journal of ethnicity in substance abuse,1 -journal of ethnobiology,1 -journal of ethnobiology and ethnomedicine,2 -journal of ethnopharmacology,1 -journal of ethology,1 -journal of eukaryotic microbiology,1 -journal of eurasian research,1 -journal of european economic history,1 -european journal of training and development,1 -journal of european integration history,2 -journal of european popular culture,1 -journal of european public policy,3 -journal of european social policy,3 -journal of european studies,1 -journal of evaluation in clinical practice,1 -journal of evidence-based dental practice,1 -journal of evolution and technology,1 -journal of evolution equations,1 -journal of evolutionary biochemistry and physiology,1 -journal of evolutionary biology,2 -journal of evolutionary economics,1 -journal of evolutionary psychology,1 -journal of exercise physiology online,1 -journal of exercise science and fitness,1 -journal of exotic pet medicine,1 -journal of experimental and clinical cancer research,2 -journal of experimental and theoretical artificial intelligence,1 -acm journal of experimental algorithmics,2 -journal of experimental and theoretical physics,1 -journal of experimental biology,2 -journal of experimental botany,2 -journal of experimental child psychology,1 -journal of experimental education,2 -journal of experimental marine biology and ecology,1 -journal of experimental medicine,3 -journal of experimental nanoscience,1 -journal of experimental psychology: animal behavior processes,1 -journal of experimental psychology: applied,1 -journal of experimental psychology: general,3 -journal of experimental psychology: human perception and performance,2 -journal of experimental psychology: learning memory and cognition,2 -journal of experimental social psychology,2 -journal of experimental therapeutics and oncology,1 -journal of experimental zoology part a: ecological genetics and physiology,1 -journal of experimental zoology part b: molecular and developmental evolution,1 -journal of exposure science and environmental epidemiology,1 -journal of extension,1 -journal of eye movement research,1 -journal of facilities management,1 -journal of family and economic issues,1 -journal of family communication,1 -journal of family history,2 -journal of family issues,1 -journal of family nursing,2 -journal of family planning and reproductive health care,1 -journal of family practice,1 -journal of family psychology,2 -journal of family social work,1 -journal of family studies,1 -journal of family therapy,1 -journal of family violence,1 -journal of fashion marketing and management,1 -journal of feline medicine and surgery,1 -journal of feminist family therapy,1 -journal of feminist studies in religion,2 -journal of field archaeology,2 -journal of field ornithology,1 -journal of field robotics,2 -journal of film and video,1 -journal of film music,1 -journal of finance,3 -journal of finance case research,1 -journal of financial and quantitative analysis,3 -journal of financial crime,1 -journal of financial econometrics,1 -journal of financial economic policy,1 -journal of financial economics,3 -journal of financial education,0 -journal of financial intermediation,3 -journal of financial markets,2 -journal of financial planning,0 -journal of financial regulation and compliance,1 -journal of financial research,1 -journal of financial services marketing,1 -journal of financial services research,2 -journal of financial stability,2 -journal of finnish studies,2 -journal of fire protection engineering,1 -journal of fire sciences,1 -journal of fish biology,1 -journal of fish diseases,1 -journal of fixed income,1 -journal of flood risk management,1 -journal of fluency disorders,2 -journal of fluid mechanics,3 -journal of fluids and structures,1 -journal of fluids engineering: transactions of the asme,1 -journal of fluorescence,1 -journal of fluorine chemistry,1 -journal of folklore research,3 -journal of food agriculture and environment,0 -journal of food and drug analysis,0 -journal of food and nutrition research,1 -journal of food biochemistry,1 -journal of food composition and analysis,1 -journal of food engineering,1 -journal of food lipids,1 -journal of food process engineering,1 -journal of food processing and preservation,1 -journal of food products marketing,1 -journal of food protection,1 -journal of food quality,1 -journal of food safety,1 -journal of food science,1 -journal of food science and technology: mysore,1 -journal of food technology,0 -journal of food technology in africa,1 -journal of foot and ankle surgery,1 -journal of foraminiferal research,1 -journal of forecasting,1 -journal of forensic and legal medicine,1 -journal of forensic psychiatry and psychology,1 -journal of forensic sciences,1 -journal of forest economics,1 -journal of forest research,1 -journal of forestry,1 -journal of fourier analysis and applications,2 -journal of french language studies,3 -journal of freshwater ecology,1 -journal of friction and wear,1 -journal of fuel cell science and technology,1 -journal of function spaces and applications,1 -journal of functional analysis,2 -journal of functional and logic programming,1 -journal of functional programming,2 -journal of further and higher education,1 -journal of fusion energy,1 -journal of futures markets,2 -journal of gambling studies,1 -journal of gang research,1 -journal of gastroenterology,2 -journal of gastroenterology and hepatology,1 -journal of gastrointestinal and liver diseases,1 -journal of gastrointestinal surgery,1 -journal of gay and lesbian politics,1 -journal of gay and lesbian social services,1 -journal of gemmology,1 -journal of gender studies,2 -journal of gene medicine,1 -journal of general and applied microbiology,1 -journal of general education,1 -journal of general internal medicine,1 -journal of general management,1 -journal of general physiology,2 -journal of general plant pathology,1 -journal of general psychology,1 -journal of general virology,1 -journal of genetic counseling,1 -journal of genetic psychology,1 -journal of genetics,1 -journal of genetics and genomics,1 -journal of genocide research,1 -journal of geochemical exploration,1 -journal of geodesy,2 -journal of geodetic science,1 -journal of geodynamics,1 -journal of geographical sciences,1 -journal of geographical systems,1 -journal of geography,1 -journal of geography in higher education,1 -journal of geology,1 -journal of geometric analysis,2 -journal of geometry,1 -journal of geometry and physics,1 -journal of geophysics and engineering,1 -journal of geosciences,1 -journal of geotechnical and geoenvironmental engineering,2 -journal of geriatric psychiatry and neurology,1 -journal of germanic linguistics,1 -journal of gerontological nursing,1 -journal of gerontological social work,1 -journal of ginseng research,1 -journal of glaciology,1 -journal of glass studies,2 -journal of glaucoma,1 -journal of global buddhism,1 -journal of global ethics,1 -journal of global history,3 -journal of global information management,1 -journal of global information technology management,1 -journal of global marketing,1 -journal of global mass communication,1 -journal of global optimization,3 -journal of graph algorithms and applications,1 -journal of graph theory,1 -journal of graphic technology,1 -journal of great lakes research,1 -journal of greco-roman studies,1 -journal of greek linguistics,2 -journal of green building,1 -journal of grid computing,1 -journal of group theory,1 -journal of guidance control and dynamics,2 -journal of gynecologic oncology,1 -journal of gynecologic surgery,1 -journal of hand surgery: american volume,1 -journal of hand surgery: european volume,1 -journal of hand therapy,1 -journal of happiness studies,2 -journal of hard tissue biology,1 -journal of hazardous materials,3 -journal of head trauma rehabilitation,2 -journal of headache and pain,2 -journal of health and social behavior,2 -journal of health care for the poor and underserved,1 -journal of health communication,2 -journal of health economics,3 -journal of health management,1 -journal of health organization and management,1 -journal of health politics policy and law,1 -journal of health population and nutrition,1 -journal of health psychology,1 -journal of health science,1 -journal of health services research and policy,1 -journal of healthcare information management,1 -journal of healthcare management,1 -journal of heart and lung transplantation,2 -journal of heart valve disease,1 -journal of heat transfer: transactions of the asme,1 -journal of hebrew scriptures,2 -journal of hellenic studies,3 -journal of helminthology,1 -journal of hematology and oncology,2 -journal of hepato-biliary-pancreatic sciences,1 -journal of hepatology,3 -journal of dietary supplements,1 -"journal of herbs, spices and medicinal plants",1 -journal of heredity,1 -journal of heritage tourism,1 -journal of herpetology,1 -journal of heterocyclic chemistry,1 -journal of heuristics,2 -journal of high energy physics,3 -journal of high technology management research,1 -journal of higher education,3 -journal of higher education policy and management,1 -journal of histochemistry and cytochemistry,1 -journal of historical geography,1 -journal of historical linguistics,2 -journal of historical pragmatics,2 -journal of historical research in marketing,1 -journal of historical sociology,0 -journal of historical studies,1 -journal of histotechnology,1 -journal of hiv/aids and social services,1 -journal of holistic nursing: official journal of the american holistic nurses association,1 -journal of home economics research,1 -journal of homeland security and emergency management,1 -journal of homosexuality,1 -journal of horticultural science and biotechnology,1 -journal of hospice and palliative nursing,1 -journal of hospital infection,1 -journal of hospital librarianship,1 -journal of hospital medicine,1 -journal of hospitality marketing and management,1 -journal of hospitality and tourism research,1 -journal of hospitality leisure sport and tourism education,1 -journal of housing and the built environment,1 -journal of housing economics,1 -journal of housing for the elderly,1 -journal of housing research,1 -journal of human behavior in the social environment,1 -journal of human development and capabilities,1 -journal of human evolution,2 -journal of human genetics,1 -journal of human hypertension,1 -journal of human kinetics,1 -journal of human lactation,1 -journal of human movement studies,1 -journal of human nutrition and dietetics,1 -journal of human resources,2 -journal of human resources in hospitality and tourism,1 -journal of human rights,1 -journal of human subjectivity,1 -journal of human values,1 -journal of humanistic psychology,1 -journal of hydraulic engineering: asce,2 -journal of hydraulic research,1 -journal of hydrodynamics,1 -journal of hydro-environment research,1 -journal of hydroinformatics,1 -journal of hydrologic engineering,1 -journal of hydrology,3 -journal of hydrometeorology,1 -journal of hymenoptera research,1 -journal of hyperbolic differential equations,1 -journal of hypertension,1 -journal of iberian and latin american studies,1 -journal of iberian archaeology,1 -journal of iberian geology,1 -journal of imagery research in sport and physical activity,1 -journal of imaging science and technology,1 -journal of immigrant and minority health,1 -journal of immigrant and refugee studies,1 -journal of immune based therapies and vaccines,1 -journal of immunoassay and immunochemistry,1 -journal of immunological methods,1 -journal of immunology,2 -journal of immunotherapy,1 -journal of immunotoxicology,1 -journal of imperial and commonwealth history,2 -journal of inclusion phenomena and macrocyclic chemistry,1 -journal of income distribution,1 -journal of indian philosophy,1 -journal of individual differences,1 -journal of indo-european studies,2 -journal of industrial and engineering chemistry,1 -journal of industrial and management optimization,1 -journal of industrial ecology,2 -journal of industrial economics,2 -journal of industrial history,1 -journal of industrial microbiology and biotechnology,1 -journal of industrial relations,1 -journal of industrial textiles,1 -"journal of industry, competition and trade",1 -journal of inequalities and applications,1 -journal of inequalities in pure and applied mathematics,1 -journal of infection,2 -journal of infection and chemotherapy,1 -journal of infectious diseases,2 -journal of inflammation: london,1 -journal of information and knowledge management,1 -journal of information and optimization sciences,1 -journal of information communication and ethics in society,1 -journal of information ethics,1 -"journal of information, information technology and organizations",0 -journal of information literacy,1 -journal of information science,3 -journal of information science and engineering,1 -journal of information systems education,1 -journal of information technology,3 -journal of information technology and politics,1 -information technology and tourism,1 -journal of information technology education: research,1 -journal of information technology management,1 -journal of information warfare,1 -journal of informetrics,3 -journal of infrared and millimeter waves,1 -"journal of infrared, millimeter, and terahertz waves",1 -journal of infrastructure systems,1 -journal of inherited metabolic disease,1 -journal of innate immunity,1 -journal of inner asian art and archaeology,1 -journal of inorganic and organometallic polymers and materials,1 -journal of inorganic biochemistry,1 -journal of inorganic materials,1 -journal of insect behavior,1 -journal of insect conservation,1 -journal of insect physiology,1 -journal of insect science,1 -journal of institutional and theoretical economics-zeitschrift fur die gesamte staatswissenschaft,1 -journal of institutional economics,1 -journal of instructional psychology,1 -journal of instrumentation,1 -journal of integer sequences,1 -journal of integral equations and applications,1 -journal of integrative environmental sciences,1 -journal of integrative neuroscience,1 -journal of integrative plant biology,1 -journal of intellectual and developmental disability,1 -journal of intellectual capital,1 -journal of intellectual disabilities,1 -journal of intellectual disability research,2 -journal of intellectual property rights,1 -journal of intelligent and fuzzy systems,1 -journal of intelligent and robotic systems,2 -journal of intelligent information systems,1 -journal of intelligent manufacturing,2 -journal of intelligent material systems and structures,1 -journal of intelligent systems,1 -journal of intelligent transportation systems,1 -journal of intensive care medicine,1 -journal of interactive learning research,1 -journal of interactive marketing,2 -journal of interactive media in education,1 -journal of interactive online learning,1 -journal of interconnection networks,1 -journal of intercultural communication,1 -journal of intercultural communication research,1 -journal of intercultural studies,2 -journal of interdisciplinary history,3 -journal of interferon and cytokine research,1 -journal of intergenerational relationships,1 -journal of internal medicine,2 -journal of international accounting research,1 -"journal of international accounting, auditing and taxation",1 -journal of international and intercultural communication,1 -journal of international arbitration,1 -journal of international banking law and regulation,1 -journal of international business studies,3 -journal of international commercial law and technology,1 -journal of international communication,1 -journal of international consumer marketing,1 -journal of international cooperation in education,1 -journal of international criminal justice,2 -journal of international development,1 -journal of international economic law,3 -journal of international economics,3 -journal of international entrepreneurship,1 -journal of international farm management,1 -journal of international financial management and accounting,1 -"journal of international financial markets, institutions and money",2 -journal of international food and agribusiness marketing,1 -journal of international management,1 -journal of international marketing,2 -journal of international medical research,1 -journal of international migration and integration,2 -journal of international money and finance,2 -journal of international relations and development,1 -journal of international taxation,1 -journal of international technology and information management,1 -journal of international trade and economic development,1 -journal of international wildlife law and policy,1 -journal of international womens studies,1 -journal of library metadata,1 -journal of internet commerce,1 -journal of internet technology,1 -journal of interpersonal violence,2 -journal of interprofessional care,1 -journal of intervention and statebuilding,1 -journal of interventional cardiac electrophysiology,1 -journal of interventional cardiology,1 -journal of infusion nursing,1 -journal of invasive cardiology,1 -journal of inverse and ill-posed problems,1 -journal of invertebrate pathology,1 -journal of investigational allergology and clinical immunology,1 -journal of investigative dermatology,3 -journal of investigative dermatology symposium proceedings,1 -journal of investigative medicine,1 -journal of investigative psychology and offender profiling,1 -journal of investigative surgery,1 -journal of investing,1 -journal of investment management,1 -journal of irish archaeology,1 -journal of iron and steel research international,1 -journal of irrigation and drainage engineering: asce,1 -journal of islamic studies,2 -journal of island and coastal archaeology,1 -journal of israeli history,1 -journal of japanese society of tribologists,1 -journal of japanese studies,2 -journal of jewish studies,3 -journal of jewish thought and philosophy,1 -journal of juristic papyrology,1 -journal of knot theory and its ramifications,1 -journal of knowledge management,1 -journal of knowledge management practice,1 -journal of korean academy of nursing,1 -journal of korean medical science,1 -journal of korean neurosurgical society,1 -journal of korean studies,1 -journal of k-theory,1 -journal of labelled compounds and radiopharmaceuticals,1 -journal of labor economics,3 -journal of labor research,1 -journal of landscape architecture,2 -journal of language and politics,2 -journal of language and popular culture in africa,1 -journal of language and social psychology,3 -"journal of language contact: evolution of languages, contact and discourse",2 -journal of language identity and education,2 -journal of language teaching and research,1 -journal of laparoendoscopic and advanced surgical techniques,1 -journal of laryngology and otology,1 -journal of laser applications,1 -journal of laser micro nanoengineering,1 -journal of late antiquity,1 -journal of latin american and caribbean anthropology,1 -journal of latin american cultural studies,1 -journal of latin american geography,1 -journal of latin american studies,3 -journal of law and economics,2 -journal of law and medicine,1 -journal of law and public policy,1 -journal of law and social work,1 -journal of law and society,3 -journal of law economics and organization,2 -journal of law medicine and ethics,1 -journal of leadership and organizational studies,1 -journal of leadership studies,1 -journal of learning disabilities,3 -journal of legal education,1 -journal of legal history,2 -journal of legal medicine,1 -journal of legal studies,2 -journal of legal technology risk management,1 -journal of leisure research,2 -journal of lesbian studies,1 -journal of leukocyte biology,1 -journal of lgbt youth,1 -journal of librarianship and information science,1 -journal of library administration,1 -journal of library and information services in distance learning,1 -journal of lie theory,1 -journal of light and visual environment,1 -journal of lightwave technology,3 -journal of limnology,1 -journal of linguistic anthropology,3 -journal of linguistics,3 -journal of lipid research,1 -journal of lipids,1 -journal of liposome research,1 -journal of liquid chromatography and related technologies,1 -journal of literacy and technology,1 -journal of literacy research,2 -journal of literary semantics,2 -journal of literary studies,1 -journal of literary theory,2 -"journal of literature, history and philosophy",1 -journal of location based services,1 -journal of logic and analysis,1 -journal of logic and computation,2 -"journal of logic, language and information",2 -journal of long-term effects of medical implants,1 -journal of loss and trauma,1 -journal of loss prevention in the process industries,1 -journal of low frequency noise vibration and active control,1 -journal of low temperature physics,1 -journal of lower genital tract disease,1 -journal of luminescence,1 -journal of lutheran ethics,1 -journal of machine learning research,3 -journal of macroeconomics,1 -journal of macromarketing,1 -journal of macromolecular science part a: pure and applied chemistry,1 -journal of macromolecular science part b: physics,1 -journal of magnetic resonance,1 -journal of magnetic resonance imaging,2 -journal of magnetics,1 -journal of magnetism and magnetic materials,1 -journal of mammalian evolution,1 -journal of mammalogy,1 -journal of mammary gland biology and neoplasia,1 -journal of management,3 -journal of management and organization,1 -journal of management accounting research,1 -journal of management and governance,1 -journal of management development,1 -journal of management education,1 -journal of management in engineering,1 -journal of management information systems,3 -journal of management inquiry,2 -journal of management studies,3 -journal of managerial psychology,1 -journal of manipulative and physiological therapeutics,1 -journal of manufacturing science and engineering: transactions of the asme,1 -journal of manufacturing systems,3 -journal of manufacturing technology management,1 -journal of maps,1 -journal of marine engineering and technology,1 -journal of marine environmental engineering,1 -journal of marine research,1 -journal of marine science and technology,1 -journal of marine systems,1 -journal of marital and family therapy,1 -journal of maritime archaeology,2 -journal of maritime law and commerce,1 -journal of maritime research,1 -journal of marketing,3 -journal of marketing channels,1 -journal of marketing communications,1 -journal of marketing education,1 -journal of marketing for higher education,1 -journal of marketing management,1 -journal of marketing research,3 -journal of marketing theory and practice,1 -journal of markets and morality,1 -journal of marriage and the family,3 -journal of mass spectrometry,1 -journal of material culture,3 -journal of material cycles and waste management,1 -journal of metallurgy and materials science,1 -journal of materials engineering and performance,1 -journal of materials in civil engineering,1 -journal of materials processing technology,2 -journal of materials research,1 -journal of materials science,1 -journal of materials science and technology,2 -journal of materials science: materials in electronics,1 -journal of materials science: materials in medicine,1 -journal of maternal-fetal and neonatal medicine,1 -journal of mathematical analysis and applications,1 -journal of mathematical behavior,1 -journal of mathematical biology,3 -journal of mathematical chemistry,1 -journal of mathematical cryptology,1 -journal of mathematical economics,1 -journal of mathematical fluid mechanics,1 -journal of mathematical imaging and vision,2 -journal of mathematical logic,1 -journal of mathematical physics,1 -journal of mathematical physics analysis geometry,1 -journal of mathematical psychology,1 -journal of mathematical sciences,1 -journal of mathematical sciences: the university of tokyo,1 -journal of mathematical sociology,1 -journal of mathematics and music,1 -journal of mathematics and statistics,0 -kyoto journal of mathematics,1 -journal of mathematics teacher education,1 -journal of mechanical design,2 -journal of mechanical science and technology,1 -journal of mechanics,1 -journal of mechanics in medicine and biology,1 -journal of mechanics of materials and structures,1 -journal of media and religion,1 -journal of media business studies,1 -journal of media economics,1 -journal of media psychology,1 -journal of medical and biological engineering,1 -journal of medical biography,1 -journal of medical engineering and technology,1 -journal of medical entomology,1 -journal of medical ethics,3 -journal of medical genetics,2 -journal of medical humanities,1 -journal of medical imaging and radiation oncology,1 -journal of medical internet research,2 -journal of medical microbiology,1 -journal of medical primatology,1 -journal of medical screening,1 -journal of medical systems,1 -journal of medical toxicology: official journal of the american college of medical toxicology,1 -journal of medical virology,1 -journal of medicinal and aromatic plant sciences,1 -journal of medicinal chemistry,3 -journal of medicinal food,1 -journal of medicinal plants research,0 -journal of medicine,1 -journal of medicine and philosophy,2 -journal of medieval and early modern studies,3 -journal of medieval history,3 -journal of medieval latin,1 -journal of mediterranean archaeology,2 -journal of mediterranean studies,1 -journal of membrane biology,1 -journal of membrane science,2 -journal of memory and language,2 -"journal of men, masculinities and spirituality",1 -journal of mens studies: a scholarly journal about men and masculinities,1 -journal of mental health,1 -journal of mental health policy and economics,1 -journal of mental imagery,1 -journal of metamorphic geology,2 -journal of microbiological methods,1 -journal of microbiology,1 -journal of microbiology and biology education,1 -journal of microbiology and biotechnology,1 -journal of microbiology immunology and infection,1 -journal of microelectromechanical systems,1 -journal of microencapsulation,1 -journal of micromechanics and microengineering,1 -journal of micro-nanolithography mems and moems,1 -journal of micropalaeontology,1 -journal of microscopy: oxford,1 -journal of microwave power and electromagnetic energy,1 -journal of middle east womens studies,1 -journal of midwifery and womens health,1 -journal of military ethics: normative aspects of the use of military force,1 -journal of military history,1 -journal of military studies,1 -journal of mind and behavior,1 -journal of mineralogical and petrological sciences,1 -journal of minimally invasive gynecology,1 -journal of mining and metallurgy section b: metallurgy,1 -journal of mining science,1 -journal of mixed methods research,2 -journal of mobile multimedia,1 -journal of modelling in management,1 -journal of modern african studies,2 -journal of modern applied statistical methods,1 -journal of modern craft,1 -journal of modern dynamics,1 -journal of modern european history,2 -journal of modern greek studies,2 -journal of modern history,3 -journal of modern jewish studies,1 -journal of modern literature,3 -journal of modern optics,1 -journal of molecular biology,2 -journal of molecular diagnostics,1 -journal of molecular endocrinology,1 -journal of molecular evolution,1 -journal of molecular graphics and modelling,1 -journal of molecular histology,1 -journal of molecular liquids,1 -journal of molecular medicine: jmm,2 -journal of molecular microbiology and biotechnology,1 -journal of molecular modeling,1 -journal of molecular neuroscience,1 -journal of molecular recognition,1 -journal of molecular spectroscopy,1 -journal of molecular structure,1 -journal of molluscan studies,1 -journal of monetary economics,3 -journal of money credit and banking,2 -journal of money laundering control,1 -journal of moral education,2 -journal of moral philosophy,2 -journal of motor behavior,1 -journal of mountain ecology,1 -journal of mountain science,1 -journal of multi-criteria decision analysis,1 -journal of multicultural counseling and development,1 -journal of multicultural discourses,1 -"journal of ethnic and cultural diversity in social work: innovations in theory, research and practice",1 -journal of multilingual and multicultural development,3 -journal of multinational financial management,1 -journal of multiple-valued logic and soft computing,1 -journal of multivariate analysis,2 -journal of muscle foods,1 -journal of muscle research and cell motility,1 -journal of musculoskeletal and neuronal interactions,1 -journal of musculoskeletal pain,1 -journal of musculoskeletal research,1 -journal of museum education,1 -journal of music and meaning,1 -journal of music teacher education,1 -journal of music theory,2 -journal of music theory pedagogy,1 -journal of music therapy,2 -journal of musicological research,2 -journal of musicology,3 -journal of muslim minority affairs,1 -journal of nano research,1 -journal of nanobiotechnology,1 -journal of nanomaterials,1 -journal of nanoparticle research,1 -journal of nanophotonics,1 -journal of nanoscience and nanotechnology,1 -journal of energy chemistry,1 -journal of natural history,1 -journal of natural medicines,1 -journal of natural products,1 -journal of navigation,1 -journal of near eastern studies,1 -journal of near infrared spectroscopy,1 -journal of negative results in biomedicine,1 -journal of nematology,1 -neulateinisches jahrbuch: journal of neo-latin language and literature,1 -journal of neonatal nursing,1 -journal of nepal medical association,1 -journal of nephrology,1 -journal of nervous and mental disease,1 -journal of network and computer applications,1 -journal of network and systems management,1 -journal of networks,0 -journal of neural engineering,1 -journal of neural transmission,1 -journal of neurochemistry,2 -journal of neurodevelopmental disorders,1 -journal of neuroendocrinology,1 -journal of neuroengineering and rehabilitation,1 -journal of neurogenetics,1 -journal of neuroimaging,1 -journal of neuroimmune pharmacology,1 -journal of neuroimmunology,1 -journal of neuroinflammation,1 -journal of neurointerventional surgery,2 -journal of neurolinguistics,2 -journal of neurological sciences: turkish,1 -journal of neurology,2 -journal of neurology neurosurgery and psychiatry,3 -journal of neuro-oncology,1 -journal of neuro-ophthalmology,1 -journal of neuropathology and experimental neurology,1 -journal of neurophysiology,2 -journal of neuropsychiatry and clinical neurosciences,1 -journal of neuropsychology,1 -journal of neuroradiology,1 -journal of neuroscience,3 -journal of neuroscience methods,1 -journal of neuroscience nursing,1 -journal of neuroscience research,1 -journal of neurosurgery,2 -journal of neurosurgery: pediatrics,1 -journal of neurosurgery: spine,1 -journal of neurosurgical anesthesiology,1 -journal of neurosurgical sciences,1 -journal of neurotherapy,1 -journal of neurotrauma,2 -journal of neurovirology,1 -journal of neutron research,1 -journal of new materials for electrochemical systems,1 -journal of new music research,3 -journal of new seeds,1 -journal of nietzsche studies,1 -journal of noncommutative geometry,1 -journal of non-crystalline solids,1 -journal of nondestructive evaluation,1 -journal of non-equilibrium thermodynamics,1 -journal of nonlinear and convex analysis,1 -journal of nonlinear mathematical physics,1 -journal of nonlinear optical physics and materials,1 -journal of nonlinear science,2 -journal of non-newtonian fluid mechanics,1 -journal of nonparametric statistics,1 -journal of nonprofit and public sector marketing,1 -journal of nonverbal behavior,1 -journal of nordic archaeological science,1 -journal of north african studies,1 -journal of northern studies,1 -journal of northwest atlantic fishery science,1 -journal of northwest semitic languages,1 -journal of nuclear cardiology,1 -journal of nuclear materials,2 -journal of nuclear medicine,3 -journal of nuclear medicine technology,1 -journal of nuclear science and technology,1 -journal of number theory,2 -journal of numerical mathematics,1 -journal of nursing administration,1 -journal of nursing care quality,1 -journal of nursing education,2 -journal of nursing management,3 -journal of nursing measurement,1 -journal of nursing scholarship,2 -journal of nutrition,2 -journal of nutrition and metabolism,1 -journal of nutrition education and behavior,1 -journal of nutrition in gerontology and geriatrics,1 -journal of nutrition health and aging,1 -journal of nutritional biochemistry,3 -journal of nutritional science and vitaminology,1 -journal of object technology,1 -journal of obstetrics and gynaecology,1 -journal of obstetrics and gynaecology research,1 -journal of occupational and environmental hygiene,1 -journal of occupational and environmental medicine,1 -journal of occupational and organizational psychology,2 -journal of occupational health,1 -journal of occupational health psychology,3 -journal of occupational rehabilitation,2 -journal of occupational science,1 -journal of oceanography,1 -journal of ocular pharmacology and therapeutics,1 -journal of offender rehabilitation,1 -journal of official statistics,1 -journal of offshore mechanics and arctic engineering,1 -journal of oil palm research,1 -journal of oleo science,0 -journal of oman studies,1 -journal of oncology pharmacy practice,1 -journal of online learning and teaching,1 -journal of operational oceanography,1 -journal of operational risk,1 -journal of operations management,3 -journal of operator theory,1 -journal of optical communications,1 -journal of optical communications and networking,2 -journal of optical technology,1 -journal of optics,1 -journal of optimization theory and applications,1 -journal of optoelectronics and advanced materials,1 -journal of oral and maxillofacial surgery,1 -journal of oral implantology,1 -journal of oral pathology and medicine,2 -journal of oral rehabilitation,2 -journal of organic chemistry,2 -journal of organizational and end user computing,1 -journal of organizational behavior,3 -journal of organizational behavior management,1 -journal of organizational change management,1 -journal of organizational computing and electronic commerce,1 -journal of organometallic chemistry,1 -journal of ornithology,1 -journal of orofacial orthopedics-fortschritte der kieferorthopadie,1 -journal of orofacial pain,1 -journal of orthodontics,1 -journal of orthopaedic and sports physical therapy,1 -international journal of orthopaedic and trauma nursing,1 -journal of orthopaedic research,2 -journal of orthopaedic science,1 -journal of orthopaedic surgery,1 -journal of orthopaedic trauma,1 -journal of orthopaedics and traumatology,1 -journal of otolaryngology-head and neck surgery,1 -journal of ovonic research,1 -journal of pacific history,2 -journal of paediatrics and child health,1 -journal of pain,2 -journal of pain and symptom management,1 -journal of paleolimnology,1 -journal of paleontology,1 -journal of palestine studies,1 -journal of palliative care,1 -journal of palliative medicine,1 -journal of parallel and distributed computing,2 -journal of parapsychology,1 -journal of parasitology,1 -journal of parenteral and enteral nutrition,1 -journal of park and recreation administration,1 -journal of partial differential equations,1 -journal of pathology,3 -journal of peace education,1 -journal of peace research,3 -journal of peacebuilding and development,1 -journal of peasant studies,3 -journal of pediatric and adolescent gynecology,1 -journal of pediatric endocrinology and metabolism,1 -journal of pediatric gastroenterology and nutrition,1 -journal of pediatric health care,1 -journal of pediatric hematology oncology,1 -journal of pediatric neurology,1 -journal of pediatric nursing,1 -journal of pediatric oncology nursing,1 -journal of pediatric ophthalmology and strabismus,1 -journal of pediatric orthopaedics,1 -journal of pediatric orthopaedics: part b,1 -journal of pediatric psychology,1 -journal of pediatric surgery,1 -journal of pediatrics,2 -female pelvic medicine and reconstructive surgery,1 -journal of pension economics and finance,1 -journal of pentecostal theology,1 -journal of peptide science,1 -journal of performance of constructed facilities,1 -journal of perianesthesia nursing,1 -journal of perinatal and neonatal nursing,1 -journal of perinatal medicine,1 -journal of perinatology,1 -journal of periodontal research,1 -journal of periodontology,2 -journal of personal selling and sales management,2 -journal of personality,3 -journal of personality and social psychology,3 -journal of personality assessment,1 -journal of personality disorders,2 -"educational assessment, evaluation and accountability",1 -journal of personnel psychology,1 -journal of pest science,1 -journal of pesticide science,1 -journal of petroleum geology,1 -journal of petrology,2 -journal of pharmaceutical and biomedical analysis,1 -journal of pain and palliative care pharmacotherapy,1 -journal of pharmaceutical sciences,2 -journal of pharmacokinetics and pharmacodynamics,1 -journal of pharmacological and toxicological methods,1 -journal of pharmacological sciences,1 -journal of pharmacology and experimental therapeutics,2 -journal of pharmacy and pharmaceutical sciences,1 -journal of pharmacy and pharmacology,1 -journal of pharmacy practice,1 -journal of phase equilibria and diffusion,1 -journal of phenomenological psychology,1 -journal of philosophical logic,3 -journal of philosophical research,1 -journal of philosophy,3 -journal of philosophy of education,3 -journal of phonetics,3 -journal of photochemistry and photobiology a: chemistry,1 -journal of photochemistry and photobiology b: biology,1 -journal of photochemistry and photobiology c: photochemistry reviews,1 -journal of photopolymer science and technology,1 -journal of phycology,1 -journal of physical activity and health,1 -journal of physical and chemical reference data,1 -journal of physical chemistry a,1 -journal of physical chemistry b,1 -journal of physical chemistry c,2 -journal of physical chemistry letters,3 -journal of physical oceanography,2 -journal of physical organic chemistry,1 -journal of physical studies,1 -journal of physical therapy science,0 -journal of physics a: mathematical and theoretical,2 -journal of physics and chemistry of solids,1 -journal of physics b: atomic molecular and optical physics,1 -journal of physics d: applied physics,1 -journal of physics g: nuclear and particle physics,2 -journal of physics: condensed matter,2 -japanese journal of physiological anthropology,1 -journal of physiological sciences,1 -journal of physiology and biochemistry,1 -journal of physiology and pharmacology,1 -journal of physiology: london,2 -journal of physiology: paris,1 -journal of physiotherapy,2 -journal of phytopathology,1 -journal of pidgin and creole languages,2 -journal of pineal research,2 -journal of plankton research,1 -journal of planning and environmental law,1 -journal of planning education and research,2 -journal of planning history,1 -journal of planning literature,2 -journal of plant biochemistry and biotechnology,1 -journal of plant biology,1 -journal of plant diseases and protection,1 -journal of plant ecology: uk,1 -journal of plant growth regulation,2 -journal of plant nutrition and soil science,1 -journal of plant pathology,1 -journal of plant physiology,1 -journal of plant registrations,1 -journal of plant research,1 -journal of plasma physics,1 -journal of plastic film and sheeting,1 -journal of plastic reconstructive and aesthetic surgery,1 -journal of poetry therapy,1 -journal of police crisis negotiations,1 -journal of policy analysis and management,3 -journal of policy and practice in intellectual disabilities,1 -journal of policy history,2 -journal of policy modeling,1 -"journal of policy research in tourism, leisure and events",1 -journal of politeness research: language behaviour culture,2 -journal of political and military sociology,1 -journal of political ecology: case studies in history and society,1 -journal of political economy,3 -journal of political ideologies,1 -journal of political marketing,1 -journal of political philosophy,3 -journal of politics,3 -journal of polymer engineering,1 -journal of polymer materials,1 -journal of polymer research,1 -journal of polymers and the environment,1 -journal of popular culture,2 -journal of popular film and television,1 -journal of popular music studies,2 -journal of population economics,2 -journal of porous materials,1 -journal of porous media,1 -journal of porphyrins and phthalocyanines,1 -journal of portfolio management,1 -journal of portuguese linguistics,2 -journal of positive behavior interventions,2 -journal of positive psychology,2 -journal of post keynesian economics,1 -journal of postcolonial writing,2 -journal of postgraduate medicine,1 -journal of poultry science,1 -journal of power,1 -journal of power sources,2 -journal of poverty,1 -journal of pragmatics,3 -journal of prehistoric religion,1 -journal of pre-raphaelite studies: new series,1 -journal of presbyterian history,1 -journal of pressure vessel technology: transactions of the asme,1 -journal of print and media technology research,1 -journal of private equity,1 -journal of private international law,3 -journal of probability and statistical science,1 -journal of probability and statistics,0 -journal of process control,2 -journal of product and brand management,1 -journal of product innovation management,3 -journal of productivity analysis,2 -journal of professional issues in engineering education and practice,1 -journal of professional nursing,1 -journal of progressive human services,1 -sis journal of projective psychology and mental health,1 -journal of promotion management,1 -journal of property investment and finance,1 -journal of propulsion and power,1 -journal of prosthetic dentistry,1 -journal of prosthetics and orthotics,1 -journal of prosthodontics,1 -journal of proteome research,1 -journal of proteomics,1 -journal of proteomics and bioinformatics,0 -journal of psychiatric and mental health nursing,2 -journal of psychiatric practice,1 -journal of psychiatric research,1 -journal of psychiatry and neuroscience,2 -journal of psychoactive drugs,1 -journal of psychoeducational assessment,1 -journal of psychohistory,1 -journal of psycholinguistic research,1 -journal of psychology,1 -journal of psychology and theology,1 -journal of psychopathology and behavioral assessment,1 -journal of psychopharmacology,1 -journal of psychophysiology,1 -journal of psychosocial nursing and mental health services,1 -journal of psychosocial oncology,1 -journal of psychosomatic obstetrics and gynecology,1 -journal of psychosomatic research,1 -journal of psychotherapy integration,1 -journal of public administration research and theory,3 -journal of public affairs,1 -"journal of public budgeting, accounting and financial management",1 -journal of public economic theory,1 -journal of public economics,3 -journal of public health,1 -journal of public health dentistry,1 -journal of public health management and practice,1 -journal of public health policy,1 -journal of public policy,2 -journal of public policy and marketing,2 -journal of public procurement,2 -journal of public relations research,1 -journal of pulp and paper science,1 -journal of purchasing and supply management,2 -journal of pure and applied algebra,1 -journal of quality in maintenance engineering,1 -journal of quality management,1 -journal of quality technology,1 -journal of quantitative analysis in sports,1 -journal of quantitative criminology,3 -journal of quantitative linguistics,1 -journal of quantitative spectroscopy and radiative transfer,1 -journal of quaternary science,1 -journal of quranic studies,2 -journal of radiation research,1 -journal of radio and audio media,1 -journal of radioanalytical and nuclear chemistry,1 -journal of radiological protection,1 -journal of raman spectroscopy,1 -journal of raptor research,1 -journal of rare earths,1 -journal of rational - emotive and cognitive - behavior therapy,1 -journal of real estate finance and economics,1 -journal of real estate literature,1 -journal of real estate portfolio management,1 -journal of real estate practice and education,1 -journal of real estate research,1 -journal of receptors and signal transduction,1 -journal of reconstructive microsurgery,1 -journal of refractive surgery,1 -journal of refugee studies,2 -journal of regional analysis and policy,1 -journal of regional science,2 -journal of regulatory economics,1 -journal of rehabilitation,1 -journal of rehabilitation medicine,2 -journal of rehabilitation research and development,1 -journal of reinforced plastics and composites,1 -journal of relationship marketing,1 -journal of religion,2 -journal of religion and health,1 -journal of religion and film,1 -journal of religion and popular culture,1 -journal of religion and society,1 -journal of religion in africa,1 -journal of religion in europe,2 -"journal of religion, disability and health",1 -journal of religious education,1 -journal of religious ethics,3 -"journal of religion, spirituality and aging",1 -journal of religious history,2 -journal of renal care,1 -journal of renal nutrition,1 -journal of renewable and sustainable energy,1 -relp: a journal of renewable energy law and policy,1 -journal of reproduction and development,1 -journal of reproductive and infant psychology,1 -journal of reproductive immunology,1 -journal of reproductive medicine,1 -journal of research and practice in information technology,1 -journal of research for consumers,0 -journal of research in architecture and planning,1 -journal of research in childhood education,1 -journal of research in crime and delinquency,3 -journal of research in international education,1 -journal of research in marketing and entrepreneurship,1 -journal of research in medical sciences,1 -journal of research in music education,2 -journal of research in nursing,1 -journal of research in personality,2 -journal of research in reading,2 -journal of research in rural education,1 -journal of research in science teaching,3 -journal of research in special educational needs,1 -journal of research of the national institute of standards and technology,1 -journal of research on adolescence,2 -journal of research practice,1 -journal of retailing,3 -journal of retailing and consumer services,1 -journal of revenue and pricing management,1 -journal of rheology,2 -journal of rheumatology,1 -journal of risk,1 -journal of risk and insurance,2 -journal of risk and uncertainty,2 -journal of risk model validation,1 -journal of risk research,1 -journal of ritual studies,1 -journal of roman archaeology,3 -journal of roman military equipment studies,1 -journal of roman pottery studies,1 -journal of roman studies,3 -journal of romance studies,1 -journal of rubber research,1 -journal of rural and community development,1 -journal of rural health,1 -journal of rural studies,2 -journal of russian laser research,1 -journal of stem education: innovations and research,1 -journal of safety research,2 -journal of sandwich structures and materials,1 -"journal of satisfiability, boolean modeling and computation",1 -journal of saudi chemical society,0 -journal of scandinavian cinema,2 -journal of scheduling,1 -journal of schenkerian studies,1 -journal of scholarly publishing,1 -journal of school health,1 -journal of school nursing,1 -journal of school psychology,1 -journal of school violence,1 -journal of science and medicine in sport,2 -journal of science communication,1 -journal of science education and technology,1 -journal of science teacher education,2 -journal of scientific computing,1 -journal of scottish historical studies,1 -journal of scottish philosophy,1 -journal of screenwriting,2 -journal of sea research,1 -journal of second language writing,2 -journal of sedimentary research,1 -journal of seismic exploration,1 -journal of seismology,1 -journal of semantics,3 -journal of semiconductors,1 -journal of semitic studies,2 -journal of sensory studies,1 -journal of separation science,1 -journal of service management,2 -journal of service research,3 -journal of services marketing,1 -journal of seventeenth century music,1 -journal of sex and marital therapy,1 -journal of sex research,2 -journal of sexual aggression,1 -journal of sexual medicine,1 -journal of shellfish research,1 -journal of shia islamic studies,1 -journal of ship research,2 -journal of shoulder and elbow surgery,1 -journal of signal processing systems for signal image and video technology,1 -journal of singing,1 -journal of slavic linguistics,2 -journal of slavic military studies,1 -journal of sleep research,1 -journal of small animal practice,1 -journal of small business and enterprise development,1 -journal of small business and entrepreneurship,1 -journal of small business management,2 -journal of social and clinical psychology,1 -journal of social and personal relationships,1 -journal of social archaeology,3 -journal of social distress and the homeless,1 -journal of social history,3 -journal of social issues,2 -journal of social philosophy,2 -journal of social policy,3 -journal of social psychology,1 -journal of social science education,2 -journal of social security law,1 -journal of social service research,1 -journal of social structure,1 -journal of social work,1 -journal of social work education,1 -journal of social work in disability and rehabilitation,1 -journal of social work practice,2 -journal of social work practice in the addictions,1 -journal of social work values and ethics,1 -journal of sociolinguistics,3 -journal of sociology,1 -journal of sociology and social welfare,1 -journal of software,0 -journal of soil and water conservation,1 -journal of soils and sediments,1 -journal of solar energy engineering: transactions of the asme,1 -journal of sol-gel science and technology,1 -journal of solid state chemistry,1 -journal of solid state electrochemistry,1 -journal of solution chemistry,1 -journal of song-yuan studies,1 -journal of sound and vibration,2 -journal of south american earth sciences,1 -journal of south asia women studies,1 -journal of south asian and middle eastern studies,1 -journal of south asian development,1 -journal of southeast asian architecture,1 -journal of southeast asian studies,2 -journal of southern african studies,2 -journal of southern history,1 -journal of southern religion,1 -journal of space syntax,1 -journal of spacecraft and rockets,1 -journal of spacecraft technology,1 -journal of spanish cultural studies,2 -journal of spatial hydrology,1 -journal of spatial information science,1 -journal of spatial science,1 -journal of special education,3 -journal of specialized translation,1 -journal of spectral theory,1 -"journal of speculative philosophy: a quarterly journal of history, criticism, and imagination",1 -journal of speech and language pathology and applied behavior analysis,1 -"journal of speech, language, and hearing research",3 -journal of spinal cord medicine,1 -journal of spirituality in mental health,1 -journal of sport and exercise psychology,2 -journal of sport and social issues,1 -journal of sport history,1 -journal of sport management,1 -journal of sport rehabilitation,1 -journal of sport tourism,1 -journal of sports economics,1 -journal of sports medicine and physical fitness,1 -journal of sports science and medicine,1 -journal of sports sciences,1 -journal of stained glass,1 -journal of statistical computation and simulation,1 -journal of statistical mechanics: theory and experiment,1 -journal of statistical physics,2 -journal of statistical planning and inference,1 -journal of statistical research,1 -journal of statistical software,2 -journal of statistical theory and applications,1 -journal of statistical theory and practice,1 -journal of statistics and applications,1 -journal of statistics and management systems,1 -journal of statistics education,1 -journal of statistics: advances in theory and applications,0 -journal of steroid biochemistry and molecular biology,1 -journal of stored products research,1 -journal of strain analysis for engineering design,1 -journal of strategic information systems,3 -journal of strategic marketing,1 -journal of strategic studies,1 -journal of strength and conditioning research,1 -journal of stroke and cerebrovascular diseases,1 -journal of structural and functional genomics,1 -journal of structural biology,1 -journal of structural chemistry,1 -journal of structural engineering: asce,2 -journal of structural geology,1 -"technology, instruction, cognition and learning",1 -journal of studies in international education,2 -journal of studies on alcohol and drugs,1 -journal of submicroscopic cytology and pathology,1 -journal of substance abuse treatment,1 -journal of substance use,1 -journal of sulfur chemistry,1 -journal of supercomputing,1 -journal of superconductivity and novel magnetism,1 -journal of supercritical fluids,1 -journal of superhard materials,1 -journal of supply chain management,3 -journal of supreme court history,1 -journal of surfactants and detergents,1 -journal of surgical education,1 -journal of surgical oncology,1 -journal of surgical research,1 -journal of surveying engineering: asce,1 -journal of sustainable forestry,1 -journal of sustainable tourism,3 -journal of swine health and production,1 -journal of symbolic computation,1 -journal of symbolic logic,2 -journal of symplectic geometry,1 -journal of synchrotron radiation,2 -journal of synthetic organic chemistry japan,0 -journal of system design and dynamics,1 -journal of systematic palaeontology,1 -journal of systematics and evolution,1 -journal of systemic therapies,1 -"journal of systemics, cybernetics and informatics",0 -journal of systems and software,3 -journal of systems architecture,2 -journal of systems engineering and electronics,1 -journal of systems science and complexity,1 -"journal of targeting, measurement and analysis for marketing",1 -journal of taxation,1 -journal of teacher education,3 -journal of teacher education for sustainability,1 -journal of teaching and learning,1 -journal of teaching in international business,1 -journal of teaching in physical education,2 -journal of teaching in social work,1 -journal of teaching in travel and tourism,1 -journal of technical writing and communication,1 -journal of technology and teacher education,1 -journal of technology education,1 -journal of technology in human services,1 -journal of technology management and innovation,1 -journal of technology transfer,2 -"journal of technology, learning, and assessment",1 -journal of telemedicine and telecare,1 -journal of terramechanics,1 -journal of testing and evaluation,1 -journal of texture studies,1 -journal of the academy of marketing science,3 -journal of the acm,3 -journal of the acoustical society of america,3 -journal of the air and waste management association,1 -journal of the american academy of audiology,1 -journal of the american academy of child and adolescent psychiatry,3 -journal of the american academy of dermatology,2 -journal of the american academy of nurse practitioners,1 -journal of the american academy of orthopaedic surgeons,1 -journal of the american academy of psychiatry and the law,1 -psychodynamic psychiatry,1 -journal of the american academy of religion,3 -journal of the american animal hospital association,1 -journal of the american association for laboratory animal science,1 -journal of the american board of family medicine,1 -journal of the american ceramic society,2 -journal of the american chemical society,3 -journal of the american chiropractic association,1 -journal of the american college of cardiology,3 -journal of the american college of nutrition,1 -journal of the american college of surgeons,3 -journal of the american dental association,1 -journal of the academy of nutrition and dietetics,1 -journal of the american geriatrics society,3 -journal of the american helicopter society,1 -journal of the american institute for conservation,2 -journal of the american leather chemists association,1 -journal of the american liszt society,1 -journal of the american mathematical society,3 -journal of the american medical directors association,2 -journal of the american medical informatics association,2 -journal of the american musical instrument society,1 -journal of the american musicological society,3 -journal of the american oil chemists society,1 -journal of the american oriental society,1 -journal of the american pharmacists association,1 -journal of the american planning association,2 -journal of the american podiatric medical association,1 -journal of the american pomological society,1 -journal of the american psychiatric nurses association,1 -journal of the american psychoanalytic association,1 -journal of the american research center in egypt,1 -journal of the american society for horticultural science,1 -journal of the association for information science and technology,3 -journal of the american society for mass spectrometry,1 -journal of the american society for physical research,1 -journal of the american society of brewing chemists,1 -journal of the american society of echocardiography,1 -journal of the american society of nephrology,3 -journal of the american statistical association,3 -journal of the american water resources association,1 -journal of the anatomical society of india,1 -journal of the asia pacific economy,1 -journal of the association for information systems,3 -journal of the association for the study of australian literature,1 -journal of the astronautical sciences,1 -journal of the atmospheric sciences,1 -journal of the audio engineering society,2 -journal of the australian mathematical society,1 -journal of the australian war memorial,1 -journal of the balkan tribological association,1 -journal of the brazilian chemical society,0 -journal of the brazilian society of mechanical sciences and engineering,1 -conference transactions - british archaeological association,1 -menopause international,1 -journal of the british society for phenomenology,3 -journal of the canadian dental association,1 -journal of the canadian society of forensic science,1 -journal of the chemical society of pakistan,0 -journal of the chilean chemical society,0 -journal of the chinese chemical society,0 -journal of the chinese society of mechanical engineers,1 -journal of the copyright society of the usa,1 -journal of the cork historical and archaeological society,1 -journal of the david collection,1 -journal of the early book society,1 -journal of the early republic,1 -journal of the economic and social history of the orient,2 -journal of the electrochemical society,1 -journal of the energy institute,1 -journal of the entomological research society,1 -journal of the european academy of dermatology and venereology,2 -journal of the european ceramic society,2 -journal of the european economic association,3 -journal of the european mathematical society,3 -journal of the european optical society: rapid publications,1 -journal of the evangelical theological society,1 -journal of the experimental analysis of behavior,1 -journal of the faculty of agriculture kyushu university,1 -journal of the fantastic in the arts,1 -journal of the formosan medical association,1 -journal of the franklin institute: engineering and applied mathematics,1 -journal of the geological society,1 -journal of the geological society of india,1 -journal of the geological society of japan,1 -journal of the gilded age and progressive era,2 -hattoria,1 -journal of the historical society,0 -journal of the history of biology,2 -journal of the history of childhood and youth,2 -journal of the history of collections,1 -journal of the history of economic thought,1 -journal of the history of ideas,3 -journal of the history of international law,1 -journal of the history of medicine and allied sciences,2 -journal of the history of philosophy,3 -journal of the history of sexuality,1 -journal of the history of the behavioral sciences,1 -journal of the history of the neurosciences,1 -journal of the iest,1 -journal of the indian chemical society,0 -journal of the indian society of remote sensing,1 -journal of the indian statistical association,1 -journal of the institute of asian studies,1 -journal of the institute of brewing,1 -journal of the institute of mathematics of jussieu,2 -journal of the institute of telecommunications professionals,1 -journal of the international association for shell and spatial structures,1 -journal of the international association of buddhist studies,1 -journal of the international association of tibetan studies,1 -journal of the international neuropsychological society,2 -journal of the international phonetic association,2 -journal of the international society of sports nutrition,1 -journal of the iranian chemical society,1 -journal of the iranian statistical society,1 -journal of the japan institute of metals,1 -journal of the japan petroleum institute,1 -journal of the japan statistical society,1 -journal of the japanese and international economies,1 -journal of the japanese physical therapy association,1 -journal of the japanese society for food science and technology-nippon shokuhin kagaku kogaku kaishi,1 -journal of the japanese society for horticultural science,1 -journal of the kansas entomological society,1 -journal of the korean mathematical society,1 -journal of the korean regional development association,1 -journal of the korean society for applied biological chemistry,1 -journal of the korean statistical society,1 -journal of the learning sciences,3 -journal of the lepidopterists society,1 -journal of the london mathematical society: second series,3 -journal of the lute society of america,1 -journal of the marine biological association of the united kingdom,1 -journal of the mass spectrometry society of japan,0 -journal of the mathematical society of japan,1 -journal of the mechanical behavior of biomedical materials,1 -journal of the mechanics and physics of solids,3 -journal of the medical library association,1 -journal of the meteorological society of japan,1 -journal of the mexican chemical society,0 -journal of the midwest modern language association,1 -journal of the musical arts in africa,1 -journal of the national cancer institute,3 -journal of the national cancer institute: monographs,1 -journal of the national comprehensive cancer network,2 -journal of the national medical association,1 -journal of the neurological sciences,1 -freshwater science,1 -journal of the north atlantic,1 -journal of the operational research society,2 -journal of the operations research society of japan,1 -journal of the optical society of america a: optics image science and vision,1 -journal of the optical society of america b: optical physics,1 -journal of the pancreas,0 -journal of the patent and trademark office society,1 -journal of the peripheral nervous system,1 -journal of the philosophy of sport,2 -journal of the physical society of japan,1 -journal of the polynesian society,1 -journal of the professional association for cactus development,1 -journal of the renin-angiotensin-aldosterone system,1 -journal of the royal anthropological institute,3 -journal of the anthropological society of oxford,1 -journal of the royal asiatic society,1 -journal of the royal musical association,3 -journal of the royal society interface,1 -journal of the royal society of antiquaries of ireland,1 -journal of the royal society of medicine,1 -journal of the royal statistical society series a: statistics in society,2 -journal of the royal statistical society series b: statistical methodology,3 -journal of the royal statistical society series c: applied statistics,2 -journal of the science of food and agriculture,1 -journal of the serbian chemical society,0 -journal of the short story in english,1 -smpte motion imaging journal,1 -journal of the society for american music,1 -journal of the society for information display,1 -journal of the society for musicology in ireland,1 -journal of the society of architectural historians,3 -journal of the society of christian ethics,1 -journal of the society of leather technologists and chemists,1 -journal of the south african institute of mining and metallurgy,1 -journal of the south african institution of civil engineering,1 -journal of the south african veterinary association,1 -journal of the southwest,1 -journal of the taiwan institute of chemical engineers,1 -journal of the textile institute,1 -journal of the warburg and courtauld institutes,3 -journal of the west,1 -journal of the world aquaculture society,1 -journal of theological interpretation,1 -journal of theological studies,3 -journal of theology for southern africa,1 -journal of theoretical and computational chemistry,1 -journal of theoretical and applied electronic commerce research,1 -journal of theoretical and philosophical psychology,1 -journal of theoretical archaeology,1 -journal of theoretical biology,2 -journal of theoretical politics,2 -journal of theoretical probability,1 -journal of therapeutic horticulture,1 -journal of thermal analysis and calorimetry,1 -journal of thermal biology,1 -journal of thermal science,1 -journal of thermal science and technology issn,1 -journal of thermal spray technology,1 -journal of thermal stresses,1 -journal of thermophysics and heat transfer,1 -journal of thermoplastic composite materials,1 -journal of thoracic and cardiovascular surgery,2 -journal of thoracic imaging,1 -journal of thoracic oncology,2 -journal of thrombosis and haemostasis,1 -journal of thrombosis and thrombolysis,1 -journal of time series analysis,2 -journal of time series econometrics,1 -journal of tissue engineering and regenerative medicine,1 -journal of topology,2 -journal of topology and analysis,1 -journal of tourism and cultural change,1 -journal of tourism history,2 -journal of toxicologic pathology,1 -journal of toxicological sciences,1 -journal of toxicology and environmental health: part b: critical reviews,1 -journal of trace elements in medicine and biology,1 -journal of traditional medicines,1 -journal of transcultural nursing,1 -journal of transformative education,1 -journal of translation,1 -journal of translational medicine,1 -journal of transnational management,1 -journal of transport economics and policy,1 -journal of transport geography,2 -journal of transport history,1 -journal of transportation systems engineering and information technology,1 -journal of trauma and dissociation,1 -journal of trauma and acute care surgery,1 -journal of traumatic stress,1 -journal of travel and tourism marketing,1 -journal of travel medicine,2 -journal of travel research,3 -journal of tribology: transactions of the asme,1 -journal of tropical ecology,1 -journal of tropical forest science,1 -journal of tropical meteorology,1 -journal of tropical pediatrics,1 -journal of turbomachinery: transactions of the asme,1 -journal of turbulence,1 -journal of ultrasound in medicine,1 -journal of universal computer science,1 -journal of university teaching and learning practice,1 -journal of urban affairs,2 -journal of urban design,2 -journal of urban economics,3 -journal of urban ethnology,1 -journal of urban health: bulletin of the new york academy of medicine,1 -journal of urban history,2 -journal of urban planning and development: asce,1 -journal of urban technology,1 -journal of urology,2 -journal of usability studies,1 -journal of vacation marketing,1 -journal of vacuum science and technology a,1 -"journal of vacuum science and technology. b, nanotechnology & microelectronics",1 -journal of value inquiry,2 -journal of war and culture studies,1 -journal of vascular access,1 -journal of vascular and interventional radiology,1 -journal of vascular nursing,1 -journal of vascular research,1 -journal of vascular surgery,2 -journal of water and environment technology,1 -journal of water and health,1 -journal of water chemistry and technology,1 -journal of water resources planning and management: asce,1 -journal of waterway port coastal and ocean engineering: asce,1 -journal of wealth management,1 -journal of web engineering,1 -journal of web semantics,1 -journal of vector borne diseases,1 -journal of vector ecology,1 -journal of vegetation science,1 -journal of venomous animals and toxins including tropical diseases,1 -journal of vertebral subluxation research,1 -journal of vertebrate paleontology,1 -journal of vestibular research: equilibrium and orientation,1 -journal of veterinary behavior: clinical applications and research,1 -journal of veterinary dentistry,1 -journal of veterinary diagnostic investigation,1 -journal of veterinary emergency and critical care,1 -journal of veterinary internal medicine,2 -journal of veterinary medical education,1 -journal of veterinary medical science,1 -journal of veterinary pharmacology and therapeutics,2 -journal of veterinary science,1 -journal of wetland archaeology,2 -journal of vibration and acoustics: transactions of the asme,1 -journal of vibration and control,1 -journal of vibroengineering,1 -journal of victorian culture,1 -journal of wildlife diseases,1 -journal of wildlife management,1 -journal of william morris studies,1 -journal of wind engineering and industrial aerodynamics,1 -journal of wine economics,1 -journal of wine research,1 -journal of vinyl and additive technology,1 -journal of viral hepatitis,1 -journal of virological methods,1 -journal of virology,2 -journal of virtual reality and broadcasting,1 -journal of vision,2 -visual anthropology review,1 -journal of visual art practice,1 -journal of visual communication and image representation,2 -journal of visual culture,3 -journal of visual impairment and blindness,1 -journal of visual literacy,1 -journal of visualization,1 -journal of vocational behavior,2 -journal of vocational education and training,2 -journal of vocational rehabilitation,1 -journal of voice,2 -journal of volcanology and geothermal research,1 -journal of volcanology and seismology,1 -journal of women and aging,1 -journal of women politics and policy,1 -journal of womens health,1 -journal of women's history,3 -journal of wood chemistry and technology,1 -journal of wood science,1 -journal of workplace learning,1 -journal of world business,3 -journal of world history,3 -journal of world investment and trade,1 -journal of world prehistory,3 -journal of world trade,2 -journal of world-systems research,1 -journal of wound care,1 -journal of wound ostomy and continence nursing,1 -journal of wuhan university of technology: materials science edition,1 -journal of x-ray science and technology,1 -journal of youth and adolescence,2 -journal of youth and theology,1 -journal of youth studies,2 -journal of zhejiang university: science a,1 -journal of zoo and wildlife medicine,1 -journal of zoological systematics and evolutionary research,1 -journal of zoology,1 -journal on chain and network science,1 -journal on ethnopolitics and minority issues in europe,1 -journal on multimodal user interfaces,1 -journalism,3 -journalism and mass communication quarterly,2 -journalism and communication monographs,1 -journalism and mass communication educator,1 -journalism history,1 -journalism practice,2 -journalism studies,3 -journalistica,1 -journals of gerontology series a: biological sciences and medical sciences,3 -journals of gerontology series b: psychological sciences and social sciences,2 -joyce studies annual,1 -"jp journal of algebra, number theory and applications",1 -jpc: journal of planar chromatography: modern tlc,1 -jpt: journal of petroleum technology,1 -jsls: journal of the society of laparoendoscopic surgeons,1 -"jsme international journal, series a: solid mechanics and material engineering",1 -"jsme international journal, series b: fluids and thermal engineering",1 -"jsme international journal, series c: mechanical systems, machine elements and manufacturing",1 -judaica,1 -judaica bohemiae,1 -judgment and decision making,1 -judicature,1 -junctures: the journal for thematic dialogue,1 -jung journal: culture and psyche,1 -juridisk tidskrift,1 -jurimetrics,1 -jurist: studies in church law and ministry,1 -juristen,1 -juristenzeitung,1 -jussens venner,1 -just labor,1 -justice quarterly,3 -juvenile and family court journal,1 -juznoslovenski filolog,1 -jysk arkaeologisk selskabs skrifter,1 -"k og k: kultur og klasse, kritik og kulturanalyse",1 -kabbalah: journal for the study of jewish mystical texts,1 -kacike: journal of caribbean amerindian history and anthropology,1 -kadmos: zeitschrift fur vor- und fruhgriechische epigraphik,1 -kafkas universitesi veteriner fakultesi dergisi,1 -kagaku kogaku ronbunshu,1 -kalbos kultura,1 -kalevalaseuran vuosikirja,1 -kansantaloudellinen aikakauskirja,1 -kansatieteellinen arkisto,1 -kantian review,2 -kant-studien,3 -kardiologia polska,1 -kardiologiya,1 -karjalan teologisen seuran julkaisuja,1 -karolinska förbundets årsskrift,1 -karstenia: the mycological journal,1 -kart og plan,1 -karthago,1 -kartographische nachrichten,1 -kasvatus ja aika,1 -kasvatus,2 -keats-shelley journal,1 -keats-shelley review,1 -keel ja kirjandus,1 -kenchreai: eastern port of corinth,1 -kennedy institute of ethics journal,1 -kentron: revue du monde antique et de psychologie historique,1 -kermes: arte e tecnica del restauro,1 -kernos,1 -kerntechnik,1 -kerygma und dogma: zeitschrift fur theologische forschung und kirchliche lehre,3 -kew bulletin,1 -key engineering materials,1 -kgk: kautschuk gummi kunststoffe,1 -kidney and blood pressure research,1 -kidney international,3 -kieler bletter zur volkskunde,1 -kieler milchwirtschaftliche forschungsberichte,1 -kierkegaard studies,1 -kinder- und jugendliteraturforschung,1 -kinema: a journal for film and audiovisual media,1 -kinematics and physics of celestial bodies,1 -kinesiology,1 -kinetic and related models,1 -kinetics and catalysis,1 -kings college london medieval studies,1 -kirchenmusikalisches jahrbuch,1 -kirchliche zeitgeschichte,2 -kirjallisuudentutkimuksen aikakauslehti avain,2 -kko:n ratkaisut kommentein,0 -klassisk forum,1 -kleintierpraxis,1 -kleist-jahrbuch,1 -klinik psikofarmakoloji bulteni-bulletin of clinical psychopharmacology,1 -klinische monatsblatter fur augenheilkunde,1 -klinische neurophysiologie,1 -klinische padiatrie,1 -klinisk sygepleje,1 -klio,1 -knee,1 -knee surgery sports traumatology arthroscopy,1 -knjizevna smotra,1 -knowledge and information systems,2 -knowledge and management of aquatic ecosystems,1 -knowledge and process management,1 -proceedings of the international conference on knowledge capture,1 -knowledge engineering review,2 -philosophy & technology,2 -knowledge management research and practice,1 -knowledge organization,2 -knowledge-based systems,2 -kobunshi ronbunshu,0 -kodai mathematical journal,1 -kodikas/code: ars semeiotica,1 -kognitiivinen psykoterapia: tieteellinen verkkolehti,1 -kokalos,1 -kolner jahrbuch,1 -kolner zeitschrift fur soziologie und sozialpsychologie,1 -komparatistik,1 -kona powder and particle journal,1 -konsthistorisk tidskrift,3 -konteksty: polska sztuka ludowa,1 -korea journal,1 -korea observer,1 -korea-australia rheology journal,1 -korean journal for food science of animal resources,1 -korean journal of chemical engineering,1 -korean journal of defense analysis,1 -korean journal of horticultural science and technology,1 -korean journal of medical history,1 -korean journal of metals and materials,1 -korean journal of radiology,1 -korean studies,1 -korrozios figyelo,1 -kosmopolis,1 -kosmorama,1 -kovove materialy-metallic materials,1 -kratylos: kritisches berichts- und rezensionsorgan fur indogermanische und allgemeine sprachwissenschaft,1 -kriminalistik,1 -kriminologisches journal,1 -krisis: tijdschrift voor actuele filosofie,1 -kriterion: zeitschrift fur philosophie,1 -kriterion: revista de filosofia,1 -kritik,1 -kritika kultura,1 -kritika: explorations in russian and eurasian history,2 -kritische berichte,1 -kritisk juss,1 -kronika,1 -kronoscope: journal for the study of time,1 -ksii transactions on internet and information systems,1 -"ktema: civilisations de l orient, de la grece et de rome antiques",1 -k-theory,1 -cultural history - kulttuurihistoria,1 -kulttuurintutkimus,2 -kultura i społeczeństwo,1 -kultura slova,1 -kulturella perspektiv: svensk etnologisk tidsskrift,1 -kulturens frontlinjer,1 -kulutustutkimus.nyt,1 -kuml: arbog for jysk arkaeologisk selskab,1 -kunde: zeitschrift fur ur- und fruhgeschichte,0 -kungliga skogs- och lantbruksakademiens tidskrift,1 -kunst og kultur,1 -kunstchronik,1 -kunsthåndverk,1 -kuntoutus,1 -kutadgubilig: felsefe - bilim arastirmalari dergisi,1 -kwartalnik historii nauki i techniki - kwartalnyi zhurnal istorii nauki i tekhniki -,1 -kwartalnik historyczny,1 -kwartalnik neofilologiczny,1 -"kvinder, kon og forskning",1 -tidskrift för genusvetenskap,1 -kybernetes,1 -kybernetika,1 -kyklos,1 -kyrkohistorisk årsskrift,1 -kyushu journal of mathematics,1 -lavenc,1 -azti arrantza,1 -la bibliofilia: rivista di storia del libro e di bibliografia,1 -la nuova critica: rivista di scienze dell uomo e di filosofia delle scienze,1 -la revue lisa,1 -lab animal,1 -lab on a chip,2 -labmedicine,1 -labor history,3 -labor studies journal,1 -labor: studies in the working class history of the americas,1 -laboratoriumsmedizin-journal of laboratory medicine,1 -laboratory animals,1 -laboratory hematology,1 -laboratory investigation,1 -labour,1 -labour and industry: a journal of the social and economic relations of work,1 -labour economics,2 -labour history,1 -labour history review,1 -labour-le travail,1 -lafrica romana,1 -lake and reservoir management,1 -lakes and reservoirs: research and management,1 -lakimies,2 -lambda nordica: tidskrift om homosexualitet,1 -lampas: tijdschrift voor nederlandse classici,1 -the lancet,3 -the lancet infectious diseases,3 -the lancet neurology,3 -the lancet oncology,3 -land degradation and development,1 -journal of property research,1 -land economics,1 -land use policy,2 -landfall,1 -"landolt-bornstein: group i elementary particles, nuclei and atoms",1 -landolt-bornstein: group ii molecules and radicals,1 -landolt-bornstein: group iii condensed matter,1 -landolt-bornstein: group iv physical chemistry,1 -landolt-bornstein: group vi astronomy and astrophysics,1 -landolt-bornstein: group vii biophysics,1 -landolt-bornstein: group viii advanced materials and technologies,1 -landscape and ecological engineering,1 -landscape and urban planning,3 -landscape ecology,2 -landscape history,2 -landscape journal,1 -landscape online,1 -landscape research,2 -landscape review,1 -landscapes,1 -landslides,2 -landwirtschaftliche forschung,1 -le langage et lhomme,1 -langage et societe,1 -langages,3 -langenbecks archives of surgery,1 -langmuir,2 -language,3 -language and communication,3 -language acquisition,2 -language acquisition and language disorders,1 -language and computers,1 -language and education,2 -language and intercultural communication,2 -language and linguistics,1 -language and linguistics compass,1 -language and literature,3 -language and speech,3 -language arts,1 -language assessment quarterly,1 -language awareness,1 -language documentation and conservation,2 -language in society,3 -language learning,3 -language learning and language teaching,1 -language learning and technology,2 -language learning journal,1 -language matters,1 -language policy,3 -language problems and language planning,1 -language resources and evaluation,3 -language sciences,3 -language speech and hearing services in schools,1 -language teaching,3 -language teaching research,3 -language testing,2 -language variation and change,3 -"language, context and cognition",1 -"language, interaction and aquisition",1 -language@internet,1 -languages in contrast: international journal for contrastive linguistics:,1 -languages of the world,1 -langue francaise,3 -lannee stendhalienne,1 -large animal review,1 -laryngo-rhino-otologie,1 -laryngoscope,2 -laser and photonics reviews,3 -laser and particle beams,1 -laser chemistry,1 -laser physics,1 -laser physics letters,1 -lasers in engineering,1 -lasers in medical science,1 -lasers in surgery and medicine,1 -late antique archaeology,1 -late imperial china,1 -later medieval europe,1 -laterality,1 -latin american and caribbean ethnic studies,1 -latin american antiquity,2 -latin american applied research,1 -latin american indian literatures journal,1 -latin american journal of aquatic research,1 -latin american journal of solids and structures,1 -latin american literary review,1 -latin american music review,1 -latin american perspectives,1 -latin american politics and society,1 -latin american research review,1 -latin american theatre review,1 -latin trade,1 -latino studies,1 -latinoamerica: anuario de estudios latinoamericanos,1 -latomus,2 -latvijas arhivi,1 -latvijas universitetes raksti,1 -law and literature,2 -law and policy,2 -law and society review,3 -law and business review of the americas,1 -law and contemporary problems,2 -law and critique,2 -law and history review,2 -law and human behavior,2 -law and philosophy,3 -georgetown journal of international law,1 -law and practice of international courts and tribunals,1 -law and social inquiry: journal of the american bar foundation,1 -law in eastern europe,1 -law library journal,1 -law quarterly review,2 -law text culture,1 -"law, culture and the humanities",1 -"law, environment and development journal",1 -"law, probability and risk: a journal of reasoning under uncertainty",1 -"law, social justice and global development",1 -laval theologique et philosophique,1 -"marburger beiträge zur antiken handels-, wirtschafts- und sozialgeschichte",1 -lc gc europe,0 -lc gc north america,0 -le droit maritime francais,1 -leadership,1 -leadership and management in engineering,1 -leadership and organization development journal,1 -leadership and policy in schools,1 -leadership in health services,1 -leadership quarterly,3 -learned publishing,1 -learning and behavior,1 -learning and memory,2 -learning and individual differences,3 -learning and instruction,3 -learning and motivation,1 -learning and teaching in higher education,1 -learning and teaching: the international journal of higher education in the social sciences,1 -learning disabilities research and practice,2 -learning disability quarterly,2 -learning environments research,2 -learning inquiry,1 -"learning, media and technology",1 -learning organization,1 -lebende sprachen,1 -lectio difficilior,1 -lecture notes in computer science,1 -lecture notes in control and information sciences,1 -lecture notes in economics and mathematical systems,1 -lecture notes in informatics,1 -lecture notes in mathematics,1 -lecture notes in physics,1 -lecture notes in pure and applied mathematics,1 -leeds international classical studies,1 -leeds studies in english,1 -legacy,1 -legal and criminological psychology,2 -legal aspects of international organization,1 -legal ethics,1 -legal information management,1 -legal issues of economic integration,1 -legal medicine,1 -legal studies,2 -legal theory,3 -legislative studies quarterly,3 -legon journal of sociology,1 -legume research,1 -leibniz review,1 -leiden journal of international law,2 -leisure sciences,2 -leisure studies,1 -lelkipásztor: evangélikus lelkészi szakfolyóirat,1 -lendemains: etudes comparees sur la france,1 -lengas: revue sociolinguistique,1 -lenguas modernas,1 -lenseignement mathematique,1 -leonardo,3 -leonardo electronic almanac,1 -digest of the leos summer topical meetings,1 -leprosy review,1 -ler historia,1 -les cahiers du rifal,1 -les houches,1 -leshonenu,1 -lessing yearbook,1 -lethaia,1 -letras cubanas,1 -letras femeninas,1 -letteratura italiana antica,1 -letterature d america,1 -lettere italiane,2 -letters in applied microbiology,1 -letters in drug design and discovery,1 -letters in mathematical physics,1 -letters in organic chemistry,1 -leukemia,3 -leukemia & lymphoma,1 -leukemia research,1 -leukos,1 -leuvense bijdragen: tijdschrift voor germaanse filologie,1 -levant,2 -leviathan: zeitschrift fur sozialwissenschaft,1 -lex localis: journal of local self: government,1 -lexicographica: internationales jahrbuch fur lexikographie,1 -lexicographica: series maior: supplementbände zum internationalen jahrbuch für lexikographie,1 -lexicometrica,1 -lexiconordica,1 -lexikos,0 -lexique,1 -lexis,1 -lexis: revista de linguistica y literatura,1 -lhistoire,1 -lianes,1 -lias: journal of early modern intellectual culture and its sources,1 -libertarian papers,1 -liberte,1 -information and culture,1 -library,1 -library and information science research,3 -library and archival security,1 -library and information research,1 -library and information science,1 -library hi tech,1 -library journal,1 -library management,1 -library philosophy and practice,1 -library quarterly,1 -library resources and technical services,1 -library trends,1 -libres,1 -libri,1 -libya antiqua: annual of the department of antiuities of libya,1 -libyan studies,1 -the lichenologist,1 -lidil,1 -lied und populare kultur-song and popular culture,1 -lietuvos archaeologija,1 -lietuvos etnologija: socialines antropologija i etnologija studijos,1 -life science journal: acta zhengzhou university overseas edition,1 -life sciences,1 -lifetime data analysis,1 -ligeia: dossiers sur lart,1 -light and engineering,1 -lighting research and technology,2 -liikunta ja tiede,1 -lilith: a feminist history journal,1 -zeitschrift für literaturwissenschaft und linguistik,2 -limba romana,1 -limnetica,1 -limnologica,1 -limnology,1 -limnology and oceanography,3 -limnology and oceanography: methods,1 -lindbergia,1 -linear and multilinear algebra,1 -linear algebra and its applications,2 -linformation litteraire,1 -lingua,1 -lingua e stile,1 -lingua et linguistica,1 -lingua nostra,1 -linguistic analysis,1 -linguistic approaches to literature,1 -linguistic association of korea journal,1 -linguistic discovery,1 -linguistic inquiry,3 -linguistic insights: studies in language and communication,1 -linguistic review,3 -linguistic typology,3 -linguistic variation,1 -linguistica biblica,1 -linguistica espanola actual,1 -linguistica lettica,1 -linguistica palatina,1 -linguistica pragensia,1 -linguistica silesiana,1 -linguistica uralica,1 -linguistica y literatura,1 -linguistics,3 -linguistics and education,2 -linguistics and philology,1 -linguistics and philosophy,3 -linguistics and the human sciences,1 -linguistics in the netherlands,1 -linguistics of the tibeto-burman area,1 -linguistik aktuell,1 -linguistik online,1 -linguistique,1 -linguistische arbeiten,2 -linguistische berichte,1 -lingvisticae investigationes,1 -lingvisticae investigationes supplementa,1 -linquistique africaine,1 -linux journal,0 -linx,1 -lion and the unicorn,1 -lipids,2 -lipids in health and disease,1 -liquid crystals,1 -higher-order and symbolic computation,1 -listy cukrovarnicke a reparske,1 -literacy,1 -literary and linguistic computing,2 -literary research,1 -literatur fur leser,1 -literatur und kritik,1 -literatura,1 -literatura mexicana,1 -literatura y linguistica,1 -literature and history: third series,2 -literature and aesthetics,1 -literature and medicine,2 -literature and theology,3 -literature-film quarterly,1 -lithic technology,1 -lithics,1 -lithology and mineral resources,1 -lithos,2 -lithosphere,1 -lithuanian mathematical journal,1 -lit: literature interpretation theory,1 -litteraria pragensia: studies in literature and culture,1 -litterature,2 -litteratures,1 -litteratures classiques,1 -lituanus,1 -liturgy,1 -liver international,1 -liver transplantation,2 -livestock science,1 -living reviews in relativity,3 -ljetopis socijalnog rada,1 -llen cymru,1 -lloyds maritime and commercial law quarterly,2 -llull: boletin de la sociedad espanola de historia de las ciencias,1 -lms journal of computation and mathematics,1 -lncs transactions on aspect-oriented software development,1 -lobachevskii journal of mathematics,1 -local economy,1 -local environment,1 -local government studies,2 -local population studies,1 -locke studies: an annual journal of locke research,1 -lodz studies in language,1 -log,1 -logic and logical philosophy,1 -logic journal of the igpl,2 -logica universalis,1 -logical methods in computer science,1 -logique et analyse,1 -logopedics phoniatrics vocology,1 -logos,1 -logos and pneuma: chinese journal of theology,1 -logos: anales del seminario de metafisica,1 -logos: a journal of catholic thought and culture,1 -logos: vilnius,1 -loisir et societe,1 -london journal,1 -london mathematical society lecture notes,1 -london oriental and african language library,1 -london review of education,1 -long range planning,3 -journal of social work in end-of-life and palliative care,1 -louvain studies,1 -lov og rett: norsk juridisk tidsskrift,1 -low temperature physics,1 -lsp journal,1 -lubrication science,1 -lucentum,1 -lud,1 -ludus: medieval and early renaissance theatre and drama,1 -luminescence,1 -lund archaeological review,1 -lung,1 -lung cancer,1 -lunula: archaeologia protohistorica,1 -lupus,1 -luso: brazilian review,2 -lustrum,1 -luther,1 -lutherjahrbuch,2 -lwt: food science and technology,1 -lychnos: lardomshistoriska samfundets arsbok = annual of the swedish history of science society,1 -lykia,1 -lymphatic research and biology,1 -lymphology,1 -lähivõrdlusi-lähivertailuja,1 -médecine sciences,1 -manufacturing and service operations management,3 -m/c journal,1 -m@n@gement,1 -maal og minne,1 -maanmittaus,1 -maarav: a journal for the study of the northwest semitic languages and literatures,1 -maastricht journal of european and comparative law,3 -macedonian journal of chemistry and chemical engineering,0 -machine learning,3 -machine vision and applications,2 -machining science and technology,1 -macroeconomic dynamics,1 -macromolecular bioscience,1 -macromolecular chemistry and physics,1 -macromolecular materials and engineering,1 -macromolecular rapid communications,1 -macromolecular reaction engineering,1 -macromolecular research,1 -macromolecular symposia,1 -macromolecular theory and simulations,1 -macromolecules,3 -madera y bosques,1 -maderas: ciencia y tecnologia,1 -madoc: tijdschrift over de middel eeuwen,1 -magallania,1 -magazine of concrete research,1 -maghreb-machrek,1 -"magic, ritual, and witchcraft",1 -"magna graecia: rassegna di archeologia, storia, arte, attualita",1 -magnesium research,1 -magnetic resonance imaging,1 -magnetic resonance imaging clinics of north america,1 -magnetic resonance in chemistry,1 -magnetic resonance in medicine,1 -magnetic resonance materials in physics biology and medicine,1 -magyar allatorvosok lapja,1 -magyar egyhazzene,1 -magyar filozofiai szemle,1 -"magyar kemiai folyoirat, kemiai kozlemenyek",0 -magyar nepmuveszet,1 -magyar nyelv,1 -magyar nyelvjarasok,1 -magyar nyelvor,1 -magyar zene,1 -maia: rivista di letterature classiche,1 -main group chemistry,1 -main group metal chemistry,1 -make,1 -makedonika,1 -makedonski jazik,1 -malacologia,1 -malaria journal,1 -malaysian journal of library and information science,1 -mammal review,2 -mammal study,1 -mammalia,1 -mammalian biology,1 -mammalian genome,1 -man and environment,1 -man in india,0 -mana: estudos de antropologia social,1 -management accounting research,3 -management and organization review,1 -management and organizational history,2 -management communication quarterly,2 -journal of management history,1 -management international review,1 -management learning,2 -management of environmental quality,1 -management revue,1 -management science,3 -managerial and decision economics,1 -managerial auditing journal,1 -managerial finance,1 -managing global transitions,1 -managing leisure,1 -manchester school,1 -mande studies,1 -mankind quarterly,1 -manoa: a pacific journal of international writing,1 -manual therapy,1 -manuelle medizin,1 -manufacturing chemist,1 -manuscripta,1 -manuscripta mathematica,1 -manuscrito: revista internacional de filosofia,1 -manuskripte,1 -marburg journal of religion,1 -marburger jahrbuch fur kunstwissenschaft,1 -marche romane,1 -marine and freshwater behaviour and physiology,1 -marine and freshwater research,1 -marine and petroleum geology,1 -marine biodiversity,1 -marine biology,1 -marine biology research,1 -marine biotechnology,1 -marine chemistry,1 -marine drugs,1 -marine ecology: an evolutionary perspective,1 -marine ecology: progress series,2 -marine environmental research,1 -marine genomics,1 -marine geodesy,1 -marine geology,2 -marine geophysical researches,1 -marine georesources and geotechnology,1 -marine mammal science,1 -marine micropaleontology,1 -marine ornithology,1 -marine policy,2 -marine pollution bulletin,1 -marine resource economics,1 -marine structures,3 -(mt) marine technology,1 -marine technology society journal,1 -mariners mirror,1 -maritime economics and logistics,1 -maritime policy and management,1 -newsletter - australian centre for maritime studies,1 -marius,1 -marketing health services,1 -marketing intelligence and planning,1 -marketing letters,1 -marketing science,3 -marketing theory,2 -markov processes and related fields,1 -marriage and family review,1 -marvels and tales: journal of fairy-tale studies,1 -maske und kothurn,1 -mass communication and society,1 -mass spectrometry reviews,1 -massachusetts review,1 -matatu,1 -match: communications in mathematical and in computer chemistry,1 -matematicki vesnik,1 -material culture review,1 -material religion,2 -materiale plastice,1 -materiales de construccion,1 -materiali e contributi per la storia della narrativa greco-latina,1 -materiali e discussioni per lanalisi dei testi classici,2 -materiali in tehnologije,1 -"materialisten: tidsskrift for forskning, fagkritikk og teoretisk debatt",1 -materials & design,3 -materials and corrosion-werkstoffe und korrosion,1 -materials and manufacturing processes,1 -materials and structures,1 -materials at high temperatures,1 -materials characterization,1 -materials chemistry and physics,1 -materials evaluation,1 -materials letters,1 -materials performance,1 -materials physics and mechanics,1 -materials research bulletin,1 -materials research innovations,1 -materials research society symposia proceedings,1 -materials research: ibero-american journal of materials,1 -materials science,1 -materials science and engineering r: reports,2 -materials science and engineering a: structural materials properties microstructure and processing,2 -materials science and engineering b: advanced functional solid-state materials,1 -materials science and technology,1 -materials science forum,1 -materials science in semiconductor processing,1 -materials science: medziagotyra,1 -materials science poland,1 -materials technology,1 -materials testing: materials and components technology and application,1 -materials today,3 -materials transactions,1 -materials world,1 -materialwissenschaft und werkstofftechnik,1 -materialy archeologiczne,1 -materia: rio de janeiro,1 -maternal and child health journal,1 -maternal and child nutrition,1 -mathematica balkanica,1 -mathematica bohemica,1 -mathematica scandinavica,2 -mathematica slovaca,1 -mathematical and computational applications,1 -mathematical and computational forestry and natural resource sciences,1 -mathematical and computer modelling,1 -mathematical and computer modelling of dynamical systems,1 -mathematical biosciences,1 -mathematical biosciences and engineering,1 -mathematical communications,1 -mathematical finance,2 -mathematical geosciences,1 -mathematical inequalities and applications,1 -mathematical intelligencer,1 -mathematical logic quarterly,1 -mathematical medicine and biology: a journal of the ima,1 -mathematical methods in the applied sciences,1 -mathematical methods of operations research,1 -mathematical methods of statistics,1 -mathematical modelling and analysis,1 -mathematical modelling of natural phenomena,1 -mathematical models and methods in applied sciences,2 -mathematical notes,1 -mathematical physics analysis and geometry,1 -mathematical physics electronic journal,1 -mathematical population studies,1 -mathematical problems in engineering,0 -mathematical proceedings of the cambridge philosophical society,2 -mathematical proceedings of the royal irish academy,1 -mathematical programming,3 -mathematical reports of the academy of science,1 -mathematical research letters,2 -mathematical social sciences,1 -mathematical structures in computer science,1 -mathematical thinking and learning,2 -mathematics and computer education,1 -mathematics and computers in simulation,1 -mathematics and financial economics,1 -mathematics and mechanics of solids,1 -mathematics education research journal,1 -mathematics education review,1 -mathematics in computer science,1 -mathematics of computation,3 -mathematics of control signals and systems,1 -mathematics of operations research,3 -mathematik lehren,1 -mathematika,1 -mathematische annalen,3 -mathematische nachrichten,1 -mathematische semesterberichte,1 -mathematische zeitschrift,2 -matkailututkimus,1 -matrix biology,2 -maturitas,1 -mausam,1 -max planck commentaries on world trade law,1 -max planck yearbook of united nations law,1 -mayo clinic proceedings,2 -molecular and cellular biomechanics,1 -mcgill law journal,1 -mcn: the american journal of maternal-child nursing,1 -meander,1 -measurement,2 -measurement and control,1 -measurement and evaluation in counseling and development,1 -measurement in physical education and exercise science,1 -measurement science and technology,2 -measurement science review,1 -measurement techniques,1 -measurement: interdisciplinary research and perspectives,1 -measuring business excellence,1 -meat science,2 -mechanics & industry,1 -meccanica,1 -mechanical engineering,1 -mechanical systems and signal processing,3 -mechanics based design of structures and machines,1 -mechanics of advanced materials and structures,1 -mechanics of composite materials,1 -mechanics of materials,2 -mechanics of time-dependent materials,1 -mechanics research communications,1 -mechanika,1 -mechanism and machine theory,2 -mechanisms of ageing and development,1 -mechatronics,2 -meddelelser fra ny carlsberg glyptotek,1 -"meddelelser om groenland, man and society",1 -meddelelser om konservering,1 -medecine et chirurgie du pied,1 -medecine et droit,1 -medecine therapeutique pediatrie,1 -mededelingen van het cyriel buysse genootschap,1 -mededelingen vanwege het spinozahuis,1 -media ja viestintä,2 -media culture and society,3 -media development,1 -media history,2 -media history monographs,1 -media international australia,1 -media psychology,2 -"media, war and conflict",1 -mediaevalia,1 -mediaevalia historica bohemica,1 -mediaevalia: textos e estudos,1 -mediaevistik: internationale zeitschrift fur interdisziplinare mittelalterforschung,1 -mediations,1 -mediators of inflammation,1 -medical and biological engineering and computing,1 -medical and veterinary entomology,1 -medical anthropology,3 -medical anthropology quarterly,2 -medical care,2 -medical care research and review,1 -medical clinics of north america,2 -medical decision making,3 -medical dosimetry,1 -medical education,3 -medical education online: an electronic journal,1 -medical engineering and physics,1 -medical history,2 -medical humanities,1 -medical hypotheses,1 -medical image analysis,3 -medical journal of australia,1 -medical laser application,1 -medical law review,2 -medical letter on drugs and therapeutics,1 -medical microbiology and immunology,1 -medical molecular morphology,1 -medical mycology,1 -medical oncology,1 -medical physics,1 -medical principles and practice,1 -medical problems of performing artists,1 -medical science monitor,1 -medical teacher,1 -medicc review,1 -medicina clinica,1 -medicina del lavoro,1 -medicina dello sport,1 -medicina intensiva,1 -medicina nei secoli,1 -medicina oral patologia oral y cirugia bucal,1 -medicina veterinaria: recife,1 -medicina: buenos aires,1 -medicinal chemistry,1 -medicinal chemistry research,1 -medicinal research reviews,2 -medicina,1 -medicine,1 -medicine and science in sports and exercise,3 -medicine health care and philosophy,1 -medicine science and the law,1 -"medicine, conflict, and survival",1 -medicinski glasnik,1 -mediekultur,1 -medien und kommunikationswissenschaft,1 -medien journal,1 -medieval and early modern science,1 -medieval and renaissance drama in england,1 -medieval archaeology,2 -medieval ceramics: journal of the medieval pottery research group,0 -medieval clothing and textiles,1 -medieval encounters,1 -medieval english theatre,1 -medieval feminist forum,1 -medieval history journal,1 -medieval perspectives,1 -medieval philosophy and theology,1 -medieval prosopography: history and collective biography,1 -medieval scandinavia,1 -medieval studies,1 -medievales,1 -medievalia et humanistica,2 -medievalismo,1 -medioevo,1 -medioevo e rinascimento,1 -medioevo greco,1 -medioevo romanzo,1 -mediterranean archaeology,1 -mediterranean historical review,2 -mediterranean journal of mathematics,1 -mediterranean language review,1 -mediterranean marine science,1 -mediterranean politics,1 -mediterranean quarterly,1 -mediterranean studies,1 -mediterranea: ricerche storiche,1 -"mediterraneo antico: economie, societa, culture",1 -medium aevum,1 -medium aevum quotidianum,1 -"medizin, gesellschaft und geschichte",1 -medizinhistorisches journal,1 -medusa: svensk tidsskrift for antiken,1 -medycyna nowozytna: studia nad historia medycyny,1 -medycyna pracy,1 -medycyna weterynaryjna,1 -mélanges de l'ecole francaise de rome: antiquité,2 -melanges de l'ecole francaise de rome: italie et mediterranee,1 -mélanges de l'ecole francaise de rome: moyen-age,1 -melanges de la casa de velazquez,1 -melanges de linstitut dominicain detudes orientales du caire,1 -melanoma research,1 -melbourne university law review,1 -melus,2 -membrane technology,1 -membranes,1 -memoire de la societe eduenne,1 -suomalais-ugrilaisen seuran toimituksia,2 -mémoires de la société néophilologique,1 -memoires de lacademie des inscriptions et belles lettres,1 -memoires du museum national dhistoire naturelle,1 -memoirs of the american academy in rome,1 -memoirs of the american mathematical society,3 -memoranda societatis pro fauna et flora fennica,1 -memoria e ricerca: rivista di storia contemporanea,1 -memory,1 -memory and cognition,2 -men and masculinities,2 -mendeleev communications,1 -menopause: the journal of the north american menopause society,1 -"mental health, religion and culture",1 -mentoring and tutoring,1 -mercury series,1 -ethnology paper,1 -"meridians: feminism, race, transnationalism",1 -merkur: deutsche zeitschrift fur europaisches denken,0 -merrill: palmer quarterly: journal of developmental psychology,1 -mesopotamia,1 -meta,3 -metabolic brain disease,1 -metabolic engineering,2 -metabolic syndrome and related disorders,1 -metabolism: clinical and experimental,2 -metabolomics,1 -metacognition and learning,2 -metal finishing,1 -metal ions in life sciences,1 -metal powder report,1 -metal science and heat treatment,1 -metall,1 -metallofizika i noveishie tekhnologii,1 -metallomics,1 -metallurgical and materials transactions a: physical metallurgy and materials science,1 -metallurgical and materials transactions b : process metallurgy and materials processing science,2 -metallurgist,1 -metals and materials international,1 -metalurgia international,1 -metalurgija,1 -metamaterials,1 -metaphilosophy,2 -metaphor and symbol,3 -metaphorik.de,1 -metaphysica,1 -metascience,1 -meteoritics and planetary science,1 -meteorological applications,1 -meteorologische zeitschrift,1 -meteorology and atmospheric physics,1 -method and theory in the study of religion,3 -methodology and computing in applied probability,1 -methodology: european journal of research methods for the behavioral and social sciences,1 -methods,1 -methods and applications of analysis,1 -methods and findings in experimental and clinical pharmacology,1 -methods in cell biology,1 -methods in enzymology,1 -methods in microbiology,1 -methods of biochemical analysis,1 -methods of information in medicine,3 -metis,1 -metrika,1 -metroeconomica: international review of economics,1 -metrologia,2 -metron,1 -metsätieteen aikakauskirja,1 -metu journal of the faculty of architecture,1 -mexican studies-estudios mexicanos,1 -mfs: modern fiction studies,3 -michigan journal of gender and law,1 -michigan journal of international law,2 -michigan law review,2 -michigan mathematical journal,1 -michigan quarterly review,1 -micro and nano letters,1 -microbes and environments,1 -microbes and infection,1 -microbial biotechnology,1 -microbial cell factories,1 -microbial drug resistance,1 -microbial ecology,2 -microbial pathogenesis,1 -microbiological research,1 -microbiology,1 -microbiology and immunology,1 -microbiology and molecular biology reviews,2 -microbiology-sgm,1 -microchemical journal,1 -microchimica acta,1 -microcirculation,1 -microelectronic engineering,1 -microelectronics international,1 -microelectronics journal,1 -microelectronics reliability,1 -microfluidics and nanofluidics,1 -microgravity science and technology,1 -micron,1 -micropaleontology,1 -microporous and mesoporous materials,2 -microprocessors and microsystems,1 -microscopy and microanalysis,1 -microscopy research and technique,1 -microsurgery,1 -microsystem technologies: micro-and nanosystems-information storage and processing systems,1 -microvascular research,1 -microwave and optical technology letters,1 -microwave journal,1 -middle east journal,2 -middle east journal of culture and communication,1 -middle east policy,1 -middle east quarterly,1 -middle east report,1 -middle eastern literatures,1 -middle eastern studies,1 -midland history,2 -midwest quarterly: a journal of contemporary thought,1 -midwest studies in philosophy,2 -conference proceedings : midwest symposium on circuits and systems,1 -midwifery,2 -migration: a european journal of international migration and ethnic relation,1 -mikologiya i fitopatologiya,1 -milan journal of mathematics,1 -milbank quarterly,3 -militargeschichtliche zeitschrift,1 -military balance,1 -military law review,1 -military medicine,1 -military operations research,1 -military psychology,1 -militärhistorisk tidskrift,1 -millennium film journal,1 -medieval low countries : an annual review,1 -millennium: journal of international studies,2 -milli folklor,1 -milton quarterly,2 -milton studies,1 -min-ad: israel studies in musicology online,1 -mind,3 -mind and language,3 -mind and matter,1 -mind and society,1 -"mind, culture, and activity",2 -minds and machines,1 -mine water and the environment,1 -mineral processing and extractive metallurgy review,1 -mineralium deposita,1 -mineralogical magazine,1 -mineralogy and petrology,1 -minerals and metallurgical processing,1 -minerals engineering,3 -minerva,3 -minerva anestesiologica,1 -minerva biotecnologica,1 -minerva endocrinologica,1 -minerva ginecologica,1 -minerva medica,1 -minerva ortopedica e traumatologica,1 -minerva pediatrica,1 -minerva urologica e nefrologica,1 -minerva: an internet journal of philosophy,1 -minima epigraphica et papyrologica,1 -minimally invasive neurosurgery,1 -minimally invasive therapy and allied technologies,1 -mini-reviews in medicinal chemistry,1 -mini: reviews in organic chemistry,1 -minnesota law review,1 -minnesota review,1 -minnesota symposia on child psychology,1 -minos,1 -minzu yuwen,1 -mir i politika,1 -mir rossii,2 -mir russkogo slova,1 -mirator,1 -mirovaâ èkonomika i meždunarodnye otnošeniâ,1 -mis quarterly,3 -mis quarterly executive,2 -miscelanea: a journal of english and american studies,1 -miscellanea francescana: rivista trimestrale di scienze teologiche e di studi francescani,1 -miskolc mathematical notes,1 -missiology: an international review,1 -mission studies,2 -missionalia,1 -mississippi quarterly,1 -mit electronic journal for middle east studies,1 -mit sloan management review,2 -mitigation and adaptation strategies for global change,1 -mitkufat haeven: journal of the israel prehistoric society,1 -mitochondrial dna,1 -mitochondrion,1 -zitteliana reihe a: mitteilungen der bayerischen staatssammlung fur palaontologie und geologie,1 -"mitteilungen der berliner gesellschaft fur anthropologie, ethnologie und urgeschichte",1 -mitteilungen der osterreichischen geographischen gesellschaft,1 -mitteilungen des deutschen archaologischen instituts: abteilung kairo,1 -mitteilungen des deutschen archaologischen instituts : athenische abteilung,2 -mitteilungen des deutschen archaologischen instituts: romische abteilung,2 -istanbuler mitteilungen,1 -mitteilungen des deutschen archaologischen instituts: abteilung madrid,1 -mitteilungen des instituts fur osterreichische geschichtsforschung,1 -mitteilungen des kunsthistorischen institutes in florenz,2 -mitteilungen klosterneuburg,1 -mitteilungen zur christlichen archaologie,1 -mittellateinische studien und texte,2 -mittellateinisches jahrbuch,1 -mla news,1 -mljekarstvo,1 -mln,2 -mnimon,1 -mnemosyne,2 -"mnemosyne, supplements",2 -journal of mobile information systems,0 -mobile networks and applications,1 -mobilities,2 -mobilization,2 -model assisted statistics and applications,1 -modeles linguistiques,1 -modeling identification and control,1 -modelling and simulation in materials science and engineering,1 -modern and contemporary france,2 -modern asian studies,2 -modern china,2 -modern drama,2 -modern english teacher,1 -modern greek studies,1 -modern intellectual history,2 -modern italy,1 -modern judaism,1 -modern language journal,3 -modern language quarterly,3 -modern language review,1 -modern language studies,1 -modern law science,1 -modern pathology,2 -modern philology,2 -modern physics letters a,1 -modern physics letters b,1 -modern rheumatology,1 -modern theology,3 -moderna språk,1 -moderne sprachen,1 -modernism-modernity,2 -moenia: revista lucense de lingustica and literatura,1 -mokuzai gakkaishi,1 -molecular and cellular proteomics,2 -molecular and cellular toxicology,1 -molecular and biochemical parasitology,1 -molecular and cellular biochemistry,1 -molecular and cellular biology,2 -molecular and cellular endocrinology,1 -molecular and cellular neuroscience,1 -molecular and cellular probes,1 -molecular aspects of medicine,3 -molecular biology,1 -molecular biology and evolution,3 -molecular biology of the cell,2 -molecular biology reports,1 -molecular biosystems,1 -molecular biotechnology,1 -molecular breeding,1 -molecular cancer,3 -molecular cancer research,1 -molecular cancer therapeutics,1 -molecular carcinogenesis,1 -molecular cell,3 -molecular crystals and liquid crystals,1 -molecular diagnosis and therapy,1 -molecular diversity,1 -molecular ecology,3 -molecular ecology resources,2 -molecular genetics and genomics,1 -molecular genetics and metabolism,1 -molecular genetics microbiology and virology,1 -molecular human reproduction,1 -molecular imaging,1 -molecular imaging and biology,1 -molecular immunology,1 -molecular informatics,1 -molecular medicine,1 -molecular medicine reports,1 -molecular membrane biology,1 -molecular microbiology,2 -molecular neurobiology,1 -molecular neurodegeneration,3 -molecular oncology,1 -molecular oral microbiology,1 -molecular pain,1 -molecular pharmaceutics,2 -molecular pharmacology,2 -molecular phylogenetics and evolution,2 -molecular physics,1 -molecular plant,3 -molecular plant pathology,1 -molecular plant-microbe interactions,1 -molecular psychiatry,3 -molecular reproduction and development,1 -molecular sieves: science and technology,1 -molecular simulation,1 -molecular systems biology,3 -molecular therapy,3 -molecular vision,1 -molecules,1 -molecules and cells,1 -molluscan research,1 -monash bioethics review,1 -monash university law review,1 -monatshefte fur chemie,1 -monatshefte fur deutschsprachige literatur und kultur,1 -monatshefte fur mathematik,1 -monatsschrift fur kriminologie und strafrechtsreform,1 -monatsschrift kinderheilkunde,1 -mondes en developpement,1 -mongolian studies,1 -monist,2 -monographs of the archaeological society of finland,1 -monographs of the society for research in child development,1 -montage av: zeitschift fuer theorie und geschichte audiovisueller kommunikation,1 -montana-the magazine of western history,0 -monte carlo methods and applications,1 -monthly labor review,1 -monthly notices of the royal astronomical society,2 -monthly notices of the royal astronomical society: letters,3 -monthly review: an independent socialist magazine,1 -monthly weather review,1 -monti: monographs in translation and interpretation,1 -monumenta graeca et romana,1 -monumenta nipponica,2 -monumenta serica,1 -monumental,1 -monuments et mémoires de la fondation eugene piot,1 -moreana,1 -morphology,2 -mortality,1 -mosaic: a journal for the interdisciplinary study of literature,3 -moscow mathematical journal,1 -motivation and emotion,1 -motor control,1 -motricite cerebrale: readaptation neurologie du developpement,1 -motriz: revista de educacao fisica,1 -mots: les langages du politique,1 -mountain research and development,1 -mouseion,1 -moussons,1 -mouvement social,2 -movement disorders,3 -movimento,1 -moyen age,1 -moyen francais,1 -mrs bulletin,2 -mrs internet journal of nitride semiconductor research,1 -mucosal immunology,1 -muinaistutkija,1 -muinasaja teadus,1 -multibody system dynamics,2 -multicultural perspectives,1 -multidimensional systems and signal processing,1 -multidisciplinary respiratory medicine,1 -multilingua: journal of cross-cultural and interlanguage communication,2 -multimedia systems,1 -multimedia tools and applications,1 -multinational finance journal,1 -multiphase science and technology,1 -multiple sclerosis,2 -multiscale modeling and simulation,1 -multitudes,1 -multivariate behavioral research,1 -munchener jahrbuch der bildenden kunst,1 -munchener studien zur sprachwissenschaft,1 -munchener theologische zeitschrift,1 -munster: zeitschrift fur christliche kunst und kunstwissenschaft,1 -muqarnas,1 -muscle and nerve,1 -musculoskeletal care,1 -museologia scientifica: rivista dell a.n.m.s.,1 -museon,1 -museum and society,2 -museum anthropology,1 -museum anthropology review,1 -museum helveticum,2 -museum international,2 -museum management and curatorship,2 -museums and social issues,1 -music and arts in action,1 -music and letters,2 -music analysis,3 -music and anthropology: journal of mediterranean musical anthropology,1 -music and politics,1 -music education research,3 -music in art,1 -music perception,2 -music performance research,1 -music reference services quarterly,1 -music theory online,1 -music theory spectrum,3 -music therapy perspectives,2 -musica e storia,1 -musicae scientiae,3 -musical quarterly,2 -musicologica austriaca,1 -musicology australia,1 -dansk musikforskning online,1 -musik und asthetik,1 -musikforschung,2 -musikkterapi,1 -musikpedagogik,1 -musikpsychologie,1 -musiktheorie,1 -musiktherapeutische umschau,1 -musil-forum: beitrage zur literatur der klassischen moderne,1 -"musique, images, instruments",1 -muslim minorities,1 -muslim world,1 -mutagenesis,1 -mutation research: fundamental and molecular mechanisms of mutagenesis,1 -mutation research: genetic toxicology and environmental mutagenesis,1 -mutation research: reviews in mutation research,1 -muttersprache,1 -mùzeum,1 -muzikoloski zbornik,1 -muzyka: kwartalnik poswiecony historii i teorii muzyki,1 -mycologia,2 -mycological progress,1 -mycological research,1 -mycopathologia,1 -mycorrhiza,1 -mycoscience,1 -mycoses,1 -mycotaxon,1 -mycotoxin research,1 -myrtia: revista de filologia clasica,1 -n a b u: nouvelles assyriologiques breves et utilitaires,1 -n:paradoxa: international feminist art journal,1 -naamkunde,1 -nachrichten aus der chemie,0 -nacta journal,1 -nagoya mathematical journal,1 -namenkundliche informationen,1 -names,2 -nammco scientific publications,1 -namn och bygd,1 -namn og nemne: tidsskrift for norsk namnegransking,1 -"nan nu: men, women and gender in early and imperial china",1 -nano,1 -nano letters,3 -nano research,2 -nano today,3 -nanomedicine,1 -nanomedicine: nanotechnology biology and medicine,2 -nanoscale,3 -nanoscale and microscale thermophysical engineering,1 -nanotechnology,2 -nanotoxicology,2 -napis: tom poswiecony literaturze okolicznosciowej i uzytkowej,1 -narodna umjetnost,1 -narrative,2 -narrative inquiry,2 -nasarre: revista aragonesa de musicologia,1 -nase rec,1 -nashim: a journal of jewish womens studies,1 -nassauische annalen,1 -nathaniel hawthorne review,1 -nation,1 -proceedings of the aaai conference on artificial intelligence,2 -national gallery technical bulletin,1 -national identities,2 -national institute economic review,1 -national medical journal of india,1 -national tax journal,1 -nationalism and ethnic politics,1 -nationalities papers,1 -nationalmuseets arbejdsmark,1 -nations and nationalism,3 -"nato science series: sub series i, life and behavioural sciences",1 -natur und recht,1 -natural areas journal,1 -natural computing,1 -natural hazards,1 -natural hazards and earth system sciences,1 -natural hazards review,1 -natural history,1 -natural language and linguistic theory,3 -natural language engineering,3 -natural language semantics,2 -natural product communications,1 -natural product reports,1 -natural product research,1 -natural resource modeling,1 -natural resources forum,1 -natural resources journal,1 -natural resources research,1 -nature,3 -nature and resources,1 -nature biotechnology,3 -nature cell biology,3 -nature chemical biology,3 -nature chemistry,3 -nature climate change,3 -nature communications,3 -nature genetics,3 -nature geoscience,3 -nature immunology,3 -nature materials,3 -nature medicine,3 -nature methods,3 -nature nanotechnology,3 -nature neuroscience,3 -nature photonics,3 -nature physics,3 -nature protocols,1 -nature reviews cancer,2 -nature reviews cardiology,2 -nature reviews clinical oncology,2 -nature reviews drug discovery,3 -nature reviews endocrinology,2 -nature reviews gastroenterology and hepatology,2 -nature reviews genetics,2 -nature reviews immunology,3 -nature reviews microbiology,3 -nature reviews molecular cell biology,2 -nature reviews nephrology,2 -nature reviews neurology,3 -nature reviews neuroscience,3 -nature reviews rheumatology,2 -nature reviews urology,2 -nature structural and molecular biology,3 -natures sciences societes,1 -natureza and conservacao,1 -the science of nature,1 -sociologiâ vlasti,1 -naunyn-schmiedebergs archives of pharmacology,1 -nautilus,1 -naval engineers journal,1 -naval research logistics,1 -navigation,2 -nordic and baltic journal of information and communications technologies,1 -nber macroeconomics annual,1 -ndt & e international,2 -near eastern archaeology,1 -near surface geophysics,1 -nebraska symposium on motivation,1 -nederlands kunsthistorisch jaarboek,1 -nederlands theologisch tijdschrift,1 -nederlands tijdschrift voor geneeskunde,1 -nederlandse letterkunde,1 -nederlandse taalkunde,1 -internationale neerlandstiek,1 -neerlandistiek.nl,1 -nefrologia,1 -neftyanoe khozyaistvo - oil industry,1 -negotiation journal,1 -nelinijni kolivannâ,1 -nematology,1 -neohelicon,2 -neonatology,2 -neophilologus,2 -neoplasia,2 -neoplasma,1 -neotestamentica,2 -neotropical entomology,1 -neotropical ichthyology,1 -nephrologie et therapeutique,1 -nephrology,1 -nephrology dialysis transplantation,2 -nephrology nursing journal,1 -neprajzi ertesito,1 -nervenarzt,1 -nervenheilkunde,1 -netherlands international law review,1 -netherlands journal of geosciences-geologie en mijnbouw,1 -netherlands journal of medicine,0 -netherlands quarterly of human rights,2 -netherlands yearbook of international law,1 -netnomics: economic research and electronic networking,1 -network: computation in neural systems,1 -networker: association for computing machinery,1 -networks,2 -networks and spatial economics,1 -networks and heterogeneous media,1 -neue politische literatur,1 -"neue praxis: zeitschrift für sozialarbeit, sozialpädagogik und sozialpolitik",1 -neue romania,1 -neue rundschau,1 -neue zeitschrift fur systematische theologie und religionsphilosophie,3 -neues jahrbuch fur geologie und palaontologie: abhandlungen,1 -neues jahrbuch fur mineralogie: abhandlungen,1 -neural computation,3 -neural computing and applications,1 -neural development,1 -neural network world,1 -neural networks,3 -neural plasticity,1 -neural processing letters,1 -neural regeneration research,1 -neurobiology of aging,2 -neurobiology of disease,2 -neurobiology of learning and memory,1 -neurobiology of lipids,1 -neurocase,1 -neurochemical journal,1 -neurochemical research,1 -neurochemistry international,1 -neurochirurgie,1 -neurocirugia,1 -neurocomputing,2 -neurocritical care,1 -neurodegenerative diseases,1 -neuroendocrinology,1 -neuroendocrinology letters,1 -neuroepidemiology,1 -neuroforum,1 -neurogastroenterology and motility,1 -neurogenetics,1 -neuroimage,3 -neuroimaging clinics of north america,1 -neuroimmunomodulation,1 -neuroinformatics,2 -neurologia,1 -neurologia croatica,1 -neurologia i neurochirurgia polska,1 -neurologia medico-chirurgica,1 -neurologic clinics,1 -neurological research,1 -neurological sciences,1 -neurological surgery,1 -neurologist,1 -neurology,3 -"neurology, neurophysiology and neuroscience",1 -neurology psychiatry and brain research,1 -neuromodulation,1 -neuromolecular medicine,1 -neuromuscular disorders,1 -neuron,3 -neuron glia biology,1 -neuro-oncology,2 -neuro-ophthalmology,1 -neuropathology,1 -neuropathology and applied neurobiology,1 -neuropediatrics,1 -neuropeptides,1 -neuropharmacology,3 -neurophysiologie clinique-clinical neurophysiology,1 -neurophysiology,1 -neuropsychiatric disease and treatment,1 -neuropsychobiology,1 -neuropsychologia,2 -neuropsychological rehabilitation,1 -neuropsychology,2 -neuropsychology review,2 -neuropsychopharmacology,3 -neuroquantology,1 -neuroradiology,1 -neurorehabilitation,1 -neurorehabilitation and neural repair,2 -neuroreport,1 -neuroscience,2 -neuroscience and behavioral physiology,1 -neuroscience and biobehavioral reviews,3 -neuroscience letters,1 -neuroscience research,1 -neuroscience research communications,1 -neuroscientist,1 -neurosignals,1 -neurosurgery,2 -neurosurgery clinics of north america,1 -neurosurgery quarterly,1 -neurosurgical review,1 -neurotherapeutics,1 -neurotoxicity research,1 -neurotoxicology,1 -neurotoxicology and teratology,1 -neurourology and urodynamics,1 -neusis: the greek journal for the history and philosophy of science and technology,1 -new astronomy,1 -new astronomy reviews,1 -new balkan politics,1 -new biotechnology,1 -new carbon materials,1 -new cinemas: journal of contemporary film,1 -new concepts in polymer science,1 -new criminal law review,1 -new directions for adult and continuing education,1 -new directions for child and adolescent development,1 -new directions for evaluation,1 -new directions for higher education,1 -new directions for institutional research,1 -new directions for teaching and learning,1 -new directions for youth development,1 -new educational review,1 -new electronics,1 -new england journal of entrepreneurship,1 -the new england journal of medicine,3 -new england quarterly: a historical review of new england life and letters,1 -new england review: middlebury series,1 -new england theatre journal,1 -new forests,1 -new formations: a journal of culture/theory/politics,1 -new generation computing,1 -new genetics and society,1 -new german critique,3 -new german review,1 -new hibernia review,1 -new history,1 -new horizons in adult education and human resource development,1 -new ideas in psychology,1 -new journal of chemistry,1 -new journal of physics,2 -new left review,2 -new library world,1 -new literary history,3 -new mathematics and natural computation,1 -new media and society,3 -new medit,1 -guidebook of the new mexico geological society,1 -new mexico historical review,1 -new microbiologica,1 -new orleans review,1 -new perspectives quarterly,1 -new phytologist,3 -new political economy,3 -new political science: a journal of politics and culture,1 -new republic,1 -new review of academic librarianship,1 -new review of hypermedia and multimedia,1 -new review of information networking,1 -new solutions: a journal of environmental and occupational health policy: ns:,1 -new south wales public health bulletin,1 -new technology work and employment,1 -new testament studies,3 -"new testament tools, studies and documents",1 -new theatre quarterly,2 -new voices in classical reception studies,1 -new voices in translation studies,1 -new writing: the international journal for the practice and theory of creative writing,1 -new yearbook for phenomenology and phenomenological philosophy,2 -new york journal of mathematics,1 -new york review of books,0 -new york times book review,0 -new york university journal of international law and politics,1 -new york university law review,2 -new zealand geographer,1 -new zealand journal of agricultural research,1 -journal of pacific archaeology,1 -new zealand journal of botany,1 -new zealand journal of crop and horticultural science,1 -new zealand journal of ecology,1 -new zealand journal of educational studies,1 -new zealand journal of environmental law,1 -new zealand journal of geology and geophysics,1 -new zealand journal of history,1 -new zealand journal of marine and freshwater research,1 -new zealand journal of mathematics,1 -new zealand journal of psychology,1 -new zealand journal of zoology,1 -new zealand law review,1 -new zealand population review,1 -new zealand universities law review,1 -new zealand veterinary journal,1 -newborn and infant nursing review,1 -newsletters on stratigraphy,1 -newspaper research journal,1 -nevtani ertesito,1 -nexus network journal,1 -information: wissenschaft und praxis,1 -nhri symposium,1 -nicotine and tobacco research,1 -nieren- und hochdruckkrankheiten,1 -nietzsche-studien,1 -nihon reoroji gakkaishi,1 -niin & näin,1 -nijhoff law specials,1 -nikephoros: zeitschrift fur sport und kultur im altertum,1 -nineteenth century art worldwide,1 -nineteenth century gender studies,1 -nineteenth century music,2 -nineteenth century prose,2 -nineteenth century theatre and film,1 -nineteenth-century contexts,1 -nineteenth-century french studies,2 -nineteenth-century literature,3 -nineteenth-century music review,1 -nineteenth-century studies,1 -journal of the ceramic society of japan,1 -nippon suisan gakkaishi,1 -nir : nordiskt immateriellt rättsskydd,2 -nispacee journal of public administration and policy,1 -nitric oxide-biology and chemistry,1 -nj drama australia journal,1 -njas: wageningen journal of life sciences,1 -nmediac: the journal of new media and culture,1 -nmr in biomedicine,1 -noa: norsk som andrespråk,1 -nodea: nonlinear differential equations and applications,1 -noise and health,1 -nomadic peoples,1 -nomina,1 -nomina africana,1 -nondestructive testing and evaluation,1 -nonlinear analysis: modelling and control,1 -nonlinear analysis: real world applications,1 -nonlinear analysis: theory methods and applications,1 -nonlinear dynamics,2 -nonlinear dynamics and systems theory,1 -"nonlinear dynamics, psychology, and life sciences",1 -nonlinear phenomena in complex systems,1 -nonlinear processes in geophysics,1 -nonlinearity,1 -nonprofit and voluntary sector quarterly,2 -nonprofit management and leadership,1 -nonproliferation review,1 -nora: nordic journal of feminist and gender research,2 -nordand: nordisk tidsskrift for andrespråksforskning,2 -nordeuropaforum,1 -nordia geographical publications,1 -nordic irish studies,1 -norma : international journal for masculinity studies,2 -nordic journal of african studies,1 -nordic journal of architectural research,2 -nordic journal of botany,1 -nordic journal of commercial law,1 -nordic journal of english studies,1 -nordic journal of information literacy in higher education,1 -nordic journal of international law,2 -nordic journal of linguistics,3 -nordic journal of migration research,2 -nordic journal of music therapy,2 -nordic journal of political economy,1 -nordic journal of psychiatry,1 -nordic journal of religion and society,3 -nordic journal of surveying and real estate research,1 -nordic journal of working life studies,1 -nordic notes,1 -nordic psychology,1 -nordic pulp and paper research journal,1 -nordic social work research,1 -nordic studies in education,1 -nordic theatre studies,2 -nordica,1 -nordicom review,2 -nordicum,0 -nordina,1 -nordiques,1 -nordisk administrativt tidsskrift,1 -nordic studies on alcohol and drugs,1 -nordisk judaistik / scandinavian jewish studies,2 -nordisk kulturpolitisk tidskrift,1 -nomad: nordisk matematikkdidaktikk,1 -nordisk miljörättslig tidskrift,1 -nordisk museologi,1 -nordisk numismatisk årsskrift - scandinavian numismatic journal,1 -nordisk oestforum,1 -nordisk samhällsgeografisk tidskrift,1 -nordisk tidskrift for horsel- och dovundervisning ntd,1 -"nordisk tidskrift for vetenskap, konst och industri",1 -nordisk tidsskrift for helseforskning,1 -nordisk tidsskrift for kriminalvidenskab,1 -nordic journal of human rights,2 -nordisk tidsskrift for selskabsret,1 -"nordiske fortidsminder, serie b",1 -nordiske organisasjonsstudier,1 -nordiske udkast,1 -nordlit,1 -nordlyd,1 -normat: nordisk matematisk tidskrift,1 -norna-rapporter,1 -norsk antropologisk tidsskrift,1 -norsk epidemiologi,1 -"norsk epidemiologi, supplement",1 -norsk filosofisk tidsskrift,1 -norsk geografisk tidsskrift-norwegian journal of geography,1 -norsk lingvistisk tidsskrift,1 -norsk litteraer årbok,1 -norsk litteraturvitenskapelig tidsskrift,1 -norsk medietidsskrift,1 -norsk pedagogisk tidsskrift,1 -årbok (norsk maritimt museum),1 -norsk statsvitenskapelig tidsskrift,1 -norsk tidsskrift for logopedi,1 -norsk tidsskrift for misjonsvitenskap,1 -norsk veterinaertidsskrift,1 -north american actuarial journal,1 -north american archaeologist,1 -north american journal of aquaculture,1 -north american journal of economics and finance,1 -north american journal of fisheries management,1 -north korean review,1 -north star,1 -northamptonshire archaeology,1 -northern european journal of language technology,1 -northern history,1 -northern ireland legal quarterly,1 -northern lights: film and media studies yearbook,1 -northern mariner,1 -northern review,1 -northern studies: the journal of the scottish society for northern studies,1 -north-west passage,1 -northwestern journal of law and social policy,1 -north-western journal of zoology,1 -northwestern university law review,2 -norwegian archaeological review,2 -"norwegian journal of agricultural sciences, supplement",1 -norwegian journal of geology,1 -norwegian petroleum society: special publications,1 -nota lepidopterologica,1 -notae praehistoricae,1 -notes,1 -notes and queries,1 -notes and records of the royal society,1 -notes on number theory and discrete mathematics,1 -notfall und rettungsmedizin,1 -abstracts of papers presented to the american mathematical society,1 -notre dame journal of formal logic,2 -notre dame law review,1 -notre dame philosophical reviews,0 -nottingham french studies,2 -nous,3 -philosophical issues: a supplement to nous,2 -nouvelle revue d'onomastique,1 -nouvelle revue francaise,1 -nouvelle revue theologique,1 -nouvelles de l archeologie,1 -nouvelles questions feministes,1 -nova hedwigia,1 -nova religio: journal of alternative and emergent religions,2 -nova srpska politicka misao,1 -nova tellus,1 -novaâ i novejsaâ istoriâ,1 -novartis foundation symposia,1 -novel: a forum on fiction,3 -nowele: north western european language evolution,1 -novenytermeles,1 -novoe literaturnoe obozrenie,2 -novon,1 -novum testamentum,3 -novus studies in literature,1 -novyi filologicheskii vestnik,1 -"ntm journal of history of sciences, technology, and medicine",1 -nuance: the international journal of family policy and related issues,1 -nuclear data sheets,1 -nuclear engineering and design,3 -nuclear engineering and technology,1 -nuclear engineering international,1 -nuclear fusion,2 -"nuclear instruments and methods in physics research section a: accelerators, spectrometers, detectors and associated equipment",1 -nuclear instruments and methods in physics research section b: beam interactions with materials and atoms,2 -nuclear medicine and biology,1 -nuclear medicine communications,1 -nuclear physics a,1 -nuclear physics b,2 -nuclear plant journal,1 -nuclear science and engineering,1 -nuclear science and techniques,1 -nuclear technology,1 -nuclear technology and radiation protection,1 -nucleic acids research,3 -nucleosides nucleotides and nucleic acids,1 -nueva antropologia,1 -nueva revista de filologia hispanica,1 -nuevo texto critico,1 -nuklearmedizin-nuclear medicine,1 -nukleonika,1 -numen: revista de estudos e pesquisa da religiao,1 -numen,3 -numerical algorithms,2 -numerical functional analysis and optimization,1 -numerical heat transfer part a: applications,1 -numerical heat transfer part b: fundamentals,1 -numerical linear algebra with applications,1 -numerical mathematics: theory methods and applications,1 -numerical methods for partial differential equations,1 -numerische mathematik,3 -numismatiska meddelanden,1 -nuncius: journal of the history of science,2 -nuorisotutkimus,1 -nuorisotutkimusverkoston verkkojulkaisuja,1 -nuova rivista musicale italiana,1 -nuova rivista storica,1 -nuova storia contemporanea,1 -il nuovo cimento c,1 -nurse education in practice,1 -nurse education today,2 -nurse educator,1 -nurse researcher,1 -nursing and health sciences,1 -nursing administration quarterly,1 -nursing clinics of north america,1 -nursing economics,1 -nursing education perspectives,1 -nursing ethics,3 -nursing history review,1 -nursing in critical care,1 -nursing inquiry,1 -nursing management,1 -nursing outlook,2 -nursing philosophy,1 -nursing praxis in new zealand,1 -nursing research,3 -nursing science quarterly,1 -nutricion hospitalaria,1 -nutrient cycling in agroecosystems,1 -nutrition,1 -nutrition and dietetics,1 -nutrition and metabolism,1 -nutrition and cancer: an international journal,1 -nutrition bulletin,1 -nutrition clinique et metabolisme,1 -nutrition in clinical practice,1 -nutrition journal,1 -nutrition metabolism and cardiovascular diseases,1 -nutrition research,1 -nutrition research and practice,1 -nutrition research reviews,1 -nutrition reviews,1 -nutritional neuroscience,1 -feminist formations,1 -nyame akuma: bulletin of the society of african archaeologists,1 -nydanske studier,1 -nyelv- es irodalomtudomanyi kozlemenyek,1 -nyelvtudomanyi kozlemenyek,1 -nykykulttuurin tutkimuskeskuksen julkaisuja,1 -nytt norsk tidsskrift,1 -opd restauro: rivista dell opificio delle pietre dure e laboratori di restauro di firenze,1 -oase: tijdschrift voor architectuur,1 -oberwolfach reports,1 -obesity,1 -obesity facts,1 -obesity research and clinical practice,1 -obesity reviews,1 -obesity surgery,2 -observatory,1 -obstetrical and gynecological survey,1 -obstetrics and gynecology,3 -obstetrics and gynecology clinics of north america,1 -occasional papers in archaeology,1 -occupational and environmental medicine,3 -occupational ergonomics,1 -occupational medicine: oxford,1 -occupational therapy in health care,1 -occupational therapy in mental health,1 -ocean and coastal management,1 -ocean and polar research,1 -ocean development and international law,2 -ocean dynamics,1 -ocean engineering,2 -ocean modelling,1 -ocean science,1 -oceania,2 -oceanic linguistics,2 -oceanography,2 -oceanography and marine biology,1 -oceanologia,1 -oceanology,1 -oceanus,1 -ochrona srodowiska,0 -oclc systems and services,1 -october,3 -ocular immunology and inflammation,1 -ocular surface,3 -oculi: studies in the arts of the low countries,1 -odonatologica,1 -odontology,1 -oecologia,2 -oeil,1 -offa,1 -offa-bucher,1 -ofioliti,1 -oikeus,2 -oikeustiede : jurisprudentia,1 -oikos,2 -oil and energy trends,1 -oil and energy trends annual statistical review,1 -oil and gas journal,1 -oil and gas science and technology : revue de l'institut francais du petrole,1 -oil shale,1 -print quarterly,2 -prion,1 -prism,1 -prison journal,1 -prispevki za novejso zgodovino,1 -pro civitate austriae,1 -pro ecclesia,1 -probabilistic engineering mechanics,1 -probability and mathematical statistics,1 -probability in the engineering and informational sciences,1 -probability surveys,1 -probability theory and related fields,3 -probation journal: the journal of community and criminal justice,1 -probleme der aegyptologie,1 -problemi di critica goldoniana,1 -problemos,1 -problems and perspectives in management,0 -problems of atomic science and technology,1 -problems of economics,1 -problems of education in the 21st century,0 -problems of information transmission,1 -problems of nonlinear analysis in enginerring systems,1 -problems of post-communism,2 -problemy ekorozwoju,1 -problemy teorii i praktiki upravleniâ,1 -probus,1 -procedural aspects of international law,1 -ieee international conference on robotics and automation,2 -proceedings : ieee international symposium on defect and fault tolerance in vlsi systems,1 -nasa/dod conference on evolvable hardware,1 -proceedings : international symposium on low power electronics and design,1 -proceedings in applied mathematics and mechanics : pamm,1 -proceedings of esscirc,1 -proceedings of the institution of civil engineers : construction materials,1 -proceedings of the institution of civil engineers : waste and resource management,1 -ieee international symposium on circuits and systems proceedings,1 -proceedings of the academy of natural sciences of philadelphia,1 -proceedings of the american control conference,1 -proceedings of the american mathematical society,2 -proceedings of the american philosophical society,1 -proceedings of the north american academy of liturgy annual meeting,1 -proceedings of the annual meeting of the berkeley linguistics society,1 -proceedings of the aristotelian society,2 -proceedings of the biological society of washington,1 -proceedings of the boston area colloquium in ancient philosophy,1 -proceedings of the british academy,1 -proceedings of the cirp seminars on manufacturing systems,1 -proceedings of the combustion institute,2 -proceedings of the custom integrated circuits conference,1 -proceedings of the danish institute of athens,1 -proceedings of the edinburgh mathematical society,1 -proceedings of the entomological society of washington,1 -proceedings of the estonian academy of sciences,1 -proceedings of the european solid state device research conference,1 -proceedings of the geologists association,1 -proceedings of the ieee,3 -vlsi design,1 -proceedings of the indian academy of sciences : mathematical sciences,1 -proceedings of the institution of civil engineers: bridge engineering,1 -proceedings of the institution of civil engineers: ground improvement,1 -proceedings of the institution of civil engineers: civil engineering,1 -proceedings of the institution of civil engineers: engineering sustainability,1 -proceedings of the institution of civil engineers: geotechnical engineering,1 -proceedings of the institution of civil engineers: maritime engineering,1 -proceedings of the institution of civil engineers: municipal engineer,1 -proceedings of the institution of civil engineers: structures and buildings,1 -proceedings of the institution of civil engineers: transport,1 -proceedings of the institution of civil engineers: water management,1 -proceedings of the institution of mechanical engineers part a: journal of power and energy,1 -proceedings of the institution of mechanical engineers part b: journal of engineering manufacture,1 -proceedings of the institution of mechanical engineers part c: journal of mechanical engineering science,1 -proceedings of the institution of mechanical engineers part d: journal of automobile engineering,1 -proceedings of the institution of mechanical engineers part e: journal of process mechanical engineering,1 -proceedings of the institution of mechanical engineers part f: journal of rail and rapid transit,1 -proceedings of the institution of mechanical engineers part g: journal of aerospace engineering,1 -proceedings of the institution of mechanical engineers part h: journal of engineering in medicine,1 -proceedings of the institution of mechanical engineers part j: journal of engineering tribology,1 -proceedings of the institution of mechanical engineers part k: journal of multi-body dynamics,1 -proceedings of the institution of mechanical engineers part l: journal of materials-design and applications,1 -proceedings of the institution of mechanical engineers part m: journal of engineering for the maritime environment,1 -proceedings of the international conference on electronic business,0 -proceedings of the pme conference,1 -proceedings : international symposium on multiple-valued logic,1 -proceedings of the international thermal spray conference,1 -bulletin of the international statistical institute,1 -proceedings of the japan academy series a: mathematical sciences,1 -proceedings of the japan academy series b: physical and biological sciences,1 -proceedings of the lfg conference,1 -proceedings of the linnean society of new south wales,1 -proceedings of the london mathematical society,3 -proceedings of the national academy of sciences india section b: biologicalsciences,1 -proceedings of the national academy of sciences of the united states of america,3 -proceedings of the national academy of sciences,3 -pnas,3 -proceedings of the nutrition society,1 -proceedings of the prehistoric society,2 -proceedings of the risø international symposium on materials science,1 -proceedings of the royal irish academy section c : archaeology celtic studies history linguistics literature,1 -proceedings of the royal society a : mathematical physical and engineering sciences,2 -proceedings of the royal society b : biological sciences,3 -proceedings of the royal society of edinburgh section a: mathematics,1 -proceedings of the seminar for arabian studies,1 -experimental biology and medicine,1 -proceedings of the society of antiquaries in scotland,1 -proceedings of the steklov institute of mathematics,1 -proceedings of the western pharmacology society,1 -proceedings of the virgil society,1 -proceedings of the yorkshire geological society,1 -proceedings - electrochemical society,1 -proceedings : annual reliability and maintainability symposium,1 -process biochemistry,1 -process safety and environmental protection,1 -process safety progress,1 -process studies,1 -production and operations management,3 -production planning and control,1 -productions animales,1 -professional development in education,1 -professional engineering,1 -business and professional ethics journal,1 -professional geographer,2 -professional psychology: research and practice,1 -program: electronic library and information systems,1 -programming and computer software,1 -progres en urologie,1 -progress in aerospace sciences,1 -progress in biochemistry and biophysics,1 -progress in biomedical optics and imaging,1 -progress in biophysics and molecular biology,1 -progress in brain research,1 -progress in cardiovascular diseases,1 -progress in chemistry,0 -progress in colloid and polymer science,1 -progress in computational fluid dynamics,1 -progress in crystal growth and characterization of materials,2 -progress in development studies,1 -progress in drug research,1 -progress in electromagnetics research,2 -progress in energy and combustion science,2 -progress in experimental tumor research,1 -progress in histochemistry and cytochemistry,1 -progress in human geography,3 -progress in industrial ecology: an international journal,1 -progress in inorganic chemistry,1 -progress in lipid research,1 -progress in materials science,2 -progress in medicinal chemistry,1 -progress in molecular biology and translational science,1 -progress in neurobiology,2 -progress in neuro-psychopharmacology and biological psychiatry,1 -progress in nuclear energy,1 -progress in nuclear magnetic resonance spectroscopy,1 -progress in nutrition,0 -progress in oceanography,1 -progress in optics,1 -progress in organic coatings,1 -progress in orthodontics,1 -progress in particle and nuclear physics,3 -progress in pediatric cardiology,1 -progress in photovoltaics,2 -progress in physical geography,1 -progress in physics,0 -progress in planning,2 -progress in polymer science,2 -progress in quantum electronics,3 -progress in reaction kinetics and mechanism,1 -progress in retinal and eye research,3 -progress in rubber plastics and recycling technology,1 -progress in solid state chemistry,1 -progress in surface science,1 -progress of theoretical and experimental physics,1 -project management journal,1 -projections: the journal for movies and mind,2 -prokla,1 -prolegomena,1 -prologi : viestinnän ja vuorovaikutuksen tieteellinen aikakauslehti,1 -prometheus,1 -promet: traffic and transportation,1 -global health promotion,1 -prooftexts: a journal of jewish literary history,1 -propellants explosives pyrotechnics,1 -property management,1 -prose studies,2 -prospettiva: rivista di storia dell arte antica e moderna,1 -prostaglandins and other lipid mediators,1 -prostaglandins leukotrienes and essential fatty acids,1 -prostate,1 -prostate cancer and prostatic diseases,1 -prosthetics and orthotics international,1 -prostor,1 -protection of metals and physical chemistry of surfaces,1 -protee: theories et pratiques semiotiques,1 -protein and peptide letters,1 -protein engineering design and selection,1 -protein expression and purification,1 -protein journal,1 -protein science,1 -proteins: structure function and bioinformatics,1 -proteome science,1 -proteomics,1 -proteomics clinical applications,1 -protist,1 -protoplasma,1 -protosociology: an international journal of interdisciplinary research,1 -proverbium,1 -proxima thule,1 -proyecciones,1 -prudentia,1 -przeglad archeologiczny,1 -przeglad humanistyczny,1 -przeglad menopauzalny,1 -przeglad orientalistyczny,1 -przemysl chemiczny,0 -ps: political science and politics,1 -psyart,1 -psychiatria danubina,1 -psychiatric annals,1 -the psychiatrist,1 -psychiatric clinics of north america,1 -psychiatric genetics,1 -psychiatric quarterly,1 -psychiatric rehabilitation journal,1 -psychiatric services,1 -psychiatrie de l'enfant,1 -psychiatrische praxis,1 -psychiatry and clinical neurosciences,2 -psychiatry investigation,1 -psychiatry psychology and law,1 -psychiatry research,1 -psychiatry research: neuroimaging,1 -psychiatry: interpersonal and biological processes,1 -psychnology journal,1 -psychoanalysis and history,2 -psychoanalytic dialogues,1 -psychoanalytic inquiry,1 -psychoanalytic psychology,1 -psychoanalytic psychotherapy,1 -psychoanalytic quarterly,1 -psychoanalytic review,1 -psychoanalytic social work,1 -psychoanalytic study of the child,1 -psychodynamic practice,1 -psychogeriatrics,1 -psychologia,1 -psychological assessment,3 -psychological bulletin,3 -psychological inquiry,2 -psychological medicine,3 -psychological methods,3 -psychological record,1 -psychological reports,1 -psychological research-psychologische forschung,1 -psychological review,3 -psychological science,3 -psychological science in the public interest,3 -psychological test and assessment modeling,1 -gériatrie et psychologie neuropsychiatrie du vieillissement,1 -psychologie du travail et des organisations,1 -psychologische rundschau,1 -psychologist,1 -psychology and health,2 -psychology and marketing,1 -psychology and aging,3 -psychology and developing societies,1 -psychology crime and law,1 -psychology health and medicine,1 -psychology in the schools,1 -psychology of addictive behaviors,2 -psychology of aesthetics creativity and the arts,1 -psychology of learning and motivation,2 -psychology of men and masculinity,1 -psychology of music,3 -psychology of sport and exercise,1 -psychology of women quarterly,1 -psychology public policy and law,1 -psychometrika,2 -psychomusicology,1 -psychoneuroendocrinology,2 -psychonomic bulletin and review,3 -psycho-oncologie,1 -psycho-oncology,1 -psychopathology,1 -psychopharmacology,1 -psychopharmakotherapie,1 -psychophysiology,2 -psychosomatic medicine,2 -psychosomatics,1 -psychotherapeut,1 -psychotherapie psychosomatik medizinische psychologie,1 -psychotherapy,2 -psychotherapy and psychosomatics,3 -psychotherapy research,2 -psyke and logos,1 -psykologia,2 -psykoterapia,1 -pteridines,1 -public administration,3 -public administration and development,1 -public administration and management,1 -public administration quarterly,1 -public administration review,3 -public affairs quarterly,1 -public archaeology,2 -public budgeting and finance,1 -public choice,1 -public culture,3 -public finance review,1 -public health,1 -public health ethics,1 -public health genomics,1 -public health nursing,1 -public health nutrition,1 -public health reports,1 -public historian,2 -public history review,1 -public law review,1 -public law: the constitutional and administrative law of the commonwealth,2 -public management review,3 -public money and management,1 -public opinion quarterly,3 -public organization review,1 -public performance and management review,2 -public personnel management,1 -public policy and administration,1 -public procurement law review,2 -public relations review,1 -public services quarterly,1 -public understanding of science,2 -public works management and policy,1 -publicacions matematiques,1 -publicationes mathematicae: debrecen,1 -publications from the national museum: studies in archaeology and history,1 -publications issued by the royal swedish academy of music,1 -publications mathematiques de l ihes,3 -publications of the astronomical society of australia,1 -publications of the astronomical society of japan,1 -publications of the astronomical society of the pacific,1 -publications of the austrian ludwig wittgenstein society,1 -publications of the research institute for mathematical sciences,1 -"publications of the university of eastern finland : reports and studies in education, humanities, and theology",0 -publications on ocean development,1 -publishing history,0 -publishing research quarterly,1 -publius: the journal of federalism,1 -publizistik,1 -puerto rico health sciences journal,1 -puhe ja kieli,2 -puheen ja kielen tutkimuksen yhdistyksen julkaisuja,1 -pulmonary pharmacology and therapeutics,1 -pulp and paper canada,1 -pulp and paper international,1 -punishment and society: international journal of penology,2 -pure and applied chemistry,1 -pure and applied geophysics,1 -pure and applied mathematics quarterly,1 -purinergic signalling,1 -purushartha,1 -pyrenae,1 -pythagoras,1 -qirt journal,1 -qjm: an international journal of medicine,1 -qme: quantitative marketing and economics,1 -quaderni costituzionali,1 -quaderni d italianistica,1 -"quaderni dellistituto di lingua e letteratura latina, roma",1 -quaderni di archeologia della libia,1 -quaderni di storia,1 -quaderni di studi arabi,1 -quaderni petrarcheschi,1 -quaderni storici,1 -quaderni urbinati di cultura classica,2 -quaderns d arquitectura i urbanisme,1 -quaderns d historia de l enginyeria,1 -quaderns de l institut catala d antropologia,1 -quaerendo,1 -quaestio: the yearbook of the history of metaphysics,1 -quaestiones mathematicae,1 -qualitative health research,3 -qualitative inquiry,3 -qualitative market research,1 -qualitative report,1 -qualitative research,3 -qualitative research in accounting and management,1 -qualitative research in organizations and management,1 -qualitative research in psychology,2 -qualitative research journal,1 -qualitative research reports in communication,1 -qualitative social work: research and practice,2 -qualitative sociology,1 -qualitative sociology review,1 -qualitative studies,1 -quality and quantity,1 -bmj quality and safety,3 -quality and reliability engineering international,1 -quality assurance in education,1 -quality assurance journal,1 -quality engineering,1 -quality in higher education,1 -quality in primary care,0 -quality management in health care,1 -quality management journal,1 -quality of life research,3 -quality progress,1 -quality technology and quantitative management,1 -quantitative economics,3 -quantitative finance,2 -quantum electronics,1 -quantum information and computation,1 -quantum information processing,1 -quartar,1 -quarterly journal of austrian economics,1 -quarterly journal of economics,3 -quarterly journal of engineering geology and hydrogeology,1 -quarterly journal of experimental psychology,1 -quarterly journal of experimental psychology section b: comparative and physiological psychology,1 -quarterly journal of mathematics,1 -quarterly journal of mechanics and applied mathematics,1 -quarterly journal of nuclear medicine and molecular imaging,1 -quarterly journal of political science,2 -quarterly journal of speech,2 -quarterly journal of the royal meteorological society,2 -quarterly of applied mathematics,1 -quarterly review of biology,2 -quarterly review of economics and finance,1 -quarterly review of film and video,1 -quarterly reviews of biophysics,1 -quasigroups and related systems,1 -quaternaire,1 -quaternary geochronology,1 -quaternary international,1 -quaternary research,1 -quaternary science reviews,3 -quebec studies,1 -queens law journal,1 -queensland review,1 -queeste,1 -quest,1 -questiones medii aevi novae,1 -questions liturgiques-studies on liturgy,1 -queueing systems,1 -"qui parle: literature, philosophy, visual arts, history",1 -quimica nova,0 -quintessence international,1 -qumran chronicle,1 -r&d management,2 -r & d magazine,1 -raabe-gesellschaft jahrbuch,1 -race and class,2 -race equality teaching,1 -race ethnicity and education,2 -radiation and environmental biophysics,1 -radiation effects and defects in solids,1 -radiation measurements,1 -radiation oncology,1 -radiation physics and chemistry,1 -radiation protection dosimetry,1 -radiation research,1 -radical history review,1 -radical musicology,1 -radical pedagogy,1 -radical philosophy,1 -radio science,1 -radiocarbon,1 -radiochemistry,0 -radiochimica acta,1 -radiographics,2 -radiography,1 -radiologe,1 -radiologia medica,1 -radiologic clinics of north america,1 -radiology,3 -radiophysics and quantum electronics,1 -radioprotection,1 -radiotherapy and oncology,1 -raffles bulletin of zoology,1 -rairo: operations research,1 -rairo: theoretical informatics and applications,1 -rakenteiden mekaniikka,1 -ramanujan journal,1 -rambam: tidsskrift for joedisk kultur og forskning,1 -ramus: critical studies in greek and roman literature,2 -rand journal of economics,3 -random operators and stochastic equations,1 -random structures and algorithms,2 -range management and agroforestry,0 -rangeland ecology and management,1 -rangeland journal,1 -rangifer,1 -rapid communications in mass spectrometry,1 -rapid prototyping journal,1 -rare metal materials and engineering,1 -rare metals,1 -raritan: a quarterly review,1 -rask,1 -rasprave instituta za hrvatski jezik i jezikoslovlje,1 -rassegna: edizione bilingue,1 -rassegna della letteratura italiana,1 -rassegna europea di letteratura italiana,1 -rassegna storica del risorgimento,1 -ratio,2 -ratio juris,3 -rationality and society,1 -mineral economics,1 -razon y palabra: revista electronica en america latina especializada en topicos de comunicacion,1 -razprave: dissertationes,1 -reaction kinetics mechanisms and catalysis,1 -reactions weekly,1 -reactive and functional polymers,1 -readerly/writerly texts,1 -reading and writing,2 -reading and writing quarterly,1 -reading medieval studies,1 -reading online,1 -reading psychology,1 -literacy research and instruction,1 -reading research quarterly,3 -reading room: a journal of art and culture,1 -reading teacher,1 -real analysis exchange,1 -real estate economics,2 -real estate taxation,1 -proceedings : real-time systems symposium,1 -reales sitios,1 -real-time systems,2 -recall,3 -recent patents on anti-cancer drug discovery,1 -recent patents on cardiovascular drug discovery,1 -recercare: rivista per lo studio e la pratica della musica antica,1 -recueil des cours - académie de droit international de la haye,1 -ranam recherches anglaises et nord-americaines,1 -recherches augustiniennes et patristiques,1 -recherches de science religieuse,1 -recherches de theologie et philosophie medievales,2 -recherches economiques de louvain-louvain economic review,1 -recherches en didactique des mathematiques,1 -recherches germaniques,1 -recherches husserliennes,1 -recherches linguistiques,1 -recherches linguistiques de vincennes,1 -rssi recherches semiotiques: semiotic inquiry,1 -recherches sur diderot et sur lencyclopedie,1 -recherches sur la philosophie et le langage,1 -recht und psychiatrie,1 -recht der internationalen wirtschaft,1 -rechtsgeschichte,2 -rechtsmedizin,1 -rechtstheorie,2 -record of conference papers : petroleum and chemical industry conference,1 -records management journal,2 -records of natural products,1 -"records of the ieee international workshop on memory technology, design, and testing",1 -redescriptions,1 -redox report,1 -reference and user services quarterly,1 -reference librarian,1 -reference services review,1 -reflections: the sol journal,1 -reflective practice,1 -reformation and renaissance review,1 -refractories and industrial ceramics,1 -refugee survey quarterly,1 -refugees and human rights,1 -regenerative medicine,1 -regional and federal studies,1 -regional anesthesia and pain medicine,2 -regional environmental change,1 -regional science and urban economics,2 -regional studies,3 -regular and chaotic dynamics,1 -regulation and governance,3 -regulatory toxicology and pharmacology,1 -rehabilitation,1 -rehabilitation counseling bulletin,1 -rehabilitation nursing,1 -rehabilitation psychology,1 -reihe forschungen zum ostseeraum,1 -reihe germanistische linguistik,1 -reihe geschichte,1 -reinardus,1 -reinforced plastics,1 -rejuvenation research,1 -relations industrielles-industrial relations,1 -relc journal,2 -reliability engineering and system safety,3 -reliable computing,1 -religio: revue pro religionistiku,1 -religiologiques: sciences humaines et religion,1 -religion,3 -religion and literature,2 -religion and american culture: a journal of interpretation,1 -religion and reason,1 -religion and society,2 -religion and the arts,1 -religion and the social order,1 -"religion, state and society",2 -religions in the graeco-roman world,2 -religionspadagogische beitrage,1 -religionsvetenskapliga skrifter,1 -religionsvidenskabeligt tidsskrift,1 -religious education,2 -religious humanism,0 -religious studies,2 -religious studies review,1 -remedial and special education,2 -remediation journal,1 -remote sensing of environment,3 -rem: revista escola de minas,1 -renaissance and reformation,1 -renaissance drama,1 -renaissance forum: an electronic journal of early modern literary and historical studies,1 -renaissance papers,1 -renaissance quarterly,2 -renaissance studies: journal of the society for renaissance studies,3 -renal failure,1 -renascence: essays on values in literature,1 -rendiconti del seminario matematico,1 -rendiconti del seminario matematico della universita di padova,1 -rendiconti della accademia di archeologia lettere e belle arti,1 -rendiconti lincei: matematica e applicazioni,1 -renewable and sustainable energy reviews,2 -renewable agriculture and food systems,1 -renewable energy,2 -report of the department of antiquities of cyprus,1 -reports on mathematical logic,1 -reports on mathematical physics,1 -reports on progress in physics,3 -representation theory,1 -representations,3 -reproduction,1 -reproduction fertility and development,1 -reproduction in domestic animals,1 -reproductive biology,1 -reproductive biology and endocrinology,1 -reproductive biomedicine online,1 -reproductive health matters,1 -reproductive medicine and biology,1 -reproductive sciences,1 -reproductive toxicology,1 -requirements engineering,2 -res humanitariae,1 -"res publica: a journal of moral, legal and social philosophy",2 -res: anthropology and aesthetics,1 -research and practice for persons with severe disabilities,1 -research and practice in technology enhanced learning,1 -rma research chronicle,1 -research communications in molecular pathology and pharmacology,1 -research dialogue in learning and instruction,1 -research evaluation,2 -research in african literatures,2 -research in astronomy and astrophysics,1 -research in autism spectrum disorders,1 -research in comparative and international education,1 -research in dance education,3 -research in developmental disabilities,1 -research in economic anthropology,2 -research in economic history,0 -research in economics,1 -research in education,1 -research in engineering design,3 -research in experimental economics,1 -research in higher education,2 -research in human capital and development,1 -research in human development,1 -research in labor economics,1 -research in law and economics,1 -research in maritime history,1 -research in mathematics education,1 -research in microbiology,1 -research in middle east economics,1 -research in nondestructive evaluation,1 -research in nursing and health,2 -research in organizational behavior,1 -research in personnel and human resources management,1 -research in phenomenology,1 -research in political economy,1 -research in post-compulsory education,1 -research in public policy analysis and management,1 -research in rural sociology and development,1 -research in science & technological education,1 -research in science education,2 -research in social and administrative pharmacy,2 -research in social stratification and mobility,2 -research in sports medicine,1 -research in the history of economic thought and methodology,1 -research in the social scientific study of religion,2 -research in the sociology of organizations,1 -research in the teaching of english,2 -research in transportation economics,1 -research in veterinary science,1 -research journal of biotechnology,0 -research journal of chemistry and environment,0 -research letters in communications,1 -research letters in materials science,1 -research on aging,1 -research on chemical intermediates,1 -research on emotion in organizations,1 -research on language and social interaction,3 -research on social work practice,2 -"research on technological innovation, management and policy",1 -research papers in education,1 -research policy,3 -research quarterly for exercise and sport,1 -research strategies,1 -research studies in music education,3 -research-technology management,1 -reseaux,1 -reseaux: french journal of communication,1 -residential treatment for children and youth,1 -resource and energy economics,1 -resource geology,1 -resources conservation and recycling,2 -resources for american literary study,1 -resources for feminist research,1 -resources policy,1 -respiration,1 -respiratory care,1 -respiratory medicine,1 -respiratory physiology and neurobiology,1 -respiratory research,2 -respirology,2 -restauratorenblatter,1 -restaurator: international journal for the preservation of library and archival material,1 -"restauro: forum fur restauratoren, konservatoren und denkmalpfleger",1 -restitution law review,1 -restoration ecology,2 -"restoration: studies in english literary culture, 1660-1700",1 -restorative neurology and neuroscience,1 -results in mathematics,1 -resuscitation,3 -retfaerd: nordisk juridisk tidsskrift,2 -rethinking history,3 -rethinking marxism,1 -retina: the journal of retinal and vitreous diseases,2 -retrovirology,1 -review of accounting studies,3 -review of african political economy,1 -review of agricultural economics,1 -review of aromatic and medicinal plants,1 -review of austrian economics,1 -review of biblical literature,1 -review of black political economy,1 -review of central and east european law,2 -review of communication,1 -review of derivatives research,1 -review of development economics,1 -review of economic design,1 -review of economic dynamics,3 -review of economic studies,3 -review of economics and statistics,3 -review of economics of the household,1 -"review of education, pedagogy, and cultural studies",1 -review of educational research,3 -review of english studies,2 -review of environmental economics and policy,1 -review of faith and international affairs,1 -review of finance,3 -review of financial economics,1 -review of financial studies,3 -review of general psychology,1 -review of higher education,2 -review of income and wealth,2 -review of industrial organization,1 -review of international economics,1 -review of international organizations,3 -review of international political economy,3 -review of international studies,2 -review of law and economics,1 -review of metaphysics,2 -review of middle east economics and finance,1 -review of network economics,1 -review of pacific basin financial markets and policies,1 -review of palaeobotany and palynology,1 -review of policy research,1 -review of political economy,1 -review of politics,2 -review of public personnel administration,1 -review of quantitative finance and accounting,1 -review of rabbinic judaism,1 -review of radical political economics,1 -review of religious research,3 -review of research in education,2 -review of scientific instruments,1 -review of scottish culture,1 -review of social economy,1 -review of symbolic logic,1 -review of urban and regional development studies,1 -review of world economics,1 -review-literature and arts of the americas,1 -reviews in american history,0 -reviews in analytical chemistry,1 -reviews in anthropology,1 -reviews in cardiovascular medicine,1 -reviews in chemical engineering,1 -reviews in clinical gerontology,1 -reviews in computational chemistry,1 -reviews in conservation,1 -reviews in economic geology,1 -reviews in endocrine and metabolic disorders,1 -reviews in environmental science and bio-technology,1 -reviews in fish biology and fisheries,2 -reviews in gastroenterological disorders,1 -reviews in inorganic chemistry,1 -reviews in mathematical physics,1 -reviews in medical microbiology,1 -reviews in medical virology,1 -reviews in mineralogy and geochemistry,2 -reviews in the neurosciences,1 -reviews of environmental contamination and toxicology,1 -reviews of geophysics,3 -reviews of modern physics,3 -reviews of physiology biochemistry and pharmacology,1 -reviews on advanced materials science,1 -revija za kriminalistiko in kriminologijo,1 -revija za socijalnu politiku,1 -revista andina,1 -revista argentina de clinica psicologica,1 -revista arvore,1 -revista bíblica,1 -revista brasileira de ciencia do solo,1 -revista brasileira de cirurgia cardiovascular,1 -revista brasileira de entomologia,1 -revista brasileira de fruticultura,1 -revista brasileira de historia,2 -revista brasileira de literatura comparada,1 -revista brasileira de medicina do esporte,0 -revista brasileira de medicina veterinaria,1 -revista brasileira de oftalmologia,1 -revista brasileira de paleontologia,1 -revista brasileira de parasitologia veterinaria,1 -revista brasileira de politica internacional,1 -revista brasileira de zootecnia-brazilian journal of animal science,1 -revista caatinga,1 -revista canadiense de estudios hispanicos,1 -revista canaria de estudios ingleses,1 -revista catalana de teologia,1 -revista chilena de cirugia,1 -revista chilena de historia natural,1 -revista chilena de literatura,1 -revista ciencia agronomica,1 -revista cientifica-facultad de ciencias veterinarias,1 -revista clinica espanola,1 -revista colombiana de antropologia,1 -revista colombiana de ciencias pecuarias,1 -revista colombiana de entomologia,1 -revista colombiana de estadistica,1 -revista complutense de historia de america,1 -revista da escola de enfermagem da usp,1 -linguas e literaturas: revista da faculdade de letras,1 -revista da universidade de aveiro: letras,1 -revista de administracion publica,1 -revista de antropologia social,1 -revista de biologia marina y oceanografia,1 -revista de biologia tropical,1 -revista de calidad asistencial,1 -revista de cercetare si interventie sociala,1 -revista de chimie,1 -revista de ciencia politica,1 -revista de ciencias sociales,1 -revista de critica literaria latinoamericana,1 -revista de derecho comunitario europeo,1 -revista de derecho constitucional europeo,1 -revista de derecho del estado,1 -revista de estudios clasicos,1 -revista de estudios colombianos,1 -revista de estudios hispanicos,1 -revista de estudios politicos,1 -revista de estudios sociales,1 -revista de estudos anglo-portugueses,1 -revista de etnografie si folclor,1 -revista de filologia espanola,2 -revista de filologia romanica,1 -revista de filologia y linguistica,1 -revista de filosofia,1 -revista de filosofia aurora,1 -revista de geografia norte grande,1 -revista de hispanismo filosofico,1 -revista de historia actual,1 -revista de historia da sociedade e da cultura,1 -revista de historia das ideias,1 -revista de historia economica,1 -revista de historia economica e social,1 -revista de historia jeronimo zurita,1 -revista de historia moderna,1 -revista de indias,1 -revista de interpretación bíblica latinoamericana,1 -revista de investigacion clinica,1 -revista de la construccion,1 -revista de la facultad de agronomia de la universidad del zulia,1 -revista de la facultad de ciencias agrarias,1 -revista de la facultad de derecho de mexico,1 -revista de la real academia de ciencias exactas fisicas y naturales serie a: matematicas,1 -revista de la union matematica argentina,1 -revista de lexicografia,1 -revista de linguistica y lenguas aplicadas,1 -revista de literatura,1 -revista de llengua i dret,1 -revista de metalurgia,1 -revista de musicologia,1 -revista de neurologia,1 -revista de nutricao-brazilian journal of nutrition,1 -revista de occidente,0 -revista de psicologia social,1 -revista de saude publica,1 -revista del clad reforma y democracia,1 -revista del convenio andres bello,1 -revista electronica complutense de investigacion en educacion musical,1 -revista espanola de antropologia americana,1 -revista espanola de cardiologia,1 -revista espanola de derecho constitucional,1 -revista espanola de documentacion cientifica,1 -revista espanola de enfermedades digestivas,1 -revista espanola de investigaciones sociologicas,1 -revista espanola de linguistica,2 -revista espanola de linguistica aplicada,1 -revista espanola de nutricion comunitaria-spanish journal of community nutrition,0 -revista espanola de teologia,1 -european review of latin american and caribbean studies,2 -revista fitotecnia mexicana,1 -revista iberoamericana,2 -revista internacional de contaminacion ambiental,1 -revista internacional de filosofia politica,1 -revista internacional em lingua portuguesa,1 -revista internacional de linguistica iberoamericana,2 -revista internacional de medicina y ciencias de la actividad fisica y del deporte,1 -revista internacional de metodos numericos para calculo y diseno en ingenieria,1 -revista internacional de sociologia,1 -revista istorica,1 -revista lusitana,1 -revista matematica complutense,1 -revista matematica iberoamericana,2 -revista medica de chile,1 -revista mexicana de astronomia y astrofisica,1 -revista mexicana de biodiversidad,1 -revista mexicana de ciencias geologicas,1 -revista mexicana de ciencias pecuarias,1 -revista mexicana de fisica e,1 -revista mexicana de ingenieria quimica,1 -revista musical chilena,1 -revista mvz cordoba,1 -"oil, gas and energy law",1 -okayama-daigaku-keizai-gakkai-zasshi,0 -oknytt: tidskrift for johan nordlander-sallskapet,1 -ökumenische rundschau,1 -olba,0 -old testament essays,1 -nucleic acid therapeutics,1 -olympika: the international journal of olympic studies,1 -omega: international journal of management science,2 -omega: journal of death and dying,1 -omics: a journal of integrative biology,1 -omsorg: nordisk tidsskrift for palliativ medisin,1 -oncogene,2 -oncologie,1 -oncologist,1 -oncology,1 -oncology nursing forum,1 -oncology reports,1 -oncology research,1 -oncology: new york,1 -onderstepoort journal of veterinary research,1 -online brazilian journal of nursing,1 -online information review,1 -online journal of analytic combinatorics,1 -online journal of health and allied sciences,1 -online journal of issues in nursing,2 -online journal of nursing informatics,1 -online journal of space communication,1 -onoma: journal of the international council of onomastic sciences,2 -onomastica canadiana,1 -onomastica slavogermanica,1 -onomastica uralica,1 -onomatoloski prilozi,1 -ons geestelijk erf,1 -op. cit.,1 -open agriculture journal,0 -open economies review,1 -open house international,1 -open learning,1 -open museum journal,1 -open systems and information dynamics,1 -opera quarterly,2 -operations research,3 -operations research letters,1 -operative dentistry,1 -operative orthopadie und traumatologie,1 -operative techniques in sports medicine,1 -operative techniques in thoracic and cardiovascular surgery,1 -operators and matrices,1 -ophthalmic and physiological optics,1 -ophthalmic epidemiology,1 -ophthalmic genetics,1 -ophthalmic plastic and reconstructive surgery,1 -ophthalmic research,1 -ophthalmic surgery lasers and imaging,1 -ophthalmologe,1 -ophthalmologica,1 -ophthalmology,3 -optica applicata,1 -optical and quantum electronics,1 -optical engineering,1 -optical fiber technology,1 -optical materials,1 -optical materials express,2 -optical review,1 -optical switching and networking,1 -optics and laser technology,1 -optics and lasers in engineering,1 -optics and photonics news,1 -optics and spectroscopy,1 -optics communications,1 -optics express,1 -optics letters,2 -optik,1 -optimal control applications and methods,1 -optimization,1 -optimization and engineering,1 -optimization letters,1 -optimization methods and software,1 -optoelectronics and advanced materials: rapid communications,1 -opto: electronics review,1 -optometry and vision science,1 -opuscula: bibliotheca arnamagnaeana,1 -opuscula historica upsaliensia,0 -opuscula,1 -or spectrum,1 -oral and maxillofacial surgery,1 -oral diseases,2 -oral health and preventive dentistry,1 -oral history,1 -oral history review,2 -oral oncology,2 -oral radiology,1 -oral surgery,1 -oral tradition,2 -oralia,1 -orbis,1 -orbis litterarum,3 -orbis terrarum,1 -orbis tertius,1 -orbis: bulletin international de documentation linguistique,1 -orbit,1 -ord og tunga,1 -order: a journal on the theory of ordered sets and its applications,1 -ore geology reviews,1 -oregon historical quarterly,1 -organic and biomolecular chemistry,2 -organic electronics,2 -organic geochemistry,2 -organic letters,2 -organic preparations and procedures international,1 -organic process research and development,1 -organic syntheses,1 -organization management journal,1 -organised sound,3 -organisms diversity and evolution,1 -organization,3 -organization and environment,2 -organization science,3 -organization studies,3 -international journal of organizational analysis,1 -organizational behavior and human decision processes,3 -organizational dynamics,1 -organizational research methods,3 -organometallics,1 -organon f,1 -oriens christianus,1 -"oriens extremus: zeitschrift fur sprache, kunst und kultur der laender des fernen ostens",1 -oriens,1 -oriens-occidens,1 -"orient: deutsche zeitschrift fur politik, wirtschaft und kultur des orients",1 -orient: reports of the society for near eastern studies in japan,1 -oriental art,1 -oriental insects,1 -orientalia,1 -orientalia christiana periodica,2 -orientalia lovaniensia periodica,1 -orientalistische literaturzeitung,1 -origins of life and evolution of biospheres,1 -orizzonti: rassegna di archeologia,1 -orl: journal for oto: rhino: laryngology and its related specialties,1 -ornis fennica,1 -ornis norvegica,1 -ornitologia neotropical,1 -orphanet journal of rare diseases,1 -orpheus: rivista de umanità classica e cristiana,1 -orthodontics and craniofacial research,1 -orthopade,1 -orthopaedic nursing,1 -orthopaedics and traumatology-surgery and research,1 -orthopaedics and trauma,1 -orthopedic clinics of north america,1 -orthopedics,1 -ortnamnssällskapets i uppsala årsskrift,1 -oryx,1 -osa trends in optics and photonics,1 -osaka journal of mathematics,1 -osgoode hall law journal,1 -osiris,3 -osloer beitrage zur germanistik,1 -osmanli bilimi arastirmalari,1 -osnabrucker beitrage zur sprachtheorie,1 -osteoarthritis and cartilage,2 -osteologie,1 -osteoporosis international,2 -osterreichische musikzeitschrift,1 -osterreichische namenforschung,1 -osterreichische zeitschrift fur geschichtswissenschaften,1 -osterreichische zeitschrift fur politikwissenschaft,1 -osterreichische zeitschrift fur volkskunde,1 -osterreichisches archiv fur recht und religion,1 -osteuropa,1 -ostkirchliche studien,1 -ostomy wound management,1 -ostraka,1 -ostrich,1 -other voices,1 -otjr: occupation participation and health,1 -otolaryngologic clinics of north america,1 -otolaryngology: head and neck surgery,1 -otology and neurotology,1 -ottar,0 -ottawa law review,1 -otto-novecento,1 -oud holland,1 -oudtestamentische studien,1 -outlines,1 -outlook on agriculture,1 -outre-mers,1 -outskirts: feminisms along the edge,1 -over multatuli,1 -overland,1 -owl of minerva,1 -oxford art journal,3 -oxford bulletin of economics and statistics,2 -oxford development studies,1 -oxford economic papers: new series,2 -oxford german studies,3 -oxford journal of archaeology,2 -oxford journal of legal studies,3 -oxford literary review,1 -oxford review of economic policy,1 -oxford review of education,2 -oxford studies in ancient philosophy,1 -oxford studies in comparative education,1 -oxidation communications,0 -oxidative medicine and cellular longevity,0 -oyo tokeigaku,1 -ozone-science and engineering,1 -p n a,1 -pace international law review,1 -pace: pacing and clinical electrophysiology,1 -pachyderm,1 -pacific accounting review,1 -pacific affairs,1 -pacific coast philology,1 -pacific conference on computer graphics and applications,1 -pacific economic bulletin,1 -pacific economic review,1 -pacific focus,1 -pacific historical review,1 -pacific journal of mathematics,1 -pacific journal of optimization,1 -pacific northwest quarterly,1 -pacific philosophical quarterly,2 -pacific review,2 -ethnomusicology review,1 -pacific rim property research journal,1 -pacific science,1 -pacific studies,1 -pacifica: australasian theological studies,1 -pacific-basin finance journal,1 -packaging technology and science,2 -paddy and water environment,1 -padusa,1 -paedagogica historica,2 -paediatria croatica,1 -paediatric and perinatal epidemiology,1 -paediatric drugs,1 -paediatric respiratory reviews,1 -paideuma: a journal devoted to ezra pound scholarship,1 -paideuma: mitteilungen zur kulturkunde,1 -pain,3 -pain clinic,1 -pain management nursing,1 -pain medicine,1 -pain physician,1 -pain practice,1 -pakistan journal of botany,1 -pakistan journal of medical sciences,1 -pakistan journal of zoology,1 -palaeobiodiversity and palaeoenvironments,1 -palaeogeography palaeoclimatology palaeoecology,2 -palaeohistoria,1 -palaeontographica abteilung a: palaozoologie: stratigraphie,1 -palaeontographica abteilung b: palaophytologie,1 -palaeontographia italica,1 -palaeontologia electronica,1 -palaeontologia polonica,1 -palaeontologische zeitschrift,1 -palaeontology,2 -palaeoslavica,1 -palaeoworld,1 -palaestina antiqua,1 -palaios,1 -palarchs journal of archaeology of egypt/egyptology,1 -paleo,1 -paleo-aktueel,1 -paleoanthropology,1 -paleobiology,2 -paleobios,1 -paleontological journal,1 -paleontological research,1 -paleorient,1 -palestine exploration quarterly,1 -palimpsestes: textes de reference,1 -pallas: revue d'etudes antiques,1 -palliative and supportive care,1 -palliative medicine,2 -palynology,1 -neue paläontologische abhandlungen,1 -pamatky archeologicke,0 -pamietnik literacki,1 -pamietnik teatralny,1 -pan,1 -pancreas,1 -pancreatology,1 -panminerva medica,1 -panoeconomicus,1 -panorama: international journal of comparative religious education and values,1 -pan-pacific entomologist,1 -journal of the institute of conservation,1 -paper technology,1 -"paper, film and foil converter",1 -paperi ja puu,0 -papers and monographs of the finnish institute at athens,1 -papers from the norwegian institute at athens,1 -papers in regional science,1 -papers of surrealism,1 -papers of the bibliographical society of america,1 -papers of the british school at rome,3 -papers on joyce,1 -papers on language and literature,1 -papers: explorations into childrens literature,1 -parabola,0 -paragone: arte,1 -paragraph,3 -parallax,1 -"international journal of parallel, emergent and distributed systems",1 -parallel computing,2 -proceedings : international workshops on parallel processing,1 -parallel processing letters,1 -parasite immunology,1 -parasites and vectors,1 -parasitology,1 -parasitology international,1 -parasitology research,1 -parenting: science and practice,1 -parergon,1 -park science,1 -parkinsonism and related disorders,1 -parliamentary affairs,1 -parliamentary history,2 -"parliaments, estates and representation",2 -parnassus: poetry in review,1 -parola del passato,1 -la parola del testo,1 -parole de l'orient,1 -partial answers: journal of literature and the history of ideas,3 -particle and particle systems characterization,1 -particle and fibre toxicology,2 -particulate science and technology,1 -particuology,1 -party politics,3 -pasado y memoria: revista de historia contemporanea,1 -passage: tidskrift for litteratur og kritik,1 -passato e presente,1 -past and present,3 -"pastoral care in education: an international journal of personal, social and emotional development",1 -pastoral psychology,1 -pastoraltheologie: monatsschrift fur wissenschaft und praxis in kirche und gesellschaft,1 -pastoraltheologische informationen,1 -pathobiology,1 -pathology,1 -pathology and oncology research,1 -pathology case reviews,1 -pathology international,1 -pathology research and practice,1 -pathophysiology of haemostasis and thrombosis,1 -patient education and counseling,2 -patristica et mediaevalia,1 -pattern analysis and applications,1 -pattern recognition,3 -pattern recognition letters,2 -patterns of prejudice,2 -pci journal,1 -pda journal of pharmaceutical science and technology,1 -participatory design conference proceedings,2 -peabody journal of education,1 -peace and change: a journal of peace research,1 -peace and conflict,1 -peace and conflict studies,1 -peace review,1 -pedagogische studien,1 -pedagogisk forskning i sverige,1 -"pedagogy, culture and society",1 -"pedagogy: critical approaches to teaching literature, language, composition, and culture",1 -pediatric allergy and immunology,2 -pediatric allergy immunology and pulmonology,1 -pediatric and developmental pathology,1 -pediatric anesthesia,1 -pediatric annals,1 -pediatric blood and cancer,1 -pediatric cardiology,1 -pediatric clinics of north america,1 -pediatric critical care medicine,1 -pediatric dentistry,1 -pediatric dermatology,1 -pediatric diabetes,2 -pediatric emergency care,1 -pediatric exercise science,1 -pediatric hematology and oncology,1 -pediatric infectious disease journal,1 -pediatric nephrology,2 -pediatric neurology,1 -pediatric neurosurgery,1 -pediatric physical therapy,1 -pediatric pulmonology,1 -pediatric radiology,1 -developmental neurorehabilitation,1 -pediatric research,2 -pediatric rheumatology,1 -pediatric surgery international,1 -pediatric transplantation,1 -pediatrics,3 -pediatrics and neonatology,1 -pediatrics in review,1 -pediatrics international,1 -pedobiologia,1 -pedosphere,1 -pelitutkimuksen vuosikirja,1 -pennsylvania magazine of history and biography,1 -pensamiento,1 -pensamiento critico: revista electrònica de historia,1 -pensee,1 -peptides,1 -per leggere,1 -perception,1 -perceptual and motor skills,1 -perfect beat: the pacific journal of research into contemporary music and popular culture,1 -perfiles latinoamericanos,1 -performance evaluation,2 -performance measurement and metrics,1 -performance paradigm,1 -performance research,3 -perfusion: kreislauferkrankungen in klinik und praxis,1 -perfusion: uk,1 -pericope,1 -periodica mathematica hungarica,1 -periodica polytechnica: chemical engineering,1 -periodico di mineralogia,1 -periodicum biologorum,1 -periodontology 2000,2 -peripeti,1 -periskop,1 -peritia,1 -peritoneal dialysis international,1 -permafrost and periglacial processes,1 -personal and ubiquitous computing,1 -personal relationships,1 -personal- und organisationsentwicklung in einrichtungen der lehre und forschung,1 -personality and individual differences,2 -personality and mental health,1 -personality and social psychology bulletin,3 -personality and social psychology review,3 -personalized medicine,1 -personhistorisk tidskrift,1 -personnel psychology,2 -personnel review,1 -persoonia,2 -perspecta: the yale architectural journal,1 -perspectivas em ciencia da informacao,1 -perspectives in biology and medicine,1 -perspectives in education,1 -perspectives in plant ecology evolution and systematics,1 -perspectives in psychiatric care,1 -perspectives in public health,1 -perspectives in vascular surgery and endovascular therapy,1 -perspectives of new music,1 -perspectives on global development and technology,1 -perspectives on politics,3 -perspectives on psychological science,3 -perspectives on science,1 -perspectives on sexual and reproductive health,1 -perspectives: studies in translation theory and practice,3 -perspektiven der wirtschaftspolitik,1 -persuasions,1 -pervasive and mobile computing,2 -pesquisa agropecuaria brasileira,1 -pesquisa veterinaria brasileira,1 -pest management science,2 -pesticide biochemistry and physiology,1 -"peter-weiss-jahrbuch fur literatur, kunst und politik im 20. jahrhundert",1 -petroleum chemistry,1 -petroleum geology conference series,1 -petroleum geoscience,1 -petroleum science,1 -petroleum science and technology,1 -petrology,1 -petrophysics,1 -pferdeheilkunde,1 -pflugers archiv: european journal of physiology,1 -phanomenologische forschungen,1 -pharmaceutical biology,1 -pharmaceutical chemistry journal,1 -pharmaceutical development and technology,1 -pharmaceutical journal,1 -pharmaceutical medicine,1 -pharmaceutical research,2 -pharmaceutical statistics,1 -pharmaceutical technology,1 -pharmaceutical technology europe,1 -pharmaceuticals,1 -pharmaceuticals policy and law,1 -pharmacoeconomics,2 -pharmacoeconomics and outcomes news,1 -pharmacoepidemiology and drug safety,1 -pharmacogenetics and genomics,1 -pharmacogenomics,1 -pharmacogenomics journal,1 -pharmacognosy magazine,0 -pharmacological reports,1 -pharmacological research,3 -pharmacological reviews,3 -pharmacology,1 -pharmacology and therapeutics,2 -pharmacology biochemistry and behavior,1 -pharmacopsychiatry,1 -pharmacotherapy,1 -pharmacy education,1 -pharmazie,1 -pharos : journal of the netherlands institute at athens,1 -phase transitions,1 -phenomenology and practice,1 -phenomenology and the cognitive sciences,3 -phi delta kappan,1 -philippine agricultural scientist,1 -philippine journal of crop science,1 -philological quarterly,3 -philologie im netz,1 -philologus,3 -philosophers imprint,3 -philosophia,1 -philosophia africana,1 -philosophia antiqua,1 -philosophia christi,1 -philosophia mathematica,2 -philosophia naturalis,1 -philosophia reformata,1 -philosophia scientiae: studies in history and philosophy of science,1 -filosofia: international journal of philosophy,1 -philosophica,1 -philosophical explorations,2 -philosophical forum,1 -philosophical inquiry: international quarterly,1 -philosophical investigations,1 -philosophical magazine,1 -philosophical magazine letters,1 -philosophical papers,1 -philosophical perspectives,2 -philosophical psychology,2 -philosophical quarterly,3 -philosophical review,3 -philosophical studies,3 -philosophical topics,2 -philosophical transactions of the royal society a : mathematical physical and engineering sciences,2 -philosophical transactions of the royal society b: biological sciences,2 -philosophical writings,1 -philosophie antique,1 -logical analysis and history of philosophy,1 -philosophische rundschau,1 -philosophisches jahrbuch,1 -philosophy,2 -philosophy and public affairs,3 -philosophy and social criticism,2 -philosophy and geography,1 -philosophy and literature,3 -philosophy and phenomenological research,3 -philosophy and rhetoric,1 -philosophy compass,2 -philosophy east and west,1 -philosophy in review,1 -philosophy of history and culture,1 -philosophy of management,1 -philosophy of music education review,1 -philosophy of science,3 -philosophy of the social sciences,2 -philosophy today,1 -"philosophy, psychiatry, and psychology",1 -phlebologie,1 -phlebology,1 -phoenix: the journal of the classical association of canada,2 -phonetica,3 -phonology,3 -phosphorus sulfur and silicon and the related elements,1 -photochemical and photobiological sciences,1 -photochemistry and photobiology,1 -photodermatology photoimmunology and photomedicine,1 -photodiagnosis and photodynamic therapy,1 -photogrammetric engineering and remote sensing,1 -photogrammetric record,1 -"photogrammetrie, fernerkundung, geoinformation",1 -photographies,1 -photography and culture,1 -photonic network communications,1 -photonics and nanostructures: fundamentals and applications,1 -photonics spectra,0 -photosynthesis research,1 -phrasis,1 -phronesis,3 -phycologia,1 -phycological research,1 -physica a: statistical mechanics and its applications,1 -physica b: condensed matter,1 -physica c: superconductivity and its applications,1 -physica d: nonlinear phenomena,1 -physica e: low: dimensional systems and nanostructures,1 -physica medica,1 -physica scripta,1 -physica status solidi a: applications and materials science,1 -physica status solidi b : basic research,1 -physica status solidi c : current topics in solid state physics,1 -physica status solidi: rapid research letters,1 -physical acoustics,1 -physical and occupational therapy in geriatrics,1 -physical and occupational therapy in pediatrics,1 -physical biology,1 -physical chemistry chemical physics,3 -physical education and sport pedagogy,1 -physical geography,1 -physical medicine and rehabilitation clinics of north america,1 -physical mesomechanics,1 -physical review letters,3 -physical review x,3 -physical separation in science and engineering,1 -physical therapy,2 -physical therapy in sport,1 -physical therapy reviews,1 -physician and sportsmedicine,1 -physicochemical problems of mineral processing,1 -physics and chemistry of glasses: european journal of glass science and technology part b,1 -physics and chemistry of liquids,1 -physics and chemistry of minerals,1 -physics and chemistry of the earth,1 -physics education,1 -physics essays,1 -physics in medicine and biology,2 -physics in perspective,1 -physics letters a,1 -physics letters b,3 -physics of atomic nuclei,1 -physics of fluids,1 -physics of life reviews,2 -physics of low-dimensional structures,1 -physics of metals and metallography,1 -physics of particles and nuclei,1 -physics of plasmas,1 -physics of the earth and planetary interiors,1 -physics of the solid state,1 -physics of wave phenomena,1 -physics reports : review section of physics letters,3 -physics teacher,1 -physics-uspekhi,1 -physikalische medizin rehabilitationsmedizin kurortmedizin,1 -physiologia plantarum,1 -physiological and biochemical zoology,1 -physiological and molecular plant pathology,1 -physiological chemistry and physics and medical nmr,1 -physiological genomics,1 -physiological measurement,1 -physiological research,1 -physiological reviews,3 -physiology,1 -physiology and behavior,1 -physiotherapy,2 -physiotherapy canada,1 -physiotherapy research international,1 -physiotherapy theory and practice,1 -physis,1 -international conference on physics of reactors,1 -phytochemical analysis,1 -phytochemistry,1 -phytochemistry letters,1 -phytocoenologia,1 -phytomedicine,1 -phyton: annales rei botanicae,1 -phyton: international journal of experimental botany,1 -phytoparasitica,1 -phytopathologia mediterranea,1 -phytopathology,1 -phytoprotection,1 -phytotaxa,1 -phytotherapie,1 -phytotherapy research,1 -pigment and resin technology,1 -pigment cell and melanoma research,2 -pipeline and gas journal,1 -pituitary,1 -placenta,2 -places: forum of design for the public realm,1 -plains anthropologist,1 -plainsong and medieval music,2 -planetary and space science,1 -planning and environmental law,1 -planning perspectives,2 -planning practice and research,1 -planning theory,2 -planning theory and practice,2 -plant and cell physiology,2 -plant and soil,2 -plant archives,0 -plant biology,1 -plant biosystems,1 -plant biotechnology,1 -plant biotechnology journal,3 -plant biotechnology reports,1 -plant breeding,1 -plant cell,3 -plant cell and environment,3 -plant cell reports,1 -plant cell tissue and organ culture,1 -plant disease,1 -plant ecology,1 -plant ecology and diversity,1 -plant ecology and evolution,1 -plant engineering,1 -plant foods for human nutrition,2 -plant growth regulation,1 -plant journal,2 -plant methods,1 -plant molecular biology reporter,1 -plant omics,1 -plant pathology,2 -plant physiology,3 -plant physiology and biochemistry,1 -plant production science,1 -plant science,1 -plant signaling and behavior,1 -plant soil and environment,1 -plant species biology,1 -plant systematics and evolution,1 -planta,1 -planta medica,1 -plasma chemistry and plasma processing,1 -plasma devices and operations,1 -plasma physics and controlled fusion,2 -plasma physics reports,1 -plasma processes and polymers,1 -plasma sources science and technology,1 -plasmid,1 -plasmonics,1 -plastic and reconstructive surgery,2 -plastic surgical nursing,1 -plastics engineering,1 -plastics rubber and composites,1 -platelets,1 -plating and surface finishing,1 -plos biology,3 -plos computational biology,3 -plos genetics,2 -plos medicine,3 -plos neglected tropical diseases,2 -plos one,1 -plos pathogens,3 -pluralist,1 -plys,1 -pmla: publications of the modern language association of america,3 -pmm journal of applied mathematics and mechanics,1 -pneuma: the journal of the society for pentecostal studies,1 -pneumologie,1 -poe studies,1 -poetica: zeitschrift fur sprach: und literaturwissenschaft,3 -poetiche: letteratura e altro,1 -poetics,3 -poetics today,3 -poetique,3 -poetry,1 -poetry review,1 -poiesis und praxis,1 -polanyiana,1 -polar biology,1 -polar geography,1 -polar record,1 -polar research,1 -polar science,1 -polhem,1 -police practice and research,1 -police quarterly,1 -policing and society,2 -policing: an international journal of police strategies and management,1 -policy and politics,2 -policy and practice in health and safety,1 -policy and society,1 -policy futures in education,1 -policy sciences,2 -policy studies,1 -policy studies journal,3 -"policy, politics, and nursing practice",1 -polifonia,1 -poliisiammattikorkeakoulun tutkimuksia,1 -polimeros: ciencia e tecnologia,0 -polimery,0 -polis: politicheskie issledovaniya,1 -polish journal of chemical technology,1 -polish journal of ecology,1 -polish journal of environmental studies,1 -polish journal of food and nutrition sciences,1 -polish journal of veterinary sciences,1 -polish maritime research,1 -polish music journal,1 -polish polar research,1 -polish review,1 -polish sociological review,1 -politex: political expertise journal,1 -politica: tidsskrift for politisk videnskab,1 -politica del diritto,1 -politica y cultura,1 -political analysis,3 -political and legal anthropology review,1 -political behavior,3 -political communication,3 -political geography,3 -political psychology,2 -political quarterly,1 -political research quarterly,3 -political science,1 -political science quarterly,1 -political studies,3 -political theology,1 -political theory,3 -politicka ekonomie,1 -politicka misao,1 -politics,1 -politics and society,3 -politics and gender,2 -politics and religion,1 -politics and the life sciences,1 -politics philosophy and economics,2 -politiikka,2 -politikon,1 -politique africaine,1 -politique etrangere,1 -politique europeenne,1 -politische vierteljahresschrift,1 -politix,1 -polity,1 -pollution engineering,1 -polonica,1 -polski przeglad dyplomatyczny-polish diplomatic review,1 -polycyclic aromatic compounds,1 -polyhedron,1 -polymer,1 -polymer bulletin,1 -polymer chemistry,2 -polymer composites,1 -polymer degradation and stability,1 -polymer engineering and science,1 -polymer international,1 -polymer journal,1 -polymer reviews,1 -polymer science series a,1 -polymer science series b,1 -polymer science series c,1 -polymer testing,1 -polymer: korea,0 -polymer-plastics technology and engineering,1 -polymers,1 -polymers and polymer composites,1 -polymers for advanced technologies,1 -pomegranate,1 -ponte,1 -ponto-baltica,1 -popular communication,1 -popular culture review,1 -popular music,3 -popular music and society,3 -popular music history,1 -popular musicology online,1 -population,1 -population and development review,3 -population and environment,1 -population bulletin,1 -population ecology,1 -population health management,1 -population health metrics,1 -population research and policy review,1 -population space and place,1 -population studies : a journal of demography,2 -population studies,1 -poradnik jezykowy,1 -porta linguarum,1 -porta linguarum orientalium,1 -portal: journal of multidisciplinary international studies,1 -portal: libraries and the academy,1 -portugalia,1 -portugaliae mathematica,1 -portugese journal of sport sciences-revista portuguesa de ciências do desporto,1 -portugese studies review,1 -portuguese economic journal,1 -portuguese literary and cultural studies,1 -portuguese studies,1 -positif,1 -positions: east asia cultures critique,2 -positivity,1 -postcolonial studies,2 -postcolonial text,1 -post-communist economies,1 -postepy w kardiologii interwencyjnej,1 -postgraduate medical journal,1 -postgraduate medicine,1 -postharvest biology and technology,2 -post-medieval archaeology,2 -postmodern culture,1 -post-soviet affairs,2 -potato research,1 -potential analysis,2 -poultry science,1 -powder diffraction,1 -powder metallurgy,1 -powder metallurgy and metal ceramics,1 -powder technology,2 -power,1 -power engineering,1 -power technology and engineering,1 -poznan studies in contemporary linguistics,1 -poznan studies in the philosophy of the sciences and the humanities,1 -prace i materialy muzeum archeologicznego i etnograficznego w lodzi: seria archeologiczna,1 -prace z dejin techniky a prirodnich ved,1 -practical assessment research and evaluation,1 -practical neurology,1 -practice,1 -"journal of hazardous, toxic and radioactive waste",1 -practice periodical on structural design and construction,1 -practitioner,1 -praehistorische zeitschrift,2 -pragmalinguistica,1 -pragmatic case studies in psychotherapy,1 -pragmatics,2 -pragmatics and cognition,2 -pragmatism today,1 -prague economic papers,1 -prakseologia,1 -praktika tes en athenais archaiologikes etaireais,1 -praktische metallographie-practical metallography,1 -praktische theologie,1 -handelingen,1 -praktische tierarzt,1 -praktiske grunde: tidsskrift for kultur og samfunnsvitenskab,1 -pram?na,1 -pratiques,1 -pratiques psychologiques,1 -praxis,1 -precambrian research,3 -precision agriculture,1 -precision engineering: journal of the international societies for precisionengineering and nanotechnology,1 -prehistoire anthropologie mediterraneennes,1 -prehled vyzkumi,1 -prehospital emergency care,1 -preistoria alpina,1 -prenatal diagnosis,1 -preparative biochemistry and biotechnology,1 -prescrire international,1 -presence africaine,1 -presence francophone,1 -presence: teleoperators and virtual environments,1 -preservation,1 -presidential studies quarterly,1 -preslia,1 -presse medicale,1 -preventing chronic disease,1 -journal of prevention and intervention in the community,1 -prevention science,1 -preventive cardiology,1 -preventive medicine,2 -preventive veterinary medicine,3 -international applied mechanics,1 -prilozi: instituta za istoriju,1 -prilozi instituta za arheologiju,1 -prilozi povijesti umjetnosti u dalmaciji,1 -primary care,1 -primary care psychiatry,1 -primary health care research and development,1 -primates,1 -primerjalna knjizevnost,1 -primitive tider,1 -primus,1 -principia: revista internacional de epistemologia,1 -proceedings of the acm sigplan symposium on principles & practice of parallel programming,1 -revista panamericana de salud publica-pan american journal of public health,1 -revista portuguesa de arqueologia,1 -revista portuguesa de filologia,1 -revista portuguesa de filosofia,1 -revista portuguesa de historia,1 -revista portuguesa de musicologia,1 -revista romana de bioetica,1 -revista română de materiale,0 -revista română de studii baltice şi nordice,1 -revista teologica,1 -revista virtual de estudos da linguagem: revel,1 -revolutionary russia,1 -revstat statistical journal,1 -revue africaine de theologie,1 -revue archeologique,1 -revue archeologique de l'est,1 -revue archeologique de l'ouest,1 -revue archeologique de narbonnaise,1 -revue archeologique de picardie,1 -revue archeologique du centre de la france,1 -revue belge d'archeologie et d'histoire de l'art,1 -revue belge de musicologie,1 -revue belge de philologie et d'histoire,1 -revue benedictine,1 -revue biblique,2 -revue d'archeometrie,1 -revue d'ecologie: la terre et la vie,1 -revue d'economie politique,1 -revue d'epidemiologie et de sante publique,1 -revue d'ethique et de theologie morale,1 -revue d'etudes augustiniennes et patristiques,1 -revue d'histoire de l amerique francaise,1 -revue d'histoire de l'eglise de france,1 -revue d'histoire des mathematiques,1 -revue d'histoire diplomatique,1 -revue d'histoire du theatre,1 -revue d'histoire ecclesiastique,1 -revue d'histoire litteraire de la france,3 -revue d'histoire moderne et contemporaine,2 -revue d’histoire et de philosophie religieuses,1 -revue d'assyriologie et d'archeologie orientale,1 -revue de chirurgie orthopédique et traumatologique,1 -revue de droit canonique,1 -nouvelle revue d'esthetique,1 -revue de geographie alpine,1 -revue de l'art,2 -revue de l'histoire des religions,3 -revue de linguistique romane,1 -revue de medecine interne,1 -revue de metallurgie: cahiers d'informations techniques,1 -revue de metaphysique et de morale,1 -revue de musicologie,2 -revue de philologie de litterature et d histoire anciennes,3 -revue de philosophie ancienne,1 -revue de qumran,1 -revue de semantique et pragmatique,1 -revue de synthese,1 -revue de theologie et de philosophie,1 -revue degyptologie,1 -revue des etudes anciennes,2 -revue des etudes armeniennes,1 -revue des etudes byzantines,2 -revue des etudes grecques,1 -revue des etudes italiennes,1 -revue des etudes juives,1 -revue des etudes latines,2 -revue des etudes slaves,1 -revue des langues romanes,1 -la revue des lettres modernes : gustave flaubert,1 -revue des lettres modernes : albert camus,1 -revue des litteratures de l'union europeenne,1 -revue des maladies respiratoires,1 -revue des musees de france: revue du louvre,1 -revue des sciences philosophiques et theologiques,1 -revue des sciences religieuses,1 -revue d'histoire de la pharmacie,1 -revue d'histoire des sciences,1 -revue d'histoire des sciences humaines,1 -revue d'histoire des textes,2 -revue d'histoire du xixe siecle,1 -revue d'histoire nordique,1 -journal of european integration,1 -revue du droit public et de la science politique en france et à létranger,1 -revue du monde musulman et de la mediterranee,1 -revue du nord,1 -revue du nord: archeologie,1 -revue du praticien,1 -revue economique,1 -european review of public law,1 -revue francaise d'etudes americaines,1 -revue francaise d'histoire du livre,1 -revue francaise d'administration publique,1 -revue francaise d'allergologie et dimmunologie clinique,1 -revue francaise de droit administratif,1 -revue francaise de droit constitutionnel,1 -revue francaise de linguistique appliquee,1 -revue francaise de psychanalyse,1 -revue francaise de science politique,2 -revue francaise de sociologie,2 -revue historique,2 -revue historique de droit francais et etranger,1 -revue international de droit compare,2 -revue internationale d'histoire militaire,1 -revue internationale de philosophie,2 -revue internationale de politique comparée,1 -revue internationale des droits de l'antiquite,1 -revue mabillon: revue internationale d'histoire et de litterature religieuses,1 -revue neurologique,1 -revue numismatique,1 -revue parole,1 -revue philosophique de la france et de l'etranger,1 -revue philosophique de louvain,1 -revue romane,3 -revue roumaine de chimie,0 -revue roumaine de linguistique,1 -revue scientifique et technique: office international des epizooties,1 -revue suisse de zoologie,1 -revue theologique de louvain,1 -revue thomiste,1 -rheinisches museum fur philologie,2 -rheologica acta,1 -rhetoric and public affairs,1 -rhetoric review,1 -rhetoric society quarterly,2 -rhetorica scandinavica,1 -rhetorica: a journal of the history of rhetoric,3 -rhetorik: ein internationales jahrbuch,1 -rheumatic disease clinics of north america,1 -rheumatology,1 -rheumatology international,1 -rhinology,2 -rhizai: a journal for ancient philosophy and science,1 -rhodora,1 -ricardian: journal of the richard iii society,1 -la ricerca folklorica,1 -ricerche di matematica,1 -ricerche di storia dell arte,1 -ricerche storiche,1 -research in drama education: the journal of applied theatre and performance,3 -rig: kulturhistorisk tidskrift,1 -rigakuryoho kagaku,1 -riggisberger berichte,1 -rilce: revista de filologia hispanica,2 -rima: review of indonesian and malaysian affairs,1 -rinascimento,2 -ringing and migration,1 -riocht na midhe,1 -risk analysis,1 -risk management and insurance review,1 -risk management: an international journal,1 -risorgimento,1 -river research and applications,1 -rivista biblica: organo dell associazione biblica italiana,1 -rivista degli studi orientali,1 -rivista del nuovo cimento,1 -rivista dell istituto nazionale d archeologia e storia dell arte,1 -rivista della stazione sperimentale del vetro,1 -rivista di analisi e teoria musicale,1 -rivista di archeologia,1 -rivista di archeologia cristiana,1 -theoretical biology forum,1 -rivista di cultura classica e medioevale,2 -rivista di diritto civile,1 -rivista di diritto internazionale,1 -rivista di diritto internazionale privato e processuale,1 -rivista di estetica,1 -rivista di filosofia,1 -rivista di filosofia neo-scolastica,1 -rivista di grammatica generativa,1 -rivista di letteratura italiana,1 -rivista di letterature moderne e comparate,1 -rivista di linguistica,1 -rivista di psichiatria,1 -rivista di scienze prehistoriche,1 -rivista di storia del cristianesimo,1 -rivista di storia della chiesa in italia,1 -rivista di storia della filosofia,1 -rivista di storia e letteratura religiosa,1 -rivista di storia economica,1 -rivista di studi bizanti e neocellini,1 -rivista di studi italiani,1 -rivista di studi liguri,1 -rivista di studi pompeiani,1 -rivista internazionale di scienze sociali,1 -rivista italiana delle sostanze grasse,1 -rivista italiana di dialettologia,1 -rivista italiana di diritto del lavoro,1 -rivista italiana di diritto e procedura penale,1 -rivista italiana di diritto pubblico comunitario,1 -rivista italiana di musicologia,1 -rivista italiana di onomastica,1 -rivista italiana di paleontologia e stratigrafia,1 -rivista italiana di scienza política,1 -european journal of remote sensing,1 -rivista penale,1 -rivista storica dell antichita,1 -rivista storica italiana,1 -rivista trimestrale di diritto pubblico,1 -rla: revista de linguistica teorica y aplicada,1 -revue de litterature comparee,2 -rna biology,1 -rna,2 -road and transport research,1 -road materials and pavement design,2 -robotica,1 -robotics and autonomous systems,2 -robotics and computer-integrated manufacturing,3 -rocambole,1 -rock art research,1 -rock mechanics and rock engineering,2 -rocky mountain geology,1 -rocky mountain journal of mathematics,1 -rocky mountain review,1 -rocznik ochrona srodowiska,1 -rocznik orientaliczny,1 -roczniki humanistyczne,1 -roeper review,1 -röfo : fortschritte auf dem gebiet der röntgenstrahlen und der bildgebenden verfahren,1 -romania literara,1 -roman 20-50: revue d etude du roman du 20 siecle,1 -romance notes,1 -romance philology,2 -romance quarterly,2 -romance studies,1 -romania,1 -romanian agricultural research,1 -romanian journal of english studies,1 -romanian journal of political science,1 -romanica cracoviensia,1 -romanica gothoburgensia,1 -romanica stockholmiensia,1 -romanica wratislawiensia,1 -"romanica, revista de literatura",1 -romanische forschungen,3 -romanistische zeitschrift fur literaturgeschichte-cahiers d histoire des litteratures romanes,1 -romanistisches jahrbuch,1 -romantic circles praxis series,1 -romantic textualities,1 -romanticism,1 -romanticism on the net,1 -romantisme,2 -romische historische mitteilungen,1 -romische quartalschrift fur christliche altertumskunde und kirchengeschichte,1 -romisches jahrbuch der bibliotheca hertziana,1 -rongorongo studies: a forum for polynesian philology,1 -rossiâ i amerika v xxi veke,1 -rossiya i sovremennyi mir,1 -rossijskaja arheologija,1 -rossijski juriditsheskij zhjurnal,1 -round table,1 -z dejin hutnictvi,1 -rubber chemistry and technology,1 -rudiae,1 -"rundbrief fotografie: zeitschrift fur fotografische sammlungen in archiven, bibliotheken und museen",1 -rundfunk und geschichte,1 -runrön: runologiska bidrag,1 -rural history: economy society culture,1 -rural sociology,2 -ruralia,1 -russell: the journal of the bertrand russell studies,1 -russian chemical bulletin,1 -russian chemical reviews,0 -russian education and society,1 -russian geology and geophysics,1 -russian history,2 -russian journal of applied chemistry,0 -russian journal of bioorganic chemistry,0 -russian journal of coordination chemistry,0 -russian journal of ecology,1 -russian journal of electrochemistry,0 -russian journal of general chemistry,0 -russian journal of inorganic chemistry,0 -russian journal of marine biology,0 -russian journal of mathematical physics,1 -russian journal of nematology,1 -russian journal of nondestructive testing,1 -russian journal of numerical analysis and mathematical modelling,1 -russian journal of organic chemistry,0 -russian journal of pacific geology,1 -russian journal of physical chemistry a,0 -russian journal of physical chemistry b,0 -russian journal of plant physiology,1 -russian linguistics,3 -russian literature,3 -russian mathematical surveys,1 -russian metallurgy,1 -russian meteorology and hydrology,1 -russian politics and law,1 -russian review,2 -russian studies in literature,0 -russian studies in philosophy,1 -russkaia literatura,1 -russkij jazyk v naucnom osvescenii,2 -russkij jazyk v škole,1 -russkij jazyk za rubežom,1 -rutgers law review,1 -rynek energii,1 -rättshistoriska skrifter,1 -rättshistoriskt bibliotek,0 -saalburg jahrbuch,1 -sabrao journal of breeding and genetics,1 -sacris erudiri,1 -saeculum,1 -safety science,2 -safundi: the journal of south african and american comparative studies,1 -saga,1 -saga-book of the viking society for northern research,1 -saguntum,1 -sahara j: journal of social aspects of hiv: aids,1 -sahlbergia: hyönteistieteellinen aikakauslehti,0 -saint anselm journal,1 -the sais review of international affairs,1 -sajog: south african journal of obstetrics and gynaecology,1 -salamandra,1 -sales and marketing management,1 -salmagundi: a quarterly of the humanities and social sciences,1 -salud colectiva,1 -salud i ciencia,1 -salud mental,1 -salud publica de mexico,1 -salute e societá,1 -sámi dieđalaš áigečála,1 -samj south african medical journal,1 -samlaren,1 -sampe journal,1 -samuel beckett today: aujourd hui,1 -san francisco estuary and watershed science,1 -sananjalka,2 -sandalion,1 -santa barbara portuguese studies,1 -sante publique,1 -sar and qsar in environmental research,1 -sarajevo journal of mathematics,1 -sarawak museum journal,1 -sarcoidosis vasculitis and diffuse lung diseases,1 -sarcoma,1 -sartre studies international: an interdisciplinary journal of existentialism and contemporary culture,1 -sats: northern european journal of philosophy,1 -saude e sociedade,1 -saudi medical journal,1 -sbl: writings from the greco-roman world,1 -sbornik mathematics,1 -studia archaeologica brunensia,1 -scandia,2 -scandinavian - canadian studies,1 -scandinavian actuarial journal,1 -scandinavian cardiovascular journal,1 -"scandinavian cardiovascular journal, supplement",1 -scandinavian economic history review,2 -scandinavian forest economics,1 -cognitive behaviour therapy,1 -scandinavian journal of caring sciences,1 -scandinavian journal of clinical and laboratory investigation,1 -scandinavian journal of disability research,1 -scandinavian journal of economics,2 -scandinavian journal of educational research,2 -food and nutrition research,1 -scandinavian journal of forensic science,1 -scandinavian journal of forest research,1 -scandinavian journal of gastroenterology,1 -"scandinavian journal of gastroenterology, supplement",1 -scandinavian journal of history,3 -scandinavian journal of hospitality and tourism,2 -scandinavian journal of immunology,1 -"scandinavian journal of infectious diseases, supplement",1 -scandinavian journal of information systems,1 -scandinavian journal of management,1 -scandinavian journal of medicine and science in sports,2 -scandinavian journal of occupational therapy,1 -journal of plastic surgery and hand surgery,1 -scandinavian journal of primary health care,2 -scandinavian journal of psychology,1 -"scandinavian journal of psychology, supplementum",1 -offentlig foervaltning: scandinavian journal of public administration,1 -scandinavian journal of public health,1 -scandinavian journal of rheumatology,1 -"scandinavian journal of rheumatology, supplement",1 -scandinavian journal of sports sciences,1 -scandinavian journal of statistics,2 -scandinavian journal of surgery,1 -scandinavian journal of the old testament,3 -scandinavian journal of urology,1 -scandinavian journal of work environment and health,2 -scandinavian political studies,2 -scandinavian population studies,1 -scandinavian psychoanalytic review,1 -scandinavian studies,2 -scandinavian studies in law,2 -scandinavica,2 -scando-slavica,2 -scanning,0 -schede medievali,1 -schizophrenia bulletin,3 -schizophrenia research,2 -schmerz,1 -research and theory for nursing practice: an international journal,1 -scholia: studies in classical antiquity,1 -school effectiveness and school improvement,2 -school leadership and management,1 -school libraries worldwide,1 -school library research,1 -school psychology international,1 -school psychology review,1 -school science and mathematics: journal for all science and mathematics teachers,1 -schopenhauer-jahrbuch,1 -schriften der luther-agricola-gesellschaft,1 -schriften des forschungszentrums julich,1 -schriften des instituts für deutsche sprache,1 -schriften zur geistesgeschichte des östlichen europa,1 -schubert: perspektiven,1 -schweizer archiv fur tierheilkunde,1 -schweizer jahrbuch fur musikwissenschaft,1 -schweizerische zeitschrift fur forstwesen,1 -schweizerische zeitschrift fur geschichte,1 -schweizerische zeitschrift fur volkswirtschaft und statistik,1 -schweizerisches archiv fur volkskunde,1 -sciamvs: sources and commentaries in exact sciences,1 -science,3 -science and education,1 -science and justice,1 -science and society,1 -science and sports,1 -science and engineering ethics,2 -science and engineering of composite materials,1 -science and global security,1 -science and public policy,2 -science and technology for cultural heritage,1 -science and technology libraries,1 -science and technology of advanced materials,1 -science and technology of energetic materials,0 -science and technology of nuclear installations,1 -science and technology of welding and joining,1 -science as culture,2 -science china chemistry,0 -science china: earth sciences,1 -science china: life sciences,1 -science china: mathematics,1 -science china: physics mechanics and astronomy,1 -science china: technological sciences,1 -science communication,2 -science education,3 -science education review,1 -science et technique du froid,1 -science china : information sciences,1 -science in context,2 -science of computer programming,2 -science of religion,1 -science of sintering,1 -science of the total environment,2 -science signaling,2 -science and technology studies,1 -science technology and human values,3 -science translational medicine,3 -"science, technology and innovation studies",1 -"science, technology and society",1 -science-fiction studies,3 -sciences des aliments,1 -sciences et techniques en perspective,1 -sciences sociales et sante,1 -scientia agricola,1 -scientia horticulturae,1 -scientia marina,1 -scientia pharmaceutica,1 -scientiae mathematicae japonicae,1 -scientiarum historia: tijdschrift voor de geschiedenis van de wetenschappen en de geneeskunde,1 -scientific programming,0 -scientific research and essays,0 -scientific studies of reading,3 -scientifur,1 -scientometrics,2 -"scienze dell antichita: storia, archeologia, antropologia",1 -scms journal of indian management,0 -scolia,1 -scope: an on-line journal of film studies,1 -scottish archaeological journal,1 -scottish archives,1 -scottish gaelic studies,1 -scottish geographical journal,1 -scottish historical review,2 -scottish journal of geology,1 -scottish journal of political economy,1 -scottish journal of theology,2 -scottish literary review,1 -scottish medical journal,1 -screen,3 -screening the past,1 -scriblerian and the kit-cats,1 -scrinium,1 -script and print: bulletin of the bibliographical society of australia and new zealand,1 -scripta,1 -scripta classica israelica,1 -scripta ethnologica,1 -scripta geologica,1 -scripta instituti donneriani aboensis,1 -scripta islandica: islandska sallskapets årsbok,1 -scripta materialia,3 -scripta mediterranea,1 -scripta mercaturae: zeitschrift fur wirtschafts- und sozialgeschichte,1 -scripta nova: revista electronica de geografia y ciencias sociales,1 -scripta theologica,1 -scriptorium,3 -"scriptura: international journal of bible, religion and theology in southern africa",1 -sea technology,1 -sealing technology,1 -second language research,3 -section 4 china,1 -securities regulation law journal,1 -security dialogue,3 -security journal,1 -security studies,1 -sederi: journal of the spanish society for english renaissance studies,1 -sedimentary geology,1 -sedimentology,2 -seed science and technology,1 -seed science research,1 -sefarad,1 -seibutsu-kogaku kaishi,1 -seikagaku,1 -seismic instruments,1 -seismological research letters,1 -seiyo koten ronshu,1 -seizieme siecle,1 -seizure: european journal of epilepsy,1 -selecta mathematica: new series,2 -self and identity,1 -semantics and pragmatics,1 -semeia studies,2 -semiconductor science and technology,1 -semiconductors,1 -semiconductors and semimetals,1 -semigroup forum,1 -semina: ciencias agrarias,1 -seminaire de probabilites,1 -seminaire lotharingien de combinatoire,1 -seminar.net,1 -seminar: a journal of germanic studies,2 -seminari romani di cultura greca,1 -seminars in arthritis and rheumatism,1 -seminars in cancer biology,1 -seminars in cell and developmental biology,1 -seminars in cutaneous medicine and surgery,1 -seminars in diagnostic pathology,1 -seminars in dialysis,1 -seminars in fetal and neonatal medicine,2 -seminars in hearing,1 -seminars in hematology,1 -seminars in immunology,1 -seminars in immunopathology,2 -seminars in interventional radiology,1 -seminars in liver disease,1 -seminars in musculoskeletal radiology,1 -seminars in nephrology,1 -seminars in neurology,1 -seminars in nuclear medicine,1 -seminars in oncology,1 -seminars in ophthalmology,1 -seminars in pediatric surgery,1 -seminars in perinatology,2 -seminars in radiation oncology,1 -seminars in reproductive medicine,1 -seminars in respiratory and critical care medicine,1 -seminars in roentgenology,1 -seminars in speech and language,1 -seminars in thoracic and cardiovascular surgery,1 -seminars in thrombosis and hemostasis,1 -seminars in ultrasound ct and mri,1 -seminars in vascular surgery,1 -semiotexte,1 -semiotica,3 -semiotique et bible,1 -semitica,1 -sen-i gakkaishi,1 -senri ethnological studies,1 -the senses and society,1 -sensor letters,1 -sensors,1 -sensors and actuators a: physical,1 -sensors and actuators b: chemical,1 -sensors and materials,1 -seoul journal of korean studies,1 -separation and purification reviews,1 -separation and purification technology,2 -separation science and technology,1 -septentrion,1 -sequential analysis,1 -serials librarian,1 -serials review,1 -serie orientale roma,1 -series on advances in bioinformatics and computational biology,1 -series: journal of the spanish economic association,1 -service industries journal,1 -services marketing quarterly,1 -settentrione: nuova serie,0 -set-valued and variational analysis,1 -sewanee review,1 -sewanee theological review,1 -seventeenth century,2 -seventeenth-century french studies,1 -sex education,1 -sex roles,2 -sexologies,1 -sexual abuse: a journal of research and treatment,2 -sexual addiction and compulsivity,1 -sexual and relationship therapy,1 -sexual development,1 -sexualities,2 -sexuality and culture,1 -sexuality and disability,1 -sexuality research and social policy,1 -sexually transmitted diseases,1 -sexually transmitted infections,1 -sfinx,1 -shakespeare bulletin,1 -shakespearean international yearbook,1 -shakespeare quarterly,3 -shakespeare studies,2 -shakespeare survey,1 -shakespeare yearbook,1 -shaman: journal of the international society for shamanistic research,1 -shandean,1 -shaw: the annual of bernard shaw studies,1 -shilap: revista de lepidopterologia,1 -shock,2 -shock and vibration,1 -shock waves,1 -shofa: an interdisciplinary journal of jewish studies,1 -proceedings of the siam international conference on data mining,1 -siam journal on applied dynamical systems,1 -siam journal on applied mathematics,3 -siam journal on computing,3 -siam journal on control and optimization,3 -siam journal on discrete mathematics,2 -siam journal on financial mathematics,1 -siam journal on imaging sciences,2 -siam journal on mathematical analysis,3 -siam journal on matrix analysis and applications,3 -siam journal on numerical analysis,3 -siam journal on optimization,3 -siam journal on scientific computing,3 -siam review,3 -siberian mathematical journal,1 -sibirica: the journal of siberian studies,1 -sibirskij filologicheskij zhurnal,1 -sicilia antiqua,1 -sicilia archeologica,1 -side effects of drugs annual,1 -siedlungsforschung: archaologie geschichte geographie,1 -sight and sound,1 -sigila,1 -sigir forum,1 -sigmod record,1 -sign language and linguistics,3 -sign language studies,1 -sign systems studies,2 -signa vitae,1 -signal processing,2 -signal processing: image communication,1 -signal transduction,1 -signa: revista de la asociacion espanola de semiotica,1 -signo et sena,1 -signs,3 -sileno: rivista di studi classici e cristiani,1 -silesia antiqua,1 -silicates industriels,1 -silicon chemistry,1 -silva fennica,2 -silvae genetica,1 -simile,1 -simiolus: netherlands quarterly for the history of art,2 -simone de beauvoir studies,1 -simpliciana: schriften der grimmelshausen-gesellschaft,1 -simulation and gaming,1 -simulation in healthcare,1 -simulation modelling practice and theory,1 -simulation: transactions of the society for modeling and simulation international,1 -sincronia,1 -"sincronie: rivista semestrale di letterature, teatro e sistemi di pensiero",1 -singapore economic review,1 -singapore journal of legal studies,1 -singapore journal of tropical geography,1 -sinn und form,2 -"sino-christian studies: an international journal of bible, theology and philosophy",1 -sintagma,1 -sir henry wellcome asian series,1 -sixteenth century journal,2 -sjuttonhundratal,1 -skas,1 -skase journal of translation and interpretation,1 -skatterett,1 -skeletal muscle,1 -skeletal radiology,1 -skin pharmacology and physiology,1 -skin research and technology,1 -skirnir,1 -skrifter: nordisk forening for leksikografi,1 -skrifter från centrum for samisk forskning,1 -"skrifter utgivna av svenska institutet i athen, 4¡",1 -"skrifter utgivna av svenska institutet i athen, 8¡",1 -skrifter utgivna av svenska institutet i rom. 4¡,1 -skrifter utgivna av svenska institutet i rom. 8¡,1 -skrifter utgivna av svenska litteratursällskapet i finland,2 -"journal of neurological surgery. part b, skull base",1 -skyllis,1 -slagmark,1 -slavery and abolition,1 -slavia,1 -slavia antiqua,1 -slavia occidentalis,1 -slavia orientalis,1 -slavic and east european information resources,1 -slavic and east european journal,3 -slavic review,2 -slavica,1 -slavica bergensia,1 -slavica helsingiensia,1 -slavica occitania,1 -slavica slovaca,1 -slavisticna revija,1 -slavjanovedenie,1 -slavonic and east european review,2 -slavonica,1 -sleep,2 -sleep and biological rhythms,1 -sleep and breathing,1 -sleep medicine,1 -sleep medicine clinics,1 -sleep medicine reviews,2 -slezsky sbornik,1 -"slovansky prehled: review for central, eastern and southeastern european history",1 -slovene linguistic studies,1 -slovene studies,1 -slovenian veterinary research,1 -slovenska archeologia,2 -slovenska literatura,1 -slovenska rec,1 -slovensky narodopis,2 -slovo,0 -slovo a slovesnost,1 -slovo a smysl,1 -släkt och hävd: tidskrift,0 -small,3 -small business economics,2 -enterprise development and microfinance: an international journal of microfinance and business development,1 -small enterprises research,1 -small group research,1 -small ruminant research,1 -small wars and insurgencies,1 -small-scale forestry,1 -smart materials and structures,1 -smart structures and systems,1 -smith college studies in social work,1 -smithsonian,0 -smu law review: a publication of southern methodist university school of law,1 -snippets,1 -sobornost,1 -soccer and society,1 -social and cultural geography,2 -social and legal studies,2 -social analysis,3 -social and critical theory,1 -social anthropology,3 -social behavior and personality,1 -social choice and welfare,2 -social cognition,1 -social cognitive and affective neuroscience,2 -social compass,2 -social development,1 -social dynamics: a journal of the centre for african studies university of cape town,1 -social enterprise journal,1 -social epistemology,2 -social evolution and history,1 -social forces,3 -social history,3 -social history of medicine,3 -social identities,1 -social indicators research,2 -social influence,1 -social justice research,1 -"social justice: a journal of crime, conflict and world order",1 -social kritik: tidsskrift for social analyse og debat,1 -social marketing quarterly,1 -"social movement studies: journal of social, cultural and political protest",2 -social networks,3 -social neuroscience,1 -social philosophy and policy,2 -social policy and administration,2 -social policy and society,1 -social politics,3 -social problems,3 -social psychiatry and psychiatric epidemiology,2 -social psychology,1 -social psychology of education,1 -social psychology quarterly,2 -social research,1 -social responsibility journal,1 -social science and medicine,3 -social science computer review,1 -social science history,2 -social science information sur les sciences sociales,1 -social science japan journal,1 -social science journal,1 -social science quarterly,1 -social science research,2 -social sciences - socialiniai,1 -social sciences in asia,1 -social scientist,1 -social security bulletin,1 -social semiotics,1 -social service review,1 -social studies of science,3 -social text,2 -social theory and health,1 -social theory and practice,2 -journal of religion and spirituality in social work: social thought,1 -social work,2 -social work and social sciences review,1 -social work and society,1 -social work education,1 -social work in health care,1 -social work in mental health,1 -social work in public health,1 -social work research,2 -social work with groups,1 -social’naâ politika i social’noe partnerstvo,1 -social’naâ politika i sociologiâ,1 -social’no-èkonomi?eskie âvleniâ i processy,1 -social’no-gumanitarnye znaniâ,1 -social’nye aspekty zdorov’â naseleniâ,1 -social’nye i gumanitarnye nauki na dal’nem vostoke,1 -socialmedicinsk tidskrift,1 -socialvetenskaplig tidskrift,1 -sociedade e cultura,1 -societes,1 -societes et representations,1 -society,1 -society and animals,1 -society and natural resources,2 -society and business review,1 -sociobiology,1 -sociocriticism,1 -socio-economic planning sciences,1 -socio-economic review,1 -sociolinguistic studies,1 -sociolinguistica: internationales jahrbuch fur europäische soziolinguistik,1 -sociologi?eskij žurnal,1 -sociologia,1 -sociologia del diritto,1 -sociologiâ goroda,1 -sociologiâ mediciny,1 -sociologiâ obrazovaniâ,1 -sociologia ruralis,2 -"sociologiâ: metodologiâ, metody, matemati?eskoe modelirovanie",1 -sociological forum,1 -sociological inquiry,2 -sociological methodology,2 -sociological methods and research,3 -sociological perspectives,1 -sociological quarterly,2 -sociological research online,1 -sociological review,3 -sociological spectrum,1 -sociological studies of children and youth,1 -sociological theory,3 -sociological theory and methods,1 -sotsiologicheski problemi,1 -sociologicky casopis-czech sociological review,1 -sociologie du travail,1 -revista româna de sociologie,1 -sociologija i prostor,1 -sociologija: mintis ir veiksmas,1 -sociologisk forskning,1 -sociologus,1 -sociology of education,3 -sociology of health and illness,3 -sociology of religion,3 -sociology of sport journal,2 -sociology: the journal of the british sociological association,3 -socium i vlast’,1 -soekelys på arbeidslivet,1 -soft computing,1 -soft materials,1 -soft matter,2 -software and systems modeling,3 -software engineering and applications,1 -conference on software engineering education & training,1 -software quality journal,2 -software testing verification and reliability,1 -software: practice and experience,2 -soil and sediment contamination,1 -soil and tillage research,2 -soil biology,1 -soil biology and biochemistry,3 -soil dynamics and earthquake engineering,1 -soil mechanics and foundation engineering,1 -soil science,1 -soil science and plant nutrition,1 -soil science society of america journal,2 -soil use and management,1 -soils and foundations,1 -sola,1 -solar energy,2 -solar energy materials and solar cells,2 -solar physics,2 -solar system research,1 -soldering and surface mount technology,1 -solid earth,1 -solid fuel chemistry,1 -solid state communications,1 -solid state ionics,1 -solid state nuclear magnetic resonance,1 -solid state physics,1 -solid state sciences,1 -solid-state electronics,1 -solvent extraction and ion exchange,1 -solvent extraction research and development: japan,1 -somatosensory and motor research,1 -somnologie,1 -soochow journal of mathematics,1 -sophia,2 -sorites: digital journal of analytical philosophy,1 -sort: statistics and operations research transactions,1 -sosiaalilääketieteellinen aikakauslehti,2 -sosiologi i dag,1 -sosiologia,2 -sotahistoriallinen aikakauskirja,1 -sotilaslääketieteen aikakauslehti,1 -sotsiologicheskie issledovaniya,1 -soudobe dejiny,1 -souls,1 -sound and vibration,1 -soundings,0 -soundscape: the journal of acoustic ecology,1 -source: notes in the history of art,2 -sources and studies in the history of mathematics and physical sciences,1 -sources for african history,1 -south african archaeological bulletin,1 -south african geographical journal,1 -south african historical journal,2 -south african journal of african languages,1 -south african journal of animal science,1 -south african journal of botany,1 -south african journal of business management,1 -south african journal of chemistry,0 -south african journal of economic and management sciences,1 -south african journal of economics,1 -south african journal of enology and viticulture,1 -south african journal of geology,1 -south african music studies,1 -tipiti,1 -current world archaeology,0 -global competition litigation review,0 -international journal of critical accounting,1 -colorectal cancer,1 -journal of systems chemistry,1 -punk & post-punk,1 -international journal of obesity supplements,1 -oxford journal of law and religion,1 -european journal of political research : political data yearbook,1 -european heart journal : acute cardiovascular care,1 -clinical and translational immunology,1 -contemporary social science,1 -world journal of ophthalmology,0 -agricultural economics research review,0 -international journal of scientific and technological research,0 -international journal of agriculture innovation and research,0 -pain : clinical updates,0 -societies,1 -iranian journal of immunology,0 -international journal of the platonic tradition,1 -security and human rights,1 -currents in pharmacy teaching and learning,0 -organic agriculture,1 -current tissue engineering,1 -food bioscience,1 -jacc heart failure,2 -lipid insights,0 -european journal of probation,1 -computational and structural biotechnology journal,1 -international journal of energy economics and policy,0 -seventeenth-century news,0 -the journal of pan african studies,1 -religion & education,1 -looking glass,1 -international journal of digital literacy and digital competence,1 -philosophy and theory in biology,1 -american journal of cancer research,1 -american journal of clinical and experimental immunology,0 -journal of eastern mediterranean archaeology and heritage studies,1 -south african journal of childhood education,1 -revista de educacion de las ciencias,1 -revue des nouvelles technologies de l'information,0 -revue d'études tibétaines,1 -schweizerische zeitschrift für soziale arbeit,0 -soziale arbeit,0 -indologica taurinensia,0 -federalismi.it,0 -"dekoratyviuju ir sodo augalu sortimento, technologiju ir aplinkos optimizavimas",0 -antiguo oriente,0 -educação e pesquisa,1 -pantheon,1 -casalc review,1 -sociologia internationalis,0 -verfassung und recht in übersee,0 -educar,1 -revista europea de dirección y economía de la empresa,1 -annali dell'università di ferrara. sezione 7: scienze matematiche,1 -geotema,1 -aphex,0 -hikaku h?gaku,0 -religiski-filozofiski raksti,0 -interdisciplinary studies in musicology,1 -tomskij žurnal lingvističeskih i antropologičeskih issledovanij,1 -indigena,0 -production,0 -estudos de sociologia,0 -etd - educação temática digital,0 -horizon : fenomenologiceskie issledovaniâ,1 -principy èkologii,0 -sphera pública,0 -indiana,1 -musicultures,1 -international journal of environment & sustainability,0 -journal for person-oriented research,0 -open linguistics,1 -journal of research design and statistics in linguistics and communication science,1 -porcine health management,1 -microbial genomics,1 -journal of advanced research,1 -journal of drug and alcohol research,0 -international journal of contemporary educational research,0 -"psychology, society & education",1 -agricultural and food economics,1 -international journal for research on extended education,1 -journal of historical sociolinguistics,2 -journal of open innovation,1 -dovenschmidt quaterly,0 -analytical chemistry research,1 -bba clinical,0 -russkaâ filologiâ,0 -legal roots,0 -critical analysis of law,1 -frontiers in molecular biosciences,1 -cancer immunology research,2 -journal of japanese philosophy,1 -operative neurosurgery,1 -journal of the association of environmental and resource economists,2 -the commens encyclopedia,1 -the commens working papers,0 -current trends in translation teaching and learning e,1 -"international journal of innovative science, engineering and technology",0 -new horizons in translational medicine,0 -zeitschrift des verbandes polnischer germanisten,1 -journal of genetics and genome research,1 -jacobs journal of veterinary science and research,0 -ricognizioni,1 -kula,0 -journal for the history of reformed pietism,1 -psiholingvisticheskie aspekty izuchenia rechevoj deatelnosti,0 -revue française d'histoire économique,0 -les carnets de l'acost,0 -the lancet haematology,3 -passepartout,1 -frontiers in energy research,1 -rusi,1 -ieee journal of the electron devices society,2 -anali hrvatskog politološkog društva,1 -beckettiana,1 -cuadernos europeos de deusto,0 -enerugeia,0 -wiadomosci chemiczne,0 -perspectivas,0 -izvestiâ sankt-peterburgskoj lesotehni?eskoj akademii,0 -vestnik saratovskoj gosudarstvennoj ûridi?eskoj akademii,0 -ágora,0 -nordisk tidskrift för allmän didaktik,1 -journal of nanoscience with advanced technology,0 -nau?no-tehni?eskij vestnik povolž?â,0 -computational particle mechanics,0 -biomedical glasses,1 -mesoporous biomaterials,0 -e-journal for translingual discourse in ethnomusicology,0 -iesus aboensis,0 -journal of international forum of researchers in education,1 -journal of logical and algebraic methods in programming,2 -the journal of manual & manipulative therapy,1 -international journal of emergency services,1 -africa review,1 -wseas transactions on systems,0 -omnes,1 -europe-new zealand research series,1 -annals. series on science of mathematics,0 -the physical educator,0 -journal of sport behavior,1 -od practitioner,0 -journal of ergonomics,0 -journal of athletic enhancement,0 -südosteuropäische hefte,0 -oliviana,0 -argumentum,0 -educatio,0 -acta crystallographica section e : crystallographic communications,1 -current developmental disorders reports,1 -communication research and practice,1 -aei insights : an international journal of asia-europe relations,1 -mobility in history,1 -educación física y ciencia,0 -international sport coaching journal,1 -journal of coupled systems and multiscale dynamics,0 -nuclear and particle physics proceedings,1 -"journal of culture, society and development",0 -environmental technology reviews,1 -journal of nanostructure in chemistry,0 -voprosy materialovedeniâ,0 -svarka i diagnostika,0 -eciperu,0 -russian journal of logistics and transport management,0 -facta universitatis. series: mechanical engineering,0 -review of market integration,1 -"wroclaw review of law, administration & economics",0 -l'universo,0 -socialinis darbas. patirtis ir metodai,0 -"journal of design, business and society",1 -asian conference on education & international development,0 -revista de direito internacional,1 -review of management and economic engineering,0 -social inquiry into well-being,0 -international journal of healthcare,0 -sylwan,1 -profese online,0 -"asian journal of agricultural extension, economics and sociology",0 -business education & accreditation,0 -us-china education review. a,0 -universal journal of management,0 -review of business & finance case studies,0 -international journal of learning and teaching,1 -christian higher education,1 -international journal of design management and professional practice,0 -"international journal of innovation, creativity and change",1 -british journal of nursing,0 -"international journal of innovation, management and technology",0 -"journal of education, psychology and social sciences",0 -jyväskylän ammattikorkeakoulun julkaisuja,0 -journal of contemporary management,0 -"the journal of american business review, cambridge",0 -athens journal of sports,0 -journal of system and management sciences,1 -foro de educación,1 -applied clinical trials,0 -performance philosophy,1 -international journal of communication networks and information security,0 -ieee workshop on advanced robotics and its social impacts,1 -luonnonvara- ja biotalouden tutkimus,0 -turun yliopiston poliittisen historian raportteja,0 -skrifter utgivna av svenska folkskolans vänner,0 -taideteoreettisia kirjoituksia kuvataideakatemiasta,0 -arkkitehtuurin tiedekunta. b,0 -cross-border review,0 -international journal of sino-western studies,1 -colóquio brasileiro de matemática,0 -meddelanden från sjöhistoriska institutet vid åbo akademi,0 -sotilasperinteen seuran julkaisusarja,0 -bhm berg- und hüttenmännische monatshefte,1 -proceedings of the manitoba conference on numerical mathematics,1 -europhysics news,0 -acoustics australia,1 -archives of transport,0 -telecom business review,0 -geosystem engineering,1 -hochparterre,0 -archives of electrical engineering,0 -chemical fibers international,0 -australian journal of electrical & electronics engineering,0 -international journal of automotive technology and management,0 -zeszyty naukowe politechnika slaska : organizacja i zarzadzanie,0 -international journal of powertrains,1 -catalan journal of communication & cultural studies,0 -reconceptualizing educational research methodology,1 -icst transactions on energy web,0 -icst transactions on mobile communications and applications,1 -global challenges,1 -journal of fundamentals of renewable energy and applications,0 -international journal of disaster risk science,1 -journal of traffic and transportation engineering,1 -"metallography, microstructure and analysis",1 -energy technology,1 -textiles and clothing sustainability,0 -journal of sustainable metallurgy,1 -the arab economics and business journal,1 -journal of somaesthetics,1 -journal of the institution of engineers (india) : series c,1 -international journal of latest research in science & technology,0 -theatre and performance design,2 -ieee transactions on cognitive communications and networking,1 -biotribology,1 -journal of business venturing insights,1 -journal of polymers,0 -business and management studies,0 -international changing cities conference,0 -cinéma & cie,1 -international conference on ad hoc networks and wireless,0 -advanced international conference on telecommunications,0 -nauchno-prakticheskaja konferencii privolzhsky federalnogo okruga s mezhdunarodnyj uchastiem,0 -amk- ja ammatillisen koulutuksen tutkimuspäivät,0 -asian conference on intelligent information and database systems,1 -asme international conference on energy sustainability,1 -jezyk i metoda,0 -baltic sea science congress,0 -international computer science symposium in russia,0 -conference on design of circuits and integrated systems,0 -"international symposium on dependable software engineering: theories, tools, and applications",0 -"doctoral conference on computing, electrical and industrial systems",0 -eceee summer study proceedings,0 -"international conference on emerging research in computing, information, communication and applications",0 -esa workshop on satellite navigation technologies and european workshop on gnss signals and signal processing,0 -icar technical series,0 -ieee international conference on dc microgrids,0 -ieee international conference on intelligent computer communication and processing,0 -ieee international conference on signal and image processing applications,0 -proceedings : ieee international conference on the properties and applications of dielectric materials,1 -ieee international smart cities conference,0 -ieee world conference on factory communication systems,0 -ieee world symposium on web applications and networking,0 -ieee/acm international workshop on the twin peaks of requirements and architecture,0 -international business & education conferences proceedings,0 -international conference on quantitative and qualitative methodologies in the economic and administrative sciences,0 -research on engineering structures and materials,1 -international conference on artificial intelligence and pattern recognition,0 -international conference on creative content technologies,0 -international conference on digital telecommunications,0 -international conference on entertainment computing,1 -international conference on future internet of things and cloud,0 -international conference on future networks and communications,0 -international conference on human aspects of it for the aged population,0 -international conference on information and communication technology research,0 -international conference on membrane computing,0 -international conference on network of the future,0 -international conference on optimization and control with applications,0 -"international conference on signal processing, communication and networking",0 -international conference on wireless and mobile communications,0 -international telecommunications symposium,0 -evaluate europe handbook series,0 -international workshop on behavior change support systems,1 -international workshop on quality-aware devops,0 -international workshop on theory and applications of formal argument,0 -international workshop on thermal investigations of ics and systems,0 -"international archives of the photogrammetry, remote sensing and spatial information sciences",1 -"joint workshop on language technology for closely related languages, varieties and dialects",1 -international conference on quantum interaction,0 -russian summer school in information retrieval,0 -"symposium on design, test, integration and packaging of mems/moems",0 -workshop on cyclostationary systems and their applications,0 -workshop on power-aware computing and systems,0 -international conference and workshops on networked systems,0 -"annual workshop on wireless of the students, by the students, and for the students",0 -world congress on computer applications and information systems,0 -world symposium on computer networks and information security,0 -acta crystallographica section a : foundations and advances,1 -"politics, religion & ideology",1 -multisensory research,1 -international journal of business communication,1 -journal of media ethics,1 -revista de economia del rosario,0 -territorios : revista de estudios regionales y urbanos,1 -estudios socio-juridicos,0 -desafios,0 -universidad y empresa,0 -tugboat,0 -animal law,0 -journal of algebraic statistics,1 -journal of advanced computational intelligence and intelligent informatics,1 -journal of interactive advertising,1 -san diego international law journal,0 -pedagogies,1 -histoire urbaine,1 -revista ciencias de la salud,0 -ecclesiology,1 -studies in the maternal,1 -avances en psicologia latinoamericana,0 -eurolimes,1 -disertaciones,1 -european food and feed law review,1 -transactions on machine learning and data mining,0 -nordic journal of science and technology studies,1 -scandinavian journal of work and organizational psychology,1 -acdi,0 -"world journal of entrepreneurship, management and sustainable development",1 -journal of social marketing,1 -leadership and the humanities,1 -open library of humanities,1 -journal of cybersecurity,1 -european journal of international security,1 -nature energy,3 -geosciences,1 -geodinamika i tektonofizika,1 -international journal of mining science and technology,2 -contemporary readings in law and social justice,1 -journal of innovation and entrepreneurship,1 -crime science,1 -computational social networks,1 -"renewables : wind, water, and solar",0 -emission control science and technology,0 -european journal of mathematics,1 -operations research perspectives,1 -ampersand,1 -acta slavica estonica,1 -journal of global entrepreneurship research,1 -international journal of engineering research and technology,0 -central and eastern european migration review,1 -historia,1 -recycling,1 -achiote.com,0 -dialogic pedagogy,1 -nais,1 -anuario iberoamericano de derecho internacional penal,0 -bone reports,1 -"sustainable energy, grids and networks",1 -quality and user experience,1 -acm transactions on spatial algorithms and systems,1 -glossa,2 -eai endorsed transactions on future intelligent educational environments,0 -russian journal of comparative law,1 -"engaging science, technology, and society",1 -siam journal on applied algebra and geometry,1 -"international conference on control, automation and systems",1 -competition law review,1 -advances in archaeological practice,1 -international journal of legal discourse,1 -sports medicine - open,1 -rsa journal,1 -digital communications and networks,1 -anglistica aion : an interdisciplinary journal,1 -annals of financial economics,1 -nordic journal of vocational education and training,1 -lingue e linguaggio,1 -occupational medicine & health affairs,0 -muziki,1 -review of european administrative law,1 -the journal of ecocriticism,1 -resilience,1 -journal of cyber policy,1 -gels,1 -asian journal of human services,0 -vìsnik lvìvskogo unìversitetu : serìâ mìžnarodnì vìdnosini,0 -pure and applied functional analysis,1 -european journal of life writing,1 -"methoden, daten, analysen",1 -evolutionary and institutional economics review,1 -defence strategic communications,0 -journal of fitness research,0 -international journal of exercise science,0 -epidemiologic methods,1 -european journal of geography,1 -asia in focus,1 -eger journal of english studies,0 -"the proceedings of the international conference ""marketing - from information to decision""",0 -review of economic studies and research virgil madgearu,0 -syracuse journal of international law and commerce,1 -international trade law & regulation,0 -moda documenta,0 -la prensa médica argentina,0 -aera open,1 -journal of numerical cognition,1 -strategic design research journal,1 -arktika i sever,1 -magyar sporttudomanyi szemle,0 -journal of pharmaceutics & drug delivery research,0 -crítica contemporánea,1 -procedia structural integrity,1 -procedia iutam,1 -ethnologia actualis,0 -arab journal of mathematical sciences,1 -saudi journal of ophthalmology,0 -biomarker insights,1 -biomedical engineering and computational biology,0 -hybris : revista de filosofía,1 -communications in inorganic synthesis,0 -the egyptian journal of medical human genetics,1 -journal of king saud university : computer and information sciences,1 -local and regional anesthesia,1 -the egyptian journal of radiology and nuclear medicine,0 -international journal of general medicine,0 -journal of the saudi heart association,0 -breast cancer,1 -"journal of open, flexible, and distance learning",1 -journal of king saud university : science,0 -acta medica bulgarica,0 -cigre science & engineering,1 -polish cartographical review,0 -healthy aging & clinical care in the elderly,1 -eu agrarian law,0 -advances in medical education and practice,1 -archives of scientific psychology,1 -studies in costume & performance,2 -journal of king saud university : engineering sciences,0 -journal of clean energy technologies,0 -architectural histories,2 -"international journal of turbomachinery, propulsion and power",1 -ejnmmi physics,1 -physical review c,2 -green letters,1 -women and birth,1 -varia história,1 -cauriensia,1 -high power laser science and engineering,1 -organizational cultures,0 -journal for global business advancement,1 -the international journal of the image,0 -journal of transatlantic studies,2 -audit financiar,0 -international journal of management and economics,0 -sustainability of water quality and ecology,1 -acs central science,3 -acs omega,1 -heliyon,1 -journal of open research software,1 -research ideas and outcomes,0 -source code for biology and medicine,1 -international journal of analytical chemistry,0 -complex metals,0 -journal on migration and human security,1 -journal of urban ecology,1 -npj breast cancer,1 -gynecologic oncology research and practice,0 -international journal of smart and nano materials,1 -drammaturgia,1 -open arts journal,1 -computer-aided design and applications,1 -international journal of environment and resource,0 -egyptian journal of aquatic research,1 -"advances in statistical climatology, meteorology and oceanography",1 -advances in intelligent systems research,0 -"lecture notes of the institute for computer sciences, social informatics and telecommunications engineering",1 -new perspectives in science education : conference proceedings,0 -international conference on cartography and gis proceedings,0 -aims public health,1 -"film, fashion & consumption",1 -"smart innovation, systems and technologies",1 -animal migration,1 -rivista italiana di ornitologia,1 -journal of legal analysis,1 -journal of brand strategy,0 -linguistics vanguard,1 -choregia,1 -international journal of engineering research and development,0 -visnik dnipropetrovskogo universitetu : seria menedzment innovacij,0 -journal of medical radiation sciences,1 -international journal of philosophy study,0 -science china materials,1 -aids research and therapy,1 -journal of toxicology,1 -organic farming,1 -athens journal of architecture,1 -global qualitative nursing research,2 -corpus pragmatics,0 -the space between,1 -history of geo- and space sciences,1 -the journal of medieval military history,0 -ancient asia,1 -"fashion, style & popular culture",1 -computational visual media,1 -interdisciplinary environmental review,1 -"international journal of nuclear governance, economy and ecology",1 -proceedings of the international cdio conference,1 -nuclear receptor research,1 -nuclear receptor signaling,1 -utbildning och demokrati,1 -interpersona : an international journal on personal relationships,1 -nano hybrids and composites,0 -diffusion foundations,1 -foundations of materials science and engineering,0 -international journal of engineering research in africa,1 -"journal of biomimetics, biomaterials and biomedical engineering",0 -advanced engineering forum,0 -higher education abstracts,0 -multicultural education review,1 -peacebuilding,1 -childhood & philosophy,1 -advances in computer science research,0 -international conference on computational social networks,0 -international conference on application of fuzzy systems and soft computing,0 -"international conference on electrical engineering/electronics, computer, telecommunications and information technology",0 -india hci conference on human computer interaction,0 -international conference on frontiers of information technology,0 -asia joint conference on information security,0 -workshop on eye tracking and visualization,0 -stability,1 -geriatric care,1 -women's midlife health,1 -archives of physiotherapy,1 -asia pacific family medicine,1 -"drug, healthcare and patient safety",1 -"the journal of digital forensics, security and law",1 -medievalia,1 -journal of nanotechnology,1 -civil and environmental engineering,0 -building research journal,0 -journal of modern transportation,1 -larhyss journal,0 -open life sciences,1 -open engineering,1 -journal of genetic engineering and biotechnology,0 -journal of radiation research and applied sciences,0 -geothermal energy science,1 -journal of acute disease,0 -open geosciences,1 -open physics,1 -open chemistry,1 -soziologische revue,0 -confero,0 -e-informatica,1 -journal of metastable and nanocrystalline materials,0 -zoosystematics and evolution,1 -de ethica,1 -people : international journal of social sciences,1 -digital evidence and electronic signature law review,1 -air & space law,1 -die deutsche schule,1 -frontiers of biogeography,1 -journal of sports medicine,1 -microsystems & nanoengineering,2 -new perspectives,1 -journal of creative communications,1 -journal of exercise rehabilitation,1 -company lawyer,1 -proceedings mea meeting,0 -journal of septuagint and cognate studies,1 -biochimica clinica,0 -"clinical, cosmetic and investigational dermatology",1 -elementa,1 -environmental development,1 -fudan journal of the humanities and social sciences,1 -gigascience,1 -hospital healthcare europe,0 -icu management,0 -international journal of complementary & alternative medicine,0 -"journal of criminological research, policy and practice",1 -journal of fashion technology & textile engineering,0 -journal of medical cases,0 -"journal of oral and maxillofacial surgery, medicine, and pathology",0 -management of biological invasions,1 -medical physics international,0 -perioperative medicine,1 -proceedings of iahs,1 -s + f,1 -scientific journals of the maritime university of szczecin,0 -tanzania journal of health research,1 -women's health,1 -authorship,1 -frontiers in medicine,1 -forum scientiae oeconomia,0 -mémoires de la société mathématique de france,1 -the nordic atlas of language structures journal,0 -engineering management in production and services,0 -chemnanomat,1 -american journal of health economics,2 -ieee transactions on multi-scale computing systems,1 -poljarnyj vestnik,1 -springer proceedings in mathematics & statistics,1 -mathematics and computers in science and engineering series,0 -revista de administração pública,1 -ifip advances in information and communication technology,1 -aims genetics,1 -publication : tampere university of technology,0 -aarhus series on human centered computing,0 -international journal of ict research in africa and the middle east,0 -conference proceedings cired,1 -contributions to statistics,1 -patristica nordica annuaria,1 -bioprinting,0 -3d printing in medicine,0 -bibliotheca historico-ecclesiastica lundensis,1 -linköping electronic conference proceedings,1 -lecture notes in bioinformatics,1 -eai endorsed transactions on pervasive health and technology,0 -information & computer security,1 -lecture notes in information systems and organisation,1 -advances in database technology,1 -journal of advances in information technology,0 -international journal of grid and utility computing,1 -"proceedings in adaptation, learning and optimization",1 -is&t international symposium on electronic imaging,1 -springer proceedings in business and economics,0 -lecture notes in management science,0 -logistics & sustainable transport,1 -ekonomika management inovace,0 -european studies in philosophy of science,1 -advances in climate change research,1 -diotime,0 -journal of philosophy in schools,1 -cim series in mathematical sciences,1 -journal of enterprise transformation,1 -journal of professions and organization,1 -machine learning reports,0 -results in physics,1 -springer proceedings in physics,0 -journal of engineering and applied sciences,0 -lecture notes in computational science and engineering,1 -anthurium,1 -rilem bookseries,0 -tos forum,0 -journal of biourbanism,1 -mehran university research journal of engineering and technology,0 -zeitschrift für luft- und weltraumrecht,0 -ict express,0 -advances in materials physics and chemistry,0 -democracy & education,1 -complex systems informatics and modeling quarterly,1 -"nanosistemy : fizika, himia, matematika",1 -international journal of law in context,1 -communication & society,1 -international journal of multinational corporation strategy,1 -internet policy review,1 -food ethics,1 -revista del centro de investigación del flamenco telethusa,1 -capital & class,1 -socius,1 -sociological science,1 -modapalavra e-periódico,1 -journal of innovation in digital ecosystems,0 -remote sensing in ecology and conservation,1 -mizan law review,1 -mathematics in industry,1 -lecture notes in engineering and computer science,0 -open access series in informatics,0 -advances in oceanography and limnology,1 -journal of marketing behavior,1 -pedagogía social,1 -bmc psychology,1 -meditari accountancy research,1 -business creativity and the creative economy,0 -french journal for media research,1 -journal of science and cycling,0 -incose international symposium,1 -between,1 -securitologia,0 -kriminologijos studijos,1 -the journal of engineering,1 -journal of therapeutic ultrasound,1 -journal of nursing home research,0 -journal of medical diagnostic methods,0 -modern africa,1 -journal of health science,0 -proceedings of the human factors and ergonomics society annual meeting,0 -raportti (tampereen teknillinen yliopisto. rakennustuotanto ja -talous),0 -revue internationale de droit pénal,1 -"international journal of advanced engineering, management and science",0 -vergentis,0 -advances in historical studies,1 -journal of dynamics and games,1 -museum history journal,1 -social inclusion,1 -icofom study series,1 -computation,1 -kognition & pædagogik,0 -acs sensors,2 -systems,1 -proceedings of the american catholic philosophical association,1 -cell chemical biology,2 -disputatio,1 -estudos em design,1 -ieee journal of radio frequency identification,1 -"international journal of management, economics & social sciences",0 -hla,1 -drug metabolism and personalized therapy,1 -journal of global slavery,1 -oar,0 -estudos semióticos,1 -international journal of engineering works,0 -ieee transactions on emerging topics in computational intelligence,1 -iiw collection,0 -bofit discussion papers,0 -international journal of case method research & application,1 -environmental sociology,1 -journal of banking and financial economics,1 -journal of open source software,0 -journal of water management modeling,1 -safety science monitor,0 -international journal of sustainable strategy and research,0 -jmir serious games,1 -journal of motor learning and development,1 -educational design research,1 -fishes,1 -international journal of microsimulation,1 -banks and bank systems,0 -insurance markets and companies: analyses and actuarial computations,0 -public and municipal finance,0 -trends in hearing,1 -hipotesis,1 -history of humanities,1 -npj quantum information,3 -she ji,1 -shinkenchiku,0 -flinders law journal,1 -education law journal,0 -journal of lean systems,0 -journal of accounting and management information systems,0 -journal of co2 utilization,1 -journal of financial management and accounting,0 -journal of computer graphics techniques,1 -design science,1 -nordic economic policy review,1 -mrs advances,1 -alphaville,1 -academia revista latinoamericana de administración,1 -ieee transactions on control of network systems,2 -ieee transactions on signal and information processing over networks,1 -foundations and trends in systems and control,1 -mediaskop,1 -international journal of export marketing,1 -environmental science & technology letters,1 -universal journal of applied science,0 -scientific technical report (deutsches geoforschungszentrum),0 -wseas transactions on communications,0 -jindal global law review,1 -revista estudio,1 -ieee transactions on intelligent vehicles,2 -thresholds,1 -international journal of engineering and geosciences,0 -eurasian studies in business and economics,0 -joornaalii seeraa oromiyaa,0 -journal of ethiopian law,0 -r-economy,1 -international journal of gender and women's studies,0 -mathematics and mechanics of complex systems,1 -the journal of oromo studies,1 -journal of developmental and life course criminology,1 -cern ideasquare journal of experimental innovation,1 -advanced electronic materials,2 -studi kantiani,1 -applied neuropsychology : child,1 -approaches,1 -arachnology,1 -applied neuropsychology : adult,1 -bryophyte diversity & evolution,1 -clinical spine surgery,1 -bahir dar journal of education,0 -journal of population and social studies,1 -journal of modern project management,1 -cold spring harbor molecular case studies,1 -apl photonics,2 -automatisierungstechnik,0 -medico e bambino,0 -ethnology notebooks,0 -international journal of energy and statistics,0 -immunometabolism,0 -streven,0 -clinical nutrition experimental,1 -"asia-pacific journal of sports medicine, arthroscopy, rehabilitation and technology",1 -nature reviews : disease primers,3 -african journal of environmental science and technology,0 -engineering letters,0 -laryngoscope investigative otolaryngology,1 -sociology of islam,1 -geriatric orthopaedic surgery & rehabilitation,1 -ieee transactions on big data,1 -galaxies,1 -journal of global academic institute education & social sciences,0 -journal of entrepreneurship in emerging economies,1 -art/research international,1 -chemical bulletin of politehnica university of timisoara : series of chemistry and environmental engineering,0 -child & youth services,1 -bioresearch open access,1 -art & perception,0 -bladder cancer,0 -journal of otology,1 -journal of industrial and production engineering,1 -endoscopy international open,1 -diagnostic and interventional imaging,1 -caucasus survey,1 -rmd open,1 -neurology international,1 -ural'skii filologicheskii vestnik,0 -chemistryselect,1 -european urology focus,2 -frontiers in nutrition,1 -oxford medical case reports,1 -amphibian & reptile conservation,1 -journal of oral science,1 -studia periegetica,0 -jama oncology,3 -journal of criminal psychology,1 -ssm : population health,1 -remark : revista brasileira de marketing,0 -microbiology australia,0 -acs biomaterials science & engineering,1 -journal of racial and ethnic health disparities,1 -the journal of comparative economic studies,0 -physical review a,2 -physical review b,2 -physical review d,2 -physical review e,2 -international journal of arts education,0 -the international journal of information and learning technology,1 -international journal of philosophy & theology,1 -lähikuva,2 -salmand,1 -philologia estonica tallinnensis,1 -matters,0 -zhongguo weisheng zhiliang guanli,0 -acoustic space,1 -ieee cloud computing,1 -ieee transactions on computational social systems,1 -epilepsia open,1 -spatial and spatio-temporal epidemiology,1 -reaction chemistry & engineering,1 -nature microbiology,3 -bmc obesity,1 -journal of neuromuscular diseases,1 -egyptian journal of ear nose throat and allied sciences,0 -"international journal of simulation : systems, science and technology",0 -fluids,1 -the transactions of the korean institute of electrical engineers,0 -bmj open respiratory research,1 -journal of food & nutritional disorders,0 -monde(s),1 -environmental geotechnics,1 -rab-rab,0 -asian journal of organic chemistry,1 -finnish journal for romanian studies,0 -"review of agricultural, food and environmental studies",0 -human gene therapy : methods,1 -science bulletin,1 -reviews in fisheries science & aquaculture,1 -science & technology for the built environment,1 -the publication serie of lahti university of applied sciences,0 -conflict and society,1 -israeli journal of humor research,1 -journal of business anthropology,1 -jurnal teknologi,1 -minerals,1 -disegno,1 -advanced materials technologies,1 -journal of ship mechanics,0 -lingwistyka stosowana,1 -ricerche di pedagogia e didattica,0 -trudy kafedry istorii novogo i novejshego vremeni sankt-peterburgskogo gosdarstvennogo universiteta,0 -russian microelectronics,0 -extreme mechanics letters,1 -food science & nutrition,1 -ieee robotics and automation letters,2 -lecture notes in computational vision and biomechanics,0 -nuclear materials and energy,1 -journal of software engineering research and development,1 -acta universitatis carolinae : kinanthropologica,1 -nursing and palliative care,0 -"triangulum : germanistisches jahrbuch für estland, lettland und litauen",0 -nature astronomy,3 -eastern european business and economics journal,0 -"international transaction journal of engineering, management, & applied sciences & technologies",0 -chemical engineering & process techniques,0 -gynecology & obstetrics case reports,0 -journal of child & adolescent trauma,1 -eai endorsed transactions on smart cities,0 -transit : europäische revue,0 -"endocrinology, diabetes & metabolism case reports",1 -journal of nursing,0 -muzikologija,0 -china pulp and paper,0 -journal of numerical analysis and approximation theory,1 -physical review fluids,1 -archives of hellenic medicine,0 -bmc zoology,1 -international journal of learning & teaching,0 -health behavior and policy review,1 -nursing forum,1 -mathematics,0 -electronics,1 -journal of dynamic behavior of materials,1 -fuels & lubes international,0 -athens journal of technology & engineering,0 -ieee intelligent transportation systems magazine,2 -sti policy review,0 -biotechnology reports,1 -mechanik,0 -international journal of safety and security engineering,0 -journal of molecular biochemistry,0 -analytic methods in accident research,1 -journal of supply chain management : research and practice,0 -eurasia cultura,0 -frontiers in sociology,1 -series : international journal of tv serial narratives,1 -research on ageing and social policy,1 -european heart journal : quality of care and clinical outcomes,1 -economia internazionale,0 -revista nebrija,1 -future science oa,0 -neurology : neuroimmunology & neuroinflammation,1 -uv4plants bulletin,1 -journal of multi business model innovation and technology,0 -nature ecology & evolution,3 -kant e-prints,1 -scholarpedia journal,0 -international journal of small business and entrepreneurship research,0 -rossijskij zhurnal pravovyh issledovanij,0 -prace naukowe uniwersytetu ekonomicznego we wroclawiu,0 -mezhdunarodnoe publichnoe i chastnoe pravo,0 -international journal of business & cyber security,0 -mokslo taikomieji tyrimai lietuvos kolegijose,0 -nevelestudomany,0 -rims kokyuroku bessatsu,1 -international journal of marine design,1 -"journal of water, sanitation and hygiene for development",1 -chemical informatics,0 -pharmacy,0 -journal of bone oncology,1 -universal journal of psychology,0 -acta philologica,1 -studi melitensi,0 -moj orthopedics & rheumatology,0 -oalib,0 -journal of nepal paediatric society,0 -current herpetology,1 -journal of synthetic crystals,0 -methodsx,0 -temperature,1 -international journal of 3-d information modeling,1 -progress in artificial intelligence,1 -minerva psichiatrica,0 -journal of insect biotechnology and sericology,1 -sovremennye problemy distancionnogo zondirovaniya zemli iz kosmosa,0 -ukrainian journal of ecology,1 -diagnostics,1 -cursiv,1 -indian journal of arachnology,0 -open archaeology,1 -tls : the times literary supplement,0 -tmg tijdschrift voor mediageschiedenis,1 -tobacco control,3 -tocher: scottish and celtic studies,1 -tohoku journal of experimental medicine,1 -tohoku mathematical journal,1 -tonos digital: revista electronica de estudios filologicos,1 -international conference on tools and algorithms for the construction and analysis of systems,2 -top,1 -topics in advanced practice nursing,1 -topics in applied physics,1 -topics in catalysis,1 -topics in clinical nutrition,1 -topics in cognitive science,1 -topics in companion animal medicine,1 -topics in current chemistry,1 -topics in current genetics,1 -topics in early childhood special education,3 -advanced emergency nursing journal,1 -topics in geriatric rehabilitation,1 -topics in language disorders,1 -topics in magnetic resonance imaging,1 -topics in organometallic chemistry,1 -topics in spinal cord injury rehabilitation,1 -topics in stereochemistry,1 -topics in stroke rehabilitation,1 -topoi orient occident,1 -topoi: an international review of philosophy,1 -topological methods in nonlinear analysis,1 -topology,1 -topology and its applications,1 -topology proceedings,1 -topos,1 -toronto journal of theology,1 -történelmi szemle,1 -total quality management and business excellence,1 -toung pao,2 -journal of quality assurance in hospitality and tourism,1 -tourism analysis,1 -tourism and hospitality research,1 -tourism economics,1 -tourism geographies,2 -tourism management,3 -tourism recreation research,1 -tourism review,1 -tourism review international: an international journal,1 -tourism today,1 -"tourism, culture and communication",1 -tourist studies,1 -town and country planning,1 -town planning review,1 -toxicologic pathology,1 -toxicological and environmental chemistry,1 -toxicological sciences,2 -toxicology,1 -toxicology and applied pharmacology,3 -toxicology and industrial health,1 -toxicology in vitro,1 -toxicology letters,1 -toxicology mechanisms and methods,1 -toxicon,1 -toxin reviews,1 -trabajos de prehistoria,1 -trace elements and electrolytes,1 -trac-trends in analytical chemistry,2 -tradition: a journal of orthodox jewish thought,1 -traditional dwellings and settlements review,1 -traditional south asian medicine,1 -"traditiones, slovenian journal of ethnography and folklore",1 -traditio: studies in ancient and medieval history thought and religion,2 -tradterm,1 -traffic,1 -traffic injury prevention,1 -training and education in professional psychology,1 -traitement automatique des langues,1 -trakl-studien,1 -trames: journal of the humanities and social sciences,1 -trans: transcultural music review,1 -trans: revista de traductologia,1 -transactional analysis journal,1 -transactions: society of naval architects and marine engineers,1 -transactions historic society of lancashire and cheshire,1 -transactions in gis,1 -transactions of nonferrous metals society of china,1 -transactions of the american entomological society,1 -transactions of the american fisheries society,1 -transactions of the american mathematical society,3 -transactions of the american nuclear society,1 -transactions of the american philological association,3 -transactions of the american philosophical society,1 -transactions of the cambridge bibliographical society,1 -transactions of the canadian society for mechanical engineering,1 -transactions of the charles s peirce society,1 -transactions of the historical society of ghana,1 -transactions of the indian ceramic society,1 -transactions of the indian institute of metals,1 -transactions of the institute of british geographers,3 -transactions of the institute of measurement and control,1 -transactions of the institute of metal finishing,1 -"transactions of the institution of mining and metallurgy, section a: mining technology",1 -"transactions of the institutions of mining and metallurgy, section b: applied earth science",1 -"transactions of the institutions of mining and metallurgy, section c: mineral processing and extractive metallurgy",1 -transactions of the japan society for aeronautical and space sciences,1 -transactions of the london and middlesex archaeological society,1 -transactions of the oriental ceramic society,1 -transactions of the philological society,3 -transactions of the royal historical society,3 -transactions of the royal institution of naval architects part b: internationaljournal of small craft technology,1 -transactions of the royal society of south australia,1 -transactions of the royal society of tropical medicine and hygiene,1 -transactions on advanced research,1 -transactions on internet research,1 -transboundary and emerging diseases,3 -transcultural psychiatry,1 -transeuphratene,1 -transfer: european review of labour and research,1 -transfiguration: nordisk tidsskrift for kunst og kristendom,1 -trans-form-acao,1 -transformation: critical perspectives on southern africa,1 -transformation groups,1 -transformations in business and economics,1 -transforming anthropology,2 -"transforming government: people, process and policy",1 -transfusion,1 -transfusion and apheresis science,1 -transfusion clinique et biologique,1 -transfusion medicine,1 -transfusion medicine and hemotherapy,1 -transfusion medicine reviews,1 -transgenic research,1 -transgenics,1 -transinformacao,1 -transition,1 -transition metal chemistry,1 -translatio,1 -translation and literature,1 -translation review,1 -translation studies,2 -translational oncology,1 -translational research,2 -translator,2 -transnational corporations,1 -transnational curriculum inquiry,1 -transnational environmental law,3 -transplant immunology,1 -transplant infectious disease,1 -transplant international,1 -transplantation,1 -transplantation proceedings,1 -transport,1 -transport in porous media,1 -transport policy,2 -transport reviews,2 -transportation,2 -transportation journal,1 -transportation planning and technology,1 -transportation research part a: policy and practice,2 -transportation research part b: methodological,3 -transportation research part c: emerging technologies,3 -transportation research part d: transport and environment,1 -transportation research part e: logistics and transportation review,2 -transportation research part f: traffic psychology and behaviour,1 -transportation research record,1 -transportation science,2 -transportmetrica,1 -transportrecht,1 -transylvanian review,1 -trauma,1 -trauma violence and abuse,2 -traumatology,1 -travail genre et societes,1 -travail humain,1 -travaux de la renaissance et de lhumanisme,1 -travaux de linguistique: revue internationale de linguistique francaise,1 -travaux de litterature,1 -travaux et memoires,1 -travaux interdisciplinaires du laboratoire parole et langage d aix-en-provence,1 -travel medicine and infectious disease,1 -"traverse: zeitschrift fur geschichte, zurich",1 -treballs de sociolinguistica catalana,1 -tree genetics and genomes,1 -tree physiology,2 -tree-ring research,1 -trees-structure and function,1 -trends in applied spectroscopy,0 -trends in biochemical sciences,2 -trends in biomaterials and artificial organs,1 -trends in biotechnology,2 -trends in cardiovascular medicine,1 -trends in cell biology,2 -trends in cognitive sciences,3 -trends in ecology and evolution,3 -trends in endocrinology and metabolism,2 -trends in food science and technology,2 -trends in genetics,2 -trends in glycoscience and glycotechnology,1 -trends in immunology,2 -trends in language acquisition research,1 -trends in microbiology,2 -trends in molecular medicine,2 -trends in neurosciences,3 -trends in organized crime,1 -trends in parasitology,2 -trends in pharmacological sciences,3 -trends in plant science,2 -trends of recent researches on the history of china,1 -trials,1 -"tribology: materials, surfaces and interfaces",1 -tribology and lubrication technology,1 -tribology and interface engineering series,1 -tribology international,2 -tribology letters,1 -tribology transactions,1 -trierer theologische zeitschrift,1 -trierer zeitschrift fur geschichte und kunst des trierer landes und seiner nachbargebiete,1 -triplec,1 -trivium,1 -trondheim studies on eastern european cultures and societies,1 -tropical agriculture,1 -tropical animal health and production,1 -tropical doctor,1 -tropical ecology,1 -tropical grasslands,1 -tropical journal of pharmaceutical research,1 -tropical medicine and international health,1 -tropical plant pathology,1 -tropical zoology,1 -trudy otdela drevnerusskoj literatury,1 -tijdschrift voor tijdschriftstudies,1 -tsantsa,1 -"ttr: traduction, terminologie et redaction",1 -tuba-ar-turkish academy of sciences journal of archaeology,0 -tuberculosis,1 -tubinger beitrage zur linguistik,1 -tulsa studies in womens literature,2 -tumor biology,1 -tumordiagnostik und therapie,1 -tumori,1 -tunguso sibirica,1 -tunnelling and underground space technology,1 -"turcica: revue detudes turques: peuples, langues, cultures, etats",1 -turcologica,1 -tourism,1 -turk arkeoloji ve etnografya dergisi,1 -turk dili arastirmalari yillgi: belleten,1 -turk dilleri arastirmalari,1 -turk kulturu ve haci bektas veli-arastirma dergisi,0 -turk pediatri arsivi-turkish archives of pediatrics,1 -turkbilig: turkoloji arastirmalari,1 -turkic languages,1 -turkish journal of agriculture and forestry,1 -turkish journal of biology,1 -turkish journal of botany,1 -turkish journal of chemistry,1 -turkish journal of earth sciences,1 -turkish journal of field crops,1 -turkish journal of fisheries and aquatic sciences,1 -turkish journal of gastroenterology,1 -turkish journal of geriatrics-turk geriatri dergisi,1 -turkish journal of mathematics,1 -turkish journal of pediatrics,1 -turkish journal of veterinary and animal sciences,1 -turkish journal of zoology,1 -turkish neurosurgery,1 -turkish studies,1 -turkiye entomoloji dergisi-turkish journal of entomology,1 -turkiye fiziksel tip ve rehabilitasyon dergisi-turkish journal of physicalmedicine and rehabilitation,1 -tutkiva hoitotyö,1 -twentieth century architecture,1 -twentieth century british history,2 -twentieth century communism: a journal of international history,1 -twentieth century literature,2 -twentieth century music,1 -twentieth-century china,1 -twin research and human genetics,1 -"tyche : beitrage zur alten geschichte, papyrologie und epigraphik",2 -tydskrif vir geesteswetenskappe,1 -tydskrif vir letterkunde,1 -tyndale bulletin,1 -työelämän tutkimus,1 -työoikeudellisen yhdistyksen vuosikirja,1 -työväentutkimus,1 -učenye zapiski rossijskogo gosudarstvennogo socialʹnogo universiteta,1 -ucla law review,2 -ugarit-forschungen: internationales jahrbuch fur die altertumskunde syrien-palaestinas,1 -ugeskrift for laeger,1 -ugeskrift for retsvaesen,1 -ugglan,1 -ukrainian mathematical journal,1 -ulster folklife,1 -ultimate reality and meaning,1 -ultramicroscopy,1 -ultraschall in der medizin,1 -ultrasonic imaging,1 -ultrasonics,1 -ultrasonics sonochemistry,1 -ultrasound in medicine and biology,1 -ultrasound in obstetrics and gynecology,2 -ultrasound quarterly,1 -ultrastructural pathology,1 -ulusal travma ve acil cerrahi dergisi-turkish journal of trauma and emergency surgery,1 -uluslararasi iliskiler-international relations,1 -umeni-art,1 -umjetnost rijeci,1 -undersea and hyperbaric medicine,1 -underwater technology,1 -unfallchirurg,1 -uniform distribution theory,1 -uniform law review,1 -union seminary quarterly review,1 -universal access in the information society,1 -universitas: monthly review of philosophy and culture,1 -university museums and collections journal,1 -university of british columbia law review,1 -university of chicago law review,2 -university of cincinnati law review,1 -university of illinois law review,1 -university of michigan journal of law reform,1 -university of pennsylvania journal of international law,1 -university of pennsylvania law review,2 -university of pittsburgh law review,1 -university of toronto law journal,1 -university of toronto quarterly,1 -unterrichtswissenschaft,1 -upravlenie zdravoohraneniem,1 -upsala journal of medical sciences,1 -ural-altaische jahrbücher,2 -uralica helsingiensia,1 -uralisztikai tanulmányok,1 -urban affairs review,2 -urban anthropology and studies of cultural systems and world economic development,1 -urban design international,2 -urban ecosystems,1 -urban education,1 -urban forestry and urban greening,1 -urban forum,1 -urban geography,2 -urban history,3 -urban history review-revue d histoire urbaine,1 -urban lawyer,1 -urban morphology,1 -urban policy and research,1 -urban research and practice,2 -urban studies,3 -urban water journal,1 -urbanistica,1 -urisa journal,1 -urologe: ausgabe a,1 -urologia internationalis,1 -urologic clinics of north america,1 -urologic oncology: seminars and original investigations,1 -urology,1 -ursus,1 -us wurk,1 -usage-based linguistic informatics,1 -usda forest service: research papers pnw-rp,1 -network and distributed system security symposium,2 -usenix security symposium,2 -proceedings : workshop on hot topics in operating systems,1 -user modeling and user-adapted interaction,3 -usuteaduslik ajakiri,1 -utilitas,2 -utilitas mathematica,1 -utilities law review,1 -utilities policy,1 -utopian studies,1 -utukirjat,1 -vaccine,1 -vacuum,1 -vadose zone journal,1 -waffen-und kostumkunde,1 -wagadu: a journal of transnational womens and gender studies,1 -valahian journal of historical studies,1 -valodas prakse: verojumi un ieteikumi,1 -walt whitman quarterly review,1 -value in health,2 -vanderbilt journal of transnational law,2 -vanderbilt law review,2 -vann,1 -war and society,1 -war in history,2 -variaciones borges,1 -variants: the journal of the european society for textual scholarship,1 -vasa: european journal of vascular medicine,1 -vascular,1 -vascular and endovascular surgery,1 -vascular medicine,1 -vascular pharmacology,1 -washington law review,1 -washington quarterly,1 -wasserwirtschaft,1 -waste management,3 -waste management and research,1 -water,1 -water air and soil pollution,1 -water and environment journal,1 -water environment research,1 -water international,1 -water policy,1 -water quality research journal of canada,1 -water research,3 -water resources,1 -water resources management,1 -water resources research,3 -water sa,1 -water science and technology,1 -water science and technology: water supply,1 -waterbirds,1 -wave motion,1 -waves in random and complex media,1 -vdr beitrage zur erhaltung von kunst- und kulturgut,1 -wear,3 -weather and forecasting,1 -"weather, climate, and society",1 -web ecology,1 -webology,1 -vector-borne and zoonotic diseases,1 -weed biology and management,1 -weed research,1 -weed science,1 -weed technology,1 -vegetation history and archaeobotany,2 -vegetos,0 -vehicle system dynamics,1 -weimarer beitrage,2 -welding in the world,2 -welding international,1 -welding journal,1 -veleia,1 -welsh history review,1 -welsh writing in english: a yearbook of critical essays,1 -die welt der slaven: halbjahresschrift fur slavistik,2 -die welt des islams,2 -die welt des orients,1 -il veltro,1 -venture capital,1 -verba: anuario galega de filoloxia,2 -verbum,1 -vergilius,1 -verhaltenstherapie,1 -verifiche,1 -werkstattreihe deutsch als fremdsprache,1 -verkundigung und forschung,1 -veroffentlichungen des instituts fur europaische geschichte mainz: abteilung universalgeschichte und abteilung für abendlaendische religionsgeschichte,1 -vero?ffentlichungen des instituts fu?r europa?ische geschichte mainz : abteilung universalgeschichte : beiheft,1 -verotus,1 -versants: revue suisse des littératures romanes,1 -verslagen en mededelingen van de koninklije academie voor nederlandse taal- en letterkunde,1 -vertice,1 -west africa review,1 -west european politics,3 -west indian medical journal,1 -western american literature,1 -western folklore,2 -western historical quarterly,1 -western humanities review,1 -western journal of communication,1 -western journal of nursing research,1 -western north american naturalist,1 -westminster papers in communication and culture,1 -vestnik ?elâbinskogo gosudarstvennogo universiteta. seriâ filosofiâ. sociologiâ. kul’turologiâ,1 -vestnik drevnij istorii,1 -vestnik mezhdunarodnih organizatsii,1 -vestnik moskovskogo gosudarstvennogo lingvisticheskogo universiteta serija jazykoznanie,1 -vestnik moskovskogo universiteta : seriâ 2 himiâ,0 -vestnik moskovskogo universiteta. seriâ 19. lingvistika i mežkulʹturnaâ kommunikaciâ,1 -vestnik moskovskogo universiteta. serija 9. filologija,1 -vestnik moskovskovo universiteta. serija 21. upravlenija,1 -vestnik rggu,1 -vestnik rossiiskoi akademii nauk,1 -"vestnik sankt-peterburgskogo universiteta. seriâ 6. filosofiâ, kulturologiâ, politologiâ, pravo, meždunarodnye otnošeniâ",0 -"vestnik tomskogo gosudarstvennogo universiteta. filosofiâ, sociologiâ, politologiâ",1 -veterinaria,1 -veterinaria italiana,1 -veterinarija ir zootechnika,1 -veterinarni medicina,1 -veterinarski arhiv,1 -veterinary anaesthesia and analgesia,2 -veterinary and comparative oncology,1 -veterinary and comparative orthopaedics and traumatology,1 -veterinary clinical pathology,1 -veterinary clinics of north america: equine practice,1 -veterinary clinics of north america: food animal practice,1 -veterinary clinics of north america: small animal practice,1 -veterinary dermatology,1 -veterinary economics,1 -veterinary immunology and immunopathology,2 -veterinary journal,3 -veterinary medicine,1 -veterinary microbiology,3 -veterinary ophthalmology,1 -veterinary parasitology,2 -veterinary pathology,2 -veterinary practitioner,1 -veterinary quarterly,2 -veterinary radiology and ultrasound,1 -veterinary record,1 -veterinary research,3 -veterinary research communications,1 -veterinary sciences tomorrow,1 -veterinary surgery,1 -wetlands,1 -wetlands ecology and management,1 -vetus testamentum,3 -who technical report series,1 -via latgalica,1 -wiadomosci archeologiczne,1 -vial: vigo international journal of applied linguistics,1 -viator : medieval and renaissance studies,3 -vibrational spectroscopy,1 -wicazo sa review: a journal of native american studies,1 -vichiana,1 -victorian literature and culture,2 -victorians,1 -victorian periodicals review,1 -victorian poetry,3 -victorian review,1 -victorian studies,1 -victorians institute journal,1 -vie et milieu-life and environment,1 -wiener humanistische blätter,1 -wiener jahrbuch fur philosophie,1 -wiener klinische wochenschrift,1 -wiener slawistischer almanach,1 -wiener studien,3 -wiener studien zur skandinavistik,1 -wiener zeitschrift fur die kunde des morgenlandes,1 -wiener zeitschrift zur geschichte der neuzeit,1 -vienna circle institute yearbook,1 -vienna online journal on international constitutional law,1 -vierteljahresschrift fur sozial und wirtschaftsgeschichte,1 -vierteljahrshefte fur zeitgeschichte,3 -viesoji politika ir administravimas,1 -vigiliae christianae,3 -viking,1 -viking and medieval scandinavia,1 -wilderness and environmental medicine,1 -wildlife biology,1 -wildlife monographs,2 -wildlife research,1 -wiley interdisciplinary reviews: nanomedicine and nanobiotechnology,1 -wilkie collins society journal,1 -willdenowia,1 -william and mary quarterly,2 -william james studies,1 -wilson journal of ornithology,1 -wiltshire archaeological and narural history magazine,1 -wind and structures,1 -wind energy,2 -wind engineering,1 -vindobona journal of international commercial law and arbitration,1 -windsor review of legal and social issues,1 -vingtieme siecle-revue d'histoire,1 -winterthur portfolio : a journal of american material culture,2 -violence against women,2 -violence and victims,1 -viral immunology,1 -wireless communications and mobile computing,0 -wireless networks,1 -wireless personal communications,1 -wires computational statistics,1 -virginia law review,2 -virginia quarterly review,1 -virginia tax review,1 -virittäjä,2 -wirkendes wort,2 -virologie,1 -virology,1 -virology journal,1 -wirtschaft und wettbewerb,1 -virtual reality,2 -virus genes,1 -virus research,1 -viruses,1 -wisconsin international law journal,1 -wisconsin law review,1 -visible language,1 -visio: la revue de l association internationale de semiotique visuelle,1 -vision research,1 -vision tecnologica,1 -visitor studies,1 -visual anthropology,2 -visual cognition,1 -visual communication,2 -visual communication quarterly,1 -visual computer,1 -visual culture in britain,1 -visual impairment research,1 -visual neuroscience,1 -visual resources: an international journal of documentation,1 -visual studies,2 -visual:design:scholarship,1 -vitamins and hormones series,1 -vitark: acta archaeologica nidrosiensia,1 -vitis,1 -vivarium: an international journal for the philosophy and intellectual life of the middle ages and renaissance,2 -vizantiski vremennik,1 -vlaams diergeneeskundig tijdschrift,1 -vlast,1 -vldb journal,3 -vlsi design,1 -wmu journal of maritime affairs,1 -revue europeenne formation professionnelle,1 -vocations and learning,2 -wochenblatt fur papierfabrikation,1 -voices,1 -voix et images,1 -wolfenbuetteler abhandlungen zur renaissanceforschung,1 -wolfenbutteler barock-nachrichten,1 -wolfenbutteler renaissance mitteilungen,1 -volkskunde,1 -volta review,1 -voluntas,1 -womans art journal,1 -women and health,1 -women and music: a journal of gender and culture,1 -women and therapy,1 -women and criminal justice,1 -women and language,1 -women and performance: a journal of feminist theory,1 -women in french studies,1 -women in judaism: a multidisciplinary journal,1 -gender in management: an international journal,1 -women in sport and physical activity journal,1 -women: a cultural review,1 -womens health issues,1 -women's history review,2 -womens philosophy review,1 -womens rights law reporter,1 -womens studies,1 -womens studies international forum,1 -womens studies quarterly,1 -womens writing,1 -wood and fiber science,1 -wood material science and engineering,1 -wood research,1 -wood science and technology,1 -international journal of sheep and wool science,1 -voprosy filosofii,1 -voprosy istorii,2 -voprosy kognitivnoj lingvistiki,1 -voprosy kul?turologii,1 -voprosy literatury,2 -voprosy onomastiki,1 -voprosy psikholingvistiki,1 -voprosy psikhologii,1 -voprosy yazykoznaniya,3 -word,1 -word and image,2 -word and music studies,1 -word structure,2 -wordsworth circle,1 -vorgange,1 -work and occupations,3 -work and stress,3 -work based learning in primary care,1 -work employment and society,3 -work: a journal of prevention assessment and rehabilitation,1 -ieee international working conference on mining software repositories,1 -ieee international conference on software architecture,2 -world animal review,1 -world archaeology,3 -world bank economic review,1 -world bank research observer,1 -world competition: law and economics review,1 -world development,3 -world economics: the journal of current economic analysis and policy,1 -world economy,1 -world englishes,2 -world federation of occupational therapists bulletin,1 -world futures: the journal of general evolution,1 -world journal of biological psychiatry,1 -world journal of gastroenterology,0 -world journal of microbiology and biotechnology,1 -orthodontics,1 -world journal of surgery,1 -world journal of surgical oncology,1 -world journal of urology,2 -world literature today,2 -world of music,2 -world oil,0 -world oil trade,1 -world policy journal,1 -world political science review,1 -world politics,3 -world psychiatry,3 -world rabbit science,1 -world resources,1 -"world review of entrepreneurship, management and sustainable development",1 -world studies in education,1 -world today,1 -world trade and arbitration materials,1 -world trade review,1 -world transport policy and practice,1 -world wide web-internet and web information systems,1 -worlds poultry science journal,1 -worldviews on evidence-based nursing,2 -"worldviews: environment, culture, religion",1 -worship,1 -wound repair and regeneration,1 -wounds: a compendium of clinical research and practice,1 -vox romanica,1 -vox sanguinis,1 -writing technologies,1 -writings on dance,1 -written communication,3 -written language and literacy,1 -visions of research in music education,1 -wseas transactions on advances in engineering education,0 -wseas transactions on mathematics,0 -wsi-mitteilungen,1 -wspolczesna onkologia-contemporary oncology,1 -wulfenia,0 -vulnerable children and youth studies,1 -suomalaisen tiedeakatemian vuosikirja,0 -vuosilusto,1 -wurzburger jahrbucher fur die altertumswissenschaft,1 -väki voimakas,1 -xenobiotica,1 -xenotransplantation,1 -xibei mingzu,1 -x-ray spectrometry,1 -yad vashem studies,1 -yale classical studies,1 -yale french studies,2 -"yale journal of health policy, law, and ethics",1 -yale journal of international law,2 -yale journal of law and feminism,1 -yale journal on regulation,1 -yale law and policy review,1 -yale law journal,3 -ýawpa pacha,1 -year book of the leo baeck institute,1 -yearbook for traditional music,3 -yearbook of english studies,1 -yearbook of european law,2 -yearbook of international environmental law,1 -yearbook of international humanitarian law,1 -yearbook of physical anthropology,1 -journal of the european society of women in theological research,1 -yearbook of the international tribunal for the law of the sea,1 -yearbook of the irish philosophical society,1 -yearbook of the research centre for german and austrian exile studies,1 -years work in english studies,1 -yeast,1 -yeol-sang journal of classical studies,1 -yhdyskuntasuunnittelu,1 -yhteiskuntapolitiikka,2 -yiddish: modern jewish studies,1 -ympäristöjuridiikka,1 -ympäristöpolitiikan ja -oikeuden vuosikirja,1 -yonsei medical journal,1 -yorkshire archaeological journal,1 -young,2 -young children,1 -youth and society,2 -youth theatre journal,1 -youth violence and juvenile justice,2 -zacht lawijd,1 -zamm: zeitschrift fur angewandte mathematik und mechanik,1 -zbornik matice srpske za filologiju i lingvistiku,1 -zdm,1 -zdravstveno varstvo,1 -zebrafish,1 -zeitgeschichte,1 -zeitschrift der deutschen gesellschaft fur geowissenschaften,1 -zeitschrift der deutschen morgenlandischen gesellschaft,1 -zeitschrift der gesellschaft für musiktheorie,1 -zeitschrift der savigny-stiftung fur rechtsgeschichte: germanistische abteilung,2 -zeitschrift der savigny-stiftung fur rechtsgeschichte: kanonistische abteilung,1 -zeitschrift der savigny-stiftung fur rechtsgeschichte: romanistische abteilung,2 -zeitschrift des deutschen palastina-vereins,1 -zeitschrift des deutschen vereins fur kunstwissenschaft,1 -zeitschrift fuer kritische musikpaedagogik,1 -zeitschrift fur agrargeschichte und agrarsoziologie,1 -zeitschrift fur agyptische sprache und altertumskunde,2 -zeitschrift fur althebraistik,1 -zeitschrift fur altorientalische und biblische rechtsgeschichte,1 -zeitschrift fur analysis und ihre anwendungen,1 -zeitschrift fur angewandte linguistik,2 -zeitschrift fur angewandte mathematik und physik,1 -zeitschrift fur anglistik und amerikanistik,2 -zeitschrift fur anorganische und allgemeine chemie,1 -zeitschrift fur antikes christentum,2 -zeitschrift für archäologie des mittelalters,2 -zeitschrift fur arznei- und gewurzpflanzen,1 -zeitschrift fur assyriologie und vorderasiatische archaologie,2 -zeitschrift fur asthetik und allgemeine kunstwissenschaft,2 -zeitschrift fur auslaendisches oeffentliches recht und voelkerrecht,1 -zeitschrift fur auslandische und internationales arbeits- und sozialrecht,1 -zeitschrift fur balkanologie,1 -zeitschrift fur bayerische landesgeschichte,1 -zeitschrift fur bibliothekswesen und bibliographie,1 -zeitschrift fur celtische philologie,2 -zeitschrift fur deutsche philologie,3 -zeitschrift fur deutsches altertum und deutsche literatur,2 -zeitschrift fur dialektische theologie,1 -zeitschrift fur dialektologie und linguistik,2 -zeitschrift fur dialektologie und linguistik: beihefte,1 -zeitschrift fur didaktik der philosophie und ethik,1 -zeitschrift fur die alttestamentliche wissenschaft,3 -zeitschrift fur die gesamte strafrechtswissenschaft,1 -zeitschrift fur die neutestamentliche wissenschaft und die kunde der alteren kirche,3 -zeitschrift fur ethnologie,1 -zeitschrift fur europaeisches privatrecht,2 -"zeitschrift fur europarecht, internationales privatrecht und rechtsvergleichung",1 -zeitschrift fur evaluation,1 -zeitschrift fur evangelische ethik,2 -zeitschrift fur evangelisches kirchenrecht,1 -zeitschrift fur franzosische sprache und literatur,2 -gender,1 -zeitschrift fur fremdsprachenforschung,1 -zeitschrift fur gastroenterologie,1 -zeitschrift fur geburtshilfe und neonatologie,1 -zeitschrift fur geomorphologie,1 -zeitschrift fur germanistik,2 -zeitschrift fur germanistische linguistik,2 -zeitschrift fur gerontologie und geriatrie,1 -zeitschrift fur geschichte der arabisch-islamischen wissenschaften,1 -zeitschrift fur geschichtswissenschaft,1 -journal of public health,1 -zeitschrift fur heilpadagogik,1 -zeitschrift fur historische forschung,2 -zeitschrift für interkulturellen fremdsprachenunterricht,2 -zeitschrift fur internationale beziehungen,1 -zeitschrift fur kanada-studien,1 -zeitschrift fur katalanistik,1 -zeitschrift fur katholische theologie,1 -zeitschrift fur kirchengeschichte,2 -zeitschrift fur kristallographie,1 -zeitschrift fur kritische theorie,1 -zeitschrift fur kunstgeschichte,3 -zeitschrift fur kunsttechnologie und konservierung,1 -zeitschrift fur medizinische physik,1 -zeitschrift fur missionswissenschaft und religionswissenschaft,1 -zeitschrift fur naturforschung section a: a journal of physical sciences,1 -zeitschrift fur naturforschung section b: a journal of chemical sciences,1 -zeitschrift fur naturforschung section c: a journal of biosciences,1 -zeitschrift fur neuere rechtsgeschichte,1 -zeitschrift fur neuere theologiegeschichte,1 -zeitschrift für öffentliches recht,1 -zeitschrift für orient-archaologie,1 -zeitschrift fur orthopadie und unfallchirurgie,1 -zeitschrift fur ostmitteleuropa-forschung,2 -zeitschrift fur padagogik,1 -zeitschrift fur padagogik und theologie,1 -zeitschrift fur papyrologie und epigraphik,2 -zeitschrift fur parlamentsfragen,1 -zeitschrift fur philosophische forschung,2 -zeitschrift fur physikalische chemie-international journal of research in physical chemistry and chemical physics,1 -zeitschrift fur phytotherapie: offizielles organ der ges. f. phytotherapie e.v,1 -zeitschrift fur politik,1 -zeitschrift fur politikwissenschaft,1 -zeitschrift fur psychosomatische medizin und psychotherapie,1 -zeitschrift fur rechtssoziologie,1 -zeitschrift fur religions-und geistesgeschichte,1 -zeitschrift fur religionswissenschaft,2 -zeitschrift fur rheumatologie,1 -zeitschrift fur romanische philologie,3 -zeitschrift fur schweizerische archaologie und kunstgeschichte,1 -zeitschrift fur semiotik,1 -zeitschrift fur slavische philologie,1 -zeitschrift fur slawistik,3 -zeitschrift fur soziologie,2 -zeitschrift fur soziologie der erziehung und sozialisation,1 -zeitschrift fur sportpsychologie,1 -zeitschrift fur sprachwissenschaft,1 -zeitschrift fur theologie und kirche,3 -zeitschrift fur unternehmensgeschichte,1 -zeitschrift fur weltgeschichte,1 -zeitschrift fur wirtschaftsgeographie,1 -zeitschrift fur volkskunde,1 -zeitschrift für sozialpädagogik,1 -zeitsprunge: forschungen zur freuhen neuzeit,1 -zemdirbyste-agriculture,1 -zenetudomanyi dolgozatok,1 -zentralasiatische studien,1 -zentralblatt fur chirurgie,1 -zephyrus,1 -zeventiende eeuw,1 -"zfv: zeitschrift fur geodasie, geoinformation und landmanagement",1 -zgodovinski casopis-historical review,1 -zhongguo yuwen,1 -zhurnal nauchnoi i prikladnoi fotografii,1 -zhurnal nevrologii i psikhiatrii imeni s s korsakova,1 -zhurnal obshchei biologii,1 -zielsprache deutsch,1 -zitteliana reihe b: abhandlungen der bayerischen staatssammlung fur palaontologie und geologie,1 -zivot umjetnosti,1 -zkg international,1 -zoo biology,1 -zookeys,1 -zoologica scripta,1 -zoological journal of the linnean society,1 -zoological science,1 -zoological studies,1 -zoologichesky zhurnal,1 -zoologischer anzeiger,1 -zoology,1 -zoology in the middle east,1 -zoomorphology,1 -zoonoses and public health,2 -zoosystema,1 -zootaxa,1 -zootecnia tropical,1 -avriga: zpravy jednoty klasickych filologu,1 -zuchtungskunde,1 -zuckerindustrie,1 -zunamen: zeitschrift für namenforschung,1 -zürcher beiträge zur sicherheitspolitik,1 -zwingliana,1 -journal of hydrology new zealand,0 -journal of immunology research,1 -journal of information security,0 -journal of land use science,1 -journal of leadership education,0 -journal of life medicine,0 -journal of mechanical behaviour of materials,1 -journal of minerals and materials characterization and engineering,0 -journal of nursing and care,0 -journal of nutritional health and food science,0 -journal of oral and facial pain and headache,1 -journal of pattern recognition and intelligent systems,0 -journal of political science and public affairs,0 -journal of politics and law,0 -journal of religion and violence,1 -journal of sensors and sensor systems,0 -journal of ship production and design,1 -journal of social and political studies,0 -journal of social entrepreneurship,1 -journal of social sciences research,0 -journal of sufi studies,1 -journal of sustainable research in engineering,0 -journal of technology management for growing economies,0 -journal of the bible and its reception,1 -journal of the national institute for career education and counselling,0 -journal of the ottoman and turkish studies association,0 -journal of thoracic disease,1 -journal of tissue science and engineering,0 -journal of traditional and complementary medicine,1 -journal of veterinary cardiology,1 -journal of workplace rights,0 -kaifeng jiaoyu xueyuan xuebao,0 -karaite archives,0 -keresztény magvetö,0 -kirche und recht,0 -kōdō kagaku,0 -kris och kritik,0 -kuoriti edyukeshon,0 -law of ukraine,0 -le français aujourd´hui,1 -lea,1 -leonardo reviews,0 -lex russica,0 -libri et liberi,1 -litnet,0 -malaysian applied biology,0 -management & marketing,0 -marang,1 -materials horizons,2 -medical mycology case reports,0 -mental health and physical activity,1 -metabolic engineering communications,1 -metatheoria,1 -methods and applications in fluorescence,1 -microbiome,3 -mobile dna,1 -modern nyelvoktatás,1 -molecular and cellular therapies,1 -molecular metabolism,2 -moving the social,0 -multiple sclerosis and related disorders,1 -mutation research,1 -mycobiology,1 -n?mah-yi anjuman-i ?asharahshin?s?n-i ?r?n,0 -national forensic journal,0 -"african journal for physical, health education, recreation and dance",0 -native studies review,0 -navigationen,0 -neonatal network,0 -nephron extra,1 -new zealand journal of public and international law,1 -nihon shokuhin k?gakkaishi,0 -nuclear physics news,0 -old english newsletter,0 -open access journal of sports medicine,1 -open forum infectious diseases,1 -open inquiry archive,0 -open journal of business and management,0 -open journal of depression,0 -open journal of forestry,0 -open journal of social sciences,0 -operations research and decisions,0 -õpetatud eesti seltsi aastaraamat,0 -opuscula philolichenum,1 -organic chemistry frontiers,1 -pain management,1 -pami?? i sprawiedliwo??,0 -parallel and cloud computing research,0 -pediatric endocrinology review,0 -pediatric obesity,1 -potschefstroom electronic law journal,1 -pet clinics,1 -pharmacology research & perspectives,1 -philippine journal of psychology,0 -philologica jassyensia,1 -philosophical practice,1 -"philosophy, theology and the sciences",1 -polemos,0 -pollack periodica,1 -prehospital and disaster medicine,1 -procedia economics and finance,0 -procedia materials science,0 -procedia technology,0 -proceedings of peerage of science,0 -procesamiento del lenguaje natural,1 -processes,1 -programmnye produkty i sistemy,0 -progress in health sciences,0 -progress in nuclear science and technology,1 -psicología educativa,1 -psihološka obzorja,1 -psychology of well-being,1 -psychology research,0 -qualitative and quantitative methods in libraries,1 -raisons politiques,1 -relations,1 -relations internationales,1 -religion and gender,1 -remetallica,0 -reports of practical oncology and radiotherapy,0 -journal of the israel dental association,0 -research,0 -research and reports in neonatology,0 -research in corpus linguistics,1 -review journal of autism and developmental disorders,1 -review of international affairs,0 -reviews on environmental health,1 -revue de l´ofce,1 -revue de l´union européenne,0 -revue française de pédagogie,1 -rocznik instytutu europy ?rodkowo-wschodniej,0 -rossica antiqua,0 -ruch filozoficzny,1 -russian studies in history,0 -safety of technogenic environment,0 -sanctorum,1 -sapere aude,1 -scandinavian journal for leadership and theology,0 -scandinavian journal of public administration,1 -scenario,0 -scene,1 -scuola democratica,0 -seksologinen aikakauskirja,1 -seniors housing and care journal,0 -sexual medicine,1 -shìdnij svìt,1 -shougai gakushuu kyaria kyouiku kenkyuu,0 -sibirskij lesnoj žurnal,0 -sigkdd explorations,0 -signata : annales des sémiotiques,1 -sisyphus,1 -skvortsovia,1 -slaskie studia historyczno-teologiczne,1 -social networking,0 -sociologi?eskoe obozrenie,0 -soletras,1 -soome-ugri sõlmed,0 -spatial statistics,1 -stem cell reports,2 -studia diplomatica,0 -studia humanitatis borealis,1 -studia quaternaria,0 -studia slavica et balcanica petropolitana,1 -supply chain effect,0 -surface innovations,1 -systema,0 -systems biomedicine,1 -transnational dispute management,0 -teaching journalism and mass communication,0 -technologies,0 -tehnicki vjesnik,0 -teme,0 -temple international and comparative law journal,1 -teoria u’vikoret,0 -"international journal of new media, technology and the arts",1 -"international journal of social sustainability in economic, social and cultural context",0 -african journal of information systems,1 -british journal of leadership in public services,0 -copernicus journal of political studies,0 -educational forum,1 -historic environment,1 -international journal of badiou studies,1 -international journal of engineering and science,0 -international journal of not-for-profit law,0 -journal of frailty and aging,1 -journal of prediction markets,1 -the lancet respiratory medicine,3 -middle ground journal,0 -open epidemiology journal,0 -therapeutic advances in neurological disorders,1 -tianjin keji daxue xuebao,0 -tijdschrift voor hoger onderwijs,0 -tímarit um menntarannsóknir,0 -"trade, law and development",0 -transcultural studies,1 -transformacje,0 -treća,0 -triple helix,1 -tuning journal for higher education,0 -turjuman,0 -tyumen state university herald,0 -universum,0 -unlv gaming research and review journal,1 -vestnik rossijskogo universiteta družby narodov,0 -vestnik syktyvkarskogo universiteta : seriâ gumanitarnyh nauk,0 -vìsnik lʹvìvsʹkogo unìversitetu : serìâ ekonomična,0 -vodenje v vzgoji in izobraževanju,0 -wagnerspectrum,1 -wenyi lilun yanjiu,0 -wildfowl,1 -world journal of psychiatry,0 -world journal of radiology,0 -hong kong journal of mental health,0 -yearbook of antitrust and regulatory studies,1 -yíqì yíbi?o xuébào,0 -yrittäjyyskasvatuksen aikakauskirja,0 -zeitschrift für mykologie,0 -zeitschrift für lebensrecht,1 -zolotoordynskaâ civilizaciâ,0 -zolotoordynskoe obozrenie,0 -fiducia,0 -acta philosophica tamperensia,1 -tapri studies in peace and conflict research,0 -tva-julkaisuja,0 -turun normaalikoulun julkaisuja,0 -turun yliopiston julkaisuja sarja c : scripta lingua fennica edita,0 -cleer working papers,0 -les cahiers jean-marie gustave le clézio,0 -international conference on onomastics: name and naming,0 -book of abstracts : european meetings on cybernetics and systems research,0 -publications of the department of social research,0 -international reports on socio-informatics,0 -publications of the university of eastern finland. reports and studies in social sciences and business studies,0 -opiskelijatutkimuksen vuosikirja,1 -rikosseuraamuslaitoksen julkaisuja,0 -juminkeon julkaisuja,0 -acta semiotica fennica,0 -siirtolaisuustutkimuksia a,0 -suomalais-ugrilaisen seuran kansatieteellisiä julkaisuja,0 -fundamina,1 -studia patristica fennica,1 -setlementtijulkaisuja,0 -syken julkaisuja,0 -nivel,0 -kinesis,0 -infectious diseases,1 -turun historiallinen arkisto,1 -oppimisen ja oppimisvaikeuksien erityislehti,1 -vestnik pravoslavnogo svâto-tihonovskogo gumanitarnogo universiteta. seriâ v. voprosy istorii i teorii hristianskogo iskusstva,1 -european politics and society,1 -interdisciplinary journal of contemporary research in business,0 -gazzetta medica italiana : archivio per le scienze mediche,1 -journal of roman archaeology : supplementary series,2 -athens journal of sciences,0 -journal of international and comparative social policy,1 -asian communication research,1 -medijske studije,1 -journal of transport and health,1 -annual conference of the international foundation of fashion technology institutes,0 -geombinatorics,1 -journal of east-west thought,1 -articulo,1 -communications in mathematical finance,0 -review of communication research,1 -discourse and communication for sustainable education,1 -journal of political science education,1 -democratic theory,1 -nordic journal of studies in educational policy,1 -mycosphere,1 -journal of analytic theology,1 -international workshop on software engineering research and industrial practice,0 -delaware journal of corporate law,1 -food packaging and shelf life,1 -the new educator,1 -nep era : soviet russia 1921-1928,0 -international journal of design creativity and innovation,1 -baltic journal of art history,1 -dobras,1 -geoderma regional,1 -latin american journal of management for sustainable development,1 -environmental systems research,0 -journal of physical education and sport,0 -mechanical engineering research,0 -reading in a foreign language,1 -critical studies in men´s fashion,1 -european law reporter,1 -international journal of environment and bioenergy,0 -revue d´économie financière,1 -finance,1 -robotics and biomimetics,1 -nordic journal of business,1 -annals of global health,1 -international journal of advanced computer science and applications,0 -international journal of advanced research in artificial intelligence,0 -food studies,1 -teoria de la educacion,0 -entomologist´s gazette,0 -eidola,1 -journal of applied geodesy,1 -newton´s bulletin,0 -journal of asia business studies,1 -transactions on pattern languages of programming,1 -international journal of research studies in management,0 -european modelling symposium,0 -journal of building engineering,1 -journal for multicultural education,1 -journal of digital learning in teacher education,1 -toward a science of consciousness,0 -"ethics, medicine and public health",1 -international conference on cyber conflict,1 -liikejuridiikka,1 -ieee international conference on consumer electronics - berlin,0 -psychology of consciousness,1 -"international conference on wireless algorithms, systems, and applications",0 -journal of academic perspectives,0 -"international conference on emerging internetworking, data and web technologies",0 -studies on religion and memory,0 -journal of curriculum theorizing,1 -sakprosa,1 -accounting and the public interest,1 -global media journal australia,0 -case studies on transport policy,1 -journal of reliable intelligent environments,0 -"sibgrapi conference on graphics, patterns and images",0 -journal of shipping and trade,1 -journal of indian philosophy and religion,2 -the learning teacher journal,0 -iufro world congress,0 -world forestry congress,0 -international journal of emotional education,1 -eneuro,1 -earth's future,2 -international journal of contemporary economics and administrative sciences,0 -ergo,2 -journal of the american philosophical association,2 -procomma academic,1 -world tax journal,3 -"journal of religion, media and digital culture",1 -partecipazione e conflitto,1 -international review of sport and exercise psychology,3 -international workshop on semantic technologies,0 -statistics in biosciences,1 -energy research journal,0 -advances in wireless and optical communications,0 -iris,0 -topologik,0 -journal of marketing analytics,1 -additive manufacturing,3 -carbon balance and management,1 -progress in additive manufacturing,1 -journal of learning analytics,2 -journal of learning spaces,1 -journal of pathology informatics,1 -kriminologian ja oikeuspolitiikan instituutin tutkimuksia,0 -international journal of literary linguistics,1 -journal of soviet and post-soviet politics and society,1 -journal of business economics,1 -anthropology matters journal,0 -academy of management discoveries,3 -open computer science,1 -african journal of paediatric surgery,0 -international journal of clinical rheumatology,0 -journal of medical economics,1 -cureus,0 -journal of clinical trials,0 -clinics in orthopedic surgery,0 -international journal of mental health promotion,1 -informationen aus orthodontie und kieferorthopädie,0 -annals of intensive care,1 -bjpsych international,0 -urologiia,0 -journal for patient compliance,0 -journal of gastrointestinal cancer,0 -terveydenhoitoviesti,0 -international journal of breast cancer,0 -journal of public health research,1 -schizophrenia research and treatment,0 -gastroenterology research,0 -international journal of cardiovascular research,0 -musculoskeletal surgery,0 -open journal of obstetrics and gynecology,0 -open journal of clinical diagnostics,0 -journal of biomedical science and engineering,0 -international journal of emergency medicine,1 -plastic and reconstructive surgery : global open,1 -literacy information and computer education journal,0 -journal of perspectives in applied academic practice,0 -studia vernacula,0 -finnish business review,0 -socialiniai tyrimai,0 -american journal of nursing science,0 -journal of marketing perspectives,0 -universal journal of applied science,0 -eai endorsed transactions on serious games,0 -asian journal of humanities and social studies,0 -kome,1 -advances in orthopedic surgery,0 -cardiovascular endocrinology,1 -educational alternatives,0 -profilaktičeskaâ i kliničeskaâ medicina,0 -"vaasan ammattikorkeakoulu, university of applied sciences publications c : other publications",0 -environmental engineering,0 -asia-pacific journal of cooperative education,1 -"innovative infotechnologies for science, business and education",0 -international journal of computers and communications,0 -"international journal of systems applications, engineering & development",0 -proceedings of international conference on asia pacific business innovation technology,0 -scieconf,0 -"language, individual and society",0 -eurodyn,0 -world review of political economy,1 -spectral analysis review,0 -lapin ammattikorkeakoulun julkaisuja,0 -european quality assurance forum papers and presentations,0 -fukui kenritsu kyouryuu hakubutsukan kiyou,1 -journal of climatology,0 -lesnoe hozâjstvo,0 -iufro world series,0 -terrestrial arthropod reviews,0 -julius-kühn-archiv,0 -comrec studies on environment and development,0 -land,1 -planet@risk,0 -sosiohumanika,0 -indian journal of scientific research and technology,0 -educare,0 -open journal of animal sciences,0 -journal of livestock science,0 -vavilovskoe obsestvo genetikov i selekcionerov,0 -journal of chemical metrology,0 -izvestiia russkogo geograficheskogo obshchestva,0 -journal of behavioral addictions,1 -jama surgery,3 -journal of hospital administration,0 -plastic and aesthetic research,0 -orthopaedic journal of sports medicine,1 -jmm case reports,1 -new microbes and new infections,0 -current anesthesiology reports,1 -open ophtalmology journal,0 -chinese journal of pediatrics,0 -clinical medicine insights : reproductive health,0 -"heart, lung and vessels",0 -metsähallituksen luonnonsuojelujulkaisuja : sarja a,0 -journal of medical microbiology & diagnosis,0 -current cardiology reviews,0 -autoimmune diseases,1 -case reports in orthopedics,0 -international journal of cancer therapy and oncology,0 -cesko-slovenska patologie a soudni lekarstvi,0 -open diabetes journal,0 -revista española de cardiología,0 -plastic surgery international,0 -clinical medicine insights : oncology,1 -canadian journal of clinical pharmacology,0 -world journal of cardiovascular diseases,0 -hospital imaging & radiology europe,0 -european journal of humour research,1 -sage open medicine,0 -the lancet global health,3 -international conference an enterprise odyssey,0 -east european politics,2 -kansallinen itämeri-tutkijoiden foorumi,0 -international workshop on knowledge management,0 -"international conference on modeling, simulation and visualization methods",0 -international symposium on fundamentals of electrical engineering,0 -triennial conference of the dlm forum,0 -international conference on building and exploring web based environments,0 -the nordic africa days biennial conference,0 -"international scientific conference theory, research and education in nursing",0 -international workshop on micropiles,0 -"international conference on communication, media, technology and design",0 -worldwide microsoft dynamics academic preconference,0 -international road weather conference,0 -baltic sea region cultural heritage forum,0 -annual swedish phonetics conference,0 -international conference physics teaching in engineering education,0 -international teacher education conference,0 -"international conference on computer science, computer engineering, and social media",0 -travel and tourism research association annual international conference,0 -european society for engineering education mathematics working group seminar,0 -australasian universities building education association conference,0 -congreso internacional sobre aplicación de tecnologías de la información y comunicaciones avanzadas,0 -european workshop on structural health monitoring,0 -agricultural economics society annual conference,0 -international conference on life cycle assessment of food,0 -annual conference of the austrian society of agricultural economics,0 -annual neurofibromatosis conference,0 -european neurofibromatosis meeting,0 -european academy of dermatology and venereology congress,0 -tutkimuksia ja raportteja - mikkelin ammattikorkeakoulu. a,0 -karelia-ammattikorkeakoulun julkaisuja a : tutkimuksia,0 -lut scientific and expertise publications : tutkimusraportit,0 -suomen lääkärilehti. eripainos,1 -point of care,0 -acta neuropsychologica,0 -mammal research,1 -journal of arrhythmia,1 -journal of endometriosis and pelvic pain disorders,1 -journal of multiple sclerosis,0 -annual meeting of the american association for cancer research,0 -annual meeting of the european society for blood and marrow transplantation,0 -annual meeting of the international continence society,0 -"biennial conference of the association for common european nursing diagnoses, interventions and outcomes",0 -munuaissairaanhoitaja-päivät,0 -"optical molecular probes, imaging and drug delivery",0 -pohjanmaan terveystieteiden päivät,0 -open mathematics,1 -archives and records,3 -"human service organizations : management, leadership & governance",1 -sociální práce,1 -journal on baltic security,1 -international conference on advanced cognitive technologies and applications,0 -international keystone conference,1 -proceedings of the acm sigchi symposium on engineering interactive computing systems,1 -acm transactions on management information systems,1 -ieee world forum on internet of things,1 -international journal of secure software engineering,1 -intelligent decision technologies,1 -bulletin of the european association for theoretical computer science,0 -sustainable computing,1 -international work-conference on bioinformatics and biomedical engineering,0 -ieee magnetics letters,1 -journal of photonics for energy,1 -cogent physics,1 -materials today : proceedings,1 -geodesy and cartography,1 -cogent environmental science,1 -cogent geoscience,0 -international journal of cartography,1 -neobiota,1 -cogent biology,1 -madagascar conservation and development,1 -mycobiota,0 -virus evolution,1 -archive of mechanical engineering,1 -3d printing and additive manufacturing,1 -case studies in nondestructive testing and evaluation,1 -international journal of vehicle performance,1 -glass structures and engineering,1 -applied sciences,1 -flexible and printed electronics,2 -procedia manufacturing,1 -journal of bio- and tribo-corrosion,1 -sustainable production and consumption,2 -toxicology reports,1 -tieteellinen tutkimus ortonin julkaisusarja a,0 -journal of diabetes and metabolism,0 -case reports in ophthalmology,1 -movement and sport sciences,1 -peer-reviewed c-crcs volume,0 -current forestry reports,1 -cogent food & agriculture,1 -cogent business & management,1 -vestnik sankt-peterburgskogo universiteta : seriâ 8 : menedzment,0 -innovation and supply chain management,0 -international journal of information systems and project management,1 -journal of strategic contracting and negotiation,1 -global strategy journal,2 -journal of games criticism,1 -journal of research in gender studies,1 -connections,1 -journal on the art of record production,1 -feminist media histories,1 -cogent social sciences,0 -the journal of social media in society,1 -social media + society,2 -hungarian educational research journal,1 -cogent psychology,1 -international journal of stem education,1 -the international journal of critical pedagogy,1 -journal of research in stem education,1 -australasian journal of technology education,1 -measuring behavior,0 -autonómia és felelosség,0 -global journal of animal law,1 -journal of resistance studies,1 -international journal of comparative and applied criminal justice,1 -journal of conflict and security law,1 -journal on the use of force and international law,1 -quaker studies,1 -research on children and social interaction,1 -vestnik tomskogo gosudarstvennogo universiteta : filologija,1 -intertexts,1 -anais do colóquio de moda,1 -technoetic arts,1 -transnational cinemas,1 -ecozon@,1 -cogent arts & humanities,1 -journal of the african literature association,1 -persona studies,1 -bridges conference proceedings,1 -journal of mathematics and the arts,1 -iara,1 -gamevironments,0 -big data & society,2 -athens journal of history,0 -journal of urban cultural studies,1 -quaestio rossica,1 -journal of service theory and practice,1 -jama dermatology,2 -ieee global communications conference,1 -esaim : proceedings and surveys,1 -journal of advances in humanities,0 -china summer workshop on information management,0 -international conference on higher education advances,0 -international conference on recent trends in computer science and electronics,0 -international conference on green computing and engineering technologies,0 -fashion colloquia,0 -latin american computing conference,0 -ebiomedicine,1 -industrielle beziehungen,1 -nordost-archiv,0 -mitteilungen der schweizerischen entomologischen gesellschaft,1 -scientia forestalis,0 -acarina,0 -new contree,1 -the phonetician,1 -warasan prachakron lae sangkhom,0 -european journal of ecology,1 -us-china law review,0 -filosofia e questioni pubbliche,1 -tate papers,1 -nordic studies in pragmatism,1 -lecture notes in geoinformation and cartography,1 -decolonization,1 -international journal of information technologies and systems approach,0 -journal of artificial general intelligence,1 -rajshahi university law journal,0 -journal of movement disorders,0 -international journal of computational methods and experimental measurements,0 -icsid review,1 -london review of international law,1 -jsrp paper,0 -language and sociocultural theory,1 -"bmc sports science, medicine & rehabilitation",1 -nursing open,1 -metals,1 -cahiers mondes anciens,1 -the journal of happiness and well-being,1 -the edgar allan poe review,1 -medical science educator,1 -journal of international students,1 -siam/asa journal on uncertainty quantification,1 -international journal of composite materials,0 -critical african studies,1 -"journal of cachexia, sarcopenia and muscle",2 -transactions on computational collective intelligence,1 -progress in earth and planetary science,1 -fashion and textiles,1 -metaphor and the social world,1 -anais do encontro nacional de pesquisa em moda,0 -journal of cyber security and mobility,1 -journal of ict standardisation,1 -baltic journal of modern computing,0 -austral comunicación,1 -cultural and religious studies,0 -structural dynamics,2 -refugee watch : a south asian journal on forced migration,0 -entrepreneurial business and economics review,1 -journal of geotechnical and transportation engineering,0 -imag,1 -international journal of transmedia literacy,0 -emergency medicine,0 -international comparative jurisprudence,1 -international journal of translational science,1 -journal of psychology & psychotherapy,0 -"nanoscale systems : mathematical modeling, theory and applications",1 -journal of law and the biosciences,1 -bmj open sport & exercise medicine,1 -visual methodologies,1 -materials research express,1 -climate risk management,2 -stasis,1 -argumenta,1 -international workshops on matrices and statistics,0 -annali italiani di chirurgia,0 -cor et vasa,0 -geographica helvetica,1 -kami pa gikyoshi,0 -acta amazonica,1 -social science review,1 -livestock research for rural development,1 -wies i rolnictwo,0 -international journal for housing science and its applications,0 -journal of special education technology,1 -ocean yearbook,1 -knygotyra,1 -revista española de geriatría y gerontología,1 -edukacja,1 -journal of the chinese institute of engineers,1 -clinician and technology,0 -international journal of adolescent medicine and health,1 -guisuanyan xuebao,0 -annales universitatis scientiarum budapestinensis de rolando eötvös nominatae : sectio mathematica,0 -mishkan,0 -socialism and democracy,1 -anglican and episcopal history,1 -werkstatt geschichte,0 -chemkon,1 -spectroscopy europe,0 -"research journal of pharmaceutical, biological and chemical sciences",0 -jisuanji gongcheng,0 -jisuanji yingyong,0 -journal of mathematical study,0 -methods of functional analysis and topology,1 -journal of pain research,1 -nature and science of sleep,1 -clinical medicine insights : endocrinology and diabetes,1 -rorschachiana,0 -teorie vedy,1 -bulletin of the maritime institute in gdansk,0 -les champs de mars,1 -b'lgarsko spisanie za obsestveno zdrave,0 -hirundo,0 -review of sociology of the hungarian sociological association,0 -t.a.s.k. quarterly,0 -"religion, staat, gesellschaft",1 -fme transactions,1 -serbian journal of management,1 -nursing older people,0 -human genomics,1 -biodiversity,1 -sino-us english teaching,0 -the arabidopsis book,1 -chaos and complexity letters,1 -the south african journal of clinical nutrition,0 -translational behavioral medicine,1 -tobacco induced diseases,1 -medi@ções,1 -kalbu studijos,1 -frontiers in psychiatry,1 -guo jia jiao yu xing zheng xue yuan xue bao,1 -shanghai jiaotong daxue xuebao : yixue ban,0 -mi?dzy orygina?em a przek?adem,1 -journal of intellectual property law and practice,1 -african and black diaspora,1 -international journal of management and network economics,1 -journal of international political theory,1 -international journal of knowledge engineering and data mining,0 -hand therapy,1 -european annals of allergy and clinical immunology,1 -"discrete mathematics, algorithms, and applications",1 -international economics letters,0 -international journal on biomedicine and healthcare,0 -brazilian oral research,1 -taiwan gongshang guanli xuebao,0 -armenian folia anglistika,0 -journal of social inclusion,0 -south-east european forestry,0 -croatian operational research review,0 -hrvatska i komparativna javna uprava,0 -europäische zeitschrift für arbeitsrecht,0 -earth system science data,2 -clinical epigenetics,1 -tropical and subtropical agroecosystems,0 -the open neurology journal,0 -the open psychology journal,0 -micro and nanosystems,1 -trials in vaccinology,0 -akademisk kvarter,1 -journal of gambling issues,1 -culture and local governance,1 -journal of clinical gynecology and obstetrics,0 -"optoelectronics, instrumentation, and data processing",0 -journal of transport and land use,1 -partner abuse,1 -international journal of agricultural and environmental information systems,0 -international journal of strategic decision sciences,0 -international journal of it/business alignment and governance,1 -world journal of diabetes,1 -international journal on interactive design and manufacturing,1 -revista tempos e espaços em educação,1 -coolabah,1 -geoscientific model development discussions,0 -nanotechnologies in russia,0 -journal of siberian federal university : humanities and social sciences,1 -clinical and translational medicine,1 -european clinical respiratory journal,1 -upphandlingsrättslig tidskrift,0 -international journal of genetics and molecular biology,0 -the quarterly journal of finance,1 -social welfare : interdisciplinary approach,0 -"business, management and education",0 -molecular autism,1 -journal of research in interactive marketing,1 -journal of popular television,1 -journal of nutritional science,1 -biomedical reports,1 -energy science & engineering,1 -kurdish studies,1 -f1000 prime,0 -inorganic chemistry frontiers,2 -scientific data,1 -bmj open diabetes research and care,1 -international journal of supply chain and operations resilience,0 -acta crystallographica section f : structural biology communications,1 -open heart,1 -journal of science and technology policy management,1 -bmj open gastroenterology,1 -iza world of labor,1 -nature plants,3 -bmc nutrition,1 -npj primary care respiratory medicine,1 -health psychology open,1 -esc heart failure,1 -npj aging and mechanisms of disease,1 -nordic journal of nursing research,1 -neuroscience of consciousness,1 -acta radiologica open,1 -musicology today,1 -eastern journal of european studies,0 -theoretical and practical research in economic fields,0 -african journal of primary health care & family medicine,1 -animals,1 -sovremennye tehnologii v medicine,1 -problemy razvitiâ territorii,1 -suicidology online,1 -in esse : english studies in albania,0 -russian journal of genetics : applied research,0 -nanomaterials,1 -fibers,1 -herito,0 -filoteknos,0 -mathematical sciences letters,0 -journal of astronomy and space sciences,1 -international soil and water conservation research,1 -revue théologique des bernardins,0 -international journal of biodiversity and conservation,0 -journal of clinical & experimental ophthalmology,0 -journal of analytical & bioanalytical techniques,0 -journal of clinical & cellular immunology,0 -journal of plant pathology & microbiology,0 -journal of physical science and application,0 -atmospheric and climate science,0 -journal of clinical & experimental pathology,0 -current nutrition reports,1 -american journal of entrepreneurship,0 -current genetic medicine reports,0 -advancements in genetic engineering,0 -international journal of advances in psychology,1 -journal for nurses in professional development,0 -international electronic journal of nuclear safety and simulation,0 -european procurement & public private partnership law review,1 -european networks law and regulation quarterly,0 -drug safety : case reports,0 -journal of remanufacturing,1 -preventive medicine reports,1 -water resources and economics,1 -translational proteomics,1 -eupa open proteomics,1 -sensing and bio-sensing research,1 -journal of high energy astrophysics,1 -big data research,1 -schizophrenia research : cognition,1 -world journal of pharmacology,1 -plants,1 -climate,1 -atiner's conference paper series,0 -proscholiki & scholiki ekpaideusi,0 -international journal of pharma medicine and biological sciences,0 -economics and policy of energy and the environment,0 -frontiers in surgery,1 -frontiers in ict,0 -journal of horticultural research,0 -simulation notes europe,1 -municipalnoe obrazovanie : innovacii i èksperiment,0 -resources and technology,0 -erj open research,1 -eai endorsed transactions on cognitive communications,0 -journal of diabetes research,1 -advances in nursing,0 -"global journal of biology, agriculture and health sciences",0 -journal of scientometric research,1 -international journal on recent and innovation trends in computing and communication,0 -journal of advances in medical education and professionalism,0 -advances in computer science : an international journal,0 -journal of education and training studies,0 -molecular genetics & genomic medicine,1 -international journal of sustainability policy and practice,0 -"journal of women's health, issues & care",0 -family medicine & medical science research,0 -knowledge cultures,0 -journal of building construction and planning research,0 -science journal of public health,0 -gene technology,0 -journal of plant biochemistry & physiology,0 -contention,1 -journal of nuclear engineering and radiation science,1 -aims energy,1 -european offroads of social science,0 -evropský politický a právní diskurz,0 -journal of the international society for orthodox church music,1 -kulttuuripolitiikan tutkimuksen vuosikirja,1 -research and science today supplement,0 -international journal of managerial studies and research,0 -recent advances in dna & gene sequencing,1 -transportation research procedia,1 -journal of energy storage,2 -computational condensed matter,0 -data in brief,1 -materials today communications,1 -"alzheimer's & dementia : diagnosis, assessment & disease monitoring",1 -international journal of cardiology : heart & vasculature,1 -jmir rehabilitation and assistive technologies,2 -learning,1 -african journalism studies,1 -science advances,3 -"journal of communication disorders, deaf studies & hearing aids",0 -aerospace medicine and human performance,1 -neurology : genetics,1 -journal of nature and science,0 -journal of epidemiological research,0 -annals of nursing and practice,0 -psychology and cognitive sciences,0 -journal of inspiration economy,0 -open medicine,1 -international research journal of engineering and technology,0 -literary geographies,1 -cell systems,2 -csid journal of infrastructure development,0 -international journal of e-learning and educational technologies in the digital media,0 -journal of biomedical photonics & engineering,0 -vetus testamentum et hellas,1 -encatcscholar,0 -jacobs journal of pulmonology,0 -international journal of alcohol and drug research,1 -journal of global strategic management,0 -"international journal of medical, health, biomedical, bioengineering and pharmaceutical engineering",0 -journal of modern power systems and clean energy,1 -education for entrepreneurship : e4e,0 -politics and animals,0 -the cryosphere discussions,0 -screen sound,1 -pensar enfermagem,0 -flux,0 -neoreviews,0 -current clinical pharmacology,1 -journal of oncology,0 -expert review of endocrinology & metabolism,1 -fungal biology reviews,1 -fibrogenesis & tissue repair,0 -therapeutic advances in medical oncology,1 -admet & dmpk,1 -"zeitschrift für evidenz, fortbildung und qualität im gesundheitswesen",1 -nongchon jido wa gaebal,0 -international journal of intelligent computing research,0 -pathogens and disease,1 -sexual medicine reviews,1 -united european gastroenterology journal,1 -cells,1 -tremor and other hyperkinetic movements,1 -advanced science,1 -current opinion in food science,1 -the lancet psychiatry,3 -journal of governance and regulation,0 -scandinavian journal of child and adolescent psychiatry and psychology,1 -clinical and translational imaging,1 -journal of epileptology,1 -trace,1 -aims molecular science,1 -change and adaptation in socio-ecological systems,1 -scripta abonesia,0 -international symposium on forestry mechanization,0 -liikenneviraston tutkimuksia ja selvityksiä,0 -tampereen historiallisen seuran julkaisuja,0 -raja- ja merivartiokoulun julkaisut,0 -turkuseuran julkaisuja,0 -verslagen van het centrum voor genderstudies - u gent,0 -international journal of excellence in education,1 -cultural science,0 -international journal of agriculture and crop sciences,0 -biorisk,1 -computational cognitive science,1 -large-scale assessments in education,1 -pain research and treatment,1 -strata,1 -south african journal of philosophy,1 -south african journal of science,1 -south african journal of surgery,1 -south african journal of wildlife research,1 -south african journal on human rights,1 -south african law journal,1 -south african statistical journal,1 -south asia economic journal,1 -south asia research,1 -south asia-journal of south asian studies,1 -south asian popular culture,1 -south atlantic quarterly,3 -south dakota review,1 -south east asia research,1 -south european society and politics,1 -southeast asian bulletin of mathematics,1 -southeast asian journal of tropical medicine and public health,1 -southeast european and black sea studies,1 -southeastern naturalist,1 -southerly: a review of australian literature,1 -southern african humanities,0 -southern african journal of hiv medicine,1 -southern african linguistics and applied language studies,1 -southern california law review,1 -southern cultures,1 -southern economic journal,1 -southern forests,1 -southern journal of applied forestry,1 -southern journal of philosophy,3 -southern literary journal,1 -southern medical journal,1 -southern quarterly: a journal of the arts in the south,1 -southwestern entomologist,1 -southwestern historical quarterly,0 -southwestern mass communication journal,1 -southwestern naturalist,1 -soviet and post soviet review,2 -sovremennaja evropa,1 -soziale systeme: zeitschrift fur soziologische theorie,1 -soziale welt: zeitschrift fur sozialwissenschaftliche forschung und praxis,1 -space and culture,2 -space and polity,1 -space communications,1 -space policy,1 -space science reviews,3 -space weather: the international journal of research and applications,1 -spanish in context,2 -spanish journal of agricultural research,1 -spanish journal of psychology,1 -spatial cognition and computation,1 -spatial economic analysis,1 -spe production and operations,1 -spe reservoir evaluation and engineering,1 -special papers of the geological society of america,1 -special papers in palaeontology series,1 -special publication: royal numismatic society,1 -spectrochimica acta part a: molecular and biomolecular spectroscopy,1 -spectrochimica acta part b: atomic spectroscopy,1 -spectroscopy,1 -spectroscopy and spectral analysis,1 -spectroscopy letters,1 -spectroscopy: an international journal,1 -spectrum hungarologicum,1 -speculum: a journal of medieval studies,3 -speech communication,2 -spektrum der augenheilkunde,1 -spenser studies,1 -visual communications and image processing,1 -spiegel der letteren,2 -spiel: siegener periodicum zur internationalen empirischen literaturwissenschaft,1 -spill science and technology bulletin,1 -spinal cord,1 -spine,3 -spine journal,2 -spiritus: a journal of christian spirituality,1 -spixiana,1 -sport education and society,2 -sport history review,1 -sport in history,2 -sport in society,1 -sport management review,1 -sport marketing quarterly,1 -sport psychologist,1 -"sport und gesellschaft: zeitschrift fur sportsoziologie, sportphilosophie, sportokonomie, sportgeschichte",1 -"sport, ethics and philosophy",1 -sportpadagogik,1 -sports biomechanics,1 -sports engineering,1 -sports medicine,3 -sports medicine and arthroscopy review,1 -sports medicine standards and malpractice reporter,1 -sportscience,1 -sportunterricht,1 -sportverletzung-sportschaden,1 -sportwissenschaft,1 -sportzeit,1 -sprache im technischen zeitalter,1 -sprache: zeitschrift fur sprachwissenschaft,1 -sprache-stimme-gehor,1 -sprachkunst: beitrage zur literaturwissenschaft,1 -sprachtheorie und germanistische linguistik,1 -sprachwissenschaft,1 -sprak och stil: tidskrift for svensk sprakforskning,2 -sprawozdania archeologiczne,1 -spreadsheets in education,1 -spring university: changing education in a changing society,1 -spring : tidskrift for moderne dansk litteratur,1 -springer monographs in mathematics,1 -springer tracts in advanced robotics,1 -springer tracts in modern physics,1 -sprogforum,1 -sqs : suomen queer-tutkimuksen seuran lehti,1 -"sša-èkonomika, politika, ideologiâ",1 -st petersburg mathematical journal,1 -st. nersess theological review,1 -stadion,1 -stadsgeschiedenis,1 -stahl und eisen,1 -stal: sciences et techniques de lanimal de laboratoire,1 -stand,1 -standort,1 -stanford encyclopedia of philosophy,2 -stanford journal of international law,1 -stanford law review,3 -stapp car crash journal,1 -starch-starke,1 -stata journal,1 -state archives of assyria bulletin,1 -state politics and policy quarterly,1 -statistica,1 -statistica e applicazioni,1 -statistica applicata,1 -statistica neerlandica,1 -statistica sinica,2 -statistical analysis and data mining,1 -statistical applications in genetics and molecular biology,1 -statistical inference for stochastic processes,1 -statistical journal of the iaos,1 -statistical methodology,1 -statistical methods and applications,1 -statistical methods in medical research,3 -statistical modelling,1 -statistical papers,1 -statistical science,2 -statistics,1 -statistics and probability letters,1 -statistics and computing,2 -statistics and its interface,1 -statistics and risk modeling,1 -statistics education research journal,1 -statistics in medicine,2 -statistics in transition new series,1 -statistics surveys,1 -stato e mercato,1 -statsvetenskaplig tidskrift,1 -statute law review,1 -steel and composite structures,1 -steel grips journal of steel and related materials,1 -steel in translation,1 -steel research international,1 -stem cell research,1 -stem cells,3 -stem cells and development,1 -stemma: sciences techniques et methodologies modernes appliquees à lantiquite,1 -stereotactic and functional neurosurgery,1 -steroids,1 -stochastic analysis and applications,1 -stochastic environmental research and risk assessment,1 -stochastic modelling and applications,1 -stochastic models,1 -stochastic processes and their applications,2 -stochastics and dynamics,1 -stochastics: an international journal of probability and stochastic processes,1 -stockholm slavic studies,1 -storia dell arte,1 -storia della storiografia,1 -storica,1 -strabismus,1 -strahlentherapie und onkologie,1 -strain,1 -strani jezici,1 -strategic analysis of the institute for defence studies and analysis,2 -strategic entrepreneurship journal,3 -strategic management journal,3 -strategic organization,2 -strategic survey,1 -strategy and leadership,1 -stratigraphy,1 -stratigraphy and geological correlation,1 -strength and conditioning journal,1 -strength of materials,1 -"strength, fracture and complexity",1 -stress and health,1 -stress: the international journal on the biology of stress,1 -strojarstvo,1 -strojniski vestnik-journal of mechanical engineering,1 -stroke,3 -structural and multidisciplinary optimization,2 -structural change and economic dynamics,1 -structural chemistry,1 -structural concrete,1 -structural control and health monitoring,1 -structural design of tall and special buildings,1 -structural engineer,1 -structural engineering and mechanics,1 -structural engineering international: journal of the international association for bridge and structural engineering,1 -structural equation modeling: a multidisciplinary journal,1 -structural health monitoring: an international journal,1 -structural safety,3 -structure,2 -structure and bonding,1 -structure and infrastructure engineering,1 -strumenti critici,1 -studi classici e orientali,1 -studi danteschi,1 -studi di filologia italiana,1 -studi di grammatica italiana,1 -studi di lessicografia italiana,1 -studi e materiali di storia delle religioni,1 -studi e problemi di critica testuale,1 -studi e saggi linguistici,1 -studi emigrazione,1 -studi epigrafici e linguistici sul vicino oriente antico,1 -studi etruschi,1 -studi finno-ugrici,1 -studi francesi,1 -studi italiani di filologia classica,1 -studi italiani di linguistica teorica e applicata,1 -studi linguistici italiani,1 -studi medievali,2 -studi micenei ed egeo anatolici,1 -studi musicali,1 -studi novecenteschi: rivista semestrale di storia della letteratura italiana contemporanea,1 -studi petrarcheschi,1 -studi piemontesi,1 -studi romani,1 -studi secenteschi,1 -studi storici,1 -studi tassiani,1 -studi verdiani,1 -studia anglica posnaniensia: an international review of english studies,1 -studia archaeologica ostrobotniensia,1 -studia canonica,1 -studia celtica,1 -studia celtica fennica,1 -studia comeniana et historica,1 -studia et documenta historiae et iuris,1 -studia etymologica cracoviensia,1 -studia fennica ethnologica,2 -studia fennica linguistica,2 -studia fennica litteraria,2 -studia geophysica et geodaetica,1 -studia grammatica,1 -studia hibernica,1 -studia historica lundensia,1 -studia historica septentrionalia,1 -studia historica slovenica,1 -"studia historica, historia medieval",1 -"studia historica, historia moderna",1 -studia humaniora ouluensia,1 -studia in veteris testamenti pseudepigrapha,1 -studia iranica,1 -studia islamica,3 -studia islandica,1 -studia judaica,1 -studia leibnitiana,1 -studia linguistica,2 -studia linguistica germanica,1 -studia liturgica,2 -studia logica,1 -studia lusitanica,1 -studia mathematica,1 -studia missionalia,1 -studia monastica,1 -studia moralia,1 -studia multiethnica upsaliensia,1 -studia musicologica,1 -studia musicologica norvegica,1 -studia neoaristotelica,1 -studia neophilologica,1 -studia nordica,1 -studia oecumenica,1 -studia orientalia,1 -studia patristica,2 -studia phaenomenologica,1 -studia philonica annual,1 -studia philosophica estonica,1 -studia semiotica: series practica,1 -studia psychologica,1 -studia romanica et anglica zagrabiensia,1 -studia romanica posnaniensia,1 -studia romanica upsaliensia,1 -studia rosenthaliana,1 -studia scientiarum mathematicarum hungarica,1 -studia slavica,1 -studia socjologiczne,1 -studia spinozana,1 -studia theologica : nordic journal of theology,3 -studia theologica,1 -studia turcologica cracoviensia,1 -studia universitatis babeş-bolyai : chemia,0 -studia uralica upsaliensia,1 -studia uralo-altaica,1 -studia z filologii polskiej i slowiaoskiej,1 -studica historica upsaliensis: underserie av: acta universitatis upsaliensis,1 -studien und texte zu antike und christentum,2 -studien zur altagyptischen kultur,1 -studien zur aussereuropaischen christentumsgeschichte,1 -studien zur deutschen grammatik,1 -studien zur osterreichischen philosophie,1 -studien zur sachsenforschung,1 -studier fra sprog- og oldtidsforskning,1 -studier i nordisk filologi,1 -studies for the learning society,1 -studies in 20th and 21th century,1 -studies in african linguistics,2 -studies in american fiction,2 -studies in american indian literatures,2 -studies in american jewish literature,1 -studies in american naturalism,1 -studies in american political development,1 -studies in ancient magic and divination,2 -studies in applied mathematics,1 -studies in art education,2 -studies in asian art and archaeology,1 -studies in bibliography,1 -studies in bilingualism,1 -studies in canadian literature-etudes en litterature canadienne,1 -studies in central european histories,1 -studies in christian ethics,2 -studies in christian mission,1 -studies in church history,1 -studies in communication sciences,1 -studies in comparative and international education,1 -studies in comparative international development,2 -studies in conflict and terrorism,1 -studies in conservation,2 -studies in contemporary islam,1 -studies in contemporary phenomenology,1 -studies in continuing education,1 -studies in corpus linguistics,1 -studies in critical social sciences,1 -studies in documentary film,2 -studies in east european thought,1 -studies in educational evaluation,1 -studies in eighteenth century culture,1 -studies in english literature 1500-1900,2 -"studies in ethics, law, and technology",1 -studies in ethnicity and nationalism,1 -studies in eu external relations,1 -studies in european cinema,2 -studies in family planning,1 -studies in french cinema,1 -studies in functional and structural linguistics,1 -studies in gender and sexuality,1 -studies in generative grammar,1 -studies in health technology and informatics,1 -studies in higher education,3 -studies in spanish & latin-american cinemas,1 -studies in history,1 -studies in history and philosophy of modern physics,2 -studies in history and philosophy of science part a,3 -studies in history and philosophy of biological and biomedical sciences,2 -studies in hogg and his world,1 -studies in iconography,1 -studies in informatics and control,1 -studies in interactional sociolinguistics,1 -studies in international institutional dynamics,1 -studies in interreligious dialogue,1 -studies in jewish history and culture,1 -studies in language,3 -studies in language variation,1 -studies in latin american popular culture,1 -"studies in law, politics, and society",1 -studies in linguistics of the volga region,1 -"studies in logic, grammar and rhetoric",1 -studies in musical theatre,1 -studies in mycology,3 -studies in nonlinear dynamics and econometrics,1 -studies in philology,2 -studies in philosophy and education,2 -studies in popular culture,1 -studies in qing history,1 -studies in reformed theology,2 -"studies in religion, secular beliefs and human rights",1 -studies in religion-sciences religieuses,1 -studies in romanticism,3 -studies in russian and soviet cinema,1 -studies in science education,3 -studies in second language acquisition,3 -studies in semitic languages and linguistics,1 -studies in short fiction,1 -studies in slavic and general linguistics,1 -studies in south asian film and media,1 -studies in spirituality,1 -studies in surface science and catalysis,1 -studies in symbolic interaction,1 -studies in textile and costume history,1 -studies in the age of chaucer,2 -studies in the aramaic interpretation of scripture,1 -west 86th,2 -studies in the education of adults,1 -studies in the history of art,1 -studies in the history of christian traditions,2 -studies in the history of gardens and designed landscapes,1 -studies in the history of the language sciences,1 -studies in the humanities,1 -studies in the literary imagination,2 -studies in the novel,3 -studies in travel writing,2 -"studies in variation, contacts and change in english",1 -studies in world christianity,1 -studies in world language problems,1 -studies of religion in africa,1 -studies on ethno-medicine,0 -studies on language acquisition,1 -studies on neotropical fauna and environment,1 -studies on russian economic development,1 -studies on the law of treaties,1 -studies on the texts of the desert of juda,1 -studii si cercetari de istorie veche si arheologie,1 -studii si cercetari lingvistice,1 -studying teacher education,1 -style,2 -subjectivity: international journal of critical psychology,1 -substance,3 -substance abuse,1 -substance use and misuse,1 -sudhoffs archiv,1 -sud-ouest europeen,1 -suffolk institute of archaeology and history,1 -sugar tech,1 -sugia sprache und geschichte in afrika,1 -suhayl,1 -suicide and life-threatening behavior,1 -sumer,1 -suo,0 -suomalaisen kirjallisuuden seuran toimituksia,2 -suomalaisen lakimiesyhdistyksen julkaisuja a-sarja,1 -suomalais-ugrilaisen seuran aikakauskirja,1 -suomen antropologi,2 -suomen eläinlääkärilehti,1 -suomen itämaisen seuran suomenkielisiä julkaisuja,1 -suomen kirkkohistoriallisen seuran vuosikirja,1 -lääkärilehti,1 -suomen muinaismuistoyhdistyksen aikakauskirja,1 -suomen museo,1 -suomen riista,1 -suomen sukututkimusseuran vuosikirja,1 -suomen tekniikan historia,1 -suomen tilastoseuran vuosikirja,0 -suomen urheiluhistoriallisen seuran vuosikirja,1 -suomi,1 -superconductor science and technology,1 -superlattices and microstructures,1 -supply chain forum: an international journal,1 -supply chain management: an international journal,2 -support for learning,1 -supportive care in cancer,1 -supramolecular chemistry,1 -supreme court economic review,1 -supreme court review,1 -surface and coatings technology,2 -surface and interface analysis,1 -surface engineering,1 -surface engineering and applied electrochemistry,1 -surface review and letters,1 -surface science,1 -surface science reports,3 -surface science spectra,1 -surgeon: journal of the royal colleges of surgeons of edinburgh and ireland,1 -surgery,2 -surgery for obesity and related diseases,2 -surgery today,1 -surgical and radiologic anatomy,1 -surgical clinics of north america,1 -surgical endoscopy and other interventional techniques,2 -surgical infections,1 -surgical innovation,1 -surgical laparoscopy endoscopy and percutaneous techniques,1 -world neurosurgery,1 -surgical oncology clinics of north america,1 -surgical oncology,1 -surgical practice,1 -surrey archaeological collections,1 -surveillance and society,2 -survey methodology,1 -survey of ophthalmology,1 -survey research methods,1 -survey review,1 -surveys in geophysics,2 -survival,1 -sussex archaeological collections,1 -sustainability science,1 -"sustainability: science, practice, and policy",1 -sustainable development,2 -sustainable development law and policy,0 -suvremena lingvistika,1 -swedish dental journal,1 -svensk botanisk tidskrift,1 -svensk exegetisk aarsbok,1 -svensk idrottsforskning,1 -svensk juristtidning,1 -svensk missionstidskrift,1 -svensk religionshistorisk arsskrift,1 -svensk teologisk kvartalskrift,1 -svensk tidskrift för musikforskning,2 -svenska landsmål och svenskt folkliv,1 -svenska linnesallskapets årsskrift,1 -svenskans beskrivning,1 -swift studies,1 -swiss journal of geosciences,1 -swiss medical weekly,1 -swiss political science review,1 -sws-rundschau,1 -sydowia,1 -sydsvenska medicinhistoriska sallskapets arsskrift,1 -sykepleien forskning,1 -syllecta classica,1 -symbiosis,1 -symbiosis: a journal of anglo-american literary relations,1 -symbolae botanicae upsalienses,1 -symbolae osloenses,1 -symbolic interaction,2 -symbolism: an international annual of critical aesthetics,1 -symmetry integrability and geometry: methods and applications,1 -symploke,1 -symposium of the international astronomical union,1 -"proceedings : international symposium on modeling, analysis, and simulation of computer and telecommunication systems",1 -annual acm symposium on parallelism in algorithms and architectures,2 -proceedings : symposium on reliable distributed systems,1 -symposium: a quarterly journal in modern literatures,1 -synapse,1 -synchrotron radiation news,1 -synlett,1 -syntax,2 -syntax and semantics,1 -synteesi,1 -synthese,3 -synthesis and reactivity in inorganic metal-organic and nano-metal chemistry,1 -synthesis philosophica,1 -synthesis,1 -synthesis: la plata,1 -synthesis: stuttgart,1 -synthetic communications,1 -synthetic metals,1 -syria,1 -system,2 -system dynamics review,1 -systematic and applied microbiology,1 -systematic biology,3 -systematic botany,1 -systematic entomology,2 -systematic parasitology,1 -systematics and biodiversity,1 -systemes de pensee en afrique noire,1 -systemic practice and action research,1 -systems and control letters,2 -systems biology in reproductive medicine,1 -systems engineering,1 -systems research and behavioral science,1 -"systems, signs and actions",1 -szazadveg,1 -szociologiai szemle,1 -t + d,1 -ta istorika,1 -taal- en tongval,1 -tabularia,1 -taidehistoriallisia tutkimuksia,2 -taiwanese journal of mathematics,1 -taiwanese journal of obstetrics and gynecology,1 -talanta,1 -tamara journal for critical organization inquiry,1 -tanap monographs on the history of asian-european interaction,1 -tanzanian journal of agricultural sciences,1 -tappi journal,1 -tarbiz,1 -targeted oncology,1 -target: international journal of translation studies,3 -tarim bilimleri dergisi-journal of agricultural sciences,1 -tautosakos darbai-folklore studies,1 -tax law review,1 -tax notes international,1 -tax policy and the economy,1 -taxon,2 -tbilisi mathematical journal,1 -tc: a journal of biblical textual criticism,1 -tce,1 -tdr,3 -teacher development,1 -teacher education and special education,1 -teacher education quarterly,1 -teachers and teaching: theory and practice,3 -teachers college record,1 -teaching and learning,1 -teaching and learning in medicine,1 -teaching and teacher education,3 -teaching artist journal,1 -teaching education,1 -die unterrichtspraxis / teaching german,1 -teaching history,1 -teaching in higher education,3 -teaching mathematics and computer science,1 -teaching mathematics and its applications,1 -teaching of psychology,1 -teaching philosophy,1 -teaching sociology,1 -teaching statistics,1 -teaching theology and religion,1 -teanga: journal of the irish association,1 -techne: la science au service de lhistoire de lart et des civilisations,1 -techne series,1 -techne: research in philosophy and technology,1 -technical bulletin: canadian conservation institute,1 -technical communication,1 -technical physics,1 -technical physics letters,1 -technikgeschichte,1 -technikatorteneti szemle,1 -techniques and culture,1 -techniques in coloproctology,1 -techniques in foot and ankle surgery,1 -techniques in hand and upper extremity surgery,1 -techniques in knee surgery,1 -techniques in orthopaedics,1 -techniques in shoulder and elbow surgery,1 -technological and economic development of economy,1 -technological forecasting and social change,3 -technology and conservation,1 -technology analysis and strategic management,1 -technology and change in history,1 -technology and culture,3 -technology and health care,1 -technology in cancer research and treatment,1 -technology in society,1 -"technology, pedagogy and education",1 -technometrics,2 -technovation,3 -tectonics,2 -tectonophysics,1 -tekniikan waiheita: teknik i tiden,1 -tekstil,1 -tekstil ve konfeksiyon,1 -teksty drugie,2 -tel aviv: journal of the institute of archaeology of tel aviv,2 -telecommunication systems,1 -telecommunications policy,2 -telematics and informatics,2 -teletraffic science and engineering,1 -television and new media,3 -television quarterly,1 -tellus series a: dynamic meteorology and oceanography,1 -tellus series b: chemical and physical meteorology,1 -telma,1 -telopea,1 -telos,1 -temas americanistas,1 -temenos,3 -tempo social,1 -tempo-niteroi,0 -temps modernes,1 -tenside surfactants detergents,1 -tenzone,1 -teologia y vida,1 -teologinen aikakauskirja,2 -teorema,1 -teoretičeskaâ i èksperimentalʹnaâ himiâ,0 -teoriâ i praktika ob?estvennogo razvitiâ,1 -teoria: rivista di filosofia,1 -teorija in praksa,1 -teoriya i praktika fizicheskoy kultury,1 -terapevticheskii arkhiv,1 -terceira margem,1 -terminologie et traduction,1 -terminologija,1 -terminology,2 -terminology and lexicography research and practice,1 -terra nova,1 -terra: maantieteellinen aikakauskirja,2 -terrain,1 -terrestrial atmospheric and oceanic sciences,1 -terrorism and political violence,2 -tertiary education and management,1 -tesl-ej,1 -tesol quarterly,2 -test,1 -testo a fronte,1 -testo: studi di teoria della letteratura e della critica,1 -tetrahedron,1 -tetrahedron letters,1 -tetrahedron : asymmetry,1 -tetsu to hagane: journal of the iron and steel institute of japan,1 -texas heart institute journal,1 -texas international law journal,1 -texas journal of science,1 -texas law review,2 -texas studies in literature and language,1 -text,1 -text und kontext: sonderreihe,1 -text und kritik,1 -text and talk,3 -text and performance quarterly,1 -nordic association for canadian studies text series,1 -text technology: a journal of computer text processing,1 -text und kontext,1 -text: kritische beitrage,1 -texte und untersuchungen zur geschichte der altchristlichen literatur,1 -texte zur kunst,1 -texte: revue de critique et de theorie litteraire,1 -textile history,2 -textile research journal,1 -textile: the journal of cloth and culture,1 -texto y contexto enfermagem,1 -texto!: textes et cultures,1 -textual practice,3 -tfms: tidskrift for mellanosternstudier,1 -thai journal of veterinary medicine,1 -thalamus and related systems,1 -thalassas,1 -"thamyris/intersecting: place, sex and race",1 -ieee international conference on networks,1 -the adam smith review,1 -the adhd report,1 -american journal of jurisprudence,1 -the american sociologist,1 -the arabist,1 -the atlantic world,1 -australasian journal of logic,1 -australian feminist law journal,1 -"baltic yearbook of communication, logic and cognition",1 -bible and critical theory,1 -the bible in ancient christianity,2 -the brill reference library of judaism,2 -the bryggen papers,1 -the business review : cambridge,0 -cambridge law journal,3 -peace research: the canadian journal of peace and conflict studies,1 -canadian journal of program evaluation,1 -journal of inklings studies,1 -the classical outlook: journal of the american classical league,1 -the cochrane library,1 -the columbia journal of european law,2 -the communication review,1 -comparatist,1 -the eighteenth-century novel,1 -the electronic british library journal,1 -electronic journal of academic and special librarianship,1 -electronic journal of information systems in developing countries,1 -estonian journal of english studies,1 -european journal of prosthodontics and restorative dentistry,1 -the european union review,1 -financial review,1 -finnish yearbook of international law,1 -the forensic examiner,1 -the gaskell society journal,1 -the hague journal of diplomacy,1 -haskins society journa l: studies in medieval history,1 -the health care manager,1 -the history of christian-muslim relations,2 -the humanistic psychologist,1 -the huntington library quarterly,2 -the icfai journal of derivatives markets,1 -the imp journal,1 -the indexer: journal of the society of indexers,1 -indian journal of chest diseases and allied sciences,1 -the industrial geographer,1 -international journal for technology in mathematics education,1 -international journal of architectural computing,2 -international journal of comparative labour law and industrial relations,2 -the international journal of cultural policy,3 -"international journal of environmental, cultural, economic and social sustainability",1 -international journal of human rights,1 -international journal of the history of sport,2 -the international scope review,1 -the international year book and statesmens whos who,1 -japanese economy: translations and studies,1 -journal for cultural and religious theory,1 -journal of transdisciplinary environmental studies,1 -journal of socio-economics,1 -journal of change management,1 -journal of ethics,2 -the journal of ethnology and folkloristics,2 -journal of health administration education,1 -journal of hospitality financial management,1 -journal of humanistic counseling,1 -journal of information systems,1 -journal of international maritime law,1 -journal of legislative studies,1 -journal of negro education,1 -journal of pastoral care and counseling: jpcc,1 -the journal of risk finance,1 -journal of social welfare and family law,2 -"the journal of social, evolutionary, and cultural psychology",1 -journal of water law,1 -journal of world intellectual property,1 -the journal of writing research,1 -the london journal of canadian studies,1 -marketing review,1 -the mathematica journal,1 -the mathematical scientist,1 -the mcneese review,1 -the medieval and early modern iberian world,1 -the medieval franciscans,1 -the medieval mediterranean,1 -mennonite quarterly review,1 -mental lexicon,1 -the michigan historical review,1 -the modern law review,3 -montana math enthusiast,1 -moving image,1 -new review of childrens literature and librarianship,1 -new review of film and television studies,2 -new zealand journal of music therapy,1 -the northern world,1 -the open astronomy journal,0 -open ethics journal,0 -open forest science journal,0 -the ottoman empire and its heritage,1 -photogrammetric journal of finland,0 -rabel journal of comparative and international private law,2 -radio journal: international studies in broadcast and audio media,1 -the readers designist magazine,1 -reading matrix: an international online journal,1 -international symposium on the science and technology of light sources,1 -"the sixties: a journal of history, politics, and culture",1 -the soundtrack,1 -the southern communication journal,1 -the sport journal,1 -sydney law review,1 -the times higher education supplement,0 -university of new south wales law journal,1 -the upstart crow: a shakespeare journal,1 -the urban review,1 -the velvet light trap,1 -the yearbook of polar law,1 -theater,0 -theatre forum,1 -theatre history studies,1 -theatre journal,3 -theatre notebook,1 -theatre research international,3 -theatre survey,3 -theatre topics,1 -themes in biblical narrative,1 -themes in islamic studies,2 -theological studies,2 -theologie und philosophie,1 -theologische beitrage,1 -theologische literaturzeitung,1 -theologische quartalschrift,1 -theologische revue,1 -theologische rundschau,1 -theologische zeitschrift,1 -theologisch-praktische quartalschrift,1 -theology and science,1 -theology and sexuality,1 -theology today,1 -theoretical and applied climatology,1 -theoretical and applied fracture mechanics,1 -theoretical and applied genetics,2 -theoretical and computational fluid dynamics,1 -theoretical and experimental chemistry,1 -theoretical and mathematical physics,1 -theoretical biology and medical modelling,1 -theoretical chemistry accounts,1 -theoretical computer science,2 -theoretical criminology,3 -theoretical ecology,1 -theoretical economics,3 -theoretical foundations of chemical engineering,1 -theoretical inquiries in law,2 -theoretical issues in ergonomics science,1 -theoretical linguistics,2 -theoretical medicine and bioethics,1 -theoretical population biology,1 -theoria et historia scientiarum,1 -theoria: a journal of social and political theory,1 -theoria: historical aspects of music theory,1 -theoria: a swedish journal of philosophy,2 -theoria: revista de teoria historia y fundamentos de la ciencia,1 -theory and psychology,2 -theory and applications of categories,1 -theory and decision,1 -theory and event: an online journal of political theory,1 -theory and practice of logic programming,2 -theory and practice: journal of the music theory society of new york state,1 -theory and research in education,1 -theory and research in social education,1 -theory and society,3 -theory culture and society,2 -theory in biosciences,1 -theory into practice,1 -theory of computing,2 -theory of computing systems,2 -theory of probability and its applications,1 -theory of probability and mathematical statistics,1 -logistics and transport focus,0 -logistics europe,0 -logos-ensyklopedia,0 -longitudinal and life course studies,1 -low carbon economy,0 -luonnon tutkija,0 -lähde : historiatieteellinen aikakauskirja,1 -lähetysteologinen aikakauskirja,1 -maaseutupolitiikan yhteistyöryhmän julkaisuja,0 -mahkuzine: journal of artistic research,0 -mamluk studies review,1 -management,1 -management in education,1 -management research and practice,0 -management research review,1 -management theory and studies for rural business and infrastructure development,0 -manufacturing technology,1 -manuscripta orientalia,1 -marine biodiversity records,1 -materials,1 -materials sciences and applications,0 -mathematica aeterna,0 -mathematics magazine,1 -max weber studies,1 -medi@lmanah,1 -media transformations,1 -mediakasvatusseuran julkaisuja,0 -medialni studia,1 -medien und zeit,0 -mediterranean conference on information systems,1 -mediterranean journal of social sciences,0 -meie kirik,0 -memory studies,3 -mental health review journal,1 -mental illness,1 -metallurgical and mining industry,0 -metamorphosis,0 -methis: studia humaniora estonica,1 -methods in ecology and evolution,3 -journal of microbial and biochemical technology,0 -micromachines,1 -middle-east journal of scientific research,0 -migration letters,1 -mikael : kääntämisen ja tulkkauksen tutkimuksen aikakauslehti,1 -missouri journal of mathematical sciences,1 -modern economy,0 -moderna: semestrale di teoria e critica della letteratura,1 -molecular nutrition and food research,3 -mollusc world,0 -monographs of the boreal environment research,0 -mtm journal,1 -multi: the journal of plurality and diversity in design,1 -multimodal communication,1 -music and medicine,1 -music therapy today,1 -mustekala.info,0 -mycosystema,1 -myrmecological news,1 -natura,0 -nature and culture,1 -neuroethics,2 -neurology research international,1 -new and rare for lithuania insect species: records and descriptions,0 -"new apps: art, politics, philosophy, science",0 -new blackfriars,0 -new global studies,0 -nigerian journal of construction technology and management,0 -nmh-publikasjoner,1 -no foundations: journal of extreme legal positivism,1 -"nobilta: rivista di araldica, genealogia, ordini cavallereschi",0 -nonlinear studies,1 -nordic concrete research,1 -nordic journal of aesthetics,1 -"nordic journal of dance: practice, education and research",1 -nordic journal of social research,1 -nordic wittgenstein review,1 -nordic: journal of architecture,1 -nordica helsingiensia,1 -nordidactica: journal of humanities and social science education,1 -nordisk barnehageforskning,1 -nordisk socialrättslig tidskrift,1 -nordwel studies in historical welfare state research,1 -norrlinia,0 -nursing research and practice,1 -nurture: research journal of pakistan home economics association,0 -nutrition and diabetes,1 -nutrition and food science,1 -nya argus,0 -o papel,0 -oceanological and hydrobiological studies,0 -official publication of the european organization for experimental photogrammetric research,0 -oikeuden perusteokset,0 -oikeustieto,0 -olympiads in informatics,0 -on the horizon,1 -onati socio-legal series,1 -oncology letters,1 -oncotarget,0 -online journal of immunology,1 -onomazein,1 -open journal of discrete mathematics,0 -open journal of genetics,0 -open journal of modern linguistics,0 -open journal of safety science and technology,0 -open medical informatics journal,0 -open nuclear medicine journal,1 -open rheumatology,0 -operations and supply chain management: an international journal,1 -operations management research,1 -opetus 2000,0 -optika i spektroskopiya,0 -"organization, technology and management in construction: an international journal",0 -oriente moderno: nuova series,1 -pacific asia journal of the association for information systems,1 -paj : a journal of performance and art,2 -pajouhesh va sazandegi,0 -participations: journal of audience and reception studies,1 -pastoralism,1 -pattern recognition and image analysis,0 -peer-to-peer networking and applications,1 -performing ethos: an international journal of ethics in theatre & performance,1 -perichoresis,1 -perspectives on history,0 -perspectives on performance,0 -pharmaceutics,1 -philosophy and theology,1 -philosophy of photography,1 -photonics letters of poland,0 -photosynthetica,1 -physica scripta: topical issues,1 -physical communication,1 -physics of particles and nuclei letters,1 -physics procedia,1 -phytochemistry reviews,1 -pirandelliana: rivista internazionale di studi e documenti,1 -place branding and public diplomacy,1 -plant molecular biology,1 -porin taidemuseon julkaisuja,0 -positioning,0 -posiva working report,0 -post: a review of poetry studies,0 -power and education,1 -hospital pharmacy europe,0 -primary care diabetes,1 -prime research on education,0 -printing media technology,0 -pro terra,0 -problems in music pedagogy,1 -"problems of physics, mathematics and technics",0 -problemy matematičeskogo analiza,0 -procedia computer science,1 -procedia engineering,1 -procedia environmental sciences,0 -procedia: social and behavioral sciences,1 -proceedings in radiochemistry,0 -proceedings of the ice: urban design and planning,1 -proceedings of the institution of mechanical engineers part o: journal of risk and reliability,1 -production and inventory management journal,1 -production engineering,1 -profesorado: revista de curriculum y formacion de profesorado,0 -professions and professionalism,1 -progress in electromagnetics research b,1 -progress in electromagnetics research c,1 -progress in electromagnetics research m,1 -proinflow,0 -psychiatric times,1 -"psychoanalysis, culture and society",1 -psychology,0 -psychology and society,1 -psychology of language and communication,1 -psychology of programming interest group newsletter,0 -psychosis,1 -psykoanalyyttinen psykoterapia,1 -pubblicazioni di lingua e cultura italiana,0 -public integrity,1 -public relations inquiry,1 -public relations journal,1 -publications of the finnish exegetical society,1 -publications of the university of eastern finland. dissertations in social sciences and business studies,0 -publications of the university of eastern finland. general series,0 -publications of the university of eastern finland. reports and studies in forestry and natural sciences,0 -publications of the university of eastern finland. reports and studies in health sciences,0 -publications romanes de luniversite de helsinki,0 -pulmonary medicine,1 -pulso: revista de educacion,0 -pääkaupunkiseudun sosiaalialan osaamiskeskus soccan työpapereita,0 -qualitative psychology nexus,0 -quality assurance review,0 -"quality, innovation, prosperity",0 -quarterly journal of finance and accounting,1 -quaternary sciences,0 -"qwerty: rivista interdisciplinare di tecnologia, cultura e formazione",0 -raamat õppimisest,1 -rapporter och utredningar,0 -recent advances in natural language processing,1 -recit,0 -regions and cohesion,1 -reimagining ireland,1 -relief: revue electronique de litterature francaise,1 -religion and human rights,1 -"religion, brain and behavior",2 -religious education journal of australia,0 -religious studies and theology,1 -remote sensing,1 -reports in mathematics,0 -representation,2 -res cogitans,1 -res musica,1 -research in language,1 -research in finance,0 -research in international business and finance,1 -research journal of microbiology,0 -reseptio: kirkon ulkoasiain osaston teologisten asiain tiedotuslehti,0 -resource development and market,0 -respiratory medicine cme,1 -review of accounting and finance,1 -review of asset pricing studies,2 -review of european studies,0 -review of managerial science,1 -reviews in fluorescence,0 -reviews of accelerator science and technology,0 -revista brasileira de farmacognosia,1 -"revista de logopedia, foniatria y audiologia",1 -revista de salud animal,0 -revista forense,0 -revista ingenieria de construccion,0 -revista internacional dhumanitats,0 -revista medico-chirurgicala a societatii de medici si naturalisti din iasi,0 -revista peruana de biologia,0 -revue internationale de droit economique,1 -revue internationale deducation de sevres,0 -revue roumaine de mathématiques pures et appliquées,1 -rfc series,1 -"rhetoric, professional communication and globalization",1 -rhizomes,1 -"riista- ja kalatalous, tutkimuksia ja selvityksiä",0 -risk management and healthcare policy,1 -robotics: science and systems,1 -rsc advances,1 -rural society,1 -ruralia-instituutti julkaisuja,0 -russian entomological journal,1 -russian journal of communication,1 -russian journal of ornithology,1 -russian language journal,1 -russian parasitological journal,0 -russkij sbornik: issledovania? po istorii rossii xix-xx vv,0 -sadhana,1 -sae international journal of engines,1 -sae international journal of fuels and lubricants,1 -sae technical papers,1 -safety and health at work,1 -saudi journal of biological sciences,1 -"savon koulutuskuntayhtymän julkaisusarja a, tutkimukset ja raportit",0 -scan: journal of media arts culture,1 -scandinavian conference on artificial intelligence,0 -scandinavian journal of pain,1 -"scandinavian journal of trauma, resuscitation and emergency medicine",1 -schede umanistiche,0 -schifanoia,1 -schriftenreihe der isa lohmann-siems stiftung,0 -science progress,0 -scientific bulletin of the university politechnica of bucharest: series a applied mathematics and physics,1 -scientific journal of riga technical university: computer sciences,0 -scientific journal of rtu: sustainable spatial development,0 -scientific reports,1 -script-ed,1 -seminars in pediatric neurology.,1 -sensor review,1 -sensors and transducers,1 -serbian studies research,1 -service business: an international journal,1 -service science,0 -service science,1 -si somos americanos,0 -sibirskii matematicheskii zhurnal,1 -"signal, image and video processing",1 -silva carelica,0 -sim(o) mediestudier,0 -skrifter från juridiska institutionen vid umeå universitet,0 -skriveopplæring og skriveforskning,0 -small gtpases,1 -smart and sustainable built environment,1 -soccan ja heikki waris -instituutin julkaisusarja,0 -social psychological and personality science,2 -socio.hu,0 -sociologica,1 -sociology compass,1 -sociology study,0 -sodankylä geophysical observatory publications,0 -software engineering notes,0 -somatechnics,1 -sosiaali- ja terveysturvan tutkimuksia,1 -sosiologian tutkimuksia,0 -sotahistorian laitoksen julkaisut,0 -south asian diaspora,1 -south asian journal of management,0 -southern california interdisciplinary law journal,1 -specialusis ugdymas,0 -sphinx,0 -proceedings of spie : the international society for optical engineering,0 -sskh skrifter,0 -stem cell discovery,0 -stem cell studies,1 -stem cells international,1 -stem cells translational medicine,2 -stichting lezen reeks,0 -stockholm centre for commercial law: skriftserien,0 -stockholm contributions in military-technology,0 -stockholmer germanistische forschungen,0 -storyworlds,2 -strategic behavior and the environment,1 -sts encounters,1 -studi italiani,0 -studi medievali e umanistici,1 -studi rinascimentali,1 -studi sul boccaccio,1 -studi sul settecento e lottocento,1 -studia dipterologica,1 -studia historica ecclesiastica academiae aboensis,0 -studia politica tamperensis,0 -studia russica helsingiensia et tartuensia,1 -studier i de samhällsvetenskapliga ämnenas didaktik,0 -studier i exegetik och judaistik utgivna av teologiska fakulteten vid åbo akademi,0 -studies in economics and finance,0 -studies in material thinking,0 -studies in the reception history of the bible,1 -studies of psychology and behavior,0 -studies on contemporary east asia,0 -studies on the children of abraham,1 -studii si cercetari filologice: seria limbi romanice,0 -suomalaisen aikuiskasvatuksen kentät ja kerrostumat,0 -suomalaisen teologisen kirjallisuusseuran julkaisuja,1 -suomen hammaslääkärilehti,1 -"suomen historian julkaisuja, turun yliopisto",0 -suomen kirkkohistoriallisen seuran toimituksia,1 -supplements to novum testamentum,2 -supplements to the journal for the study of judaism,3 -surveying and built environment,0 -sustainability,0 -"sustainability accounting, management and policy",1 -sustainability : the journal of record,0 -sustainable cities and society,1 -swarm intelligence,1 -svarochnoe proizvodstvo,0 -sydney series in celtic studies,0 -sydänääni,0 -synergies pays riverains de la baltique,1 -t’inkazos,0 -tafter journal,0 -tahiti,1 -tampereen kaupungin tietotuotannon ja laadunarvioinnin julkaisusarja a,0 -tandlaegebladet,1 -tandläkartidningen,1 -tapri net series,0 -teacher training and education newsletter,0 -teatterikorkeakoulun julkaisusarja,0 -technology and investment,0 -technology innovation management review,1 -tekhne: revista de estudos politécnicos,0 -telecommunications and radio engineering,1 -telemedicine and e-health,1 -temanord,0 -teologia.fi,0 -teologisk tidsskrift,1 -teoros: revue de recherche en tourisme,1 -guide (national institute for health and welfare),0 -thanatos,1 -asia-pacific journal : japan focus,1 -the baltic journal of road and bridge engineering,1 -the berlin review of books,0 -the built and human environment review,1 -the china monitor,0 -international journal of the arts in society,1 -the iup journal of supply chain management,0 -the journal of gambling business and economics,0 -the new international relations,0 -the open atmospheric science journal,0 -the open construction and building technology journal,0 -open dentistry journal,0 -the open industrial and manufacturing engineering journal,0 -the open information science journal,0 -the open respiratory medicine journal,0 -the open source business resource,0 -the open tissue engineering and regenerative medicine journal,0 -paton welding journal,0 -the polar journal,1 -the police journal,1 -the radio science bulletin,1 -the spaces of creation,0 -theatre arts journal: studies in scenography and performance,2 -"theatre, dance and performance training",1 -thematicon: wissenschaftliche reihe des collegium polonicum,0 -theoretical and empirical researches in urban management,1 -therapeutic delivery,1 -ticks and tick-borne diseases,1 -ticsp series,0 -"toiminnan, kehityksen ja oppimisen tutkimusyksikkö gradle: tutkimusraportteja",0 -the turkish online journal of educational technology,1 -arhivele totalitarismului,0 -touchpoint: the journal of service design,0 -tourism in marine environments,1 -tourism planning and development,1 -tourisme et territoires,1 -tourismos: an international multidisciplinary journal of tourism,1 -toxins,1 -transactions of the american society of agricultural and biological engineers,1 -transactions on high-performance embedded architectures and compilers,0 -transfers,1 -transformations,1 -trans-kom: journal of translation and technical communication,1 -translation and interpreting,1 -translation and interpreting studies,1 -translational psychiatry,1 -transnational literature,1 -transport and telecommunication,1 -treballs de la societat catalana de geografia,0 -trends in chemical engineering,0 -tribologia,1 -trim research notes,0 -trim research reports,0 -trudy instituta matematiki i mekhaniki uro ran,1 -trudy karelʹskogo naučnogo centra rossijskoj akademii nauk,0 -tuba-ked: turkiye bilimler akademisi kultur envanteri dergisi,1 -tucs lecture notes,0 -tucs publication series,0 -turkish journal of business ethics,1 -turkish journal of electrical engineering and computer sciences,0 -turku medieval and early modern studies,0 -turun kauppakorkeakoulun julkaisujasarja ae,0 -turun kauppakorkeakoulun julkaisusarja: keskustelua ja raportteja,0 -turun lapsi- ja nuorisotutkimuskeskuksen julkaisuja,0 -turun yliopiston kasvatustieteiden tiedekunta: julkaisusarja a tutkimuksia,0 -turun yliopiston merenkulkualan koulutus- ja tutkimuskeskuksen julkaisuja,0 -turun yliopiston oikeustieteellisen tiedekunnan julkaisuja: a juhlajulkaisut,0 -tutkiva sosiaalityö,0 -tutu e-julkaisuja,0 -twentieth-century literary criticism,0 -työelämän tutkimuspäivien konferenssijulkaisuja,0 -työpoliittinen aikakauskirja,0 -uddannelsehistorie,1 -ukk-seuran vuosikirja,0 -policy brief (unesco institute for information technologies in education),0 -university of helsinki department of computer science: series of publications c,0 -upgrade: the european journal for the informatics professional,1 -urbe: brazilian journal of urban management,1 -urology annals,0 -waikato law review,1 -vascular health and risk management,1 -water history,1 -water practice and technology,1 -water science and engineering,1 -welding and cutting,1 -"ventil - journal for hydraulics, automation and mechatronics",0 -verbum,1 -vernacular architecture,1 -versus,0 -vestnik moskovskogo universiteta. serija 10 zhurnalistika,1 -wi: journal of mobile media,0 -widerscreen,1 -wiley interdisciplinary reviews: cognitive science,1 -virchows archiv,1 -wireless engineering and technology,0 -wireless sensor network,0 -"work organisation, labour and globalisation",1 -working papers in language pedagogy,0 -workplace health and safety,1 -international workshop on image analysis for multimedia interactive services,0 -world affairs,1 -world futures review,1 -world journal of education,0 -world journal of emergency surgery,2 -world journal of experimental medicine,1 -world journal on educational technology,0 -world leisure journal,1 -world review of intermodal transportation research,1 -world social sciences exchange,0 -wseas transactions on systems and control,0 -yearbook of medical informatics,1 -"yearbook of the unesco international clearinghouse on children, youth and media",1 -yhteiskuntatieteellisen tietoarkiston julkaisuja,0 -yleislääkäri,1 -ympäristöhistoria: finnish journal of environmental history,0 -young consumers,1 -zagadnienia rodzajow literackich,1 -zapiski nauchnyh seminarov pomi,1 -zeitschrift fur erziehungswissenschaft,1 -zeitschrift fur interkulturelle germanistik,1 -zeitschrift fur kmu und entrepreneurship,1 -zeitschrift fur kristallographie supplements,0 -zeitschrift fur politische theorie,0 -zeitschrift für kristallographie : proceedings,0 -zeitschrift für religion und gesellschaft,1 -žurnal sociologii i socialnoj antropologii,0 -zhurnalist sotsialjnye kommunikatsii,0 -zimbabwe veterinary journal,0 -zte communications,0 -äidinkielen opettajain liiton vuosikirja,0 -current biotechnology,1 -journal of economic analysis,0 -world journal of nuclear medicine,1 -aalto-yliopiston julkaisusarja : taide + muotoilu + arkkitehtuuri,0 -sophi,1 -"jyväskylä studies in education, psychology and social research",0 -la revolution francaise,1 -orbis biblicus et orientalis,2 -ateneumin julkaisut,1 -finbion julkaisuja,0 -forskning för kyrkan,1 -ucla encyclopedia of egyptology,1 -analysis and geometry in metric spaces,1 -artibus et historiae,1 -update: applications of research in music education,1 -studia biographica,1 -uskonnontutkija,1 -hau: journal of ethnographic theory,2 -european energy journal,1 -proceedings of the annual meeting of the academy of international business,0 -special conference series : academy of marketing science,0 -international conference series : world marketing congress,0 -acm workshop on scalable trusted computing,0 -annual conference of the international group for lean construction,0 -academy of management annual meeting proceedings,0 -conference proceedings : ieee applied power electronics conference and exposition,1 -baltic conference on future internet communications,0 -computer science and electronic engineering conference,0 -"conference of telecommunication, media and internet techno-economics",0 -conference on design and architectures for signal and image processing,1 -ifip wg 9.7 working conference on history of nordic computing,0 -conference on lasers and electro-optics,0 -conference on performance measurement and management control,0 -international corrosion conference series,0 -creative methods in rehabilitation,0 -conference of digital games research association,1 -euro-american workshop on information optics,0 -euromicro conference on software engineering and advanced applications,1 -euram conference,0 -european biomass conference and exhibition proceedings,0 -proceedings of the european conference on antennas and propagation,1 -european conference on circuit theory and design,1 -proceedings of the european conference on games-based learning,0 -proceedings of the european conference on information management and evaluation,0 -proceedings of the european conference on cyber warfare and security,1 -proceedings of the european conference on knowledge management,0 -medical informatics europe,1 -european microelectronics and packaging conference,1 -european reward management conference,0 -european workshop on visual information processing,1 -experimental fluid mechanics,0 -federated conference on computer science and information systems,1 -international conference on human-computer interaction,0 -ieee computer society annual symposium on vlsi,1 -ieee forum on integrated and sustainable transportation systems,0 -ieee global engineering education conference,0 -international conference on cloud and service computing,1 -ieee international conference on control and automation,0 -"ieee international conference on control system, computing and engineering",0 -ieee international conference on data mining workshops,0 -proceedings ieee international conference on emerging technologies and factory automation,1 -ieee international conference on high performance switching and routing,1 -ieee international conference on industrial informatics,1 -ieee international conference on mechatronics,0 -ieee international conference on pervasive computing and communications workshops,1 -international conference on power electronics,1 -proceedings of the international conference on research challenges in information science,1 -ieee international conference on rfid-technologies and applications,0 -ieee international conference on robotics and biomimetics,1 -ieee international conference on system engineering and technology,0 -"ieee international conference on thermal, mechanical and multi-physics simulation and experiments in microelectronics and microsystems",0 -proceedings : international conference on tools with artificial intelligence,1 -"ieee international conference on trust, security and privacy in computing and communications",1 -"ieee international conference on wireless and mobile computing, networking, and communications",1 -ieee international geoscience and remote sensing symposium proceedings,1 -"ieee international symposium on parallel & distributed processing, workshops and phd forum",0 -ieee pulsed power conference,1 -international symposium on biomedical imaging,1 -ieee international symposium on broadband multimedia systems and broadcasting,1 -ieee ro-man,1 -ieee international symposium on sensorless control for electrical drives,0 -ieee international symposium on web systems evolution,1 -ieee international ultrasonics symposium,1 -ieee international workshop on genomic signal processing and statistics,0 -ieee international workshop on intelligent data acquisition and advanced computing systems,0 -"ieee international workshop on trust and identity in mobile internet, computing and communications",0 -ieee latin-american conference on communications,0 -ieee online conference on green communications,0 -ieee pes innovative smart grid technologies conference europe,1 -ieee subthreshold microelectronics conference,1 -proceedings : symposium on computer arithmetic,1 -ieee symposium on design and diagnostics of electronic circuits and systems,1 -"ieee topical conference on biomedical wireless technologies, networks, and sensing systems",0 -ieee vehicle power and propulsion conference,0 -ieee vehicular networking conference,1 -ieee workshop on applications of signal processing to audio and acoustics,1 -ieee workshop on managing ubiquitous communications and services,0 -proceedings : ieee/acm international symposium on distributed simulation and real time applications,1 -iet reliability of transmission and distribution networks conference,0 -ifip working group 5.7 international workshop on experimental interactive learning in industrial management,0 -ieee/ifip international conference on vlsi and system-on-chip,1 -proceedings of the intellectbase international consortium,0 -interaktiivinen tekniikka koulutuksessa,0 -international computer music conference proceedings,1 -iceri proceedings,0 -international conference on advanced computational methods in engineering,0 -international conference on advances in cognitive radio,0 -international conference on advances in satellite and space communications,0 -international conference on barkhausen noise and micromagnetic testing,0 -"international conference on broadband and wireless computing, communication and applications",0 -international icst conference on cognitive radio oriented wireless networks and communications,1 -international conference on communication systems and networks,1 -international conference on communication technology and system design,0 -"international conference on communication theory, reliability, and quality of service",0 -international conference on communications and electronic systems,0 -proceedings cscs,0 -"international conference on control, automation and systems engineering",0 -"international conference on creating, connecting, and collaborating through computing",1 -proceedings of the international conference on digital audio effects,1 -international conference on digital image processing,0 -international conference on digital signal processing proceedings,1 -international conference on digital society,0 -electrical and control technologies,0 -journal of international conference on electrical machines and systems,1 -international conference on electronic properties of two-dimensional systems /international conference on modulated semiconductor structures,0 -programme & abstract book : international conference on engineering design,0 -international conference on environment and electrical engineering,1 -international conference on field programmable technology,0 -international conference on indoor positioning and indoor navigation,1 -proceedings icil,0 -international conference on information and multimedia technology,1 -international conference on information assurance and security,1 -"proceedings of the international conference on information management, innovation management and industrial engineering",0 -international conference on information systems engineering,1 -international conference on innovation and management,0 -proceedings of the international conference on innovations in information technology,1 -international conference on intelligence in next generation networks,1 -international conference on knowledge and systems engineering,1 -international conference on knowledge engineering and ontology development,1 -international conference on localization and gnss,1 -international conference on measurement and control engineering,0 -international conference on natural computation,0 -proceedings of the international conference on new interfaces for musical expression,0 -"international conference on next generation mobile applications, services and technologies",1 -international conference on peer-to-peer computing,1 -international conference on personal satellite services,0 -international conference on pervasive and embedded computing and communication systems,0 -proceedings : international conference on port and ocean engineering under arctic conditions,0 -"international conference on smart grids, green communications and it energy-aware technologies",0 -international conference on society and information technologies,0 -transactions of the international conference on structural mechanics in reactor technology,0 -conference proceedings : international conference on transparent optical networks,1 -international conference on user science and engineering,0 -international conference the experience of designing and application of cad systems in microelectronics,0 -proceedings : international congress on modelling and simulation,0 -international conference on ultra modern telecommunications & workshops,1 -"international convention on information and communication technology, electronics and microelectronics",1 -proceedings of the international display workshops,0 -proceedings ifkad,0 -eai international conference on testbeds and research infrastructures for the development of networks & communities,0 -international conference on e-infrastructure and e-services for developing countries,0 -"international multi-conference on systems, signals and devices",0 -innovation and product development management conference,0 -international pulp bleaching conference,0 -proceedings international radar symposium,0 -"proceedings of the international scientific conference ""economic science for rural development""",0 -cas proceedings,1 -"proceedings of the international society for magnetic resonance in medicine, scientific meeting and exhibition",0 -international symposium on networks-on-chip,0 -international symposium on parallel computing in electrical engineering,0 -international symposium on robotics and intelligent sensors,0 -ieee international symposium on sustainable systems and technology,0 -international telecommunications energy conference,0 -international telework workshop,0 -international universities power engineering conference,0 -international workshop on biomedical engineering,0 -international workshop on business models for mobile platforms,0 -international workshop on dependable and secure industrial and embedded systems,0 -international workshop on dynamic analysis,0 -proceedings gsp,0 -"international workshop on interconnection network architecture: on-chip, multi-chip",0 -international workshop on mobile cloud computing and services,0 -international workshop on recent advances in broadband access networks,0 -international workshop on reconfigurable communication-centric systems-on-chip,1 -international workshop on requirements engineering for social computing,1 -international workshop on traffic monitoring and analysis,0 -"is&t/spie electronic imaging / 3d imaging, interaction, and metrology / stereoscopic displays and applications",1 -is&t/spie electronic imaging / image processing: algorithms and systems,1 -joint ifip wireless and mobile networking conference,0 -joint urban remote sensing event,0 -joint workshop on hands-free speech communication and microphone arrays,0 -junior researcher workshop on real-time computing,0 -management development network entrepreneurship conference,0 -miccai workshop on mesh processing in medical image analysis,0 -microoptics conference,0 -nasa/esa conference on adaptive hardware and systems,0 -nordic design research conference,1 -nordic symposium on multimodal communication,0 -nuclear education and training,0 -ogólnopolskie warsztaty pracy projektanta konstrukcji,0 -international conference on optical mems and nanophotonics,1 -portland international conference on management of engineering and technology,0 -prague stringology conference,1 -"principles, systems and applications of ip telecommunications conference",0 -program visualization workshop,0 -progress in electromagnetics research symposium,1 -"protection, automation and control world conference",0 -"research conference on communication, information and internet policy",0 -proceedings of ebrf,0 -re-thinking technology in museums,0 -signal processing and applied mathematics for electronics and communications workshop,0 -conference proceedings of the society for experimental mechanics,0 -software quality management conference,0 -proceedings of the sound and music computing conferences,1 -taxonomic databases working group annual conference,0 -the versatile image: photography in the era of web 2.0,0 -wavelets and sparsity conference,0 -ama winter educators' conference,0 -proceedings : winter simulation conference,0 -conference proceedings wpmc,1 -"workshop on bytecode semantics, verification, analysis and transformation",0 -workshop on circuits and systems for medical and environmental applications,0 -workshop on information processing and control,0 -workshop on information theoretic methods in science and engineering,0 -workshop on mobile software engineering,0 -workshop on research in the large,0 -workshop on securing and trusting internet names,0 -workshop on strategic human resource management,0 -world congress on engineering and computer science,0 -world journal of engineering and technology,0 -world congress on nature and biologically inspired computing,1 -world engineering education flash week,0 -wseas international conference on computer engineering and applications,0 -management decision,1 -nuorisotutkimusverkoston julkaisuja,1 -ieee/ion position location and navigation symposium,0 -acm international workshop on mobile opportunistic networks,0 -wireless communication and applications,0 -european university information systems congress,0 -"workshop on positioning, navigation, and communication",1 -working conference on human work interaction design,0 -proceedings of the annual boston university conference on language development,0 -international symposium on medical information and communication technology,1 -international symposium on wireless communication systems,1 -electric power quality and supply reliability conference,0 -pos proceedings of science,0 -international proceedings of computer science and information technology,0 -"international conference on smart grid technology, economics and policies",0 -many-core applications research community symposium,0 -international workshop on automated specification and verification of web systems,0 -proceedings of the international conference on information quality,1 -annual mediterranean ad hoc networking workshop,0 -international conference on measuring technology and mechatronics automation,0 -international workshop on cellular nanoscale networks and their applications,1 -proceedings of conference of open innovations association fruct,1 -proceedings : asia pacific software engineering conference,1 -proceedings of the biennial baltic electronics conference,0 -kasvatus mitmekultuurilises keskkonnas,0 -conference on new directions in management accounting,0 -european institute for computer antivirus research conference,0 -department of agricultural sciences publications (university of helsinki),0 -bmc proceedings,1 -"workshop on hyperspectral image and signal processing, evolution in remote sensing",0 -international conference on mathematical and computational methods in science and engineering proceedings,0 -odyssey : the speaker and language recognition workshop,1 -"international symposium on artificial intelligence, robotics and automation in space",0 -"iasted international conference on signal processing, pattern recognition and applications",0 -international conference on applications of time-frequency processing in audio,0 -"international asia conference on informatics in control, automation, and robotics",0 -"ubiquitous positioning, indoor navigation and location-based services",1 -international multi-conference on computing in the global information technology,0 -"international conference on mobile, hybrid, and on-line learning",0 -international workshop on automation of software test,0 -proceedings of drs,1 -migration studies. c.,0 -international conference on bio-inspired systems and signal processing,0 -international conference on self-adaptive and self-organizing systems,1 -proceedings : international coral reef symposium,0 -"proceedings of the international conference on efficiency, cost, optimization, simulation and environmental impact of energy systems",1 -electrical power and energy conference,0 -"proceedings : design, automation, and test in europe conference and exhibition",1 -transactions of the annual meeting of the orthopaedic research society,0 -"asian conference on the arts, humanities and social sciences conference proceedings",0 -proceedings of the karlsruhe workshop on software radios,0 -swedish national computer networking workshop,0 -ces working papers,1 -international conference on mobile business,1 -asia-pacific signal and information processing association annual summit and conference,0 -acta conventus neo-latini,0 -annual international conference on computer games multimedia & allied technology,0 -ieee conference on industrial electronics and applications,1 -proceedings of the international conference on solid waste technology and management,0 -ieee mediterranean electrotechnical conference,0 -international conference on information modelling and knowledge bases,0 -proceedings : ieee international conference on computer design,1 -international conference on mathematical methods in electromagnetic theory conference proceedings,1 -international conference on computer systems and industrial informatics,0 -international workshop on variability in software architecture,0 -iab/irtf workshop on congestion control for interactive real-time communication,0 -nordicum-mediterraneum,1 -ifip wireless days,0 -sistemas & gestão,0 -manufacturing accounting research conference,0 -international symposium on semantic mining in biomedicine,0 -international workshop on power grid-friendly computing,0 -"iet international conference on power electronics, machines and drives",0 -international conference on ict and knowledge engineering,0 -international symposium on semiconductor light emitting devices,0 -ieee international conference on network infrastructure and digital content,0 -international workshop on intelligent exploration of semantic data,0 -workshop on the experience of and advances in developing dependable systems in event-b,0 -computing in cardiology,1 -ifip international conference on network and parallel computing,0 -ieee transportation electrification conference and expo,0 -ieee international conference on power system technology,0 -international workshop on boolean problems,0 -proceedings of the european conference on intellectual capital,0 -scientific conference on electrical engineering in aait,0 -european regional conference of the international telecommunication society,0 -international conference on soft computing models in industrial and environmental applications,0 -international conference on signal processing and multimedia applications,1 -ieee sarnoff symposium,0 -international workshop on integrated nonlinear microwave and millimetre-wave circuits,0 -international workshop on small cell wireless networks,0 -international congress on environmental modelling and software,0 -swedish communication technologies workshop,0 -"international conference on advanced geographic information systems, applications, and services",0 -international workshop on linked data in architecture and construction,0 -international conference on information communication technologies in education,0 -international conference on information technology: new generations,0 -proceedings : international congress of meat science and technology,0 -cpem digest,0 -itherm,0 -swedish radio and microwave days,0 -analele universitatii din oradea : stiinte economice,0 -international conference on methods and models in automation and robotics,0 -ieee international conference on digital ecosystems and technologies,0 -"cahiers du centre interdisciplinaire de recherches en histoire, lettres et langues",0 -conference proceedings : european immersive education summit,0 -international conference on integrated power electronics systems,0 -acta physica polonica b : proceedings supplement,0 -international soc design conference,0 -international electric propulsion conference,0 -advanced electromagnetics symposium,0 -international conference on information and automation for sustainability,0 -international workshop on haptic and audio interaction design,0 -efquel innovation forum proceedings,0 -cfe conference papers series,0 -acm workshop on challenged networks,0 -wireless advanced,0 -advances in astronomy and space physics,0 -international workshop on electromagnetic metamaterials,0 -international conference on systems and informatics,0 -international conference on manufacturing research,0 -ieee international conference on photonics,1 -edulearn proceedings,0 -international workshop on advanced ground penetrating radar,0 -serie haina,0 -ieee international multitopic conference,0 -international conference on industrial and hazardous waste management : executive summaries,0 -extended abstracts on human factors in computing systems,0 -world congress on medical and health informatics,1 -convention of the electrical and electronics engineers in israel,0 -annual workshop on network and system support for games,1 -ieee workshop on autonomic and opportunistic networks,0 -international conference on networking and services,0 -international workshop on nanocarbon photonics and optoelectronics,0 -electronics and nanotechnology,0 -international conference on computational and information sciences,0 -international conference on bioinspired optimization methods and their applications,1 -annual conference on theory and applications of models of computation,0 -papers presented at the bhra fluid engineering international conference on energy storage,0 -ieee radiation effects data workshop record,1 -international conference on industrial mechatronics and automation,1 -international workshop on network on chip architectures,0 -international conference on optical internet,0 -proceedings of the acm workshop on embedded sensing systems for energy-efficiency in buildings,1 -proceedings of the international topical meeting on high temperature reactor technology,1 -international conference on electrical engineering and control applications,0 -international conference on military communications and information systems,1 -international conference on the applications of computer science and mathematics in architecture and civil engineering,0 -proceedings of the european conference on e-government,0 -control systems conference,0 -international conference on climbing and walking robots,1 -power conversion intelligent motion europe international exhibition and conference,0 -proceedings of the ieee international symposium on consumer electronics,1 -ieee international inter-disciplinary conference on cognitive methods in situation awareness and decision support,0 -"book of abstracts : dubrovnik conference on sustainable development of energy, water and environment systems",0 -ieee international conference on computer as a tool,0 -workshop on corporate governance : eiasm,0 -international conference on advanced applied informatics,0 -analog and mixed signal integrated circuits for space applications conference,0 -ieee international conference on cognitive infocommunications,0 -"international conference on wireless communication, vehicular technology, information theory and aerospace & electronic systems technology",0 -european conference of circuits technology and devices : proceedings,0 -ieee international symposium on nanoscale architectures,0 -proceedings of the ieee/ras-embs international conference on biomedical robotics and biomechatronics,1 -international workshop on nonlinear photonics,0 -conference proceedings : canadian conference on electrical and computer engineering,0 -mechatronics forum international conference,0 -compatibility in power electronics,0 -international igte symposium on numerical field calculation in electrical engineering,0 -microwave technologies and techniques workshop,0 -"annual ieee communications society conference on sensor, mesh and ad hoc communications and networks workshops",1 -international conference on advances in system testing and validation lifecycle,0 -fpga world conference,0 -international conference on computer science and communication technology,0 -proceedings of the european test workshop,1 -proceedings of the international peat congress,0 -"international solid-state sensors, actuators and microsystems conference",0 -asia-pacific power and energy engineering conference,0 -data-intensive collaboration in science and engineering workshop,0 -4s symposium,0 -ieee international conference on communication systems,0 -world congress in industrial process tomography,0 -international symposium on business modeling and software design,1 -"international conference on advanced collaborative networks, systems and applications",0 -annual meeting of the american educational research association,0 -ieee international conference of electron devices and solid-state circuits,0 -international conference on data analytics,0 -international joint conference on computational sciences and optimization,0 -proceedings of international conference on virtual systems and multimedia,1 -"argentine school of micro-nanoelectronics, technology and applications",0 -proceedings elmar,1 -mons days of theoretical computer science,0 -international conference on advances in information mining and management,0 -international conference on modeling and applied simulation,0 -acm workshop on emerging name-oriented mobile networking design,0 -international topical meeting on optical sensing and artificial vision,0 -international conference on mobile networks and management,0 -world congress on intelligent control and automation,0 -international workshop on advanced motion control,0 -csi international symposium on computer architecture and digital systems,1 -stanford slavic studies,0 -proceedings of the annual macromarketing conference,0 -ieee green technologies conference,0 -international conference on information technology interfaces,0 -cidoc annual conference,0 -international conference on operations research abstract book,0 -international conceive design implement operate academy conference,0 -proceedings of the international conference on image analysis and signal processing,1 -cadence user conference,0 -international conference on field programmable logic and applications,1 -ieee international symposium on applied machine intelligence and informatics,0 -applied electronics,0 -carts international technical conference,0 -annual meeting setac,0 -ieee international conference on industrial engineering and engineering management,0 -ieee international conference on emerging elearning technologies and applications,0 -international workshop on cross layer design,0 -asia-pacific conference on computer-human interaction,1 -international workshop on cooperative robots and sensor networks,0 -biophysical society annual meeting : abstracts,0 -linux symposium,0 -international workshop on acoustic signal enhancement,1 -nordic workshop on programming theory,0 -iconference,1 -iasted international conference on modelling and simulation,0 -ieee international frequency control symposium,0 -ieee international symposium on power electronics for distributed generation systems,0 -international conference on knowledge management and information systems,1 -international conference on green it solutions,1 -international conference on intelligent and advanced systems,0 -international conference on ground penetrating radar,0 -setac lca case study symposium,0 -international conference on applied parallel and scientific computing,0 -"international conference on autonomous infrastructure, management, and security",0 -international conference on computer aided systems theory,0 -international workshop on multiple access communications,0 -international conference on analytical and stochastic modelling techniques and applications,0 -international summer school “advanced course on petri nets”,0 -"international conference on design, user experience and usability",0 -mexican international conference on artificial intelligence,0 -journal of aesthetics and phenomenology,1 -the theory and practice of legislation,2 -hungarian historical review,1 -current geriatrics reports,1 -international conference on computers helping people with special needs,0 -choros international dance journal,1 -american journal of play,1 -jfps international journal of fluid power system,0 -journal of school choice,1 -annales philosophici,0 -revista de antropología experimental,1 -cambridge journal of china studies,0 -european journal of futures research,1 -bildhaan,1 -archaeological textiles review,1 -innovation and development,1 -"international journal of art, culture and design technologies",1 -proceedings : international computer software & applications conference,1 -ratio.ru,0 -literacy education and second language learning for adults,1 -journal for critical animal studies,0 -cambridge journal of postcolonial literary inquiry,1 -études littéraires africaines,0 -annual meeting of the decision sciences institute proceedings,1 -"language, cognition and neuroscience",1 -proceedings of the international conference on numerical simulation of optoelectronic devices,0 -international journal of complexity in leadership and management,1 -synergies pays scandinaves,1 -academica turistica,0 -acta geoturistica,1 -advances in hospitality and tourism research,0 -"african journal of hospitality, tourism and leisure",0 -almatourism,0 -american journal of tourism management,0 -american journal of tourism research,0 -asia-pacific journal of innovation in hospitality and tourism,0 -business case journal,0 -cactus tourism journal,0 -case research journal,0 -cuadernos de turismo,0 -enlightening tourism,0 -"european journal of tourism, hospitality and recreation",1 -geojournal of tourism and geosites,1 -geoturystyka,0 -international journal for responsible tourism,0 -international journal of event management research,1 -international journal of hospitality and event management,0 -international journal of hospitality and tourism,1 -international journal of religious tourism and pilgrimage,0 -international journal of revenue management,1 -international journal of safety and security in tourism / hospitality,1 -"international journal of sport management, recreation & tourism",1 -international journal of tourism anthropology,1 -turizam,0 -journal of foodservice management and education,1 -journal of hospitality management and tourism,0 -journal of hospitality and tourism cases,0 -journal of hospitality and tourism education,1 -journal of hotel and business management,0 -"journal of international hospitality, leisure and tourism management",0 -peace tourism journal,0 -journal of tourism challenges and trends,0 -journal of tourism insights,0 -"journal of unconventional parks, tourism and recreation research",0 -polish journal of sport and tourism,0 -progress in responsible tourism,0 -research in hospitality management,0 -revista de turism,0 -south asian journal of tourism and heritage,0 -team journal of hospitality and tourism,0 -tourism and management studies,0 -tourismus journal,0 -via@,0 -worldwide hospitality and tourism themes,1 -world patent information,1 -vestnik moskovskogo universiteta : seria 22 : teorija perevoda,1 -international journal of work innovation,1 -international economics,1 -international review of economics education,1 -ieee joint intelligence and security informatics conference,0 -journal of applied journalism and media studies,1 -international journal of school and educational psychology,1 -babel a.f.i.a.l.,0 -tartu historical studies,0 -acta universitatis ouluensis b : humaniora,0 -translation spaces,1 -barents studies,1 -philosophy of education,1 -aisthesis,1 -pyne,0 -kompjuternaja lingvistika i intellektualnye tehnologii,1 -"international conference on information, intelligence, systems and applications",0 -smart learning environments,1 -internet protocol journal,0 -international review of pragmatics,1 -journal of cognitive science,1 -lodz papers in pragmatics,1 -arkeologi i norr,0 -aging and disease,1 -advances in librarianship,1 -fields institute communications,1 -nordic tax journal,1 -studia paedagogica,1 -european workshop on microelectronics education,0 -environmental humanities,2 -coat of arms,1 -central asian affairs,0 -european review of international studies,1 -international journal of procedural law,1 -footwear science,1 -vesuviana,1 -global telemedicine and ehealth updates: knowledge resources,0 -international ieee/embs conference on neural engineering,0 -international journal of learner corpus research,1 -management and organizational studies,0 -international journal of canadian studies,1 -complicity,1 -journal of advances in information fusion,1 -"regional studies, regional science",1 -journal of uncertainty analysis and applications,1 -computational methods in applied sciences,1 -solid mechanics and its applications,1 -algal research,1 -international journal of information and decision sciences,1 -journal of the economics of ageing,1 -international journal of process management and benchmarking,1 -international journal of rapid manufacturing,1 -"philosophy, ethics and humanities in medicine",1 -virtual and physical prototyping,1 -open journal of ecology,0 -journal of organizational effectiveness,1 -ieee international conference on communication technology,0 -dissertationes forestales,0 -hamkin e-julkaisuja,0 -"turun yliopiston julkaisuja. sarja d, medica-odontologica",0 -american journal of engineering research,0 -american journal of industrial engineering,0 -australasian medical journal,0 -stroitel´stvo unikalnyh zdanij i sooruženij,0 -egitânia sciencia,0 -european journal of physiotherapy,1 -ikastaria,0 -il diritto marittimo,1 -international journal of business and management studies,0 -international journal of communications,0 -international journal of cyber warfare and terrorism,1 -international journal of engineering research and applications,0 -international journal of information and education technology,0 -international journal of nursing knowledge,1 -journal advances in higher education,1 -journal of business and economics,0 -journal of diabetes and metabolic disorders,1 -journal of human and work management,0 -journal of lecture notes on software engineering,0 -journal of marketing and management,0 -revue organisations et territoires,0 -pediatric nursing,1 -rem: research on education and media,0 -civitas hominibus,0 -tianjin journal of nursing,0 -trash culture journal,0 -turkish journal of politics,0 -urban planning and design research,1 -usa-china business review,0 -wirtschaft und management,0 -"international conference on modeling, simulation and applied optimization",0 -archiving,0 -proceedings of the balkan conference in informatics,0 -proceedings in conference of informatics and management sciences,0 -proceedings in electronic international interdisciplinary conference,0 -global congress on intelligent systems,0 -proceedings in global virtual conference,0 -virtual conference human and social sciences at the common conference,0 -proceedings of the international conference on innovative technologies,0 -science-to-business marketing conference,0 -proceedings of the upi international conference on technical and vocational education and training,0 -issues in informing science and information technology,0 -southwest review of international business research,0 -computational culture,1 -communication and sport,1 -comparative legal history,2 -journal of comparative law,1 -review of corporate finance studies,1 -critical finance review,1 -journal of behavioral and experimental finance,1 -cogent economics and finance,1 -economics and finance review,0 -deutschunterricht : zeitschrift für erziehungs- und bildungsaufgabe des deutschunterrichts,0 -digest of technical papers (society for information display),0 -ieej journal of industry applications,1 -international journal of emerging markets,1 -journal of current issues and research in advertising,1 -european proceedings of social and behavioural sciences,0 -infrastructure asset management,1 -international journal of engineering practical research,0 -"advances in electronic government, digital divide, and regional development",0 -ieee symposium on technologies for homeland security,0 -information : nordic journal of art and research,1 -journal of environmental chemical engineering,1 -esperantologio,1 -global food history,1 -"meta : research in hermeneutics, phenomenology and practical philosophy",1 -queen mary journal of intellectual property,1 -energy research and social science,2 -engineering management research,0 -philosophy pathways,0 -innovative smart grid technologies,1 -advances in materials science and engineering,1 -journal of pipeline systems engineering and practice,1 -itinera,1 -ieee embedded systems letters,1 -journal of solid waste technology and management,1 -international conference nuclear energy for new europe,0 -journal of community archaeology and heritage,1 -international journal of comadem,1 -change over time,1 -journal of conservation and museum studies,1 -issues in business management and economics,0 -"technology, innovation, entrepreneurship and competitive strategy",1 -eurasian business review,1 -eurasian economic review,1 -suomen harjoittelukoulujen julkaisu,0 -ieee journal of biomedical and health informatics,2 -acta crystallographica section c : structural chemistry,1 -sukupuolentutkimus,1 -international journal of serious games,1 -zeitschrift für japanisches recht,1 -australian journal of asian law,1 -coupled systems mechanics,1 -"ieee symposium on computational intelligence, cognitive algorithms, mind, and brain",0 -chemistryopen,1 -international journal of music and performing arts,0 -econometrics,1 -journal of econometric methods,1 -brazilian review of econometrics,1 -quantitative and qualitative analysis in social sciences,1 -global bioethics,2 -journal of international affairs,0 -logistics research,1 -international scholarly research notices,0 -psyecology,1 -global business and economics research journal,0 -international journal of advanced logistics,1 -international journal of energy and environmental engineering,1 -international journal of hydrology science and technology,1 -journal of hydrology : regional studies,1 -"speech, language and hearing",1 -environmental technology and innovation,1 -journal of business models,1 -international journal of interdisciplinary educational studies,0 -serbian journal of electrical engineering,0 -international journal of information and electronics engineering,0 -online journal of new horizons in education,0 -world yearbook of education,1 -nankai business review international,1 -network modeling analysis in health informatics and bioinformatics,1 -human computation,1 -stochastic systems,1 -data envelopment analysis journal,0 -international journal of modern education and computer science,0 -journal of social and political psychology,2 -journal of groups in addiction & recovery,1 -collingwood and british idealism studies,1 -cognitive linguistic studies,1 -cognitive semantics,1 -advances in language and literary studies,0 -anglica,1 -argentinian journal of applied linguistics,1 -peterburgskij istoritsheskij zhurnal,0 -chinese language and discourse,1 -chinese as a second language research,1 -codis working papers,0 -journal of contemplative inquiry,1 -juridica,1 -journal of engineering,1 -chinese journal of urban and environmental studies,0 -deleuze and guattari studies,1 -journal of social science for policy implications,0 -ieee internet of things journal,2 -journal of creative practices in language learning and teaching,1 -crisolenguas,0 -critical multilingualism studies,1 -debate terminológico,1 -dialectologia,1 -dialogue and discourse,1 -diálogo de la lengua,1 -ubiquitous learning,1 -jazz research journal,1 -2d materials,3 -milli mála,1 -journal of computational geometry,1 -scriptum,1 -zeszyty teoretyczne rachunkowosci,0 -journal of information technology teaching cases,1 -ieee transactions on cloud computing,1 -international journal of advancements in mechanical and aeronautical engineering,1 -international journal of fracture fatigue and wear,0 -nordic journal of surveying and real estate research : special series,1 -i-perception,1 -business systems research,0 -materials performance and characterization,1 -african finance journal,1 -international journal of business and finance research,0 -agricultural finance review,1 -algorithmic finance,1 -critical research on religion,1 -ieee transactions on computational imaging,2 -ethnos-toimite,1 -afinla:n vuosikirja,1 -almanac : discources of ethics,1 -transgender studies quarterly,1 -acta universitatis ouluensis series c technica,0 -proceedings of the american society of international law annual meeting,0 -journal of digital humanities,0 -kinephanos,1 -international journal for research in vocational education and training,1 -athens journal of education,1 -balkan journal of philosophy,1 -ieee international conference on service-oriented computing and applications,1 -metal music studies,1 -ico iconographisk post,1 -acta gymnica,0 -audio engineering society conference on spatial audio,1 -aes international conference on semantic audio,1 -agile alliance annual conference,0 -annual privacy forum,1 -ieee conference on norbert wiener in the 21st century,0 -pertubuhan cired malaysia electricity distribution conference,0 -"ifac workshop on research, education and development of unmanned aerial systems",0 -european conference on social media,0 -european starting ai researcher symposium,0 -global sourcing workshop,0 -hci korea,0 -ieee aerospace conference,0 -ieee international conference on antenna measurements and applications,0 -"ieee international conference on numerical electromagnetic modeling and optimization for rf, microwave, and terahertz applications",0 -ieee international conference on opensource systems and technologies,0 -"international conference on power engineering, energy and electrical drives",0 -ieee international energy conference,0 -ieee international microwave workshop series on rf and wireless technologies for biomedical and healthcare applications,0 -ieee international symposium on electromagnetic compatibility,0 -ieee soi-3d-subthreshold microelectronics technology unified conference,0 -ieee workshop on developing applications for pervasive display networks,0 -ieee workshop on modeling and simulation of cyber-physical energy systems,0 -ieee world congress on services,1 -ieice technical report,0 -computer science research notes,0 -international conference on active media technology,0 -international conference on advanced ict for education,1 -international conference on cloud security management,0 -international conference on computational science and computational intelligence,0 -"international conference on computer science, applied mathematics, and applications",0 -"international conference on computer, control, informatics and its application",0 -international conference on electronics packaging,0 -international conference on enterprise systems,0 -international conference on high voltage engineering and application,1 -international conference on ict convergence,0 -"international conference on ict in education, research, and industrial applications",0 -international conference on informatics in school,0 -international conference on information and communications technologies,0 -international conference on information and software technologies,0 -international conference on information visualization theory and applications,1 -international conference on innovative mobile and internet services in ubiquitous computing,0 -international conference on intelligent decision technologies,1 -international conference on lead-acid batteries,0 -international conference on mobile computing and ubiquitous networking,0 -"international conference on mobile services, resources, and users",0 -international conference on networks,0 -international conference on remote engineering and virtual instrumentation,0 -"international conference on robotics, biomimetics & intelligent computational systems",0 -international conference on social computing and social media,0 -international conference on the human side of service engineering,0 -international conference on ubiquitous and future networks,0 -"international conference on virtual, augmented and mixed reality",0 -international congress of metrology,0 -proceedings of the international conference of daaam baltic,0 -international joint conference on awareness science and technology and ubi-media computing,0 -conference proceedings ipec,0 -international science and technology conference,0 -international scientific conference on power and electrical engineering of riga technical university,0 -international scientific-practical conference problems of infocommunications science and technology,0 -international telecommunications network strategy and planning symposium,0 -international workshop on biometrics,0 -international workshop on communication technologies for vehicles,0 -international workshop on mining urban data,0 -international workshop on radiation imaging detectors,0 -international workshop on selected topics in mobile and wireless computing,0 -international workshop on semantic evaluation,0 -kuwait conference on e-services and e-systems,0 -proceedings of meetings on acoustics,0 -memristor and memristive systems symposium,0 -national conference on information assurance,0 -pan pacific microelectronics symposium,0 -panhellenic conference on informatics,0 -solomonoff memorial conference,0 -rcra international workshop on experimental evaluation of algorithms for solving problems with combinatorial explosion,0 -proceedings in international virtual research conference in technical disciplines,0 -workshop on field-coupled nanocomputing,0 -workshop on geographic information observatories,0 -world congress on internet security,0 -interdisciplines,1 -european medical journal urology,0 -icst transactions on ambient systems,0 -royal society open science,1 -revista virtual redesma,0 -quest : issues in contemporary jewish history,1 -guójì hànxué lùncóng,0 -geothermal energy,1 -tire science and technology,1 -therapeutic hypothermia and temperature management,1 -movement ecology,1 -international journal of gastronomy and food science,1 -open journal of information systems,1 -waterlines,1 -natural resources,0 -journal of second language pronunciation,1 -european journal of applied linguistics,1 -chronica mundi,1 -rassegna storica toscana,0 -altreitalie,1 -journal of archaeological science : reports,1 -american accounting association auditing section midyear meeting,0 -eiasm workshop on audit quality,0 -international human rights law review,1 -ima fungus,1 -c21,1 -disputatio philosophica,1 -body sensor networks conference,0 -humanities,1 -investigative interviewing : research and practice,1 -international conference on learning representations,1 -journal of earth science and engineering,0 -frontiers in ecology and evolution,2 -iowa journal of communication,1 -international journal of mechanical engineering and applications,0 -open theology,1 -photonics,1 -journal of causal inference,1 -joutsen,1 -international journal of pedagogy and curriculum,0 -international journal of assessment and evaluation,0 -international journal of literacies,0 -"international journal of adult, community and professional learning",0 -international journal of early childhood learning,0 -international journal of learning in higher education,0 -international journal of learner diversity and identities,0 -international journal of technologies in learning,0 -europa regional,1 -rättshistoriska studier,0 -journal of ancient history,1 -mobile genetic elements,1 -wireless innovation forum european conference on communications technologies and software defined radio,0 -acm transactions on computation theory,1 -international journal of play therapy,1 -the extractive industries and society,2 -journal of migration history,1 -modern stochastics : theory and applications,1 -journal of problem based learning in higher education,1 -opus et educatio,0 -notices of the american mathematical society,0 -historical encounters,2 -zoological systematics,0 -beiträge zur popularmusikforschung,1 -histos,1 -nordic journal of educational history,1 -patient safety in surgery,1 -peerj computer science,1 -uc irvine law review,0 -business excellence,0 -tržište,0 -journal of information and organizational sciences,0 -"ekonomski vjesnik / econviews : review of contemporary entrepreneurship, business, and economic issues",0 -fascism. journal of comparative fascism studies,1 -international journal of public leadership,1 -journal of organizational ethnography,1 -annals in social responsibility,1 -"isprs annals of the photogrammetry, remote sensing and spatial information sciences",1 -global ecology and conservation,1 -european journal of workplace innovation,1 -international journal of water governance,1 -augmented human research,1 -journal of social ontology,2 -studies in social and political thought,0 -international conference on global health challenges,0 -public reason,1 -check list,1 -res militaris,0 -i̇stanbul üniversitesi sosyoloji dergisi,0 -kunst und politik,1 -conservation evidence,1 -ieee international enterprise distributed object computing conference workshops,0 -"international conference on logic, rationality and interaction",0 -transactions of s.h.a.s.e.,0 -the open fish science journal,0 -frontiers in endocrinology,1 -frontiers in cell and developmental biology,1 -fafnir,2 -expert opinion on environmental biology,0 -european journal of curriculum studies,1 -parallèles,1 -empirical research in vocational education and training,1 -electronic journal of polish agricultural universities,0 -eesti haridusteaduste ajakiri,1 -vestnik novosibirskogo gosudarstvennogo pedagogi?eskogo universiteta,0 -developmental biology journal,1 -motivational interviewing,1 -molecular therapy : oncolytics,1 -cogent education,1 -materials research letters,1 -malta medical journal,0 -epj applied metamaterials,0 -cardiogenetics,0 -lex electronica,0 -labirint,0 -belas infiéis,0 -konkurentnoe pravo,0 -vulnerable groups and inclusion,1 -world journal of cardiology,0 -journal of occupational medicine and toxicology,1 -kaskal,0 -arabian humanities,0 -university of warsaw journal of comparative law,0 -applications in plant sciences,1 -taiwan journal of democracy,0 -zhongyang yinyue xueyuan xuebao,0 -revue d´études françaises,0 -frontiers in marine science,1 -osmanl? ara?t?rmalar?,0 -al-ḥaṣad al tarbaw-̦i - kuliyaẗ al-muaʼalimin,0 -journal of narrative politics,1 -anthropocene review,1 -journal of information policy,1 -journal of hygienic engineering and design,0 -journal of european competition law and practice,2 -jadavpur university journal of sociology,0 -spell : swiss papers in english language and literature,1 -19 : interdisciplinary studies in the long nineteenth century,1 -vestnik čerepoveckogo gosudarstvennogo universiteta,0 -international journal of development and sustainability,0 -journal of behavioral and social sciences,0 -internetowy kwartalnik antymonopolowy i regulacyjny,0 -international journal of web and semantic technology,0 -international journal of research in education methodology,0 -sudan journal of agricultural research,0 -international journal of online dispute resolution,0 -studia metrica et poetica,1 -international journal of human rights and constitutional studies,0 -international journal of gynecological and obstetrical research,0 -international journal of educational psychology,1 -zhexue fenxi,0 -folklore,2 -social sciences,0 -anthropológica del departamento de ciencias sociales,1 -philosophia,1 -technology and disability,1 -operational research,1 -"accounting, economics, and law",1 -acta politica,0 -acta universitatis lodziensis : folia oeconomica,0 -acta universitatis matthiae belii : séria environmentálne manažérstvo,0 -adabiyyat-i tabiqi,0 -advances and applications in discrete mathematics,0 -advances in botany,0 -advances in experimental medicine and biology,1 -advances in nephrology,0 -advances in pure and applied mathematics,1 -advances in social sciences research journal,0 -african journal of legal studies,1 -"agriculture, forestry and fisheries",0 -agroecology and sustainable food systems,1 -ain shams engineering journal,0 -akademik acil t?p dergisi,0 -akademik gastroenteroloji,0 -"al-madar journal of communications, information technologies and applications",0 -art + media,0 -american journal of nuclear medicine and molecular imaging,1 -american journal of plant sciences,0 -analele universitatii bucuresti : matematica-informatica,0 -anales de veterinaria de murcia,0 -analysis in theory and applications,1 -andragoški glasnik,0 -annales scientia politica,0 -annales universitatis apulensis : seria philologica,1 -annals of clinical and translational neurology,1 -annals of environmental science,0 -annals of medical and health sciences research,0 -antropologiceskij forum,2 -aob plants,1 -applied computing and informatics,0 -aquatic biology research,0 -arktika xxi vek : gumanitarnye nauki,0 -arte veneta,0 -arthritis and rheumatology,3 -arthroscopy techniques,1 -artifact,1 -asian journal of environment and disaster management,1 -asian journal of epidemiology,0 -asia-pacific forum on science learning and teaching,1 -asia-pacific journal of management research and innovation,0 -aslib journal of information management,1 -atmospheric pollution research,1 -b en m,0 -baltic journal of health and physical activity,0 -banko janakari,0 -beijing law review,0 -belvedere meridionale,0 -bezpieczny bank,0 -bioactive carbohydrates and dietary fibre,1 -biodiversity informatics,1 -biological theory,1 -biologics,1 -biomaterials science,1 -british wildlife,0 -bulletin of mathematical sciences,1 -burnout research,1 -cahiers de la recherche sur l´éducation et les savoirs,1 -cancer nursing practice,0 -case reports in nephrology and dialysis,0 -catwalk,0 -celovek i obrazovanie,0 -central european journal of nursing and midwifery,1 -chemistry education : research and practice,0 -china-eu law journal,1 -"clinical medicine insights : ear, nose and throat",0 -cogent engineering,1 -college student journal,0 -comparative philosophy,1 -computer science journal of moldova,0 -contributions in new world archaeology,1 -control theory and technology,1 -corpus,1 -current addiction reports,1 -current cardiovascular risk reports,1 -current obesity reports,1 -current opinion in insect science,1 -current oral health reports,1 -current osteoporosis reports,1 -cyprus human rights law review,0 -czech mycology,0 -defense technology,1 -degenerative neurological and neuromuscular disease,0 -derecho pucp,0 -"diaspora, indigenous and minority education",1 -digital journalism,3 -drug delivery and translational research,1 -drugs and cell therapies in hematology,0 -east african journal of peace and human rights,0 -economics and management,0 -edition,0 -education,0 -ejifcc,0 -e-journal cigr,1 -elt research,0 -emerging adulthood,1 -energetika tatarstana,0 -engineering mechanics,0 -environment systems and decisions,1 -environmental science : processes and impacts,1 -erdelyi társadalom,0 -estudos avançados,0 -ethics in progress,1 -europäisches journal für minderheitenfragen,1 -european journal of paediatric dentistry,1 -evidence-based midwifery,0 -evolution : education and outreach,1 -fasis,1 -fiib business review,1 -filosofiâ,0 -filosofski alternativi,1 -filozofija i drustvo,1 -forest ecosystems,1 -forum navale,0 -freshwater reviews,1 -frontiers in chemistry,1 -frontiers in materials,1 -frontiers in public health,1 -future neurology,0 -gambling research,0 -gender studies and policy review,0 -genomics data,1 -"geopolitics, history, and international relations",1 -ghana studies,0 -global discourse,1 -gosudarstvennoe upravlenie,0 -green materials,0 -green processing and synthesis,1 -groniek,0 -hànxué yánjiu,0 -health psychology and behavioral medicine,1 -hypoxia,1 -iaee energy forum,0 -iatss research,1 -"ieee/acm transactions on audio, speech, and language processing",3 -images en dermatologie,0 -indialogs,1 -indian growth and development review,1 -indian journal of health and wellbeing,0 -indonesian journal of international and comparative law,0 -information processing in agriculture,0 -inmedia,0 -insights,0 -inter,0 -inter faculty,1 -interdisciplinary literary studies,1 -interdisciplinary perspectives on infectious diseases,1 -interfaces científicas : educação,1 -international criminal justice review,1 -"international family law, policy and practice",1 -international heart and vascular disease journal,1 -international indigenous policy journal,1 -international journal for talent development and creativity,1 -international journal for the study of new religions,1 -international journal of advanced computer technology,0 -international journal of applied environmental sciences,0 -international journal of astronomy and astrophysics,0 -"international journal of business, humanities and technology",0 -international journal of childbirth,1 -international journal of clinical medicine,0 -international journal of clinical psychiatry and mental health,0 -international journal of computer and electrical engineering,0 -international journal of computer science in sport,1 -international journal of computer theory and engineering,0 -international journal of english linguistics,0 -international journal of eportfolio,0 -international journal of fashion studies,1 -international journal of finance and accounting,0 -international journal of finance and banking,0 -international journal of geosciences,0 -international journal of higher education management,0 -international journal of material science,0 -international journal of modern sciences and engineering technology,0 -international journal of neurorehabilitation,0 -international journal of occupational health and public health nursing,1 -international journal of progressive education,1 -international journal of social media and interactive learning environments,1 -"international journal of society, culture and language",1 -international journal of systems and society,1 -international journal of tomography and simulation,0 -international journal of virtual worlds and human computer interaction,0 -international journal of wine research,0 -international review of chemical engineering,0 -international review of public administration,1 -investigative genetics,1 -irish naturalists' journal,0 -italian journal of sociology of education,1 -izvestiâ vysših u?ebnyh zavedenij : himiâ i himi?eskaâ tehnologiâ,0 -jacet language teacher cognition research bulletin,0 -jahrbuch des vereins für niederdeutsche sprachforschung,1 -jeongbo beobhag,0 -jmir medical informatics,1 -journal of addiction medicine and therapy,0 -journal of agricultural science and technology a,0 -journal of analytical methods in chemistry,0 -journal of anesthesia and clinical research,0 -journal of applied engineering sciences,0 -journal of arts and humanities,0 -journal of asian ceramic societies,0 -journal of basic and applied sciences,0 -journal of biomaterials and nanobiotechnology,0 -journal of children´s orthopaedics,1 -journal of china and international relations,1 -journal of clinical and diagnostic research,0 -journal of combat sports and martial arts,0 -journal of complex networks,1 -journal of computational medicine,1 -journal of contemporary thought,1 -"journal of education policy, planning and administration",1 -journal of energy,0 -journal of engineering science and technology review,1 -"journal of entrepreneurship, management and innovation",1 -journal of environmental and analytical toxicology,0 -journal of environmental and occupational science,1 -journal of epidemiology and global health,1 -journal of european psychology students,1 -journal of excipients and food chemicals,0 -journal of forensic practice,1 -journal of function spaces,0 -journal of global antimicrobial resistance,1 -journal of human rights and the environment,1 -võro instituudi toimõtisõq,1 -international conference on intelligent human-machine systems and cybernetics,0 -international workshop on collaboration teaching of globally distributed software development,0 -international workshop on software engineering education based on real-world experiences,0 -gazō fugōka shinpojiumu,0 -international conference on sensor technologies and applications,0 -annual asian simulation and ai in computer games international conference,0 -asia-pacific microwave conference,1 -international conference on microwave and millimeter wave technology,0 -ieee/asme international conference on advanced intelligent mechatronics,1 -international workshop on software engineering for sensor network applications,0 -dual eye-tracking workshop,0 -international conference on advances in computer-human interactions,0 -ieee international conference on digital game and intelligent toy enhanced learning,1 -"european conference on colour in graphics, image and vision",0 -international conference on antenna theory and techniques,0 -north-east asia academic forum,0 -international workshop on value-based software traceability,0 -international conference on internet and web applications and services,0 -acta societatis morgensternianae,0 -international conference on computer modeling and simulation,0 -proceedings in food system dynamics,0 -advanced information networking and applications workshops,0 -proceedings of the asia and south pacific design automation conference,0 -proceedings : australasian database conference,0 -canadian conference on artificial intelligence,0 -proceedings of the ieee international conference on intelligent transportation systems,0 -digest of the ieee antennas and propagation society international symposium,1 -"ieee conference on robotics, automation and mechatronics",1 -ieee international conference on automation science and engineering,1 -ieee international conference on broadband network and multimedia technology,0 -international conference on distributed computing in sensor systems and workshops,1 -"conference proceedings : ieee international conference on networking, sensing and control",1 -ieee international conference on rehabilitation robotics,1 -ieee international symposium on computational intelligence and informatics,0 -proceedings of the international symposium on parallel and distributed processing with applications,1 -ieee/ifip network operations and management symposium,1 -ieee-ras international conference on humanoid robots,1 -proceedings of the innovative applications of artificial intelligence conference,1 -international conference on algorithms and architectures for parallel processing,1 -international conference on communications and information technology,0 -proceedings of the international conference on networking and distributed computing,1 -international conference on field and service robotics,1 -"international conference on infrared, millimeter, and terahertz waves",1 -proceedings of the international conference on parallel processing,1 -international conference on software engineering and knowledge engineering,1 -international hl7 interoperability conference,1 -international joint conference on software technologies,0 -international journal of modern physics : conference series,0 -international symposium on robotics,0 -international symposium on robotics research,0 -ieee international symposium on wireless pervasive computing,1 -"international journal of bioscience, biochemistry, bioinformatics",0 -proceedings on privacy enhancing technologies,1 -european simulation and modelling conference,1 -proceedings of the working conference on reverse engineering,1 -studia musica,0 -3d research,1 -aalto university publication series : art + design + architecture,0 -aalto university publication series : doctoral theses,0 -acm inroads,0 -acm transactions on intelligent systems and technology,1 -acm transactions on reconfigurable technology and systems,1 -acm transactions on storage,1 -acs macro letters,2 -acs sustainable chemistry and engineering,1 -acta universitatis sapientiae film and media studies,0 -ada,1 -advanced electromagnetics,0 -advanced healthcare materials,2 -advances in artificial neural systems,1 -advances in cancer: research and treatment,0 -advances in clinical neuroscience and rehabilitation,1 -advances in electronics and telecommunications,0 -advances in intelligent systems and computing,1 -advances in optoelectronics,0 -advances in stem cells,0 -agriculture and food security,1 -aib insights,0 -algorithms,1 -ama educators' proceedings,0 -proceedings of the association for information science and technology,1 -annals of daaam and proceedings,1 -annals of innovation and entrepreneurship,0 -antitrust bulletin,1 -applied finance letters,0 -applied mechanics and materials,1 -arena romanistica,1 -arquipelago: life and marine sciences,0 -"art, design and communication in higher education",2 -artefactum,1 -artificial life and robotics,1 -artificial satellites,0 -arts and health,1 -asia pacific world,1 -asia pacific: perspectives,1 -asian journal of business ethics,0 -asian journal of scientific research,0 -atti dellaccademia peloritana dei pericolanti: classe di scienze fisiche matematiche e naturali,0 -australian journal of environmental education,1 -beilstein journal of nanotechnology,1 -beiträge zur entomologie,0 -biodiversity journal,0 -biosocieties,2 -biznes-informatika,0 -boletin de la sociedad entomologica aragonesa,0 -brain connectivity,1 -brazilian review of finance,0 -brodogradnja,1 -brown journal of world affairs,0 -bulletin de la société vaudoise des sciences naturelles,0 -bulletin of the polish academy of sciences: technical sciences,1 -cambridge yearbook of european legal studies,3 -canadian journal of electrical and computer engineering,0 -celebrity studies,1 -cell reports,3 -central asia and the caucasus,0 -centrepiece,0 -challenges,1 -chemical engineering education,1 -chinese business review,0 -chinese journal of communication,1 -climate and development,0 -comicalités,0 -communitas - soobshestvo,0 -compare: a journal of comparative and international education,1 -comunicazioni sociali,1 -concurrences,1 -connexions: international professional communication journal,1 -corpora and language in use,0 -cross-currents,0 -cultural history,2 -"culture, theory and critique",2 -current perspectives in social theory,1 -denki gakkai ronbunshi. b: denryoku enerugi bumonshi,0 -der sprachdienst,0 -derrida today,1 -deshima,0 -swedish design research journal,0 -dianji yu kongzhi xuebao,0 -diaspora studies,1 -die betriebswirtschaft,0 -direktor shkoly,0 -distributed generation and alternative energy journal,0 -diversity,1 -docomomo journal,0 -ear se l newsletter,0 -ebapebr cadernos,0 -ecological informatics,1 -ecological parasitology and immunology,0 -economics and sociology,1 -economics of transportation,0 -ecosystem services,2 -ecs journal of solid state science and technology,1 -ecs solid state letters,0 -education for chemical engineers,1 -education sciences,1 -educationia confab,0 -eizo joho media gakkaishi,0 -ejournal of edemocracy and open government,1 -ekonomitsheskaja nauka sovremennoj rossii,0 -ekonomitsheskaja sotsiologija,1 -ekonomitsheskie issledovanija,0 -èkonomičeskij žurnal vysšej školy èkonomiki,0 -e-learning papers,1 -electricity journal,1 -elektronika ir elektrotechnika,0 -eletricidade moderna,0 -endangered species research,1 -"energy, sustainability and society",1 -engineering materials,0 -entertext,0 -entrepreneurship research journal,1 -journal of environmental economics and policy,1 -environmental innovation and societal transitions,2 -epidemics,1 -ethics and social welfare,1 -euro journal on computational optimization,1 -euro journal on decision processes,1 -euro journal on transportation and logistics,1 -european comic art,1 -european journal for research on the education and learning of adults,1 -european journal for young scientists and engineers,0 -european journal of biomedical informatics,0 -european transport law,1 -evolving systems,1 -finance a uver,0 -folklivsstudier,0 -food security,1 -form,0 -forsait,0 -"forum of mathematics, pi",3 -"forum of mathematics, sigma",2 -fossa,0 -foundations and trends in machine learning,3 -frequenz,0 -fresh produce journal,0 -frontiers in neuroinformatics,1 -frontiers in plant science,1 -games for health,1 -general systems bulletin,0 -geoforum perspektiv,0 -geographia polonica,1 -"geoscientific instrumentation, methods and data systems",0 -gerontechnology,1 -global business and economics anthology,0 -global journal of business research,0 -global studies of childhood,1 -glottopol,1 -gumanitarnaja mysl juga rossii,0 -heraldisk tidsskrift,1 -hopos,1 -human-centric computing and information sciences,1 -hydrology and earth system sciences discussions,0 -ibima business review,0 -icame journal,1 -ieee journal of emerging and selected topics in power electronics,2 -ieee multidisciplinary engineering education magazine,1 -ieee transactions on autonomous mental development,1 -ieee wireless communications letters,2 -iet wireless sensor systems,1 -ifla journal,0 -ikaros,0 -il giornale dellarchitettura,0 -imagetext,1 -i-manager’s journal on management,0 -imt-rapport,0 -imvi open mathematical education notes,0 -information security journal,1 -innovations in systems and software engineering,1 -intellectual property quarterly,0 -intelligent service robotics,1 -interdisciplinary studies journal,0 -interface: a journal for and about social movements,1 -international company and commercial law review,1 -international journal for researcher development,1 -international journal of academic research in business and social sciences,0 -international journal of academic research in progressive education and development,0 -international journal of acoustics and vibration,0 -international journal of advanced mechatronic systems,1 -international journal of ambient computing and intelligence,1 -international journal of ambient energy,0 -international journal of applied behavioral economics,0 -international journal of applied logistics,1 -international journal of biometrics,1 -international journal of case reports in medicine,0 -international journal of chinese culture and management,1 -international journal of climate change strategies and management,1 -international journal of cognitive biometrics,0 -international journal of computer applications,0 -international journal of computer network and information security,0 -international journal of corrosion,0 -international journal of critical indigenous studies,0 -"international journal of data mining, modelling and management",1 -international journal of disaster risk reduction,2 -international journal of disclosure and governance,1 -international journal of ecology,0 -international journal of education and information technologies,1 -international journal of electronic finance,1 -international journal of energy and environment,1 -international journal of engineering business management,1 -international journal of engineering pedagogy,1 -international journal of e-planning research,1 -international journal of event and festival management,1 -international journal of gender and entrepreneurship,1 -international journal of handheld computing research,0 -international journal of higher education,0 -international journal of human factors and ergonomics,1 -international journal of hybrid information technology,0 -international journal of information ethics,1 -international journal of information security and privacy,1 -international journal of information system modeling and design,1 -international journal of information systems and social change,1 -international journal of innovative research and development,0 -international journal of intelligent transport systems research,1 -international journal of interactive worlds,0 -international journal of interdisciplinary telecommunications and networking,0 -international journal of knowledge-based organizations,1 -international journal of machine consciousness,1 -international journal of manufacturing research,1 -international journal of mass customisation,0 -international journal of mechatronics and manufacturing systems,1 -international journal of medical engineering and informatics,1 -"international journal of modeling, simulation, and scientific computing",1 -international journal of multiple research approaches,1 -international journal of networking and computing,0 -international journal of performance measurement,0 -international journal of physical sciences,0 -international journal of productivity and quality management,1 -international journal of quantitative research in education,1 -international journal of renewable energy and biofuels,0 -international journal of rf technologies,0 -international journal of semantic computing,1 -international journal of social and humanistic computing,1 -international journal of social network mining,0 -international journal of social pedagogy,1 -international journal of social robotics,2 -international journal of society systems science,1 -international journal of space-based and situated computing,0 -international journal of strategic engineering asset management,1 -international journal of strategic information technology and applications,0 -international journal of sustainable building technology and urban development,1 -international journal of sustainable society,1 -international journal of synergy and research,0 -international journal of vehicle autonomous systems,1 -international journal of vehicle systems modelling and testing,1 -international journal of veterinary medicine,0 -international journal of virtual and personal learning environments,1 -international journal of wireless and mobile networks,0 -international journal on advances in internet technology,0 -international journal on advances in life sciences,0 -international journal on information systems and management in creative e-media,0 -international proceedings of economics development and research,0 -international real estate review,0 -international review on public and nonprofit marketing,1 -international series in operations research and management science,0 -international series on information systems and management in creative e-media,1 -iza journal of european labor studies,1 -iza journal of labor economics,1 -iza journal of labor policy,1 -japanese journal of hygiene,1 -jcmcc,1 -journal of accounting and auditing: research and practice,0 -journal of administrative sciences and technology,0 -journal of adult and continuing education,1 -journal of african research in business and technology,0 -journal of ambient intelligence and humanized computing,1 -journal of analysis,0 -journal of applied operational research,1 -journal of arts and communities,1 -journal of asia pacific studies,1 -journal of big data,1 -journal of business continuity and emergency planning,0 -journal of civil engineering and architecture,0 -journal of cloud computing,1 -journal of coastal conservation,1 -journal of computer networks and communications,1 -journal of contemporary accounting and economics,1 -journal of co-operative studies,0 -journal of cryptographic engineering,1 -journal of dentistry research,0 -journal of destination marketing and management,1 -journal of east asia and international law,1 -journal of eastern europe research in business and economics,0 -journal of economics studies and research,0 -journal of educational data mining,1 -journal of e-government studies and best practices,0 -journal of e-health management,0 -journal of e-learning and higher education,0 -journal of e-learning and knowledge society,1 -journal of electrical engineering,0 -journal of electronic banking systems,0 -journal of english as a lingua franca,1 -journal of enterprise resource planning studies,0 -journal of entrepreneurship: research & practice,0 -journal of environmental science and engineering,0 -journal of eu research in business,0 -journal of financial studies and research,0 -journal of global fashion marketing,0 -journal of global mobility,1 -journal of global resarch of computer science,0 -journal of graphic novels and comics,1 -journal of high speed networks,1 -journal of hospitality and tourism,0 -journal of human ergology,1 -journal of human resources management research,0 -journal of human rights practice,1 -journal of human-robot interaction,1 -journal of information assurance and cybersecurity,0 -journal of information privacy and security,1 -journal of innovation and business best practices,0 -journal of innovation management in small and medium enterprise,0 -journal of integrated care,1 -journal of integrated design and process science,1 -journal of international environmental application and science,0 -journal of international studies,1 -journal of internet and e-business studies,0 -journal of internet banking and commerce,0 -journal of internet social networking and virtual communities,0 -journal of islamic banking and business research,0 -journal of knowledge economy,1 -journal of language modelling,1 -journal of low power electronics and applications,0 -journal of management control,1 -journal of marketing development and competitiveness,0 -journal of marketing research and case studies,0 -journal of materials chemistry c,1 -journal of mathematical neuroscience,0 -journal of mechanics engineering and automation,0 -journal of mechanisms and robotics,2 -journal of micro-bio robotics,0 -"journal of mobile technologies, knowledge, and society",0 -journal of modern education review,0 -journal of nanoelectronics and optoelectronics,0 -journal of north african research in business,0 -journal of opioid management,1 -journal of organizational knowledge management,0 -journal of organizational management studies,0 -journal of outsourcing and organizational information management,0 -journal of physiological anthropology,1 -journal of psychological type,0 -journal of renewable materials,0 -journal of research in industrial organization,0 -journal of research in obesity,0 -journal of robotics and mechatronics,1 -journal of sensors,1 -journal of service science research,1 -journal of small satellites,1 -journal of software and systems development,0 -journal of software,1 -journal of sonic studies,1 -journal of southeast asian research,0 -journal of strategy and management,1 -journal of supply chain and customer relationship management,0 -journal of sustainable development,0 -journal of sustainable real estate,0 -journal of systems and information technology,1 -journal of technology innovations in renewable energy,0 -journal of the beijing institute of technology,0 -journal of the harbin institute of technology,0 -"journal of the institute of engineers, malaysia",0 -journal of thermal science and engineering applications,1 -journal of trust research,1 -journal of virology and microbiology,0 -journal of virtual studies,0 -journal of water and land development,1 -journal of zhejiang university. science c: computers and electronics,1 -journal on data semantics,1 -korporativnye finansy,0 -kuenstliche intelligenz,1 -language dynamics and change,2 -"law, ethics and philosophy",1 -"learning, culture and social interaction",1 -lecture notes in electrical engineering,1 -"life sciences, society and policy",1 -liminalities,1 -literary journalism studies,1 -logistyka,0 -"london journal of tourism, sport and creative industries",0 -lumat,1 -magyar tudomany,0 -making futures,0 -management et avenir,0 -mbio,2 -mcgill international journal of sustainable development law and policy,1 -mechademia,0 -media and communication,1 -memorie della societa astronomica italiana,0 -metabolites,1 -migration studies,1 -mobile media and communication,2 -mycology,0 -nanoscience and nanotechnology letters,0 -narrative works,1 -nature conservation,1 -ncsl international measure,0 -nonlinear biomedical physics,0 -nordic journal of health economics,1 -obshestvennye nauki i sovremennost,0 -oeconomia - history/methodology/philosophy,0 -økonomi & politik,1 -open acces journal of forensic psychology,1 -open journal of neuroscience,0 -organizacija,0 -organizatsionnaja psihologija,0 -papers in mediaeval studies,1 -pasos,0 -pediatrics research international journal,0 -peerj,1 -philosophical news,1 -physics today,1 -pisma v zhurnal tekhnicheskoi fiziki,0 -planning education,0 -plastic surgery: an international journal,0 -policy and internet,1 -politeija,0 -powerplant chemistry,0 -pragmatics and society,2 -pravo,0 -proceedings of the international astronomical union,1 -progress in business innovation and technology management,0 -progress in electromagnetics research : letters,1 -projectics,0 -projektitoiminta,0 -przeglad elektrotechniczny,0 -psihologija i ekonomika,0 -public administration research,0 -qualitative communication research,1 -radioengineering,1 -records of the western australian museum,0 -region,1 -region: ekonomika i sotsiologija,0 -religion and society in central and eastern europe,0 -remote sensing letters,1 -research in accounting regulation,1 -research in endocrinology,0 -research in immunology,0 -research in neurology,0 -"research journal of applied science, engineering and technology",0 -review of behavioral finance,1 -revista de aracnologia,0 -revista romana de jurnalism si comunicare,1 -romani studies,1 -rossijskij zhurnal menedzhmenta,1 -rudy i metale niezelazne,0 -saga och sed: kungliga gustav adolfs akadeniens aarsbok,1 -sage open,1 -sanat duenyamiz,0 -sane journal,1 -scandinavian journal of comic art,1 -school mental health,1 -science and culture,0 -science fiction film and television,1 -semantic web,2 -service oriented computing and applications,1 -ship technology research,1 -ships and offshore structures,1 -shuili shuidian kuaibao,0 -sigmetrics performance evaluation review,0 -significação,1 -silicon,1 -slovene,1 -social and environmental accountability journal,1 -social sciences,1 -social sciences and missions,1 -"sotsiologija: teorija, metody, marketing",0 -soundeffects,1 -springerplus,1 -sredneje professionalnoe obrazovanie,0 -studia orientalia electronica,1 -studies in agricultural economics,1 -studies in comics,1 -studies in second language learning and teaching,1 -surgery: current research,0 -sustainable environment research,0 -synthesis lectures on the semantic web: theory and technology,0 -talent development and excellence,1 -team performance management,0 -teemakirja,1 -tekst i dyskurs,0 -terra economicus,0 -the european journal of applied linguistics and tefl,0 -the florida communication journal,1 -the forensic of pi kappa delta,1 -the international journal of management education,1 -the journal for history of analytical philosophy,1 -the mena journal of business case studies,0 -the messenger,0 -the nordic textile journal,1 -the open management journal,0 -the open medical imaging journal,0 -the open neuroimaging journal,0 -the open occupational health and safety journal,0 -the open waste management journal,0 -thélème,0 -thermal spray bulletin,1 -thesis: teorija i istorija ekonomitsheskih i sotsialnyh institutov i sistem,0 -thought: a journal of philosophy,2 -tourism management perspectives,1 -transactions on emerging telecommunications technologies,1 -transactions on large-scale data- and knowledge-centered systems,1 -transformative works and cultures,1 -transit,0 -transnav,0 -unep course series,1 -universitetskoe upravlenie: praktika i analiz,0 -urban climate,1 -vestnik obshestvennogo mnenija,0 -vestnik rudn,0 -victims and offenders,1 -visual culture and gender,1 -voprosy ekonomiki i prava,0 -voprosy obrazovanija,0 -water alternatives,1 -water asset management international,0 -wiley interdisciplinary reviews: climate change,1 -wiley interdisciplinary reviews : data mining and knowledge discovery,1 -wiley interdisciplinary reviews: energy and environment,1 -wit transactions on ecology and the environment,0 -world journal of nuclear science and technology,0 -writing systems research,1 -xitong gongcheng lilun yu shijian,0 -xrds: crossroads,0 -yearbook of the international society for the didactics of history,1 -zhaoming gongcheng xuebao,0 -zhendong yu chongji,0 -zhuangshi,0 -zhurnal institutsionalnyh issledovanij,0 -zhurnal issledovanij sotsialnoj politiki,1 -zhurnal novoj ekonomitsheskoj assotsiatsii,0 -obcianska spolocnost,0 -a. b. the samaritan news,0 -accounting research journal,1 -acta myologica,1 -acta polytechnica hungarica,1 -acta semiotica estica,0 -journal of addiction research and therapy,0 -advanced optical technologies,1 -advances in bioinformatics,1 -advances in internet of things,0 -advances in management and applied economics,0 -advances in meteorology,1 -advances in nutrition,1 -advances in science and technology,0 -advances in virology,0 -africa education review,0 -african journal of pharmacy and pharmacology,0 -agon,0 -agricolan julkaisusarja,0 -agricultural economics review,1 -akadeemia,0 -allergologia et immunopathologia,1 -amb express,1 -ambiencia,0 -american journal of human ecology,0 -american pharmaceutical review,1 -american political thought,0 -analytic teaching and philosophical praxis,1 -anaphora,0 -anarchist studies,1 -andrology,0 -anglo saxonica,0 -animal biodiversity and conservation,1 -annals of maxillofacial surgery,0 -"annual reports on the progress of chemistry. section c, physical chemistry",1 -anthropology of this century,0 -antibiotics,1 -antimicrobial resistance & infection control,1 -antiqua,0 -applied and environmental soil science,1 -applied computational intelligence and soft computing,0 -applied mathematics,0 -applied psychology: health and well-being,1 -arab world english journal,1 -arachnologische mitteilungen,0 -archives des sciences,0 -arctic review on law and politics,2 -arctic yearbook,1 -arctoa,0 -arctos : supplementum,1 -argument: biannual philosophical journal,1 -ganhanqu dili,0 -arpn journal of systems and software,0 -arxiv.org,0 -asia pacific allergy,0 -"asia pacific journal of health, sport and physical education",1 -asian journal of control,1 -asian journal of physics,0 -asian journal of political science,1 -asian review of accounting,0 -asian security,1 -aspasia,1 -astorica,0 -atmospheric chemistry and physics discussions,0 -australian journal of basic and applied sciences,0 -the australian journal of indigenous education,1 -australian policy online,0 -australian universities review,1 -babylonia,0 -baltic rim economies,0 -balto-scandia,1 -baraton interdisplinary research journal,0 -best practice,0 -bibliophilos,0 -bibliotheca lichenologica,0 -bio-complexity,1 -biomass conversion and biorefinery,1 -biosemiotics,1 -blood cancer journal,2 -blood transfusion,1 -bmj case reports,1 -borealis,0 -botanica complutensis,0 -british birds,0 -british journal of medicine and medical research,0 -british journal of neuroscience nursing,1 -buildings,1 -bulletin of the technical committee on learning technology,1 -bulletin of zoological nomenclature,0 -business and management research,0 -byzantina symmeikta,0 -canadian academy of child and adolescent psychiatry. journal,1 -cancer growth and metastasis,0 -cancer management and research,1 -cancer medicine,1 -cancer nanotechnology,1 -case reports in cardiology,0 -case reports in medicine,0 -case reports in neurological medicine,1 -catalysis for sustainable energy,0 -catalysts,1 -central european journal of international & security studies,0 -ceu political science journal,0 -eu-russia papers,0 -chaotic modeling and simulation journal,1 -chemical product and process modeling,1 -chemistry for sustainable development,0 -child and adolescent psychiatry and mental health,1 -child development research,1 -childhood education,1 -circumpolar health supplements,0 -città e storia,0 -clinical laboratory,1 -cms note,0 -cold spring harbor perspectives in medicine,1 -environmental evidence,0 -silniki spalinowe,0 -commons.fi,0 -communications in information science and management engineering,0 -comparativ,1 -comptes rendus de lacadémie bulgare des sciences,0 -computational science & discovery,1 -kreativnaâ hirurgiâ i onkologiâ,0 -kriminologija & socijalna integracija,0 -critical legal thinking: law & the political,0 -critical literacy: theories and practices,1 -crystals,1 -csi journal of computing,0 -ctrl-z,1 -cuadernos de pedagogia,0 -culture & history digital journal,0 -current catalysis,0 -current gerontology and geriatrics research,1 -current opinion in chemical engineering,1 -current pediatric research,0 -current physical chemistry,0 -current topics in genetics,0 -current translational geriatrics and experimental gerontology reports,1 -curriculum perspectives,1 -curtiss botanical magazine,0 -cybernetics and physics,0 -sovet rektorov,0 -darbai ir dienos,0 -das mittelalter,1 -revue de linguistique latine du centre alfred ernout,1 -dental hypotheses,0 -development dialogue,1 -dialogo andino,0 -didacta varia (helsingin yliopisto. opettajankoulutuslaitos),0 -digital defoe,0 -dimensio,0 -world film locations,0 -diritto & diritti,0 -dispute resolution studies review,0 -diversite,0 -dlz primus schwein,0 -dokumente,0 -drinking water engineering and science,1 -droit de lenvironnement,0 -early education,1 -early modern morals excerpts,0 -east african journal of public health,1 -east african researcher,0 -east european memory studies,0 -economia. seria management,0 -economic analysis and policy,1 -economics and business letters,1 -ekonomika ir vadyba,0 -edamba journal,0 -edinburgh law review,1 -education and health,1 -education for primary care,1 -education research international,0 -eesti rahva muuseumi aastaraamat,0 -efsa journal,1 -egyháztörténeti szemle,0 -e-international relations,0 -ejournal of oral and maxillofacial research,0 -electronic international journal of time use research,1 -electronic publications of pan-european institute,0 -elektrotehniski vestnik,0 -energy efficiency,1 -energy security forum,0 -energy systems,1 -"enfances, familles, générations",1 -entomofauna,0 -entomologiske meddelelser,0 -vides un klimata tehnolo?ijas,0 -environmental economics,0 -environmental health,1 -epileptologia,0 -e-review of tourism research,0 -espanol actual,1 -espéculo,0 -etudes caribeennes,1 -etui policy brief,0 -eurailmag,0 -eurasian journal of biosciences,0 -euroasian entomological journal,0 -euro-atlantic quarterly,0 -eurohealth,0 -eurointervention,1 -europa ethnica,1 -european journal of environmental sciences,0 -european journal of experimental biology,0 -european journal of homelessness,0 -european science and technology review,0 -european spatial research and policy,0 -evodevo,1 -experimental and therapeutic medicine,1 -experimental hematology & oncology,1 -expert review of cardiovascular therapy,1 -expert review of clinical immunology,1 -expert review of clinical pharmacology,1 -expert review of respiratory medicine,1 -eyesreg,0 -"facts, views & vision in obgyn",0 -a falu,0 -fast capitalism,1 -feminists@law,1 -ff network,0 -film international,1 -finisterra,0 -finnanest,0 -flavour,1 -fleischwirtschaft international,0 -floriculture and ornamental biotechnology,0 -formazione & insegnamento,0 -foro de derecho mercantil,1 -forum for nordic dermato-venereology,1 -forum für osteuropäische ideen- und zeitgeschichte,0 -forum noveyshey vostochnoevropeyskoy istorii i kul¿tury,0 -fórum társadalomtudományi szemle,1 -frontiers in aging neuroscience,1 -frontiers in cellular and infection microbiology,1 -frontiers in immunology,1 -frontiers in neurology,1 -frontiers of education in china,1 -future oncology,1 -gastroenterology and hepatology from bed to bench,1 -genes,1 -geograficidade,0 -"geoscientific instrumentation, methods and data systems discussions",0 -geo-spatial information science,1 -gerontology & geriatrics education,0 -giornale italiano di medicina del lavoro ed ergonomia,1 -giroskopiya i navigatsiya,0 -glimpse,0 -global academic society journal,0 -global business and management research,0 -global environment,1 -global perspective on engineering management,0 -green and sustainable chemistry,0 -handbook of translation studies,1 -health and technology,1 -helsinki review of global governance,0 -hematology reports,1 -herpetology notes,0 -holmi,0 -hoppou jimbun kenkyuu,0 -hospitaali,0 -h-soz-u-kult,0 -human communication: a journal of the pacific and asian communication association,0 -hybris,0 -iafor journal of arts and humanities,0 -iartem journal,0 -icic express letters,1 -icst transactions on ubiquitous environments,0 -ieee journal on emerging and selected topics in circuits and systems,2 -if,0 -il fisioterapista,0 -il giornale di chirurgia,1 -ilha do desterro,0 -i-managers journal of education technology,0 -imex,0 -indian journal of applied linguistics,0 -indian journal of endocrinology and metabolism,0 -industrial combustion,1 -the information management journal,0 -ingenierie des systemes dinformation,1 -inorganic materials: applied research,0 -intelligent control and automation,0 -id&a interaction design & architecture(s),1 -international energy law review,1 -international family law,1 -international journal about parents in education,1 -international journal for court administration,1 -international journal for cross-displinary subjects in education,0 -"international journal of adaptive, resilient and autonomic systems",1 -international journal of advanced manufacturing systems,0 -international journal of advanced renewable energy research,0 -international journal of advances in management and economics,0 -international journal of agile and extreme software development,1 -international journal of applied mechanics,1 -international journal of artificial intelligence,0 -international journal of atmospheric sciences,0 -international journal of behavioural accounting and finance,0 -international journal of biomedical imaging,1 -international journal of biomedical science,0 -international journal of botany,0 -international journal of business and social science,0 -international journal of cell biology,1 -international journal of chemical engineering,0 -international journal of child care and education,1 -"international journal of child, youth and family studies",1 -international journal of chronic obstructive pulmonary disease,1 -international journal of computer assisted radiology and surgery,1 -international journal of cooperative studies,0 -international journal of current research,0 -"international journal of cyber behavior, psychology and learning",0 -international journal of dentistry,1 -international journal of digital information and wireless communications,0 -international journal of digital multimedia broadcasting,1 -international journal of education,0 -international journal of electrical engineering and technology,0 -international journal of endocrinology,1 -international journal of engineering and industries,0 -international journal of enhanced research in science technology and engineering,0 -international journal of evolutionary biology,0 -international journal of gaming and computer-mediated simulations,1 -international journal of health promotion and education,1 -international journal of humanities and social science,0 -international journal of hypertension,1 -international journal of industrial engineering,0 -international journal of inflammation,1 -international journal of information communication technologies and human development,1 -international journal of information processing and management,0 -international journal of information systems in the service sector,1 -international journal of information technology and business management,0 -"international journal of innovative computing, information and control",0 -international journal of interactive communication systems and technologies,1 -international journal of interactive multimedia and artificial intelligence,0 -international journal of interdisciplinary social sciences,1 -international journal of islamic architecture,0 -international journal of knowledge engineering and soft data paradigms,0 -international journal of knowledge society research,1 -"international journal of management, knowledge and learning",1 -international journal of mathematical modelling and numerical optimization,0 -international journal on measurement technologies and instrumentation engineering,0 -nyhedsbrev,0 -international journal of mining engineering and mineral processing,0 -international journal of modelling & simulation,1 -international journal of modern engineering research,0 -international journal of multicultural education,1 -international journal of music business research,0 -international journal of ocean systems management,0 -international journal of oral-medical sciences,1 -international journal of pediatrics,0 -international journal of peptides,1 -international journal of politics and good governance,0 -international journal of polymer science,0 -international journal of probiotics & prebiotics,1 -international journal of public policy,1 -international journal of reasoning-based intelligent systems,1 -international journal of renewable energy research,0 -international journal of rheumatology,1 -international journal of smart sensing and intelligent systems,1 -international journal of social forestry,1 -international journal of theoretical and mathematical physics,0 -international journal of therapy and rehabilitation,1 -international journal of transitions and innovation systems,0 -international journal of transitions in childhood,1 -international journal of trends in medicine,0 -international journal of zoology,0 -international journal on advances in systems and measurements,0 -international journal on advances in telecommunications,0 -international journal on food system dynamics,1 -international practice development journal,1 -international public management review,1 -international review of business and social sciences,0 -internet journal of pathology,0 -iop conference series : materials science and engineering,1 -iranian journal of pharmaceutical research,1 -international electronic journal of environmental education,1 -the journal of media literacy education,1 -chemelectrochem,1 -european structural and investment funds journal,1 -erasmus law review,1 -global food security,2 -journal of outdoor recreation and tourism,1 -transportation geotechnics,1 -case studies in construction materials,1 -journal of water process engineering,1 -ned geref teologiese tydskrif,1 -ijrw: international journal of waste resources,0 -sur le journalisme,1 -frontiers in bioengineering and biotechnology,1 -frontiers in physics,1 -special matrices,1 -international journal of educational organization and leadership,1 -techtrends,1 -asdiwal,1 -aalto university publication series : science + technology,0 -annales de la faculté des sciences de toulouse,1 -middle east african journal of ophthalmology,1 -asia-pacific journal of ophthalmology,1 -journal of finance and management in public services,1 -russian and east european studies indexed journal reference guide,0 -fenno-ugrica suecana. nova series,1 -music theory and analysis,1 -mousikos logos,0 -analitica,0 -musica humana,1 -"music, sound, and the moving image",0 -gli spazi della musica,1 -evental aesthetics,1 -rock music studies,1 -porn studies,1 -animal frontiers,1 -physical review applied,2 -optica,3 -easychair proceedings in computing,0 -international workshop on security in information systems,0 -publications du lma,0 -international computer science and engineering conference,0 -international conference on advances in information technology,0 -toxichem krimtech,0 -international conference on auditory-visual speech processing,1 -leibniz international proceedings in informatics,1 -vanavaravedaja,0 -international m3 semantic interoperability workshop,0 -swedish workshop on multicore computing,0 -sophia journal of european studies,0 -tyrrhenian international workshop on digital communications,0 -skärgård,0 -international system safety conference,0 -international conference on adaptive and self-adaptive systems and applications,0 -documents of the evangelical lutheran church of finland,1 -european conference on simulation and ai in computer games,1 -proceedings of the international iscram conference,0 -simpósio brasileiro de telecomunicações,0 -international workshop on advanced optical imaging and metrology,0 -ieee nordic-mediterranean workshop on time-to-digital converters,0 -international conference on games and virtual worlds for serious applications,0 -ieee/sice international symposium on system integration,0 -conference proceedings : congress on research in dance,0 -international conference on sensor network security technology and privacy communication system,0 -berlin human-machine systems workshop,0 -international conference on computer applications technology,0 -international black sea conference on communications and networking,0 -ieee/cic international conference on communications in china,0 -international symposium on telecommunications,0 -ieee international conference on information science and technology,0 -ieee international workshop on measurements and networking,0 -international conference on wireless communications and signal processing,0 -language learning and teaching conference,0 -international conference on signal and information processing,0 -constantinides international workshop on signal processing,0 -iasted international conference on web-based education,0 -international conference on ad hoc networks,0 -international conference on electrical and computer engineering,0 -power engineering and optimization conference,0 -lecture notes in mechanical engineering,1 -lecture notes in production engineering,1 -special workshop of stochastic programming community,0 -"ieee international conference on signal processing, computing and control",0 -international conference on electric power and energy conversion systems,0 -world congress on information and communication technologies,0 -wireless world research forum meeting,0 -international conference on advances in mechanical and robotics engineering,0 -"aukstuju mokyklu vaidmuo visuomeneje: issukiai, tendencijos ir perspektyvos",0 -the proceedings of the international offshore and polar engineering conference,1 -european conference on artificial life,0 -international symposium on topical problems in field of electrical and power engineering,0 -proceedings of the european turbomachinery conference,1 -international conference on smart communications in network technologies,0 -cigre international colloquium on low frequency electromagnetic fields,0 -nordic conference on pattern languages of programs,0 -international conference on distributed computer and communications networks,0 -proceedings of caol,0 -international workshop on antenna technology,0 -workshop on planning and robotics,0 -international conference on robotics and mechatronics,0 -international conference on pervasive embedded computing and communication systems,0 -ieee workshop on control and modeling for power electronics,1 -international conference surveillance,0 -"ieee international symposium on precision clock synchronization for measurement, control, and communication",0 -ieee/npss symposium on fusion engineering,1 -international conference radioelektronika,0 -electrical overstress/electrostatic discharge symposium proceedings,0 -conference on future internet communications,0 -international conference on queueing theory and network applications,0 -topical meeting on silicon monolithic integrated circuits in rf systems,0 -proceedings : international conference on advanced technologies for communications,0 -telecommunications forum,0 -international conference on computer modelling and simulation,0 -international mobile machine control conference,0 -proceedings : thermal performance of the exterior envelopes of whole buildings,0 -signal processing and communications applications conference,0 -"international conference on communications, signal processing and their applications",0 -international conference on signal processing,0 -"international conference on image processing, computer vision, and pattern recognition",0 -international conference on connected vehicles and expo,1 -symposium on embedded systems for real-time multimedia,0 -international conference on innovative computing technology,0 -nordic symposium on cloud computing and internet technology,0 -european scientific journal,0 -conference of the hungarian association for image processing and pattern recognition,0 -conference on gettering and defect engineering in semiconductor technology,0 -conference on metrology for solid state lighting,0 -"conference on micro- and nanotechnology sensors, systems, and applications",0 -international scientific conference electric power engineering,0 -ieee international conference on standardisation and innovation in information technology,0 -ieee electrical insulation conference,0 -international conference on information security and cryptology iscturkey,0 -theoretical issues in sign language research conference,0 -annual international conference of the british computer society`s specialist group on artificial intelligence,1 -international symposium on performance evaluation of computer and telecommunication systems,0 -"international conference on energy, environment, devices, systems, communications, computers",0 -ieee international conference on nano/micro engineered and molecular systems,0 -ieee workshop on electrical machines design control and diagnosis,0 -international conference on performance evaluation methodologies and tools,0 -tiems workshop on smart environments and ict system living lab for societal security,0 -ieee international conference on cyber-physical-social computing,0 -"international symposium on vehicle, mechanical and electrical engineering",0 -ieee jordan conference on applied electrical engineering and computing technologies,0 -"international workshop on advances in regularization, optimization, kernel methods and support vector machines: theory and applications",0 -international cryptology conference,3 -international comission on illumination centenary conference,0 -chinese control conference,0 -itc specialist seminar on energy efficient and green networking,0 -"iwa conference on instrumentation, control and automation",0 -ieee packet video workshop,0 -symmetry : culture and science,0 -micromechanics and microsystems europe conference,0 -symposium on advanced space technologies in robotics and automation,0 -conference on control and fault-tolerant systems,0 -ieee software defined networks for future networks and services,0 -iab workshop on internet technology adoption and transition,0 -workshop on privacy enhancing tools,0 -world congress on multimedia and computer science,0 -international conference on evaluation of novel approaches to software engineering,0 -ieee international conference on smart energy grid engineering,0 -ieee international new circuits and systems conference,1 -proceedings of the international symposium on technology and society,1 -international workshop on cyber-physical networking systems,0 -brics countries congress on computational intelligence,0 -international conference on digital information and communication technology and its applications,0 -international conference on electrical and electronics engineering,0 -"international proceedings of chemical, biological and environmental engineering",0 -colour and visual computing symposium,0 -iui workshop on interacting with smart objects,0 -international joint conference on computer science and software engineering,0 -ieee ismar joint workshop on tracking methods and applications and trakmark,0 -international conference on systems science,0 -ieee international conference on microelectronic systems education,0 -international symposium on quality electronic design proceedings,0 -ieee iranian conference on electrical engineering,0 -the business & management review,0 -ieee tsinghua international design management symposium,0 -international conference on parallel computing technologies,0 -european workshop on software ecosystems,0 -conference of australian institute of computer ethics,0 -workshop on non-classical models of automata and applications,1 -history of computing conference,0 -central & eastern european software engineering conference in russia,0 -"international conference on modeling and simulation of electric machines, converters and systems",0 -forskning om undervisning och lärande,1 -international conference on mixed design of integrated circuits and systems,0 -ieee international conference on ic design and technology,0 -proceedings of the ieee international symposium on industrial electronics,1 -international conference on online communities and social computing,0 -theory of stochastic processes,1 -therapeutic apheresis and dialysis,1 -therapeutic communities: the international journal for therapeutic and supportive organizations,1 -therapeutic drug monitoring,1 -therapeutic recreation journal,1 -therapeutische umschau: revue therapeutique,1 -therapie,1 -therapie familiale,1 -theriogenology,2 -thermal science,1 -thermochimica acta,1 -thermology international,1 -thermophysics and aeromechanics,1 -thesaurismata,1 -"thesaurus: boletin del instituto caro y cuervo, bogota",1 -scientific world journal,1 -thesis eleven,1 -thin solid films,1 -thinking and reasoning,1 -thinking skills and creativity,1 -thin-walled structures,2 -third text,2 -third world quarterly,2 -thomas hardy journal,1 -thomas mann jahrbuch,1 -thomas wolfe review,1 -thomist,1 -thoracic and cardiovascular surgeon,1 -thorax,2 -thrombosis and haemostasis,2 -thrombosis journal,1 -thrombosis research,1 -thunderbird international business review,1 -thyroid,1 -tidskrift för litteraturvetenskap,1 -tidskrift for politisk filosofi,1 -tidskrift utgiven av juridiska föreningen finland,1 -tidskriftet antropologi,1 -tidsskrift for arbejdsliv,1 -tidsskrift for eiendomsrett,1 -"tidsskrift for familierett, arverett og barnevernrettslige spoersmål",1 -tidsskrift for forskning i sygdom og samfund,1 -tidsskrift for islamforskning,1 -tidsskrift for kjonnsforskning,1 -tidsskrift for kulturforskning,1 -tidsskrift for rettsvitenskap,2 -tidsskrift for samfunnsforskning,1 -tidsskrift for sjelesorg,1 -scandinavian studies in language,1 -tidsskrift for strafferett,1 -tidsskrift for velferdsforskning,1 -tidsskriftet politik,1 -tiede ja edistys,1 -tiede ja ase,1 -tiedepolitiikka,1 -tieraerztliche praxis ausgabe grosstiere nutztiere,1 -tieraerztliche praxis ausgabe kleintiere heimtiere,1 -tieraerztliche umschau,1 -tietolipas,1 -tijdschrift van de koninklijke vereniging voor nederlandse muziekgeschiedenis,1 -tijdschrift voor communicatiewetenschap,1 -tijdschrift voor diergeneeskunde,1 -tijdschrift voor economische en sociale geografie,2 -tijdschrift voor filosofie,1 -tijdschrift voor geschiedenis,2 -tijdschrift voor nederlandse taal-en letterkunde,2 -tijdschrift voor rechtsgeschiedenis,2 -tijdschrift voor skandinavistiek,1 -tijdschrift voor sociale en economische geschiedenis,1 -tijdschrift voor taalbeheersing,1 -tijdschrift voor waterstaatsgeschiedenis,1 -tijdschrift voor zeegeschiedenis,1 -"time and mind: the journal of archaeology, consciousness and culture:",1 -time and society,2 -timisoara medical journal,1 -tissue and cell,1 -tissue engineering and regenerative medicine,1 -tissue engineering part a,1 -tissue engineering part b: reviews,1 -tissue engineering part c: methods,1 -tizard learning disability review,1 -zygon,1 -zygote,1 -zywnosc-nauka technologia jakosc,1 -årbok: fortidsminneforeningen,1 -näyttämö ja tutkimus,2 -studies on the inner asian languages,1 -studia fennica folkloristica,2 -studia fennica historica,2 -studia fennica anthropologica,2 -nealt proceedings series,1 -aalto-yliopiston julkaisusarja : kauppa + talous,0 -acm transactions on speech and language processing,1 -acs catalysis,3 -acs synthetic biology,2 -acta arachnologica,1 -acta bryolichenologica asiatica,0 -acta ecologica sinica,1 -acta legis turkuensia,0 -acta metallurgica slovaca,0 -acta neurochirurgica. supplementum,1 -acta politica aboensia a3,0 -acta scenica,0 -acta slavica iaponica,1 -acta technica napocensis: electronica-telecomunicatii,0 -acta turistica,1 -acta universitatis lappeenrantaensis,0 -"acta universitatis palackianae olomucensis, facultas rerum naturalium, mathematica",1 -acta universitatis sapientiae: mathematica,1 -acta universitatis wratislaviensis,1 -acta wasaensia,0 -"adolescent health, medicine and therapeutics",1 -advanced energy materials,3 -advances in acoustics and vibration,1 -advances in anthropology,0 -advances in bioscience and biotechnology,0 -advances in building energy research,1 -advances in life course research,2 -advances in mathematical sciences and applications,1 -advances in medical sociology,1 -advances in molecular imaging,0 -advances in multimedia,0 -advances in optical technologies,1 -advances in pharmacology,1 -advances in physical education,0 -advances in polar science,0 -advances in preventive medicine,1 -advances in printing and media technology,0 -advances in psychology study,0 -advances in software engineering,1 -advances in theoretical and applied mathematics,1 -aesthetic pathways,1 -aeu international journal of electronics and communication,1 -african human rights law journal,1 -"african journal of science, technology, innovation and development",1 -afrika mathematica,1 -ager: revista de estudios sobre despoblacion y desarrollo rural,1 -aikakauskirja äidinkielen opetustiede,0 -aikuiskasvatuksen vuosikirja,1 -ainedidaktisia tutkimuksia,1 -aip advances,1 -air traffic control quarterly,0 -akademos,0 -alaska history,0 -aleksanteri -sarja,1 -alternation: interdisciplinary journal for the study of the arts and humanities in southern africa,0 -alternative francophone,1 -alzheimer's research and therapy,2 -american center of oriental research publications,1 -american journal of computational and applied mathematics,0 -american journal of environmental sciences,0 -american journal of industrial and business management,0 -american journal of perinatology reports,1 -american journal of recreation therapy,1 -american shipper,0 -americana: e-journal of american studies in hungary,1 -amfiteater,1 -analecta cisterciensia,1 -analytical cellular pathology,1 -anarchist developments in cultural studies,1 -anatolia : an international journal of tourism and hospitality,1 -anatomical sciences education,1 -ancient america,0 -ancient israel and its literature,1 -ancient near eastern monographs,1 -animal genetic resources,1 -annales universitatis mariae curie-sklodowska: sectio a mathematica,1 -annali di igiene,1 -annals of leisure research,1 -annual international conference of the ieee engineering in medicine and biology society,1 -annual journal of electronics,0 -applied clinical informatics,1 -applied computing review,1 -applied engineering in agriculture,1 -applied linguistics review,1 -approaches to culture theory series,0 -arbeiten zur kirchen- und theologiegeschichte,1 -architecture and urban planning,1 -archiv fur rechts- und sozialphilosophie,1 -archives of virology supplementum,1 -archnet-ijar: international journal of architectural research,1 -arctic and antarctic,1 -ariadne long: nais- ja meesuuringute ajakiri,1 -arkansas review,1 -arkkitehtuurin osasto: julkaisu c,0 -artery research,1 -arthritis care and research,2 -arthropoda selecta,1 -ase international conference on social computing,0 -asee annual conference & exposition proceedings,1 -asian geographer,1 -asian journal of international law,1 -asian social science,0 -asian yearbook of international law,1 -astrophysics and space sciences transactions,1 -atlas of genetics and cytogenetics in oncology and haematology,1 -atmospheric measurement techniques discussions,0 -auco czech economic review,0 -auraica: scripta a societate porthan edita,1 -australasian computing education conference,1 -australasian journal of construction economics and building,1 -australasian journal of educational technology,1 -australasian journal of neuroscience,0 -australian journal of career development,1 -australian journal of teacher education,1 -australian journal on volunteering,1 -australian journalism review,1 -austrian journal of statistics,1 -autex research journal,0 -avanguardia: rivista di letteratura contemporanea,1 -baltic astronomy,1 -baltic journal of law and politics,1 -baltic region,1 -baltic worlds,1 -barn,1 -bauhaus urban studies,0 -bauphysik,1 -bautechnik,1 -be journal in theoretical economics,1 -beihefte zur zeitschrift für die alttestamentliche wissenschaft,2 -beiträge zur fremdsprachenvermittlung,1 -beiträge zur interkulturellen germanistik,1 -beneficial microbes,1 -bio,0 -bioanalytical reviews,1 -bioceramics development and applications,0 -biochemistry research international,1 -biodata mining,1 -bioengineered bugs,1 -bioinformatics trends,0 -biomedizinische technik,1 -biomolecular concepts,1 -biosystems engineering,2 -bled econference,1 -bmc research notes,1 -bmj open,1 -"body, movement and dance in psychotherapy: an international journal for theory, research and practice",1 -bollettino della societa di studi valdesi,0 -bollettino storico piacentino,0 -bone marrow research,1 -books from the finnish political science association,0 -brazilian geographical journal,0 -brazilian journalism research,1 -"bridge structures: assessment, design and construction",1 -"british journal of education, society and behavioural science",1 -bryobrotherella,0 -"body, space and technology journal",1 -building simulation,1 -built environment project and asset management,1 -built-environment sri lanka,1 -bulletin de la societe entomologique de france,0 -bulletin knob,1 -bulletin of geography: socio-economic series,1 -bulletin of japan society for the science of design,0 -bulletin of the russian academy of sciences: physics,1 -business law forum,0 -business strategy series,1 -bwrc publications,0 -cadernos de pesquisa,1 -canadian journal of career development,1 -canadian journal of learning and technology,1 -canadian social science,0 -cancer discovery,3 -cancer genetics,1 -cancer informatics,1 -candide: journal for architectural knowledge,1 -cartilage,1 -case reports in neurology,1 -catalysis in industry,0 -catalysis science and technology,1 -cbd technical series,0 -cell adhesion and migration,1 -cell division,1 -central and eastern european review,1 -ceps journal,1 -cerebrovascular diseases extra,1 -ceroart,1 -chemical engineering transactions,1 -childhood in the past,1 -china communications,1 -china information,1 -china-usa business review,0 -chinese journal of applied entomology,0 -chinese journal of cancer,0 -chinese journal of dental research,1 -choreographic practices,2 -cice guidelines,1 -ciencia ergo sum,1 -"city, culture and society",1 -clinical and translational allergy,1 -clinical investigation,0 -clios psyche,0 -cm communication management quarterly,0 -coatings,1 -collection agir,0 -collnet journal of scientometrics and information management,1 -comment visions,0 -communicatio: south african journal for communication theory and research,1 -communication research reports,1 -communication yearbook,1 -communications of the cloud software,0 -communications of the ibima,0 -communications on stochastic analysis,1 -communicative & integrative biology,1 -communicator,0 -competitiveness review,1 -computational and theoretical chemistry,1 -computer aided chemical engineering,1 -computer methods in materials science,0 -iasted international conference on computers and advanced technology in education,0 -"international conference on mobile ubiquitous computing, systems, services and technologies",0 -conradi research review,0 -conservation genetics resources,1 -conserveries memorielles,0 -consilience: journal of sustainable development,1 -"construction innovation: information, process, management",1 -construction law journal,0 -construction science,0 -contemporary asia arbitration journal,1 -contemporary educational technology,1 -contemporary japan,1 -contemporary southeast asia,1 -continental journal of education research,0 -contributions to the history of concepts,2 -corporate ownership and control,1 -corporate real estate journal,0 -cosmos: the journal of the traditional cosmology society,0 -cost engineering,1 -cough,1 -couple and family psychology,1 -cradle working papers,0 -creative education,0 -critical policy studies,2 -critical studies in education,2 -cryptography and communications,1 -cuadernos constitutucionales de la catedra fadrique furio ceriol,0 -cuadernos de arte de la universidad de granada,1 -current cardiovascular imaging reports,1 -current issues of business and law,1 -"current opinion in endocrinology, diabetes and obesity",1 -current opinion in virology,1 -current pediatric reviews,1 -current research journal of social science,0 -current respiratory medicine reviews,1 -current science,1 -cyprus nursing chronicles,0 -daaam international scientific book,1 -dancecult: journal of electronic dance music culture,1 -das wort,1 -dementia and geriatric cognitive disorders extra,1 -den norske tannlegeforenings tidende,1 -dental update,1 -depression research and treatment,1 -dermato-endocrinology,1 -design management journal,0 -design management review,1 -deutsch im kontrast,1 -deutsches dante-jahrbuch,1 -deutschunterricht für ungarn,0 -dialogue in praxis: a social work international journal,1 -dialogues francophones,1 -"dialogues in philosophy, mental and neuro sciences",1 -"discours: revue de linguistique, psycholinguistique et informatique",1 -"discourse, context and media",3 -discrete and continuous dynamical systems: series s,1 -discussiones mathematicae graph theory,1 -disegnare idee immagini,1 -dosis,1 -dossier de droit europeen,0 -dvs-berichte,0 -dynamic games and applications,1 -eastern-european journal of enterprise technologies,0 -eco-ethica,1 -ecology and evolution,1 -economia industrial,0 -economics of energy and environmental policy,1 -e-conservation magazine,0 -ecosphere,1 -educacio quimica,0 -education inquiry,1 -education sciences and psychology,0 -educational research and reviews,0 -eelk usuteaduse instituudi toimetised,1 -eetos-julkaisuja,1 -egyptian journal of agronomy,0 -e-international journal of educational research,0 -eiszeitalter und gegenwart,0 -ejnmmi research,1 -electronic journal of contemporary japanese studies,1 -electronic journal of family business studies [online],0 -electronic journal of structural engineering,1 -electronic proceedings in theoretical computer science,0 -elektrotechnik und informationstechnik,1 -elixir psychology,0 -eludamos,1 -emergencias,1 -emirates journal of food and agriculture,1 -emotion review,2 -els,1 -endodontic topics,1 -energy procedia,1 -energy strategy reviews,1 -engineering applications of computational fluid mechanics,1 -engineering project organization journal,1 -entomological review,1 -entomologisk tidskrift,1 -entomologist’s monthly magazine,0 -environment and society,2 -environmental planning and management,0 -environmentalica fennica,0 -enzyme research,1 -epigenetics and chromatin,1 -epites - epiteszettudomany,1 -epj data science,1 -erasmus journal for philosophy and economics,1 -erebea: revista de humanidades y ciencias sociales,0 -eruditio - educatio,0 -essachess: journal for communication studies,1 -essays in public works history,0 -estonian journal of engineering,1 -estudos em comunicacao,1 -ethics and global politics,1 -ethos: dialogues in philosophy and social sciences,0 -etla b,0 -études finno-ougriennes,1 -etudes internationales,1 -etudes ricoeuriennes / ricoeur studies,1 -euracademy thematic guide series,0 -eurasia border review,0 -eurasian journal of physics and chemistry education,0 -"eurasip journal on audio, speech, and music processing",1 -eurasip journal on bioinformatics and systems biology,1 -eurofm journal: international journal of facilities management,1 -proceedings of the european conference on e-learning,0 -european conference on modelling and simulation,1 -european criminal law review,1 -european geriatric medicine,1 -european heart journal : cardiovascular imaging,2 -european infectious disease,1 -european journal for philosophy of science,3 -european journal of clinical and medical oncology,0 -european journal of dentistry,1 -european journal of educational research,0 -european journal of higher education,1 -european journal of language policy,1 -european journal of law and technology,1 -european journal of management,0 -european journal of psychotraumatology,1 -european journal of scandinavian studies,2 -european journal of scientific research,0 -european journal of social law,1 -european journal of social sciences,0 -european journal of taxonomy,1 -european journal of tourism research,1 -european labour law journal,2 -european microwave conference,1 -european musculoskeletal review,1 -european neurological review,1 -european respiratory disease,1 -european transport research review,1 -european urological review,1 -eurosphere online working paper series,1 -eurospi,0 -evangelical quarterly,1 -e-water,0 -evolutionary intelligence,1 -exceptionality education international,1 -experimental gerontology,1 -expert review of gastroenterology and hepatology,1 -"families, relationships and societies",1 -far east journal of mathematical education,1 -ferrantia,0 -fichl publication series,0 -field and vegetable crops research,1 -fiia reports,1 -filologia e critica,0 -filologia italiana,1 -journal of financial management of property and construction,0 -findecon monograph series,0 -finnish yearbook of population research,1 -finsk tidskrift,1 -folia cryptogamica estonica,1 -folkdansforskning i norden,0 -folkloristiikan julkaisuja,0 -folkloristiikan toimite,0 -food and function,1 -food science and technology,1 -footprint,1 -forensic science international: genetics supplement series,1 -forestry studies in china,1 -formakademisk,1 -formath,1 -forum iuris,0 -forumsprache,0 -fractional calculus and applied analysis,1 -fremdsprachen und hochschule,1 -frontiers in cellular neuroscience,1 -frontiers in computational neuroscience,1 -conference proceedings : frontiers in education conference,1 -frontiers in finance and economics,0 -frontiers in heat and mass transfer,1 -frontiers in integrative neuroscience,1 -frontiers in microbiology,1 -frontiers in neuroengineering,1 -frontiers in pharmacology,1 -frontiers in physiology,1 -frontiers in psychology,1 -frontiers in systems neuroscience,1 -frontiers of structural and civil engineering,1 -frontiers of chemical science and engineering,1 -functiones et approximatio: commentarii mathematici,1 -fungi,0 -futuribles,1 -futy journal of the environment,0 -fuzzy economic review,1 -gamtamokslinis ugdymas,0 -gatherings: the heidegger circle annual,1 -gegenwartsliteratur,1 -gene conserve,1 -genome medicine,3 -genusstudier vid mittuniversitetet,0 -geographische rundschau,1 -geological survey of finland : bulletin,1 -german as a foreign language,2 -geschichte.transnational,0 -gestalt theory: an international multidisciplinary journal,0 -gifted and talented international,1 -gigantum humeris,0 -giornale di diritto del lavoro e di relazioni industriali,0 -giornale di storia costituzionale,1 -global journal of computer science and technology,0 -global journal of human social science,0 -global journal of management and business research,0 -global partnership management journal,0 -graduate journal of asia-pacific studies,1 -graphis scripta,0 -"greek, roman, and byzantine studies: scholarly aids",0 -greenhouse gases: science and technology,1 -gstf international journal on computing,1 -gut microbes,1 -gut pathogens,1 -gynaecology forum,1 -head and neck pathology,1 -hebrew bible and ancient israel,2 -"hellenic journal of music, education and culture",1 -hellenic open university journal of informatics,0 -helsingin yliopisto. opettajankoulutuslaitos : tutkimuksia,0 -helsingin yliopiston maantieteen laitoksen julkaisuja ja raportteja,0 -helsinki law review,0 -herpetological review,1 -high power laser and particle beams,0 -history journal: researches,1 -history of education and childrens literature,1 -hoitotieteen laitoksen julkaisusarja,0 -hormone molecular biology and clinical investigation,1 -afrikan sarvi,0 -hospitality and society,1 -human it: tidskrift för studier av it ur ett humanvetenskapligt perspektiv,1 -humana.mente,1 -humanistica,1 -hymnologi: nordisk tidsskrift udgivet af salmehistorisk selskab og nordhymn,1 -hyperion international journal of econophysics and new economy,0 -iarc scientific publications,0 -iaspm@journal,1 -iassist quarterly,1 -ibusiness,0 -idrottsforum.org,1 -ieee computer society conference on computer vision and pattern recognition workshops,1 -proceedings : ieee international conference on cloud computing technology and science,1 -ieee international workshop on machine learning for signal processing,1 -ieee international workshop on multimedia signal processing,1 -ieee journal of photovoltaics,2 -ieee journal of translational engineering in health and medicine,1 -ieee mtt-s international microwave symposium digest,1 -"ieee transactions on components, packaging and manufacturing technology",1 -ieee transactions on learning technologies,2 -ieee transactions on terahertz science and technology,2 -ieee international workshop on signal processing systems,1 -proceedings of the ieee/rsj international conference on intelligent robots and systems,1 -ieej transactions on industry applications,1 -iet biometrics,1 -ifla publications,0 -immunity and ageing,1 -in education,0 -indian journal of international economic law,1 -indo-pacific journal of phenomenology,1 -infectious agents and cancer,1 -infocommunications journal,0 -information,0 -information assurance and security letters,1 -information systems education journal,1 -informations sociales,0 -innovation journalism,1 -innovative marketing,0 -insects,1 -intelligent buildings international,1 -"intelligent systems in accounting, finance and management",1 -interdisciplinary journal of problem-based learning,1 -interdisciplinary studies in ancient culture and religion,1 -proceedings of the international aaai conference on weblogs and social media,1 -international arbitration law review,1 -international business research,0 -ieee international conference on advanced learning technologies,1 -international conference on cloud and green computing,0 -"international conference on computational intelligence, communication systems and networks",0 -lrec proceedings,1 -proceedings : international conference of the learning sciences,1 -"international workshop on power and timing modeling, optimization and simulation",0 -proceedings of icsssm,1 -international conference on software engineering advances,1 -international conference on systems,0 -international conference on the european energy market,1 -proceedings of the international congress of phonetic sciences,1 -international education studies,0 -international journal for construction marketing,0 -international journal for human caring,1 -international journal for the study of skepticism,1 -international journal for uncertainty quantification,1 -international journal of accounting and finance,1 -"international journal of accounting, auditing and performance evaluation",1 -international journal of agile systems and management,1 -international journal of alzheimers disease,1 -international journal of angiology,1 -international journal of applied management science,1 -international journal of arts & sciences,1 -international journal of asian social science,0 -international journal of auditing,1 -international journal of automation and computing,1 -international journal of autonomous and adaptive communications systems,1 -international journal of biomedical laboratory science,1 -international journal of business and emerging markets,1 -international journal of business and management,0 -international journal of business continuity and risk management,0 -international journal of business environment,1 -international journal of business excellence,1 -international journal of business insights and transformation,0 -international journal of business performance and supply chain modelling,1 -international journal of business research papers,0 -international journal of cancer research,0 -international journal of caring sciences,1 -international journal of central banking,1 -international journal of clinical and experimental pathology,1 -international journal of clinical pharmacy,1 -international journal of collaborative enterprise,1 -international journal of computational economics and econometrics,1 -international journal of computational intelligence in control,0 -international journal of computer aided engineering and technology,1 -international journal of computer games technology,1 -international journal of computer information systems and industrial management applications,1 -international journal of computer networks and communications,0 -international journal of concrete structures and materials,1 -international journal of condition monitoring,1 -international journal of construction management,1 -international journal of construction project management,0 -international journal of construction supply chain management,0 -international journal of continuing education and lifelong learning,1 -international journal of critical computer-based systems,1 -international journal of critical infrastructure protection,1 -international journal of cultural research,0 -international journal of cyber ethics in education,0 -international journal of design and innovation research,0 -"international journal of design, analysis and tools for integrated circuits and systems",1 -international journal of development education and global learning,1 -international journal of development issues,1 -international journal of digital content technology and its applications,0 -international journal of disaster resilience in the built environment,1 -international journal of e-adoption,1 -international journal of early childhood special education,0 -international journal of economic behavior,0 -international journal of economics and business research,0 -international journal of economics and finance,0 -international journal of education administration and policy studies,0 -international journal of e-health and medical communications,1 -international journal of electronic healthcare,1 -international journal of electronic transport,0 -international journal of embedded and real-time communication systems,1 -international journal of embedded systems and applications,0 -international journal of energy for a clean environment,1 -international journal of energy technology and policy,1 -international journal of engineering management and economics,0 -international journal of entrepreneurial venturing,1 -international journal of environment and waste management,1 -international journal of environmental science and development,0 -international journal of family medicine,0 -international journal of forestry research,1 -international journal of game-based learning,1 -"international journal of gender, science and technology",1 -international journal of global warming,1 -international journal of grid and high performance computing,1 -international journal of home economics,1 -international journal of hospitality and tourism systems,1 -international journal of knowledge management in tourism and hospitality,1 -international journal of housing markets and analysis,1 -international journal of human capital and information technology professionals,1 -international journal of human sciences,0 -international journal of industrial and systems engineering,1 -international journal of industrial engineering and management,1 -international journal of information and communication technology education,1 -international journal of information quality,1 -international journal of information systems for crisis response and management,1 -international journal of information technology project management,1 -international journal of innovation in the digital economy,1 -international journal of innovative computing and applications,1 -international journal of instructional technology & distance learning,1 -international journal of intellectual property management,1 -international journal of intercultural information management,1 -international journal of internet protocol technology,1 -"international journal of it in architecture, engineering and construction",0 -international journal of knowledge-based development,1 -international journal of latest trends in computing,0 -international journal of law and management,1 -international journal of law in the built environment,1 -international journal of leisure and tourism marketing,1 -international journal of logistics systems and management,1 -international journal of low-carbon technologies,1 -international journal of machine learning and cybernetics,1 -international journal of management cases,0 -international journal of management concepts and philosophy,1 -international journal of management development,0 -international journal of managerial and financial accounting,1 -international journal of managerial finance,1 -international journal of managing projects in business,1 -international journal of marketing studies,0 -international journal of materials science,0 -international journal of microwave and wireless technologies,1 -international journal of mobile and blended learning,1 -"international journal of modelling, identification and control",1 -international journal of molecular epidemiology and genetics,1 -international journal of multicriteria decision making,1 -international journal of multimedia and ubiquitous engineering,0 -international journal of multimedia intelligence and security,1 -international journal of multimedia technology,1 -international journal of naval architecture and ocean engineering,1 -international journal of occupational medicine and environmental health,1 -international journal of online marketing,0 -international journal of online pedagogy and course design,1 -international journal of open source software and processes,1 -international journal of person centered medicine,1 -international journal of pharmaceutical and healthcare marketing,1 -"international journal of physiology, pathophysiology and pharmacology",1 -international journal of plant developmental biology,0 -international journal of play,1 -international journal of police science & management.,1 -international journal of portfolio analysis and management,0 -international journal of proteomics,1 -international journal of psychological studies,0 -international journal of quality and service sciences,1 -"international journal of quality, statistics, and reliability",1 -international journal of radio frequency identification technology and applications (ijrfita),1 -international journal of research and method in education,1 -international journal of research studies in education,0 -international journal of research studies in psychology,1 -international journal of role-playing,1 -"international journal of service science, management, engineering, and technology",0 -international journal of services and operations management,1 -international journal of services sciences,1 -"international journal of services, economics and management",1 -international journal of social and organizational dynamics in it,1 -international journal of social computing and cyber-physical systems,0 -international journal of sociotechnology and knowledge development,1 -international journal of software engineering and its applications,0 -international journal of sport policy and politics,1 -international journal of stem cells,1 -international journal of strategic change management,1 -international journal of strategic management,0 -international journal of sustainable construction engineering and technology,0 -international journal of sustainable economy,1 -international journal of sustainable strategic management,0 -international journal of systems and service-oriented engineering,1 -international journal of systems assurance engineering and management,1 -international journal of technology enhanced learning,1 -international journal of technology intelligence and planning,1 -international journal of technology marketing,1 -international journal of tourism policy,1 -international journal of tourism sciences,1 -international journal of ultra wideband communications and systems (ijuwbcs),0 -international journal of urban sustainable development,1 -international journal of value chain management,1 -international journal of vascular medicine,1 -international journal of web engineering and technology,1 -international journal of web portals,1 -international journal of vehicular technology,0 -international journal of wellbeing,1 -international journal of whole schooling,1 -international journal of wireless information networks,1 -international journal of wireless networks and broadband technologies,0 -international journal of virtual communities and social networking,1 -international journal of women's health,1 -international journal on advances in intelligent systems,0 -international journal on advances in networks and services,0 -international journal on disability and human development,1 -international journal on information technologies and security,1 -international journal  of logistics economics and globalisation,1 -international organizations law review,1 -international relations studies series,1 -international research journal of finance and economics,0 -international review of automatic control,0 -international review of civil engineering,0 -international review of mechanical engineering,1 -international review of social research,1 -international review of social sciences and humanities,0 -international review on modelling and simulations,1 -international theory,3 -international workshop on content-based multimedia indexing. print,0 -international workshop on semantic ambient media experiences,0 -internet journal of medical technology,0 -internet journal of rheumatology,0 -investment management and financial innovations,0 -isaidat law review,1 -ishraq,1 -istina,1 -"itineraires: litterature, textes, cultures",1 -itä-suomen yliopiston oikeustieteellisiä julkaisuja,0 -jahrbuch für biblische theologie,1 -japan forum,1 -japanese journal of lactic acid bacteria,0 -japanese journal of learning disabilities,1 -japanese studies,1 -jazz perspectives,1 -"jewish studies, an internet journal",1 -journal of science and technology for forest products and processes,1 -maanpuolustuskorkeakoulun johtamisen ja sotilaspedagogiikan laitoksen julkaisusarja 2 : artikkelikokoelmat,0 -journal for educational research online,1 -journal for geometry and graphics,1 -journal for the study of the historical jesus,1 -journal in computer virology,1 -journal of academic ethics,1 -journal of advanced dielectrics,1 -journal of advances in management research,1 -journal of aesthetics and culture,1 -journal of african diaspora archaeology and heritage,0 -"journal of aggression, conflict and peace research",1 -journal of aging research,1 -journal of agricultural safety and health,1 -journal of agro crop science,1 -journal of alternative investments,1 -journal of american-east asian relations,0 -journal of ancient judaism,1 -journal of apiproduct and apimedical science,1 -journal of applied business research,0 -journal of applied computing and information technology,0 -journal of architecture and urbanism,1 -journal of artificial intelligence and soft computing research,0 -journal of asia-pacific studies,0 -journal of basic and applied scientific research,0 -journal of biomedical semantics,1 -journal of biosensors and bioelectronics,0 -journal of biotech research,0 -journal of breath research,1 -journal of building acoustics,1 -"journal of building survey, appraisal and valuation",0 -journal of business and policy research,0 -journal of business market management,1 -journal of business strategy,1 -journal of ceramic science and technology,0 -journal of china tourism research,1 -journal of civil engineering and construction technology,0 -journal of civil structural health monitoring,0 -journal of cognitive psychology,1 -journal of comparative asian development,1 -journal of comparative research in anthropology and sociology,1 -journal of computational science,1 -journal of computing and information technology,1 -journal of construction,0 -"journal of construction engineering, technology and management",0 -journal of construction in developing countries,1 -journal of construction management,0 -journal of construction project management and innovation,0 -journal of contemporary european research,1 -journal of convention and event tourism,1 -journal of cosmology,0 -journal of critical incident analysis,0 -journal of cultural economy,1 -journal of cultural heritage management and sustainable development,1 -journal of current chinese affairs,1 -journal of curriculum & instruction,1 -journal of dance & somatic practices,1 -journal of democratic theory,0 -journal of derivatives and hedge funds,1 -journal of developmental origins of health and disease,1 -journal of drug delivery,1 -journal of east-european and asian studies,0 -journal of ecological anthropology,1 -journal of education and learning,0 -journal of education for sustainable development,1 -journal of electromagnetic analysis and applications,0 -journal of emerging technologies in accounting,1 -journal of emerging technologies in web intelligence,0 -journal of emerging trends in computing and information sciences,0 -journal of energy and power engineering,0 -"journal of engineering, design and technology",1 -journal of english phonetic society of japan,1 -journal of environmental health research,1 -journal of environmental protection,0 -journal of european real estate research,1 -journal of european television history and culture,1 -journal of family and consumer sciences,1 -journal of family and consumer sciences education,1 -journal of family business strategy,1 -journal of financial studies,0 -journal of foodservice business research,1 -journal of forensic nursing,1 -journal of forensic research,0 -journal of forest planning,0 -journal of functional foods,2 -"journal of futures studies: epistemology, methods, applied and alternative futures",1 -journal of gaming and virtual worlds,1 -journal of global business and technology,0 -journal of harbin institute of technology,0 -journal of health informatics in developing countries,1 -journal of hospitality and tourism management,1 -journal of hospitality application and research,1 -journal of human reproductive sciences,1 -journal of humanitarian logistics and supply chain management,1 -journal of industrial engineering and management,1 -journal of information and computational science,1 -journal of information technology education: innovations in practice,1 -journal of infrastructure development,0 -"journal of intellectual property, information technology and electronic commerce law",2 -journal of intelligent computing,0 -journal of interactional research in communication disorders,1 -journal of interdisciplinary music studies,1 -journal of interior design,1 -journal of international and global studies,1 -journal of international business management and research,0 -journal of international education in business,1 -journal of interpretation research,1 -journal of learning design,1 -journal of learning through the arts,0 -journal of linguistic and intercultural education,1 -journal of literary and cultural disability studies,1 -journal of low power electronics,0 -journal of management and change,0 -journal of management and marketing research,0 -journal of management policy and practice,0 -journal of materials science and engineering b,0 -journal of mathematics in industry,1 -journal of medical case reports,1 -"journal of medical marketing: device, diagnostic and pharmaceutical marketing",1 -journal of medieval religious cultures,1 -journal of microelectronics and electronic packaging,0 -journal of modern accounting and auditing,0 -journal of modern textile science and engineering,0 -journal of molecular and cellular cardiology,2 -journal of molecular cell biology,1 -journal of multimedia education research,1 -journal of namibian studies: history politics culture,1 -journal of nano education,1 -journal of natural fibres,2 -journal of natural resources policy research,1 -journal of neurology and neurophysiology,0 -"journal of neuroscience, psychology, and economics",1 -journal of next generation information technology,0 -journal of nursing and healthcare of chronic illness,1 -journal of obstetrics and gynaecology canada,1 -journal of osteoporosis,1 -journal of pattern recognition research,1 -journal of physics : conference series,1 -journal of place management and development,1 -journal of plant nutrition,1 -journal of political power,1 -journal of poverty and social justice,1 -journal of pregnancy,1 -journal of prosthodontic research,2 -journal of real options,0 -journal of real-time image processing,1 -journal of research on technology in education,1 -journal of rural cooperation,1 -journal of sensor and actuator networks,1 -journal of service science,0 -journal of service science and management,0 -journal of services research,0 -journal of signal and information processing,0 -journal of studies in education,0 -journal of sustainable bioenergy systems,0 -journal of the american college of radiology,1 -journal of the brazilian computer society,1 -journal of the european association for health information and libraries,0 -journal of the indian ocean region,1 -journal of the indian society of agricultural statistics,1 -journal of the japanese society for engineering education,0 -journal of the korean physical society,1 -journal of the optical society of korea,1 -journal of the philosophy of history,2 -journal of tourism and hospitality,0 -journal of tourism consumption and practice,1 -journal of transnational american studies,1 -journal of trauma management and outcomes,1 -journal of travel and tourism research,1 -journal of us-china public administration,0 -journal of water and climate change,1 -journal of west indian literature,1 -journal of virtual worlds research,1 -journal of world energy law and business,2 -journal on computing and cultural heritage,2 -journalism research review quarterly,0 -journeys: the international journal of travel and travel writing,1 -jyväskylän normaalikoulun julkaisuja,0 -kajaanin ammattikorkeakoulun julkaisusarja a. tutkimuksia,0 -kedi journal of educational policy,1 -khimiya rastitelnogo syrya,0 -kirkko ja islam -julkaisuja,0 -kliininen radiografiatiede,1 -korean journal of teacher education,0 -korkeakoulujen arviointineuvoston julkaisuja,0 -korunk,0 -kritisk forum for praktisk teologi,1 -ksce journal of civil engineering,1 -kulttuurituotannon ja maisemantutkimuksen julkaisut,0 -kungliga krigsvetenskapsakademiens handlingar och tidskrift,1 -kunstiteaduslikke uurimusi,1 -kyrkohistoriska arkivet vid åbo akademi. meddelanden.,0 -käyttäytymisanalyysi ja -terapia,1 -käytännöllisen teologian laitoksen julkaisuja,0 -l1 educational studies in languages and literature,1 -la nouvelle revue de l’adaptation et de la scolarisation,0 -laboratorium,1 -language and dialogue,1 -language and history,1 -lannée épigraphique,1 -lapland law review,0 -latin-american journal of physics education,1 -laurea julkaisut,0 -lean construction journal,1 -lecture notes in business information processing,1 -leisure,1 -les cahiers du gerad,0 -levón-instituutin julkaisut,0 -light: science & applications,3 -liikenne,1 -"linguistics, archaeology and the human past",0 -literaturkritik.de,0 -lithuanian historical studies,1 -lncs transactions on edutainment,1 -loading...,0 -journal of chinese cinemas,1 -journal of clinical neurology,1 -journal of continuing education in nursing,0 -journal of dental sciences,1 -journal of development effectiveness,1 -journal of diabetes,1 -journal of diabetes investigation,1 -journal of diversity in higher education,0 -journal of engineering thermophysics,0 -journal of environmental engineering and landscape management,1 -journal of environmental science and management,1 -journal of fish and wildlife management,0 -journal of fixed point theory and applications,0 -journal of flow chemistry,1 -journal of foot and ankle research,1 -journal of geometric mechanics,1 -journal of geriatric oncology,0 -journal of geriatric physical therapy,1 -journal of grey system,0 -journal of huazhong university of science and technology-medical sciences,1 -journal of human capital,2 -journal of hydrology and hydromechanics,1 -journal of infection in developing countries,0 -journal of innovative optical health sciences,1 -journal of korea trade,0 -journal of language literature and culture,1 -journal of managed care pharmacy,1 -journal of materials education,0 -journal of mathematical inequalities,0 -journal of medical biochemistry,1 -journal of medical devices-transactions of the asme,1 -journal of medical imaging and health informatics,1 -journal of medical ultrasonics,1 -journal of mens health,0 -journal of modern italian studies,2 -journal of neurologic physical therapy,1 -journal of nursing research,0 -journal of ophthalmology,1 -journal of orthopaedic surgery and research,1 -journal of ovarian research,1 -journal of pacific rim psychology,1 -journal of parkinsons disease,1 -journal of pediatric urology,1 -journal of pharmaceutical innovation,1 -journal of plant interactions,1 -journal of power electronics,1 -journal of psychology in africa,0 -journal of pure and applied microbiology,1 -journal of semiconductor technology and science,0 -journal of soil science and plant nutrition,1 -journal of systems science and systems engineering,1 -journal of the american mosquito control association,0 -journal of the australasian ceramic society,0 -journal of the chinese medical association,1 -journal of the korean astronomical society,1 -journal of the pakistan medical association,0 -journal of theoretical and applied mechanics,1 -journal of tissue viability,1 -journal of traditional chinese medicine,0 -journal of visceral surgery,1 -journal of zhejiang university-science b,1 -jundishapur journal of microbiology,1 -kaohsiung journal of medical sciences,0 -kenyon review,0 -kindheit und entwicklung,0 -korean journal of parasitology,0 -korean journal of physiology & pharmacology,0 -kuram ve uygulamada egitim bilimleri,0 -kuwait medical journal,0 -landscape architecture magazine,0 -language culture and curriculum,1 -laser focus world,0 -leviathan: a journal of melville studies,1 -libyan journal of medicine,0 -life writing,2 -listy filologicke,1 -literary imagination,1 -lithuanian journal of physics,1 -living reviews in solar physics,3 -lotus international,0 -luts-lower urinary tract symptoms,0 -mabs,1 -magazine antiques,0 -magnetic resonance in medical sciences,1 -magnetohydrodynamics,1 -malawi medical journal,1 -malaysian journal of computer science,0 -manufacturing engineering,0 -mapan-journal of metrology society of india,0 -marine and coastal fisheries,1 -master drawings,0 -materials express,0 -mathematical reports,0 -meanjin,0 -mechanics of solids,1 -mediterranean archaeology & archaeometry,1 -membrane water treatment,1 -memorias do instituto oswaldo cruz,0 -metropolitan museum journal,0 -metropolitan museum of art bulletin,0 -microwaves & rf,0 -mind brain and education,0 -modern chinese literature and culture,1 -molecular brain,1 -molecular cytogenetics,1 -moscow university physics bulletin,0 -mrs communications,1 -musik in bayern,1 -musik und kirche,0 -nagoya journal of medical science,0 -nano-micro letters,2 -netherlands heart journal,1 -neue zeitschrift für musik,0 -neurology asia,1 -neurology india,1 -neuropsychiatry,0 -neuroscience bulletin,1 -neurosciences,1 -neurosurgical focus,0 -new perspectives on turkey,1 -new zealand entomologist,1 -nigerian journal of clinical practice,0 -nonlinear analysis-hybrid systems,0 -north american review,0 -northeastern naturalist,0 -northwest science,0 -notulae botanicae horti agrobotanici cluj-napoca,0 -novyi mir,0 -npg asia materials,2 -nwig-new west indian guide-nieuwe west-indische gids,1 -occupational therapy international,0 -oncotargets and therapy,1 -open biology,1 -opera,0 -opera news,0 -oral and maxillofacial surgery clinics of north america,1 -organogenesis,0 -ornithological science,1 -paediatrics & child health,1 -pain research & management,1 -pakistan journal of agricultural sciences,1 -pakistan journal of pharmaceutical sciences,0 -pakistan journal of statistics,0 -pakistan veterinary journal,0 -parasite,0 -paris review,0 -patient preference and adherence,1 -patient-patient centered outcomes research,1 -perinola-revista de investigacion quevediana,1 -personality disorders-theory research and treatment,1 -perspective-la revue de l inha,0 -philippine journal of veterinary medicine,1 -philippine political science journal,0 -physics world,0 -plant genome,1 -plant pathology journal,0 -plasma science & technology,1 -ploughshares,0 -pm&r,0 -poetry wales,0 -polis,1 -polish journal of microbiology,1 -politica y gobierno,0 -political studies review,1 -polskie archiwum medycyny wewnetrznej,1 -postmedieval-a journal of medieval cultural studies,0 -ppar research,0 -praxis der kinderpsychologie und kinderpsychiatrie,0 -proceedings of the institution of mechanical engineers : part p,1 -profesional de la informacion,1 -progress in natural science-materials international,1 -progress in transplantation,0 -propagation of ornamental plants,1 -protein & cell,1 -psicologia-reflexao e critica,0 -psicologica,0 -psicothema,0 -psihologija,0 -psikhologicheskii zhurnal,0 -psyche-zeitschrift fur psychoanalyse und ihre anwendungen,0 -psychologica belgica,0 -psychological services,0 -psychological trauma,1 -psychologie francaise,0 -psychologie in erziehung und unterricht,1 -psychology of religion and spirituality,1 -psychology of violence,1 -publications de l institut mathematique-beograd,0 -publications of the english goethe society,0 -quality assurance and safety of crops & foods,1 -queens quarterly,0 -the r journal,1 -radiology and oncology,1 -radovi zavoda za povijesne znanosti hazu u zadru,1 -ra-revista de arquitectura,0 -recent patents on nanotechnology,0 -records of the australian museum,1 -redia-giornale di zoologia,0 -reproductive health,1 -res philosophica,1 -research in gerontological nursing,0 -research on crops,1 -reti medievali rivista,1 -reviews in aquaculture,2 -revista 180,0 -revista brasileira de ensino de fisica,0 -revista brasileira de psiquiatria,1 -revista brasileira de reumatologia,0 -revista de educacion,0 -revista de historia industrial,0 -revista de letras,1 -revista de psicodidactica,0 -revista de psicologia del deporte,0 -revista de psiquiatria y salud mental,0 -revista do instituto de medicina tropical de sao paulo,0 -revista espanola de medicina nuclear e imagen molecular,1 -revista espanola de pedagogia,0 -revista latino-americana de enfermagem,0 -revista latinoamericana de investigacion en matematica educativa-relime,0 -revista latinoamericana de psicologia,0 -revista latinoamericana de psicopatologia fundamental,0 -revista mexicana de psicologia,0 -revista portuguesa de cardiologia,0 -revista romana de medicina de laborator,0 -revista signos,0 -revue internationale de psychologie sociale-international review of socialpsychology,1 -revue roumaine des sciences techniques-serie electrotechnique et energetique,0 -rice,1 -riha journal,0 -rijksmuseum bulletin,0 -rivista di psicoanalisi,0 -romanian biotechnological letters,0 -romanian journal of economic forecasting,0 -romanian journal of information science and technology,0 -romanian journal of legal medicine,1 -romanian journal of morphology and embryology,1 -romanian journal of physics,1 -romanian reports in physics,1 -russian journal of developmental biology,1 -russian journal of genetics,0 -russian journal of non-ferrous metals,1 -russian physics journal,1 -sao paulo medical journal,0 -saudi pharmaceutical journal,0 -science of advanced materials,0 -sculpture journal,0 -sculpture review,0 -security and communication networks,0 -sexual & reproductive healthcare,1 -shakespeare,1 -shenandoah,0 -singapore medical journal,0 -soil and water research,1 -south african journal for research in sport physical education and recreation,1 -south african journal of education,1 -south african journal of industrial engineering,1 -south african journal of psychiatry,1 -south african journal of psychology,0 -south central review,0 -space,0 -spe drilling & completion,1 -spe journal,2 -statistics in biopharmaceutical research,1 -stem cell research & therapy,1 -strad,0 -studies in theatre and performance,2 -taller de letras,0 -tanz,0 -terapia psicologica,0 -theater heute,0 -theranostics,2 -thoracic cancer,0 -topia-canadian journal of cultural studies,0 -transactions of famena,1 -translational neuroscience,1 -translational stroke research,1 -transplantation reviews,1 -transportation letters-the international journal of transportation research,1 -transylvanian review of administrative sciences,0 -trends in amplification,0 -tropical biomedicine,0 -tropical conservation science,1 -tuna-ajalookultuuri ajakiri,1 -turk psikiyatri dergisi,0 -turk psikoloji dergisi,0 -turkish journal of hematology,0 -turkish journal of medical sciences,0 -uhod-uluslararasi hematoloji-onkoloji dergisi,0 -ukrainian journal of physical optics,0 -universitas psychologica,0 -urology journal,1 -vertebrate zoology,1 -veterinaria,0 -videosurgery and other miniinvasive techniques,1 -virulence,1 -vjesnik za arheologiju i povijest dalmatinsku,1 -wasafiri,0 -weather,1 -westerly,0 -wiley interdisciplinary reviews-computational molecular science,1 -world literature studies,0 -world mycotoxin journal,1 -yale review,0 -yonago acta medica,0 -zbornik radova ekonomskog fakulteta u rijeci-proceedings of rijeka facultyof economics,0 -zeitschrift fur arbeits-und organisationspsychologie,1 -zeitschrift fur gesundheitspsychologie,0 -zeitschrift fur kinder-und jugendpsychiatrie und psychotherapie,0 -zeitschrift fur klinische psychologie und psychotherapie,0 -zeitschrift fur psychiatrie psychologie und psychotherapie,1 -zeitschrift fur psychologie-journal of psychology,1 -zeitschrift fur sexualforschung,1 -zograf,1 -etla raportit,0 -juridica lapponica,0 -liikunnan ja kansanterveyden julkaisuja,0 -kirjokansi,0 -skrifter utgivna av svensk-österbottniska samfundet,0 -proceedings of the university of vaasa. working papers,0 -"turun yliopiston oikeustieteellisen tiedekunnan julkaisuja. a, yksityisoikeuden sarja",0 -sosiaalipoliittisen yhdistyksen tutkimuksia,0 -le français dans le monde,0 -documentos de traballo. geography young scholars,0 -écho des études romanes,0 -europäische geschichte online,1 -scripta historica,1 -acta universitatis ouluensis e : scientiae rerum socialium,0 -iustitia,0 -internet encyclopedia of philosophy,1 -acta futura fennica,1 -tucs general publications,0 -turun kauppakorkeakoulun julkaisuja. sarja c,0 -van schools tot scriptie,0 -genereviews,1 -waseda working papers in elf,0 -annual wyrd con interactive theater convention,0 -international workshop on many-core embedded systems,0 -international workshop on the practical application of stochastic modelling,0 -writings from the finnish academy of fine arts,0 -käännöstieteen tutkimus,1 -filosofisia tutkimuksia helsingin yliopistosta,0 -research journal of textile and apparel,1 -koulutuksen arviointineuvoston julkaisuja,0 -forschungsjournal soziale bewegungen,0 -ortodoksia,1 -päijät-hämeen sosiaali-ja terveysyhtymän julkaisuja,0 -contemporary islam,1 -sas julkaisusarja,0 -himalayan discoveries,0 -ruukku,1 -histories,0 -scalable computing. practice and experience,0 -acta translatologica helsingiensia,0 -kansallisbiografia,0 -tutkimuksia - jyväskylän yliopisto. opettajankoulutuslaitos,0 -taiteiden tiedekunnan julkaisuja b : tutkimusraportteja,0 -publikation från pedagogiska fakulteten vid åbo akademi,0 -kokos julkaisuja,0 -higher education,1 -mi`gug`hag nonjib,0 -nursing management,1 -health,0 -international journal of cancer research,0 -cellular oncology,1 -maritime studies,1 -železnodorožnyj transport,0 -gumanitarnye nauki i obrazovanie,0 -encyclopaedia of woman and islamic cultures online,1 -upes law review,0 -gstf journal of engineering technology,0 -academia journal of educational research,0 -academic and applied research in public management science,1 -acarologia,1 -aceee international journal on information technology,0 -acrocephalus,0 -acta linguistica petropolitana,1 -acta baltica historiae et philosophiae scientiarum,1 -acta chirurgiae orthopaedicae et traumatologiae ?echoslovaca,0 -acta mycologica,1 -acta neuropathologica communications,1 -adipocytes,0 -administrative sciences,1 -advanced materials interfaces,1 -"advanced science, engineering and medicine",1 -advanced studies in biology,0 -advances in applied sociology,0 -advances in business related scientific research journal,1 -advances in cognitive psychology,1 -advances in gerontology,0 -advances in infectious diseases,0 -advances in manufacturing,1 -advances in microbiology,0 -advances in natural and applied sciences,0 -advances in organic synthesis,0 -advances in sustainability and environmental justice,0 -advances in wound care,0 -african review,0 -afrika focus,0 -aktuel naturvidenskab,0 -albertus magnus,0 -allergy and rhinology,0 -"allergy, asthma, and clinical immunology",1 -al-mukhatabat,1 -alternative and integrative medicine,0 -american international journal of social science,0 -american journal of epidemiology and infectious disease,0 -analytic philosophy,2 -anatomy & cell biology,1 -annales de pathologie,1 -annales universitatis paedagogicae cracoviensis,0 -annals of laboratory medicine,1 -anuari de filologia. llengües i literatures modernes,0 -anyanyelv-pedagógia,0 -apcbees procedia,0 -apstract,1 -archives héraldiques suisses,0 -archives of osteoporosis,1 -arkiv : tidskrift för samhällsanalys,0 -ars aequi,0 -asian journal of business and management,0 -asian journal of clinical nutrition,0 -asian journal of education and e-learning,0 -asia-pacific journal of research in early childhood education,0 -asil insights,0 -astronomičeskij žurnal,0 -autism-open access,0 -bacteriophage,1 -baltic journal of coleopterology,1 -béascna,0 -beiträge zur rechtsgeschichte österreichs,1 -bergen journal of criminal law and criminal justice,1 -bestpractice: lääketieteen asiantuntijoiden ammattilehti,0 -betekint?,0 -biodiversity research and conservation,1 -biofuels,1 -bioinvasions records,1 -biology,1 -biology of mood & anxiety disorders,1 -biology open,1 -biomed research international,0 -"y?xué g?ngchéng. applications, basis, communications",1 -biomedical human kinetics,1 -biomedical spectroscopy and imaging,1 -biomedicine,1 -biomedicines,1 -biomolecules,1 -biosensors,1 -biotechnologia acta,0 -bollettino di studi sartriani,0 -bone joint research,1 -botulinum journal,1 -brain and behavior,1 -brain sciences,1 -brazilian journal of allergy and immunology,1 -british journal of anaesthetic and recovery nursing,0 -jōetsu kyōiku daigaku kenkyū kiyō,0 -cahiers afls,1 -canadian journal of urban research,0 -carbohydrate chemistry,1 -case reports in dentistry,0 -case reports in obstetrics and gynecology,0 -case studies journal,0 -cellulose communications,0 -central european astrophysical bulletin,1 -chenia,0 -mucai gongye,0 -chinese journal of applied linguistics,1 -chinese semiotic studies,1 -civilisations,1 -clinical case reports,0 -clinical nursing studies,0 -clinical proteomics,1 -clinical simulation in nursing,1 -collectanea sancti martini,1 -communication design quarterly review,0 -comparative legilinguistics,0 -computers,1 -concrete operators,1 -conference of the international journal of arts & sciences,0 -contextos,0 -coyote,0 -cpt: pharmacometrics and systems pharmacology,1 -cross-cultural communication,0 -current drug safety,1 -current radiopharmaceuticals,1 -cyber orient,1 -cyberpsychology,1 -dermatology and therapy,0 -detskie čteniâ,0 -"deusto, estudios cooperativos",1 -diabetes management,0 -didaktisk tidskrift,0 -die,1 -behinderung und internationale entwicklung,0 -doklady. biological sciences,0 -dublin university law journal,1 -dutch journal of applied linguistics,1 -earsel eproceedings,1 -eastern mediterranean health journal,1 -east-west journal of mathematics,1 -economic and political studies,1 -economics and culture,0 -e-conservation journal,0 -ecopsychology,1 -education in the north,1 -"educational measurement, issues and practice",1 -e-health telecommunication systems and networks,0 -ehituskunst,0 -"electrical, control and communication engineering",0 -elife,2 -keompyuteo eumak jeoneol emille,1 -endocrine connections,1 -energy and environment research,0 -energyspectrum,0 -entomologica basiliensia et collectionis frey,0 -environmental philosophy,1 -"epidemiology, biostatistics and public health",1 -regard sur l´est,0 -études en didactique des langues,0 -"eurasia journal of mathematics, science & technology education",1 -europa xxi,0 -european integration studies,1 -european journal of academic research,0 -european journal of analytic philosophy,1 -european journal of chemistry,0 -european journal of cross-cultural competence and management,1 -european journal of educational studies,0 -european journal of government and economics,1 -european journal of science and mathematics education,1 -european orthopaedics and traumatology,1 -european social sciences research journal,0 -european taxation,1 -evolution equations and control theory,0 -expert opinion on medical diagnostics,1 -expert review of obstetrics and gynecology,0 -f1000research,1 -fair play,1 -febs open bio,1 -fenno-ugrica suecana,1 -folia malaysiana,0 -forum kritische psychologie,1 -friction,1 -frontiers in molecular neuroscience,1 -frontiers in oncology,1 -future internet,0 -games,1 -géneros,1 -"geography, environment and sustainability",1 -giornale di gerontologia,1 -global business review,1 -global journal of engineering education,0 -global journal on technology,0 -global perspectives on geography,0 -global spine journal,1 -glossae,0 -glottotheory,1 -gramarye,0 -spor bilimleri dergisi,0 -"hearing, balance and communication",1 -helix,0 -história da historiografia,1 -h-net reviews,0 -i/c,1 -icic express letters part b : applications,1 -ideas in ecology and evolution,1 -ieee access,1 -in silico pharmacology,1 -in bo,0 -indian fern journal,0 -inflammasome,0 -anazitiseis sti fysiki kai ton athlitismo,0 -insights into imaging,1 -insights on learning disabilities,1 -"international journal of research, innovation and commercialisation",0 -international journal of business competition and growth,0 -interactive technology and smart education,1 -international bibliography of military history,1 -international electronic journal of elementary education,1 -international forum of allergy and rhinology,1 -international forum of teaching and studies,1 -international journal for applied management science and global developments,0 -"international journal for history, culture and modernity",2 -international journal for innovation and quality in learning innoqual,1 -international journal of advanced computer science,0 -international journal of advancements in computing technology,0 -international journal of advances in engineering sciences and applied mathematics,0 -sae international journal of aerospace,1 -international journal of agricultural and food research,0 -international journal of agricultural management,0 -international journal of agriculture and forestry,0 -international journal of biomedical and clinical engineering,0 -international journal of business administration,0 -international journal of business and social research,0 -international journal of business research management,0 -international journal of coaching science,1 -international journal of community diversity,0 -international journal of computer and communication engineering,0 -international journal of computer and information technology,0 -international journal of conflict engagement and resolution,0 -international journal of cyber criminology,1 -international journal of diary science,0 -international journal of dependable and trustworthy information systems,0 -international journal of development and conflict,0 -southeast asia early childhood journal,1 -international journal of economic sciences and applied research,0 -"international journal of economy, management and social sciences",0 -international journal of energy engineering,0 -international journal of engineering science and technology,0 -"international journal of fashion design, technology and education",1 -international journal of health information management research,0 -international journal of human computer interactions,0 -"international journal of mechanical, industrial science and engineering",0 -international journal of information technology & computer science,0 -international journal of interdisciplinary organizational studies,0 -international journal of lean six sigma,1 -international journal of machine learning and computing,0 -international journal of monitoring and surveillance technologies research,0 -international journal of physical medicine and rehabilitation,0 -international journal of politics and law research,1 -international journal of precision engineering and manufacturing,1 -international journal of renewable and sustainable energy,0 -international journal of research in social sciences,0 -international journal for rural law and policy,0 -"international journal of science, commerce and humanities",0 -international journal of science education part b communication and public engagement,1 -international journal of sciences,0 -international journal of scientific research in inventions and new ideas,0 -international journal of social science research,0 -international journal of social science studies,0 -international journal of sociology study,1 -international journal of software engineering and soft computing,0 -international journal of spectroscopy,0 -international journal of sustainable water and environmental systems,0 -the international journal of the academic business world,0 -the international journal of the commons,1 -international journal of thermal & environmental engineering,0 -international journal on mental health and deafness,1 -"isel academic journal of electronics, telecommunications and computers",0 -islamic perspective,0 -islamochristiana,1 -issues of analysis,0 -jama internal medicine,3 -jama neurology,3 -jama ophthalmology,3 -jama otolaryngology : head and neck surgery,3 -jama pediatrics,3 -jama psychiatry,3 -jimd reports,1 -"journal for educators, teachers and trainers",0 -journal of accounting in emerging economies,1 -journal of addiction,1 -journal of adolescent and young adult oncology,1 -journal of advanced ceramics,2 -international journal of advanced materials manufacturing and characterization,0 -journal of aeronautics and aerospace engineering,0 -journal of airport management,0 -journal of alcohol drug dependence,0 -journal of amino acids,1 -journal of applied arts and health,0 -journal of applied nonlinear dynamics,0 -journal of applied sciences research,0 -journal of arizona history,0 -journal of asian politics and history,1 -journal of atrial fibrillation,1 -journal of automatic control,0 -journal of automation and control engineering,0 -journal of behavioral and brain science,0 -journal of bioengineering and biomedical science,0 -journal of carcinogenesis and mutagenesis,0 -zhongnan daxue xuebao. ziran kexue ban,0 -changshu gao-zhuan xuebao,0 -journal of chemistry,1 -journal of chemistry and chemical engineering,0 -journal of child and adolescent behavior,0 -journal of communications and information sciences,1 -journal of computational information systems,1 -journal of computer-aided design & computer graphics,0 -journal of defence studies,0 -journal of defense resources management,0 -journal of defense studies and resource management,0 -journal of early modern studies,2 -journal of e-business,0 -journal of economic research,0 -"journal of economics, business and management",0 -journal of education and research,1 -"journal of education, culture and society",0 -journal of enterprise architecture,0 -journal of extracellular vesicles,2 -journal of finance and economics,0 -journal of food processing and beverages,0 -journal of forest science,1 -journal of frontiers in construction engineering,0 -journal of general practice,0 -journal of geographic information system,0 -the journal of global business issues,0 -journal of global scholars of marketing science,0 -journal of health informatics in africa,0 -journal of human security,1 -journal of ichthyology,1 -journal of immersion and content-based language education,1 -journal of information technology research,0 -journal of innovation management,1 -journal of integrated omics,1 -journal of international higher education,0 -journal of internet services and applications,1 -journal of interpolation and approximation in scientific computing,0 -journal of investigative and clinical dentistry,0 -journal of irish and scottish studies,1 -journal of jesuit studies,1 -"journal of knowledge management, economics and information technology",0 -"journal of law, business and ethics",1 -journal of legal anthropology,1 -journal of management and strategy,0 -journal for manufacturing science and production,1 -journal of medical engineering,0 -journal of molecular biomarkers and diagnosis,0 -žurnal nano- ta elektronnoï fìziki,1 -jonares,0 -heilongjiang daxue ziran kexue xuebao,0 -jianghan shiyou xueyuan xuebao,0 -journal of organization design,1 -journal of pediatric rehabilitation medicine,0 -journal of population ageing,1 -journal of powder technology,0 -journal of preventive medicine and public health,0 -j-reading,1 -journal of research in social sciences,0 -journal of rock mechanics and geotechnical engineering,1 -journal of self-assembly and molecular electronics,1 -journal of simulation,1 -journal of software engineering and applications,0 -journal of space weather and space climate,1 -journal of spectroscopy,0 -"journal of sustainable development of energy, water and environment systems",1 -journal of sustainable finance and investment,1 -journal of taphonomy,1 -journal of teaching and education,0 -journal of the american heart association: cardiovascular and cerebrovascular disease,2 -journal of the pediatric infectious diseases society,1 -journal of urban and environmental engineering,1 -journal of vaccines and vaccination,0 -revista de psicología del trabajo y de las organizaciones,0 -journal of wscg,1 -journal on selected topics in nano electronics and computing,0 -jp journal of biostatistics,0 -jurisprudencija,0 -kommentár,0 -"law, democracy & development",0 -le français dans le monde. recherches et applications,1 -les cahiers irice,0 -levéltári szemle,0 -limes plus,0 -lìtasfera,0 -logičeskie issledovaniâ,1 -lymphologie in forschung und praxis,1 -makerere journal of higher education,0 -marketing education review,1 -marketing management journal,0 -marketing review st. gallen,0 -masaryk university journal of law and technology,1 -masculinidades y cambio social,1 -materiały ceramiczne,0 -mathematical control and related fields,1 -mathematics for applications,0 -melbourne journal of international law,1 -metabolomics: open access,0 -meždunarodnaâ èkonomika,0 -microorganisms,1 -mires and peat,1 -"mltj : muscles, ligaments and tendons journal",0 -modern behavioral science,0 -xiandai chuanbo,0 -muslim education quarterly,0 -nano communication networks,1 -nanotechnology reviews,1 -natural science,0 -nätverket,0 -neuroimage : clinical,2 -neurology. clinical practice,0 -noise and vibration in industry,0 -non-genetic inheritance,1 -nonprofit digest,0 -oa anaesthetics,0 -observatorio (obs*),1 -open journal of air pollution,0 -open journal of education,1 -open journal of pediatrics,0 -open journal of therapy and rehabilitation,0 -open journal of veterinary medicine,0 -optics and photonics journal,0 -osgeo journal,0 -österreichische zeitschrift für südostasienwissenschaften,0 -öt kontinens,0 -pacific science review,0 -"p-adic numbers, ultrametric analysis and applications",1 -paesaggio urbano,0 -paideia,0 -pct international applications,0 -pedagogia oggi,0 -pediatrics and therapeutics,0 -peruvian journal of epistemology,1 -filologičeskie nauki : naučnye doklady vysšej školy,0 -physical culture and sport studies and research,1 -physio-géo,1 -phytokeys,1 -plasma and fusion research,1 -poliittinen talous,1 -polish journal of natural sciences. supplement,0 -política común,1 -the poznań university of economics review,0 -pratique vétérinaire équine,0 -pravo i politika,0 -pregnancy hypertension,1 -pro ligno,1 -problems of management in the 21st century,0 -psychiatry journal,0 -psychology and education,0 -"psychology, community and health",1 -public health reviews,1 -nic series : publication series of the john von neumann institute for computing,1 -publications,1 -pula,0 -"qualitative research in sport, exercise and health",1 -quarterly journal of chinese studies,0 -radio,0 -radiology case reports,0 -recherches en communication,0 -recherches en éducation,0 -recht der transportwirtschaft,0 -rehabilitation research and practice,0 -rendiconti del circolo matematico di palermo,1 -research in consumer behavior,0 -research in economics and business: central and eastern europe,0 -research in neuroscience,0 -"research in social movements, conflicts and change",1 -"resilience : international policies, practices and discourses",1 -resources,1 -"review of european, comparative & international environmental law",2 -review of international geographical education online,1 -review of philosophy and psychology,1 -review on agriculture and rural development,0 -revista de derecho de sociedades,0 -revista de investigación en educación,0 -revista de psicopatología y salud mental del niño y del adolescente,0 -revista d`estudis autonòmics i federals,1 -educación,0 -revista española de educación comparada,1 -revista internacional de organizaciones,0 -revista estudios,1 -revue économique et sociale,0 -revue international du crires: innover dans la tradition de vygotsky,1 -richard-strauss-jahrbuch,0 -"risk, hazards and crisis in public policy",1 -romano džaniben,0 -rural theology journal,1 -rossijskij žurnal nauk o zemle,0 -russkaâ rečʹ,0 -sae international journal of commercial vehicles,1 -sartoniana,1 -science and technology,0 -science education international,1 -sciences in cold and arid regions,1 -linye kexue,0 -"naučno-tehničeskij vestnik informacionnyh tehnologij, mehaniki i optiki",0 -prace naukowe - politechnika warszawska. transport,0 -scripta,1 -sehepunkte,0 -sehnsucht,1 -"vestnik tverskogo gosudarstvennogo universiteta. seriâ, pedagogika i psihologiâ",0 -skope,0 -social sciences directory,0 -sociopedia.isa,0 -solid earth discussions,0 -sotsyal`naya i klinicheskaya psikhyatriya,0 -south african family practice,0 -sovremennye issledovaniâ social?nyh problem,1 -"sport, exercise, and performance psychology",1 -stewart postharvest review,0 -storicamente,1 -studies in media and communication,0 -warasan technology suranaree,0 -sveikatos mokslai,0 -symmetry : art and science,0 -symphonya,0 -synergies pologne,0 -technical communication quarterly,1 -textus,0 -international journal of designed objects,0 -the international journal of interdisciplinary social and community studies,0 -"international journal of science, mathematics and technology learning",1 -the international journal of the inclusive museum,1 -internet journal of geriatrics and gerontology,0 -ningen kōgaku,0 -the journal of advanced prosthodontics,0 -the journal of astronomical data,0 -journal of design strategies,0 -the journal of media law,1 -the online journal of distance education and e-learning,1 -the open clinical trials journal,0 -the open education journal,0 -the open environmental pollution and toxicology journal,0 -the open software engineering journal,0 -the review of diabetic studies,1 -world financial review,0 -thl2,0 -tvcr,0 -tijdschrift voor onderwijsrecht en onderwijsbeleid,1 -tilde-skriftserie,0 -tiltai,0 -tissue barriers,1 -topos,1 -seitai ikougaku,0 -transactions of the association for computational linguistics,1 -transactions of the digital games research association,1 -transactions of the institute of mathematics of the national academy of sciences of ukraine,0 -toraks dergisi,0 -united academics journal of social sciences,0 -"journal of law, technology & policy",1 -us-china foreign language,0 -uwm law review,1 -verbum,1 -vestnik sankt-peterburgskogo universiteta kulʹtury i iskusstv,0 -vestnik permskogo universiteta. istoriâ,1 -vienna yearbook of population research,0 -waste and biomass valorization,1 -wgn,0 -women`s history magazine,1 -workplace,1 -world applied sciences journal,0 -world journal for pediatric and congenital heart surgery,0 -world journal of clinical oncology,0 -world journal of vat/gst law,1 -world of media,0 -"world of metallurgy, erzmetall",0 -youth justice,1 -youth studies australia,1 -žurnal zarubežnogo zakonodatelʹstva i sravnitelʹnogo pravovedeniâ,0 -sociedad de la información,0 -international journal of management accounting research,1 -open journal of leadership,0 -journal of african and asian local goverment studies,1 -kirke og kultur,1 -romanic review,1 -svensk pastoraltidskrift,0 -jahrbuch der religionspädagogik,1 -tidsskrift for praktisk teologi,1 -revija za sociologiju,1 -acta lapponica fenniae,0 -sociologia,1 -r&t. religion & theology,1 -international journal of pharmaceutical compounding,1 -biodiversity data journal,1 -medijska istraživanja,1 -tatra mountains mathematical publications,1 -journal of dance education,2 -ieee power electronics letters,1 -verbum et ecclesia,1 -frontiers in neuroenergetics,1 -fashion practice,1 -yearbook of phraseology,1 -wittgenstein-studien,1 -rtr,0 -applied spatial analysis and policy,1 -the journal of media innovations,1 -critical education,1 -international journal of railway,1 -international journal of mathematics and computers in simulation,0 -svenskt gudstjänstliv,1 -the international journal of railway technology,1 -journal of linguistic geography,1 -international journal of decision support systems,0 -international transactions on electrical energy systems,1 -"journal of textile design, research and practice",1 -journal of contemporary archaeology,1 -"dance, movement & spiritualities",1 -physiological reports,1 -finno-ugric languages and linguistics,1 -vestnik permskogo universiteta. rossijskaâ i zarubežnaâ filologiâ,1 -laws,1 -avant,1 -iris,0 -iris,1 -irodalomtorteneti kozlemenyek,0 -island studies journal,1 -isprs international journal of geo-information,1 -issi newsletter,0 -istorija peterburga,0 -nichibunken japan review,0 -gengo bunka to nihongo ky?iku,0 -japanese psychological research,1 -âzyk i social?naâ dinamika,0 -jiaoyu xueshu uuekan,0 -jilin daxue xuebao,0 -jmir research protocols,1 -journal europäischer orchideen,0 -journal for language technology and computational linguistics,1 -journal for studies in humanities and social sciences,0 -journal for the cognitive science of religion,1 -journal of african and international law,1 -journal of allergy,0 -journal of applied biomaterials & functional materials,1 -journal of applied botany and food quality,1 -istraživanja i projektovanja za privredu,0 -journal of art historiography,1 -journal of biometrics & biostatistics,0 -journal of bioremediation & biodegradation,0 -journal of business administration,0 -the journal of business and retail management research,0 -journal of business studies quarterly,0 -journal of cancer,1 -journal of cancer therapy,0 -journal of cell death,1 -journal of civil & environmental engineering,0 -journal of civil engineering research,0 -journal of classical analysis,0 -journal of clinical gerontology and geriatrics,1 -journal of communication and computer,0 -journal of communication in healthcare,1 -journal of community genetics,1 -journal of contract management,0 -journal of craniomandibular function,1 -journal of critical globalisation studies,1 -journal of data science,0 -journal of dentistry tums,0 -journal of disaster research,1 -journal of early childhood education research,1 -journal of educational and developmental psychology,0 -journal of educational and social research,0 -journal of electrical and computer engineering,1 -journal of entrepreneurial and organizational diversity,0 -journal of experimental criminology,1 -journal of faculty and staff development in higher education,0 -journal of functional biomaterials,1 -journal of geophysical research : atmospheres,2 -the gstf business review,0 -journal of hospitality and tourism technology,0 -journal of information technology & software engineering,0 -"journal of information, intelligence and knowledge",0 -journal of international business and economy,0 -journal of international organization studies,1 -journal of international scientific publications: ecology & safety,0 -journal of internet engineering,0 -journal of internet law,0 -nihon terewaku gakkaishi,0 -journal of materials science research,0 -journal of medicine and medical sciences,0 -journal of modern physics,0 -"journal of music, technology and education",1 -journal of nucleic acids,0 -journal of nursing education and practice,0 -journal of obesity,1 -journal of obesity & weight loss therapy,0 -journal of optics a: pure and applied optics,1 -journal of optometry,1 -journal of oral microbiology,2 -journal of patient safety,1 -journal of pediatric genetics,1 -journal of perioperative practice,1 -journal of polish safety and reliability association,0 -journal of reliability and statistical studies,0 -journal of social research & policy,1 -journal of social sciences,0 -"journal of social, political and economic studies",1 -journal of sport and health science,1 -journal of statistical and econometric methods,0 -journal of stem cell research and therapy,0 -journal of strategic innovation and sustainability,0 -journal of teacher education and educators,1 -nippon jozo kyokaishi,0 -journal of the electrochemical society of india,0 -journal of the international aids society,1 -nihon onsen kiko butsuri igakkai zasshi,0 -journal of tissue engineering,2 -journal of transportation security,1 -journal of vaishnava studies,0 -journal of veterinary science & technology,0 -journal of visualized experiments,1 -zhejiang shuren daxue xuebao,0 -jurnal hubungan internasional,0 -jusletter it,0 -kansalliskirjasto,0 -katalysnytt,0 -vakki publications,1 -kilpailuoikeudellinen vuosikirja,1 -kliin lab,0 -knowledge management & e-learning: an international journal,1 -kobe hogaku zassi,0 -koleopterologische rundschau,0 -konsepti,0 -la nuova critica,1 -lastronomie,0 -lab world magazine,0 -lampyrid,0 -language learning in higher education,1 -le discours et la langue,1 -learning landscapes,1 -led professional review,0 -lernen und lernströrungen,1 -langues modernes,0 -europe unie,0 -liber quarterly,1 -life,0 -liikenne/kaupunki,0 -linguistic issues in language technology,1 -"linguistics, culture & education",0 -lo sguardo,1 -logic and philosophy of science,1 -maandblad voor accountancy en bedrijfseconomie,0 -maejo international journal of science and technology,1 -mäetagused,0 -management and production engineering review,1 -manuelle therapie,1 -marine systems & ocean technology,1 -matematicheskii sbornik,0 -media asia,1 -media education research journal,1 -memorandum,0 -metallovedenie i termicheskaya obrabotka metallov,0 -mevlana international journal of education,0 -mexicon,0 -microbiologyopen,1 -migration and development,1 -minerva gastroenterologica e dietologica,0 -miscellanea di storia delle esplorazioni,0 -mitteilungen der paul-sacher-stiftung,0 -modelling and simulation in engineering,1 -molecular syndromology,1 -molecular therapy nucleic acids,1 -moscow university biological sciences bulletin,0 -multiple sclerosis international,1 -multunk,0 -music business journal,0 -music forum,0 -muzealnictwo,0 -mycokeys,1 -the yearbook of the national society for the study of education,1 -native plants journal,0 -clinical kidney journal,1 -neue zeitschrift für arbeitsrecht,1 -neurodegenerative disease management,1 -new journal of european criminal law,1 -tutkimusraportti. lappeenrannan teknillinen yliopisto: lut energia,0 -"nonlinear optics, quantum optics",1 -nordenskiöld-samfundets tidskrift,0 -nordregio news,0 -north american fungi,1 -nouvelles perspectives en sciences sociales,0 -növényvédelem,0 -novosti sistematiki nizsich rastenij,0 -nucleus,1 -nuf-bulletinen,0 -numismaattinen aikakauslehti,0 -"obshchestvo: filosofija, istorija, kultura",0 -obstetric medicine,1 -oebalus: studi campania antichità,0 -omphalina,0 -oncoimmunology,2 -online journal of communication and media technologies,0 -open complementary medicine journal,0 -open journal of modern hydrology,0 -open journal of nursing,0 -open journal of political science,0 -open journal of preventive medicine,0 -open journal of psychiatry,0 -open journal of statistics,0 -open nursing journal,0 -"oral surgery, oral medicine, oral pathology and oral radiology",1 -organum,0 -orientalia lovaniensia analecta,1 -oslo studies in language,1 -otetchestvennaja i zarubezhnaja pedagogika,0 -other education,0 -otherness,0 -the philosophical society review,0 -oxidants and antioxidants in medical science,1 -parrhesia,1 -passerelles entre le commerce et le developpement durable,0 -pathophysiology,1 -peatlands international,0 -pedagogy : theory and praxis,0 -pedagogy and the human sciences,0 -periodica polytechnica: civil engineering,1 -pharmacy practice,1 -phenomenological inquiry,0 -philosophy study,0 -piccola impresa,0 -pig progress,0 -plant genetic resources,1 -plastics research online,0 -po&sie,0 -polish botanical journal,1 -politics & policy,1 -politiikasta.fi,0 -polski proces cywilny,0 -preternature,0 -primary health care: open access,0 -pro et contra,0 -problema: anuario de filosofía y teoría del derecho,1 -problemnyj analiz i gosudarstvenno-upravlen?eskoe proektirovanie,0 -problemy sovremennogo obrazovanija,0 -procedia cirp,1 -proceedings of the institution of mechanical engineers part i: journal of systems and control engineering,1 -professioni infermieristiche,1 -przeglad epidemiologiczny,1 -przeglad papierniczy,0 -przestrzen spoleczna,0 -psyche: a journal of entomology,0 -psychology & sexuality,1 -public health frontier,0 -public infrastructure bulletin,0 -public service review,0 -public service review: health and social care,0 -rabies bulletin europe,0 -rakennustekniikka,0 -reflecting education,1 -religions,1 -res publica,0 -research journal in organisational psychology and educational studies,0 -respons,0 -review of economics & finance,0 -review of knowledge management,0 -revista de derecho y nuevas tecnologias,0 -"revista clínica de periodoncia, implantología y rehabilitación oral",0 -revista economica,0 -revista ecumenica sibiu,0 -revista española de antropología física,0 -revue roumaine de philosophie,1 -riss (trondheim),0 -rmn newsletter,1 -roma nel rinascimento,0 -eluosi yanjiu,0 -russkii yazyk za rubezhom,0 -sa journal of human resource management,0 -sciecom info,0 -scientia paedagogica experimentalis,1 -scottish affairs,0 -scripta,1 -secularism and nonreligion,1 -annales littéraires de luniversité de besançon: série linguistique et sémiotique,0 -seminars in orthodontics,0 -saj serbian architectural journal,0 -sic!,0 -"signes, discours et sociétés",1 -signum temporis,1 -singapore nursing journal,0 -skattenytt,1 -sleep disorders,1 -smart grid and renewable energy,0 -social and cultural research,0 -social geography discussions,0 -socioekonomické a humanitnì studie,0 -sociologia del lavoro,1 -soil organisms,0 -solas news,0 -j?v?d?n khirad,0 -south asian journal of business and management cases,1 -daizu tampakushitsu kenkyu,0 -spazio filosofico,0 -spermatogenesis,1 -spin,0 -steel construction - design and research,1 -stomatologija,1 -stroke research and treatment,1 -studi cassinati,0 -strokovna in znanstvena dela,0 -studies in hispanic and lusophone linguistics,2 -studies of transition states and societies,1 -studii si cercetari de onomastica si lexicologie,0 -"substance abuse treatment, prevention, and policy",1 -sudura,0 -nautica fennica,1 -suomi-mongolia-seuran jäsenlehti,0 -surgical neurology international,1 -sei working paper,0 -swarm and evolutionary computation,2 -systematic reviews,1 -társadalmi nemek tudománya interdiszciplináris efolyóirat,0 -tatarskaia arkheologiia,1 -oulun yliopiston oppimateriaalia c : tekniikka,0 -revista teknokultura,0 -teoria politica,1 -teca,0 -texto digital,0 -bookplate journal,0 -the bulletin of bismis,0 -the changing face of music and art education,1 -the daily star,0 -european journal of social & behavioural sciences,0 -the evolutionary review,0 -the global journal of health and physical education pedagogy,0 -the international journal of management science and information technology,0 -transport & logistics,0 -game: the italian journal of game studies,0 -journal of china universities of posts and telecommunications,0 -the journal of drama and theatre education in asia,1 -"vìsnik harkìvs?kogo nacìonal?nogo unìversitetu ìmenì v.n. karazìna. serìâ fìzi?na âdra, ?astinki, polâ",0 -journal of pastoral theology,0 -the journal of physical fitness and sports medicine,0 -macrotheme review,0 -max planck encyclopedia of public international law,1 -the open public health journal,0 -the open renewable energy journal,0 -the pastoral review,0 -the philosophical age,0 -the primary care companion for cns disorders,0 -the systematist,0 -the tqm journal,1 -theofilos,0 -theoretical economics letters,0 -tidsskrift for den norske legeforening,1 -tijdschrift voor sociologie,1 -tkh. teorija koja hoda,0 -tolstoy studies journal,0 -total art,1 -tourism and hospitality management,0 -trudy akademenergo,0 -transactions on computational systems biology,1 -transcience,0 -transcription,1 -translation journal,0 -translit,0 -trends in applied sciences research,0 -tribology online,1 -tringa,0 -trio,1 -tropicultura,1 -tvergastein,0 -unitas fratrum,0 -urheilu ja oikeus : urheiluoikeuden yhdistyksen jäsenlehti,0 -"us-china education review. b, education theory",0 -utrecht law review,1 -tijdschrift voor verslaving,0 -vestnik arhivista,0 -vestnik burâtskogo gosudarstvennogo universiteta,0 -"vestnik moskovskogo universiteta: seriâ, filosofiâ",0 -vestnik st. petersburg university: mathematics,0 -vestnik tverskogo gosudarstvenngo universiteta. seriia: istoriia,0 -victorian journal of home economics,0 -visual arts research,1 -voenno-istoricheskii zhurnal,1 -"world academy of science, engineering and technology proceedings",0 -the water wheel,0 -wiadomo?ci konserwatorskie,0 -wiley interdisciplinary reviews. membrane transport and signaling,0 -wiley interdisciplinary reviews. rna,1 -"world academy of science, engineering and technology",0 -the world allergy organization journal,1 -world electric vehicle journal,1 -shijie linye yanjiu,0 -world journal of mechanics,0 -world journal of neuroscience,0 -world journal of otorhinolaryngology,0 -world journal of pediatrics,1 -world journal of social sciences,0 -world of the news,0 -wseas transactions on signal processing,0 -xiandai tushu qingbao jishu,0 -yakugaku zasshi,0 -yliopistopedagogiikka,1 -zavarivanje i zavarene konstrukcije,0 -zdravniski vestnik,1 -zeitschrift für vergleichende politikwissenschaft,1 -zeitschrift für entwicklungspsychologie und pädagogische psychologie,1 -zeitschrift für tourismuswissenschaft,0 -zhurnal voprosy neirokhirurgii im. nn burdenko,0 -d?ngwùxué yánji?,0 -zoology and ecology,1 -arbitražnye spory,0 -baltijskij region,1 -sociologiâ nauki i tehnologij,1 -"âzyk, kommunikaciâ i social?naâ sreda",1 -faxuejia,0 -hokkaidou daigaku kyoushoku katei nempou,0 -bibliothèque russe de linstitut détudes slaves,0 -arkistolaitoksen toimituksia,0 -julkaisusarja - helsingin yliopisto. tietojenkäsittelytieteen laitos. b. raportti,0 -meddelanden - åbo akademi. litteraturvetenskapliga institutionen,0 -helsingin yliopiston metsätieteiden laitoksen julkaisuja,0 -politiikan ja talouden tutkimuksen laitoksen julkaisuja,0 -publication of the research institute of the lutheran church in finland,0 -sosiaalitieteiden laitoksen julkaisuja,0 -sosnet julkaisuja,0 -sskh notat,0 -kehitysvammaliiton tutkimuksia,0 -turun ammattikorkeakoulun tutkimuksia,0 -suomalaisen lakimiesyhdistyksen julkaisuja. e-sarja,0 -synergies france,0 -tekstiilikulttuuriseuran julkaisuja,0 -etelä-karjala-instituutti. toimituksia,0 -reihe politikwissenschaft,0 -tutkimuksia - eläketurvakeskus,0 -ulmus,0 -centrum för feministiska samhällsstudier,0 -julkaisuja (jyväskylän yliopiston kauppakorkeakoulu),0 -bottnisk kontakt,0 -skrifter utgivna av svenska barnboksinstitutet,0 -"oulun yliopiston oppimateriaalia. e, kasvatustieteet",0 -julkaisu - oulun yliopisto. arkkitehtuurin osasto. a,0 -pohjois-karjalan historiallisen yhdistyksen vuosikirja,1 -kultaneito,1 -julkaisu (tampereen teknillinen yliopisto. arkkitehtuurin laitos),0 -raportti (terveyden ja hyvinvoinnin laitos),0 -"julkaisusarja - turun yliopiston kasvatustieteiden tiedekunta. b, selosteita",0 -turun yliopiston suomen kielen ja suomalais-ugrilaisen kielentutkimuksen oppiaineen julkaisuja,0 -baltic port insight,0 -aalto university publication series : business + economy,0 -aalto university publication series crossover,0 -asiakkuusmarkkinoinnin vuosikirja,0 -jyväskylän yliopiston psykologian laitoksen julkaisuja,0 -suomen ympäristöoikeustieteen seuran julkaisuja,0 -meddelanden från svenska handelshögskolan,0 -turun museokeskuksen julkaisuja,0 -helsingin yliopiston historian laitoksen julkaisuja,0 -historiallis-yhteiskuntatiedollisen kasvatuksen tutkimus- ja kehittämiskeskuksen tutkimuksia,0 -juridica-kirjasarja,0 -research (national institute for health and welfare),0 -jyväskylän yliopiston kirjaston julkaisuja,0 -lapin yliopiston kasvatustieteellisiä julkaisuja,0 -tutkimuksia - kuntoutussäätiö,0 -jyväskylän yliopiston liikuntakasvatuksen laitoksen tutkimuksia,0 -magma studie,0 -tutkimuksia (helsingin kaupungin tietokeskus),0 -persona grata,0 -mmm:n julkaisuja,0 -museologia,0 -kåkenhus-kirjat,0 -"merisotakoulun julkaisusarja. a, tutkimuksia",0 -koulu ja menneisyys,1 -renvall-instituutin julkaisu,0 -"julkaisuja. sarja b, tutkimuksia ja raportteja (kymenlaakson ammattikorkeakoulu)",0 -jyväskylä studies in biological and environmental science,0 -skrifter utgivna av historiska samfundet i åbo,0 -lapin yliopiston taiteiden tiedekunnan julkaisuja c : katsauksia ja puheenvuoroja,0 -"kemi-tornion ammattikorkeakoulun julkaisuja. sarja b, raportit ja selvitykset",0 -tane-julkaisuja,0 -päijät-hämeen tutkimusseuran vuosikirja,0 -työ ja ihminen. tutkimusraportti,0 -liikuntatieteellisen seuran julkaisuja,0 -lapin yliopiston yhteiskuntatieteellisiä julkaisuja b : tutkimusraportteja ja selvityksiä,0 -ensi- ja turvakotien liiton raportti,0 -research papers in economic sociology,0 -tutkimusraportti (lappeenrannan teknillinen yliopisto. tuotantotalouden laitos),0 -journal of geophysical research : space physics,2 -journal of geophysical research : solid earth,2 -journal of geophysical research : oceans,1 -journal of geophysical research : planets,1 -journal of geophysical research : earth surface,2 -journal of geophysical research : biogeosciences,2 -journal of agricultural sciences,0 -epj web of conferences,1 -news and views,0 -cns. la chimica nella scuola,0 -endymatologika,0 -frontline learning research,1 -kunnallisalan kehittämissäätiön tutkimusjulkaisut,0 -"lahden ammattikorkeakoulun julkaisu. sarja c, artikkelikokoelmat, raportit ja muut ajankohtaiset julkaisut",0 -rovaniemen ammattikorkeakoulun julkaisuja c,0 -porrassalmi. etelä-savon kulttuurin vuosikirja,0 -turun ammattikorkeakoulun raportteja,0 -amos andersonin taidemuseon julkaisuja. uusi sarja,0 -"seinäjoen ammattikorkeakoulun julkaisusarja. a, tutkimuksia",0 -tts:n julkaisuja,0 -"publikation (arcada, nylands svenska yrkeshögskola)",0 -recherches et rencontres,0 -quaestiones disputatae,1 -viipurin suomalaisen kirjallisuusseuran toimitteita,1 -glalia,0 -aigis : elektronisk tidskrift for klassiske studier i norden,1 -selected papers from uk-cla meetings,0 -acs photonics,2 -advanced optical materials,2 -apl materials,2 -nanophotonics,2 -optical nanoscopy,1 -photonics research,2 -symmetry,1 -suomen etnomusikologisen seuran julkaisuja,0 -docmus-tohtorikoulun julkaisuja,1 -journal of fractal geometry,1 -bryobrothera,0 -evansia,0 -field bryology,0 -nova hedwigia beihefte,1 -"cuadernos de musica, artes visuales y artes escenicas",1 -música hodie,1 -the musical times,1 -sacred music,1 -tempo,1 -international journal of design engineering,0 -stat,1 -journal of survey statistics and methodology,1 -international association of geodesy symposia,1 -economic thought,1 -cahiers déconomie politique,1 -the journal of philosophical economics,1 -incantatio,1 -narrative culture,2 -journal of materials chemistry. a,2 -journal of materials chemistry. b,1 -andrology,1 -actes de la conférence : association francophone d'interaction homme machine,0 -proceedings of the australian software engineering conference,1 -proceedings : international forum on design languages,0 -ieee international conference on serious games and applications for health,1 -ieee latin american symposium on circuits and systems,0 -ieee wireless and microwave technology conference,0 -international conference on collaborative innovation networks,0 -wireless telecommunications symposium,0 -advances in fuzzy systems,1 -aging health,1 -ajankohta,1 -american journal of civil engineering,0 -american journal of molecular biology,0 -american journal of networks and communications,0 -american journal of neurodegenerative disease,1 -archaeological textiles newsletter,1 -archivum fratrum praedicatorum,0 -asia pacific journal of public administration,0 -asian journal of managerial science,1 -bergen language and linguistics studies,1 -british microbiology research journal,0 -cancers,1 -china journal of social work,1 -cholesterol,1 -cirp journal of manufacturing science and technology,2 -clinical ophthalmology,1 -comunicação e sociedade,1 -critical studies on security,1 -economic history of developing regions,2 -economics,1 -energy for sustainable development,1 -fluids and barriers of the cns,1 -foundations and trends in information systems,1 -higher education studies,0 -"higher education, skills and work-based learning",0 -human gene therapy. clinical development,1 -inflexions: a journal for research creation,1 -innovations,0 -intangible capital,0 -interface focus,1 -international insolvency review,1 -international journal for quality research,1 -international journal of power and energy systems,0 -international journal of advanced media and communication,1 -international journal of applied systemic studies,1 -international journal of behavioural and healthcare research,0 -international journal of business development and research,1 -international journal of child-computer interaction,1 -international journal of communication networks and distributed systems,1 -international journal of environment and sustainable development,1 -international journal of green computing,0 -international journal of health research and innovation,0 -international journal of innovation science,1 -international journal of intelligent enterprise,1 -international journal of mathematics in operational research,0 -international journal of metallurgical engineering,0 -international journal of molecular imaging,1 -international journal of steel structures,1 -international journal of sustainable built environment,1 -international journal of technology,1 -international journal on advances in software,0 -international refereed journal of engineering and science,0 -proceedings of the international conference on scientometrics and informetrics,1 -jarcp,1 -jmir mhealth and uhealth,2 -jomec journal,1 -journal of asian scientific research,0 -journal of biochemical and pharmacological research,0 -journal of clinical & experimental cardiology,0 -journal of complex analysis,0 -journal of co-operative organization and management,1 -journal of curriculum and pedagogy,1 -journal of distributed systems and technologies,0 -journal of economic and social policy,1 -journal of education and training,0 -journal of forestry research,1 -journal of genetic syndromes & gene therapy,0 -journal of international special need education,1 -journal of literature and art studies,0 -journal of multidisciplinary research,0 -journal of pharmaceutical health services research,1 -journal of practice teaching and learning,0 -journal of primary care and community health,1 -journal of social sciences,0 -journal of water resource and protection,0 -language and cognition,2 -liames,1 -magazine of civil engineering,0 -mechanical sciences,1 -mechanisms and machine science,1 -medicographia,0 -military behavioral health,0 -modern mechanical engineering,0 -nano energy,3 -netcom,0 -new zealand sociology,1 -nutrients,1 -oncogenesis,2 -operant subjectivity,0 -organizational aesthetics,1 -otázky žurnalistiky,1 -photonics & lasers in medicine,0 -physiological entomology,1 -politicheskaja lingvistika,1 -quantitative finance letters,1 -redox biology,2 -research in transportation business & management,1 -revista diálogos,0 -roshia touou kenkyuu,0 -special care in dentistry,1 -springer series in optical sciences,1 -slavic studies,0 -telos: revista iberoamericana de estudios utilitaristas,0 -"territory, politics, governance",2 -the greek orthodox theological review,0 -the journal of peer production,1 -the lancet diabetes & endocrinology,3 -vascular cell,1 -"vestnik sankt-peterburgskogo universiteta. seriâ 7, geologiâ, geografiâ",0 -world journal of computer application and technology,0 -naša žiznʹ,0 -european journal of cultural and political sociology,2 -accountability in research,1 -acm sigplan notices,0 -acta astronomica,1 -acta biochimica et biophysica sinica,1 -acta biochimica polonica,1 -acta clinica croatica,0 -acta dermatovenerologica croatica,0 -acta geotechnica,1 -acta histriae,0 -acta medica okayama,0 -acta meteorologica sinica,1 -acta microbiologica et immunologica hungarica,0 -acta naturae,1 -acta oeconomica,0 -acta otorhinolaryngologica italica,1 -acta philosophica,1 -acta poloniae pharmaceutica,0 -acta scientiarum polonorum-hortorum cultus,1 -advances in applied mathematics and mechanics,1 -advances in clinical and experimental medicine,1 -advances in condensed matter physics,1 -advances in mechanical engineering,1 -advances in vibration engineering,0 -aesthetic surgery journal,1 -african journal of psychiatry,0 -african journal of range & forage science,1 -agrekon,1 -air quality atmosphere and health,1 -allergy asthma & immunology research,1 -al-shajarah,0 -ama-agricultural mechanization in asia africa and latin america,0 -american journal of clinical hypnosis,0 -american journal of hospice and palliative care,1 -amfiteatru economic,0 -anales de psicologia,0 -animal nutrition and feed technology,1 -annales-anali za istrske in mediteranske studije-series historia et sociologia,1 -annali dell istituto superiore di sanita,1 -annals of animal science,1 -annals of dermatology,1 -annals of economics and finance,1 -annee psychologique,0 -annual review of chemical and biomolecular engineering,1 -annual review of condensed matter physics,3 -anthropological science,1 -anuario calderoniano,1 -applied mathematics-a journal of chinese universities series b,0 -aquaculture environment interactions,1 -arabian journal of chemistry,1 -architect,0 -architectural design,0 -architectural digest,0 -architectural record,0 -architectural review,0 -archives italiennes de biologie,0 -archives of acoustics,1 -archives of biological sciences,0 -archives of civil and mechanical engineering,0 -archives of disease in childhood-education and practice edition,1 -archives of iranian medicine,1 -argumenta oeconomica,0 -arq,0 -arq-architectural research quarterly,1 -ars mathematica contemporanea,1 -arte individuo y sociedad,1 -artforum international,0 -arti musices,1 -artnews,0 -ashrae journal,1 -asia pacific education review,0 -asian american journal of psychology,1 -asian biomedicine,0 -asian herpetological research,1 -asian journal of surgery,1 -asian myrmecology,1 -asian studies review,1 -asia-pacific education researcher,0 -asia-pacific journal of atmospheric sciences,1 -asia-pacific journal of clinical oncology,1 -asia-pacific journal of financial studies,1 -asia-pacific journal of public health,0 -asia-pacific journal of teacher education,1 -asia-pacific psychiatry,1 -atalante-revista de estudios cinematograficos,1 -atenea,0 -australasian plant pathology,1 -australian forestry,1 -australian health review,1 -australian journal of forensic sciences,1 -australian journal of psychology,1 -australian psychologist,1 -austrian journal of earth sciences,1 -automatika,0 -avant scene opera,0 -avian conservation and ecology,1 -balkan journal of medical genetics,0 -bangladesh journal of pharmacology,0 -bariatric nursing and surgical patient care,0 -behavioral psychology-psicologia conductual,0 -biomedical papers-olomouc,1 -biomedical research-tokyo,1 -bioscience trends,1 -bioscope-south asian screen studies,1 -boletin de la sociedad argentina de botanica,1 -bosnian journal of basic medical sciences,0 -bradleya,0 -bratislava medical journal-bratislavske lekarske listy,1 -brazilian journal of infectious diseases,0 -brazilian journal of medical and biological research,0 -brazilian journal of otorhinolaryngology,1 -brazilian journal of pharmaceutical sciences,0 -brazilian journal of probability and statistics,1 -britain and the world,0 -bruniana & campanelliana,1 -buddhist studies review,1 -bulletin of the menninger clinic,0 -byu studies quarterly,0 -cadmo,0 -canadian journal of film studies-revue canadienne d etudes cinematographiques,1 -canadian journal of plant pathology,0 -canadian journal of urology,1 -cancer research and treatment,1 -cardiology journal,1 -cardiorenal medicine,0 -cardiovascular journal of africa,1 -carpathian journal of mathematics,0 -castanea,1 -catholic university law review,1 -cell and bioscience,1 -cell journal,1 -central european journal of energetic materials,0 -central european journal of immunology,0 -ceskoslovenska psychologie,0 -china foundry,0 -china-an international journal,0 -chinese journal of cancer research,0 -chinese journal of electronics,0 -chinese journal of integrative medicine,1 -chinese journal of international politics,0 -chinese journal of physiology,1 -chinese physics b,1 -chronic diseases and injuries in canada,1 -cineaste,0 -cineforum,0 -cinemas d'amerique latine,0 -classical receptions journal,1 -clinical interventions in aging,1 -cognitive computation,2 -comparative cytogenetics,1 -comprehensive physiology,1 -concentric-literary and cultural studies,0 -criminology & public policy,1 -critical care and resuscitation,1 -critical care nurse,0 -hrvatski casopis za odgoj i obrazovanje,0 -crop breeding and applied biotechnology,1 -cultura y educacion,1 -current hematologic malignancy reports,0 -current oncology reports,1 -current opinion in hiv and aids,0 -current problems in pediatric and adolescent health care,1 -current topics in nutraceutical research,1 -cytojournal,0 -cytology and genetics,1 -dance magazine,0 -dancing times,0 -daru-journal of pharmaceutical sciences,0 -database-the journal of biological databases and curation,1 -dermatologica sinica,0 -developmental cognitive neuroscience,1 -diabetology & metabolic syndrome,1 -discovery medicine,1 -dix-neuf,1 -down beat,0 -drewno,0 -drug design development and therapy,0 -earth science informatics,1 -earthquakes and structures,1 -eco mont-journal on protected mountain areas research,0 -ecohealth,1 -economia politica,0 -economic and labour relations review,1 -ega-revista de expresion grafica arquitectonica,1 -egitim arastirmalari-eurasian journal of educational research,0 -egitim ve bilim-education and science,0 -egyptian journal of biological pest control,0 -ekonomska istrazivanja-economic research,0 -electrical engineering in japan,0 -electrocatalysis,0 -electronics and communications in japan,0 -electronics world,0 -elementary school journal,1 -emergency medicine australasia,1 -english in australia,0 -english language notes,1 -ensenanza de las ciencias,0 -environment protection engineering,0 -epilepsy currents,1 -esprit,0 -estudios de psicologia,0 -european journal of integrative medicine,1 -european journal of psychology applied to legal context,1 -evidence & policy,1 -experimental & clinical cardiology,0 -expert review of hematology,1 -families systems & health,1 -family practice,2 -farmacia,0 -federal reserve bank of st louis review,0 -fisheries science,1 -food engineering reviews,1 -foot and ankle clinics,1 -forbes,0 -forktail,1 -fortune,0 -frontiers in neuroanatomy,1 -frontiers of computer science,0 -frontiers of mathematics in china,1 -fujitsu scientific & technical journal,0 -gastroenterology research and practice,1 -geocarto international,0 -geografia fisica e dinamica quaternaria,1 -geologica belgica,1 -geomatics natural hazards & risk,1 -geomechanics and engineering,1 -giornale italiano di dermatologia e venereologia,0 -gladius,1 -global health action,0 -global policy,1 -globalization and health,1 -green chemistry letters and reviews,1 -gruppenpsychotherapie und gruppendynamik,0 -hacettepe journal of mathematics and statistics,0 -hacettepe universitesi egitim fakultesi dergisi-hacettepe university journal of education,0 -head & face medicine,1 -health promotion journal of australia,1 -health reports,0 -hellenic journal of cardiology,1 -herpetological conservation and biology,1 -herpetozoa,1 -hippokratia,0 -hispanic journal of behavioral sciences,0 -historical biology,1 -journal of holy land and palestine studies,0 -hong kong journal of dermatology & venereology,0 -hong kong law journal,1 -hpb,1 -hrvatski filmski ljetopis,0 -ieee computer architecture letters,0 -ieee transactions on services computing,2 -iforest-biogeosciences and forestry,1 -imago temporis-medium aevum,0 -indian journal of experimental biology,0 -indian journal of fisheries,0 -indian journal of genetics and plant breeding,1 -indian journal of hematology and blood transfusion,0 -indian journal of medical microbiology,0 -indian journal of pathology and microbiology,0 -indian journal of pharmaceutical education and research,0 -indian journal of pharmaceutical sciences,0 -indian journal of pharmacology,1 -indian journal of traditional knowledge,0 -industrial and organizational psychology-perspectives on science and practice,1 -infancia y aprendizaje,0 -international food and agribusiness management review,1 -international health,0 -international journal of applied glass science,1 -international journal of bio-inspired computation,0 -international journal of civil engineering,1 -international journal of feminist approaches to bioethics,1 -international journal of mental health systems,0 -international journal of metalcasting,1 -international journal of micro air vehicles,1 -international journal of ophthalmology,1 -international journal of optomechatronics,1 -international journal of oral science,3 -international journal of osteopathic medicine,1 -international journal of simulation modelling,0 -international journal of spray and combustion dynamics,0 -international journal of surgery,3 -invasive plant science and management,1 -inzinerine ekonomika-engineering economics,0 -iranian journal of allergy asthma and immunology,0 -iranian journal of basic medical sciences,0 -iranian journal of kidney diseases,0 -iranian journal of parasitology,0 -iranian journal of radiology,0 -iranian journal of science and technology-transactions of electrical engineering,0 -iranian journal of science and technology-transactions of mechanical engineering,0 -irish educational studies,0 -isegoria,1 -isj-invertebrate survival journal,0 -islamic africa,1 -islets,1 -israel journal of plant sciences,0 -israel journal of psychiatry and related sciences,1 -italian journal of pediatrics,1 -italian journal of vascular and endovascular surgery,0 -japanese journal of educational psychology,0 -japanese journal of infectious diseases,0 -journal of advanced mechanical design systems and manufacturing,0 -journal of advances in modeling earth systems,2 -journal of applied fluid mechanics,0 -journal of applied research and technology,0 -journal of arid land,1 -journal of arthropod-borne diseases,1 -journal of ayn rand studies,0 -journal of biomaterials and tissue engineering,0 -journal of cancer survivorship,1 -journal of cardiology,1 -journal of cardiovascular computed tomography,1 -journal of cardiovascular translational research,1 -journal of cheminformatics,1 -südosteuropa mitteilungen,0 -journal of clinical orthopaedics and trauma,0 -bullettino dell'istituto storico italiano per il medio evo,1 -iraqi bulletin of geology and mining,0 -dansk universitetspædagogisk tidsskrift,0 -canadian medical education journal,1 -american journal of translational research,1 -infection ecology & epidemiology,1 -interest groups & advocacy,1 -journal of pharmaceutical policy and practice,1 -medycyna ogólna i nauki o zdrowiu,0 -arab journal of gastroenterology,1 -the journal of international advanced otology,1 -journal of wrist surgery,1 -adaptive human behavior and physiology,1 -drugs - real world outcomes,1 -izvestiâ nacionalʹnoj akademii nauk respubliki kazahstan. seriâ geologii i tehničeskih nauk,0 -gland surgery,1 -journal of environmental accounting and management,1 -annual review of virology,1 -journal of disability & religion,1 -gerontology & geriatric medicine,1 -international journal of smart grid and clean energy,0 -neotropical biodiversity,1 -botany letters,1 -npj digital medicine,2 -clinical and translational radiation oncology,1 -methods and protocols,1 -aims agriculture and food,1 -solar-terrestrial physics,0 -volupté,1 -nanoscale advances,1 -epigenetics insights,0 -advances in technology innovation,0 -internet of things,1 -blockchain in healthcare today,0 -journal of pharmacy and pharmacology research,0 -international journal of pharmaceutics & pharmacology,0 -world journal of otorhinolaryngology-head and neck surgery,0 -yearbook of balkan and baltic studies,1 -tansuo yu zhengming,0 -qingming,0 -jilin shifan daxue xuebao,0 -guandong xuekan,0 -tadrīs/pizhūhī,0 -archives of plastic surgery,0 -biomedical journal of scientific & technical research,0 -current opinion in endocrine and metabolic research,1 -ecological processes,1 -translational pediatrics,1 -awwa water science,0 -lecture notes on data engineering and communications technologies,1 -"housing, care and support",1 -australasian orthodontic journal,1 -critical and radical social work,1 -spine deformity,1 -international journal of chemical and biomolecular science,0 -journal of economic and administrative sciences,1 -international journal of educational excellence,1 -journal of media management and entrepreneurship,1 -ucjc business and society review,1 -people and nature,1 -bmj open ophthalmology,1 -journal of teacher action research,0 -plasma research express,1 -metabolism open,1 -socio-environmental systems modelling,0 -journal of modern philosophy,1 -earth system governance,1 -foundations of data science,1 -international journal of extreme automation and connectivity in healthcare,0 -frontiers in sports and active living,1 -results in engineering,0 -global transitions,1 -the indian forester,0 -papéis avulsos de zoologia,1 -scientific journal of silesian university of technology : series transport,0 -fate in review,0 -journal of prenatal & perinatal psychology & health,0 -information & security,0 -gastrohhep.com,1 -qualitative theory of dynamical systems,1 -clinical obesity,1 -nursing leadership,1 -international journal of child health and nutrition,1 -retinal cases & brief reports,1 -craniomaxillofacial trauma & reconstruction,1 -world journal of gastrointestinal surgery,0 -international journal of advanced science and technology,0 -incas buletin,0 -selʹskohozâjstvennye mašiny i tehnologii,0 -justice spatiale - spatial justice,1 -international journal for parasitology,1 -"engineering science and technology, an international journal",2 -international journal of bridge engineering,0 -combustion engines,0 -international journal of environmental monitoring and analysis,0 -evolutionary behavioral sciences,1 -constelaciones,1 -replay,1 -international labor rights case law,0 -the journal of prevention of alzheimer's disease,1 -education in the knowledge society,0 -journal of stomatology oral & maxillofacial surgery,1 -jco clinical cancer informatics,1 -jamk journal of health and social studies,0 -drones,0 -machine learning and knowledge extraction,1 -iet smart grid,1 -biochar,0 -ciceroniana on line,1 -botanica,1 -research in educational administration & leadership,1 -ieee networking letters,1 -aims electronics and electrical engineering,1 -journal of non-crystalline solids : x,1 -communiars,0 -roadsides,0 -"journal of dental science, oral and maxillofacial research",0 -mathematics in engineering,1 -biomaterial investigations in dentistry,1 -lapin ammattikorkeakoulun julkaisuja : sarja a. referee-tutkimukset,0 -interarchaeologia,1 -ieee nuclear science symposium conference record,1 -information discovery and delivery,1 -annals of the american association of geographers,3 -"instrumentation engineering, electronics and telecommunications",0 -conference proceedings of the academy for design innovation management,1 -imcsm proceedings,0 -fib symposium proceedings,1 -proceedings (conference on design and semantics of form and movement),1 -advances in cartography and giscience of the ica,0 -electronic lexicography in the 21st century. proceedings of elex ... conference,0 -proceedings of the iahr world congress,0 -emerald reach proceedings series,0 -proceedings of the annual global sales science institute conference,0 -"trudy meždunarodnoj konferencii ""korpusnaâ lingvistika-..."".",0 -proceedings of the satellite division's international technical meeting,1 -nebrija procedia,0 -proceedings of the ... multidisciplinary international conference on scheduling: theory and applications,1 -dialogul slaviştilor la începutul secolului al xxi-lea,0 -sardinia... international waste management and landfill symposia proceedings,0 -japanese geotechnical society special publication,0 -asian conference on education official conference proceedings,0 -engineering mechanics .... conference proceedings,0 -international scientific conference management and engineering,0 -bulletin de la société royale des sciences de liège,0 -proceedings of the international association for business and society,0 -ieee conference on standards for communications and networking,1 -ieee international conference on industrial technology,1 -international conference on information and communication systems,0 -european conference on networks and communications,1 -proceedings (ieee international symposium on computer-based medical systems),1 -"signal processing algorithms, architectures, arrangements, and applications conference proceedings",1 -ieee/cic international conference on communications in china - workshops,0 -european triple helix congress on responsible innovation & entrepreneurship,0 -berichte aus dem julius-kühn-institut,0 -wiener beiträge zur alten geschichte online,0 -waterlat-gobacit network working papers,0 -musiikki,2 -kultura,0 -tehnologii i tehničeskie sredstva mehanizirovannogo proizvodstva produkcii rastenievodstva i životnovodstva,0 -fern gazette,1 -acta biomedica,0 -journal of the korean ceramic society,1 -foundations and trends in accounting,1 -materials today bio,1 -diplomatica,1 -"mining, metallurgy & exploration",1 -current opinion in systems biology,0 -brill research perspectives in the law of the sea,1 -revista prâksis,1 -konińskie studia językowe katedry filologii pwsz w koninie,1 -international journal of knowledge and systems science,0 -the year's work in modern language studies,0 -prospects,1 -textus,1 -arquivo brasileiro de medicina veterinária e zootecnia,0 -azərbaycan məktəbi,1 -ekonomiaz,0 -avocetta,1 -southeast asian studies,0 -transactions of the historical society of ghana,0 -journal of police and criminal psychology,1 -mìkrobìologìčnij žurnal,0 -psychiatrikī,1 -aotearoa new zealand social work,1 -health services insights,1 -studia universitatis babeş-bolyai historia,0 -studia antiqua et archeologica,1 -journal européen des systèmes automatisés,0 -rehva journal,0 -journal of comparative politics,1 -international journal of physical modelling in geotechnics,1 -imaging & microscopy,0 -journal of defense modeling and simulation,1 -acoustics,1 -acm transactions on parallel computing,1 -acs applied electronic materials,1 -acta aquatica turcica,0 -advanced intelligent systems,1 -advanced quantum technologies,1 -advances in food security and sustainability,0 -advances in methods and practices in psychological science,1 -advances in operator theory,1 -africana linguistica,1 -aorta,1 -apsipa transactions on signal and information processing,1 -archivio antropologico mediterraneo,1 -arheologiâ evrazijskih stepej,1 -asia-pacific journal of business administration,1 -the asian journal of shipping and logistics,1 -athens journal of social sciences,1 -avtobiografija,1 -capital markets law journal,1 -chemsystemschem,1 -"colorado natural resources, energy & environmental law review",0 -correspondences : journal for the study of esotericism,1 -court of conscience,0 -creat!vity,0 -cross cultural studies : education and science,1 -culture crossroads,1 -cyber-physical systems,1 -digital presentation and preservation of cultural and scientific heritage,0 -research,1 -diskurs,0 -ecologica montenegrina,1 -"economic and social changes: facts, trends, forecast",0 -educare,1 -energy storage materials,1 -environment and planning b : urban analytics and city science,2 -european journal of health psychology,0 -european journal of psychoanalysis,0 -european journal of social sciences,0 -food chemistry x,1 -foundations and trends in electronic design automation,0 -francosphères,1 -galaktika media : žurnal media issledovanij,1 -genocide studies international,1 -good society,0 -green finance,1 -holocaust studies,1 -human-wildlife interactions,1 -information and communication sciences research,0 -insect systematics and diversity,1 -internal auditing & risk management,0 -international higher education,0 -international journal of computer science and its application,0 -international journal of ceramic engineering & science,1 -international journal of eurasian linguistics,0 -international journal of financial innovation in banking,1 -international journal of green technology,0 -international journal of stem cell research & therapeutics,0 -international journal on engineering applications,0 -iranian journal of biotechnology,0 -jhep reports,1 -jnci cancer spectrum,1 -journal of agriculture and life sciences,0 -the journal of altmetrics,1 -journal of ancient egyptian interconnections,1 -reflections on english language teaching,0 -open education studies,1 -applied pragmatics,1 -language teaching for young learners,1 -register studies,1 -"language, culture and society",1 -"language, context and text",1 -evolutionary linguistic theory,1 -corporate law and governance review,1 -chemistry teacher international,0 -international journal of digital humanities,1 -mitteilungen des regensburger verbunds für werbeforschung,0 -ruralia,0 -review of keynesian economics,1 -matrix biology plus,1 -studia semiotyczne,1 -international journal of sport culture and science,0 -language documentation and description,2 -limnological review,1 -online journal of complementary & alternative medicine,0 -open journal of astrophysics,1 -scandinavian journal of military studies,1 -planext,1 -ieee open journal of antennas and propagation,1 -"international journal of banking, accounting and finance",1 -journal of competitiveness,1 -international symposium on communications and information technologies,1 -journal of didactics of philosophy,1 -architecture and culture,2 -international journal of geo-engineering,1 -journal of animal ethics,1 -infomat,1 -circuit,1 -brain communications,1 -journal of illustration,1 -the lancet : digital health,3 -annals of the polish association of agricultural and agribusiness economists,0 -contemporary economics,1 -acta via serica,1 -revista odeere,0 -conflict and health,1 -journal of humanitarian affairs,1 -journal of international humanitarian action,1 -journal of muslims in europe,1 -tranel,0 -journal of audiovisual translation,1 -therapeutic advances in psychopharmacology,1 -international journal on social and education sciences,1 -international studies,1 -comedy studies,1 -current opinion in electrochemistry,1 -ushus journal of business management,0 -international journal of learning analytics and artificial intelligence for education,1 -art communication & popculture,1 -kriosfera zemli,0 -"stepp: socialinė teorija, empirija, politika ir praktika",1 -zaozhi kexue yu jishu,0 -photonic sensors,1 -mision juridica,1 -journal of landscape ecology,1 -tesela,0 -pad,1 -paraninfo digital,1 -naučnyj žurnal kubanskogo gosudarstvennogo agrarnogo universiteta,0 -vestnik samarskogo gosudarstvennogo tehničeskogo universiteta. seriâ: fiziko-matematičeskie nauki,0 -journal of injury and violence research,0 -journal of sustainable architecture and civil engineering,1 -widening participation and lifelong learning,1 -journalism education,1 -neuronal signaling,1 -"journal of education in science, environment and health",1 -journal of ethnic and cultural studies,1 -the international journal of sport and society,1 -journal of florida studies,0 -"urban, planning and transport research",1 -journal of women's health care,0 -karikyuramu kenkyu,0 -journal of food measurement and characterization,1 -kuckuck,0 -izvestiâ nacionalʹnoj akademii nauk respubliki kazahstan. seriâ obŝestvennyh i gumanitarnyh nauk,0 -archives of design research,1 -journal of territorial and maritime studies,1 -parallèles,1 -teoria muzyki,1 -nepreryvnoe obrazovanie: xxi vek,1 -zapiski instituta istorii materialʹnoj kulʹtury ran,0 -rodnoj âzyk,0 -èkologiâ âzyka i kommunikativnaâ praktika,0 -european heart journal: case reports,1 -the beethoven journal,0 -studium educationis,0 -žurnal sibirskogo federalʹnogo universiteta : himiâ,0 -journal of critical thought & praxis,0 -vivlīoḟika,1 -review of contemporary business research,0 -journal of central banking theory and practice,1 -journal of tourism and hospitality management,0 -journal of applied and computational mechanics,1 -l'europe en formation,1 -journal of insect biodiversity and systematics,1 -linguistique et langues africaines,1 -seinen shinrigaku kenkyū,0 -journal of computational social science,1 -publicum,0 -journal of experimental agriculture international,1 -journal of vascular surgery cases and innovative techniques,0 -scientia moralitas,1 -jb & js open access,1 -north american journal of celtic studies,1 -rutgers business review,0 -political research exchange,1 -international journal of reproductive biomedicine,0 -smart and sustainable manufacturing systems,1 -sustainable earth,1 -nature machine intelligence,2 -marmara iktisat dergisi,0 -viaggiatori,0 -nordisk tidsskrift for utdanning og praksis,1 -"nordic journal of arts, culture and health",1 -society register,1 -linguistic frontiers,1 -journal of romanticism,1 -media theory,1 -spafa journal,1 -watershed ecology and the environment,1 -youth and globalization,1 -transportation research interdisciplinary perspectives,1 -matter,1 -scandia,1 -pós-limiar,0 -recent progress in materials,0 -psychology research and applications,0 -physical review research,1 -clean air journal,1 -raumforschung und raumordnung,1 -allergo-journal,1 -indian journal of palliative care,0 -international journal of medical and health sciences,0 -international journal of mechanical engineering and robotics research,0 -international business and global economy,0 -workforce education forum,0 -international journal of english language teaching,0 -geochemical perspectives letters,2 -the journal of hand surgery : asian-pacific volume,1 -clinics in surgery,0 -atmospheric environment x,1 -computing and software for big science,1 -ethics & bioethics,1 -faseb bioadvances,0 -journal for the study of spirituality,1 -journal of 3d printing in medicine,0 -journal of international humanitarian legal studies,1 -european pharmaceutical law review,1 -acta universitatis lodziensis : folia iuridica,0 -ciência da madeira,0 -dalloz ip/it,0 -digest : journal of diversity and gender studies,1 -èkonomika regiona,0 -"environmental nanotechnology, monitoring & management",1 -global sustainability,1 -international journal of emerging electric power systems,0 -journal of ecological engineering,1 -journal of education advancement & marketing,0 -journal of environmental informatics letters,1 -zapiski gornogo instituta,1 -the journal of the european pentecostal theological association,1 -juridica international,0 -open journal of anesthesiology,0 -phytopathology research,1 -critical social work,1 -ikat,1 -comparative & international higher education,1 -journal of electronic science and technology,0 -journal of media critiques,0 -marketing ì menedžment ìnnovacìj,0 -the open chemical engineering journal,0 -farmakeutikī,0 -research in world economy,0 -revista latinoamericana de educación inclusiva,1 -santander art & culture law review,1 -sci,0 -scientific african,1 -fazhi yu shehui,0 -seminars in thoracic and cardiovascular surgery,0 -sport sciences for health,1 -surgical case reports,0 -teisės apžvalga,0 -the journal of play in adulthood,0 -the open allergy journal,0 -teološki pogledi,1 -theology,1 -eurup,0 -annals of blood,0 -cahiers internationaux de sociolinguistique,0 -folia medica,0 -global reproductive health,1 -journal of developmental biology,1 -nature reviews physics,2 -research and practice in thrombosis and haemostasis,1 -transgender health,1 -veterinary medicine,0 -abant i̇zzet baysal üniversitesi eğitim fakültesi dergisi,0 -al-ḥaṣād,0 -"annales universitatis mariae curie-skłodowska : sectio k, politologia",0 -doklady akademii nauk : rossijskaâ akademiâ nauk,0 -entomologische blätter für biologie und systematik der käfer,0 -fteval journal for research and technology policy evaluation,0 -italianistica debreceniensis,1 -journal of comparative literature and aesthetics,0 -kulturhistoriske studier i centralitet,0 -nordic journal of media studies,1 -pedagógusképzés,0 -yearbook of international disaster law,1 -gdańskie studia prawnicze,0 -credit and capital markets,1 -international journal of bullying prevention,1 -journal of banking regulation,1 -montenegrin journal of sports science and medicine,1 -russian journal of money and finance,1 -sustainable construction materials and technologies,0 -proceedings of the association for library and information science education annual conference,0 -proceedings of the international association of maritime universities conference,0 -conference proceedings (annual kurultai of the endagered cultural heritage),0 -shinpojiumu,0 -proceedings of the international institute of space law,0 -atlantis studies in uncertainty modelling.,0 -vzdělávání dospělých ....,0 -collection fruitrop thema,0 -"proceedings of the world congress on momentum, heat and mass transfer.",0 -merenkulkualan koulutus- ja tutkimuskeskuksen julkaisuja.,0 -journal of urbanism,2 -le sans-visage,0 -acm transactions on the internet of things,1 -compositionality,1 -journal for the psychology of language learning.,0 -archaeology of food and foodways.,0 -journal of digital social research,1 -journal of white collar and corporate crime,1 -engineering research express,1 -one earth,2 -"international journal on engineering, science and technology",1 -research in arts and education,1 -environmental pollutants & bioavailability,1 -journal of asian public policy,1 -diseña,1 -engineering reports,1 -revista internacional de ciencias del deporte,0 -problemy polityki społecznej,0 -eureka: physics and engineering,1 -eureka: social and humanities,1 -eureka: health sciences,0 -eureka: life sciences,0 -journal of digital media & policy,1 -asian-pacific journal of second and foreign language education,1 -entomologie heute,0 -ideology and politics journal,1 -uluslararası tarım araştırmalarında yenilikçi yaklaşımlar dergisi,0 -dialogue,1 -acta psychologica sinica,1 -transactions of the association of european schools of planning,1 -digital culture & education,1 -economie et statistique,1 -journal of perinatal education,1 -progress in energy,0 -aesthetica universalis,0 -svmma,1 -international journal of renewable energy technology,0 -fitispos international journal,0 -han'gug yangbong haghoeji,0 -"endocrinology, diabetes & metabolism",1 -acs materials letters,1 -international journal of business and administrative studies,1 -actuators,1 -sciencerise. pedagogical education,1 -cities & health,1 -antennae,1 -vs,1 -harvard data science review,0 -lo squaderno,1 -nordic journal of european law,1 -bulletin of applied economics,1 -the journal of literary onomastics,0 -organization leadership and development quarterly,0 -chemical engineering science x,1 -evidence based library and information practice,1 -frontiers in artificial intelligence,1 -journal of international dispute settlement,1 -journal of structural integrity and maintenance,1 -bmc materials,1 -sage open nursing,1 -journal of higher education outreach and engagement,0 -cahiers de l'institut du moyen-âge grec et latin,1 -indian journal of commerce and management studies,0 -current rheumatology reports,1 -indian economic journal,1 -vaccines,1 -europe and the world,1 -npj science of food,2 -journal of praxis in higher education,1 -technium social sciences journal,0 -pulse,1 -evergreen,0 -bmc rheumatology,1 -qualitative research in financial markets,1 -micro & macro marketing,0 -ekonomicko-manažérske spektrum,1 -avian research,1 -socio-ecological practice research,1 -osteoarthritis and cartilage open,1 -journal of contemporary education theory & research,1 -online journal of art and design,1 -ibai-publishing,0 -educating the young child,1 -moroccan journal of chemistry,0 -australian planner,1 -archa verbi,1 -global journal of transformative education,0 -radical orthodoxy,1 -complex & intelligent systems,1 -chôra,1 -journal of greco-roman christianity and judaism,0 -mayéutica,0 -the princeton theological review,0 -fordham journal of corporate & financial law,1 -annales theologici,0 -acta ludologica,0 -"law, innovation and technology",2 -international journal of technoethics,1 -energy conversion and management x,1 -ocean science journal,1 -ristal,1 -journal of posthuman studies,1 -pelastusopiston julkaisu : d-sarja,0 -nova et vetera,1 -press start,0 -journal of sound and music in games,1 -borders in globalization review,1 -abdominal radiology,1 -acm transactions on computing for healthcare,1 -acrn journal of finance and risk perspectives,1 -acta mathematica hungarica,1 -african review of economics and finance,1 -alexandria engineering journal,1 -annals of functional analysis,1 -applied computer systems,1 -arx tavastica,0 -athens journal of law,1 -practical papers for the bible translator,1 -no to hattatsu,0 -ca' foscari japanese studies,1 -ciencia e ingeniería,0 -nar genomics and bioinformatics,1 -ophthalmology glaucoma,1 -journal of literary education,0 -teaching anthropology,1 -digital philology,1 -chinese political science review,1 -springer proceedings in advanced robotics,1 -"tampere studies in language, translation and literature",0 -open praxis,0 -contemporary philosophies and theories in education,1 -habaršysy - a̋l-farabi atyndaġy k̦azak̦ memlekettik u̇lttyk̦ universitetì. fizika seriâsy,0 -palgrave studies in gender and education,1 -environmental law review,1 -journal of inflammation research,1 -ethnobotany research and applications,1 -international breastfeeding journal,1 -toxics,1 -sustainable chemistry and pharmacy,1 -the journal of holocaust research,1 -populism,1 -translational lung cancer research,1 -visceral medicine,1 -oncology and therapy,1 -suomen urheiluhistoriallisen seuran julkaisusarja,0 -maritime business review,1 -international journal of collaborative practices,1 -frontiers of architectural research,2 -italian americana,0 -informatik-spektrum,0 -energy engineering,0 -revista española de financiación y contabilidad,1 -cvetnye metally,0 -pomorania antiqua,0 -indian journal of community medicine,1 -physiology and molecular biology of plants,1 -international journal of genomics and proteomics,0 -"peace economics, peace science, and public policy",1 -työn tuuli,0 -archivos de cardiología de méxico,0 -"latvijas zinātn̦u akadēmijas vēstis. a dal̦a, humanitārās zinātnes",1 -cochlear implants international,1 -italian labour law e-journal,1 -revista lusófona de educação,0 -virologica sinica,1 -informacionno-upravlâûŝie sistemy,1 -international journal of instruction,0 -"zbornik radova - geografski institut ""jovan cvijić""",1 -földtani közlöny,1 -current reviews in musculoskeletal medicine,1 -health information science and systems,1 -journal of personalized medicine,1 -frontiers of optoelectronics,1 -the horticulture journal,1 -jbjs reviews,1 -educació social,0 -current developments in nutrition,1 -journal of manufacturing and materials processing,1 -perspectives in ecology and conservation,1 -cancer reports,1 -acs pharmacology & translational science,1 -zeki sistemler teori ve uygulamaları dergisi,0 -international journal of mathematics for industry,1 -publications of the ictm study group on music archaeology,1 -ieee international instrumentation and measurement technology conference,1 -samfunnsøkonomen,0 -russian agricultural sciences,0 -neuro-oncology practice,1 -npj biofilms and microbiomes,1 -international journal of quantitative and qualitative research methods,0 -bulletin of the transilvania university of braşov. series vii social sciences. law,0 -journal of intelligence,1 -parkinson's disease,1 -international neurourology journal,0 -journal of pharmaceutical analysis,1 -"numerical algebra, control and optimization",1 -studies in gothic fiction,1 -journal of accounting and finance,0 -translational vision science & technology,1 -education in medicine journal,0 -journal of environmental studies and sciences,1 -stochastics and partial differential equations,1 -manufacturing letters,1 -todomodo,0 -seismograf/dmt,1 -international journal of advanced trends in computer science and engineering,0 -the world journal of men's health,1 -widok,1 -soil science annual,1 -archidoct,1 -journal of fungi,2 -international journal of genomics,0 -movement disorders clinical practice,1 -journal of plant sciences,0 -fng research,1 -geomechanics for energy and the environment,1 -international journal of data science and analytics,1 -jmir diabetes,1 -npj quantum materials,3 -student engagement in higher education journal,1 -reviews in physics,1 -european journal of multidisciplinary studies,1 -composites communications,1 -current opinion in physiology,1 -sdrp journal of food science & technology,0 -ieee transactions on games,1 -"philosophy, theory, and practice in biology",1 -big data and cognitive computing,1 -linguistic minorities in europe online,0 -zeitschrift für ethik und moralphilosophie,1 -software-intensive cyber-physical systems,1 -cifile journal of international law,1 -global perspectives,1 -infectious diseases diagnosis & treatment,0 -journal of civil engineering and materials application,0 -trends in chemistry,1 -journal of biotechnology x,1 -current research in immunology,0 -methods in psychology,1 -chemistry,1 -journal of sustainability research,1 -journal of genetics and cell biology,0 -wound management & prevention,1 -novel techniques in nutrition & food science,0 -open access journal of environmental & soil sciences,0 -sports medicine and health science,0 -journal of postcolonial linguistics,1 -russianstudieshu,0 -smt-v,1 -crypto law review,0 -the journal of medical practice management,0 -eai endorsed transactions on wireless spectrum,0 -npj 2d materials and applications,1 -current directions in biomedical engineering,1 -frontiers in political science,1 -forum for social economics,1 -international journal of high-rise buildings,0 -iet energy systems integration,0 -revista del cesla,1 -case studies in sport and exercise psychology,1 -exposure and health,1 -cognitive research,1 -iet cyber-systems and robotics,1 -espes,1 -central european annals of clinical research,0 -computers and education open,1 -preventing school failure,1 -czech and slovak journal of humanities,0 -k̦azu̇u habaršysy,0 -ideação,0 -archivos de ciencias de la educación,0 -storia del pensiero politico,1 -fuel communications,1 -journal of the finnish economic association,1 -visual inquiry,0 -rhizomata,1 -computers in the schools,1 -språk och interaktion,1 -social studies research & practice,1 -etnografia e ricerca qualitativa,1 -qinghua daxue xuebao,0 -journal of magnetic resonance open,1 -clinical spectroscopy,0 -futures & foresight science,1 -quantum studies,1 -"east asian science, technology and society",1 -accademie e biblioteche d'italia,0 -journal of the midwest association for information systems,0 -maaseutututkimus,1 -higher education management and policy,1 -analytica chimica acta x,1 -contraception x,1 -gene x,1 -journal of asian earth sciences x,1 -journal of biomedical informatics x,0 -journal of structural biology x,1 -materials letters x,1 -proceedings of the american mathematical society series b,2 -optical materials x,1 -vaccine x,1 -water research x,1 -world neurosurgery x,0 -chemical physics letters x,1 -cytokine x,1 -european journal of obstetrics & gynecology and reproductive biology x,1 -international journal of pharmaceutics x,1 -journal of computational physics x,1 -respiratory medicine x,1 -toxicon x,1 -veterinary parasitology x,1 -asian languages and linguistics,1 -pedagogical linguistics,0 -journal of english for research publication purposes,0 -computers in human behavior reports,1 -energy and climate change,1 -buildings & cities,2 -sn operations research forum,1 -data-centric engineering,1 -journal of business ecosystems,1 -grur international,2 -world,0 -nordic journal of library and information studies,1 -nature food,3 -machine learning: science and technology,1 -ieee open journal of the communications society,1 -magnetic resonance,1 -cerebral cortex communications,1 -journal of data and information science,1 -research policy x,0 -filogi,0 -yaogan xuebao,0 -quantitative science studies,2 -chemical engineering journal advances,1 -applications in energy and combustion science,1 -journal of positive school psychology,1 -manusya,1 -bmj military health,1 -journal of public health and emergency,1 -journal of peer learning,1 -user experience & urban creativity,0 -theologia,0 -tesol journal,1 -frontiers of mechanical engineering,1 -petroleum research,0 -ieee open access journal of power and energy,1 -international journal of community well-being,1 -journal of escience librarianship,1 -journal of multilingual theories and practices,0 -school psychology,1 -journal of sport psychology in action,1 -case studies in chemical and environmental engineering,0 -revista de artes marciales asiáticas,0 -projections,0 -professional safety,0 -methodological innovations,1 -agu advances,1 -tehnički glasnik,1 -international journal of emerging trends in engineering research,0 -international journal of health governance,1 -jbi evidence synthesis,2 -journal of research on educational effectiveness,2 -philosophical inquiries,1 -finnish society for aesthetics publication series,0 -international journal of innovations in engineering and science,0 -current opinion in environmental science & health,1 -journal of social studies research,1 -structures,1 -discern,0 -region,1 -onsei gengo igaku,0 -chasedae keonbeojeonseu jeongbo seobiseu gisul nonmunji,0 -dijiteol yesul gonghak meoltimidieo nonmunji,0 -bmj innovations,1 -chiasmi international,1 -first world war studies,1 -journal of advanced academics,1 -colloids and interface science communications,1 -"journal of childhood, education & society",1 -studia z polityki publicznej,1 -atmospheric and oceanic optics,1 -lex portus,1 -global education review,0 -beijing shifan daxue xuebao,0 -shijie lishi pinglun,0 -revue française de socio-économie,1 -nepal journal of biotechnology,0 -studi di storia medioevale e di diplomatica,1 -rheumatology and therapy,1 -mining science,1 -journal of archaeology and education,0 -ecofeminism and climate change,1 -etransportation,1 -archivo teológico granadino,1 -journal of cognition,1 -teoretičeskaâ i prikladnaâ ûrisprudenciâ,1 -beverages,1 -comparative and continental philosophy,1 -primer: peer-review reports in medical education research,0 -journal of family research,1 -informatică economică,0 -cuadernos de psicología,0 -communication today,1 -current research in environmental sustainability,1 -journal of public pedagogies,0 -free neuropathology,0 -helsinki yearbook of intellectual history,1 -international journal of blockchains and cryptocurrencies,0 -quaternary science advances,1 -plant-environment interactions,1 -international journal of multimedia data engineering & management,1 -"children, youth and environments",1 -communications earth & environment,1 -caai transactions on intelligence technology,0 -emerging materials research,1 -learning and teaching journal,0 -etica & politica,1 -materials today physics,1 -studi di erudizione e di filologia italiana,1 -atti e memorie,1 -spor hekimliği dergisi,0 -strategic management review,1 -global journal of flexible systems management,1 -"church, communication and culture",1 -metodologia,1 -journal of asia-pacific pop culture,0 -vestnik ohotovedeniâ,0 -european journal of language and literature studies,1 -cell reports physical science,1 -jurnal sosioteknologi,0 -american studies journal,0 -european geologist,0 -multinational business review,1 -vox patrum,1 -journal of early modern christianity,1 -documents pour l'histoire du français langue étrangère ou seconde,1 -recent advances in computer science and communications,1 -international journal of industrial and operations research,1 -cahiers de civilisation espagnole contemporaine,1 -exploring diversity in entrepreneurship,0 -journal of transcendental philosophy,1 -istoriâ,1 -international symposium on advanced networks and telecommunication systems,1 -csi international symposium on artificial intelligence and signal processing,0 -ieee conference on virtual reality and 3d user interfaces,1 -ieee international new circuits and systems conference,1 -amps proceedings series,1 -international conference laser optics,0 -"international conference on electrical engineering, computing science, and automatic control",1 -comparative oriental manuscript studies bulletin,1 -studia scandinavica,1 -birds,1 -international journal of business and data analytics,0 -international journal of multivariate data analysis,1 -iet smart cities,1 -romanian astronomical journal,1 -medical writing,0 -the mathematical gazette,0 -frontiers in climate,1 -"international workshops on image processing theory, tools, and applications",1 -journal of information and telecommunication,1 -vietnam journal of computer science,1 -jolma,0 -educación química,0 -physical activity and health,1 -schizophrenia bulletin open,1 -bulletin of the american astronomical society,0 -central european public administration review,0 -south atlantic review,1 -journal for literary and intermedial crossings,1 -agalma,1 -"international journal of mathematical, engineering and management sciences",1 -innovative biosystems and bioengineering,0 -international journal of human culture studies,1 -theological research,0 -journal of geoscience education,1 -nature reviews : earth & environment,1 -complex analysis and its synergies,1 -cambridge journal of mathematics,1 -vuzf review,0 -physics,1 -journal of interdisciplinary sciences,1 -emotions and society,1 -translocal,0 -paidia,0 -critical times,1 -hannaharendt.net,1 -bankruptcy developments journal,0 -transactions of the american mathematical society : series b,3 -yuhang xuebao,0 -"world of mining, surface, underground",0 -journal of positive management,0 -current microwave chemistry,1 -international journal of environmental resources research,0 -journal of advanced agricultural technologies,0 -pump journal of undergraduate research,0 -in-visibilidades,0 -russian journal of linguistics,1 -neurobiology of stress,1 -secular studies,1 -zfo : zeitschrift führung + organisation,0 -otago law review,1 -slovak journal of civil engineering,1 -airea,1 -the highlander,1 -textual & visual media,1 -seismopolite,0 -archiwum instytutu inżynierii lądowej,0 -kultura. historia. globalizacja,1 -international journal of e-politics,1 -frattura ed integrità strutturale,1 -perspectivas contemporâneas,0 -revista de paz y conflictos,1 -wseas transactions on computer research,0 -integraciâ obrazovaniâ,1 -advances in science and research,1 -"vestnik volgogradskogo gosudarstvennogo universiteta. seriâ 4. istoriâ, regionovedenie, meždunarodnye otnošeniâ",1 -international symposium on biomechanics in sports,0 -högre utbildning,1 -utbildning & lärande,1 -gränsløs,0 -han-guk eumseong hakoe ... haksul daehoe balpyo nonmunjip,0 -international journal of occupational and environmental medicine,1 -geopolitica (dublin),0 -tròpos,1 -audiology research,1 -transnational legal theory,1 -journal of comparative effectiveness research,0 -biology of sex differences,1 -digital icons,1 -translational neurodegeneration,2 -cancer & metabolism,1 -world economic review,1 -primary dental journal,0 -the chinese journal of comparative law,1 -microscopy,1 -"evolution, medicine and public health",2 -luxury,1 -peking university law journal,1 -austral entomology,1 -symposium on lift and escalator technologies,0 -horticulture research,2 -the computer games journal,1 -international journal of data science,1 -international journal of care coordination,1 -international journal of supply chain and inventory management,1 -jrsm open,0 -journal of autism,1 -the ifcolog journal of logics and their applications,1 -pilot and feasibility studies,1 -nanoscale horizons,1 -european heart journal. cardiovascular pharmacotherapy,1 -clinical hypertension,0 -bdj open,1 -quantum science and technology,2 -advances in simulation,1 -"oruen, the cns journal",0 -vine journal of information and knowledge management systems,1 -review of international business and strategy,1 -hungarian geographical bulletin,1 -per aspera ad astra,0 -acta universitatis sapientiae. european and regional studies,1 -"proceedings of the international conference on e-commerce, e-administration, e-society, e-education, and e-technology",0 -sports,1 -journal of clinical medicine,1 -vox,1 -housing finance international,0 -multicultural shakespeare,1 -dyskursy młodych andragogów,1 -"journal of educational, health and community psychology",0 -"international journal of advanced science, engineering and information technology",1 -international journal of nephrology,1 -emergency medicine international (print),1 -egyptian journal of forensic sciences (print),1 -mikrobiyoloji ve enfeksiyon hastalıkları dergisi,0 -akademik gıda dergisi,0 -ankara üniversitesi ilef dergisi,0 -journal of i̇stanbul university faculty of dentistry,0 -humanity,1 -international journal of computer-assisted language learning and teaching,1 -journal of biotechnology & biomaterials,0 -journal of clinical & experimental dermatology research,0 -journal of thermodynamics & catalysis,0 -nature biomedical engineering,3 -intelligent information management,0 -international journal of energy optimization and engineering,0 -the journal of law enforcement,0 -journal of alzheimer's disease & parkinsonism,0 -ieee electromagnetic compatibility magazine,1 -well played,0 -william & mary policy review,0 -microbiology spectrum,2 -humanities and social sciences review,0 -american journal of management,1 -final program and proceedings : color and imaging conference,0 -haser,1 -balkanija,0 -anais do ... congresso nacional de educação,0 -risus - revista de inovação e sustentabilidade,1 -politics and governance,1 -market and competition law review,1 -ite transactions on media technology and applications,0 -ieice communications express,1 -european conference on language learning official conference proceedings,0 -european conference on technology in the classroom official conference proceedings,0 -european conference on education official conference proceedings,0 -european conference on psychology and the behavioral sciences official conference proceedings,0 -ekisho,0 -applied water science,1 -3 biotech,1 -health economics review,1 -aviation psychology and applied human factors,1 -kit scientific working papers,0 -epj quantum technology,1 -journal of south asian languages and linguistics,1 -schelling-studien,0 -middle east - topics & arguments,1 -journal of ocean engineering and marine energy,1 -evolutionary psychological science,1 -arnold mathematical journal,1 -construction economics and building,1 -computational linguistics in the netherlands journal,0 -journal of contextual behavioral science,1 -necsus,1 -journal of cancer policy,1 -vehicular communications,1 -proceedings,0 -novejšaâ istoriâ rossii,0 -report,0 -culture and dialogue,1 -annals of palliative medicine,1 -the yearbook of the sief working group on the ritual year,0 -british journal of applied science and technology,1 -athens journal of health,0 -språk i norden,1 -valoda: nozīme un forma,0 -e3s web of conferences,1 -inverbis,0 -rivista di filosofia del diritto,1 -competitiveness of agro-food and environmental economy,0 -journal of information science theory and practice,1 -applied science and convergence technology,0 -european yearbook of the history of psychology,1 -skin appendage disorders,1 -frontiers in astronomy and space sciences,1 -frontiers in applied mathematics and statistics,0 -frontiers in communication,1 -token,1 -bioengineering,0 -data,1 -veterinary sciences,1 -isis reports,0 -"cloud computing ... the ... international conference on cloud computing, grids, and virtualization",1 -daʾrunaʾ,0 -european journal of social science education and research,1 -vestnik rossijskogo universiteta družby narodov. seriâ èkonomika,1 -journal of imaging,1 -kutafin university law review,1 -vìsnik dnìpropetrovsʹkogo unìversitetu. serìâ socìalʹnì komunìkacìï,0 -estudios de teoría literaria,1 -anais do simpósio brasileiro de informática na educação,0 -international journal of humanities and management sciences,0 -scholars academic journal of pharmacy,0 -ieee electrification magazine,1 -marketing management association ... educators' conference proceedings,0 -energy and environment focus,0 -critical historical studies,1 -signs and society,1 -"ambient ... the ... international conference on ambient computing, applications, services and technologies",0 -journal of biodiversity management & forestry,0 -current urban studies,0 -molecular therapy. methods & clinical development,1 -inflammation and cell signaling,0 -humanities and social sciences,0 -universal journal of educational research,1 -journal of dentistry and oral health (jdoh),0 -asce-asme journal of risk and uncertainty in engineering systems. part b. mechanical engineering,1 -journal of cardiology & clinical research,0 -critical housing analysis,1 -international journal of production management and engineering,0 -business research quarterly,1 -hiiskuttua,0 -entrepreneurship and sustainability issues,0 -journal of water security,1 -journal of extreme events,1 -journal of business management and economics,0 -asia-pacific journal of oncology nursing,1 -mk nambyar saarclaw review,0 -journal of materials science and nanotechnology,0 -international journal of social sciences and humanities invention,0 -international journal of innovation and research in educational sciences,1 -current opinion in psychology,1 -journal of insects as food and feed,1 -open data journal for agricultural research,0 -sustainable water resources management,1 -international journal of ethics education,1 -topics in current chemistry,1 -proceedings of the hamburg international conference of logistics,0 -lecture notes in civil engineering,1 -chemphotochem,1 -"the minerals, metals & materials series",0 -sgem international multidisciplinary scientific conferences on social sciences and arts,0 -international journal of computers,0 -international journal of environmental science,0 -arctic science,1 -journal of bioresources and bioproducts,0 -relating systems thinking and design ... symposium proceedings,0 -proceedings of the international interdisciplinary business-economics advancement conference,0 -geohumanities,1 -journal of geosciences and geomatics,0 -journal of patient experience,1 -clinical mass spectrometry,1 -china quarterly of international strategic studies,1 -aims biophysics,1 -global security,1 -bioproducts business,0 -annals of otolaryngology and rhinology,1 -jdr clinical and translational research,1 -cuba counterpoints,0 -catalyst,1 -big data & information analytics,1 -acs energy letters,2 -american journal of environmental engineering and science,0 -journal of social sciences and humanities,0 -austin journal of clinical neurology,0 -isogloss,1 -loquens,1 -con-textos kantianos,1 -sintef proceedings,0 -proceedings of the international conference on logistics and transport,0 -romanian journal of anaesthesia and intensive care,0 -icoana credinţei,0 -open journal of psychiatry & allied sciences,0 -translational medicine communications,0 -nature human behaviour,3 -npj precision oncology,1 -"justice, power and resistance",1 -sustainable energy & fuels,1 -journal of gender-based violence,1 -epic series in computing,1 -food quality and safety,1 -human reproduction open,0 -ophthalmology @ point of care,1 -technical innovations & patient support in radiation oncology,0 -food and waterborne parasitology,1 -medicine anthropology theory,1 -trends in cancer,1 -veterinary parasitology. regional studies and reports,1 -èkonomičeskaâ istoriâ,1 -zeitschrift für praktische philosophie,1 -infrastructures,1 -"mechanics, materials science & engineering",0 -proceedings of the ... international symposium on marine propulsors,0 -arti dello spettacolo / performing arts,1 -proceedings of the international conference on progress in additive manufacturing,0 -al dar research journal for sustainability,1 -contemporary clinical trials communications,1 -journal of industrial information integration,2 -social science spectrum,1 -the sankalpa: international journal of management decisions,0 -international journal of innovative studies in sciences and engineering technology,0 -"international journal of environment, agriculture and biotechnology",0 -nibio bok,0 -nordic journal of literacy research,1 -nordisk poesi,1 -clinical neurophysiology practice,1 -kidney international reports,1 -the lancet. public health,3 -brill research perspectives. law and religion,1 -feminist encounters,1 -materials today energy,1 -online social networks and media,1 -ieee transactions on radiation and plasma medical sciences,0 -physical review. accelerators and beams,1 -international journal of standardization research,1 -journal of labor and society,1 -birth defects research,1 -journal of forensic psychology research and practice,1 -advances in biotechnology & microbiology,0 -nutrition & food science international journal,0 -journal of dentistry and oral biology,0 -advances in recycling & waste management,0 -"international journal of emerging trends in engineering, science & technology (ijetest-12)",0 -iowa research online,0 -lumat-b,0 -journal of autonomy and security studies,1 -ainedidaktiikka,1 -psychiatria fennica,1 -focus localis,1 -popular inquiry,1 -architectural research in finland,1 -european review of service economics and management,0 -corvinus journal of international affairs,0 -noema,1 -complementary medicine research,1 -proceedings,1 -journal of communications and information networks,0 -ce/papers,0 -reports of the european society for socially embedded technologies,0 -international journal of information technology,1 -nano energy systems,0 -cired - open access proceedings journal,1 -kalpa publications in computing,0 -journal of consumer ethics,1 -literature and arts review,0 -softeng ...,1 -readings book,0 -central asian journal of water research,0 -cell stress,0 -vìsnik unìversitetu ìm. a. nobelâ. serìâ fìlologìčnì nauki,1 -crítica y resistencias,0 -come,0 -otium,1 -journal for research in arts and sports education,1 -journal of extreme anthropology,1 -arctic environmental research,0 -učënye zapiski petrozavodskogo gosudarstvennogo universiteta,1 -the lancet. planetary health,3 -zeszyty naukowe uniwersytetu gdańskiego. ekonomika transportu i logistyka,0 -fs (forest and society),0 -open journal for sociological studies,0 -gender a výzkum,0 -translational animal science,0 -archives of psychology,0 -"iac online journal, cio and digital innovation",0 -global performance studies,0 -acs applied nano materials,1 -journal of nursing and health studies,0 -international journal of psychotherapy practice and research,1 -journal of conflict and integration,1 -international journal of sustainable lighting,1 -pyrex journal of african studies and development,0 -proceeding of international conference on entrepreneurship and business management,0 -meeting abstracts,0 -itm web of conferences,0 -"international conference on bioinformatics, biocomputational systems and biotechnologies",1 -hikuin,0 -journal of cultural analytics,1 -research data journal for the humanities and social sciences,1 -zeitschrift für digitale geisteswissenschaften,1 -digital studies,2 -dhcommons journal,0 -advanced sustainable systems,1 -archives of data science. series a,1 -language typology and universals,2 -hegel bulletin,1 -jmir cardio,0 -hemasphere,1 -lgbt health,1 -martial arts studies,1 -international journal bioautomation,0 -annual review of animal biosciences,2 -chemosensors,1 -ejnmmi radiopharmacy and chemistry,1 -immunohorizons,1 -interactive journal of medical research,1 -jacc : basic to translational science,1 -climate services,1 -aerosol science and engineering,1 -environment and ecology research,0 -visions for sustainability,1 -aquaculture reports,1 -evolution letters,2 -journal of medical imaging,1 -journal of large-scale research facilities,0 -ajil unbound,1 -tulane law review,1 -criminal justice review,1 -review of public administration and management,0 -safer communities,1 -european investment law and arbitration review,1 -opolskie studia administracyjno-prawne,1 -virginia journal of international law,1 -insolvensrättslig tidskrift,1 -biostatistics & epidemiology,1 -letters in biomathematics,1 -journal of discrete mathematical sciences & cryptography,1 -journal of dynamical systems and geometric theories,1 -journal of interdisciplinary mathematics,1 -notes on ifs,0 -transactions of the london mathematical society,2 -mathematical programming computation.,1 -kyungpook mathematical journal,1 -annual review of statistics and its application,1 -high frequency,1 -african technology development forum journal,0 -journal of nuclear energy science & power generation technology,0 -national science review,1 -"transportmetrica : b, transport dynamics",1 -periodica polytechnica : transportation engineering,0 -periodica polytechnica : mechanical engineering,0 -production engineering archives,1 -international journal of intelligent unmanned systems,0 -journal of structural fire engineering,1 -case studies in thermal engineering,1 -international journal of building pathology and adaptation,1 -analogia,1 -phronema,1 -international journal of orthodox theology,1 -logos (yorkton),1 -the new bioethics,1 -journal of philosophy of life,1 -symposium,1 -kantovskij sbornik,1 -philosophies,1 -international journal of contemporary energy,1 -joule,3 -c.,1 -chemengineering,1 -energy reports,1 -engineering,1 -green energy & environment,1 -journal of contemporary water research and education,1 -materials for renewable and sustainable energy,1 -mrs energy & sustainability,1 -polyolefins journal,0 -multidiscipline modeling in materials and structures,1 -scientia iranica,1 -sustainable energy technologies and assessments,1 -the open petroleum engineering journal,0 -world journal of engineering,1 -kne energy,0 -technology architecture + design,1 -inks,1 -barnlitterært forskningstidsskrift,1 -arts and the market,1 -journal of popular romance studies,1 -archivio novellistico italiano,1 -l’ ellisse,1 -arts,1 -journal of humanistic mathematics,1 -architecture_media_politics_society,1 -sound studies,2 -jewish art,0 -the naar proceedings series,1 -nordic journal of comparative and international education,1 -journal of technology and science education,1 -addictive behaviors reports,1 -comprehensive results in social psychology,1 -collabra,1 -social and personality psychology compass,1 -motivation science,1 -organizational psychology review,1 -international journal for lesson and learning studies,1 -international journal of mentoring and coaching in education.,1 -qualitative psychology,1 -international journal of interpreter education,1 -art therapy,1 -international journal of art therapy,1 -international journal of technology and inclusive education,1 -taboo,1 -journal of the society for armenian studies,1 -the international journal for the history of engineering & technology,1 -orientalia christiana cracoviensia,0 -acta periodica duellatorum,1 -digital applications in archaeology and cultural heritage,1 -konferenser / kungl. vitterhets historie och antikvitets akademien,1 -mediterranean chronicle,1 -communications.,1 -economics of disasters and climate change,1 -journal of airline and airport management,1 -revista de contabilidad,1 -revista de studii financiare,0 -journal of innovation and knowledge,1 -schmalenbach business review,1 -corporate governance and sustainability review,1 -advances in economics and business,0 -asia pacific journal of innovation and entrepreneurship,1 -biophysical economics and resource quality,1 -frontiers of engineering management,0 -ictact journal on management studies,0 -journal of air transport studies,0 -journal of commodity markets,1 -"journal of entrepreneurship, business and economics",0 -the journal of network theory in finance,1 -the case journal,1 -journal of tourism futures,1 -journal of behavioral and experimental economics,1 -montenegrin journal for social sciences,1 -refractory,1 -open cultural studies,1 -journal of global operations and strategic sourcing,1 -settler colonial studies,1 -dignity,1 -journal of theoretical social psychology,1 -darkmatter,1 -contemporary jewry,1 -sociologia on line,0 -homo ludens,0 -comparative migration studies,1 -"the education review, usa",0 -"society, health and vulnerability",1 -spaces & flows,0 -"revista de design, tecnologia e sociedade",1 -international journal of transport development and integration,0 -proceedings of the ... isarc,0 -ieee control systems letters,1 -batteries,1 -ifac journal of systems and control,1 -"journal of control, automation and electrical systems",1 -journal of the technical university at plovdiv : fundamental sciences and applications,0 -ieee international conference on development and learning,0 -slas technology,1 -"advances in science, technology and engineering systems journal",0 -ictact journal on communication technology,0 -ictact journal on microelectronics,0 -jmir formative research,0 -smart health,0 -proceedings of acm on programming languages,1 -the proceedings of the ... international conference on cyber warfare and security,1 -grey systems,0 -mathematical and software engineering,0 -hardwarex,1 -acm transactions on economics and computation,1 -proceedings of the acm on human-computer interaction,2 -information technologies and control,0 -softwarex,1 -research integrity and peer review,1 -proceedings of the ... international conference on auditory display,1 -international journal of managing information technology,0 -ictact journal on image and video processing,0 -ictact journal on soft computing,0 -"analele universităţii din craiova : seria ştiinţe filologice, langues et littératures romanes",1 -babel,0 -"baltic journal of english language, literature and culture",1 -bellaterra journal of teaching & learning language & literature,1 -belt - brazilian english language teaching journal,1 -berkeley review of education,0 -boca,0 -boletín de filología,2 -caderno de squibs,0 -brill research perspectives,0 -brill's annual of afroasiatic languages and linguistics,0 -buckeye east asian linguistics,0 -cadernos de etnolingüística,0 -cambridge occasional papers in linguistics,0 -chinese as a second language.,1 -computability,1 -concentric : studies in linguistics,1 -corpus linguistics research,1 -çukurova araştırmaları.,0 -diacronia,1 -didacticae,0 -diverscité langues,0 -dotawo,0 -early modern culture online,0 -east asian pragmatics,1 -east european journal of psycholinguistics,1 -ehumanista,1 -electronic journal of foreign language teaching,0 -elia,1 -elingup,0 -english linguistics research,0 -english teaching & learning,1 -entrehojas,0 -entrepalavras,0 -e-rea,0 -esp across cultures,0 -esp today,1 -estudios de fonética experimental,1 -études de communication,0 -eurasian journal of applied linguistics,1 -e-journall,1 -explorations,0 -facta universitatis,1 -gema online,0 -géolinguistique,0 -ghana journal of linguistics,0 -global chinese,1 -glosas,1 -glotodidactica,0 -grammatica e didattica,0 -grazer linguistische studien,0 -heritage language journal,1 -bhasha prodyogiki,0 -huagang yingyu qikan,0 -ibadan journal of english studies,0 -iberia,1 -i̇dil dergisi,0 -"international journal of english language, literature in humanities",0 -ikala,1 -ilsienna,0 -indo-european linguistics,0 -i-land journal,0 -instructed second language acquisition,0 -interdisciplinary journal of portuguese diaspora studies,1 -international journal of applied linguistics and english literature,0 -international journal of arabic linguistics,1 -international journal of chinese linguistics,1 -international journal of christianity & english language teaching,0 -international journal of computational linguistics and applications,0 -international journal of computational linguistics and chinese language processing,1 -international journal of dravidian linguistics,0 -international journal of foreign language teaching and research,0 -international journal of language and culture,1 -international journal of languages and literatures,0 -international journal of languange education and applied linguistics,0 -international journal of language studies,1 -"international journal of language, translation and intercultural communication",0 -international journal of linguistics & communication,0 -"international journal of linguistics, literature and culture",0 -international journal of english language teaching,0 -international journal of russian studies,0 -international studies in humour,0 -"interplay: a journal of languages, linguistics, and literature",0 -investigações,1 -iperstoria,0 -iranian journal of applied language studies,0 -iranian journal of language teaching research,1 -international journal of language testing,1 -issues in applied linguistics,0 -ijcol,0 -the jalt call journal,1 -journalipp,0 -journal of advanced linguistic studies,0 -acm transactions on privacy and security,3 -business and professional communication quarterly,1 -circulation. genomic and precision medicine,1 -ifac-papersonline,1 -"digital policy, regulation and governance",1 -managing sport and leisure,1 -information and learning sciences,1 -journal of demographic economics,1 -mineral processing and extractive metallurgy,1 -"transportmetrica. a, transport science",1 -"journal of property, planning and environmental law",1 -studies in graduate and postdoctoral education,1 -curriculum studies in health and physical education,1 -international journal of smart education and urban society,1 -lecture notes in logistics,0 -insurance markets and companies,0 -egyptian journal of linguistics translation,0 -estudos linguísticos,0 -international journal of language and applied linguistics,0 -international journal of the linguistic association of the southwest,0 -jahrbuch für germanistische sprachgeschichte,0 -journal of applied linguistics and language research,1 -journal of arabic linguistics tradition,0 -journal of child language acquisition and development,1 -journal of foreign language education and technology,0 -"journal of foreign languages, cultures & civilizations",0 -journal of home language research,1 -journal of jewish languages,1 -journal of language and discrimination,0 -journal of language and education,1 -dil eğitimi ve araştırmaları dergisi,1 -"vestnik rggu. seriâ: filologiâ, voprosy âzykovogo rodstva",1 -journal of languages for specific purposes,0 -journal of latin linguistics,1 -journal of linguistics and language teaching,0 -parekbolai,1 -nalans,1 -journal of second and multiple language acquisition,0 -journal of south asian linguistics,1 -journal of speech sciences,0 -journal of teaching english for specific and academic purposes.,1 -journal of the european second language association,1 -journal of the linguistic association of nigeria,0 -journal of the text encoding initiative,1 -tullis journal - the journal of turkic language and literature surveys,0 -journal of universal language,1 -journal of world languages,1 -jurnal gramatika : jurnal penelitian pendidikan bahasa dan sastra indonesia,0 -káñina,1 -korean linguistics,1 -l'analisi linguistica e letteraria,0 -language and linguistics in melanesia,0 -language and psychoanalysis,1 -language and semiotic studies,0 -hunar-i zabān,1 -language discourse & society,1 -language ecology.,0 -language & ecology,0 -language forum,0 -language learning and development,1 -language research,1 -languages of the caucasus,0 -"languages, society & policy",0 -language testing in asia,1 -language under discussion,1 -language value,1 -langues et linguistique,0 -latin american journal of content and language integrated learning,1 -lengua y migración,1 -letras,0 -letras (santa maria),0 -letras de hoje,0 -letras & letras,0 -letrônica,0 -lingua aegyptia,1 -linguamática,1 -lingua posnaniesia,1 -lingua sinica,1 -lingue antiche e moderne,0 -lingue culture mediazioni,0 -lingue e linguaggi,1 -linguistica,1 -lingüística en la red,0 -linguistica occitana,0 -linguistica zero,1 -linguistic approaches to bilingualism,1 -eon'eo yeon'gu,1 -linguistics applied,1 -balkansko ezikoznanie,1 -lingvistik',0 -lletres asturianes,1 -macrolinguistics,1 -malaysian journal of elt research,0 -multilingual margins,1 -mundo eslavo,1 -neograeca bohemica,1 -novitas-royal (research on youth and language),1 -vestnik novosibirskogo gosudarstvennogo universiteta,1 -nusa,1 -the journal of experiential education,1 -philosophy of mathematics education journal,0 -video journal of education and pedagogy,0 -"technology, knowledge and learning",1 -scandinavian psychologist,0 -international journal for history and social sciences education,0 -iza journal of development and migration,1 -journal of applied finance and economic policy,0 -amity journal of management,1 -asian journal of management cases,1 -international journal of supply chain management,0 -notitia,0 -jahrbuch für regionalwissenschaft,1 -"journal of tourism, heritage & services marketing",1 -european journal of management issues,0 -vestnik èkonomičeskoj teorii,0 -shima,1 -arendt studies,1 -derivatives & financial instruments,0 -studia z prawa wyznaniowego,1 -american journal of cultural sociology,1 -estudios fronterizos,1 -eidos,1 -kant yearbook,1 -genshōgaku nempō,0 -estudios filosofía/historia/letras,1 -"revista de ensino em artes, moda e design",1 -moara,1 -iterations,1 -public,1 -modernist cultures,1 -journal of art writing by students,0 -bocagiana,0 -metabarcoding and metagenomics,1 -basic & applied herpetology,1 -mechatronic systems and control,0 -električeskie stancii,0 -aerospace,1 -fire research,0 -current alternative energy,0 -wires. water,1 -the lancet. child & adolescent health,3 -british journal of visual impairment,1 -radiologic technology,1 -neurospine,1 -intensive care medicine experimental,1 -european journal of radiology open,1 -vision,1 -astrodynamics,1 -scipost physics,1 -quantum,2 -frontiers in sustainable food systems,1 -acta agrobotanica,1 -open agriculture,1 -international journal of cardiovascular sciences,0 -jbmr plus,1 -journal of cancer therapeutics & research,0 -journal of diabetes mellitus,0 -open journal of mathematical sciences,1 -statistics and public policy,1 -international journal of current research and academic review,0 -memorie domenicane,0 -gyancity journal of electronics and computer science,0 -gyancity journal of engineering and technology,0 -"journal of wireless mobile networks, ubiquitous computing and dependable applications",0 -robotics,1 -international journal of sustainable energy planning and management,1 -internet interventions,1 -revista odisséia,0 -percursos linguísticos,0 -philippine journal of linguistics,1 -quaderns de filologia,0 -questions and answers in linguistics,1 -revista electrónica de lingüística aplicada,0 -rasal lingüística,0 -recherche et pratiques pédagogiques en langues de spécialité,0 -repères-dorif,1 -pizhūhish/hā-yi zabān/shināsī,0 -res diachronicae virtual,1 -research papers in language teaching and learning,0 -revista alicantina de estudios ingleses,1 -revista de estudos da linguagem,1 -lfe,0 -revista filipina,0 -aled,1 -leitura,0 -échanges linguistiques en sorbonne,0 -rhesis,1 -rivista italiana di filosofia del linguaggio,1 -russian linguistic bulletin,0 -sayyab translation journal,0 -scriptum digital,1 -semen,1 -skase journal of theoretical linguistics,1 -slovenscina 2.0,1 -pragmática sociocultural,1 -stellenbosch papers in linguistics,1 -studie z aplikované lingvistiky,1 -studies in chinese learning and teaching,0 -studies in chinese linguistics,1 -eon'eohag (jung'won eon'eo haghoe),1 -voprosy filologii i mežkulʹturnoj kommunikacii: naučnye issledovaniâ i praktičeskie rešeniâ,0 -studii şi cercetări ştiinţifice,1 -study abroad research in second language acquisition and international education,1 -darnioji daugiakalbystė,1 -syntaxe & sémantique,1 -taiwan journal of linguistics,1 -taiwan journal of tesol,1 -teaching english language,1 -teaching english with technology,1 -teflin journal,1 -te reo,1 -the agenda setting journal,1 -the asian journal of applied linguistics,1 -theory and practice in language studies,0 -the public journal of semiotics,1 -the yearbook of south asian languages and linguistics,0 -topics in linguistics,1 -translatio,1 -translation and translanguaging in multilingual contexts,1 -turkish online journal of english language teaching,1 -viceversa,0 -west asian journal of speech and language pathology,0 -writing & pedagogy,1 -yearbook of the german cognitive linguistics association,1 -žanry reči,1 -belgrade english language & literature studies,0 -acta linguistica,0 -revista brasileira de lingüística aplicada,1 -bulletin des anglicistes médiévistes,1 -california linguistic notes,0 -english language research journal,0 -complutense journal of english studies,1 -viewz,0 -lege artis,0 -cognition représentation langages,1 -digital scholarship in the humanities,2 -vestnik omskogo gosudarstvennogo pedagogičeskogo universiteta.,0 -game & puzzle design,1 -baltic screen media review,1 -fat studies,1 -animal studies journal,1 -la revista icono 14,1 -arab studies journal,1 -accademia,0 -journal of intelligence studies in business,1 -international journal of business forecasting and marketing intelligence,1 -risks,1 -journal of business cycle research,1 -aea papers and proceedings,1 -bulletin of the geological society of greece,1 -nature sustainability,3 -npj climate and atmospheric science,2 -nature electronics,3 -ieee solid-state circuits letters,1 -ieee international conference on circuits and systems,1 -journal of postsecondary education and disability,1 -the teacher educator,1 -scientia in educatione,0 -international journal of e-learning & distance education,1 -georisk,1 -designs,0 -urban science,1 -communications biology,1 -fungal systematics and evolution,1 -one ecosystem,1 -sustainable materials and technologies,1 -graeco-latina brunensia,1 -virtual creativity,1 -journal of the international colour association,1 -journal of the korean society of clothing and textiles,1 -philosophical readings,0 -solar rrl,1 -eesti arst,0 -international journal of management and sustainability,1 -nature catalysis,2 -inorganics,1 -information and inference,1 -european radiology experimental,1 -wellcome open research,0 -research in english language pedagogy,1 -researching and teaching chinese as a foreign language,0 -aptum,1 -dutkansearvvi dieđalaš áigečála,1 -vestnik sankt-peterburgskogo universiteta. âzyk i literatura,1 -euralex proceedings,0 -studia missiologica et oecumenica fennica,1 -peer community in evolutionary biology,0 -meta gene,1 -healthcare technology letters,1 -current environmental health reports,1 -translational sports medicine,1 -frontiers in built environment,1 -engineering solid mechanics,0 -the aviation & space journal,1 -international data privacy law,2 -journal of materials research and technology,1 -zeitschrift für kristallographie : crystalline materials,1 -zutot,1 -security and privacy,1 -iacr transactions on cryptographic hardware and embedded systems,1 -acm transactions on social computing,1 -cyberspace studies,0 -annals of computer science and information systems,1 -environment and planning e : nature and space,2 -fokus på familien,1 -tidsskrift for professionsstudier,0 -international journal of social ecology and sustainable development,1 -visual ethnography,1 -anthropology of consciousness,1 -sociologias,0 -journal of urban mathematics education,1 -clinical psychological science,1 -journal of research on character education,1 -canadian journal of disability studies,1 -the review of disability studies,1 -international journal of personality psychology,0 -review of education,1 -learner development journal,1 -minorités linguistiques et société,1 -kalbotyra,1 -stellenbosch papers in linguistics plus,1 -journal of global responsibility,1 -international journal of comparative management,1 -international journal of community currency research,0 -"markets, globalization & development review",0 -music & science,1 -proceedings of the international colour association (aic) conference,0 -estudos linguisticos,1 -the plan journal,1 -transposition,1 -percussive notes,0 -annual review of vision science,1 -unmanned systems,1 -"journal of telecommunication, electronic and computer engineering",0 -proceedings of the ... dmi: academic design management conference,0 -convergências,1 -the european journal of philosophy in arts education,1 -japanese magazine of mineralogical and petrological sciences,0 -kleio,0 -regional science policy & practice,1 -theoretical roman archaeology journal,1 -journal of historical network research,1 -modern american history,1 -maatalousmuseon tutkimuksia,0 -open political science,1 -"international journal for crime, justice and social democracy",1 -santa clara high technology law journal,1 -quintú quimün,0 -ijred (international journal of renewable energy development),1 -contemporary management research,0 -the journal of aviation/aerospace education & research,0 -"international journal of aviation, aeronautics, and aerospace",0 -aviation,1 -journal of transportation technologies,0 -collegiate aviation review,0 -aviation in focus,0 -journal of aviation technology and engineering,1 -international review of aerospace engineering,1 -journal of orthodox christian studies,1 -open philosophy,1 -algebraic combinatorics,1 -communications chemistry,1 -nature reviews : chemistry,2 -journal for the measurement of physical behaviour,1 -tobacco prevention and cessation,1 -crop research,0 -farming and management,0 -frontiers in cardiovascular medicine,1 -journal of perceptual imaging,1 -information technology journal,0 -tutkimus (siirtolaisuusinstituutti),1 -the transportation law journal,0 -international transport law review,1 -"journal of transportation law, logistics, and policy",0 -journal of technology law & policy,0 -michigan telecommunications and technology law review,1 -north carolina journal of law & technology,1 -pittsburgh journal of technology law & policy,0 -iuphar/bps guide to pharmacology cite,0 -imaginations,1 -journal for the history of knowledge,1 -european psychomotricity journal,1 -journal of language evolution,1 -geologi,0 -alusta!,0 -parnasso,0 -acta acustica,1 -frontiers in oral health,1 -iet collaborative intelligent manufacturing,1 -nano express,1 -net journal of agricultural science,0 -nanotechnology for environmental engineering,1 -zoosystematica rossica,1 -zonemoda journal,0 -žurnal novoj èkonomičeskoj associacii,0 -"zeitschrift für religion, gesellschaft und politik",1 -zdravotnícke listy,0 -wildlife society bulletin,1 -völkerrechtsblog,0 -vgb powertech,0 -isbt science series,1 -proceedings : annual new zealand built environment research symposium,0 -conference on human system interactions,1 -proceedings of international conference on the advancement of steam,0 -selected papers of internet research,0 -bat research news,1 -imerides endymasiologias - praktika,1 -ecaade proceedings,0 -traficomin tutkimuksia ja selvityksiä,0 -esignals research,0 -australasian conference on information systems,1 -ieee metrology for aerospace,1 -proceedings of the annual conference of cais,0 -building simulation applications bsa,0 -proceedings : european conference for modelling and simulation,1 -ecb legal conference,0 -musicoguía magazine,0 -"proceedings of ieee international conference on teaching, assessment, and learning for engineering",0 -efficiency and responsibility in education,0 -cleveland state law review,0 -industrial and commercial training,1 -sotilasaikakauslehti,0 -kanava,0 -transnational law & contemporary problems,0 -creative nursing,1 -journal of multidisciplinary healthcare,1 -"international conference on advances in human-oriented and personalized mechanisms, technologies, and services",0 -"proceedings of the annual international conference on control, automation and robotics",0 -anais do simpósio brasileiro de redes de computadores e sistemas distribuídos,1 -technical program and proceedings,0 -ursi international symposium on electromagnetic theory,1 -technical program expanded abstracts,0 -proceedings of the european conference on research methods in business and management,0 -business and management,0 -eceee industrial summer study proceedings,0 -ieee international conference on data engineering workshop,0 -proceedings of the international conference on optimisation of electrical and electronic equipment,0 -contributions of the astronomical observatory skalnaté pleso,1 -international conference on principles of knowledge representation and reasoning,0 -linnut-vuosikirja,0 -trinity college law review,0 -journal of radiotherapy in practice,1 -sensing and imaging,1 -current heart failure reports,1 -journal of marine science and application,1 -journal of payments strategy & systems,0 -forestry studies,1 -shoulder & elbow,1 -kvartti,0 -bioscience research,0 -"kieli, koulutus ja yhteiskunta",0 -journal of eurasian studies,1 -european journal of risk regulation,1 -data and information management,1 -advanced photonics research,1 -annals of data science,1 -annual research & review in biology,0 -areiopagi.fi,0 -asian journal of endoscopic surgery,0 -blue-green systems,0 -contagion,0 -current opinion in behavioral sciences,1 -current topics in catalysis,0 -diabetes & metabolism journal,1 -economic issues,1 -european urology open science,1 -food and energy security,1 -przegląd gastroenterologiczny,0 -handbook of pragmatics online,0 -ilmastokatsaus,0 -international journal of immunology,0 -international journal of nutrition sciences,0 -interventional cardiology,0 -j multidisciplinary scientific journal,1 -journal of aligner orthodontics,0 -journal of composites science,1 -kexue tongbao,0 -kiiltomato,0 -medicinski arhiv,0 -musiikin suunta,0 -"nursing education, research, & practice",1 -newsletter of the international network of gelechioid aficionados,0 -nordmetric news,0 -pirkanmaan alta,0 -nursing reports,1 -international journal of electronics and telecommunications,1 -big data,1 -current plant biology,1 -jacc : cardiooncology,1 -jacc : case reports,1 -historia nyt!,0 -european sociologist,0 -vähäisiä lisiä,0 -sairaanhoitaja,0 -lapsen maailma,0 -progress in palliative care,1 -tieteessä tapahtuu,0 -arheoloogilised välitööd eestis,0 -materials theory,1 -journal of patient-reported outcomes,1 -organization theory,2 -pancreapedia,0 -parasite epidemiology and control,1 -peer j preprints,0 -"photobiomodulation, photomedicine, and laser surgery",1 -rilem technical letters,1 -shanghai chest,0 -sirp,0 -studia zródłoznawcze,1 -terrestres,0 -tāyvīṭu,0 -the anatolian journal of family medicine,0 -therapeutic advances in ophthalmology,1 -tieteen termipankki,0 -tietopuu,0 -veterinarska stanica,0 -avoin kalevala,0 -revista da faculdade de direito da universidade federal de minas gerais.,0 -proceedings of the world congress of the international association for semiotic studies,0 -julkaisusarja 1 maanpuolustuskorkeakoulun tutkimuksia,0 -aalto-yliopiston julkaisusarja crossover,0 -advanced series in management,1 -balkanskie čteniâ,0 -brill encyclopedia of early christianity online,1 -etelä-karjalan vuosikirja,0 -european tort law yearbook,0 -forskningsrapporter från svenska handelshögskolan,0 -kielikeskuksen julkaisuja,0 -sociolingvistika,0 -journal of drug assessment,1 -allergo journal international,1 -musings,0 -"future of food : journal on food, agriculture and society",0 -skholion,0 -rengastajan vuosikirja,0 -technical reports in language technology,0 -journal of international and comparative law,1 -the international journal of environmental sustainability,0 -lutukka,0 -weather and climate dynamics,1 -encyclopedia of slavic languages and linguistic online,0 -laari,0 -kiel computer science series,0 -dossiers forum transregionale studien,0 -ikoni & kulttuuri,0 -valuation studies,1 -dia-logos,1 -#isoj,0 -electoral politics,0 -tulʹskij naučnyj vestnik,0 -sibirskij filologičeskij forum,0 -rastitelʹnye resursy,0 -peterburgskij èkonomičeskij žurnal,0 -"obŝestvo : sociologiâ, psihologiâ, pedagogika",0 -naučnoe obozrenie : teoriâ i praktika,0 -kommunikativnye issledovaniâ,1 -istoričeskij kurʹer,1 -žurnal organìčnoï ta farmacevtičnoï hìmìï,0 -vestnik ûžno-uralʹskogo gosudarstvennogo universiteta : seriâ pravo,0 -vestnik rossijskogo universiteta družby narodov,1 -vestnik permskogo universiteta : politologiâ,0 -xiangtan daxue xuebao : ziran kexue ban,0 -"vestnik udmurtskogo universiteta : sociologiâ, politologiâ, meždunarodnye otnošeniâ",1 -verfassungsblog,0 -vector,0 -vascular biology,0 -upravlenec,0 -upi briefing paper,0 -universitas,1 -ukuli,0 -türkiye klinikleri tıp bilimleri dergisi,0 -trends in psychology,1 -transformation,1 -tilisanomat,0 -theologica,1 -estadístico de encuestas,0 -review of evolutionary political economy,1 -the planetary science journal,1 -the pan african medical journal,0 -the nordic psychiatrist,0 -the mayanist,0 -the malaysian journal of nursing,0 -warasan phasa lae wattanatam kaoli sueksa,0 -the journal of humanities in rehabilitation,1 -keizaigaku ronsan,0 -the jordan journal of earth and environmental sciences,1 -the international journal of community and social development,1 -keiō gijuku daigaku hiyoshi kiyō : jinbun kagaku,0 -obrazovanie i nauka,0 -the bryological times,0 -témoigner : entre histoire et mémoire,0 -technai,1 -taiwan xuezhi,1 -synkooppi,0 -syn-thèses,0 -sviluppo e organizzazione,0 -surfaces,1 -suomen maataloustieteellisen seuran tiedote,0 -sungkyun journal of east asian studies,1 -summary of the bulletin of the international seismological centre,0 -subterranean biology,1 -studies in african languages and cultures,1 -studia universitatis babeş-bolyai : mathematica,0 -stats,1 -statistics and applications,1 -naučno-tehničeskie vedomosti sankt-peterburgskogo gosudarstvennogo politehničeskogo universiteta,0 -sosyoloji notları,1 -sorbifolia,0 -soil ecology letters,1 -sn computer science,1 -sn comprehensive clinical medicine,1 -the smai journal of computational mathematics,1 -sleep medicine and disorders : international journal,0 -sisu-line,0 -siam journal on mathematics of data science,1 -shuxue xuebao,0 -shoulei xuebao,0 -sfra review,0 -schweizerische zeitschrift für bildungswissenschaften,1 -satasarvi,0 -russlandanalysen,0 -russian social science review,1 -russian analytical digest,0 -rossijskij fiziologičeskij žurnal im. i.m. sečenova,0 -roczniki naukowe polskiego towarzystwa zootechnicznego,0 -rsu rivista di studi ungheresi,0 -"riact revista de investigação artística, criação, e tecnologia",1 -revue roumaine de psychanalyse,0 -la revue internationale et stratégique,0 -revista unisci,1 -revista românească pentru educaţie multidimensională,0 -revista de la academia puertorriqueña de jurisprudencia y legislación,0 -revista de estudios andaluces,0 -revista brasileira de epidemiologia,0 -resuscitation plus,1 -naučnyj rezulʹtat : seriâ sociologiâ i upravlenie,1 -research notes of the aas,0 -research and reports of medicine,0 -the rescience journal,1 -revista española de sociología,1 -reading religion,0 -re-visiones,1 -raportteja,0 -rannikon puolustaja,0 -quantitative imaging in medicine and surgery,1 -pure and applied biology,0 -psychreg journal of psychology,1 -psihologičeskaâ nauka i obrazovanie,1 -project leadership and society,1 -proceeding of the institute of applied mathematics,0 -problemy zarządzania,0 -zagadnienia ekonomiki rolnej,0 -politologický časopis,1 -plasma,1 -plant phenomics,1 -plant and fungal systematics,1 -physiology international,1 -philologia hispalensis,1 -phage,0 -peruste,0 -palaeoentomology,1 -pacific conservation biology,1 -osviitta,0 -ornithology research,1 -ordines,1 -cell reports medicine,1 -čelâbinskij fiziko-matematičeskij žurnal,0 -journal of deliberative democracy,1 -dance articulated,1 -rsc medicinal chemistry,1 -asian anthropology,1 -jbjs case connector,0 -international review of the red cross,1 -le courrier de la nature,0 -cadernos de estudos sociais,0 -istoriko-filosofskij ežegodnik,0 -dinamičeskie sistemy,0 -estudios filosóficos,1 -labyrinth : teorii i praktiki kulʹtury,0 -bereavement care,0 -mitteilungen zur kirchlichen zeitgeschichte,0 -journal of vertebrate biology,1 -acm/ims transactions on data science,1 -facial plastic surgery & aesthetic medicine,1 -frontiers in chemical engineering,1 -journal of affective disorders reports,1 -cleaner engineering and technology,1 -composites part c : open access,1 -anales,0 -jses international,1 -"arthroscopy, sports medicine, and rehabilitation",1 -canine medicine and genetics,1 -journal of food bioactives,0 -åländsk odling,0 -ethiopian civil and commercial law series,0 -kääntäjä,0 -"african journal of mining, entrepreneurship and natural resource management",0 -applied science and engineering progress,0 -journal of contemporary medicine,0 -digital business,1 -bulletin de la société linnéenne de provence,0 -geography and sustainability,1 -journal of power sources advances,1 -problemi ohoroni pracì v ukraïnì,0 -journal of health development,0 -journal of oral research,0 -cardozo arts & entertainment law journal,1 -communications materials,1 -implementation science communications,1 -index journal,1 -appita magazine,0 -ieee open journal of industry applications,1 -neurophysiology and rehabilitation,0 -ieee journal on selected areas in information theory,1 -anthropocenes,0 -finnish music quarterly,0 -journal of environmental media,0 -history education research journal,1 -openphysio,1 -european journal for nursing history and ethics,1 -oa-natur,0 -annals of disaster risk sciences,0 -itu journal,1 -neurology and neurobiology,0 -danish foreign policy review,0 -journal of translational autoimmunity,1 -bøygen,0 -journal of orthopaedics,1 -donald school journal of ultrasound in obstetrics and gynecology,0 -european journal of education,0 -indian journal of surgical oncology,0 -nordic journal of media management,1 -applied computing and geosciences,1 -materials today advances,1 -array,1 -acta facultatis educationis physicae universitatis comenianae,1 -journal of surgery,0 -international turfgrass society research journal,0 -on education,0 -moderne stadtgeschichte,1 -critical gambling studies,1 -journal of emerging sport studies,0 -journal of cannabis research,1 -lignes,0 -bmj evidence-based medicine,1 -"animal husbandry, dairy and veterinary science",0 -cancer treatment and research communications,1 -acta biologica sibirica,1 -bmj open quality,1 -mahkuscript,1 -journal of sleep disorders : treatment & care,0 -journal of asia-pacific biodiversity,1 -journal of reproduction & infertility,0 -kontakt,1 -linnut,0 -academy of european law working papers,0 -sigmm records,0 -administraţie şi management public,1 -adolescent psychiatry,1 -sovremennaâ èlektrometallurgiâ,0 -african journal of educational studies in mathematics and sciences,0 -albany law journal of science & technology,0 -alternautas,0 -american journal of educational research,0 -annali del lazio meridionale,0 -annals of solid and structural mechanics,1 -ápeiron,0 -applied in vitro toxicology,1 -asia-european journal of mathematics,1 -aurora,0 -australasian journal of paramedicine,0 -auto-immunity highlights,0 -ayrıntı dergisi,0 -bioactive materials,1 -biochemistry : supplement series a membrane and cell biology,0 -biomarker research,1 -"čelovek, kulʹtura i obrazovanie",1 -european journal of higher education it,0 -international journal of music in early childhood,0 -journal of emerging and rare diseases,0 -circulation reports,1 -general chemistry,0 -community psychology in global perspective,1 -journal of medical science,1 -journal of psychological and educational research,1 -computer methods in biomechanics and biomedical engineering : imaging & visualization,1 -journal of gastrointestinal oncology,1 -brazilian journal of operations & production management,0 -vestnik polesskogo gosudarstvennogo universiteta : seriâ prirodovedčeskih nauk,0 -bulletin of the national museum of nature and science : series b botany,1 -cairo papers in social science,0 -canid biology & conservation,1 -diskussionspapier,0 -chiasma,1 -children australia,1 -collateral,0 -commons,1 -computational toxicology,1 -computerrecht,0 -concussion,0 -configurações,0 -cosmetics,1 -critical military studies,1 -cultus,1 -current research in environmental & applied mycology,1 -cutter business technology journal,0 -dagstuhl manifestos,0 -"diabetes, metabolic syndrome and obesity",1 -differencialʹnye uravneniâ i processy upravleniâ,1 -discusiones filosóficas,1 -diskussionspapiere - deutsches institut für wirtschaftsforschung,0 -ekonometria,1 -concreta,0 -edutec,0 -egyptian journal of immunology,0 -the egyptian journal of neurosurgery,0 -entanglements,0 -equidad & desarrollo,0 -equilibrium,0 -erwerbs-obstbau,0 -"espacio, tiempo y forma : serie v historia contemporánea",1 -esssat news,0 -etmu-blogi,0 -etudes de lettres,0 -eui working papers : robert schuman centre,0 -eurasian journal of economic and business studies,0 -evolutionary studies in imaginative culture,1 -evolutionary systematics,0 -ewop in practice,0 -focus : journal of international business,1 -foreign economies and management,0 -fortid,0 -atlal : the journal of saudi arabian archaeology,0 -healthmanagement.org : the journal,0 -haaste,0 -frontline gastroenterology,1 -hufvudstadsbladet,0 -thông báo khoa học,0 -getmobile,1 -higher education for the future,1 -intelligenza artificiale,0 -interkulturelle theologie,0 -"international journal of e-education, e-business, e-management and e-learning",0 -international journal of economics and management engineering,0 -international journal of engineering systems modelling and simulation,0 -international journal of engineering : transactions a basics,0 -international journal of integrated engineering,0 -international journal of ms care,1 -international journal of scientific and research publications,0 -international journal of taiwan studies,1 -isimu,1 -izvestiâ vuzov : prikladnaâ himiâ i biotehnologiâ,0 -jalkaväen vuosikirja,0 -japanese journal of systematic entomology,1 -the journal of applied business and economics,0 -journal of circulating biomarkers,0 -journal of community safety & well-being,1 -journal of entrepreneurship and public policy,1 -journal of feline medicine and surgery open reports,1 -journal of intercultural management,0 -candavia,0 -communication & organisation,0 -journal of hindu studies,1 -journal of international business policy,1 -journal of learning for development,0 -journal of membrane computing,1 -"journal of microbiology, biotechnology and food sciences",0 -journal of nuclear materials management,0 -journal of osteoporosis and physical activity,0 -patient safety & quality improvement journal,1 -journal of research in interprofessional practice and education,1 -the journal of social theory in art education,0 -journal of the international society for teacher education,0 -water reuse,1 -kirjuri,0 -jus cogens,1 -meta h,1 -musica & figura,1 -czech yearbook of public and private international law,1 -kamchatka,1 -koedoe,1 -kodomogaku kenkyu,0 -law & history,1 -lilun yuekan,0 -made in china,0 -tehnika,0 -manuscript studies,1 -materia,0 -memoriamedia,1 -metamorphosis,0 -"modernizaciâ, innovaciâ, razvitie",0 -mongolica,0 -monograf,1 -"multidisciplinary journal for education, social and technological sciences",0 -multifunctional materials,1 -multilingual,0 -rossijskij nevrologičeskij žurnal,0 -"nordic journal of transitions, careers and guidance",1 -notizie di politeia,1 -writing in education,0 -current landscape ecology reports,1 -the lancet healthy longevity,1 -international journal of healthcare management,1 -statelessness & citizenship review,1 -acta biologica turcica,0 -global justice,1 -"journal of race, ethnicity, and politics",1 -sn social sciences,1 -digital government,1 -morning watch,0 -iot,0 -journal of asian electric vehicles,0 -the south asianist,1 -social science protocols,0 -scottish studies,0 -sibbaldia,0 -the unfamiliar,0 -lifespans & styles,0 -journal of lithic studies,1 -southeast asian journal of stem education,0 -journal on efficiency and responsibility in education and science,1 -advances in combinatorics,1 -sinergia académica,1 -crime fiction studies,1 -electrochem,0 -neurobiology of language,1 -disciplinary and interdisciplinary science education research,1 -asia-pacific journal of regional science,1 -journal of monolingual and bilingual speech,1 -journal of foreign language teaching and translation studies,0 -geoscience letters,1 -forensic science international: reports,1 -histoire culturelle de l'europe,0 -cahiers de littérature orale,1 -international journal of technology in education,1 -international journal on studies in education,1 -thermal science and engineering progress,1 -studia migracyjne przegląd polonijny,1 -journal of cognitive engineering and decision making,1 -public sector economics,0 -spanish journal of marketing - esic,1 -civil engineering journal,0 -european journal of applied sciences,1 -journal of islamic marketing,1 -affective science,1 -scipost physics lecture notes,1 -iop scinotes,1 -journal of pragmatic constructivism,1 -re:think,0 -international journal of nursing studies advances,1 -social sciences & humanities open,1 -incarceration,1 -forensic science international: digital investigation,1 -solmu,0 -journal of fractional calculus and application,0 -acs food science & technology,1 -behavioural public policy,1 -gaodeng gongcheng jiaoyu yanjiu,0 -bijiao jiaoyu yanjiu,0 -mediatization studies,1 -management review quarterly,1 -women's reproductive health,1 -frontiers in global women’s health,1 -forensic imaging,1 -acta universitatis lodziensis: folia archaeologica,1 -evolutionary human sciences,1 -philosophy and theory in higher education,1 -cnit technical report,0 -open research europe,1 -the lancet regional health – europe,1 -immunometabolism,1 -human communication & technology,1 -algebraic geometry,1 -fire,1 -zeitschrift für sozialreform,1 -european yearbook of constitutional law,1 -flatchem,1 -environmental microbiome,1 -green chemical engineering,0 -jmir cancer,1 -research involvement and engagement,1 -revista x,0 -frontiers in mechanical engineering,0 -ecosystem health and sustainability,1 -nutrition and health,1 -fuels,0 -journal of science in sport and exercise,1 -the journal of historical fictions,1 -international journal of user-system interaction,0 -journal of packaging technology and research,1 -international journal of coal science & technology,1 -archiwum filozofii prawa i filozofii społecznej,1 -drama research,1 -wisdom letters,1 -star protocols,1 -proceedings of international conference on computational thinking education,0 -ais transactions on replication research,1 -international journal for religious freedom,0 -journal of experimental political science,1 -transport problems,0 -endocrines,0 -cement,1 -journal for labour market research,1 -radical philosophy review,1 -psychology of popular media,1 -electronic research archive,1 -bmc ecology and evolution,2 -bmc evolutionary biology,2 -annales fennici mathematici,2 -minerva surgery,1 -forces in mechanics,0 -european thyroid journal,1 -environmental dna,1 -finnish journal of social research,1 -photoacoustics,2 -sibirskoe medicinskoe obozrenie,0 -journal of design thinking,1 -project-based education and other activating strategies in science education,0 -scandinavian sport studies forum,1 -environmental and sustainability indicators,1 -adapta,0 -matter,1 -res medica: journal of the royal medical society,0 -frontiers in communications and networks,1 -global business languages,0 -traitement du signal,1 -international journal of language & linguistics,0 -recherches en didactique des langues et des cultures,1 -american journal of preventive cardiology,1 -ieee open journal of intelligent transportation systems,1 -ieee open journal of the computer society,1 -hapsc policy briefs series,0 -"air, soil and water research",1 -journal of management science and engineering,1 -european journal of special education research,1 -acta kinesiologica,0 -human-machine communication journal,1 -gaoxiao jiaoyu guanli,0 -new diversities,1 -civil engineering and architecture,1 -mathematics and statistics,0 -universal journal of accounting and finance,1 -universal journal of agricultural research,0 -universal journal of public health,1 -longhua chinese medicine,0 -international journal of advanced biotechnology and research,0 -zhongguo gaodeng yixue jiaoyu,0 -zprávy lesnického výzkumu,0 -the ultrasound journal,1 -corpus mundi,0 -international journal of africa nursing sciences,1 -journal of energy and natural resource,0 -humanities & social sciences communications,1 -philosophy and the mind sciences,1 -journal of perspectives in management,0 -ieee open journal of power electronics,1 -"journal of geography, politics and society",1 -human-intelligent systems integration,1 -sacra scripta,1 -journal of islamic accounting and business research,1 -frontiers in virtual reality,1 -telecom,0 -the american economic review : insights,3 -the journal of financial data science,1 -med,1 -open ceramics,1 -hearts,0 -"ieee transactions on molecular, biological, and multi-scale communications",1 -bjpsych open,1 -diseases,1 -zeitschrift für hochschulentwicklung,0 -camera praehistorica,1 -italian sociological review,1 -ethnographic studies,1 -current pollution reports,1 -geohealth,1 -microbiology insights,0 -international journal of complexity in education,1 -journal of cinema and media studies,3 -human behavior and emerging technologies,1 -international journal of studies in education and science,1 -ikonomičeska misʺl,0 -iranian journal of nursing and midwifery research,0 -art & the public sphere,1 -economics of transition and institutional change,1 -journal of life economics,0 -animal microbiome,1 -uncertain supply chain management,0 -ukraïnsʹka akademìâ mistectva,0 -czech polar reports,1 -teaching ethics,1 -precollege philosophy and public practice,1 -international journal of kinesiology and sports science,0 -journal of visual political communication,1 -frontiers in computer science,1 -maǧallaẗ al-abḥāṯ al-handasiyyaẗ,0 -journal of micromechanics and molecular physics,1 -journal of earth sciences and geotechnical engineering,1 -european journal of therapeutics,0 -integers,1 -strategic change,1 -giornale italiano di cardiologia,0 -international journal of surgical oncology,0 -environmental and occupational health practice,0 -european journal of psychology open,1 -measurement instruments for the social sciences,1 -patterns,1 -text matters,1 -naturen,0 -gongcheng kexue xuebao,0 -frontiers in neuroergonomics,1 -arab journal of urology,0 -alexandria journal of medicine,1 -egyptian journal of anaesthesia,1 -water science,1 -jasa express letters,1 -sustainability and climate change,0 -reproduction & fertility,0 -gifted education international,1 -international journal of innovation in education,1 -international journal of veterinary sciences and medicine,0 -the journal of aging and social change,1 -avs quantum science,1 -nriag journal of astronomy and geophysics,0 -hbrc journal,0 -egyptian journal of basic and applied sciences,0 -rural landscapes,1 -legatio,1 -research in the mathematical sciences,1 -international journal of the sociology of leisure,1 -frontiers in remote sensing,1 -fermentation,1 -board game studies journal online,1 -european journal for the history of medicine and health,2 -advances in applied energy,1 -acs agricultural science & technology,0 -jurnal perspektif manajerial dan kewirausahaan,0 -contemporary challenges,0 -acm transactions on quantum computing,1 -espaces linguistiques,0 -smart energy,1 -ai and ethics,1 -person-centered & experiential psychotherapies,1 -pedagogia più didattica,1 -bjpsych advances,1 -kriminologia,1 -contrastive pragmatics,1 -nordic research in music education,1 -cleaner environmental systems,1 -cleaner and responsible consumption,1 -ipsera conference proceedings,0 -frontiers in conservation science,1 -current protocols,1 -higher education pedagogies,1 -encyclopaedia of islam three,0 -annals of tourism research empirical insights,1 -demis : demografičeskie issledovaniâ,0 -ippr progressive review,1 -access microbiology,0 -acta didactica norden,1 -acta médica portuguesa,0 -acta prosperitatis,0 -"advances in ancient, biblical, and near eastern research",1 -"uskonto, katsomus ja kasvatus",0 -veterinary medicine and science,1 -advances in operations research,0 -advances in redox research,0 -aforismos,0 -aggregate,0 -aims environmental science,1 -algae,1 -algebraic statistics,1 -american journal of nursing studies,0 -american journal of criminal justice,1 -anthropology news,0 -applied surface science advances,1 -architecture,0 -aqua,1 -artmargins,1 -asian journal of international law,0 -athena,1 -kylkirauta,0 -sexuologie,0 -journal of medieval iberian studies,1 -russian philology,0 -sexes,0 -animal bioscience,1 -annali di storia delle università italiane,1 -atlanti +,0 -atherosclerosis plus,1 -australian intellectual property journal,1 -biofilm,1 -bio integration,0 -clocks & sleep,1 -biotech,0 -comprehensive psychoneuroendocrinology,1 -dairy,0 -data intelligence,1 -diálogo com a economia criativa,0 -dimensions - journal of architectural knowledge,1 -european cardiology,1 -forecasting,0 -business perspectives and research,1 -case reports in hematology,0 -case reports in psychiatry,1 -ceas space journal,1 -case reports in pediatrics,1 -lubricants,1 -mai,0 -litteraria copernicana,1 -materials advances,1 -mediterranean journal of chemistry,0 -multimodality & society,0 -medical journal of the islamic republic of iran,0 -new space,1 -nordisk tidskrift för socioonomastik,1 -natural history sciences,0 -language in africa,0 -meat and muscle biology,1 -linha d'agua,1 -kidney cancer,1 -lege artis medicinae,0 -bi'gyo gyoyug yeon'gu,0 -kaku igaku,0 -legume science,1 -the journal of world christianity,1 -journal of physics : complexity,1 -journal of telecommunications and information technology,1 -tạp chí giáo dục kỹ thuật,0 -jphys energy,1 -images,1 -ieee open journal of signal processing,1 -ieee internet of things magazine,1 -higher education governance and policy,0 -global public policy and governance,1 -"international journal of decision sciences, risk and management",1 -international journal of food science,1 -"international journal of inspired education, science and technology",0 -international journal of lightweight materials and manufacture,1 -international journal of neonatal screening,1 -international journal of nonlinear analysis and applications,0 -bridge : trends and traditions in translation and interpreting studies,0 -bulletin de la société royale le vieux-liège,0 -bulletin of the new zealand society for earthquake engineering,0 -caminhos,0 -ccf transactions on pervasive computing and interaction,1 -ccs chemistry,1 -ceramics,1 -bulletin of the british ornithologists' club,0 -clele journal,1 -circular economy and sustainability,1 -cjc open,1 -cleaner logistics and supply chain,0 -clinical epidemiology and global health,0 -"clinical medicine insights : circulatory, respiratory and pulmonary medicine",1 -coincidentia,0 -collective dynamics,0 -computational and mathematical methods,1 -contemporary southeastern europe,1 -convivium,1 -corrosion and materials degradation,0 -critical care research and practice,1 -croatian international relations review,1 -current orthopaedic practice,1 -çedille,1 -disparidades,1 -research on steiner education,0 -review of corporate finance,1 -risk governance & control : financial markets & institutions,1 -rosa dos ventos,0 -revista de historia de la lengua española,1 -revista vagalumear,0 -africa research journal,1 -sanitation value chain,1 -prometeica,1 -plastičeskaâ hirurgiâ i èstetičeskaâ medicina,0 -prx quantum,2 -psychology in russia : state of the art,1 -psycho-educational research reviews,0 -pulse,1 -q open,1 -random matrices : theory and applications,1 -rassegna italiana di sociologia,1 -recherches en langue francaise,0 -remote sensing applications,1 -revista brasileira de física médica,0 -scroope,0 -sciences du jeu,1 -sensors international,0 -simmel studies,1 -runas : journal of education and culture,0 -revista portuguesa de engenharia de estruturas,0 -standpunkt : sozial,0 -socialʹno-političeskie issledovaniâ,0 -stratum plus,1 -neuphilologische mitteilungen,2 -african primates,0 -al-mağallaẗ,0 -alpine and mediterranean quaternary,1 -analize,1 -biological communications,1 -acc journal,0 -advanced nanobiomed research,1 -advances in neurodevelopmental disorders,1 -applied ai letters,1 -"brain, behavior, & immunity : health",1 -bulletin of education and research,0 -kavkazskij èntomologičeskij bûlletenʹ,1 -cell reports : methods,1 -clinics and practice,1 -current research in food science,1 -current research in structural biology,1 -dějiny-teorie-kritika,1 -development and learning in organizations,0 -environmental science : atmospheres,1 -food frontiers,1 -forestry research,0 -frontiers in blockchain,0 -frontiers in fungal biology,1 -frontiers in rehabilitation sciences,1 -future foods,1 -geoscience communication,1 -journal of development economics and finance,0 -journal of mathematics and statistical science,0 -journal of polymer science,1 -journal of systematic investing,1 -results in chemistry,1 -lancet regional health,0 -vietnam journal of mathematics,1 -wind energy science,1 -dianzi xuebao,0 -lancet microbe,1 -surface topography,1 -sae international journal of connected and automated vehicles,1 -journal of medical artificial intelligence,1 -advanced biology,1 -informatics,1 -plant health progress,1 -npj urban sustainability,1 -environmental research communications,1 -ecological solutions and evidence,1 -ecti transactions on computer and information technology,1 -electricity,1 -eurasian chemical communications,0 -future transportation,1 -ieee journal of emerging and selected topics in industrial electronics,1 -hand and microsurgery,0 -acs polymers au,1 -amazônica,1 -asian affairs,2 -"bmj surgery, interventions, & health technologies",1 -emerging markets case studies,0 -artha journal of social sciences,0 -cancer diagnosis & prognosis,0 -disabilities,1 -frontiers in sustainable cities,1 -frontiers in aging,1 -music and the moving image,1 -acs materials au,1 -acs nanoscience au,1 -acta geographica lodziensia,1 -acta medico-historica adriatica,1 -algebra i analiz,0 -annals of cardiothoracic surgery,0 -anthropology of work review,1 -archeostorie,1 -meno istorija ir kritika,1 -asian journal of university education,0 -astana medicinalyk̦ žurnaly,0 -austin journal of clinical cardiology,0 -beiträge zur hochschulforschung,0 -the bible translator,1 -biopolymers and cell,0 -brazilian journal of motor behavior,1 -ķaraġandy universitetìnìn̦ habaršysy : himiâ seriâsy,0 -cadmus,0 -cefr journal : research and practice,0 -international journal of social imaginaries,1 -revista brasileira de botânica,0 -materials research proceedings,0 -journal of insulin resistance,0 -the international journal of transpersonal studies,0 -journal of political economy microeconomics,1 -journal of political economy macroeconomics,1 -routledge open research,0 -the nordic journal of language teaching and learning,1 -stem education,0 -springerbriefs in philosophy,1 -curationis,0 -asian journal of sport and exercise psychology,1 -"journal of race, ethnicity and the city",1 -neuroimage : reports,1 -journal of clinical and medical images case reports,0 -visual informatics,1 -sustainable horizons,1 -journal of psychedelic studies,0 -brain multiphysics,1 -journal of critical mixed race studies,0 -survive & thrive,0 -kio daigaku kiyo,0 -geoenergy science and engineering,1 -springerbriefs in business,1 -springerbriefs in religious studies,1 -springerbriefs in political science,1 -journal of micro- and nano-manufacturing,1 -kirjallisuusterapia,0 -ieee international conference on condition monitoring and diagnosis,1 -annals of pediatric surgery,0 -artl@s bulletin,1 -astronomy and computing,1 -biological psychiatry global open science,1 -canadian food studies,0 -cannabis and cannabinoid research,1 -cardiology plus,0 -childhood vulnerability journal,0 -current opinion in biomedical engineering,1 -current research in ecological and social psychology,1 -frontiers in clinical diabetes and healthcare,0 -han'gug ga'jeong'gwa gyoyug haghoeji,0 -studies on contemporary asia,0 -frontiers in control engineering,1 -rusistika bez granici,0 -proceedings : euromicro conference on digital system design,1 -clinics in shoulder and elbow,1 -acta polytechnica,1 -frontiers in research metrics and analytics,0 -ieee journal on miniaturization for air and space systems,1 -arcs 2 international law briefing paper series,0 -asian journal of transfusion science,0 -base,1 -"bleeding, thrombosis and vascular biology",0 -bmj health & care informatics,1 -central european journal of comparative law,1 -critical stages,1 -current research in translational medicine,1 -cvir endovascular,1 -strani pravni život,1 -ieee open journal of control systems,1 -in vitro models,0 -innovare journal of education,0 -international journal of educational methodology,1 -dewey studies,1 -frontiers in electronics,1 -indian journal of environmental protection,0 -intelligent systems with applications,1 -international cybersecurity law review,1 -international journal for information security research,1 -international journal of film and media arts,1 -springerbriefs in criminology,1 -springerbriefs in astronomy,1 -springerbriefs in well-being and quality of life research,1 -springerbriefs in economics,1 -springerbriefs in complexity,1 -springerbriefs in mathematical physics,1 -springerbriefs in statistics,1 -springerbriefs in computer science,1 -springerbriefs in molecular science,1 -springerbriefs in electrical and computer engineering,1 -wearable technologies,1 -stroke and vascular neurology,1 -software impacts,1 -schizophrenia,1 -plos digital health,0 -photochem,1 -polish journal of english studies,1 -relational social work,1 -rivista geografica italiana,0 -international journal of interdisciplinary research and innovations,0 -international journal of sustainable fashion and textiles,1 -international online journal of education and teaching,0 -international productivity monitor,0 -isme communications,1 -israel journal of entomology,0 -jiaotong yunshu gongcheng xuebao,0 -jisuanji xuebao,0 -studia ceranea,0 -sentio,0 -tencon ieee region ten conference,0 -american journal of ophthalmology : case reports,1 -cells and development,1 -coj technical & scientific research,0 -dizhi xuebao,0 -gv executivo,0 -international journal of evaluation and research in education,1 -international legal materials,1 -jmir pediatrics and parenting,1 -journal for ethics in antiquity and christianity,0 -journal of aerospace technology and management,0 -journal of african languages and literatures,1 -journal of aging and environment,1 -journal of analytical science & technology,0 -"the international journal of social, political and community agendas in the arts",1 -munhwa gwan'gwang yeon'gu,0 -ežegodnik finno-ugorskih issledovanij,1 -vestnik tomskogo gosudarstvennogo universiteta,0 -studia litterarum,1 -the harvard review of philosophy,0 -bulletin of emergency and trauma,0 -cardiovascular digital health journal,1 -comparative law review,1 -international journal of data and network science,1 -codex manuscriptus,0 -journal of applied artificial intelligence,0 -journal of applied linguistics and lexicography,0 -munhwayesulgyeong-yeonghagyeon-gu,0 -"journal of astronomical telescopes, instruments, and systems",1 -journal of clinical case reports,0 -journal of computer languages,1 -journal of computers in education,1 -the journal of continental philosophy,1 -journal of creative industries and cultural studies,1 -journal of creativity,0 -journal of data analysis and information processing,0 -journal of design for resilience in architecture and planning,1 -journal of medical imaging and radiation sciences,1 -su ürünleri dergisi,0 -przegląd statystyczny,0 -"revista de arheologie, antropologie şi studii interdisciplinare",1 -journal of multimorbidity and comorbidity,1 -journal of wound management,1 -lilloa,0 -molbank,0 -nasleđe,1 -scandinavian journal of sport and exercise psychology,0 -spal,1 -studia europejskie,1 -rodriguésia,1 -gvcasos,0 -teoriâ mody,1 -revista digital de políticas lingüísticas,0 -scholé,0 -revue d'histoire contemporaine de l'afrique,1 -radical housing journal,0 -revue de l'entrepreneuriat,1 -relay journal,0 -journal of ophthalmic and vision research,1 -journal of open psychology data,0 -retos,0 -royal institute of philosophy supplement,0 -periférica,0 -sozialpolitik.ch,0 -royal studies journal,1 -orientalistica,1 -vietnam journal of science and technology,0 -scientific annals of computer science,0 -science talks,0 -scenari,1 -sankhya series b,1 -revue d'études autochtones,1 -revista brasileira de enfermagem,0 -journal of enabling technologies,1 -journal of electrochemical science and engineering,1 -itinerari,1 -journal of ethics in entrepreneurship and technology,1 -journal of optical microsystems,1 -journal of preventive medicine and hygiene,0 -journal of patient safety and risk management,1 -journal of research in technical careers,0 -journal of the american college of emergency physicians open,1 -journal of sustainable agriculture and environment,0 -jtcvs open,1 -marketing,1 -ought,1 -nanjing linye daxue xuebao,0 -journal of the oxford graduate theological society,0 -acta academiae beregsasiensis : philologica,0 -archives of craniofacial surgery,1 -journal of membrane science and research,1 -journal of nutrition and food security,0 -journal of pollution effects & control,0 -journal of the american academy of orthopaedic surgeons : global research & reviews,1 -nottingham insolvency and business law e-journal,1 -east-west studies,1 -nature aging,1 -nordic journal of rehabilitation,0 -oida international journal of sustainable development,1 -northeast african studies,0 -revista de medicina y cine,1 -revista brasileira de educação ambiental,0 -nmims management review,0 -neuromorphic computing and engineering,1 -membrana,1 -memorias del instituto de investigaciones en ciencias de la salud,0 -bio-based and applied economics,1 -food chemistry advances,1 -frontiers in sensors,0 -international journal of sustainable materials and structural systems,1 -npj biodiversity,1 -movie,1 -management dynamics,0 -neotropical biology and conservation,1 -medizinische genetik,0 -journal of pipeline science and engineering,1 -journal of energy and power technology,0 -language education and multilingualism,0 -journal of transport and supply chain management,0 -legal pluralism and critical social analysis,1 -open journal of stomatology,0 -journal of social and economic development,1 -kongzhi lilun yu yingyong,0 -osteuropa-recht,0 -livers,0 -orizonturi teologice,0 -the neuroradiology journal,1 -"memini, travaux et documents",0 -neuroanatomy and behaviour,0 -materials futures,0 -neuropsychopharmacology reports,0 -north american spine society journal,1 -orbis scholae,0 -hoppo gengo kenkyu,0 -pedagogiek,0 -plant diversity of central asia,0 -quaderni lupiensi di storia e diritto,1 -european burn journal,1 -global health journal,0 -journal of psychiatry studies,0 -machine learning with applications,1 -lasers in dental science,1 -journal of prevention,1 -geofizičeskie issledovaniâ,0 -materials today nano,1 -identities,0 -journal of the british academy,0 -mare nostrum,0 -perspectives missionnaires,0 -politické vedy,1 -revista crítica de ciências sociais,1 -rivista di digital politics,1 -"scars, burns & healing",1 -smart agricultural technology,1 -global journal of business pedagogy,1 -journal of youth development,0 -art inquiry,1 -etnografie sonore/ sound ethnographies,1 -indian journal of marketing,1 -tarbiyat badanī va ̒ulūm-i varzishī,0 -salāmat va varzish : rūykard/hā-yi nuvīn,0 -oecologia australis,1 -adolescent research review,0 -"aquaculture, fish and fisheries",1 -businesses,0 -carbon neutrality,0 -"proceedings of the international scientific conference ""strategies xxi""",0 -glossa,0 -jinkou chinou gakkai zenkoku taikai rombunshuu,0 -vcot open,0 -ukrainian mathematical bulletin,1 -the bottom line,1 -"sport, business and management",1 -socìologìčnì studìï,0 -sciencerise : pharmaceutical science,0 -recent advances in anti-infective drug discovery,0 -shidai faxue,0 -one health,1 -medical sciences forum,0 -macroeconomics and finance in emerging market economies,1 -kmi international journal of maritime affairs and fisheries,1 -boletín de la sociedad española de espeleología y ciencias del karst,0 -yejing yu xianshi,0 -bioinformatics advances,1 -biointerface research in applied chemistry,0 -aalitra review,0 -central asian economic review,0 -habaršy - a̋l-farabi atyndag̣y k̦azak̦ memlekettik ụlttyk̦ universiteti : himiâ seriâsy,0 -dangdai jiaoyu yanjiu jikan,0 -contesti,0 -discover psychology,0 -engineering and applied science research,1 -environmental challenges,1 -beijing international review of education,1 -case reports in genetics,0 -exploration of neuroscience,0 -hygiene,0 -immuno-oncology technology,1 -industrial engineering and management systems,1 -geochronology,1 -international journal of business and society,0 -journal of education and health promotion,0 -international journal of plant biology,1 -jordan journal of biological sciences,0 -journal of ageing and longevity,0 -journal of hazardous materials advances,1 -journal of molecular and cellular cardiology plus,0 -journal of osteopathic medicine,1 -journal of social computing,1 -medien & altern,0 -polymers from renewable resources,1 -primenjena psihologija,0 -revista abya yala,1 -scipost physics codebases,0 -sociodinamika,0 -textiles,0 -"training, language and culture",1 -the evolving scholar,0 -carbon research,0 -cardiac failure review,1 -environmental health insights,1 -frontiers in molecular medicine,0 -frontiers in nanotechnology,1 -indian journal of natural products and resources,0 -international journal of food contamination,1 -food safety and risk,1 -international journal of literature and arts,0 -intestinal research,1 -jmir nursing,1 -journal of chromatography open,1 -"vestnik severo-vostočnogo federalʹnogo universiteta imeni m.k. ammosova seriâ ""nauki o zemle""",0 -yingyong xinlixue,0 -social construction,0 -tájökológiai lapok,0 -journal of adult education,0 -international journal of education,1 -mūzikas akadēmijas raksti,0 -paperbark,0 -east asian journal of philosophy,1 -journal of conflict transformation,0 -sosiaali- ja terveysalan tilastollinen vuosikirja,0 -päihdetilastollinen vuosikirja,0 -proceedings (ieee international conference on healthcare informatics),1 -"ieee international conference on software quality, reliability and security",1 -transactions : geothermal resources council,0 -ict4awe,0 -cern-proceedings,0 -bnam,0 -bio web of conferences,0 -icas proceedings,0 -global nest international conference on environmental science & technology,0 -nihon kagaku kyoiku gakkai nenkai ronbunshu,0 -proceedings (fig international congress),0 -digest of technical papers : symposium on vlsi technology,1 -proceedings of the ieee international conference on services computing,1 -international congress on acoustics,0 -proceedings (international congress on project management and engineering),0 -international journal of network dynamics and intelligence,0 -a móra ferenc múzeum évkönyve,0 -proceedings of the australasian language technology workshop,1 -report series in aerosol science,0 -al-ʻuṣūr al-wusṭá,1 -sociologia e ricerca sociale,0 -mean streets,0 -just,1 -aula abierta,0 -ankara üniversitesi veteriner fakültesi dergisi,1 -child neurology open,1 -st andrews encyclopaedia of theology,1 -biomedical technology,0 -consumption and society,1 -data science for transportation,1 -elight,1 -encuentro,0 -historical life course studies,1 -hydrobiology,1 -international journal of business and applied social science,0 -international journal of electrical and computer engineering,1 -international journal of intelligent robotics and applications,1 -international journal of wood culture,1 -"journal of activity, sedentary and sleep behaviors",1 -journal of engineering and applied science,0 -journal of nuclear engineering,1 -journal of reconstructive microsurgery open,1 -the latin american journal of aquatic mammals,1 -revista complutense de educación,0 -educere et educare,0 -signal transduction and targeted therapy,1 -ukraì̈nsʹkiĭ antarktičniĭ žurnal,1 -elements on women in the history of philosophy,1 -shiga daigaku kyoiku gakubu kiyo,0 -international journal of criminal justice,1 -journal of human trafficking,1 -"journal of late antique, islamic and byzantine studies",0 -international journal of the analytic hierarchy process,1 -coronaviruses,0 -revista latina de comunicación social,1 -informatika i avtomatizaciâ,1 -vesitalous,0 -research in mathematics,1 -"journal of human trafficking, enslavement and conflict-related sexual violence",1 -anti trafficking review,1 -kochi daigaku kyoiku gakubu kenkyu hokoku,0 -chairudo herusu,0 -pluteus,0 -riforma e movimenti religiosi,0 -"psychology, learning & teaching",1 -oto open,1 -advanced composites and hybrid materials,1 -innovation & management review,0 -built heritage,1 -transactions on machine learning research,1 -the art of discrete and applied mathematics,1 -virtual worlds,1 -k:on,0 -npj science of learning,1 -acta criminologica,0 -digital transformation and society,1 -european journal of inclusive education,0 -energy storage,1 -next materials,0 -ieee nanotechnology magazine,1 -open information science,1 -romchip,0 -journal of librarianship and scholarly communication,1 -"journal of economics, theology and religion",1 -internet of things and cyber-physical systems,1 -studia poradoznawcze,0 -trauma case reports,0 -matter and radiation at extremes,1 -journal of securities operations & custody,0 -teaching and learning in nursing,1 -computers & education : x reality,1 -second language teacher education,0 -sn business & economics,1 -international journal of bioprinting,1 -international journal of robotics and control systems,1 -journal of computational literary studies,0 -journal of impact and esg investing,0 -colombia forestal,0 -bjgp open,1 -frontiers in environmental economics,0 -critical internationalization studies review,0 -acta poenologica,0 -ceas insights,0 -raportteja ja työpapereita (koulutuksen tutkimuslaitos),0 -journal of case reports in medicine,0 -safety & reliability,1 -peregrinations,0 -international journal of education technology and science,0 -journal of chemistry and technologies,0 -riffs,0 -advances in rehabilitation,0 -world medical & health policy,1 -yearbook of muslims in europe,0 -internationale psychoanalyse,0 -childhood obesity,1 -qeios,0 -international journal of inventory research,1 -jbi evidence implementation,1 -nature reviews : materials,1 -journal of market access & health policy,1 -"revista de internet, derecho y política",1 -asian journal of comparative politics,1 -current issues in sport science,1 -jyu studies,0 -highlights of sustainability,1 -sohag journal of sciences,0 -international journal of islamic and middle eastern finance and management,1 -journal of organizational sociology,0 -carbon capture science & technology,0 -journal of public finance and public choice,0 -microplastics and nanoplastics,0 -the journal of inclusive practice in further and higher education,0 -beiträge zur lehrerinnen- und lehrerbildung,1 -heti journal : international research and practice,0 -international journal of aquatic biology,1 -vaccimonitor,0 -jmir medical education,1 -international journal of oceanography & aquaculture,0 -discover education,0 -nature water,1 -international journal of population studies,1 -apria,1 -bone & joint open,1 -cleaner and circular bioeconomy,0 -small structures,1 -global philosophy,1 -nordic journal of wellbeing and sustainable welfare development,0 -heart and mind,0 -proceedings of the northern lights deep learning workshop,1 -christian perspectives on science and technology,1 -dpce online,1 -respectus philologicus,1 -merits,0 -"age, culture, humanities",1 -journal of controversial ideas,1 -the journal of cross-disciplinary research in computational law,1 -nordisk tidsskrift for ungdomsforskning,1 -imaging neuroscience,0 -international journal of european studies,0 -journal of sustainable marketing,1 -contextes et didactiques,0 -geoenergy,0 -indes,0 -earth and planetary physics,1 -matrix,0 -journal of engineering science & technology,1 -theatralia,1 -business information review,0 -pedagogika,0 -journal of eating disorders,1 -european heart journal : imaging methods and practice,1 -international journal of computational science and engineering,1 -journal of ecohumanism,1 -umanistica digitale,1 -recherches sociologiques et anthropologiques,0 -vehits,0 -solar compass,0 -migration & diversity,0 -transnational education review,0 -didaktik der physik,0 -acm transactions on asian and low-resource language information processing,1 -asiascape,1 -autophagy reports,0 -belgian journal of entomology,0 -apocalyptica,0 -neurotrauma reports,1 -journal of the society for cardiovascular angiography & interventions,1 -biomedical materials & devices,0 -biomedinformatics,1 -bmj medicine,1 -zhongguo shiyong huli zazhi,0 -contemporary levant,1 -current research in biotechnology,1 -data & policy,1 -digital chemical engineering,0 -frontiers in the internet of things,0 -nigata daigaku koto kyoiku kenkyu,0 -decision analytics journal,1 -dental press journal of orthodontics,1 -ecomat,1 -environmental research : climate,1 -epidemiologia,0 -european journal of transformation studies,1 -harvard kennedy school misinformation review,0 -health and environment,0 -international journal emerging technology and advanced engineering,0 -international journal of food design,1 -international journal of nursing education,0 -international journal of surgery protocols,0 -"international journal of technology, innovation and management",0 -jgh open,1 -ieee 5g world forum,1 -journal of road safety,1 -opennano,1 -sensors & diagnostics,0 -surgeries,1 -joelho,1 -journal of advanced research in applied sciences and engineering technology,0 -acta semiotica,0 -journal of global education and research,0 -journal of multiscale neuroscience,0 -the journal of pediatrics x,1 -han-guk cheoldo hakoe nonmunjip,0 -journal of the world federation of orthodontists,1 -journal of translational genetics and genomics,0 -"multiple sclerosis journal, experimental, translational and clinical",1 -a-klinikkasäätiö : tutkimussarja,1 -nano-structures & nano-objects,1 -nealt monograph series,0 -neuro-oncology advances,1 -nuova secondaria,0 -okinawan journal of island studies,0 -phytomedicine plus,1 -pirotski zbornik,0 -policing,1 -prabandhan : indian journal of management,0 -prism,0 -quaderni di lavoro asit,0 -scientific journal of gdynia maritime university,0 -scipost physics core,1 -srpska revija za evropske studije,1 -súmula,0 -proceedings : international conference on industrial & mechanical engineering and operations management,0 -proceedings of the international conference on tourism research,0 -court historian,1 -"visual computing for industry, biomedicine, and art",1 -journal of medical education,0 -materials science in additive manufacturing,1 -wseas transactions on information science and applications,0 -atlantis highlights in engineering,1 -environmental science & ecotechnology,1 -applied mathematics in science and engineering,1 -käypä hoito,1 -child and adolescent obesity,1 -european social work research,0 -international medical education,0 -timing & time perception,0 -geomechanics and geophysics for geo-energy and geo-resources,1 -journal of islamic thought and civilization,1 -al-iḍaḥ,0 -cities and the environment,0 -energy and ai,1 -estudos de lingüística galega,1 -sexual health,0 -bmj mental health,1 -geographies,0 -family medicine & primary care review,0 -acta zoológica mexicana,1 -seminars in plastic surgery,1 -revista facultad nacional de agronomía medellín,1 -international journal of abdominal wall and hernia surgery,1 -discover mechanical engineering,1 -rhizosphere,1 -developments in the built environment,1 -international journal of social determinants of health and health services,1 -ssm : mental health,0 -jmir ai,1 -prx energy,0 -natural language processing journal,0 -numl international journal of engineering and computer sciences,0 -ieee transactions on machine learning in communications and networking,1 -agriengineering,1 -reviews on recent clinical trials,1 -asian journal for mathematics education,0 -epigenetics communications,0 -eai endorsed transactions on artificial intelligence and robotics,1 -bmc complementary medicine and therapies,1 -human geography,1 -the review of socionetwork strategies,0 -klēsis,0 -computer law review international,1 -australian & international journal of rural education,0 -tzintzun : revista de estudios históricos,1 -journal of global business insights,1 -sae international journal of electrified vehicles,0 -journal of electronic gaming and esports,0 -journal of open aviation science,0 -feedback,0 -covid,0 -advances in rehabilitation science and practice,0 -african journal of rural development,0 -bruno pini mathematical analysis seminar,0 -children's literature,1 -computers in human behavior : artificial humans,0 -creative industries journal,1 -de jure,1 -digital economy and sustainable development,0 -ecs sensors plus,0 -èkonomičeskaâ politika,0 -"endocrine, metabolic & immune disorders : drug targets",1 -entreprendre & innover,0 -muṭāli̒āt-i barnāmah/rīzī-yi āmūzishī,0 -meandros medical and dental journal,0 -meitian dizhi yu kantan,0 -kidney360,1 -frontiers in environmental archaeology,0 -future journal of social sciences,0 -gene reports,1 -genetic resources,1 -global environmental change advances,1 -the international journal of aerospace psychology,1 -international journal of geosynthetics and ground engineering,1 -majallah-i āmūzish-i muhandisī-i īrān,0 -jeadv clinical practice,0 -the journal of educators online,0 -mudīriyyat va barnāmah/rīzī dar niẓām/hā-yi āmūzishī,0 -journal of social and political philosophy,1 -the journal of software for algebra and geometry,0 -kārā/fan,0 -letters in high energy physics,1 -middle east law and governance,1 -new american studies journal,1 -nuovi annali della scuola speciale per archivisti e bibliotecari,0 -polish yearbook of international law,1 -pulmonology,1 -suchttherapie,0 -international yeats studies,1 -modeling earth systems and environment,1 -rāhburd-i farhangī va ijtimā̒ī.,0 -capacious,1 -studia universitatis babeş-bolyai : theologia catholica latina,1 -vestnik slavânskih kulʹtur,1 -zapiski historyczne,1 -habaršysy : èkonomika seriâsy,0 -adv. photonics nexus,1 -diagnostic histopathology,0 -nano research energy,0 -nanofabrication,1 -revue forestière française,0 -asia pacific translation and intercultural studies,1 -environmental advances,1 -journal of safety and sustainability,0 -interspeech,1 -urban informatics,1 -intelligence-based medicine,0 -relaciones internacionales,1 -advances.in/psychology,0 -palladio,0 -aerosol research,1 -histories of people and place,1 -acta biologica universitatis daugavpiliensis,1 -social psychological bulletin,1 -bmc digital health,0 -ieee international conference on wireless for space and extreme environments conference digest,1 -journal of openness commons & organizing,0 -elements in the philosophy of religion,1 -international symposium on magnetic bearings,1 -international conference on educational data mining,1 -ieee international conference on robotics and automation,2 -composites and advanced materials,1 -elements in publishing and book culture,1 -ieee microwave and wireless technology letters,2 -beth bulletin,0 -philosophy of the city journal,0 -carbon footprints,0 -international journal of applied and computational mathematics,1 -digital discovery,1 -aperture neuro,0 -neuroprotection,0 -bmj leader,1 -women and children nursing,0 -journal of pre-college engineering education research,1 -telematics and informatics reports,1 -ìnformacìjnì tehnologìï ì zasobi navčannâ,0 -patrimônio e memória,1 -annals of mathematical sciences and applications,1 -hydrogen,1 -australasian conference on robotics and automation,0 -quality in ageing and older adults,1 -"international journal of music science, technology and art",1 -journal of research on leadership education,0 -bmj public health,0 -ask,1 -ieee international conference on edge computing,1 -"advances in economics, management and political sciences",0 -global labour journal,1 -open mind,1 -journal of family business management,1 -"journal of occupational therapy, schools & early intervention",0 -journal of intensive medicine,1 -materials open research,0 -boletim do museu paraense emílio goeldi : ciências humanas,1 -charrette,1 -nature mental health,1 -geriatrics,1 -hiperboreea,1 -forum kinder- und jugendsport,0 -"american journal of obstetrics & gynecology, maternal-fetal medicine",1 -sustainable manufacturing and service economics,0 -npj climate action,1 -revue francophone des sciences de l'information et de la communication,1 -technology and regulation,1 -ore and energy resource geology,1 -korea europe review,1 -fire ecology,1 -circular economy,1 -engineering proceedings,0 -law in context,1 -"law, technology and humans",1 -"journal of business, communication and technology",1 -advances in sciences and technology,0 -acm transactions on recommender systems,1 -international journal of designs for learning,0 -journal for reproducibility in neuroscience,0 -carbohydrate polymer technologies and applications,1 -acs es&t water,1 -advanced sensor research,0 -advances in aerospace science and technology,0 -all earth,1 -allpanchis,1 -proceedings : information theory workshop,0 -menadžment u hotelijerstvu i turizmu,1 -educational linguistics,0 -neurodiversity,0 -journal of design and textiles,0 -ieee journal of indoor and seamless positioning and navigation,1 -politics of the low countries,1 -"gosudarstvo, religiâ, cerkovʹ v rossii i za rubežom",0 -proceedings : ieee international conference on program comprehension,1 -optoelectronics and communications conference,1 -mediterranean conference on embedded computing,1 -sess report,1 -refereed proceedings : tcc worldwide online conference,0 -viestin,0 -international congress on advanced electromagnetic materials in microwaves and optics,0 -global energy law and sustainability,1 -revista do caap,0 -international journal of cardiology: cardiovascular risk and prevention,1 -revista stultifera,0 -aurea parma,0 -libri & documenti,0 -epistolographia,0 -acm communications in computer algebra,0 -acta hydrologica slovaca,1 -adcomunica,1 -andragoška spoznanja,0 -applied mathematics for modern challenges,1 -arei : journal for central and eastern european history and politics,1 -asian pacific journal of tropical biomedicine,0 -bahastra,0 -biomimetics,0 -amta proceedings,1 -boletin de investigaciones marinas y costeras,1 -comparative population studies,1 -cambridge prisms : extinction,0 -chinese journal of mechanical engineering : additive manufacturing frontiers,0 -commodities,0 -current opinion in supportive and palliative care,0 -energychem,1 -makelearn series,0 -terminology science & research,1 -"the heppsinki working papers on emotions, populism and polarisation",0 -tidsskrift for boligforskning,0 -forensic science international: animals and environments,0 -light: advanced manufacturing,1 -journal of road engineering,1 -luyou xuekan,0 -conference on lasers & electro-optics europe & international quantum electronics conference,1 -international conference on clean electrical power,0 -conference proceedings : international conference on unmanned aircraft systems,1 -journal of the turkish chemical society section a : chemistry,0 -media and intercultural communication : a multidisciplinary journal,1 -nordic review of international studies,1 -research and review journal of nondestructive testing,0 -international journal on applied physics and engineering,0 -local development & society,1 -targum,0 -jim : jornal de investigação médica,1 -obzornik zdravstvene nege,0 -prague medical report,0 -journal of evidence-based social work,1 -journal of groundwork cases and faculty of judgement,0 -"journal of frailty, sarcopenia and falls",0 -journal of infrastructure preservation and resilience,1 -journal of southeast asian american education & advancement,0 -journal of space safety engineering,1 -shehui gongzuo yu guanli,0 -"journal of surveillance, security and safety",1 -k̦araġandy universitetinin̦ habaršysy : filologiâ seriâsy,0 -journal of the international qur'anic studies association,1 -jurnal teknologi hasil pertanian,0 -proceedings : ieee international working conference on source code analysis and manipulation,1 -ieee nanotechnology materials and devices conference,1 -journal of cme,1 -esaim : mathematical modelling and numerical analysis,2 -eastern european holocaust studies,0 -perhe- ja pariterapialehti,0 -journal of financial literacy and wellbeing,0 -die pathologie,0 -possibility studies and society,0 -classica vox,1 -theriogenology wild,1 -chronic diseases and translational medicine,1 -semiotika,1 -annales henri lebesgue,1 -journal of systems research,1 -vibration,1 -agrofor,1 -american entomologist,0 -"annual review of control, robotics, and autonomous systems",1 -bulletin of faculty of physical therapy,1 -carbon letters,1 -"cerebral circulation, cognition and behavior",1 -china report,1 -zhongguo anquan kexue xuebao,0 -zhongguo quanke yixue,0 -communications psychology,0 -core,1 -critical studies in teaching and learning,0 -cuadernos de filología italiana,1 -de europa,1 -design for health,1 -dwi-jahrbuch,0 -digital biomarkers,1 -discover mental health,1 -discover water,1 -"diy, alternative cultures & society",1 -"drugs, habits and social policy",1 -ecocene : cappadocia journal of environmental humanities,1 -european journal of contemporary education,0 -european journal of mathematics and science education,0 -european journal of musicology,1 -fabrica litterarum polono-italica,1 -family & law,1 -eng,1 -forum sociológico,1 -frontiers in signal processing,1 -geus bulletin,1 -rock mechanics bulletin,0 -hito to shizen,0 -microbiology research,0 -hungarian yearbook of international law and european law,1 -medieval sermon studies,1 -"ieee transactions on energy markets, policy and regulation",1 -neurological research and practice,1 -obstetrics and gynecology international,1 -open psychology,0 -orthopedic research and reviews,1 -infectious diseases now,1 -ingeniare : revista chilena de ingeniería,0 -therapeutic advances in hematology,1 -ohio journal of science,0 -namibia journal of social justice,0 -interdisciplinary cardiovascular and thoracic surgery,1 -international journal of clinical trials,0 -international journal of educational research open,0 -international journal of engineering research in computer science engineering,1 -international journal of food studies,1 -international journal of higher education pedagogies,0 -international journal of islamic banking and finance research,0 -international journal of multidisciplinary research configuration,0 -iranian journal of materials science and engineering,1 -the iranian yearbook of phenomenology,0 -habaršy : zan̦ seriâsy,0 -bulgarian astronomical journal,0 -journal of biomedical engineering and biosciences,0 -journal of food safety and hygiene,0 -liver cancer,1 -methane,0 -research on biomedical engineering,0 -sinergie,0 -skyline business journal,0 -stroke : vascular and interventional neurology,1 -vietnam journal of earth sciences,1 -physiologia,1 -journal of choice modelling,1 -journal of criminology,1 -journal of education and practice,0 -journal of information and knowledge,0 -journal of water technology and treatment methods,0 -compdyn proceedings,0 -conference on cloud and internet of things,1 -bja open,1 -contra narrativas,0 -"journal of ai, robotics & workplace automation",0 -journal of pentecostal and charismatic christianity,1 -mağallaẗ al-buḥūṯ al-taqniyyaẗ,0 -low-carbon materials and green construction,0 -modelling,0 -new sociological perspectives,0 -oncurating,0 -onomástica desde américa latina,0 -work in the global economy,1 -veins and lymphatics,0 -umweltpsychologie,0 -yükseköğretim dergisi,0 -tourism cases,0 -surgery in practice and science,1 -journal of economic asymmetries,1 -th open,1 -temes de disseny,1 -akhlāq dar ̒ulūm va fannāvarī,0 -talanta open,1 -studia religiosa rossica: naučnyj žurnal o religii,0 -studia linguistica romanica,1 -strides in development of medical education,0 -stem cell reviews and reports,1 -southeast asia,0 -south african journal of information management,1 -sinergi : jurnal ilmiah fakultas teknik,0 -shanghai jiaotong daxue xuebao,0 -scientific papers series d : animal science,1 -scientific drilling,1 -"sae international journal of vehicle dynamics, stability, and nvh",1 -s: i. m. o. n.,1 -revue des affaires européennes,0 -revue d'histoire du protestantisme,0 -renote,0 -revista diálogos,1 -replika,0 -puntoorg,1 -public history weekly,0 -prospectiva,0 -progress in biomedical engineering,1 -pragmatic and observational research,1 -population & sociétés,0 -pielęgniarstwo polskie,0 -revista vasca de gestión de personas y organizaciones públicas,1 -performance matters,1 -p-e-r-f-o-r-m-a-n-c-e,1 -otessa journal,0 -neuroscience applied,1 -acta universitatis de carolo eszterházy nominatae : sectio linguistica hungarica,0 -antimicrobial stewardship & healthcare epidemiology,1 -future in educational research,0 -ijid regions,0 -jacc : advances,1 -il naturalista siciliano,0 -journal of endovascular resuscitation and trauma management,1 -journal of allergy and clinical immunology : global,1 -journal of language and culture,1 -frontiers in radiology,1 -journal of philanthropy and marketing,1 -journal of applied economic research,0 -naharaim,1 -nelumbo : bulletin of the botanical survey of india,0 -colloquium,0 -jeten,1 -appliedmath,0 -connexe,1 -consortium psychiatricum,1 -consumer behavior in tourism and hospitality,1 -critical care explorations,1 -dialogue and universalism,1 -diciottesimo secolo,1 -didáctica geográfica,0 -doklady nacionalʹnoj akademii nauk belarusi,0 -eai endorsed transactions on creative technologies,1 -earth`s cryosphere,0 -edukacja międzykulturowa,0 -encyclopedia of the bible and its reception,1 -energy nexus,1 -tilastoraportti,0 -engineered regeneration,0 -environmental and climate technologies,1 -environmental epidemiology,1 -eracle,0 -estudios de historia moderna y contemporánea de méxico,1 -eu law live,0 -european journal for qualitative research in psychotherapy,1 -european journal of alternative education studies,0 -european journal of cultural management and policy,1 -european journal of stem education,0 -folia historiae artium,1 -fronteiras,1 -frontiers in human dynamics,0 -frontiers in insect science,1 -frontiers in medical technology,1 -frontiers in neurorobotics,1 -frontiers in health services,0 -frontiers in reproductive health,0 -frontiers of neurology and neuroscience,1 -annals of case reports,0 -archives of clinical trials,0 -avar,1 -korporativnoe upravlenie i innovacionnoe razvitie èkonomiki severa,0 -current research in physiology,1 -educational research,0 -epilepsy & behavior reports,1 -exploratory research in clinical and social pharmacy,1 -gemmae,1 -genesis,1 -georgetown journal of international affairs,0 -giustizia,1 -gi forum,0 -grammateion,0 -elthe ellīnikī periodikī ekdosī gia tī thrīskeutikī ekpaideusī,0 -groningen journal of international law,1 -"acta technica napocensis : series applied mathematics, mechanics and engineering",0 -annals of 3d printed medicine,1 -bulletin of atmospheric science and technology,1 -analiz riska zdorovʹû,0 -hospital pediatrics,1 -hgg advances,1 -human microbiome journal,0 -"idrott, historia och samhälle",1 -ieee journal of microwaves,1 -ieee open journal of the industrial electronics society,1 -ieee open journal of vehicular technology,1 -ieee revista iberoamericana de tecnologias de aprendizagem,0 -ieee transactions on technology and society,1 -indian chemical engineer,0 -indonesian journal of electrical engineering and informatics,0 -infection prevention in practice,1 -infectious disorders : drug targets,1 -le infezioni in medicina,0 -information geometry,1 -hongwai yu jiguang gongcheng,0 -inovacije u nastavi,0 -insecta mundi,0 -instruments,1 -interactional linguistics,0 -the international journal of virtual reality,1 -mezinárodní a srovnávací právní revue,1 -international journal of 3d printing technologies and digital industry,0 -international journal of adult education and technology,1 -international journal of applied engineering and technology,0 -international journal of bipolar disorders,1 -international journal of business management and economic review,0 -international journal of clinical and experimental medical sciences,0 -international journal of critical illness and injury science,1 -the international journal of design education,1 -international journal of environmental policy and decision making,1 -the international journal of gastroenterology and hepatology diseases,0 -international journal of nursing and health care research,1 -international journal of online and biomedical engineering,1 -international journal of politic and security,0 -international journal of social entrepreneurship and innovation,1 -international journal of social policy and education,0 -international journal of thermofluids,0 -international journal of integrating technology in education,0 -international peacekeeping,1 -international politics reviews,1 -international research in early childhood education,0 -iob discussion papers,0 -isprs open journal of photogrammetry and remote sensing,1 -italian botanist,1 -italian journal of educational technology,0 -izvestiâ vysših učebnyh zavedenij : lesnoj žurnal,0 -crítica penal y poder,1 -radical criminology,1 -studi sulla questione criminale,1 -"journal of contemporary crime, harm, and ethics",1 -"e-prime : advances in electrical engineering, electronics and energy",1 -groundwater for sustainable development,1 -international journal of asian christianity,1 -ja clinical reports,1 -jacs au,1 -jcpp advances,1 -jds communications,0 -journal of agricultural and practice,0 -journal für lehrerinnenbildung,0 -journal of information system and technology management,0 -journal of applied biology and biotechnology,1 -journal of applied glycoscience,0 -"the journal of asian finance, economics and business",1 -journal of asthma and allergy,1 -journal of avant-garde studies,1 -journal of awareness-based systems change,0 -journal of business and behavioral sciences,0 -journal of cancer science and clinical therapeutics,0 -journal of case reports and medical images,0 -the journal of climate change and health,0 -journal of coatings technology and research,1 -journal of cognitive enhancement,0 -journal of computational and theoretical transport,1 -journal of contemporary brachytherapy,1 -journal of deafblind studies on communication,0 -journal of dialogue studies,1 -journal of early christian history,1 -research in education and learning innovation archives,0 -sustainable futures,1 -journal of environmental law & policy,1 -journal of family medicine and primary care,1 -journal of hematology,0 -journal of hepatocellular carcinoma,1 -journal for higher education management,0 -journal of horticultural science and research,0 -journal of human growth and development,0 -journal of hunger & environmental nutrition,0 -journal of infection and public health,1 -journal of laboratory and precision medicine,1 -journal of laboratory physicians,0 -the journal of machine learning for biomedical imaging,1 -journal of mathematics,0 -journal of migration and health,0 -journal of nepal health research council,0 -journal of neurogastroenterology and motility,1 -journal of new zealand & pacific studies,1 -journal of otolaryngology and neurotology research,0 -journal of parasitic diseases,0 -"journal of physical education, recreation & dance",0 -journal of plant protection research,0 -journal of qualitative research in tourism,1 -journal of research in pharmacy,1 -sahoegwasueobyeongu,0 -journal of technology in behavioral science,1 -proceedings of the annual cad conference,0 -journal of urban mobility,0 -ieee international conference on smart grid and smart cities,1 -jurnal perencanaan pembangunan,0 -proceedings of the international business information management association conference,0 -proceedings of the engineering education for sustainable development conference,0 -proceedings of the design society,1 -international seminar on orc power systems,1 -kathmandu university medical journal,0 -kliničeskaâ i specialʹnaâ psihologiâ,0 -korall,0 -landbauforschung,0 -language development research,0 -lishi yanjiu,0 -literarus,0 -logistics,1 -lse public policy review,0 -journal of maltese education research,0 -marketing science and inspirations,0 -mast,1 -materials for quantum technology,1 -materials proceedings,0 -mdm policy & practice,1 -media fields journal,0 -mezinárodní vztahy,1 -micro,1 -middle east journal of cancer,0 -proceedings of the european marketing academy,0 -morphologie,0 -nanotechnology and precision engineering,1 -nassp bulletin,1 -cib w78 conference series,0 -proceedings of international agriculture innovation conference,0 -proceedings of the ... international conference on economics and social sciences.,0 -environmental sciences proceedings,0 -european proceedings of international conference on education and educational psychology,0 -temat monográficos,0 -ieee asia-pacific conference on antennas and propagation,1 -... ieee workshop on wide bandgap power devices and applications,1 -nature cancer,3 -ieee-embs international conference on biomedical and health informatics,0 -ursi general assembly and scientific symposium,1 -international academy of practical theology conference series,0 -nature reviews methods primers,1 -pacific asia conference language information and computation,0 -nature-based solutions,0 -mina fagrapport,0 -necatibey eğitim fakültesi elektronik fen ve matematik eğitimi dergisi,0 -conference proceedings of the european sco2 conference,1 -uknowledge,0 -international grassland congress,0 -neofilologiâ,0 -network,1 -new zealand slavonic journal,1 -international conference on 3d vision proceedings,1 -environment-behaviour proceedings journal,0 -dialogo,1 -neuropsy open,0 -ningen kankyogaku kenkyu,0 -nordic journal of studies in policing,1 -"procedia environmental science, engineering and management",1 -ieee conference on business informatics,0 -nss space settlement journal,0 -proceedings of the international conference on european association for education in elect rial and information engineering.,0 -"ieee international conference on engineering, technology and innovation",1 -olhares & trilhas,0 -"symposium of image, signal processing, and artificial vision",0 -oncoscience,1 -blucher design proceedings,0 -choonpa erekutoronikusu no kiso to oyo ni kansuru shinpojiumu,0 -secrypt,1 -csedu,0 -visigrapp,1 -international oil spill conference proceedings,0 -op. cit.,1 -operative techniques in otolaryngology-head and neck surgery,1 -ornithology,1 -osteology,0 -biotechnology for biofuels and bioproducts,2 -journal of political institutions and political economy,1 -journalism and media,1 -pacific rim international journal of nursing research,1 -paediatric & neonatal pain,1 -palliative medicine reports,0 -"pediatric gastroenterology, hepatology & nutrition",1 -per la filosofia,0 -perinatal journal,1 -international conference image and vision computing new zealand,1 -"proceedings of the european conference on management, leadership and governance",0 -ieee international conference on smart communities,1 -periodica polytechnica electrical engineering and computer science,0 -physical and engineering sciences in medicine,1 -phytofrontiers,1 -pielęgniarstwo xxi wieku,0 -"plants, people, planet",1 -polish journal for american studies,1 -ieee international conference on multimedia and expo,1 -prace polonistyczne,1 -praktyka teoretyczna,1 -proceedings of the international conference on business excellence,0 -han-guk chojeondo jeoon-gonghakoe nonmunji,0 -przegląd rusycystyczny,1 -psychological test adaptation and development,1 -public health in practice,0 -pure and applied analysis,1 -qatar medical journal,0 -qualitative health communication,0 -environmental analysis & ecology studies,0 -questions of international law,1 -radiology : artificial intelligence,1 -"reabilitacijos mokslai : slauga, kineziterapija, ergoterapija",0 -research on child and adolescent psychopathology,2 -revista brasileira de direito processual penal,1 -revista científica general josé maría córdova,1 -revista de antropología,1 -finnish journal of linguistics,1 -revista de comunicação dialógica,1 -revista de teoria da história,1 -revue de la régulation,1 -revue de l'université de moncton,0 -roczniki biblioteczne,0 -s/n korean humanities,1 -salesianum,0 -science journal of education,0 -"scientific papers : series management, economic, engineering in agriculture and rural development",1 -segle xx,1 -sichuan daxue xuebao : zhexue shehui kexue ban,0 -skin health and disease,1 -slavistika,1 -sleep advances,1 -sleep science and practice,1 -small science,1 -smart materials in medicine,0 -sociologies pratiques,0 -southern african public law,1 -synthetic biology,1 -vasi szemle,0 -vestnik sankt-peterburgskogo universiteta : meždunarodnye otnošeniâ,1 -tạp chí khoa học pháp lý,0 -wacana,1 -westend,0 -western journal of emergency medicine,1 -whatever,1 -wiener medizinische wochenschrift,0 -world journal of pediatric surgery,1 -wseas transactions on environment and development,1 -taiyangneng xuebao,0 -taltech journal of european studies,1 -tannlæknablaðið,0 -gyosa gyo-yug yeon-gu,0 -teaching public administration,1 -teccogs : revista digital de tecnologias cognitivas,0 -techne,1 -technology and language,1 -telekinet,0 -tér és társadalom,1 -terra,0 -tertium comparationis,1 -texas education review,0 -therapeutic advances in chronic disease,1 -therapeutic advances in gastroenterology,1 -therya,1 -third world approaches to international law review,1 -american review of international arbitration,1 -jianzhushi,0 -cell surface,0 -european zoological journal,1 -hong kong journal of social work,1 -international journal of religion and spirituality in society,1 -journal of asia tefl,1 -journal of research administration,1 -journal of the european association for chinese studies,1 -philosophy of humor yearbook,1 -the rest,1 -surgery journal,1 -ukrainian biochemical journal,0 -tongxin xuebao,0 -transplantation and cellular therapy,1 -transplantation direct,1 -trauma monthly,0 -trends in linguistics : studies and monographs,1 -tribologie und schmierungstechnik,0 -turczaninowia,1 -tutkimus & kritiikki,1 -yapı,0 -yuanzineng kexue jishu,0 -zarch,1 -vestnik vâtskogo gosudarstvennogo universiteta,0 -demografičeskoe obozrenie,1 -interakciâ intervʹû interpretaciâ,1 -obrazovanie i samorazvitie,0 -èlektronnoe priloženie k rossijskomu ûridičeskomu žurnalu,0 -rusistika,1 -sovremennoe doškolʹnoe obrazovanie : teoriâ i praktika,0 -filologičeskij klass,1 -tianjin shi jiao-ke-yuan xuebao,0 -journal of electrochemical science and technology,1 -pulmonary therapy,1 -pediatric medicine,1 -journal of animal science and technology,0 -cardiology and therapy,1 -advances in surgery,1 -acta scientific microbiology,0 -advances in materials and processing technologies,0 -mağallaẗ al-mağmaʿ,0 -bio-design and manufacturing,0 -bioactive compounds in health and disease,0 -bioelectricity,1 -cardiac electrophysiology clinics,0 -critical reviews in solid state and materials sciences,1 -current molecular pharmacology,1 -ejhaem,1 -electrochemical energy reviews,1 -epj nuclear sciences & technologies,1 -food structure,1 -frontiers in bioscience,1 -frontiers in sustainability,1 -health sciences review,0 -ieee transactions on artificial intelligence,1 -integrated pharmacy research and practice,1 -international journal of technology in teaching and learning,0 -jco oncology practice,1 -journal of biologically active products from nature,1 -journal of ecology and environment,1 -journal of engineering and science research,0 -journal of ethnic foods,1 -journal of experimental pharmacology,1 -journal of nanotheranostics,0 -journal of clinical oncology and research,0 -kasvun tuki,0 -the korean journal of internal medicine,0 -modern trends in psychiatry,0 -national accounting review,1 -quantitative plant biology,1 -nature reviews psychology,1 -neonatology today,0 -medicine research,0 -the innovation,0 -view,0 -pharmaceutical patent analyst,0 -revue française de gestion,1 -advanced energy and sustainability research,1 -"architecture, structures and construction",1 -emi educational media international,1 -egyptian journal of otolaryngology,1 -ieee journal on flexible electronics,1 -anthropocene science,0 -higher education forum,0 -innovative infrastructure solutions,1 -regenerative biomaterials,1 -urolithiasis,1 -capitulum,0 -przegląd historyczno-wojskowy,1 -xin li xue jin zhan,0 -salón bienal de investigación creación,0 -suomen ev.-lut. kirkon tutkimusjulkaisuja,1 -acta byzantina fennica : supplementa,0 -journal of antitrust enforcement,1 -helsingin yliopiston koulutuksen arviointikeskus hean raportit,0 -polyphenols communication,0 -language resources,0 -hungarian studies yearbook,1 -sitra muistio,0 -the international conference on information networking,1 -ornithological applications,2 -"studii de limbă, literatură şi metodică",0 -geowissenschaftliche mitteilungen,0 -pólay elemér alapítvány könyvtára,0 -ercoftac series,0 -bulletin of the society of systematic biologists,0 -lapin ammattikorkeakoulun julkaisuja : sarja b tutkimusraportit ja kokoomateokset,0 -new europe college yearbook,0 -encyclopædia iranica,0 -ainu senjumin kenkyu,1 -translation in society,0 -etudes canadiennes,1 -policy brief,1 -suomen luontopaneelin julkaisuja,0 -fgi publications,0 -nordiske studier i leksikografi,0 -mefisto,1 -publications de l'observatoire astronomique de belgrade,0 -algorithms for intelligent systems,0 -vård i fokus,0 -chemistry africa,0 -cogitare enfermagem,0 -"design, construction, maintenance",0 -encyclopedia,0 -erikoislääkäri,0 -frontiers in signal processing,1 -géotechnique letters,1 -ieee transactions on quantum engineering,1 -independence,0 -journal of communication technology,1 -journal of multiscale modelling,1 -polymorfi,0 -wseas transactions on biology and biomedicine,1 -european law open,1 -paleoceanography and paleoclimatology,2 -ahfe international,1 -proceedings : ieee international symposium on high-assurance systems engineering,0 -proceedings : ieee international symposium for design and technology in electronic packaging,1 -proceedings of the institute of navigation : international technical meeting,1 -clarin annual conference proceedings,0 -journal of psychopathology and clinical science,3 -optics continuum,1 -information & media,1 -computers and education : artificial intelligence,1 -"business ethics, the environment & responsibility",1 -comparative political theory,1 -cleaner production letters,1 -the journal of fintech,1 -digital geography and society,1 -international journal of esports,1 -journal of anime and manga studies,1 -personality science,1 -applied corpus linguistics,0 -international criminology,1 -collated papers for the alte international conference,0 -acm transactions on evolutionary learning,1 -palgrave pivot,1 -routledge focus on philosophy,1 -routledge focus on business and management,1 -routledge focus on accounting and auditing,1 -routledge focus in tourism,1 -digital war,1 -"wellbeing, space and society",1 -task,0 -additive manufacturing letters,1 -ieee international conference on communications workshops,0 -analysis & sensing,1 -proceedings (ieee international conference on bioinformatics and biomedicine),1 -european journal of family business,1 -glad!,1 -international journal of financial studies,1 -severnorusskie govory,0 -"technology, mind, and behavior",1 -science of remote sensing,1 -transatlantica,1 -aesthetic investigations,1 -frontiers in allergy,1 -gerontologi,0 -oeconomia copernicana,1 -probability and mathematical physics,1 -frontiers in environmental chemistry,1 -replaying japan,1 -"neurons, behavior, data analysis, and theory",0 -papers and records : thunder bay historical museum society,1 -pro et contra,1 -proceedings of the international conference on automated planning and scheduling,1 -international journal of geoheritage and parks,1 -journal of european tort law,1 -fordítástudomány,0 -acta universitatis sapientiae : philologica,1 -journal of autoethnography,1 -communications medicine,1 -constructive mathematical analysis,1 -journal of spectral imaging,1 -transactions of the international society for music information retrieval,1 -musikk og tradisjon,1 -communication sciences & disorders,1 -clinical archives of communication disorders,1 -ecclesial practices,1 -journal of computer virology and hacking techniques,1 -journal of online learning research,1 -horticulturae,1 -intelligent and converged networks,1 -"journal of data science, statistics, and visualisation",1 -akce international journal of graphs and combinatorics,1 -nature cardiovascular research,1 -steuer und wirtschaft,1 -swi. steuer & wirtschaft international,0 -papers in arts and humanities,0 -administrative theory & praxis,1 -canadian journal of european and russian studies,1 -journal of corpora and discourse studies,1 -journal of biomedical research & environmental sciences,0 -advances in computational intelligence,1 -international vat monitor,0 -mehrwertsteuerrecht,0 -international transfer pricing journal,0 -"zdorov'â, sport, reabìlìtacìâ",0 -international conference on information and communication technology convergence,0 -music research annual,1 -international journal of precision engineering and manufacturing green technology,1 -matematičeskie zametki svfu,1 -gezinstherapie wereldwijd,0 -continuity in education,1 -energy advances,1 -history of pharmacy and pharmaceuticals,1 -environmental research : infrastructure and sustainability,1 -journal of chinese literature and culture,1 -early medieval china,1 -ars inveniendi analytica,1 -journal on mathematics education,1 -linguistic typology at the crossroads,0 -journal of textile science & fashion technology,0 -"arbeit, bewegung, geschichte",0 -"diacronie, studi di storia contemporanea",1 -esboços,1 -theologia viatorum,1 -journal of advanced joining processes,1 -inquiry in education,0 -emerging science journal,1 -historia de la educación,0 -"revista proyecto, progreso, arquitectura",1 -ieee open journal of nanotechnology,1 -journal of magnesium and alloys,1 -urban rail transit,1 -ieee open journal of engineering in medicine and biology,1 -sports health,1 -revista de derecho penal y criminologia,0 -atoms,1 -histories,0 -adolescents,0 -verbum vitae,1 -migration information source,0 -international journal of human rights education,1 -the catholic social science review,0 -international journal of systemic therapy,1 -bmc pharmacology & toxicology,1 -observational studies,1 -nordic journal of renaissance studies,1 -peer community journal,1 -academy of marketing studies journal,0 -foundations and trends in marketing,1 -maloca,0 -journal of translational internal medicine,0 -heritage & society,1 -bloomsbury education and childhood studies,0 -know,1 -fundamental research,1 -aba tax times,0 -yuanzihe wuli pinglun,0 -the ata journal of legal tax research,1 -columbia journal of tax law,1 -current issues in auditing,1 -journal of governmental & nonprofit accounting,1 -glottodidactica,1 -"earth science, systems and society",1 -highlights & insights on european taxation,0 -zeitschrift korpora deutsch als fremdsprache,0 -florida tax review,1 -the journal of the american taxation association,1 -fremdsprachen lehren und lernen,0 -u.porto journal of engineering,0 -journal of consumer health on the internet,1 -plos climate,1 -plos water,1 -foundations and trends in finance,1 -journal of financial management markets and institutions,1 -international journal of indigenous health,0 -european journal of education and pedagogy,1 -journal of historical political economy,1 -international journal of urban sciences,1 -transtext(e)s transcultures,1 -jid innovations,1 -jazz education in research and practice,0 -conference proceedings (ethnographic praxis in industry conference),0 -journal of global sport management,1 -european journal of materials,0 -theoretical and applied mechanics,0 -soil,1 -production & manufacturing research,1 -advances in industrial and manufacturing engineering,1 -international journal of industrial engineering and operations management,1 -lasers in manufacturing and materials processing,1 -palliative care and social practice,1 -material design & processing communications,1 -research methods in applied linguistics,0 -plos sustainability and transformation,1 -children & schools,0 -journal of interprofessional education & practice,0 -journal of legal research methodology,1 -science and technology of advanced materials : methods,0 -european journal of health communication,1 -"resources, conservation & recycling advances",1 -engineered science,1 -anthropology & aging,1 -corporate and business strategy review,1 -european heart journal : digital health,1 -environmental science : advances,1 -zoonotic diseases,1 -nature computational science,1 -schnittstelle germanistik,0 -african journal of gender and religion,1 -environmental research & technology,1 -afinla-teema,1 -advances in radiation oncology,1 -proceedings of the annual meeting of the isss,0 -ieee european symposium on security and privacy workshops,1 -agile : giscience series,0 -european proceedings of educational sciences,0 -scipost physics proceedings,0 -ocean,0 -ieee international conference on smart computing,1 -international conference on probabilistic methods applied to power systems,1 -proceedings (ieee international conference on mobile data management),1 -phi,1 -tijdschrift voor genderstudies,1 -mediapolis,0 -annals of agricultural science,0 -papers on labour history,0 -annals of applied sport science,0 -australian & new zealand journal of european studies,1 -discover artificial intelligence,1 -east asia forum quarterly,0 -frontiers in toxicology,1 -grassland research,1 -international journal of corrosion and scale inhibition,1 -journal of remote sensing,1 -multimodal transportation,1 -sesar innovation days,0 -acta scientiarum : health sciences,0 -cleaner waste systems,0 -medicine and law,0 -the crop journal,1 -fuzzy information and engineering,1 -forensic sciences research,1 -diacrítica,1 -analog game studies,0 -transportation infrastructure geotechnology,1 -f&e,0 -puolustustutkimuksen vuosikirja,0 -xiandai zhexue,0 -trudy instituta russkogo âzyka im. v.v. vinogradova,0 -journal of english-medium instruction,0 -journal of uralic linguistics,0 -ssm : qualitative research in health,0 -applied computing and intelligence,1 -nordic journal of urban studies,1 -global hip hop studies,1 -"journal of arts, design, and music",0 -digital society,1 -discover sustainability,1 -continuity & resilience review,1 -trends in sport science,0 -democracy and security,1 -journal of intelligence history,1 -batteries & supercaps,1 -journal of chinese humanities,1 -studi culturali,0 -communications in mathematics,1 -pain and therapy,1 -frontiers in food science and technology,1 -frontiers in genome editing,0 -frontiers in animal science,1 -frontiers in agronomy,1 -frontiers in bioinformatics,1 -international perspectives in psychology,1 -international journal of educational research and innovation,0 -carbon trends,1 -journal of world popular music,1 -sn partial differential equations and applications,1 -journal of transformative learning,0 -journal of management for global sustainability,1 -international journal of computer science and engineering survey,0 -studia litteraria et historica,1 -cogent public health,1 -proceedings (ieee/acm international conference on mining software repositories),1 -bmc primary care,1 -advances in southeast asian studies,1 -studies in language assessment,1 -international quarterly for asian studies,1 -revue internationale des études du développement,1 -migration,0 -rms : research in mathematics & statistics,1 -energy & environment materials,1 -stigma and health,1 -ichthyology & herpetology,1 -policy reviews in higher education,1 -frontiers in digital health,0 -npj clean water,1 -emergent materials,1 -plos global public health,0 -artificial intelligence for the earth systems,1 -journal of social psychology research,0 -ergonomics international journal,0 -jphys materials,1 -mobility humanities,0 -iet blockchain,1 -conditioning medicine,1 -results in materials,0 -current research in toxicology,1 -the global south,0 -frontiers of medicine,0 -proceedings of the annual pronunciation in second language learning and teaching conference,0 -zhongguo tuxiang tuxing xuebao,0 -emotions,1 -decision,1 -ieee international conference on blockchain,0 -brain disorders,0 -journal for public diplomacy,1 -knee surgery & related research,1 -mediehistorisk tidsskrift,1 -workshop on detection and classification of acoustic scenes and events,1 -green energy and sustainability,0 -oncology research and treatment,1 -european journal of theatre and performance,1 -computing in construction,0 -building simulation conference proceedings,0 -american journal of biological anthropology,1 -electronic structure,1 -therapeutic advances in musculoskeletal disease,1 -npj materials degradation,1 -kidney diseases,1 -f&s science,1 -materials chemistry frontiers,1 -jmir human factors,1 -im@go,1 -organic materials,1 -zeitschrift für technikfolgenabschätzung in theorie und praxis,1 -frontiers in drug delivery,0 -international conference of advanced research methods and analytics,0 -chinese control and decision conference,0 -diagnostika,0 -hnps advances in nuclear physics,0 -frontiers in manufacturing technology,1 -brain and spine,1 -jenaer arbeiten zur lehrwerkforschung und materialentwicklung.,0 -frontiers in gastroenterology,0 -clinical diabetes and endocrinology,1 -journal of advanced instrumentation in science,0 -jtcvs techniques,1 -quivirr,0 -"research, society and development",0 -international conference on computational linguistics,1 -current research in parasitology and vector-borne diseases,0 -openfoam journal,0 -"global knowledge, memory and communication",1 -international journal of parliamentary studies,1 -organics,0 -a peer-reviewed journal about,1 -acs engineering au,1 -springerbriefs in education,1 -social epistemology review and reply collective,1 -proceedings (ieee international symposium on service-oriented system engineering),1 -annual conference proceedings (association for business communication),0 -econpol forum,0 -lab-ammattikorkeakoulun julkaisusarja,0 -;login:,0 -academia letters,0 -acs es&t engineering,1 -american journal of cardiovascular disease,1 -animal : open space,0 -proceedings : ieee international conference on intelligent engineering systems,0 -annales academiae scientiarum fennicae,0 -annali di ca' foscari : serie occidentale,1 -annals of medicine and surgery,0 -applied food research,1 -applied mechanics,1 -asia anteriore antica,1 -association of marketing theory and practice proceedings,0 -yà-tài guǎnlǐ pínglùn,1 -asian bioethics review,1 -asian journal of philosophy,1 -atlanti,0 -avances de investigación en educación matemática,1 -bāgh-i naẓar,1 -behavioral sciences of terrorism and political aggression,1 -biomaterials advances,1 -biologia futura,1 -biomaterials and biosystems,0 -zoodiversity,1 -zhongguo zhongyao zazhi,0 -zeitschrift für aussen- und sicherheitspolitik,1 -springerbriefs in applied sciences and technology,1 -springerbriefs in physics,1 -springerbriefs in archaeology,1 -arkhimedes,0 -biomed,0 -biomedical engineering letters,1 -biophysics and physicobiology,0 -journal of online trust & safety,1 -health and social care chaplaincy,1 -polish journal of pathology,0 -conference proceedings (international conference on advanced semiconductor devices and microsystems),0 -control technology and applications,1 -youth,0 -ympäristö ja terveys,0 -ahead,1 -ieee international conference on internet of things and intelligence system,1 -australian and new zealand control conference,0 -international journal of applied positive psychology,1 -writingplace,1 -world development perspectives,1 -veterinariâ segodnâ,0 -vehicles,1 -bmj neurology open,1 -the lancet : rheumatology,1 -hrb open research,0 -international journal of analysis and applications,1 -journal of neurosurgery : case lessons,0 -advanced pharmaceutical bulletin,0 -analytica,0 -bioresources and bioprocessing,1 -bukarester beiträge zur germanistik,0 -canadian journal of pathology,0 -kansanmusiikki-instituutin julkaisuja,0 -lastenkirjainstituutin julkaisuja,0 -vierteljahrsschrift für wissenschaftliche pädagogik,1 -radio science letters,1 -"trees, forests and people",1 -transactions of the indian institute of metals,1 -trakya university journal of natural sciences,0 -"the cambridge journal of law, politics, and art",0 -thai journal of mathematics,1 -technisches messen,0 -polilingvialʹnostʹ i transkulʹturnye praktiki,1 -xuewei yu yanjiusheng jiaoyu,0 -teaching and teacher education,1 -sustainable chemistry,0 -studies in late antiquity,1 -boletín de la sociedad matemática mexicana,1 -reports of biochemistry and molecular biology,0 -pnas nexus,1 -proceedings of the zoological society,1 -plant communications,1 -fìzika ì hìmìâ tverdogo tìla,0 -optics,1 -npj microgravity,1 -nano select,1 -limnology and freshwater biology,0 -"journal of geography, environment and earth science international",1 -journal of extracellular biology,1 -iraqi geological journal,1 -revista de ciências militares,1 -geosystems and geoenvironment,1 -frontiers of earth science,1 -fems microbes,1 -cell genomics,1 -earth,1 -cancer research communications,1 -international journal on child maltreatment,1 -case reports in plastic surgery & hand surgery,1 -international journal of infection control,0 -journal of agriculture and food research,1 -journal of nursing and practice,0 -journal of paleolithic archaeology,1 -journal of research in health sciences,0 -dementia & neuropsychologia,1 -international journal of health professions,0 -international journal of tourism cities,1 -iraqi journal for computer science and mathematics,0 -journal of applied learning and teaching,1 -materials today sustainability,1 -smart medicine,0 -aue-säätiön julkaisuja,0 -cheiron,1 -china cdc weekly,0 -classics@,0 -cleaner materials,0 -communications engineering,1 -creative arts in education and therapy,1 -crime prevention and community safety,1 -cuban studies,0 -"current studies in comparative education, science and technology",0 -debater a europa,1 -digital handbook of the history of experience,0 -dolomites research notes on approximation,0 -droplet,1 -energy and built environment,1 -energy storage and saving,0 -environmental epigenetics,1 -estudios latinoamericanos,1 -ethnobiology letters,0 -etnolog : nova vrsta,1 -etropic,1 -european heart journal open,1 -european journal of breast health,1 -european journal of education and psychology,0 -"european journal of investigation in health, psychology and education",0 -european journal of islamic finance,1 -gakko kaizen kenkyu kiyo,0 -european journal of trauma & dissociation,1 -facets,1 -fronteiras,1 -göç dergisi,1 -journal of l.m. montgomery studies,1 -new zealand journal of forestry science,0 -technium biochemmed,0 -studies in eastern european cinema,1 -stridon,0 -diabetes epidemiology and management,1 -sociální pedagogika,0 -hamk unlimited : professional,0 -sleep epidemiology,1 -seminars in oncology nursing,0 -ruminants,1 -satellite navigation,1 -rsc sustainability,0 -indian geotechnical journal,1 -open communications in nonlinear mathematical physics,1 -peerj analytical chemistry,1 -političeskaâ nauka,0 -st. sunniva,0 -zeitschrift für erziehungswissenschaftliche migrationsforschung,0 -latest trends in textile and fashion designing,0 -keizaigakushi kenkyu,0 -vestnik sankt-peterburgskogo universiteta : vostokovedenie i afrikanistika,0 -pskovskij regionologičeskij žurnal,0 -revue du rhumatisme,0 -integrative systematics,1 -international journal of electrical and computer engineering research,0 -informatika i ee primeneniâ,0 -future technology,0 -gujizhui dongwu xuebao,1 -guangzi xuebao,0 -global political economy,1 -hand surgery & rehabilitation,1 -journal of healthcare informatics research,1 -history in flux,1 -hybrida,1 -"genomics, proteomics and bioinformatics",1 -international journal of hematology- oncology and stem cell research,0 -lähihistoria,1 -journal of urban management,1 -studi ecumenici,0 -revista brasileira de ciências ambientais,1 -sovremennaâ zarubežnaâ psihologiâ,1 -spisanie na bʺlgarskoto geologičesko družestvo,0 -jednak książki,0 -micro and nano engineering,1 -onco,0 -informs journal on data science,1 -pec innovation,0 -"green technology, resilience, and sustainability",0 -dialogues in health,0 -intonations,0 -data science in science,1 -"environment and planning f : philosophy, theory, models, methods and practice",1 -oxford open energy,0 -world development sustainability,1 -zeitschrift für interaktionsforschung in dafz,0 -ipem-translation,0 -far eastern entomologist,0 -revue belge de droit international,1 -complex adaptive systems modeling,1 -metodo,2 -"philosophy, culture & traditions",0 -on_culture,1 -pharmaceutical regulatory affairs,0 -journal of clinical respiratory diseases and care,0 -journal of aquaculture & marine biology,0 -pakistan journal of commerce and social sciences,0 -discipline filosofiche,1 -getty research journal,1 -chemical data collections,0 -european stroke journal,1 -looming,0 -cellular and molecular gastroenterology and hepatology,2 -religion compass,1 -politics in central europe,1 -"surface investigation : x-ray, synchrotron and neutron techniques",1 -l2 journal,1 -archivio di filosofia,1 -arthurian literature,1 -journal of japanese botany,0 -innovations in pharmacy,0 -mitochondrial dna part b : resources,0 -soft power,1 -baltic yearbook of international law,0 -afriche e orienti,0 -linguistica anverpiensia new series,1 -nanjing theological review,0 -m@gm@,0 -papers in historical phonology,0 -voprosy teatra,0 -razprave in gradivo,1 -the prague bulletin of mathematical linguistics,1 -iah bulletin,0 -societàmutamentopolitica,1 -cátedra villarreal,0 -cracow indological studies,1 -galerie,0 -intersections,1 -european data protection law review,1 -journal for immunotherapy of cancer,2 -didaskalia ton fysikon epistimon : ereuna kai praxi,1 -spinal cord series and cases,1 -wékwos,0 -borec,0 -brain plasticity,0 -cuadernos de prehistoria y arqueología de la universidad de granada,0 -journal of educational issues,0 -european journal of police studies,1 -observatorio del desarrollo,0 -encyclopaedia of islam online,1 -bordón,1 -letonica,1 -blityri,0 -international journal of electric and hybrid vehicles,1 -journal of argumentation in context,1 -environmental sciences europe,1 -german medical science,1 -jyväskylä studies in humanities,0 -lutheran theological journal,0 -politeja,1 -sleep science,1 -open journal of radiology,0 -songklanakarin journal of science and technology,0 -npg,0 -the lancet hiv,2 -lingua americana,1 -anuac,1 -journal of science,0 -iryo keizai kenkyu,0 -frontiers in pediatrics,1 -bijiao jingxue,0 -graduate faculty philosophy journal,1 -journal of clinical & translational endocrinology,1 -korean language education,0 -"international journal of bias, identity and diversities in education",1 -graellsia,1 -punctum : international journal of semiotics,0 -critique & humanism,0 -investigaciones feministas,0 -nordisk sygeplejeforskning,0 -gabi journal,0 -the denning law journal,1 -anaesthesiology : intensive therapy,1 -patt : proceedings,0 -hacquetia,1 -iranian journal of cancer prevention,0 -international journal of cancer management,0 -urban planning,1 -the iucn red list of threatened species,0 -anais da academia brasileira de ciências,1 -international in-house counsel journal,0 -zeitschrift für diskursforschung,1 -orages,0 -eksperimental'naya psikhologiya,0 -rocznik komparatystyczny,1 -puls,1 -international journal of electrochemistry,0 -vestnik rossijskij fond fundamentalnyh issledovanij,0 -"journal for religion, film and media",1 -proceedings from the document academy,0 -crossings,1 -kinesiologia slovenica,1 -journal of global resources,0 -international journal of quality assurance in engineering and technology education,0 -tushuguanxue yu zixun kexue,0 -global anesthesia and perioperative medicine,0 -european journal of comparative law and governance,1 -interdisciplinary journal for religion and transformation in contemporary society,1 -orientaliska studier,0 -regional studies in marine science,1 -nature conservation research,0 -annual review of cybertherapy and telemedicine,1 -formalized mathematics,1 -clinical and experimental dental research,1 -tidsskrift for psykisk helsearbeid,1 -etnoantropozum,0 -mondi migranti,1 -journal of robotic surgery,1 -acta technica jaurinensis,0 -ecosal plus,0 -acta universitatis agriculturae et silviculturae mendelianae brunensis,0 -transactions of the american ophthalmological society,0 -journal of benefit-cost analysis,1 -drevnyaya rus : voprosy medievistiki,1 -annals of biological research,0 -seishin igaku,0 -parameters,0 -american journal of climate change,0 -carbon management,1 -sustainable agriculture reviews,1 -agriculture,1 -agrarinformatika folyoirat,0 -climate change economics,1 -journal of morphology,1 -international journal of multidisciplinary perspectives in higher education,1 -journal of berry research,1 -opuscula mathematica,1 -econometrics and statistics,1 -evropska revija za pravo osiguranja,1 -logistique et management,0 -proceedings of the institution of civil engineers : energy,1 -parse journal,1 -studia oeconomica posnaniensia,0 -athens journal of tourism,0 -frontiers in earth science,1 -filosofiska notiser,0 -international journal of biology and biomedicine,0 -heritage science,2 -international journal of economics and management systems,0 -journal of global research in education and social science,0 -open science journal,0 -journal of ocean and coastal economics,0 -sustainable chemical processes,0 -parlando,0 -ophthalmology retina,1 -digital culture & society,1 -international journal of knowledge discovery in bioinformatics,1 -international journal of mechanic systems engineering,0 -kebikec,0 -society. integration. education,1 -acute cardiac care,1 -reric international energy,0 -indigenous policy,1 -thaiszia,0 -methods in molecular biology,1 -revista de demografia historica,1 -revista de ciencias humanas,1 -rinshou tetsugaku,0 -york papers in linguistics,0 -the wipo journal,1 -healthcare,1 -journal of intensive care,1 -journal of novel physiotherapies,0 -applied food biotechnology,0 -spirale,0 -antioxidants,1 -journal of analytical oncology,0 -legume perspectives,0 -vtt science,0 -strategic direction,0 -religion and society,1 -studii de lingvistica,1 -current physical medicine and rehabilitation reports,0 -dante füzetek,0 -translational cancer research,1 -angiologiia i sosudistaia khirurgiia,0 -journal of vascular surgery: venous and lymphatic disorders,1 -advances in civil engineering,1 -diabetes therapy,1 -ecologia en bolivia,0 -global heart,1 -application of clinical genetics,1 -staps : sciences et techniques des activités physiques et sportives,1 -studia classica et neolatina,0 -springer proceedings in complexity,0 -speech prosody,1 -sp rapport,0 -sosiaali- ja terveysturvan raportteja,0 -shs web of conferences,1 -serlachius-museoiden julkaisuja,0 -"schriftenreihe des instituts für landschaft und freiraum, hsr hochschule für technik rapperswil",0 -rottenburger jahrbuch für kirchengeschichte,1 -psihologia xxi veka,0 -global marketing conference proceeding,0 -proceedings of the european conference on entrepreneurship and innovation,0 -proceedings international network on timber engineering research,0 -critical studies in fashion & beauty,1 -global pediatric health,0 -journal of pathogens,1 -les politiques sociales,0 -russian politics,1 -anabasis,1 -meded publish,0 -european papers,1 -minnesota journal of international law,1 -international journal of wireless and mobile computing,0 -australian and new zealand maritime law journal,0 -cellular therapy and transplantation,0 -the yearbook on history and interpretation of phenomenology,1 -orvosi hetilap,1 -journal of plant development,1 -journal of settlements and spatial planning,0 -international journal of internet of things and web services,0 -hungarologiai közlemenyek,1 -educational and vocational guidance,1 -irodalomismeret,0 -discrete analysis,2 -clinical pharmacology in drug development,1 -american journal of environmental protection,0 -security informatics,1 -scientifica,1 -economia agro-alimentare,1 -quaestiones geographicae,1 -arabian journal for science and engineering,1 -cahiers de la documentation,0 -vierteljahresschrift für heilpädagogik und ihre nachbargebiete,1 -shonika rinsho,1 -tamkang journal of mathematics,1 -revista de derecho privado,0 -operating systems review,1 -enfermedades infecciosas y microbiologia clinica,0 -neuromethods,1 -springer series in materials science,1 -uvp-report,0 -journal of optics,1 -indian journal of science and technology,0 -hupo kexue,0 -"journal of sciences, islamic republic of iran",0 -functional materials,1 -international journal of mathematical and statistical sciences,0 -journal of cost management,0 -ecologia politica,0 -revista de teledetección,0 -nutrition and metabolic insights,1 -sociální studia,0 -rent,0 -programa final e livro de resumos congresso brasileiro de engenharia química,0 -proceedings : fig working week,0 -"annales de l'economie publique, sociale et cooperative",1 -clinical ethics,1 -discussiones mathematicae : general algebra and applications,1 -revista direito mackenzie,0 -informing science,1 -proceedings of the international symposium for health information management research,0 -proceedings of smart learning excellence conference,0 -proceedings of the international symposium on business and management,0 -hand,1 -nuncius hamburgensis,0 -novia publikation och produktion,0 -ncar technical note,0 -museoviraston julkaisuja,0 -international journal of otolaryngology,0 -eurasian journal of business and economics,0 -kazanskij pedagogiceskij zhurnal,0 -finans,0 -micro total analysis systems,0 -international journal of environment and health,0 -mibes transactions,0 -microbial biotechnology,1 -"the journal of mental health training, education and practice",1 -international journal of design & nature and ecodynamics,0 -international journal of social quality,1 -clinical & experimental neuroimmunology,0 -medical physics in the baltic states,0 -medialingvistika,1 -matec web of conferences,0 -psihologiya,0 -asian journal of pharmaceutical sciences,1 -international journal of armenian genocide studies,1 -review of innovation and competitiveness,0 -"engineering in agriculture, environment and food",1 -sever,0 -journal of pollination ecology,1 -journal of curriculum and teaching,0 -forensic science policy & management,1 -frontiers in bioscience - scholar,0 -international journal of technology diffusion,0 -journal of antivirals & antiretrovirals,0 -journal of educational evaluation for health professions,1 -lahden historiallisen museon julkaisuja,0 -revista ibero-americana de estudos em educacao,0 -journal of clinical and experimental dentistry,1 -julkaisuja / publikationer / publications (siirtolaisuusinstituutti),0 -journal of condensed matter nuclear science,0 -iop conference series earth and environmental science,0 -desy proceedings,0 -international journal of mathematical models and methods in applied sciences,0 -international journal of chemical engineering and applications,0 -redimat,1 -journal of innovation economics,1 -jurisprudence,1 -therapeutic advances in drug safety,1 -international journal of modelling in operations management,0 -nursing children and young people,0 -journal of the oxford centre for buddhist studies,1 -journal of global health,1 -economic and social development,0 -world science,0 -international multidisciplinary scientific geoconference sgem,0 -international journal of cinema,0 -cambridge journal of international and comparative law,1 -arrhythmia & electrophysiology review,1 -"immunity, inflammation and disease",1 -environmental science : nano,2 -environmental science : water research & technology,1 -pulmonology and respiratory research,0 -global mental health,1 -archives of business research,0 -the journal of pathology : clinical research,1 -european journal of economics and management,0 -biomedical physics & engineering express,1 -organisational studies and innovation review,0 -mathematical models and computer simulations,1 -agronomy,1 -atmosphere,1 -journal of marine science and engineering,1 -endocrinology and metabolism,0 -annals of applied mathematics,0 -the online journal of quality in higher education,0 -international journal of research in education and science,1 -meta proceedings,0 -proceedings : international conference on industrial engineering and operations management,0 -international conference on e-learning,0 -clinical and translational gastroenterology,1 -journal of membrane science & technology,0 -international conference on advanced communication technology,0 -international academic conference proceedings,0 -inted proceedings,0 -journal of chemical engineering & process technology,0 -proceedings : international network for didactic research in university mathematics,0 -clute institute academic conference proceedings,0 -journal of mathematical finance,0 -bionanoscience,1 -technopharm,0 -zeitschrift für geographiedidaktik,1 -environmental processes,1 -iahr international symposium on ice,1 -anthropocene,1 -journal of orthopaedic translation,0 -monitoring obshestvennogo mnenija : ekonomicheskie i socialnye peremeny,1 -global conference on business & finance proceedings,0 -forskningsrapporter,0 -world journal of methodology,0 -clinical health promotion,0 -anesthesiology and pain medicine,0 -advances in distributed computing and artificial intelligence journal,1 -las torres de lucca,1 -ema - encontro de marketing,0 -electronic workshops in computing,0 -elearning and software for education,0 -frontiers in veterinary science,1 -foods,1 -voprosy shkolnoj i universitetskoj mediciny i zdorovja,0 -eapril conference proceedings,1 -developments in marketing science : proceedings of the academy of marketing science,0 -nauchnyj zhurnal niu itmo : seria ekonomika i ekologicheskij menedzhment,0 -congresso brasileiro de ergonomia,0 -conference proceedings : international conference on migration and diaspora entrepreneurship,0 -r&e source,0 -international journal of advanced and applied sciences,0 -international journal of medicine and biomedical research,0 -international journal of medical research and health sciences,0 -international journal of engineering and computer science,0 -"international journal of innovative research in science, engineering and technology",0 -international journal of innovative research in technology and science,0 -international journal of advances in science engineering and technology,0 -open review of educational research,1 -journal of international social studies,0 -journal of computer and communications,0 -international journal of systems science : operations & logistics,1 -international journal of science technology and society,0 -bcas annual research symposium,0 -bamberger orientstudien,0 -global affairs,1 -aare conference papers,0 -astrophysics and space science proceedings,0 -anais da association for moral education conference,0 -aleksanteri cold war series,1 -aistech,0 -imaps other content,0 -research and reviews : journal of material sciences,0 -international journal of health system and disaster management,0 -journal of advanced research in humanities and social sciences,0 -applied materials today,1 -al-magallah al-ilmiyyah li-gamiyyat imsia al-tarbiyai ani ttariq al-fan,0 -international journal of communications,0 -international journal of chemistry and chemical engineering systems,0 -aims materials science,1 -npj parkinson's disease,2 -medical research archives,0 -iaq conference,0 -journal of psychiatry,0 -jci insight,2 -journal of small business strategy,0 -jama cardiology,3 -international journal of plant science and ecology,0 -water economics and policy,1 -management dynamics in the knowledge economy,0 -"endocrinology, metabolism & genetics",0 -jacc : clinical electrophysiology,1 -international e-journal of advances in education,0 -computational research progress in applied science and engineering,0 -"international journal on language, literature and culture in education",1 -matter : international journal of science and technology,0 -current opinion in toxicology,1 -aims microbiology,1 -journal of food chemistry & nanotechnology,0 -aascit journal of materials,0 -ieee geoscience and remote sensing magazine,2 -annals of clinical case reports,0 -evolving pedagogy,0 -haksul daehoe nonmunjip,0 -"antiquitas, byzantium, renascentia",0 -nurse author & editor,0 -occasional papers on religion in eastern europe,0 -economic problems of tourism,0 -journal of media critiques,1 -journal of sustainable mobility,0 -frontiers in digital humanities,1 -journal of cancer research & therapy,0 -geroscience,1 -proceedings of the international congress on sound and vibration,0 -reproductive biomedicine & society online,1 -traektorija nauki,0 -employee responsibilities and rights journal,1 -psychiatria polska,0 -molecular catalysis,1 -journal of black sexuality and relationships,0 -injury epidemiology,1 -blood advances,1 -revista brasileira de politicas publicas,1 -global journal of comparative law,1 -language and law,0 -"analele stiintifice ale universitatii ""al.i. cuza"" din iasi : lingvistica",0 -progressus,1 -lecture notes in educational technology,1 -impact,0 -molecular and clinical oncology,0 -journal of clinical research & bioethics,0 -trita-ark. forskningspublikation,0 -the international conference of applied research in textile,0 -warasan wichai sahawitthayakan thai,0 -recent researches in american music,0 -centria : tutkimuksia,0 -clio,1 -mimesis journal,1 -anthropology & materialism,1 -journal of clinical sport psychology,1 -"international journal of learning, teaching and educational research",0 -virtus,1 -international journal of educational technology in higher education,2 -ieee transactions on emerging topics in computing,1 -foundations of management,1 -travel behaviour & society,1 -journal of insurance and financial management,0 -epistrophy,1 -applied mobilities,1 -soft robotics,2 -transactions on data privacy,1 -post script,1 -the journal of chinese sociology,1 -media industries,1 -journal of language aggression and conflict,1 -the journal of web science,1 -journal of neurology research,0 -journal of applied security research,1 -recreational mathematics magazine,1 -journal of human rights and social work,0 -mental health & prevention,1 -vaasan yliopiston tutkimuksia,0 -world journal of environmental research,0 -educational process : international journal,1 -journal of finance and data science,1 -cypriot journal of educational sciences,0 -contemporary educational researches journal,0 -global journal of arts education,1 -global journal of psychology research,0 -global journal of guidance & counselling,0 -"global journal of business, economics and management",0 -global journal of sociology,0 -global journal of foreign language teaching,0 -global journal of information technology,0 -global journal of computer science,0 -ieee sensors letters,1 -international conference on advanced computer science and information systems,0 -environments,1 -postcolonial directions in education,1 -orillas rivista d'ispanistica,1 -"work, aging and retirement",2 -journal of the motherhood initiative for research and community involvement,1 -the irish journal of management,1 -working with older people,0 -arts & international affairs,1 -integration,0 -the nephron journals,1 -biometrical letters,1 -"statistics, optimization & information computing",0 -skrifter från svenska institutionen vid åbo akademi,0 -international journal of applied industrial engineering,1 -jmir public health and surveillance,1 -journal of the southeast asian linguistics society,1 -himalayan linguistics,1 -hunter gatherer research,1 -environment and planning c : politics and space,2 -gymnasium,0 -international journal of environmental sciences,0 -scandinavian journal of laboratory animal science,1 -advances in polar science,1 -connections,1 -obesity medicine,1 -international journal of military history and historiography,1 -the lancet gastroenterology & hepatology,2 -miscelanea geographica,0 -bulletin of mathematical sciences and applications,0 -"international letters of chemistry, physics and astronomy",0 -international letters of natural sciences,0 -international letters of social and humanistic sciences,0 -"international journal of pharmacology, phytochemistry and ethnomedicine",0 -sun and geosphere,0 -scoliosis and spinal disorders,0 -eneurologicalsci,1 -substance abuse,1 -vestnik volgogradskogo gosudarstvennogo universiteta,0 -laboratory phonology,1 -tulevaisuussarja,0 -international journal of chinese education,1 -frontiers in robotics and ai,1 -science robotics,3 -uralo-altajskie issledovanija,1 -international diabetes nursing,1 -physical review physics education research,2 -journal of molecular and cellular pathology,0 -chem,3 -administration,1 -international journal of management excellence,0 -world journal of english language,0 -annals of work exposures and health,1 -journal of biomolecular techniques,1 -the journal of entrepreneurial finance,1 -international journal of innovation studies,1 -emerging microbes & infections,2 -journal de l'école polytechnique : mathématiques,1 -linguistic landscape,1 -modern environmental science and engineering,0 -sámis,0 -clothing cultures,1 -journal of sustainable cement-based materials,1 -zep,1 -diagnosis,0 -elytra,0 -management systems in production engineering,0 -journal of shanghai jiaotong university,0 -"journal of cybersecurity education, research & practice",0 -ieee consumer electronics magazine,2 -journal of early modern studies,1 -langue(s) & parole,0 -dianli jianshe,0 -romanian journal of population studies,1 -journal of case reports and studies,0 -rie,1 -bio-protocol,0 -tanzania journal of forestry and nature conservation,0 -ideias,0 -pedagogika,1 -enthymema,1 -japan military review,0 -"international conference on telecommunication systems, services, and applications",0 -human movement,1 -sibirskie istoricheskie issledovaniya,1 -utciencia,0 -tidsskriftet arkiv,1 -journal of allergy and clinical immunology : in practice,2 -sravnitel'naya politika,0 -revista de administração imed,0 -msphere,1 -the journal of engineering research,0 -journal of applied management accounting research,0 -johnson matthey technology review,1 -international journal of culture and mental health,1 -edu@kcja,0 -alzheimer's & dementia : translational research & clinical interventions,1 -proceedings : annual ias-sts conference,0 -studia rhetorica lundensia,0 -proceedings : european conference on noise control,0 -journal of media & mass communication,0 -acta crystallographica section d : structural biology,1 -vita traductiva,1 -"proceedings of the acm on interactive, mobile, wearable and ubiquitous technologies",2 -"pediatric health, medicine and therapeutics",0 -water security,1 -the international sports law journal,1 -the journal of the intensive care society,1 -svenskan i finland,1 -relegere,1 -journal of creating value,1 -separations,0 -sorbcionnye i hromatograficheskie processy,0 -nordisk välfärdsforskning,1 -beta,1 -journal of literature and trauma studies,1 -romanica silesiana,0 -medieval worlds,1 -austin journal of nursing & health care,0 -esmo open,2 -interfaces,1 -joutsen : erikoisjulkaisuja,1 -journal of interdisciplinary voice studies,1 -lithuanian annual strategic review,1 -european journal of education studies,1 -"complexity, governance & networks",1 -the museum review,0 -yale journal of music & religion,1 -journal of data mining and digital humanities,1 -journal of applied research in higher education,1 -sotsialnaia psikhologiia i obshchestvo,1 -hotus-hoitosuositus,1 -american journal of analytical chemistry,0 -jmir mental health,1 -yesterday and today,0 -han-gukjawon-gonghakoeji,0 -international journal of social science and economic research,0 -frontiers in environmental science,1 -international research journal of public and environmental health,0 -strathmore law journal,1 -european review of organised crime,1 -technische mechanik,1 -philological encounters,0 -journal of global security studies,1 -health policy and technology,1 -between the species,1 -regio,1 -inzynieria mineralna,0 -international journal of agricultural policy and research,0 -history of retailing & consumption,1 -asian journal of peacebuilding,1 -the journal of problem solving,1 -axioms,0 -journal of cyber security technology,1 -le courrier de la transplantation,0 -les cahiers de la sécurité et de la justice,0 -enseignement et recherche en administration de l'éducation,0 -iacr transactions on symmetric cryptology,1 -ocula,1 -journal of cell communication and signaling,1 -journal of radiology nursing,1 -journal of the chester archaeological society,0 -arktos,1 -šagi,1 -microrna,1 -annals of the american thoracic society,2 -international journal of humanities and cultural studies,0 -aims mathematics,1 -mindfulness,2 -haramaya law review,1 -bibliotheca sigillumiana,0 -journal of contemporary central and eastern europe,1 -political science research and methods,2 -social network analysis and mining,1 -economia e politica industriale,1 -invigilata lucernis,1 -physical review materials,2 -frontiers of narrative studies,2 -ieee transactions on green communications and networking.,1 -conservation physiology,1 -journal of visual art and design,1 -"the art, science, and engineering of programming",1 -liquid crystals reviews,1 -international journal of industrial chemistry,1 -international journal of microbiology,1 -international journal of care and caring,1 -journal of stroke,2 -interaction of mechanics and mathematics,1 -annals of translational medicine,0 -chemical and biological technologies in agriculture,1 -earth surface dynamics,2 -advances in nonlinear analysis,1 -machines,1 -philologica canariensia,1 -the journal of dress history,1 -research & politics,2 -digital health,1 -international journal of research in undergraduate mathematics education,1 -journal of the endocrine society,1 -economic theory bulletin,1 -nanoethics,1 -kompʹûternye instrumenty v obrazovanii,0 -cryptography,1 -acm transactions on human-robot interaction,1 -international journal of information and management sciences,0 -journal of computer engineering & information technology,0 -ledger,1 -orbit journal,0 -trends in neuroscience and education,1 -language and literacy,1 -skrifter från svensk förening för matematikdidaktisk forskning,1 -international journal of transgenderism,1 -contemporanea,0 -journal of alternative and community media,1 -public library quarterly,0 -qed,0 -remittances review,0 -global intellectual history,2 -environment & society portal. arcadia,1 -transnational marketing journal,0 -working paper series,0 -"proceedings of the institution of civil engineers. management, procurement and law",1 -journal of reviews on global economics,1 -socioeconomic challenges,0 -business ethics and leadership,0 -"financial markets, institutions and risks",0 -confluentes mathematici,1 -data science and engineering,1 -annals of pde,1 -international journal of computer mathematics,1 -congressus numerantium,0 -mathematical modelling of weld phenomena,0 -educação gráfica,1 -design & tecnologia,1 -human factors in design,1 -textual cultures,1 -partake,0 -studies in visual arts and communication,1 -revista d,1 -countertext,1 -amia ... annual symposium proceedings,0 -pharmaceutical technology in hospital pharmacy,0 -physics and imaging in radiation oncology,1 -biomarkers journal,0 -journal of language and sexuality,1 -questions de communication,1 -journal of academic language and learning,1 -revista tradumàtica,0 -ieee transactions on network science and engineering,1 -ieee transactions on transportation electrification,1 -advances in remote sensing,0 -journal of ecohydraulics,1 -medical technologies journal,0 -human factors and ergonomics journal,0 -the journal of pharmacy technology,1 -review of ecumenical studies,1 -ornis svecica,1 -"nanotechnology, science and applications",1 -international journal of cybernetics and informatics,0 -network neuroscience,1 -network science,1 -applied network science,1 -movoznavstvo,0 -ìnozemnì movi,0 -"annali del dipartimento di studi letterari, linguistici e comparati. sezione linguistica",1 -altre modernità,1 -anales del instituto de lingüística,0 -anglophonia (en ligne),1 -annales du patrimoine,1 -"analele universităţii. seria ştiinţele limbii, literatură şi didactica predării, limbi şi literaturi străine",0 -annual review of linguistics,1 -arbitrer : scientific journal of linguistics society of indonesia,0 -argotica,0 -argument & computation,1 -asian englishes,1 -asia-pacific language variation,1 -australian review of applied linguistics,1 -strategy science,1 -management teaching review,1 -evidence-based hrm,1 -journal of the association for consumer research,1 -zarzdadzanie przedsiebiorstwem,0 -cambridge anthropology,1 -alʹmanah severoevropejskih i baltijskih issledovanij,1 -zeithistorische forschungen,2 -photoresearcher (croydon),0 -the journal of medieval monastic studies,1 -digital medievalist,1 -the steam journal,0 -the comics grid,1 -small axe,1 -the journal of hip hop studies,1 -"international journal of circuits, systems and signal processing",0 -"ieee systems, man, and cybernetics magazine",1 -proceedings of the nordic insulation symposium,1 -"international journal of cognitive research in science, engineering and education",0 -digital experiences in mathematics education,1 -frontiers in education,1 -tilburg law review,1 -journal of public administration and governance,0 -revista colombiana de quimica,0 -wader study,1 -multiple sclerosis and demyelinating disorders,1 -emergency care journal,0 -gastrointestinal tumors,1 -leukemia research reports,0 -asian journal of urology,0 -journal of the international society for telemedicine and ehealth,0 -science immunology,3 -"annales de l’institut henri poincaré d : combinatorics, physics and their interaction",1 -quantum topology,1 -quantitative methods in economics,0 -palaestra (macomb ill.),0 -european policy analysis,1 -global media and china,1 -journal of childhood studies,1 -journal of manufacturing processes,1 -manufacturing review,0 -"international journal of nuclear energy, science and technology",0 -läkartidningen,0 -recenti progressi in medicina,0 -rae,0 -die vogelwelt,0 -world health,0 -zagadnienia naukoznawstwa,0 -rendiconti dell'istituto di matematica dell'universita di trieste,1 -astm special technical publication,1 -iheringia. série zoologia,0 -proceedings of the international astronautical congress,0 -educação,0 -fizika nizkih temperatur,0 -the liverpool law review,1 -sigact news,0 -grotiana,1 -revista de toxicología,0 -investigaciones geográficas,1 -antibiotiki i himioterapiâ,0 -journal for islamic studies,0 -multiethnica,1 -supplementary volume - aristotelian society,1 -education comparée,0 -časopis za kritiko znanosti,0 -urbani izziv,1 -shengxue xuebao,0 -anuario de estudios centroamericanos,1 -journal of information processing,0 -economia pubblica,0 -latium,0 -investigación clínica,0 -celulosa y papel,0 -antriebstechnik,0 -tierra firme,0 -filosofisk supplement,0 -klinická onkologie,0 -latvian journal of physics and technical sciences,0 -revista portuguesa de marketing,1 -medical law international,2 -plant cell biotechnology and molecular biology,0 -current topics in electrochemistry,1 -international journal of applied engineering research,0 -journal of pharmacy and bioallied sciences,0 -international journal of civil engineering and technology,0 -anae. approche neuropsychologique des apprentissages chez l'enfant,0 -yantu lixue,0 -ziran bianzhengfa yanjiu,0 -xitong gongcheng yu dianzi jishu,0 -journal of southeast university,0 -zhongguo dianhua jiaoyu,0 -dili kexue jinzhan,0 -zhōnghuá mínguó xīnzàngxué huì zázhì,0 -spurensuche,0 -"vestnik sankt-peterburgskogo universiteta. seriâ 5, èkonomika",1 -proceedings - air & waste management association. meeting,0 -td & t,0 -european water,1 -jbuon,0 -wseas transactions on computers,0 -la matematica e la sua didattica,0 -le forme e la storia,1 -economia della cultura,0 -revista de psicoterapia,0 -cuadernos de filología francesa,0 -banque & marchés,0 -hungarian journal of legal studies,1 -annales mathematicae et informaticae,1 -nuova corvina,0 -review of korean studies,1 -ocl. oilseeds & fats crops and lipids,0 -"modelling, measurement & control. c, energetics, chemistry, earth, environmental & biomedical problems",0 -fe dergi,0 -agrarni nauki,0 -journal of chemical technology and metallurgy,0 -"acta dermatovenerologica alpina, pannonica et adriatica",0 -management of sustainable development,1 -pedagogický časopis,1 -journal of language and cultural education,1 -jinkou chinou gakkai rombunshi,0 -culture and cosmos,0 -social psychological review,0 -revista publicando,0 -acta paedagogica vilnensia,1 -socialinis ugdymas,0 -humanetten,1 -proceedings quality in research,0 -jurnal manajemen indonesia,0 -ambiente construído,0 -cloud-cuckoo-land,1 -world transactions on engineering and technology education,1 -mental health practice,0 -endocrine abstracts,0 -msor connections,1 -"journal of management, spirituality & religion",1 -journal of the royal college of physicians of edinburgh,0 -rethinking mission,0 -magma,1 -best practice & research. clinical obstetrics & gynaecology,1 -international journal of economic development,1 -journal of toxicology and environmental health. part a,1 -management research,1 -schools,1 -roman legal tradition,1 -cardiovascular revascularization medicine,1 -uspehi gerontologii,0 -african journal of social work,1 -current immunology reviews,0 -barbastella,0 -red. revista de educación a distancia,0 -annals of the faculty engineering hunedoara,0 -linguistica e filologia,1 -oriental pharmacy and experimental medicine,0 -it. information technology,1 -ecological questions,0 -revista turismo & desenvolvimento,1 -acta orientalia vilnensia,1 -interventional neurology,1 -zhongguo jiaoshi,0 -jiaoyu celiang yu pingjia,0 -journal of animal science and biotechnology,1 -english for specific purposes world,0 -journal of veterinary anatomy,0 -vide. tehnoloģija. resursi,0 -eurocall newsletter,1 -artnodes,1 -revista catalana d'ornitologia,0 -comparative exercise physiology,1 -uralʹskij istoričeskij vestnik,1 -international journal for infonomics,0 -yōroppa nihongo kyōiku,0 -wit transactions on the built environment,0 -research ethics review,1 -international journal of management science and engineering management,0 -journal of urban regeneration and renewal,1 -acta ophthalmologica. supplement,1 -the international journal of cuban studies,1 -international journal of structural integrity,1 -wiley interdisciplinary reviews. developmental biology,1 -l'atelier du crh,0 -embertárs,0 -wseas transactions on heat and mass transfer,0 -nosīleia kai ereuna,0 -yritysetiikka,1 -linguistica online,1 -dálný východ,0 -revista nera,0 -journal of information systems and technology management,1 -vestnik moskovskogo gosudarstvennogo tehničeskogo universiteta imeni n.è. baumana. seriâ estestvennye nauki,0 -botanica serbica,0 -intelektinė ekonomika,0 -humanities australia,0 -annals of forest research,1 -političke analize,0 -international journal of innovation and economic development,0 -lexonomica,1 -probiotics and antimicrobial proteins,1 -journal of persianate studies,1 -cancer microenvironment,1 -biocatalysis and agricultural biotechnology,1 -international journal of organizational leadership,0 -global media journal : canadian edition,0 -discover nano,1 -"alcohol, clinical & experimental research",2 -advanced mathematical models & applications,0 -ankem dergisi,0 -chirurgia,1 -asian journal of neurosurgery,0 -battery energy,1 -clinical parkinsonism & related disorders,1 -digital humanities in the nordic and baltic countries publications,1 -anuari de filologia : estudis de lingüística,1 -egitto e vicino oriente,1 -global journal of research in engineering,0 -frontiers in cancer control and society,0 -frontiers in pain research,1 -volcanica,1 -ibro neuroscience reports,1 -zhonghua weichan yixue zazhi,0 -jaacap open,1 -medicine in drug discovery,1 -asian journal of biological sciences,0 -breathe,0 -electrochemical science advances,1 -exploration,0 -jor spine,1 -journal of cybersecurity and privacy,0 -mlife,0 -tsukuba daigaku kyōikugaku-kei ronshū,0 -wires : forensic science,0 -arte & ensaios,0 -i-com,0 -meta-radiology,1 -seychelles research journal,0 -jàmbá,1 -indonesian journal of electrical engineering and computer science,1 -studi sull'aristotelismo medievale (secoli vi-xvi),1 -european convention on human rights law review,1 -perspectives médiévales,1 -international journal of health sciences and research,0 -journal of abdominal wall surgery,0 -polish political science,1 -the lancet regional health : southeast asia,0 -international journal of human rights in healthcare,1 -journal of the european mosquito control association,1 -new directions for student services,0 -keiei jitsumuho kenkyu,0 -bjr open,1 -international conference on renewable energy research and applications,1 -diid,1 -ieee international conference on flexible and printable sensors and systems,1 -archiwum kryminologii,1 -éducation & didactique,0 -epic series in technology,0 -ieee conference on computer communications workshops,1 -the kemco review,0 -swp comment,0 -international journal of computerized dentistry,1 -clinical psychology in europe,0 -collagen and leather,0 -frontiers in ophthalmology,1 -ieee mtt-s international microwave workshop series on advanced materials and processes for rf and thz applications,0 -ieee statistical signal processing workshop,1 -iotbds,1 -international conference on smart energy systems and technologies,1 -"international conference on systems, signals, and image processing",1 -panellīnio synedrio didaktikīs fysikōn epistīmōn kai nees technologies stīn ekpaideusī,0 -ieee non-volatile memory systems and applications symposium,1 -"proceedings of the world congress on mechanical, chemical, and material engineering",0 -"culture, education and future",0 -ndt,0 -proceedings of the world congress on electrical engineering and computer systems and science,0 -journal of cardiology cases,0 -surgery,0 -advances in online education,0 -burns open,1 -concorrenza e mercato,0 -indonesian journal of social research,1 -alpha psychiatry,1 -frontiers in nephrology,1 -health promotion & physical activity,0 -lifestyle medicine,1 -microbiome research reports,0 -middle east critique,1 -annals of surgery open,1 -austin journal of psychiatry and behavioral sciences,0 -brazilian journal of development,1 -frontiers in stroke,1 -jacc : asia,1 -scienza & politica,1 -jmir infodemiology,1 -neuropsychopharmacologia hungarica,0 -journal of public health in africa,0 -journal of resources and ecology,1 -erekutoronikusu jisso gakkaishi,0 -thermal and fluids engineering summer conference,0 -international workshop on advances in sensors and interfaces,1 -proceedings : international symposium on discharges and electrical insulation in vacuum,1 -world history connected,1 -vestnik moskovskogo universiteta : seriâ 5 geografiâ,0 -whiteness and education,1 -environment and natural resources journal,1 -teaching exceptional children,0 -turāṯ,0 -synthesis,0 -sozialer fortschritt,1 -sosiaalipedagogiikka,1 -revista española de cirugía oral y maxilofacial,1 -acs sustainable resource management,0 -materia socio medica,0 -journal of open educational resources in higher education,0 -micrologus,1 -revista española de salud pública,0 -mains libres,0 -diak publications,0 -iafor international conference on education : official conference proceedings,0 -analytical and bioanalytical chemistry research,0 -archives of academic emergency medicine,1 -hipertext.net,1 -journal of binocular vision and ocular motility,1 -journal of qualitative research in sports studies,0 -quaderni di comunità,0 -food innovation and advances,0 -critical care science,1 -radiology : cardiothoracic imaging,1 -psychiatry research communications,1 -ai,1 -iranian journal of science and technology : transactions of civil engineering,0 -device,1 -journal of human-technology relations,0 -hybrid advances,1 -acs applied engineering materials,1 -journal of the international council for small business,0 -physical chemistry research,0 -mühendislik bilimleri ve tasarım dergisi,0 -gem,1 -discover oncology,0 -china finance review international,1 -noise & vibration worldwide,0 -supply chain analytics,1 -blockchain : research and applications,1 -"material science, engineering and applications",0 -energy informatics,1 -advances in forestry science,0 -annals of breast surgery,1 -anthropochildren,1 -cadernos de linguística,0 -classical literature,0 -egastroenterology,1 -acs applied optical materials,1 -comparative southeast european studies,1 -degrowth journal,0 -derecho animal,1 -huanjing kexue,0 -shipin yu fajiao gongye,0 -journal of advanced management science,0 -korean journal of anesthesiology,1 -acta biologica plantarum agriensis,1 -politica antica,1 -orizzonte cina,1 -process integration and optimization for sustainability,1 -psych,1 -nihr open research,0 -teema,0 -neurosurgery practice,1 -european journal of business science and technology,0 -european property law journal,1 -forensic chemistry,1 -frontiers in hematology,0 -gruppo di pisa,1 -iaes international journal of artificial intelligence,1 -integrative conservation,1 -interdisciplinary journal of environmental and science education,1 -journal of clinical case reports and images,0 -journal of literary multilingualism,1 -journal of psychologists and counsellors in schools,1 -journal of trial and error,0 -jurnal infotel,0 -jvs-vascular insights,1 -lex scientia law review,1 -life medicine,1 -novos olhares,0 -perspectives of earth and space scientists,1 -phytobiomes journal,0 -przegląd filozoficzny,0 -the semiotic review of books,1 -biofuel research journal,1 -annual report : conference on electrical insulation and dielectric phenomena,1 -international conference on cyber and it service management,0 -the cognitive behaviour therapist,1 -chemistry methods,1 -environment & health,1 -rutgers computer & technology law journal,0 -virginia journal of law and technology,0 -journal of high technology law,0 -european journal for security research,1 -the international spectator,1 -journal for deradicalization,1 -journal of crime & justice,1 -security dimensions,1 -kultura bezpieczeństwa,1 -journal of the philosophy of games,1 -internet pragmatics,1 -european journal of politics and gender,1 -tapuya,1 -nuorten elinolot -vuosikirja,1 -clean technologies,1 -detritus,1 -acs applied energy materials,1 -catalysis in green chemistry and engineering,1 -advanced theory and simulations,1 -human arenas,1 -forskning & forandring,1 -online learning,1 -international journal of early childhood environmental education,1 -caplletra,1 -journal on vehicle routing algorithms,1 -computational brain & behavior,1 -multimodal technologies and interaction,1 -annals of emerging technologies in computing,0 -business strategy & development,1 -journal of emerging trends in marketing and management,0 -asia-pacific research and training network on trade working paper series,0 -journal of responsible innovation,1 -journal of agribusiness and rural development,0 -research in number theory,1 -"probability, uncertainty and quantitative risk",1 -journal of psychosocial rehabilitation and mental health,1 -european journal of midwifery,1 -qualitative research in medicine & healthcare,1 -construction robotics,1 -applied system innovation,0 -international journal of microwave and optical technology,1 -international journal of aerospace engineering,1 -foundations and trends in robotics,1 -online - heidelberg journal of religions on the internet,1 -kairos,1 -edith stein jahrbuch,0 -fromm-forum,0 -physics of the dark universe,1 -current molecular biology reports,0 -biospektrum,0 -molecular & cellular oncology,0 -"journal of fluid flow, heat and mass transfer",0 -screenworks,1 -zoological letters,1 -general medicine open,0 -forensic anthropology,0 -international perspectives on inclusive education,1 -journal of interaction science,1 -communication + 1,1 -citizen science,2 -frontiers of information technology & electronic engineering,1 -ieee communications standards magazine,1 -cired workshop proceedings,1 -shakai gengo kagaku,1 -"turun yliopiston julkaisuja : sarja b, humaniora",0 -onomastica,1 -carbon resources conversion,1 -global energy interconnection,1 -"energy, ecology and environment",1 -frontiers in energy,1 -international journal of co-operative accounting & management,0 -studia regionalne i lokalne,0 -africa journal of management,1 -acta logistica,1 -empirical economic review,0 -journal of education and development,0 -international journal of technology in education and science,1 -"international journal of education in mathematics, science and technology",1 -international journal of psychology and psychological therapy,1 -"journal of education, society and behavioural science",1 -entrepreneurship education and pedagogy,1 -memetic computing,1 -journal of applied mathematics and physics,1 -"mathematics in engineering, science and aerospace",1 -iise transactions on occupational ergonomics and human factors,1 -journal of human sport and exercise,1 -science & medicine in football,1 -the european research journal,0 -european journal of korean studies,1 -cambridge journal of eurasian studies,1 -relacult,0 -suomen avantgarden ja modernismin seuran julkaisuja,0 -intercarto. intergis,1 -water resources and industry,1 -"journal of photogrammetry, remote sensing and geoinformation science",1 -geo,1 -life science alliance,1 -journal of mechanical engineering,0 -journal of law and social deviance,0 -göttingen journal of international law,0 -tangence,1 -genealogy,1 -problemy muzykalʹnoj nauki,1 -nitrogen,0 -iucrj,1 -journal of dentistry for children,1 -journal of indian society of pedodontics and preventive dentistry,0 -journal of orthopaedic case reports,0 -practical theology,1 -entangled religions,1 -lexia,1 -sage open medical case reports,1 -structural heart,1 -kahramanmaraş sütçü i̇mam üniversitesi tarım ve doğa dergisi,0 -food webs,1 -slas discovery,1 -clean energy,1 -journal of participation and employee ownership,1 -social interaction,1 -journal of expertise,1 -international journal of systems and software security and protection,1 -terra aestheticae,0 -jordanian journal of engineering and chemical industries,0 -materialia,1 -transletters,0 -prm+,0 -cumulus think tank,0 -proceedings (international conference on electrical machines),1 -global fashion management conference proceeding,0 -aims cell and tissue engineering,0 -european journal of hybrid imaging,1 -bjs open,1 -musculoskeletal science & practice,1 -journal of multidisciplinary engineering science and technology,0 -current opinion in green and sustainable chemistry,0 -asce-asme journal of risk and uncertainty in engineering systems,1 -advances in physics: x,1 -translational andrology and urology,1 -current sleep medicine reports,1 -current tropical medicine reports,1 -novitates caribaea,1 -journal of the british association for chinese studies,1 -therapeutic advances in urology,1 -korean circulation journal,1 -malaysian journal of learning & instruction,1 -ecohydrology & hydrobiology,1 -international journal of trichology,0 -"denki gakkai rombunshi. a, kiso, zairyō, kyōtsū bumonshi",1 -zhonghua weishengwuxue he mianyixue zazhi,0 -soil systems,1 -living reviews in computational astrophysics,1 -animal sentience,1 -aims allergy and immunology,0 -small methods,2 -annals of physical and rehabilitation medicine,1 -advanced therapeutics,1 -journal of central nervous system disease,1 -capsa historiae,0 -european law enforcement research bulletin,1 -journal of hydrology x,1 -european urology oncology,1 -archives on veterinary science and technology,0 -modern concepts & developments in agronomy,0 -critical romani studies,1 -ètnografiâ (sankt-peterburg),1 -chronotopos,0 -"the eurasia proceedings of science, technology, engineering & mathematics",0 -palkansaajien tutkimuslaitoksen raportteja,0 -der bauingenieur,0 -journal of criminal law,0 -one in christ,0 -revista colombiana de matematicas,0 -roczniki filozoficzne,1 -sociological focus,1 -social change,1 -selʹskohozâjstvennaâ biologiâ,0 -kompʹûternaâ optika,0 -bank i kredyt,1 -humanity & society,1 -munich social science review,0 -philologia classica,1 -zeszyty naukowe politechniki poznańskiej. organizacja i zarza̧dz anie,0 -huanjing kexue xuebao,0 -vikalpa,0 -revue internationale des sciences administratives,0 -the law teacher,1 -mastozoología neotropical,0 -revue d'études comparatives est-ouest,0 -göttinger miszellen,0 -esarda bulletin,0 -renmin jiaoyu,0 -więź,0 -john donne journal,0 -mandenkan,2 -revue européenne des migrations internationales,1 -desc,1 -e-legal : revue de la faculté de droit et de criminologie de l'université libre de bruxelles,0 -journal of cultural analysis and social change,0 -iscience,1 -"kontury globalʹnyh transformacij: politika, èkonomika, pravo",1 -the eurasia proceedings of educational & social sciences,0 -conservation science and practice,1 -"international journal of economy,energy and environment",0 -jama network open,1 -journal of behavioral economics for policy,1 -neonatal and pediatric medicine,0 -con texte,0 -philosophical journal of conflict and violence,1 -półrocznik językoznawczy tertium,0 -vision,1 -bulletin of kerala mathematics association,0 -journal of threatened taxa,1 -journal of young pharmacists,0 -journal of ayurveda and integrative medicine,1 -migrations société,0 -nongye jixie xuebao,0 -literaturnyj fakt,0 -konsulʹtativnaâ psihologiâ i psihoterapiâ,1 -sic,1 -zhongguo xueshu qikan,0 -zeitschrift für epileptologie,0 -world journal of orthopedics,1 -world journal of clinical cases,0 -western pacific surveillance response journal,1 -weather and climate extremes,1 -veterinary record open,1 -veterinary record case reports,1 -vesnik grodzenskaga dzâržaǔnaga unìversìtèta ìmâ ânkì kupaly,0 -vertimo studijos,1 -urbanities,1 -updates in surgery,0 -cuadernos del centro de estudios en diseño y comunicación,0 -türük uluslararası dil edebiyat halkbilimi araştırmaları dergisi,1 -tropical medicine and health,0 -transactions of mathematics and its applications,1 -toxicology and environmental health sciences,1 -theoretical and experimental plant physiology,1 -s & f online,0 -the modern higher education review,1 -the journal of applied laboratory medicine,1 -the esse messenger,1 -the clinical teacher,1 -teoria e prática em administração,0 -elisava tdd,0 -tavričeskij vestnik informatiki i matematiki,0 -synthetic and systems biotechnology,0 -swiss journal of palaeontology,1 -alman dili ve edebiyatı dergisi,0 -south asian journal of business studies,1 -south american journal of herpetology,1 -sleep health,1 -sibirskie èlektronnye matematičeskie izvestiâ,0 -sdrp journal of earth sciences & environmental studies,0 -scripta & e-scripta,0 -scottish languages review,0 -science museum group journal,1 -vestnik sankt-peterburgskogo universiteta : seriâ istoriâ,1 -safety,1 -romanian journal of communication and public relations,0 -rivista di diritti comparati,1 -ricerche di storia politica,1 -ricerche di storia economica e sociale,1 -phronésis,0 -ciriec españa : revista jurídica de economía social y cooperativa,0 -revista da faeeba,0 -revista cidob d'afers internacionals,1 -research cultures,0 -research and reports in urology,0 -reports in advances of physical sciences,1 -referencia pedagógica,0 -recherche et applications en marketing,1 -psychology research and behavior management,1 -proto-indo-european linguistics,0 -proteomes,1 -trudy instituta matematiki,0 -proceedings of the acm in computer graphics and interactive techniques,1 -present environment and sustainable development,1 -practical matters,1 -postępy dermatologii i alergologii,1 -postdigital science and education,1 -ponta de lança,1 -plant direct,1 -philosophy of coaching,0 -pharmacogenomics and personalized medicine,1 -phaenex,0 -pflege,0 -patient experience journal,1 -pathogens,1 -parks,1 -pain reports,1 -optimum,0 -open journal of databases,0 -open astronomy,1 -obesity science & practice,1 -npj systems biology and applications,0 -npj genomic medicine,1 -npj computational materials,1 -norwegian journal of entomology,1 -nonautonomous dynamical systems,1 -neurology and therapy,2 -communications physics,2 -nanotheranostics,1 -nanoimpact,1 -nano futures,1 -"journal of music, health, and wellbeing",1 -multiple voices for ethnically diverse exceptional learners,1 -msystems,1 -sosyal bilimler,1 -molecular genetics and metabolism reports,0 -metallurgical research & technology,1 -mental health in family medicine,1 -medicines,0 -medical sciences,0 -materials today chemistry,1 -materiali per una storia della cultura giuridica,1 -mass spectrometry letters,1 -management studies,0 -logforum,0 -linguistic and philosophical investigations,1 -líbero,1 -les ateliers de l'éthique,1 -"kultura, społeczeństwo, edukacja",0 -kipinä,0 -jpras open,1 -journal of work-applied management,1 -journal of the economic science association,1 -journal of risk and financial management,1 -"journal of research on trade, management and economic development",0 -journal of probiotics & health,0 -journal of pediatric surgery case reports,1 -journal of oral biosciences,1 -journal of neurological surgery,1 -guofang keji daxue xuebao,0 -journal of molecular and engineering materials,1 -journal of medical education and curricular development,1 -"journal of leadership, accountability and ethics",0 -journal of islamic ethics,1 -journal of international society of preventive and community dentistry,1 -journal of industrial engineering international,1 -journal of image and graphics,1 -journal of huntington's disease,1 -journal of higher education theory and practice,0 -journal of healthcare risk management,0 -journal of health and social sciences,1 -journal of gynecology obstetrics and human reproduction,1 -journal of greek archaeology,1 -journal of financial reporting & accounting,1 -journal of facade design and engineering,0 -journal of experimental orthopaedics,1 -journal of education and human development,0 -journal of digital media & interaction,1 -journal of digital landscape architecture,1 -journal of data protection & privacy,1 -journal of computational interdisciplinary sciences,1 -journal of complementary & integrative medicine,1 -journal of circadian rhythms,1 -journal of austrian studies,2 -journal of ancient near eastern history,1 -journal of agriculture food and development,0 -journal of african cinemas,1 -journal of agriculture and sustainability,0 -journal of advanced research in dynamical and control systems,0 -"journal of accounting, finance and auditing studies",0 -journal for early modern cultural studies,1 -jco precision oncology,1 -review of economics,1 -giornale italiano della ricerca educativa,1 -iranian journal of animal biosystematics,1 -investigative and clinical urology,1 -interpretation : a journal of subsurface characterization,1 -internationalisation of higher education,0 -international journal of telemedicine and clinical practices,1 -international journal of public administration in the digital age,1 -international journal of occupational and environmental safety,1 -international journal of multilingual education,0 -the international journal of james bond studies,1 -international journal of hydromechatronics,0 -international journal of health policy and management,1 -international journal of happiness and development,1 -"international journal of engineering : transactions b, applications",0 -international journal of engineering & technology,1 -international journal of energy production and management,1 -"international journal of economics, commerce and management",0 -international journal of advanced intelligence paradigms,1 -international development policy,1 -international aquatic research,1 -intercultural communication education,0 -innovation in aging,1 -innovacionnye proekty i programmy v obrazovanii,0 -infectious diseases of poverty,2 -industrial biotechnology,1 -ieee transactions on sustainable computing,1 -ieee/caa journal of automatica sinica,2 -history of the present,1 -historická sociologie,0 -hepatology communications,1 -healthcare informatics research,1 -health professions education,1 -haerbin gongcheng daxue xuebao,0 -hamk unlimited : scientific,0 -glossae,1 -future cities and environment,1 -fungal biology and biotechnology,1 -fossil record,1 -forum,0 -forum historiae,0 -forum for international research in education,1 -folia linguistica et litteraria,0 -fmsera journal,1 -finance and society,0 -exarc journal,1 -european journal of sustainable development,0 -european journal of parenteral & pharmaceutical sciences,0 -european financial and accounting journal,1 -eurasian journal of social sciences,1 -estudos internacionais,0 -epj photovoltaics,1 -eksploatacja i niezawodność,0 -efsa supporting publications,0 -efort open reviews,1 -the economists' voice,0 -economies,1 -ecancermedicalscience,1 -digital education review,0 -diegesis,1 -dialectic,0 -dentistry journal,1 -curved and layered structures,1 -current treatment options in allergy,1 -cross cultural & strategic management,1 -crisis and critique,0 -cooperativismo e economía social,0 -consecutio rerum,1 -jisuanji jicheng zhizao xitong,0 -clio @ themis,1 -"clinical obstetrics, gynecology and reproductive medicine",1 -clinical nutrition espen,1 -clinical and experimental reproductive medicine,1 -chinese journal of electrical engineering,0 -cuadernos de información y comunicación,0 -children,1 -cell death discovery,1 -cell and tissue biology,0 -case reports in oncology,0 -carte di viaggio,0 -the canadian journal of infection control,0 -cambridge international law journal,1 -bulletin,0 -bulletin trimestriel du trésor de liege,0 -buletinul academiei de științe a republicii moldova : matematica,1 -breast cancer,1 -brain and neuroscience advances,0 -bmj sexual & reproductive health,1 -bioscience & engineering : an international journal,0 -biology methods & protocols,0 -big earth data,1 -big data mining and analytics,0 -behavioral sciences,1 -azimuth,0 -austrian review of international and european law,1 -australian journal of civil engineering,0 -archives of foundry engineering,0 -archaeological research in asia,1 -aquaculture and fisheries,1 -applied nanoscience,1 -apparatus,1 -anthropology & photography,0 -annals of gastroenterological surgery,1 -annali della fondazione verga,0 -animal behavior and cognition,1 -the anatolian journal of cardiology,0 -american journal of biological and environmental statistics,0 -alternative spirituality and religion review,1 -ag - about gender,0 -afrika statistika.,0 -african journal of emergency medicine,1 -advances in human biology,0 -acta oto-laryngologica case reports,1 -advances in dual diagnosis,1 -acta informatica pragensia,0 -acs earth and space chemistry,1 -acm transactions on modeling and performance evaluation of computing systems,1 -acm transactions on cyber-physical systems,1 -vasomed,0 -provincia,0 -peloponnīsiaka,0 -limnology and oceanography letters,1 -journal of olympic history,0 -acta pharmaceutica sinica b,1 -physical sciences reviews,1 -discussion paper (population europe),0 -world scientific proceedings series on computer engingeering and information science,1 -hardwood conference proceedings,0 -"international conference for entrepreneurship, innovation & regional development",0 -publications of the international society for orthodox church music,0 -mechanika,0 -international power electronics and motion control conference,1 -international heat transfer conference,0 -mecánica computacional,0 -global business conference,0 -proceedings of machine learning research,1 -tourism and hospitality industry,0 -eucen studies,0 -proceedings of the international conference egov-cedem-epart,1 -acta musicologica militantia,0 -tampereen teknillinen yliopisto. rakennustekniikan laboratorio. rakennustuotanto ja -talous. raportti.,0 -sobre prácticas artísticas y políticas de la edición,1 -dagstuhl reports,0 -ariadnī. parartīma.,0 -ist-africa,0 -proceedings of the iass annual symposium,0 -cumulus conference proceedings,0 -"destech transactions on social science, education and human science",0 -proceedings of the ... annual conference on research in undergraduate mathematics education,0 -ieee international conference on computer vision workshops,1 -conference proceedings : the future of education,0 -technical digest - international electron devices meeting,0 -international wireless communications and mobile computing conference,1 -proceedings of the world congress on new technologies,0 -lecture notes in networks and systems,1 -trends in mathematics,1 -atas da conferência da associação portuguesa de sistemas de informação,0 -theatre symposium,0 -international conference on network and service management,1 -"proceedings of the ... international conference on intellectual capital, knowledge management & organisational learning",0 -proceedings of the ieee conference on nanotechnology,1 -addiction science & clinical practice,1 -revue japonaise de didactique du francais,0 -od teorije do prakse u jeziku struke,0 -softcom,1 -eur : scientific and technical research series,1 -proceedings of the european society for aesthetics,0 -proceedings of the ... physics education research conference,0 -anzmac conference proceedings,0 -e-journal of nondestructive testing,0 -proceedings : euromicro workshop on parallel and distributed processing,0 -aspects of applied biology,0 -vdi-berichte,0 -"translation, cognition & behavior",1 -human rights education review,1 -vibroengineering procedia,1 -journal of measurements in engineering,0 -mathematical models in engineering,1 -journal of complexity in health sciences,1 -periodica polytechnica,0 -cinema,1 -fleks,1 -public health panorama,1 -high voltage,1 -languages,1 -journal of chinese political science,1 -integrating materials and manufacturing innovation,1 -revue internationale des technologies en pédagogie universitaire,1 -revue internationale de pédagogie de l'enseignement supérieur,0 -"the international journal of intelligence, security, and public affairs",1 -nawa,0 -the social history of alcohol and drugs,1 -jmir aging,0 -unlikely,0 -quêtes littéraires,1 -accounting & financial control,1 -geopolitics under globalization,1 -tourism & travelling,0 -knowledge & performance management,0 -journal of applied linguistics and applied literature : dynamics and advances,1 -journal for reattach therapy and developmental diversities,1 -street art & urban creativity,1 -ethnologies,1 -perspectives on terrorism,1 -studia universitatis babeş-bolyai : philologia,1 -studia universitatis babeş-bolyai : bioethica,0 -"studia universitatis ""babeş-bolyai"" : digitalia",1 -studia universitatis babeş-bolyai : philosophia,0 -advances in pediatric research,0 -agriculture and natural resources,0 -international journal of trade and global markets,1 -aci open,0 -functional linguistics,1 -debats,0 -non-coding rna,0 -nordic journal on law and society,1 -acta historica universitatis klaipedensis,1 -rethinking ecology,1 -ijtte,0 -mathematical inverse problems,0 -asia pacific journal of mathematics,1 -neurophotonics,1 -journal of quantitative methods,1 -opera historica,0 -sporto mokslas,0 -inscriptions,1 -slovo.ru: baltijskij akcent,1 -k-12 stem education,1 -journal of functional morphology and kinesiology,1 -shengli xuebao,0 -media practice and education,1 -the gissing journal,0 -nederlands tijdschrift voor tandheelkunde,1 -"warasan witsawakammasat, chulalongkorn university",0 -nyctalus,0 -biologičeskie membrany,0 -zidonghua xuebao,0 -archives of environmental protection,1 -rchd: creación y pensamiento,1 -interacções,0 -journal of the international society for respiratory protection,1 -sarhad journal of agriculture,0 -arts,0 -therapeutics and clinical risk management,1 -clinicoeconomics and outcomes research,1 -moravian geographical reports,1 -dokuz eylül üniversitesi i̇şletme fakültesi dergisi,0 -poligrafi,0 -arena journal,0 -slovenská politologická revue,1 -computer and telecommunications law review,0 -brazilian journal of physical therapy,1 -international journal of technology management & sustainable development,1 -arbeidsrett,1 -journal of information technology cases and applications,1 -corrosion science and technology,0 -journal of science and technology of the arts,1 -international journal of health sciences,1 -zhonghua erkexue zazhi,0 -entomological research,1 -journal of indian business research,1 -power institutions in post-soviet societies,1 -scrutiny2,1 -australian journal of maritime and ocean affairs,1 -romanian journal of regional science,0 -global journal of health science,0 -the american journal of case reports,0 -international journal on advances in security,1 -journal of cancer science & therapy,0 -èkonomika i upravlenie,0 -lir.journal,0 -revue nordique des études francophones,1 -irish journal of paramedicine,1 -qualitative research in education,1 -journal of surgical case reports,1 -psychology of sexualities review,0 -brics law journal,0 -borderline personality disorder and emotion dysregulation,1 -communication design,0 -bmj global health,1 -sistemnyj analiz i logistika,0 -scientia agropecuaria,0 -paper and biomaterials,0 -eurasian journal of economics and finance,0 -medical science and discovery,0 -journal of cultural research in art education,0 -journal of gerontology & geriatric research,0 -revista conhecimento online,1 -journal of spatial and organizational dynamics,0 -the iafor journal of education,1 -journal of oral health and biosciences,0 -journal of economic structures,1 -annales mathématiques du québec,1 -journal of electronic research and application,0 -international journal of pharmaceutical and phytopharmacological research,0 -journal of computational design and engineering,1 -security and defence quarterly,1 -international journal of innovation,1 -international journal of physics,0 -international journal of advanced engineering research and sciences,0 -canadian international journal of social science,0 -hamburger journal für kulturanthropologie,0 -austin journal of anesthesia and analgesia,0 -tidsskrift for omsorgsforskning,1 -german journal of human resource management,1 -health science reports,1 -european journal of interdisciplinary studies,0 -international journal of education and social science,0 -biological psychiatry : cognitive neuroscience and neuroimaging,1 -progress in preventive medicine,1 -international journal of wettability science & technology,1 -leaves,1 -antiatlas journal,1 -journal of embodied research,1 -rheumatology advances in practice,1 -journal of computer applications in archaeology,1 -journal of hospitality and tourism insights,0 -revista brasileira de pesquisa (auto)biográfica,0 -european public & social innovation review,1 -nuart journal,1 -smart cities and regional development journal,0 -journal of alzheimer's disease reports,1 -european journal of environment and public health,0 -european journal of human security,1 -international journal of nursing & care,0 -obm genetics,0 -eurasian journal of medical investigation,0 -education reform journal,1 -journal of molecular and clinical medicine,0 -current trends in ophthalmology,0 -hepatobiliary surgery and nutrition,1 -international journal of pharmaceutical research and allied sciences,0 -project management research and practice,0 -reviews of adhesion and adhesives,0 -journal of tropical biology and conservation,1 -studia turistica,0 -current urology reports,1 -current treatment options in cardiovascular medicine,1 -tijdschrift voor bedrijfs- en verzekeringsgeneeskunde,0 -"proceedings of the ... workshop on mathematics, computer science and technical education",0 -changing perspectives and approaches in contemporary teaching,1 -proceedings of the ica,0 -globalization and its socio-economic consequences,0 -kne life sciences,0 -book of abstracts (elearning and software for education),0 -education and new developments,1 -engineering for rural development,0 -enanpad - encontro da anpad,0 -fgi reports,0 -laboratorium för folk och kultur,0 -papers on social representations : threads of discussion,1 -health psychology bulletin,1 -cybersecurity,1 -journal of virtual exchange,0 -journal of education for life,1 -frontiers in big data,1 -voluntary sector review,1 -annales mercaturae,1 -journal of scottish thought,0 -british journal of psychotherapy,1 -global trade and customs journal,0 -landscape architecture frontiers,1 -ocular oncology and pathology,1 -university of bologna law review,0 -exercise and quality of life,1 -nazariyat islam felsefe bilim tarihi araştırmaları dergisi,1 -"architecture, city and environment",1 -cahiers de droit fiscal international,0 -bone research,2 -phenomenology and mind,2 -third world thematics,1 -ecnu review of education,1 -malice,0 -international journal of heritage architecture,0 -international journal of environmental impacts,0 -"east, west",1 -npj flexible electronics,3 -history australia,1 -sls varia,0 -digithum,1 -journal of moral theology,1 -from the european south,1 -journal of tax administration,1 -autism & developmental language impairments,1 -socialist studies,1 -international journal of theoretical and applied nanotechnology,1 -universe,1 -archaeological review from cambridge,0 -asian journal of management,0 -quarterly journal of education,0 -international journal of electronic governance,1 -costituzionalismo.it,1 -new disease reports,1 -iranian journal of applied animal science,0 -journal of cardiovascular development and disease,1 -advances in agriculture,0 -journal of advances in dairy research,0 -international journal of nursing sciences,1 -agricultural and biological sciences journal,0 -biochemistry and biophysics reports,1 -mobile culture studies. the journal,1 -vidyodaya journal of management,0 -advance research journal of multidisciplinary discoveries,0 -"ieee journal of electromagnetics, rf and microwaves in medicine and biology",1 -"international journal of public and private perspectives on healthcare, culture, and the environment",0 -urban development issues,1 -acta linguistica academica,0 -precision nanomedicine,0 -current clinical microbiology reports,0 -"abstracts of the proceedings (international ofel conference on governance, management and entrepreneurship)",0 -journal of contemporary marketing science,0 -heritage,1 -the international journal of design in society,1 -proceedings (eu pvsec),1 -journal of sustainable mining,1 -archives of clinical and medical case reports,0 -chiropractic & manual therapies,1 -advances in robotics & mechanical engineering,0 -journal of popular music education,1 -women's studies in communication,1 -eclinicalmedicine,1 -current issues in personality psychology,0 -digital psychiatry,1 -applied general topology,1 -renewable energy focus,1 -european journal of social sciences studies,0 -international journal of media and information literacy,1 -academicus,1 -international journal of dynamics and control,1 -the international journal of training research,1 -lenguaje y textos,1 -global constitutionalism,1 -advances in autism,1 -technology and economics of smart grids and sustainable energy,1 -current sustainable/renewable energy reports,1 -international journal of agricultural technology,0 -hydrology,1 -international journal of business and management,1 -levende talen tijdschrift,0 -the polish journal of aesthetics,1 -journal of research in innovative teaching & learning,1 -health literacy research and practice,1 -journal of european periodical studies,1 -international critical thought,1 -journal of transportation engineering : part b. pavements,1 -journal of transportation engineering : part a. systems,1 -international journal of discrimination and the law,1 -diabetes & metabolic syndrome,1 -"ecps, journal of educational, cultural and psychological studies",1 -post classical archaeologies,1 -papers in palaeontology,1 -journal of ibero-romance creoles,1 -international journal of health economics and management,1 -interdisciplinary neurosurgery,1 -international journal of business and management invention,0 -the japanese political economy,1 -health services research and managerial epidemiology,1 -nordisk tidsskrift for pedagogikk & kritikk,1 -international journal of population data science,1 -inventions,1 -veterinary and animal science,1 -lifestyle genomics,1 -izvestiâ nacionalʹnoj akademii nauk respubliki kazahstan : seriâ himii i tehnologii,0 -microbiology resource announcements,0 -izvestiâ uralʹskogo federalʹnogo universiteta : gumanitarnye nauki,1 -frontiers in forests and global change,1 -advances in geo-energy research,1 -frontiers in synaptic neuroscience,1 -sustainable agriculture research,0 -mitteilungen der deutschen gesellschaft für allgemeine und angewandte entomologie,0 -proceedings of the ... connected learning summit,0 -journal of physics communications,1 -smart cities,1 -journal für medienlinguistik,1 -policy & practice,0 -value in health regional issues,0 -elephant and castle,1 -proceedings of the international conference on engineering design,1 -new trends and issues proceedings on humanities and social sciences,0 -ecosystems and people,1 -vis,1 -indian journal of theoretical physics,0 -journal of applied research in memory and cognition,1 -estudios irlandeses,1 -journal on education in emergencies,0 -paladyn,1 -ieee transactions on cognitive and developmental systems,1 -journal of research in music performance,1 -datenschutz und datensicherheit,0 -ambiances,1 -protection and control of modern power systems,2 -asia & the pacific policy studies,1 -music + practice,1 -participations,1 -edulingua,0 -journal of applied youth studies,1 -sikh formations,1 -journal of guangxi normal university : philosophy and social sciences edition,0 -american journal of education and learning,0 -arbetsmarknad och arbetsliv,1 -athens journal of health and medical sciences,0 -biophysical reviews,1 -bioresource technology reports,1 -bmc molecular and cell biology,1 -changjiang xueshu,0 -contact,0 -earth and space science,1 -humanistic management journal,1 -ijrdo - journal of educational research,0 -international journal of innovative technology and exploring engineering,0 -international journal of recent technology and engineering,0 -journal of environmental health science & engineering,0 -journal of gastronomy and tourism,1 -journal of wildlife and biodiversity,1 -nordic journal of criminology,1 -scholars journal of applied medical sciences,0 -theo-web,1 -uniped,0 -abstracts of the ica,0 -computer science and information technology,0 -mudīriyyat-i madrisah,0 -hunan daxue xuebao,0 -xiandai yuancheng jiaoyu yanjiu,0 -lecture notes in control and information sciences - proceedings,0 -beyond philology,1 -international conference on operations research and enterprise systems,1 -technology audit and production reserves,0 -migration and society,1 -journal of psycho-social studies,1 -australasian emergency care,1 -case reports in surgery,1 -"geology, geophysics & environment",0 -european endodontic journal,1 -gornyj žurnal,0 -translational medicine @ unisa,0 -web intelligence,1 -infection and drug resistance,1 -international journal of oral implantology,1 -journal of the australian ceramic society,1 -international journal of spa and wellness,1 -chinese clinical oncology,1 -tûrkologičeskie issledovaniâ,0 -journal for the study of postsecondary and tertiary education,0 -american journal of creative education,0 -studia humana,1 -journal of threat assessment and management,1 -studia philosophiae christianae,1 -historia constitucional,1 -australasian philosophical review,1 -urban transcripts,1 -education dialogue,1 -granular computing,1 -tecnoscienza,1 -acs applied bio materials,1 -philosophical inquiry in education,1 -sports coaching review,1 -bmj supportive & palliative care,1 -masculinities,1 -annals of economics and statistics,1 -journal of forensic accounting research,1 -krītika chronika,1 -zhongcaoyao,0 -journal of the galway archaeological and history society,0 -new zealand studies in applied linguistics,1 -"journal of infant, child, and adolescent psychotherapy",1 -tekstualia,1 -activitas nervosa superior,1 -animal reproduction,1 -open access macedonian journal of medical sciences,0 -echo research and practice,1 -ukrainian journal of physics,0 -kardiologiâ v belarusi,0 -zhongguo kexueyuan daxue xuebao.,0 -sens public,0 -proteus,1 -journal of organizational psychology,0 -"proceedings of the latvian academy of sciences : section b, natural, exact and applied sciences",0 -performance enhancement & health,1 -journal of the american society of cytopathology,1 -journal of mathematical analysis,0 -studies on national movements,1 -international journal of electronics and electrical engineering,0 -acta musei silesiae : scientiae naturales,1 -informatics in medicine unlocked,1 -cooperativismo & desarrollo,1 -revista de educación y derecho,0 -bmj paediatrics open,1 -condensed matter,1 -aims geosciences,1 -journal of experimental zoology a,1 -journal of big history,0 -university of asia pacific journal of law & policy,1 -fossil imprint,1 -teoria polityki,1 -folkloristika,1 -quaternary,1 -annals of language and literature,0 -journal of surgery and research,0 -dental clinics of north america,0 -la metallurgia italiana,0 -surfaces and interfaces,1 -quantum measurements and quantum metrology,1 -"tidsskrift for erstatningsrett, forsikringsrett og trygderett",1 -acs applied polymer materials,1 -"ieee transactions on biometrics, behavior, and identity science",1 -nature metabolism,2 -st. antony's international review,1 -tidsskrift for forretningsjus,0 -oslo law review,1 -journal of open humanities data,1 -translation matters,0 -science of gymnastics journal,1 -enquiry,1 -occupational health science,1 -eurasian journal of mathematical and computer applications,1 -developmental period medicine,0 -epidemiology and health,1 -baltic journal of sport and health sciences,0 -innovations,1 -policy design and practice,1 -jphys photonics,1 -revus : journal for constitutional theory and philosophy of law,1 -acs infectious diseases,1 -world art,1 -lesovedenie,0 -sociologija,1 -acta botanica hungarica,0 -historická demografie,1 -underwater acoustics conference and exhibition,0 -food science and human wellness,1 -uzbekistan journal of polymers,0 -frontiers in child and adolescent psychiatry,1 -mimarist,0 -next energy,1 -pathogens & immunity,0 -personalized medicine in psychiatry,1 -rehabilitación,0 -tektonika,1 -powders,1 -research directions : biotechnology design,0 -hub,0 -mathematics student,0 -journal of linear and topological algebra,1 -revista de filología de la universidad de la laguna,1 -international journal of clinical and experimental medicine,0 -"memory, mind & media",1 -učënye zapiski kazanskogo universiteta : seriâ estestvennye nauki,0 -ysec yearbook of socio-economic constitutions,1 -forum,1 -"ieee international conference on dependable, autonomic and secure computing",1 -the teaching of mathematics,0 -les cahiers forellis,0 -lhumaine,0 -"resources, environment and sustainability",1 -ex aequo,0 -business and human rights journal,1 -joint force quarterly,1 -svu-international journal of engineering sciences and applications,0 -"atlantis highlights in social sciences, education and humanities",0 -medical cannabis and cannabinoids,0 -peer community in genomics,0 -apl energy,1 -asian journal of social health and behavior,1 -global health science and practice,0 -health equity,0 -journal of family and community medicine,0 -forensic sciences,0 -journal of prison education research,1 -renewable and sustainable energy transition,1 -global pediatrics,1 -bergsoniana,1 -online journal of dentistry & oral health,1 -anales del instituto de actuarios españoles,0 -brünner beiträge zur germanistik und nordistik,1 -cultura tedesca,0 -combinatorics and number theory,1 -journal of imaging informatics in medicine,1 -advances in civil engineering materials,1 -bond law review,1 -journal of uoeh,0 -eucml,1 -npj vaccines,1 -journal of research management and administration,0 -chinese journal of environmental law,1 -journal of global catholicism,1 -practicing anthropology,0 -sustainability analytics and modeling,1 -"criminology, criminal justice, law & society",1 -south asian review,1 -health systems,1 -springerbriefs on pdes and data science,1 -glossa psycholinguistics,0 -neurosci,0 -electronic materials,0 -case studies in the environment,1 -pacific asia conference on information systems,1 -"international journal of geography, geology and environment",0 -dietetics,0 -elements in music and the city,1 -nuclear medicine and molecular imaging,1 -"international conference on humanoid, nanotechnology, information technology, communication and control, environment and management",0 -fractal and fractional,0 -eai/springer innovations in communication and computing,0 -lecture notes in intelligent transportation and infrastructure,0 -journal of standardisation,1 -isca international workshop on speech and language technology in education,0 -animal : science proceedings,0 -plant perspectives,-1 -philosophy of physics,-1 -discover analytics,-1 -journal of alternative finance,-1 -food and humanity,-1 -indoor environments,-1 -contemporary european politics,-1 -animal nutrition,-1 -security spectrum : journal of advanced security research,0 -pediatric investigation,-1 -european review of digital administration & law,-1 -environmental research : food systems,-1 -environmental data science,-1 -frontiers in urology,-1 -blood cancer discovery,-1 -placenta and reproductive medicine,-1 -journal of rehabilitation medicine : clinical communications,-1 -sichuan shifan daxue xuebao : ziran kexue ban,-1 -recent progress in nutrition,-1 -journal of critical infrastructure policy,-1 -international journal of information management data insights,-1 -darulfunun ilahiyat,-1 -nar cancer,-1 -european science editing,-1 -legalities,-1 -akropolis,-1 -ieee student conference on electrical machines and systems,-1 -rais conference proceedings,-1 -7 experiences summit of the experience research society,-1 -journal of italian philosophy,-1 -imdc,-1 -publications of the foundation for finnish sssyriological research,-1 -lecture notes on multidisciplinary industrial engineering,-1 -american heart journal plus : cardiology research and practice,-1 -cephalalgia reports,-1 -new perspectives on learning and instruction,3 -education and social theory,3 -gender and politics,3 -routledge advances in sociology,3 -routledge advances in feminist studies and intersectionality,3 -routledge research in gender and society,3 -"health, technology and society",3 -"youth, young adulthood and society",3 -routledge studies in renaissance and early modern worlds of knowledge,3 -early modern history : society and culture,3 -palgrave macmillan memory studies,3 -key issues in cultural heritage,3 -routledge explorations in economic history,3 -cambridge imperial and post-colonial studies series,3 -palgrave studies in cultural and intellectual history,3 -palgrave studies in the history of emotions,3 -palgrave studies in the history of social movements,3 -palgrave macmillan transnational history series,3 -palgrave studies in world environmental history,3 -palgrave studies in economic history,3 -palgrave studies in the history of childhood,3 -palgrave studies in political history,3 -routledge studies in archaeology,3 -studies in ethics,3 -studies in philosophy,3 -routledge handbooks in philosophy,3 -new problems of philosophy,3 -routledge studies in critical realism,3 -routledge studies in metaphysics,3 -new waves in philosophy,3 -philosophy and politics,3 -kindheit - bildung - erziehung : philosophische perspektiven,3 -routledge studies in contemporary philosophy,3 -routledge studies in seventeenth-century philosophy,3 -wissenschaftliche untersuchungen zum neuen testament,3 -wissenschaftliche untersuchungen zum neuen testament : reihe 2,3 -smart accessibility,-1 -"international conference on advanced mechatronics, intelligent manufacture, and industrial automation",-1 -springer proceedings in materials,-1 -ieee pacific visualization symposium,-1 -memorias ciie,-1 -"proceedings of the world congress on civil, structural, and environmental engineering",-1 -innovative practice in breast health,-1 -journal of ai law and regulation,-1 -syllogos,-1 -"journal of animal law, ethics and one health",-1 -global responsibility to protect,-1 -urban transformations,-1 -studientexte zur sprachkommunikation,-1 -international conference on artificial intelligence in information and communication,-1 -proceedings : ieee asia-pacific conference on circuits and systems,-1 -proceedings of forum acusticum,-1 -proceedings of the international conference on computer-aided architectural design research in asia,-1 -slavic language education,-1 -"bmj nutrition, prevention & health",-1 -beiträge empirischer musikpädagogik,-1 -tlalocan: revista de fuentes para el conocimiento de las culturas indígenas de méxico,-1 -engaged management review,-1 -sinet : an ethiopian journal of science,-1 -dìqiú xìnxī kēxué,-1 -journal of essential oil-bearing plants,-1 -sociologie,-1 -sensors and actuators reports,-1 -ophthalmology science,-1 -microlife,-1 -medical & clinical case reports journal,-1 -journal of neurophilosophy,-1 -international journal of sports physical therapy,-1 -indian journal of psychological medicine,-1 -global solutions journal,-1 -forced migration review,-1 -discover applied sciences,1 -bmj oncology,-1 -cjc pediatric and congenital heart disease,-1 -international journal of hybrid innovation technologies,-1 -pelastus- ja turvallisuusalan tutkimus,-1 -riti,-1 -adoranten,-1 -advanced devices & instrumentation,-1 -advancements in life sciences,-1 -agricultural research,-1 -analytical science advances,-1 -applied catalysis : open,1 -archivos de la sociedad española de oftalmología,-1 -baltic journal of legal and social sciences,-1 -big data in agriculture,-1 -biomarkers in neuropsychiatry,-1 -biomedical engineering advances,-1 -"city, territory and architecture",-1 -coaching,-1 -culture & business,-1 -cyborg and bionic systems,-1 -deep underground science and engineering,-1 -ds : derecho y salud,-1 -diagnostic and prognostic research,-1 -discover computing,3 -la matematica,-1 -meta-psychology,-1 -frontiers in dental medicine,-1 -proceedings : european academy of sciences and arts,-1 -advances in literary study,-1 -"politics, groups, and identities",-1 -energy proceedings,-1 -journal of bone metabolism,-1 -journal of vibration engineering & technologies,-1 -global business and organizational excellence,-1 -speki : nordic philosophy and education review,-1 -lgbtq + family,-1 -dress,-1 -"international journal of agriculture innovation, technology and globalisation",-1 -ejves vascular forum,-1 -psychology and behavioral sciences,-1 -mathematica pannonica,-1 -coastal studies & society,-1 -contemporary school psychology,-1 -hygiene and environmental health advances,-1 -discover civil engineering,-1 -european journal of empirical legal studies,-1 -european view,-1 -milan law review,-1 -superconductivity,-1 -svetovi,-1 -journal of qualitative criminal justice and criminology,-1 -i quaderni del m.ae.s,-1 -roma tre law review,-1 -intellectual history archive,-1 -"ieee international conference on internet of things and ieee green computing and communications and ieee cyber, physical and social computing and ieee smart data",-1 -clinical and translational discovery,-1 -filologiâ masalalari,-1 -journal of forest business research,-1 -din ve bilim muş alparslan üniversitesi i̇slami i̇limler fakültesi dergisi,-1 -occhialì,-1 -frontiers of digital education,-1 -npj mental health research,-1 -nature cities,-1 -acr open rheumatology,-1 -studia z historii filozofii,-1 -communication methods and measures,-1 -ex fonte,-1 -materials circular economy,-1 -health sciences investigations journal,-1 -agrarian south : the journal of political economy,-1 -journal of defense analytics and logistics,-1 -mathematical statistics and learning,-1 -circular economy,-1 -platforms & society,-1 -cmi communications,-1 -horyzonty polityki,-1 -gastro hep advances,-1 -npj gut and liver,-1 -experimental and computational multiphase flow,-1 -rsc chemical biology,-1 -international journal of wine business research,-1 -minerva cardiology and angiology,1 -water emerging contaminants & nanoplastics,-1 -international journal of changes in education,-1 -drone systems and applications,0 -e+m : ekonomie a management,-1 -emerging contaminants,-1 -energy harvesting and systems,-1 -energy material advances,-1 -family medicine and community health,-1 -frontiers in virology,-1 -frontiers in lab on a chip technologies,-1 -future energy,-1 -genes and environment,-1 -population medicine,-1 -pro publico bono – magyar közigazgatás,-1 -review of behavioral economics,-1 -priscilla papers,-1 -review of economic and business studies,-1 -pagine giovani,-1 -religiâ cerkovʹ obŝestvo,-1 -studies in social justice,-1 -taxonomy,-1 -review in business and economics,-1 -journal of electromagnetic engineering and science,0 -humanities and social sciences letters,-1 -svu-international journal of agricultural sciences,-1 -hybrid,-1 -"geology, ecology, and landscapes",-1 -green analytical chemistry,-1 -imeta,-1 -high temperature corrosion of materials,1 -international journal of architectural engineering technology,-1 -international journal of computer networks and applications,-1 -international journal of economics and financial issues,-1 -international journal of entrepreneurship,-1 -international journal of geotechnical engineering,-1 -international journal of heavy vehicle systems,-1 -iranian journal of electrical and electronic engineering,-1 -jiangsu gao-jiao,-1 -journal for digital legal history,-1 -journal of casting & materials engineering,-1 -journal of financial therapy,-1 -juris europensis scientia,-1 -kemanusiaan the asian journal of humanities,-1 -maǧallaẗ al-kuwayt li-l-ʿulūm,-1 -mat og helse i skolen,-1 -military medical research,-1 -nejm evidence,-1 -one health cases,-1 -beijing daxue jiaoyu pinglun,-1 -seamk journal,-1 -plant stress,-1 -shipin gongye ke-ji,-1 -semantic fieldwork methods,-1 -soils for europe,-1 -sustainable food technology,-1 -taikomoji kalbotyra,-1 -taiwania,-1 -the journal of zoo and aquarium researc,-1 -tissue barriers,-1 -translational exercise biomedicine,-1 -underground space,-1 -nrc handelsblad,-1 -the american banker,-1 -arkitekten,-1 -arkitektur,-1 -bitidningen,-1 -the economist,-1 -fiskeritidskrift för finland,-1 -international women's news,-1 -kameralehti,-1 -kätilölehti,-1 -käytännön maamies,-1 -kirjastolehti,-1 -kunst und kirche,-1 -landsbygdens folk,-1 -mds,-1 -nordisk numismatisk unions medlemsblad,-1 -metsästys ja kalastus,-1 -minería,-1 -mining engineering,-1 -the new rambler,-1 -nursery world,-1 -pakkaus,-1 -paper age,-1 -priroda,-1 -rakennuslehti,-1 -scientific american,-1 -skogsbruket,-1 -specializzazione,-1 -suomen kalastuslehti,-1 -suomen kuvalehti,-1 -suomen lehdistö,-1 -suomen silta,-1 -sydän,-1 -taide,-1 -tecnica molitoria,-1 -természet világa,-1 -theater der zeit,-1 -tuulilasi,-1 -ttt-digi,-1 -vene,-1 -die weltwoche,-1 -diabetes,-1 -metsästäjä,-1 -rakennustaito,-1 -sotainvaliidi,-1 -the times higher education supplement,-1 -trädgårdsnytt,-1 -weekly epidemiological record,-1 -summary of proceedings,-1 -arkkitehtuurikilpailuja,-1 -ars medica,-1 -weekendavisen,-1 -berlingske tidende,-1 -mål + mæle,-1 -organist-bladet,-1 -jyllands-posten,-1 -panorama (makati city),-1 -horisont,-1 -naea news,-1 -intercom,-1 -nederlands juristenblad,-1 -de eerste dag,-1 -vox latina,-1 -frankfurter allgemeine,-1 -sprachreport,-1 -memoria,-1 -the washington post,-1 -olé,-1 -singapore architect,-1 -réforme,-1 -wire journal international,-1 -orgelforum,-1 -"working papers : lund university, department of linguistics",-1 -thule,-1 -populär arkeologi,-1 -kommunal ekonomi,-1 -smhi oceanografi,-1 -arte et marte,-1 -modernités russes,-1 -financial times,-1 -luthersk kirketidende,-1 -bondebladet,-1 -forskningspolitikk,-1 -der deutschunterricht,-1 -berufsbildung in wissenschaft und praxis,-1 -clarté,-1 -ekonomisk debatt,-1 -svensk kyrkotidning,-1 -balans,-1 -liekki,-1 -rapport,-1 -aktuellt om historia,-1 -etc,-1 -romhorisont,-1 -signum,-1 -virke,-1 -maanomistaja,-1 -teho,-1 -turkistalous,-1 -maitotalous,-1 -loa,-1 -metsälehti,-1 -ekt-sarja,-1 -suomen museoliiton julkaisuja,-1 -helsingin sanomat,-1 -ilta-sanomat,-1 -aku ankka,-1 -jägaren,-1 -ketju,-1 -suomen sukututkimusseuran julkaisuja,-1 -maaseudun tulevaisuus,-1 -opettaja,-1 -nuori lääkäri,-1 -ristin voitto,-1 -tm : tekniikan maailma,-1 -kaltio,-1 -baptria,-1 -kuurojen lehti,-1 -rakentajain kalenteri,-1 -numismaatikko,-1 -yliopisto,-1 -eläkkeensaaja,-1 -liikennevilkku,-1 -faktori,-1 -aamulehti,-1 -voima ja käyttö,-1 -perusta,-1 -valkonauha,-1 -koiramme,-1 -parole,-1 -pharmaca fennica,-1 -terveydenhoitaja,-1 -suomen kiinteistölehti,-1 -cp-lehti,-1 -nuorisotyö,-1 -tukiviesti,-1 -tie & liikenne,-1 -navigator magazine,-1 -tempus,-1 -uusi tie,-1 -helsingin reservin sanomat,-1 -sanansaattaja,-1 -toolilainen,-1 -rakentaja,-1 -kotipuutarha,-1 -vapaa ajattelija,-1 -sk24,-1 -kankaanpään seutu,-1 -demeter,-1 -hippos,-1 -tekstiiliopettaja,-1 -aamun koitto,-1 -tidningen åland,-1 -oulun ylioppilaslehti,-1 -ylioppilaslehti,-1 -sotilaskoti,-1 -tähdet ja avaruus,-1 -puumies,-1 -ats ydintekniikka,-1 -winterblommor,-1 -suomen luonto,-1 -sändebudet,-1 -paperiliitto,-1 -rakennusinsinööri ja -arkkitehti,-1 -leipä leveämmäksi,-1 -kotimaa,-1 -julglädje,-1 -työterveyshoitaja,-1 -turun sanomat,-1 -kaleva,-1 -kansan tahto,-1 -keskisuomalainen,-1 -viitasaaren seutu,-1 -viisari,-1 -länsi-savo,-1 -tiedonantaja,-1 -kunnallislehti,-1 -wasabladet,-1 -valamon luostarin julkaisuja,-1 -kuhmoisten sanomat,-1 -iisalmen sanomat,-1 -länsiväylä,-1 -pyhäjokiseutu,-1 -hämeen sanomat,-1 -suomen joogalehti,-1 -sisä-suomen lehti,-1 -aureola,-1 -sotahuuto,-1 -kulttuurivihkot,-1 -kirkko ja kaupunki,-1 -erä,-1 -kainuun sanomat,-1 -savon sanomat,-1 -ydin,-1 -suomenmaa,-1 -itä-savo,-1 -koillissanomat,-1 -ylä-kainuu,-1 -sarjainfo,-1 -sana,-1 -pieksämäen lehti,-1 -kirkkomusiikki,-1 -suomalaisen lakimiesyhdistyksen julkaisuja : c-sarja,-1 -it,-1 -merikarhu,-1 -läraren,-1 -muusikko,-1 -karhunhammas,-1 -ril,-1 -aspekti,-1 -svenska folkskolans vänners kalender,-1 -jalkaväen vuosikirja,-1 -sienilehti,-1 -outokummun seutu,-1 -karjalan heili,-1 -kansan uutiset,-1 -tammerkoski,-1 -maanpuolustus,-1 -fredsposten,-1 -ravitsemuskatsaus,-1 -delectus seminum,-1 -koululainen,-1 -baltic sea environment proceedings,-1 -sara hildénin taidemuseon julkaisuja,-1 -report,-1 -research report : department of chemistry,-1 -palveluskoirat,-1 -hämeenlinnan kaupunkiuutiset,-1 -keski-suomen linnut,-1 -päijät-hämeen linnut,-1 -vapaussoturi,-1 -katsauksia,-1 -väestöntutkimuslaitoksen julkaisusarja d,-1 -siipirikko,-1 -sauna,-1 -tieto tuottamaan,-1 -vitriini,-1 -matinen raporttisarja,-1 -ursan julkaisuja,-1 -oulun kaupunkisuunnittelu,-1 -iitinseutu,-1 -kouvolan sanomat,-1 -nappi,-1 -puu,-1 -marhaba,-1 -karjalainen,-1 -ylä-satakunta,-1 -tietolinja,-1 -geofysiikan päivät,-1 -viesti-vesti,-1 -kilpisjärvi notes,-1 -hevosenomistaja,-1 -tehy,-1 -rantapohja,-1 -elintarvikeylioppilas,-1 -by : tekniset ohjeet,-1 -by : oppikirjat,-1 -tiimi,-1 -vanhustyö,-1 -seura,-1 -solubiologi,-1 -uusi lahti,-1 -inocula,-1 -språkbruk,-1 -portti,-1 -nya åland,-1 -talvikukkia,-1 -vuosikirja,-1 -orkidealehti,-1 -sibelius-akatemian julkaisuja,-1 -porras,-1 -vindögat,-1 -rantasalmen lehti,-1 -hashi,-1 -report,-1 -pimpinella,-1 -siirtolapuutarha,-1 -etelä-suomen sanomat,-1 -itä-häme,-1 -hiljainen seurakunta,-1 -pyhäjärven sanomat,-1 -forskning för framåt,-1 -oras,-1 -lapin kansa,-1 -ase,-1 -kotiseudun sanomat,-1 -moottori,-1 -leija,-1 -god tid,-1 -tehohoito,-1 -ikiliikkuja,-1 -suomen tieteellisen kirjastoseuran julkaisuja,-1 -stylus,-1 -merikarvia-lehti,-1 -statens offentliga utredningar,-1 -patents & licensing,-1 -area,-1 -aesculapius,-1 -bokvännens bok,-1 -družina,-1 -élet és irodalom,-1 -hitsaustekniikka,-1 -jelenkor,-1 -karjalan heimo,-1 -kiina sanoin ja kuvin,-1 -kauppalehti,-1 -reports from the kevo subarctic research station,-1 -lyrikvännen,-1 -rajamme vartijat,-1 -skolhistoriskt arkiv,-1 -ulkopolitiikka,-1 -nordisk arkivnyt,-1 -norrbotten,-1 -partio,-1 -ruotuväki,-1 -suomi-unkari,-1 -sosiaalivakuutus,-1 -publication,-1 -shinrin kumiai,-1 -nds,-1 -db,-1 -jahrbuch der europäischen integration,-1 -international lichenological newsletter,-1 -career planning and adult development journal,-1 -technical analysis of stocks and commodities,-1 -bulletin of the international council for traditional music,-1 -the double reed,-1 -sports medicine bulletin,-1 -athletic business,-1 -knack magazine,-1 -kuriren,-1 -epilepsia-lehti,-1 -omslaget,-1 -sukuset,-1 -toimintaterapeutti,-1 -suomenselän sanomat,-1 -valokynä,-1 -kielikukko,-1 -koiviston viesti,-1 -v8-magazine,-1 -työterveyslääkäri,-1 -kittilälehti,-1 -kivi,-1 -flattiviesti,-1 -luokanopettaja,-1 -suomen briard,-1 -bya nytt,-1 -suomen turku,-1 -kippari,-1 -exlibris-uutiset,-1 -lentoratas,-1 -teollisuuden näytelehti,-1 -pielavesi-keitele,-1 -lva,-1 -vihreä lanka,-1 -museo,-1 -mäyräkoiramme,-1 -acta universitatis ouluensis,-1 -stuk-a,-1 -raito,-1 -kangasalan luonto,-1 -perhehoito,-1 -silta,-1 -suomen eläinlääkäriliiton luentokokoelma,-1 -sulasol,-1 -nyckeln,-1 -ruumiin kulttuuri,-1 -leirikoulu,-1 -sähkömaailma,-1 -steinerkasvatus,-1 -raportti,-1 -teräsrakenne,-1 -onnimanni,-1 -viinikkala,-1 -resonans,-1 -image,-1 -tampereen taidemuseon julkaisuja,-1 -filmihullu,-1 -perhokalastus,-1 -juoksija,-1 -salon seudun sanomat,-1 -uutisvuoksi,-1 -rannikkoseutu,-1 -laitilan sanomat,-1 -korpilahti,-1 -lestijoki,-1 -kotiseutu-uutiset,-1 -lapuan sanomat,-1 -tejuka,-1 -puumala,-1 -kangasalan sanomat,-1 -joroisten lehti,-1 -joutsan seutu,-1 -arvopaperi,-1 -raportteja,-1 -valkeakosken sanomat,-1 -suur-jyväskylän lehti,-1 -västra nyland,-1 -sulkava,-1 -forssan lehti,-1 -pohjankyrö-lehti,-1 -karjala,-1 -sukuside,-1 -maankäyttö,-1 -kieli,-1 -karjala,-1 -tekniikan museon julkaisuja,-1 -iltalehti,-1 -pirta,-1 -puheterapeutti,-1 -nykypäivä,-1 -släkt och hävd,-1 -kylmäextra,-1 -länsi-uusimaa,-1 -mehiläinen,-1 -arkkitehti,-1 -suur-keuruu,-1 -saarijärveläinen,-1 -publications of the finnish dendrological society,-1 -salaojituksen tutkimusyhdistys ry:n tiedote,-1 -kalatalouden keskusliiton julkaisu,-1 -sastamalan joulu,-1 -kauppapolitiikka,-1 -kehittyvä kauppa,-1 -libero,-1 -shamrock,-1 -viitasaaren joulu,-1 -animalia,-1 -suomen ortopedia ja traumatologia,-1 -suomen musiikkikirjastoyhdistyksen julkaisusarja,-1 -ähtärinjärven uutisnuotta,-1 -musiikkiterapia,-1 -juvan lehti,-1 -rakennussanomat,-1 -kalajokilaakso,-1 -spirium,-1 -pietarsaaren sanomat,-1 -bongari,-1 -soinin joulu,-1 -suomalainen kivi,-1 -laulupedagogi,-1 -automaatioväylä,-1 -padasjoen sanomat,-1 -nippi,-1 -super,-1 -poliisikoira,-1 -et-lehti,-1 -ympyriäinen,-1 -aquarius,-1 -hippiäinen,-1 -kosmoskynä,-1 -helikon,-1 -suomen pankin keskustelualoitteita,-1 -fiskarposten,-1 -satakunnan kauppakamari,-1 -sielunhoidon aikakauskirja,-1 -maatalouskalenteri,-1 -reisjärvi-lehti,-1 -kosmetologi sky,-1 -pinni,-1 -käpylä-lehti,-1 -lammas ja vuohi,-1 -sitra,-1 -maito ja me,-1 -lantbrukskalender,-1 -tekniikka & talous,-1 -ristiinalainen,-1 -finn-brits,-1 -lempäälän joulu,-1 -elintarvike ja terveys,-1 -suomen lääketilasto,-1 -skeptikko,-1 -trioli,-1 -museokello,-1 -savot,-1 -ilmajoki-lehti,-1 -lestin mutti,-1 -ykköslohja,-1 -research reports,-1 -rihveli,-1 -miina sillanpään säätiön julkaisusarja,-1 -ikkunapaikka,-1 -projektiuutiset,-1 -filatelisti,-1 -lehtimäen joulu,-1 -kehitys,-1 -muisti,-1 -uusio-uutiset,-1 -kide,-1 -tornionlaakson vuosikirja,-1 -totto,-1 -erityiskasvatus,-1 -siikajokilaakso,-1 -hevosurheilu,-1 -kuhmolainen,-1 -kirkhakkinen,-1 -humanisti,-1 -tuottava peruna,-1 -virikkeitä,-1 -katajanokan kaiku,-1 -kehittyvä elintarvike,-1 -tampereen rakennusmestari,-1 -kotilääkäri,-1 -vi hörs,-1 -anarâš,-1 -ses,-1 -kytösavut,-1 -opas,-1 -musta taide,-1 -kortesjärven joulu,-1 -saviseudun joulu,-1 -artelogi,-1 -hehkuva hiillos,-1 -educator,-1 -vatt-tutkimuksia,-1 -keski-espoon sanomat,-1 -paikallisliikenne,-1 -lapin yliopiston oikeustieteellisiä julkaisuja,-1 -lasirakentaja,-1 -sydän-hämeen lehti,-1 -keskipohjanmaa,-1 -muovi,-1 -taloustaito,-1 -lampin raitti,-1 -mercurius,-1 -helmi,-1 -koneyrittäjä,-1 -charter club,-1 -nykytaiteen museon julkaisuja,-1 -ensi- ja turvakotien liiton julkaisu,-1 -eläinten ystävä,-1 -asuminen ja yhteiskunta,-1 -juurikassarka,-1 -saksanpaimenkoira,-1 -tiedonjyvä,-1 -akys-tiedote,-1 -fysioterapia,-1 -kymen sanomat,-1 -sähkö-tele,-1 -ortodoksinen opettaja,-1 -asuntomme,-1 -koti-kajaani,-1 -plari,-1 -lempäälän-vesilahden sanomat,-1 -tervareitti,-1 -räisäläinen,-1 -uutis-jousi,-1 -sampsa,-1 -fysi,-1 -julkaisu : länsi-uudenmaan vesi ja ympäristö,-1 -lokalhistorisk magasin,-1 -discussion paper,-1 -klassekampen,-1 -morgenbladet,-1 -form,-1 -ph-status,-1 -biosphère,-1 -specimina fennica,-1 -gimtoji kalba,-1 -estiem magazine,-1 -varðin,-1 -kristeligt dagblad,-1 -perspektiv,-1 -politiken,-1 -retorik magasinet,-1 -uvsor,-1 -geografie,-1 -ercim news,-1 -forum recht,-1 -bürgerrechte & polizei,-1 -politisches lernen,-1 -circus-zeitung,-1 -junge welt,-1 -welttrends,-1 -korea-forum,-1 -cross-cultural communication,-1 -,-1 -benchmark,-1 -the communicator,-1 -dipterists digest,-1 -the quarterly,-1 -rsa journal,-1 -the newsletter,-1 -latissimus,-1 -qinghua daxue jiaoyu yanjiu,-1 -zhishi wenku,-1 -shijie jianzhu,-1 -le français à l'université,-1 -ices cooperative research report,-1 -swara,-1 -the european archaeologist,-1 -le mauricien,-1 -speak out!,-1 -icom-cc newsletter working group textiles,-1 -polar libraries bulletin,-1 -wired,-1 -international bear news,-1 -resource,-1 -the finnish american reporter,-1 -the bulletin of the international association of forensic toxicologists,-1 -the kodály envoy,-1 -international journal of entrepreneurship,-1 -horn of africa bulletin,-1 -hanagället,-1 -divan,-1 -nordisk pappershistorisk tidskrift,-1 -svenska dagbladet,-1 -dagens nyheter,-1 -nordic road and transport research,-1 -lommen,-1 -oj,-1 -röstläget,-1 -aftonbladet,-1 -upsala nya tidning,-1 -med andra ord,-1 -eurōpaikī ekfrasī,-1 -viento sur,-1 -el país,-1 -les dossiers d'archéologie,-1 -la faute à rousseau,-1 -new zealand aquatic environment and biodiversity report,-1 -fotoaparát,-1 -hegesztéstechnika,-1 -archaeolingua,-1 -mówią wieki,-1 -tiedetoimittaja,-1 -arktisen keskuksen tiedotteita,-1 -pohjois-savon sairaanhoitopiirin julkaisuja,-1 -betoni,-1 -julkaisuja,-1 -satelliitti,-1 -lapinkoira,-1 -kontur,-1 -joulukannel,-1 -keski-suomen sotaveteraanin joulu,-1 -konneveden joulu,-1 -lammin kotiseutulehti,-1 -kuurtanes-seuran joulu,-1 -tiimalasi,-1 -vimpelin joulu,-1 -lexpress,-1 -sskh meddelanden,-1 -huimapyörä,-1 -poleemi,-1 -satikka,-1 -grafia,-1 -ptr,-1 -varsinais-suomen sotaveteraanin joulu,-1 -patina,-1 -uusi rovaniemi,-1 -eidote,-1 -synapsi,-1 -haagalainen,-1 -taito,-1 -sementtisanomat,-1 -tomo,-1 -autismi,-1 -jedidut,-1 -lähellä,-1 -metsähallituksen luonnonsuojelujulkaisuja,-1 -kuljetusyrittäjä,-1 -kuluttaja,-1 -radiomaailma,-1 -positio,-1 -sosiaali- ja terveysministeriön julkaisuja,-1 -sosiaali- ja terveysministeriön esitteitä,-1 -kaunis grani,-1 -diamina,-1 -sotilaspoika,-1 -hyvä terveys,-1 -journalisti,-1 -arkeologia nyt!,-1 -ot,-1 -maanmittauslaitoksen julkaisuja,-1 -selkäydinvamma,-1 -talotekniikka,-1 -keski-suomen sairaanhoitopiirin kuntayhtymän julkaisuja,-1 -rantalakeus,-1 -uudenmaan liiton julkaisuja,-1 -insu,-1 -talous & yhteiskunta,-1 -vaarojen sanomat,-1 -piplia,-1 -akustiikkapäivä,-1 -pinsetti,-1 -pelastustieto,-1 -julkaisusarja,-1 -julkaisusarja,-1 -punkalaitumen sanomat,-1 -pitäjäläinen,-1 -tulva,-1 -inkeriläisten viesti,-1 -viherpiha,-1 -virtain joulu,-1 -viherympäristö,-1 -rautatietekniikka,-1 -slf,-1 -sukeltaja,-1 -siy raportti,-1 -unholan aitta,-1 -faili,-1 -lapin yliopiston yhteiskuntatieteellisiä julkaisuja,-1 -villi,-1 -helsingin seudun sotaveteraani,-1 -valo,-1 -sompio,-1 -andante,-1 -tampereen museoiden julkaisuja,-1 -kulttuurihistoria nyt,-1 -ympäristökasvatus,-1 -päijät-hämeen liitto,-1 -metallitekniikka,-1 -pähkylä,-1 -aurora,-1 -poliklinikka,-1 -kapitaali,-1 -sosiaalibarometri,-1 -nuorisopsykoterapia-säätiön julkaisuja,-1 -viesti,-1 -källan,-1 -puumieskalenteri,-1 -acta,-1 -kirkkotie,-1 -karjalan kunnaat,-1 -myötätuulta merimaskussa,-1 -kuntatekniikka,-1 -sutisanomat,-1 -speedway-sanomat,-1 -farmiuutiset,-1 -nordia tiedonantoja,-1 -nauta,-1 -kronikka,-1 -jahti,-1 -aromi-lehti,-1 -moro,-1 -valmentaja,-1 -latšo diives,-1 -pohjois-karjala,-1 -silmähoitaja,-1 -p&o,-1 -kymenlaakson luonto,-1 -rahtarit,-1 -muotimaailma,-1 -raportteja,-1 -yliopiston nimipäiväalmanakka,-1 -sanelma,-1 -lauttakylä,-1 -elonkehä,-1 -puolustusministeriön julkaisuja,-1 -hakehila,-1 -julkaisu,-1 -jasesoi journal,-1 -kakkoskieli,-1 -impakti,-1 -riffi,-1 -suomen siipikarja,-1 -km vet,-1 -julkaisu,-1 -advokaatti,-1 -puhtaustieto,-1 -urologia fennica,-1 -helsingin yliopiston slavistiikan ja baltologian laitoksen opetusmonisteita,-1 -perussuomalainen,-1 -archimad,-1 -takoja,-1 -pilven veikko,-1 -turun yliopiston dosenttiyhdistyksen julkaisuja,-1 -ohutlevy,-1 -akaan seutu,-1 -alimenta,-1 -työpapereita,-1 -uutis-urho,-1 -sinapinsiemen,-1 -suomen valokuvataiteen museon julkaisuja,-1 -labyrintti,-1 -puutarha & kauppa,-1 -ihon aika,-1 -ilmansuojelu,-1 -aninkainen,-1 -tuli&savu,-1 -tsilari,-1 -tietoisku,-1 -utrip,-1 -euractiv,-1 -the philosophers' web magazine,-1 -port technology international,-1 -international airport review,-1 -the parliament magazine,-1 -hermes,-1 -easst review,-1 -eaie forum,-1 -gerōn,-1 -siaures atenai,-1 -udenrigs,-1 -årsbok,-1 -biodiverse från centrum för biologisk mångfald,-1 -tidningen utemiljö,-1 -research report,-1 -roadrunner,-1 -eu och arbetsrätt,-1 -skb rapport,-1 -technical report,-1 -arbetsrapport,-1 -forum för antroposofi,-1 -renhetsteknik,-1 -estonian marine institute report series,-1 -estonian literary magazine,-1 -reisimaailm,-1 -estonian art,-1 -meie maa,-1 -kunst,-1 -oma keel,-1 -sotsiaaltöö,-1 -svētdienas rīts,-1 -informatika,-1 -dialog,-1 -zei discussion paper,-1 -zef discussion papers on development policy,-1 -zenith,-1 -the diplomat,-1 -protecţia socială a copilului,-1 -lapin nuija,-1 -luomulehti,-1 -glorian koti,-1 -reports from the school of business and economics,-1 -acatiimi,-1 -menu,-1 -working papers,-1 -wagneriaani,-1 -helsingin ekonomi,-1 -lääkkeiden luokitus,-1 -meidän talo,-1 -julkaisu,-1 -europa,-1 -maatiainen,-1 -jäteplus,-1 -jäkkärä,-1 -uskontotiede,-1 -hetkinen raamatun lukemiseen,-1 -företagsnyckeln,-1 -kajo ́,-1 -teema,-1 -radiografia,-1 -hieroja,-1 -diabetes ja lääkäri,-1 -palveluesimies,-1 -ruusunlehti,-1 -selvityksiä,-1 -poliisiammattikorkeakoulun oppikirjat,-1 -jäsentiedote : westermarck society,-1 -auranmaan viikkolehti,-1 -"tampereen ammattikorkeakoulun julkaisuja : sarja a, tutkimuksia",-1 -"tampereen ammattikorkeakoulun julkaisuja : sarja b, raportteja",-1 -"tampereen ammattikorkeakoulun julkaisuja : sarja c, oppimateriaaleja",-1 -ny tid,-1 -aurinkolaiva,-1 -inarilainen,-1 -agora,-1 -huippu-urheilu-uutiset,-1 -upi working papers,-1 -mediuutiset,-1 -seinäjoen ammattikorkeakoulun julkaisusarja,-1 -seinäjoen ammattikorkeakoulun julkaisusarja,-1 -satama,-1 -verkkari,-1 -haava,-1 -lounais-lappi,-1 -sienet ja terveys,-1 -luontokuva,-1 -ryynäset,-1 -seili archipelago research institute publications,-1 -euro & talous,-1 -tutkimusselosteita,-1 -sente-julkaisuja,-1 -kodin pellervo,-1 -maatila-pellervo,-1 -ratkes,-1 -pohjola-norden,-1 -kivennapalainen,-1 -psykologi,-1 -pässinrata,-1 -sydän-satakunta,-1 -plaani,-1 -satakunnan ammattikorkeakoulu : raportit,-1 -satakunnan ammattikorkeakoulu : oppimateriaalit,-1 -satakunnan ammattikorkeakoulu : muut julkaisut,-1 -glorian ruoka & viini,-1 -pro interior,-1 -shaker,-1 -voima,-1 -visionääri,-1 -insider,-1 -kreodi,-1 -profiitti,-1 -chydenius,-1 -podoprintti,-1 -kello & kulta,-1 -suun terveydeksi,-1 -miilu,-1 -lumooja,-1 -sanalla sanoen,-1 -research reports,-1 -sylva,-1 -levi,-1 -taku-tiedote,-1 -maaseutu plus,-1 -liikenne- ja viestintäministeriön julkaisuja,-1 -turun ammattikorkeakoulun oppimateriaaleja,-1 -turun ammattikorkeakoulun puheenvuoroja,-1 -asukasviesti,-1 -vesiposti,-1 -meän tornionlaakso,-1 -tiede,-1 -synsygus,-1 -aleksanteri papers,-1 -reports from the department of philosophy,-1 -lähde,-1 -ry,-1 -turun ylioppilaslehti,-1 -neuvola & kouluterveys,-1 -kuljetus ja logistiikka,-1 -monikkoperheet,-1 -impilahtelainen,-1 -teollisuus-suomi,-1 -elinehto,-1 -forum 24,-1 -ruudinsavu,-1 -tuuma,-1 -verkkouutiset,-1 -revanssi,-1 -metsä,-1 -myynti & markkinointi,-1 -tuuloksen joulu,-1 -pohjois-suomen sosiaalialan osaamiskeskuksen julkaisusarja,-1 -calonian kutsu,-1 -etene-julkaisuja,-1 -publications of the giellagas institute,-1 -talentia,-1 -unisono,-1 -hiljaisuuden ystävät,-1 -elämäntarina,-1 -kajaanin ammattikorkeakoulun julkaisusarja,-1 -humanistilehti,-1 -itä-suomen sosiaalialan osaamiskeskuksen julkaisuja,-1 -kaakkois-suomen sosiaalialan osaamiskeskuksen julkaisuja,-1 -kummi,-1 -orimattilan aluelehti,-1 -roma,-1 -kansalliskirjaston gallerian julkaisuja,-1 -vellikuppi,-1 -sinebrychoffin taidemuseon julkaisuja,-1 -tritoniana,-1 -muuriankkuri,-1 -saariselän sanomat,-1 -bioenergia,-1 -tm rakennusmaailma,-1 -tek - tekniikan akateemiset,-1 -viro,-1 -niveltieto,-1 -literarus-literaturnoje slovo,-1 -diasteema,-1 -valtiovarainministeriön julkaisuja,-1 -bibban,-1 -tekninen opettaja,-1 -episodi,-1 -metsätehon raportti,-1 -mediamuseo rupriikin julkaisuja,-1 -aamuposti,-1 -julkaisusarja,-1 -kummin,-1 -puutarha-sanomat,-1 -ksoidin,-1 -kirjailija,-1 -money matters,-1 -microbiology today,-1 -newsbrief,-1 -world pipelines,-1 -grayling,-1 -durham middle east papers,-1 -opendemocracy,-1 -competition law insight,-1 -microbiologist,-1 -park & anlegg,-1 -kunstkritikk,-1 -tomo,-1 -ajs perspectives,-1 -bized,-1 -the american surveyor,-1 -meeting of the minds journal,-1 -international and comparative law review,-1 -social science research network,-1 -journal für ernährungsmedizin,-1 -the kathmandu post,-1 -levende talen magazine,-1 -suomalainen espanjassa,-1 -la razón digit@l,-1 -information,-1 -fakes forgeries experts,-1 -inforegio panorama,-1 -vestnik evropy,-1 -arts management newsletter,-1 -ifcn dairy report,-1 -the berlin journal,-1 -euroheat & power,-1 -european security and defence,-1 -albéitar,-1 -revista de educação musical,-1 -ncge news,-1 -tresearch,-1 -samtidshistoriska frågor,-1 -tidningen skogsteknik,-1 -axess,-1 -kart- & bildteknik,-1 -myntstudier,-1 -upptecknaren,-1 -sydsvenskan,-1 -svensk mykologisk tidskrift,-1 -njf report,-1 -äldre i centrum,-1 -språktidningen,-1 -östbulletinen,-1 -palliative-ch,-1 -zu guo,-1 -eurozine,-1 -ir,-1 -historia national geographic,-1 -av proyectos,-1 -revista de derecho concursal y paraconcursal,-1 -albéitar,-1 -focus junior,-1 -technical report,-1 -eui working papers law,-1 -eea report,-1 -baltic transport journal,-1 -isfnr newsletter,-1 -tartu tervishoiu kõrgkooli uurimistööde kogumik,-1 -selvedge,-1 -crop wild relative,-1 -the literary encyclopedia,-1 -scottish anti-poverty review,-1 -eurofenix,-1 -thinking highways,-1 -the european business review,-1 -newsletter,-1 -prora,-1 -european view,-1 -europe's world,-1 -suuhygienisti,-1 -discussion papers,-1 -sahim,-1 -julkaisuja : terveyden edistämisen tutkimuskeskus,-1 -cuporen julkaisuja,-1 -työpapereita,-1 -soveli,-1 -hiisi,-1 -eteläpohjalaiset juuret,-1 -seoppi,-1 -jyväskylän ammattikorkeakoulun raportteja,-1 -palopäällystö,-1 -pro terveys,-1 -hamkin julkaisuja,-1 -hamk ammatillisen opettajakorkeakoulun julkaisuja,-1 -adoptioperheet,-1 -vapaa-ajan kalastaja,-1 -suomen virallinen tilasto,-1 -tiedosta,-1 -meidän suomi,-1 -tärppi,-1 -w-album,-1 -jyväskylän yliopiston bio- ja ympäristötieteiden laitoksen tiedonantoja,-1 -motiivi,-1 -tietoasiantuntija,-1 -proagria keski-pohjanmaa,-1 -kipupuomi,-1 -palokka-lehti,-1 -pelastusopiston julkaisu,-1 -savon yrittäjä,-1 -jänkä,-1 -futuuri,-1 -spatia,-1 -lahden taidemuseon julkaisuja,-1 -kurikka-lehti,-1 -pohjalainen yrittäjä,-1 -tieto & trendit,-1 -finnish dance in focus,-1 -ucs,-1 -luksitko,-1 -tampereen yliopiston porin yksikön julkaisuja,-1 -ethnos-tiedote,-1 -aivoitus,-1 -geofoorumi,-1 -suomen ympäristökeskuksen raportteja,-1 -propo,-1 -tuloskalvosarja,-1 -discussion paper,-1 -kipuviesti,-1 -raportit,-1 -särö,-1 -korjaamo ja varaosaviesti,-1 -hang up,-1 -ruralia,-1 -taidehistoria,-1 -kuti,-1 -järjestöbarometri,-1 -farmasia,-1 -satakieliseminaari,-1 -hifimaailma,-1 -proagria itä-suomi,-1 -agricolan kirja-arvostelut,-1 -pianisti,-1 -intervalli,-1 -albatrossi,-1 -kaakkois-suomen sosiaalialan osaamiskeskuksen julkaisuja,-1 -cuporen verkkojulkaisuja,-1 -parikkalan-rautjarven sanomat,-1 -kotiseudun kasvot,-1 -lohjan saaristo,-1 -tutu-julkaisuja,-1 -replik,-1 -mittari,-1 -koivu,-1 -promaint,-1 -käpy-lehti,-1 -kirkon töissä,-1 -metsään,-1 -siemenpuun teemajulkaisu,-1 -telma,-1 -kokoro,-1 -el-sanomat,-1 -viisas raha,-1 -työ- ja elinkeinoministeriön julkaisuja,-1 -hs teema,-1 -kantri,-1 -österbottens tidning,-1 -elo,-1 -poliisiammattikorkeakoulun raportteja,-1 -satakunnan linnut,-1 -ilmatorjunta,-1 -tekesin katsaus,-1 -tekes programme report,-1 -atriatuottaja,-1 -neonataalihoitaja,-1 -aarre,-1 -terveys ja talous,-1 -simpukka,-1 -fincent publication series,-1 -savonian sanomat,-1 -turun museokeskuksen raportteja,-1 -poliittisen historian julkaisuja,-1 -jyväskylän yliopiston avoimen yliopiston verkko-julkaisuja,-1 -vatt working papers,-1 -elo,-1 -keski-suomen kiinteistöviesti,-1 -komiat,-1 -memo,-1 -yleistajuiset selvitykset,-1 -henki & elämä,-1 -defensor patriae,-1 -akti,-1 -ta plats i raseborg,-1 -rauhanturvaaja,-1 -palokuntalainen,-1 -ammattirakentaja,-1 -oaj lappi,-1 -hiihto,-1 -nivelposti,-1 -lapsiasiavaltuutetun toimiston julkaisuja,-1 -martat,-1 -uusikirkko kanneljärvi,-1 -turkuposti,-1 -eduskunnan tarkastusvaliokunnan julkaisu,-1 -yle,-1 -nautic,-1 -saima,-1 -kouvolan kaupunginmuseon julkaisuja,-1 -proagria keskusten liiton julkaisuja,-1 -sibelius-akatemian selvityksiä ja raportteja,-1 -selänne,-1 -miikkulainen,-1 -länsi-saimaan sanomat,-1 -voimistelu,-1 -hsy,-1 -biotekniikan neuvottelukunnan julkaisuja,-1 -proviisori,-1 -senioriopettaja,-1 -maintworld,-1 -working paper series,-1 -dino,-1 -pirkanmaan pääasiat,-1 -metsän henki,-1 -määräykset ja ohjeet,-1 -raportit ja selvitykset,-1 -karjalan kuvalehti,-1 -kansalaisyhteiskunta,-1 -susikko,-1 -global south development magazine,-1 -eurooppalainen,-1 -tanhuviesti,-1 -maailman kuvalehti,-1 -terveysliikuntauutiset,-1 -novia publikation och produktion,-1 -hengitys,-1 -keski-suomen sukututkijat,-1 -kotiseutuposti,-1 -illusioni,-1 -report series in astronomy,-1 -working paper,-1 -luma,-1 -tiedebarometri,-1 -tamk.nyt,-1 -tamk.today,-1 -sic!,-1 -päätösten tueksi,-1 -novia publikations and productions,-1 -novia publikation och produktion,-1 -novia publications and productions,-1 -maailmankirjat,-1 -aalto-yliopiston julkaisusarja,-1 -tutkimuskatsauksia,-1 -pikkutrilli,-1 -amk-lehti,-1 -effortti,-1 -jyväskylän taidemuseon julkaisuja,-1 -turvallisuus & riskienhallinta,-1 -julkaisusarja,-1 -"fimea kehittää, arvioi ja informoi",-1 -karjal žurnualu,-1 -viiskunta,-1 -aq,-1 -yhys tiedotuslehti,-1 -viestinnän tutkimusraportteja,-1 -valtiontalouden tarkastusviraston selvitykset,-1 -informaatiotieteiden yksikön raportteja,-1 -liikunnan ammattilainen,-1 -elinikäisen ohjauksen verkkolehti,-1 -kompositio,-1 -titanik-gallerian julkaisu,-1 -kemiläinen,-1 -valtakunnallisen ohjausalan osaamiskeskuksen työpapereita,-1 -ålands sjöfart,-1 -print&media,-1 -aalto university magazine,-1 -finnish foreign policy papers,-1 -klubilehti,-1 -fólio,-1 -bfw-dokumentation,-1 -courriel européen des langues,-1 -"oecd science, technology and industry working papers",-1 -design 360°,-1 -health systems in transition,-1 -rbk,-1 -miteinander,-1 -eui working papers mwp,-1 -report no,-1 -australian manufacturing technology,-1 -anu centre for european studies briefing paper series,-1 -east asia forum,-1 -iatefl slovenia newsletter,-1 -"micro, macro & mezzo geoinformation",-1 -báo giáo dục,-1 -iwh-diskussionspapiere,-1 -irz,-1 -ukraine-analysen,-1 -tcworld,-1 -antifaschistisches info-blatt,-1 -hinterland,-1 -lotta,-1 -journal culinaire,-1 -chrismon plus,-1 -forum wohnen und stadtentwicklung,-1 -signaling and communication in plants,-1 -benjamins current topics,-1 -european employment law cases,-1 -international journal for educational media and technology,-1 -papersiemed,-1 -norden,-1 -aktuel nordisk odontologi,-1 -beletra almanako,-1 -contracting excellence,-1 -réflexions en gynécologie-obstétrique,-1 -hipo tesis,-1 -news & science,-1 -europeanfm insight,-1 -proekt baltiâ,-1 -lesprominform,-1 -qvintensen,-1 -sjöfartstidningen,-1 -management of innovation and technology,-1 -tidskriften stad,-1 -newsletter,-1 -palliativ vård,-1 -släkthistoria,-1 -klass,-1 -bazar masarin,-1 -svenskt kvinnobiografiskt lexikon,-1 -20tal,-1 -passive house +,-1 -dearquitectura,-1 -ara,-1 -global responsibility,-1 -tijd-schrift,-1 -ingenere newsletter,-1 -government gazette,-1 -newsletter,-1 -fahamu refugee legal aid newsletter,-1 -diversity and equality in health and care,-1 -snow,-1 -trust quarterly review,-1 -the journal of cross border studies in ireland,-1 -gerundium,-1 -fao fisheries and aquaculture circular,-1 -fao fisheries and aquaculture proceedings,-1 -the circle,-1 -joto afrika,-1 -national bank of poland working paper,-1 -haeoe han-gukak doseogwan donghyang bogoseo,-1 -guerres & histoire,-1 -harvard business review türkiye,-1 -jacobin,-1 -the bible and interpretation,-1 -e-flux journal,-1 -bioengineered,-1 -survey practice,-1 -mundorama,-1 -ibero-american symposium on project approaches in engineering education,-1 -gas for energy,-1 -working papers in european language diversity,-1 -sabah ülkesi,-1 -compliance-berater,-1 -magazyn polonia,-1 -herzogiella,-1 -a forum for theology in the world,-1 -language on the move,-1 -sief newsletter,-1 -mechatronica & machinebouw,-1 -detskij sad,-1 -migration policy practice,-1 -hamuli,-1 -kirik & teoloogia,-1 -structures and functions,-1 -tutulus,-1 -boundaries,-1 -sosiaali- ja terveysministeriön raportteja ja muistioita,-1 -liito,-1 -itua,-1 -vtt visions,-1 -vtt research highlights,-1 -vtt technology,-1 -kotitilalta,-1 -spek tutkii,-1 -jäsenlehti,-1 -uusimetsä,-1 -petäjävesi,-1 -metsänomistajat keski-suomi,-1 -elinvoimaa alueelle,-1 -raportteja,-1 -jokka,-1 -uutisjyvät,-1 -manuaali,-1 -rhododendronlehti,-1 -helsingin kaupungin keskushallinnon julkaisuja,-1 -valtion liikuntaneuvoston julkaisuja,-1 -svängrum,-1 -suomenhevonen,-1 -tuuletus,-1 -teatteri&tanssi+sirkus,-1 -"palvelualojen ammattiliitto pam ry, julkaisuja",-1 -kalajokiseutu,-1 -kyvyt käyttöön,-1 -gastroenterologiahoitajat,-1 -eläin,-1 -kasvu,-1 -demokraatti,-1 -eläinten hyvinvointi suomessa,-1 -welhoja verkossa,-1 -erityisopettaja,-1 -lasin maailma,-1 -tieteellisten seurain valtuuskunnan verkkojulkaisuja,-1 -kansalliskirjaston julkaisuja,-1 -raportteja ja selvityksiä,-1 -sylvi,-1 -didrichsenin taidemuseon julkaisu,-1 -"tampere studies in language, translation and literature",-1 -akt,-1 -rinnakkain,-1 -kampus kustannus,-1 -kirkonkellari,-1 -poveri,-1 -pihvikarja,-1 -tunnuslukuja ja tutkimuksia,-1 -kuivike,-1 -ibd,-1 -apus,-1 -iso numero,-1 -spirit,-1 -jane&paulo,-1 -tutkimusraportteja,-1 -irlanninsetteri,-1 -palvelututkimus,-1 -helsingin psykoterapiayhdistys ry,-1 -seutulehti uutisoiva,-1 -viipurin pitäjäläinen,-1 -palliatiivinen hoito,-1 -le monde diplomatique & novaja gazeta,-1 -pro resto,-1 -hem och skola,-1 -lut scientific and expertise publications,-1 -lut scientific and expertise publications,-1 -valtra team,-1 -fidea,-1 -ammattikeittiöosaaja,-1 -liitos,-1 -sukujotos,-1 -poppis,-1 -kuriositeettikabi,-1 -wood flooring asia,-1 -desperta ferro,-1 -global innovation index,-1 -educazione linguistica language education,-1 -affarinternazionali,-1 -economia e politica,-1 -futuri,-1 -kanadan sanomat,-1 -international conference on tourism management and tourism relates issues,-1 -frontiers for young minds,-1 -analog magazine,-1 -transport manager,-1 -proceedings of the annual international conference on architecture and civil engineering,-1 -невский альманах,-1 -encyclopedia,-1 -ec2e2n newsletter,-1 -nordic working papers,-1 -известия санкт-петербургского государственного экономического университета,-1 -european transport conference past papers repository,-1 -efsa journal,-1 -"anais do simpósio internacional de educação a distância, encontro de pesquisadores em educação a distância",-1 -boletín,-1 -noste,-1 -fran-su,-1 -yours truly,-1 -tähdistö,-1 -keski-suomen insinööri,-1 -etla working papers,-1 -etla muistio,-1 -kide,-1 -pisamat,-1 -kotimaisten kielten keskuksen verkkojulkaisuja,-1 -värillä,-1 -työpaperi,-1 -bondeföretagaren,-1 -kiipeily,-1 -ensi- ja turvakotien liiton käsikirja,-1 -mustarinda,-1 -astra,-1 -pitäjänuutiset,-1 -lakeuren lairalla,-1 -purkamouutiset,-1 -informaatioteknologian tiedekunnan julkaisuja,-1 -mineralia,-1 -globalisti,-1 -tutkimuksesta tiiviisti,-1 -docpoint,-1 -kalevi sorsa säätiön julkaisuja,-1 -ranstakka,-1 -metsäpäijänne,-1 -read,-1 -jäsenlehti,-1 -hr viesti,-1 -slavica helsingiensia,-1 -jp kunnallissanomat,-1 -karelia-ammattikorkeakoulun julkaisuja,-1 -metsäsanoma,-1 -skogsägaren,-1 -indeksi,-1 -parikanniemen kontti,-1 -kainuun liitto,-1 -long play,-1 -cxo academy kirjat,-1 -aura,-1 -kemiauutiset,-1 -helsingin kaupungin pelastuslaitoksen julkaisuja,-1 -töölöläinen,-1 -hakastarolainen,-1 -kansanmusiikki,-1 -kainuun sosiaali- ja terveydenhuollon kuntayhtymä,-1 -sytyke,-1 -digipolis magazine,-1 -karelia,-1 -nykykielten laitoksen oppimateriaalia,-1 -ura,-1 -skrolli,-1 -työpapereita,-1 -lenninsiipi,-1 -kotiseutu,-1 -,-1 -potilaan lääkärilehti,-1 -hyvä selkä,-1 -meidän apteekki,-1 -turun yliopiston maantieteen ja geologian laitoksen julkaisuja,-1 -taapeli,-1 -nivala,-1 -kokkola,-1 -väkevä,-1 -täydellinen ympyrä,-1 -itäväylä,-1 -rondo,-1 -international journal of energy and power engineering,-1 -akpé,-1 -psykologian opetus- ja tutkimusklinikan julkaisuja,-1 -kansainvälinen etelä-pohjanmaa,-1 -nuorisoseurat,-1 -poliisiammattikorkeakoulun katsauksia,-1 -issuex,-1 -osto & logistiikka,-1 -retina,-1 -porilaine,-1 -kainuun joulu,-1 -university of turku technical reports,-1 -liikenneturvan selvityksiä,-1 -verkkolehti lahtinen,-1 -kita kiinteistö & talotekniikka,-1 -keskipohjalaiset kylät,-1 -jyväskylän piha- ja puutarhasanomat,-1 -luuvalo,-1 -suomen ev.-lut. kirkon julkaisuja : kirkko ja toiminta,-1 -pulloposti,-1 -kunnon perhetila,-1 -mfåa,-1 -geenivarat,-1 -tiliposti & palkka,-1 -kauppakamari,-1 -kokemäkeläinen,-1 -uutiset,-1 -kauppakamari,-1 -mesenaatti,-1 -eva analyysi,-1 -kauppakamari,-1 -infra,-1 -raisio tiedottaa,-1 -tutkimuksia ja selvityksiä,-1 -silta,-1 -jyväskylä,-1 -koti ja maaseutu,-1 -luustotieto,-1 -merenkulkualan koulutus- ja tutkimuskeskuksen julkaisuja,-1 -koillis-helsingin lähitieto,-1 -bofit policy brief,-1 -perustuslakiblogi,-1 -uutta kunnista,-1 -tuulivoima,-1 -suomalaisen elokuvan festivaali,-1 -aku ankka juniori,-1 -oulun yliopiston tuotantotalouden tutkimusraportteja,-1 -raportti,-1 -fimecc publications series,-1 -insinööri,-1 -tutkimukset,-1 -tampereen kaupungin julkaisuja,-1 -haaga-helian julkaisut,-1 -lahden diakoniasäätiön julkaisuja,-1 -arcada working papers,-1 -puolustusvoimien tutkimuslaitoksen julkaisuja,-1 -bsr policy briefing,-1 -raumalainen,-1 -fiia analysis,-1 -arena,-1 -yfi julkaisuja,-1 -vuosikirja,-1 -suomalaisen lasin vuosikirja,-1 -ikääntyneen väestön palvelut,-1 -sapere aude,-1 -tivi,-1 -stoori,-1 -julkaisut,-1 -turun yliopiston brahea-keskuksen julkaisuja,-1 -kauppakamari,-1 -turun kauppakorkeakoulun julkaisuja,-1 -rikosseuraamuslaitoksen monisteita,-1 -sevasmaailma,-1 -kansallisen audiovisuaalisen instituutin julkaisuja,-1 -elektroniikkalehti,-1 -ravitsemusasiantuntija,-1 -tietoa,-1 -internet of things,-1 -eduskunnan tulevaisuusvaliokunnan julkaisu,-1 -mustemaalari,-1 -valtioneuvoston selvitys- ja tutkimustoiminnan julkaisusarja,-1 -suomi-puola,-1 -kalenterimaailma,-1 -uudenkaupungin merihistoriallisen yhdistyksen vuosikirja,-1 -ääretön,-1 -muova design research,-1 -vapaasanakirja,-1 -sfv magasinet,-1 -petsamolaista,-1 -antiikki & design,-1 -the ulkopolitist,-1 -katsauksia,-1 -magma-pamflett,-1 -tem oppaat ja muut julkaisut,-1 -jano,-1 -tapion raportteja,-1 -eva pamfletti,-1 -eva raportti,-1 -kauppakamari,-1 -putkeen!,-1 -slalli,-1 -proagrian hankejulkaisut,-1 -jyväskylän yliopiston tiedemuseon julkaisuja,-1 -tilastokatsaus,-1 -opinto-ohjaaja,-1 -centria : raportteja ja selvityksiä,-1 -centria : oppimateriaaleja,-1 -centria : puheenvuoroja,-1 -kehotus,-1 -lapillinen,-1 -eniki,-1 -arttu2-tutkimusohjelman julkaisusarja,-1 -tamkjournal,-1 -@seamk,-1 -seamk news,-1 -allegra lab,-1 -turun kaupungin ympäristöjulkaisuja,-1 -language teaching tomorrow,-1 -eläinlääkintäsanomat,-1 -leia,-1 -signal,-1 -humanistinen ammattikorkeakoulu : julkaisuja,-1 -reumahoitajat,-1 -yrittäjän lappi,-1 -poesiavihkot,-1 -atmos,-1 -reilua energiaa,-1 -liikekieli,-1 -from science to policy,-1 -araviesti,-1 -uusi teknologia,-1 -qfemzine,-1 -suvustaja,-1 -teaching in life sciences,-1 -edit taidemedia,-1 -oma polku,-1 -diak tutkimus,-1 -diak työelämä,-1 -diak puheenvuoro,-1 -pedersöre info,-1 -cuporen työpapereita,-1 -luonnon varassa,-1 -rapport från fakulteten för pedagogik och välfärdsstudier,-1 -nya östis,-1 -valtiotieteellisen tiedekunnan julkaisuja,-1 -dokumentation från fakulteten för pedagogik och välfärdsstudier,-1 -lumen,-1 -etupyörä,-1 -aluehallintovirastojen julkaisuja,-1 -puhtausala,-1 -current developments in arctic law,-1 -kommuntorget,-1 -etupenkki,-1 -aitoja makuja,-1 -voimaa ruuasta,-1 -seurantauutiset,-1 -uutta vanhaa kulttuuriperinnöstä,-1 -suomen poliisilehti & poliisiurheilu,-1 -toinen näytös,-1 -samu,-1 -policy brief,-1 -arcticles,-1 -tapaturmavakuutuskeskuksen julkaisuja,-1 -napakaira,-1 -geronomi,-1 -hamk unlimited : journal,-1 -asema,-1 -aito maaseutu keski-suomessa,-1 -lasten asialla,-1 -lappajärven joulu,-1 -julkaisusarja 2 : tutkimusselosteita,-1 -journal of excellence in sales,-1 -ketonoidanlukko,-1 -savonia-ammattikorkeakoulun julkaisusarja,-1 -miškininkystė ir kraštotvarka,-1 -müürileht,-1 -o-bib,-1 -industrie 4,-1 -iza discussion papers,-1 -ope journal,-1 -shareholder activism & engagement,-1 -literacy today,-1 -room,-1 -l'obs,-1 -conference proceedings,-1 -journal nano science and technology,-1 -the conversation,-1 -educitec,-1 -harbours review,-1 -compliance,-1 -surdus historicus,-1 -ancient history magazine,-1 -pööning,-1 -nordic perspectives on open science,-1 -bioinquirer journal,-1 -esrb working paper series,-1 -the arkansas international,-1 -fulbright finland news,-1 -tiedeblogi,-1 -pieni on suurin,-1 -tuiran suuralueen kuohut,-1 -pälstidskrift,-1 -loimu,-1 -xamk tutkii,-1 -xamk kehittää,-1 -xamk inspiroi,-1 -sosten julkaisuja,-1 -vaasan yliopiston raportteja,-1 -julkaisusarja,-1 -suomen sahayrittäjät,-1 -kurjenpolvet,-1 -suomen arkeoastronomisen seuran julkaisuja,-1 -tekninen tiedote,-1 -geotechnical report,-1 -holkki,-1 -eom,-1 -schuman papers,-1 -oulun yliopiston kerttu saalasti instituutin julkaisuja,-1 -reports on scientific computing and optimization,-1 -kupoli,-1 -julkaisuja,-1 -centria bulletin,-1 -aivoterveys,-1 -ikä nyt!,-1 -suomenopettajat,-1 -ham - helsingin taidemuseon julkaisuja,-1 -ympäristö & yritys tänään,-1 -lecture notes,-1 -shakki,-1 -valterin julkaisusarja,-1 -luston julkaisuja,-1 -kaupunkiympäristön julkaisuja,-1 -next,-1 -ajan kohina,-1 -muovaaja,-1 -imperiumi,-1 -kiinteistöviesti,-1 -lastensuojelun keskusliiton verkkojulkaisu,-1 -dimecc publications series,-1 -suomalaiset euroopassa,-1 -lilja,-1 -seniorilääkäri,-1 -risteysasema,-1 -i rågens och fjärdarnas rike,-1 -kansalaisareenan julkaisuja,-1 -elm magazine,-1 -fenestra finnorum,-1 -tekijä,-1 -poverty and development working papers,-1 -kulttuurista perinnöksi,-1 -tilitoimistossa,-1 -pedanssi,-1 -lousi,-1 -suek ry,-1 -yrittävä lakeus,-1 -kohtaamisia,-1 -suomen rahahistoria,-1 -arkkitehtuuri,-1 -maatilalla,-1 -birdlife,-1 -digibarometri,-1 -kansallisarkiston toimituksia,-1 -poliittiset kuplat,-1 -"allergia, iho & astma",-1 -taidetutka,-1 -pioni-jäsenlehti,-1 -studio publication,-1 -liikkeessä yli rajojen,-1 -"rengas-, varaosa- ja korjaamouutiset",-1 -biohub annual,-1 -talk magazine,-1 -kihun julkaisusarja,-1 -antroblogi,-1 -varhaiskasvatuksen erityisopettaja,-1 -julkaisusarja,-1 -kuntoutusta kehittämässä,-1 -sam magazine,-1 -acta diurna obscura,-1 -työraportteja,-1 -abc plastics news,-1 -tammenlastuja,-1 -kalmistopiiri,-1 -arbetarbladet,-1 -evento,-1 -ilmiö,-1 -valtion nuorisoneuvoston julkaisuja,-1 -näyttövinkki,-1 -ptt raportteja,-1 -kunnallisalan kehittämissäätiön julkaisu,-1 -laurea journal,-1 -ptt työpapereita,-1 -siun soten julkaisuja,-1 -nokia ennen ja nyt,-1 -dialogi,-1 -nokturno,-1 -sesko vuosikirja,-1 -lapuan joulu,-1 -ruokaviraston tutkimuksia,-1 -ruokaviraston julkaisuja,-1 -rajansiirtäjä,-1 -mediataito,-1 -ilmiö,-1 -valtioneuvoston julkaisuja,-1 -sisäministeriön julkaisuja,-1 -ympäristöministeriön julkaisuja,-1 -oikeusministeriön julkaisuja,-1 -oikeusministeriön julkaisuja,-1 -väyläviraston julkaisuja,-1 -cyberwatch magazine,-1 -valtioneuvoston kanslian julkaisuja,-1 -lajiluettelo,-1 -maan suola,-1 -väyläviraston tutkimuksia,-1 -hybrid coe strategic analysis,-1 -aamuposti viikko,-1 -folk och musik,-1 -interact,-1 -tutkimuseettisen neuvottelukunnan julkaisuja,-1 -prospäkkäri,-1 -vastuullinen tiede,-1 -oamk_kone with passion,-1 -metropolia ammattikorkeakoulun julkaisuja,-1 -the progressive post,-1 -medizinethnologie,-1 -future farming,-1 -a line which forms a volume,-1 -open access government,-1 -another gaze,-1 -research outreach,-1 -pflege professionell,-1 -fachblatt des berufsverbandes österreichischer kunst- und werkerzieherinnen,-1 -global dialogue,-1 -normal,-1 -human security,-1 -journal of the royal new zealand air force,-1 -boletín del observatorio de comercio internacional,-1 -new angle,-1 -proceedings of the teaching and education conferences,-1 -ealthy magazine,-1 -journal of patient care,-1 -phile,-1 -northeast journal of complex systems,-1 -mitmekeelne haridus,-1 -guidelines,-1 -desde el margen,-1 -world sustainable energy days,-1 -socialnet international,-1 -social europe,-1 -futurum,-1 -non-fiction,-1 -metropolia ammattikorkeakoulun julkaisuja,-1 -metropolia ammattikorkeakoulun julkaisuja,-1 -artikkelikokoelma,-1 -kansalaisuuden kuilut ja kuplat,-1 -unit,-1 -"tampereen yliopisto, rakennustekniikka",-1 -uefdsa newspaper,-1 -opeopiskelija,-1 -creating leadership,-1 -kiekaus,-1 -vaikutuksessa-media,-1 -trivium,-1 -6g research visions,-1 -raportti,-1 -pohjois-savon sotaveteraanipiirin jouluviesti,-1 -novia publikation och produktion,-1 -vastuullisen tieteen julkaisusarja,-1 -propelli,-1 -lepakot,-1 -museopro,-1 -oikeuden perusteet,-1 -ilkka-pohjalainen,-1 -eläintaudit suomessa,-1 -tem toimialaraportit,-1 -infektioidentorjunta,-1 -ihmisoikeuskeskuksen julkaisuja,-1 -6g waves,-1 -lab pro,-1 -urbaria summaries series,-1 -pro houtskär,-1 -metsäalan ammattilehti,-1 -oulun ammattikorkeakoulun tekniikan ja luonnonvara-alan lehti,-1 -muova education,-1 -kauppakamari,-1 -kauppakamari,-1 -itla research,-1 -hssh reports and working papers,-1 -business & society,-1 -eesti kunstimuuseum,-1 -noēma,-1 -outsourcing journal,-1 -new age in russia,-1 -n-iussp,-1 -the adriatic report,-1 -tallinna tervishoiu kõrgkooli väljaanded,-1 -hbl junior,-1 -neurohoitaja,-1 -kognitiivis-analyyttisen psykoterapiayhdistyksen julkaisuja,-1 -modus 3d journal,-1 -energiaa,-1 -esignals pro,-1 -esignals,-1 -sähkömaailma extra,-1 -näkökulma,-1 -luonnosta sinulle,-1 -tutkimuksia,-1 -kotikulmilta,-1 -dynamic interpretations of the past,-1 -verde,-1 -jyu reports,-1 -toiminta soi,-1 -kinestetiikka,-1 -invest working papers,-1 -oamk journal,-1 -julkaisusarja,-1 -raportti,-1 -hybrid coe research report,-1 -sosiaalitieteiden laitoksen julkaisuja,-1 -suomen ilmastopaneelin julkaisuja,-1 -botnia insider,-1 -pohjolan historiankirjoitus,-1 -helsus policy brief,-1 -pulssi-portaali,-1 -novissima,-1 -perhe- ja pariterapialehti,-1 -diak publications,-1 -"the heppsinki working papers on emotions, populism and polarisation",-1 -tutkittua varhaiskasvatuksesta,-1 -sateenkaarihistorian ystävien kirjoituksia,-1 -school education gateway,-1 -социодиггер,-1 -casas internacional,-1 -policy options,-1 -inroads,-1 -landskab,-1 -practicus,-1 -tenen,-1 -dragtjournalen,-1 -altinget,-1 -ulevaade haridussusteemi valishindamisest,-1 -kuidas korraldada kultuuri?,-1 -vikerkaar,-1 -raduga,-1 -kuntalehti,-1 -liha ja ruoka,-1 -signals,-1 -tekstiililehti,-1 -konservaattori,-1 -leipuri,-1 -nukketeatteri,-1 -puuviesti.fi,-1 -suomen autolehti,-1 -tamkjournal (english ed.),-1 -varsinais-suomen yrittäjä,-1 -kirkkomme lähetys,-1 -metsä groupin viesti,-1 -panssari,-1 -poromies,-1 -syöpäsairaanhoitaja,-1 -talouselämä,-1 -#tyottomat,-1 -analyytikko,-1 -arkkitehtiuutiset,-1 -avain,-1 -biokierto ja biokaasu,-1 -diakonia+,-1 -eliksiiri,-1 -geofoor,-1 -hammasteknikko,-1 -juristiuutiset,-1 -kantele,-1 -kasvinsuojelulehti,-1 -kemia,-1 -kielikello,-1 -kiinteistö ja energia,-1 -puutarhakalenteri,-1 -suomi merellä,-1 -suomen kotiseutuliiton julkaisusarja,-1 -diak vuosikirja,-1 -vatt muistiot,-1 -tampere economic working papers net series,-1 -liikuntatieteellisen seuran tutkimuksia ja selvityksiä,-1 -opetus- ja kulttuuriministeriön julkaisuja,-1 -suomen vesilaitosyhdistyksen monistesarja,-1 -sitra työpaperi,-1 -sitran selvityksiä,-1 -centria reports,-1 -forskningsrapporter från husö biologiska station,-1 -hyte-toimintamalli,-1 -itlan raportit ja selvitykset,-1 -julkaisu : keski-suomen liitto b,-1 -julkaisu : vantaanjoen ja helsingin seudun vesiensuojeluyhdistys,-1 -karelia-ammattikorkeakoulun julkaisuja : raportteja,-1 -kunnallisalan kehittämissäätiön polemia-sarja,-1 -lapin ammattikorkeakoulun julkaisuja : muut julkaisut,-1 -suomalaisen lakimiesyhdistyksen julkaisuja : b-sarja,-1 -oppaat ja käsikirjat,-1 -historiallis-yhteiskuntatiedollisen kasvatuksen tutkimus- ja kehittämiskeskuksen julkaisuja,-1 -"julkaisusarja 3. työpapereita, maanpuolustuskorkeakoulu : sotataidon laitos",-1 -res terrae,-1 -kiinteistöposti,-1 -kritiikin uutiset,-1 -mrktng,-1 -pohjanmaan opettaja,-1 -sosiaali- ja kuntatalous,-1 -talk,-1 -"vaasan ammattikorkeakoulu, university of applied sciences publications : research reports",-1 -vesi- ja viemärilaitosyhdistyksen monistesarja,-1 -talouselämän raportti suuryrityksistä,-1 -turun seudun ekonomit,-1 -crux,-1 -diak opetus,-1 -etämetsänomistaja,-1 -eversheds sutherland magazine,-1 -företagare,-1 -helsingin yliopiston hallinnon julkaisuja : raportit ja selvitykset,-1 -jyväskylän koulutuskuntayhtymä gradian julkaisuja,-1 -lähilehti,-1 -meteli,-1 -olutposti,-1 -rauhanpuolustaja,-1 -suomen apteekkarilehti,-1 -talk by students,-1 -tähtivaeltaja,-1 -warkauden lehti,-1 -yrittäjä,-1 -murmursunds allehanda,-1 -orimattilan sanomat,-1 -selkälehti,-1 -kilpi,-1 -kritiikki,-1 -kyrkpressen,-1 -mt metsä,-1 -pk ank : viikonvaihde ankkuri,-1 -puruvesi,-1 -rajapinta,-1 -siivet,-1 -tolle lege,-1 -åbo underrättelser,-1 -nuori voima,-1 -pudasjärveläinen,-1 -ramus virens,-1 -research about ecec,-1 -sjögrenlehti,-1 -suomen metsästysmuseon julkaisuja,-1 -suomen urheilumuseosäätiön tutkimuksia,-1 -urjalan sanomat,-1 -veikko,-1 -vähähaaran vuosikirja,-1 -alumni (suomenkielinen painos),-1 -apu juniori,-1 -avun maailma,-1 -blues news,-1 -chilin poltteessa,-1 -eduskunnan kirjaston tutkimuksia ja selvityksiä,-1 -etelä-saimaa,-1 -fillari,-1 -hamk beat,-1 -henki,-1 -ihmisyyden monet puolet- blogi,-1 -ilmailu,-1 -julgrisen,-1 -jurvan sanomat,-1 -jyunity,-1 -kaupunkilainen,-1 -kehrääjä,-1 -kenttäpostia,-1 -keräilyuutiset,-1 -kieleke,-1 -risto ryti -seuran julkaisuja,-1 -shy plumber,-1 -orvas,-1 -kouvola,-1 -momentti,-1 -porin kirkkosanomat,-1 -risteys,-1 -signals (english ed.),-1 -ulkoministeriön julkaisuja,-1 -mun oulu,-1 -no niin,-1 -pk ank,-1 -poratek uutiset,-1 -uusi suomi,-1 -viispiikkinen,-1 -yhteiset lapsemme,-1 -aamuset,-1 -alumni (svensk utg.),-1 -es keskiviikko,-1 -gluteeniton elämä,-1 -hermolla,-1 -hollolan sanomat,-1 -kaarina,-1 -kenttäpostia,-1 -electoral bulletins of the european union,-1 -juriste d'entreprise magazine,-1 -ehne,-1 -le grand continent,-1 -analyse opinion critique,-1 -atlantico,-1 -nachrichten der arl,-1 -leibniz online,-1 -zeitzeichen,-1 -marketing intelligence review (english ed.),-1 -denken ohne geländer,-1 -zeit germany : work & start up,-1 -zeit-magazin,-1 -marketing intelligence review,-1 -kanbrief,-1 -die zeit,-1 -zeit germany : study & research,-1 -zeitmagazin,-1 -nea ygeia,-1 -szombat,-1 -"testing, evaluation and assessment today",-1 -iatefl voices,-1 -ndc policy brief,-1 -past global changes magazine,-1 -ifla metadata newsletter,-1 -childlinks,-1 -alimenta,-1 -jlis.it,-1 -mindbrained bulletin,-1 -subaru,-1 -ancient warfare,-1 -nytt om namn,-1 -adresseavisen,-1 -dawn,-1 -gazeta wyborcza,-1 -put i saobraćaj,-1 -sårjournalen,-1 -eyvind johnson-sällskapets årsbok,-1 -studiehäfte till årsboken horisont,-1 -läs- och skrivsvårigheter & dyslexi,-1 -värmland förr och nu,-1 -till liv,-1 -c'est bon,-1 -horisont,-1 -vuosi,-1 -western europe,-1 -the integrated review in context,-1 -epilepsy professional,-1 -international environmental technology,-1 -frontiers of socio-legal studies,-1 -the national interest,-1 -the gradient,-1 -cal lab,-1 -clarity,-1 -healthcare design,-1 -conference proceedings : international conference on unmanned aircraft systems,-1 -sport supplement,-1 +clean_name,quality +"""rau"" publishing house, russian-armenian (slavonic) state university",0 +#isoj,0 +#tyottomat,-1 +(mt) marine technology,1 +... ieee workshop on wide bandgap power devices and applications,1 +1066: tidsskrift for historisk forskning,1 +12 levha,0 +"1650-1850: ideas, aesthetics, and inquiries in the early modern era",0 +19 : interdisciplinary studies in the long nineteenth century,1 +20tal,-1 +21st century music,1 +2d materials,3 +3 biotech,1 +30 päivää,-1 +3d printing and additive manufacturing,1 +3d printing in medicine,0 +3d research,1 +3dtv conference,1 +49th parallel : an interdisciplinary journal of north america,1 +4or,1 +4s symposium,0 +6g research visions,-1 +6g waves,-1 +7 experiences summit of the experience research society,0 +;login:,0 +@seamk-verkkolehti,-1 +[in] transition,-1 +a + u,1 +a falu,0 +a forum for theology in the world,-1 +a line which forms a volume,-1 +a móra ferenc múzeum évkönyve,0 +a peer-reviewed journal about,1 +a-klinikkasäätiö : tutkimussarja,1 +a. b. the samaritan news,0 +aa files,1 +aaa : arbeiten aus anglistik und amerikanistik,1 +aaai press,1 +aacc international,0 +aadr – art architecture design research,1 +aalborg universitet,0 +aalborg university : open publishing,1 +aalborg university press,1 +aalitra review,0 +aalto arts books,1 +aalto university executive education oy,0 +aalto university magazine,-1 +aalto university publication series : art + design + architecture,0 +aalto university publication series : business + economy,0 +aalto university publication series : doctoral theses,0 +aalto university publication series : science + technology,0 +aalto university publication series crossover,0 +aalto-yliopisto,0 +aalto-yliopiston julkaisusarja,-1 +aalto-yliopiston julkaisusarja : kauppa + talous,0 +aalto-yliopiston julkaisusarja : taide + muotoilu + arkkitehtuuri,0 +aalto-yliopiston julkaisusarja crossover,0 +aamulehti,-1 +aamun koitto,-1 +aamuposti,-1 +aamuposti viikko,-1 +aamuset,-1 +aapg bulletin,1 +aaps journal,1 +aaps pharmscitech,1 +aarboger for nordisk oldkyndighed og historie,1 +aare conference papers,0 +aarhus series on human centered computing,0 +aarhus universitet,0 +aarhus university press,1 +aarre,-1 +aascit journal of materials,0 +aatcc review,1 +ab imperio,2 +aba tax times,0 +abacus: a journal of accounting finance and business studies,1 +abada editores,0 +abai kazakh national pedagogical university,0 +abant i̇zzet baysal üniversitesi eğitim fakültesi dergisi,0 +abc plastics news,-1 +abc-clio,0 +abc-clio greenwood,0 +abdominal imaging,1 +abdominal radiology,1 +abe journal,1 +aberdeen university press,0 +abhandlungen aus dem mathematischen seminar der universitat hamburg,1 +abilene christian university press,1 +aboa centre for economics,0 +aboriginal history,1 +about performance,1 +abrapso editora,1 +abstract and applied analysis,1 +"abstracta: linguagem, mente e acao",1 +abstracts of papers presented to the american mathematical society,1 +abstracts of the ica,0 +"abstracts of the proceedings (international ofel conference on governance, management and entrepreneurship)",0 +abstrakt forlag,1 +academia,0 +academia adacta,1 +academia biology,0 +academia journal of educational research,0 +academia letters,0 +academia press,1 +academia revista latinoamericana de administración,1 +academia verlag,1 +academia-l´harmattan,0 +academic & scientific publishers,1 +academic and applied research in public management science,1 +academic conferences international,1 +academic emergency medicine,2 +academic medicine,1 +academic pediatrics,1 +academic press,2 +academic psychiatry,1 +academic radiology,1 +academic studies press,1 +academica,1 +academica turistica,0 +academicus,1 +academie royale de belgique,0 +academperiodica,0 +academy of entrepreneurship journal,0 +academy of european law working papers,0 +academy of fine arts in lodz,0 +academy of management annals,3 +academy of management annual meeting proceedings,0 +academy of management discoveries,3 +academy of management journal,3 +academy of management learning and education,3 +academy of management perspectives,2 +academy of management review,3 +academy of marketing studies journal,0 +acadia,0 +acadiensis,1 +académie des sciences belles-lettres et arts de besançon et de franche-comté,1 +acarina,0 +acarologia,1 +acatiimi,-1 +acc journal,0 +accademia,0 +accademia della crusca,1 +accademia etrusca di cortona: annuario,1 +accademia musicale studio musica,0 +accademia nazionale dei lincei,1 +accademia nazionale di santa cecilia,0 +accademia university press,0 +accademie e biblioteche d'italia,0 +access,1 +access microbiology,0 +accident analysis and prevention,3 +acco,1 +accordia research papers,1 +accountability in research,1 +accounting & financial control,1 +accounting and business research,2 +accounting and finance,1 +accounting and the public interest,1 +accounting education,1 +accounting forum,1 +accounting historians journal,1 +accounting history,1 +accounting history review,1 +accounting horizons,2 +accounting in europe,1 +accounting organizations and society,3 +accounting perspectives,1 +accounting research journal,1 +accounting review,3 +"accounting, auditing and accountability journal",2 +"accounting, economics, and law",1 +accounts of chemical research,2 +accreditation and quality assurance,1 +acdi,0 +aceee international journal on information technology,0 +acer press,0 +achiote.com,0 +aci materials journal,1 +aci open,0 +aci structural journal,1 +acm,1 +acm communications in computer algebra,0 +acm computing surveys,3 +acm conference on computer and communications security,3 +acm conference on computer-supported cooperative work and social computing,2 +acm inroads,0 +acm international conference and exhibition on computer graphics interactive techniques,2 +acm international conference on information & knowledge management,2 +acm international joint conference on pervasive and ubiquitous computing,2 +acm international workshop on mobile opportunistic networks,0 +acm journal of data and information quality,1 +acm journal of experimental algorithmics,2 +acm journal on emerging technologies in computing systems,1 +acm journal on responsible computing,1 +acm multimedia,3 +acm sigaccess accessibility and computing proceedings,1 +acm sigact-sigmod-sigart symposium on principles of database systems,2 +acm sigchi annual conference on human factors in computing systems,3 +acm siggraph symposium on interactive 3d graphics and games,1 +acm siggraph/eurographics symposium on computer animation,1 +acm sigkdd international conference on knowledge discovery and data mining,3 +acm sigplan conference on programming language design and implementation,2 +acm sigplan notices,0 +acm sigsoft international symposium on the foundations of software engineering,2 +acm symposium on principles of distributed computing,2 +acm symposium on theory of computing,3 +acm symposium on user interface software and technology,2 +acm transactions on accessible computing,1 +acm transactions on algorithms,3 +acm transactions on applied perception,1 +acm transactions on architecture and code optimization,1 +acm transactions on asian and low-resource language information processing,1 +acm transactions on autonomous and adaptive systems,2 +acm transactions on computation theory,1 +acm transactions on computational logic,2 +acm transactions on computer systems,3 +acm transactions on computer-human interaction,3 +acm transactions on computing education,3 +acm transactions on computing for healthcare,1 +acm transactions on cyber-physical systems,1 +acm transactions on database systems,3 +acm transactions on design automation of electronic systems,1 +acm transactions on economics and computation,1 +acm transactions on embedded computing systems,1 +acm transactions on evolutionary learning,1 +acm transactions on graphics,3 +acm transactions on human-robot interaction,1 +acm transactions on information systems,3 +acm transactions on intelligent systems and technology,1 +acm transactions on interactive intelligent systems (tiis),1 +acm transactions on internet technology,3 +acm transactions on knowledge discovery from data,3 +acm transactions on management information systems,1 +acm transactions on mathematical software,3 +acm transactions on modeling and computer simulation,1 +acm transactions on modeling and performance evaluation of computing systems,1 +"acm transactions on multimedia computing, communications, and applications",2 +acm transactions on parallel computing,1 +acm transactions on privacy and security,3 +acm transactions on programming languages and systems,3 +acm transactions on quantum computing,1 +acm transactions on recommender systems,1 +acm transactions on reconfigurable technology and systems,1 +acm transactions on sensor networks,2 +acm transactions on social computing,1 +acm transactions on software engineering and methodology,3 +acm transactions on spatial algorithms and systems,1 +acm transactions on speech and language processing,1 +acm transactions on storage,1 +acm transactions on the internet of things,1 +acm transactions on the web,2 +acm ubiquity,1 +acm workshop on challenged networks,0 +acm workshop on emerging name-oriented mobile networking design,0 +acm workshop on scalable trusted computing,0 +acm-siam symposium on discrete algorithms,2 +acm-sigmod international conference on management of data,3 +acm/ieee international conference on human-robot interaction,1 +acm/ims transactions on data science,1 +acme,1 +acme: annali della faculta di lettere et filosofia dell universita statale di milano,1 +acog clinical review,1 +acoustic ecology review,0 +acoustic space,1 +acoustical physics,1 +acoustical science and technology,1 +acoustical society of america,0 +acoustics,0 +acoustics australia,1 +acr open rheumatology,1 +acrn journal of finance and risk perspectives,1 +acrocephalus,0 +across languages and cultures,2 +across the disciplines,1 +acs agricultural science & technology,0 +acs applied bio materials,1 +acs applied electronic materials,1 +acs applied energy materials,1 +acs applied engineering materials,1 +acs applied materials and interfaces,2 +acs applied nano materials,1 +acs applied optical materials,1 +acs applied polymer materials,1 +acs biomaterials science & engineering,1 +acs catalysis,3 +acs central science,3 +acs chemical biology,2 +acs chemical neuroscience,1 +acs combinatorial science,1 +acs earth and space chemistry,1 +acs energy letters,2 +acs engineering au,1 +acs es&t air,1 +acs es&t engineering,1 +acs es&t water,1 +acs food science & technology,1 +acs infectious diseases,1 +acs macro letters,2 +acs materials au,1 +acs materials letters,1 +acs medicinal chemistry letters,1 +acs nano,3 +acs nanoscience au,1 +acs omega,1 +acs pharmacology & translational science,1 +acs photonics,2 +acs physical chemistry au,1 +acs polymers au,1 +acs sensors,2 +acs sustainable chemistry and engineering,1 +acs sustainable resource management,1 +acs symposium series,1 +acs synthetic biology,2 +acs/ieee international conference on computer systems and applications,1 +acsa press,0 +acsms health and fitness journal,1 +acta,-1 +acta academiae artium vilnensis,-1 +acta academiae beregsasiensis : philologica,0 +acta academiae regiae gustavi adolphi lxxxvii,1 +acta acustica,1 +acta ad archaeologiam et artium historiam pertinentia,1 +acta adriatica,1 +acta agriculturae scandinavica section a : animal science,1 +acta agriculturae scandinavica section b : soil and plant science,1 +acta agriculturae scandinavica: supplementum,1 +acta agrobotanica,1 +acta alimentaria,1 +acta amazonica,1 +acta anaesthesiologica belgica,0 +acta anaesthesiologica scandinavica,1 +acta analytica : international periodical for philosophy in the analytical tradition,1 +acta anthropologica sinica,1 +acta antiqua academiae scientiarum hungaricae,1 +acta antiqua ostrobotniensia,1 +acta applicandae mathematicae,1 +acta aquatica turcica,0 +acta arachnologica,1 +acta archaelogica carpathica,1 +acta archaeologica,1 +acta archaeologica academiae scientiarum hungaricae,1 +acta archaeologica lovaniensia,1 +acta arithmetica,2 +acta astronautica,1 +acta astronomica,1 +acta baltica historiae et philosophiae scientiarum,1 +acta baltico-slavica,1 +acta biochimica et biophysica sinica,1 +acta biochimica polonica,0 +acta bioethica,1 +acta biologica cracoviensia series botanica,1 +acta biologica cracoviensia series zoologia,1 +acta biologica plantarum agriensis,1 +acta biologica sibirica,1 +acta biologica turcica,0 +acta biologica universitatis daugavpiliensis,1 +acta biomaterialia,2 +acta biomedica,0 +acta biotheoretica,1 +acta borealia,1 +acta botanica brasilica,1 +acta botanica croatica,1 +acta botanica fennica,1 +acta botanica hungarica,0 +acta botanica mexicana,1 +acta bryolichenologica asiatica,0 +acta byzantina fennica,1 +acta byzantina fennica : supplementa,0 +acta cardiologica,1 +acta carsologica,1 +acta chimica slovenica,1 +acta chiropterologica,1 +acta chirurgiae orthopaedicae et traumatologiae ?echoslovaca,0 +acta chirurgica belgica,1 +acta chirurgica italica,1 +acta chromatographica,1 +acta cirurgica brasileira,1 +acta classica,1 +acta classica universitatis scientiarum debreceniensis,1 +acta clinica belgica,1 +acta clinica croatica,0 +acta comeniana,1 +acta conventus neo-latini,0 +acta criminologica,0 +acta crystallographica section a : foundations and advances,1 +"acta crystallographica section b : structural science, crystal engineering and materials",1 +acta crystallographica section c : structural chemistry,1 +acta crystallographica section d : structural biology,1 +acta crystallographica section e : crystallographic communications,1 +acta crystallographica section f : structural biology communications,1 +acta cybernetica,1 +acta cytologica,1 +acta dermato-venereologica,2 +"acta dermatovenerologica alpina, pannonica et adriatica",0 +acta dermatovenerologica croatica,0 +acta diabetologica,1 +acta didactica norden,1 +acta diurna obscura,-1 +acta ecologica sinica,1 +acta endocrinologica-bucharest,1 +acta endoscopica,1 +acta entomologica musei nationalis pragae,1 +acta et commentationes universitatis tartuensis de mathematica,1 +acta ethnographica hungarica,1 +acta ethologica,1 +acta facultatis educationis physicae universitatis comenianae,1 +acta futura fennica,1 +acta geodynamica et geomaterialia,1 +acta geographica lodziensia,1 +acta geographica slovenica-geografski zbornik,1 +acta geologica polonica,1 +acta geologica sinica-english edition,1 +acta geophysica,1 +acta geotechnica,1 +acta geotechnica slovenica,1 +acta geoturistica,1 +acta graphica,1 +acta graphica publishers,0 +acta gymnica,0 +acta haematologica,1 +acta herpetologica,1 +acta histochemica,1 +acta histochemica et cytochemica,1 +acta historiae artium academie scientiarium hungaricae,1 +acta historiae rerum naturalium nec non technicarum: new series,1 +acta historica astronomiae,1 +acta historica tallinnensia,1 +acta historica universitatis klaipedensis,1 +acta histriae,0 +acta horticulturae,1 +acta humanitarica universitatis saulensis,1 +acta hydrologica slovaca,1 +acta hyperborea: danish studies in classical archaeology,1 +"acta ibseniana: centre for ibsen studies, university of oslo",1 +acta ichthyologica et piscatoria,1 +acta imeko,1 +acta informatica,2 +acta informatica pragensia,0 +acta instituti romani finlandiae,1 +acta kinesiologiae universitatis tartuensis,1 +acta kinesiologica,0 +acta lapponica fenniae,0 +acta legis turkuensia,0 +acta linguistica,0 +acta linguistica academica,0 +acta linguistica hafniensia : international journal of linguistics,2 +acta linguistica lithuanica,1 +acta linguistica petropolitana,1 +acta literaria,1 +acta logistica,1 +acta ludologica,0 +acta materialia,3 +acta mathematica,3 +acta mathematica hungarica,1 +acta mathematica scientia,1 +acta mathematica sinica : english series,1 +acta mathematica universitatis comenianae,1 +acta mathematica vietnamica,1 +acta mathematicae applicatae sinica : english series,1 +acta mechanica,1 +acta mechanica sinica,1 +acta mechanica solida sinica,1 +acta medica bulgarica,0 +acta medica okayama,0 +acta medico-historica adriatica,1 +acta metallurgica sinica,1 +acta metallurgica slovaca,0 +acta meteorologica sinica,1 +acta médica portuguesa,0 +acta microbiologica et immunologica hungarica,0 +acta microscopica,1 +acta montanistica slovaca,1 +acta mozartiana,1 +acta musei silesiae : scientiae naturales,1 +acta musicologica,3 +acta musicologica fennica,1 +acta musicologica militantia,0 +acta mycologica,1 +acta myologica,1 +acta naturae,1 +acta neophilologica,1 +acta neurobiologiae experimentalis,1 +acta neurochirurgica,1 +acta neurochirurgica. supplementum,1 +acta neurologica belgica,1 +acta neurologica scandinavica,1 +acta neurologica scandinavica: supplementum,1 +acta neuropathologica,3 +acta neuropathologica communications,1 +acta neuropsychiatrica,1 +acta neuropsychologica,0 +acta numerica,2 +acta obstetricia et gynecologica scandinavica,2 +acta oceanologica sinica,1 +acta odontologica scandinavica,1 +acta oecologica-international journal of ecology,1 +acta oeconomica,0 +acta of bioengineering and biomechanics,1 +acta oncologica,1 +acta onomastica,1 +acta ophthalmologica,2 +acta ophthalmologica. supplement,1 +acta organologica,1 +acta orientalia,1 +acta orientalia academiae scientiarum hungaricae,1 +acta orientalia vilnensia,1 +acta ornithologica,1 +acta orthopaedica,1 +acta orthopaedica belgica,1 +acta orthopaedica et traumatologica turcica,1 +acta orthopaedica: supplementum,1 +acta ortopedica brasileira,1 +acta oto-laryngologica,1 +acta oto-laryngologica case reports,1 +acta oto-laryngologica: supplement,1 +acta otorhinolaryngologica italica,1 +acta paedagogica vilnensia,1 +acta paediatrica,1 +acta palaeobotanica,1 +acta palaeontologica polonica,1 +acta palaeontologica sinica,1 +acta parasitologica,1 +acta paulista de enfermagem,1 +acta periodica duellatorum,1 +acta pharmaceutica,1 +acta pharmaceutica sinica b,1 +acta pharmacologica sinica,1 +acta philologica,1 +acta philosophica,1 +acta philosophica fennica,1 +acta philosophica tamperensia,1 +acta physica polonica a,1 +acta physica polonica b,1 +acta physica polonica b : proceedings supplement,0 +acta physica sinica,1 +acta physico-chimica sinica,0 +acta physiologiae plantarum,1 +acta physiologica,2 +"acta physiologica scandinavica, supplement",1 +acta phytopathologica et entomologica hungarica,1 +acta phytotaxonomica et geobotanica,0 +acta poenologica,0 +acta politica,0 +acta politica,2 +acta politica aboensia a,0 +acta poloniae historica,1 +acta poloniae pharmaceutica,0 +acta polymerica sinica,0 +acta polytechnica,1 +acta polytechnica hungarica,1 +acta praehistorica et archaeologica,1 +acta press,1 +acta prosperitatis,0 +acta protozoologica,1 +acta psychiatrica scandinavica,2 +"acta psychiatrica scandinavica, supplement",1 +acta psychologica,1 +acta psychologica sinica,1 +acta radiologica,1 +acta radiologica open,1 +acta scenica,0 +acta scientiae veterinariae,1 +acta scientiarum : health sciences,0 +acta scientiarum polonorum : administratio locorum,-1 +acta scientiarum polonorum-hortorum cultus,1 +acta scientiarum-agronomy,1 +acta scientiarum-technology,1 +acta scientific microbiology,0 +acta semiotica,0 +acta semiotica estica,0 +acta semiotica fennica,0 +acta slavica estonica,1 +acta slavica iaponica,1 +acta societatis botanicorum poloniae,1 +acta societatis morgensternianae,0 +acta sociologica,2 +acta technica jaurinensis,0 +"acta technica napocensis : series applied mathematics, mechanics and engineering",0 +acta technica napocensis: electronica-telecomunicatii,0 +acta theologica,1 +acta translatologica helsingiensia,0 +acta tropica,1 +acta turistica,1 +acta universitatis agriculturae et silviculturae mendelianae brunensis,0 +acta universitatis carolinae : geographica,-1 +acta universitatis carolinae : kinanthropologica,1 +acta universitatis carolinae: philologica,1 +acta universitatis de carolo eszterházy nominatae : sectio linguistica hungarica,0 +acta universitatis lappeenrantaensis,0 +acta universitatis lodziensis : folia iuridica,0 +acta universitatis lodziensis : folia oeconomica,0 +acta universitatis lodziensis: folia archaeologica,1 +acta universitatis matthiae belii : séria environmentálne manažérstvo,0 +acta universitatis ouluensis,-1 +acta universitatis ouluensis b : humaniora,0 +acta universitatis ouluensis e : scientiae rerum socialium,0 +acta universitatis ouluensis series c technica,0 +"acta universitatis palackianae olomucensis, facultas rerum naturalium, mathematica",1 +acta universitatis sapientiae : philologica,1 +acta universitatis sapientiae film and media studies,0 +acta universitatis sapientiae. european and regional studies,1 +acta universitatis sapientiae: mathematica,1 +acta universitatis szegediensis: acta scientiarum mathematicarum,1 +acta universitatis wratislaviensis,1 +acta veterinaria,1 +acta veterinaria brno,1 +acta veterinaria hungarica,1 +acta veterinaria scandinavica,2 +acta via serica,1 +acta virologica,1 +acta wasaensia,0 +acta zoologica,1 +acta zoologica academiae scientiarum hungaricae,1 +acta zoologica bulgarica,1 +acta zoologica fennica,1 +acta zoológica mexicana,1 +actar d,1 +actas espanolas de psiquiatria,1 +actas urologicas espanolas,1 +actes de la conférence : association francophone d'interaction homme machine,0 +actes de la recherche en sciences sociales,2 +actes du congrès - société française shakespeare,1 +actes sud,1 +action learning: research and practice,1 +action research,1 +action research international,1 +"action, criticism and theory for music education",1 +active and passive electronic components,1 +active learning in higher education,2 +activitas nervosa superior,1 +"activities, adaptation and aging: the journal of activities management",1 +acton publishers,1 +actual problems of economics,0 +actualite chimique,0 +actuators,0 +acumen,1 +acupuncture and electro-therapeutics research,1 +acupuncture in medicine,1 +acute cardiac care,1 +ad aeternum,0 +ad hoc and sensor wireless networks,1 +ad hoc networks,2 +ad parnassum,1 +ada,1 +adabiyyat-i tabiqi,0 +adalya,1 +adamantius,1 +adansonia,1 +adapta,0 +adaptation,1 +adapted physical activity quarterly,1 +adaptive behavior,1 +adaptive human behavior and physiology,1 +adcomunica,1 +addiction,3 +addiction biology,2 +addiction research and theory,1 +addiction science & clinical practice,1 +addictive behaviors,1 +addictive behaviors reports,1 +addictive disorders and their treatment,1 +addis ababa university press,1 +addison-wesley,0 +additive manufacturing,3 +additive manufacturing letters,1 +additives for polymers,1 +addleton academic publishers,1 +adicciones,-1 +adipocytes,0 +admet & dmpk,1 +administration,1 +administration and policy in mental health and mental health services research,1 +administration and society,2 +administrative law review,1 +administrative science quarterly,3 +administrative sciences,0 +administrative theory & praxis,1 +administraţie şi management public,1 +admiral makarov state university of maritime and inland shipping,0 +adocs,0 +"adolescent health, medicine and therapeutics",1 +adolescent psychiatry,1 +adolescent research review,0 +adolescents,0 +adonis & abbey publishers ltd.,1 +adoption and fostering,1 +adoption quarterly,1 +adoptioperheet,-1 +adoranten,0 +adresseavisen,-1 +adria section of the combustion institue (asci),0 +adsorption : journal of the international adsorption society,1 +adsorption science and technology,1 +adult education and development,1 +adult education quarterly,3 +adult learning,1 +adults learning mathematics,1 +adults learning mathematics : an international journal,1 +adv. photonics nexus,1 +advance research journal of multidisciplinary discoveries,0 +advanced biology,1 +advanced building skins,0 +advanced composite materials,1 +advanced composites and hybrid materials,1 +advanced devices & instrumentation,1 +advanced drug delivery reviews,3 +advanced electromagnetics,0 +advanced electromagnetics symposium,0 +advanced electronic materials,2 +advanced emergency nursing journal,1 +advanced energy and sustainability research,1 +advanced energy materials,3 +advanced engineering forum,0 +advanced engineering informatics,1 +advanced engineering materials,1 +advanced functional materials,3 +advanced healthcare materials,2 +advanced information networking and applications workshops,0 +advanced intelligent systems,1 +advanced international conference on telecommunications,0 +advanced knowledge international,1 +advanced materials,3 +advanced materials and processes,1 +advanced materials interfaces,1 +advanced materials research,1 +advanced materials technologies,1 +advanced mathematical models & applications,0 +advanced nanobiomed research,1 +advanced nonlinear studies,1 +advanced optical materials,2 +advanced optical technologies,1 +advanced packaging,1 +advanced pharmaceutical bulletin,0 +advanced photonics research,1 +advanced physics research,1 +advanced powder materials,1 +advanced powder technology,1 +advanced quantum technologies,1 +advanced robotics,1 +advanced science,1 +"advanced science, engineering and medicine",1 +advanced sensor research,1 +advanced series in management,1 +advanced steel construction,1 +advanced studies in biology,0 +advanced studies in theoretical physics,0 +advanced sustainable systems,1 +advanced synthesis and catalysis,2 +advanced theory and simulations,1 +advanced therapeutics,1 +advanced topics in database research series,0 +advancements in genetic engineering,0 +advancements in life sciences,1 +advances and applications in discrete mathematics,0 +advances and applications in statistics,1 +advances in accounting,1 +advances in acoustics and vibration,1 +advances in aerospace science and technology,0 +advances in agriculture,0 +advances in agronomy,1 +advances in anatomic pathology,2 +advances in anatomy embryology and cell biology,1 +"advances in ancient, biblical, and near eastern research",1 +advances in anthropology,0 +advances in applied ceramics,1 +advances in applied clifford algebras,1 +advances in applied energy,1 +advances in applied mathematics,2 +advances in applied mathematics and mechanics,1 +advances in applied microbiology series,1 +advances in applied microeconomics,1 +advances in applied probability,2 +advances in applied sociology,0 +advances in archaeological practice,1 +advances in artificial intelligence,1 +advances in artificial intelligence and machine learning,1 +advances in artificial neural systems,1 +advances in astrobiology and biogeophysics,1 +advances in astronomy,1 +advances in astronomy and space physics,0 +advances in atmospheric sciences,1 +advances in atomic molecular and optical physics,1 +advances in austrian economics,1 +advances in autism,1 +advances in biochemical engineering : biotechnology,1 +advances in bioinformatics,1 +advances in biological regulation,1 +advances in bioscience and biotechnology,0 +advances in biotechnology & microbiology,0 +advances in botanical research,1 +advances in botany,0 +advances in building energy research,1 +advances in business related scientific research journal,1 +advances in calculus of variations,1 +advances in cancer research,1 +advances in cancer: research and treatment,0 +advances in carbohydrate chemistry and biochemistry series,1 +advances in cardiology,1 +advances in cartography and giscience of the ica,0 +advances in catalysis,2 +advances in cement research,1 +advances in chemical engineering,1 +advances in chemical physics,1 +advances in child development and behavior,1 +advances in chromatography,1 +advances in chronic kidney disease,1 +advances in civil engineering,1 +advances in civil engineering materials,1 +advances in climate change research,1 +advances in clinical and experimental medicine,1 +advances in clinical chemistry,1 +advances in clinical neuroscience and rehabilitation,1 +advances in cognitive psychology,1 +advances in colloid and interface science,1 +advances in combinatorics,1 +advances in complex systems,1 +advances in computational intelligence,1 +advances in computational mathematics,1 +advances in computer science : an international journal,0 +advances in computer science research,0 +advances in computers,2 +advances in condensed matter physics,1 +advances in consciousness research,1 +advances in consumer research,1 +advances in criminological theory,1 +advances in data analysis and classification,1 +advances in database technology,1 +advances in decision sciences,0 +advances in dental research,1 +advances in developing human resources,1 +advances in differential equations,1 +advances in distributed computing and artificial intelligence journal,1 +advances in dual diagnosis,1 +advances in ecological research,1 +advances in econometrics,1 +advances in economics and business,0 +"advances in economics, management and political sciences",0 +advances in electrical and computer engineering,1 +"advances in electronic government, digital divide, and regional development",0 +advances in electronics and telecommunications,0 +advances in engineering software,1 +advances in enzymology and related subjects of biochemistry,1 +advances in experimental medicine and biology,1 +advances in experimental social psychology,2 +advances in food security and sustainability,0 +advances in forestry science,0 +advances in fuzzy systems,1 +advances in gender research,1 +advances in genetics,1 +advances in geo-energy research,1 +advances in geochemistry and cosmochemistry,-1 +advances in geometry,1 +advances in geophysics,1 +advances in geosciences,1 +advances in gerontology,0 +advances in health sciences education,2 +advances in heterocyclic chemistry,1 +advances in high energy physics,1 +advances in historical studies,0 +advances in horticultural science,1 +advances in hospitality and leisure,1 +advances in hospitality and tourism research,0 +advances in human biology,0 +advances in human-computer interaction,1 +advances in imaging and electron physics,1 +advances in immunology,1 +advances in industrial and manufacturing engineering,1 +advances in infectious diseases,0 +advances in information security,1 +advances in inorganic chemistry,1 +advances in insect physiology,1 +advances in intelligent systems and computing,1 +advances in intelligent systems research,0 +advances in international marketing,1 +advances in internet of things,0 +advances in language and literary studies,0 +advances in librarianship,1 +advances in life course research,2 +advances in limnology,1 +advances in literary study,0 +advances in management and applied economics,0 +advances in manufacturing,1 +advances in marine biology,1 +advances in materials and processing technologies,0 +advances in materials physics and chemistry,0 +advances in materials science and engineering,0 +advances in mathematical physics,0 +advances in mathematical sciences and applications,1 +advances in mathematics,3 +advances in mathematics of communications,1 +advances in mechanical engineering,1 +advances in medical education and practice,1 +advances in medical sciences,1 +advances in medical sociology,1 +advances in meteorology,1 +advances in methods and practices in psychological science,1 +advances in microbial physiology,1 +advances in microbiology,0 +advances in molecular imaging,0 +advances in multimedia,0 +advances in natural and applied sciences,0 +advances in natural sciences: nanoscience and nanotechnology,1 +advances in neonatal care,1 +advances in nephrology,0 +advances in neural information processing systems,3 +advances in neurodevelopmental disorders,1 +advances in nonlinear analysis,1 +advances in nursing,0 +advances in nursing science,2 +advances in nutrition,1 +advances in nutritional research,1 +advances in oceanography and limnology,1 +advances in online education,0 +advances in operations research,0 +advances in operator theory,1 +advances in optical technologies,1 +advances in optics and photonics,3 +advances in optoelectronics,0 +advances in organic synthesis,0 +advances in organometallic chemistry,1 +advances in orthopedic surgery,0 +advances in orthopedics,-1 +advances in oto-rhino-laryngology,1 +advances in parasitology,2 +advances in pediatric research,0 +advances in pediatrics,1 +advances in pharmacology,1 +advances in physical education,0 +advances in physical organic chemistry series,1 +advances in physics,3 +advances in physics: x,1 +advances in physiology education,1 +advances in polar science,0 +advances in polar science,1 +advances in polymer science,1 +advances in polymer technology,1 +advances in printing and media technology,0 +advances in printing science and technology,1 +advances in protein chemistry and structural biology,1 +advances in psychology study,0 +advances in psychosomatic medicine,1 +advances in pure and applied mathematics,1 +advances in quantum chemistry,1 +advances in radiation oncology,1 +advances in recycling & waste management,0 +advances in redox research,0 +advances in rehabilitation,0 +advances in rehabilitation science and practice,0 +advances in remote sensing,0 +advances in robotics & mechanical engineering,0 +advances in science and research,1 +advances in science and technology,0 +"advances in science, technology & innovation",1 +"advances in science, technology and engineering systems journal",0 +advances in sciences and technology,0 +advances in services marketing and management,1 +advances in simulation,1 +advances in skin and wound care,1 +"advances in social science, education and humanities research",-1 +advances in social sciences research journal,0 +advances in social work,1 +advances in software engineering,1 +advances in solid state physics,1 +advances in southeast asian studies,1 +advances in space research,1 +"advances in statistical climatology, meteorology and oceanography",1 +advances in stem cells,0 +advances in structural engineering,1 +advances in surgery,1 +advances in sustainability and environmental justice,0 +advances in technology innovation,0 +advances in the economic analysis of participatory and labor-managed firms,1 +advances in the economics of environmental resources,1 +advances in the study of behavior,1 +advances in theoretical and applied mathematics,1 +advances in theoretical and mathematical physics,1 +advances in therapy,1 +advances in tribology,1 +advances in vibration engineering,0 +advances in virology,0 +advances in virus research,1 +advances in water resources,2 +advances in wireless and optical communications,0 +advances in wound care,0 +advances.in/psychology,0 +advancing women in leadership,1 +adventure s. a.,0 +advertising and society review,1 +advokaatti,-1 +aea papers and proceedings,1 +aedam musicae,0 +aegaeum,1 +aegean archaeology,1 +aegyptus,1 +aei insights : an international journal of asia-europe relations,1 +ael,0 +aeolian research,1 +aequationes mathematicae,1 +aera open,1 +aerobiologia,1 +aeronautical journal,1 +aerosol and air quality research,1 +aerosol research,1 +aerosol science and engineering,1 +aerosol science and technology,1 +aerosolitutkimusseura ry.,0 +aerospace,0 +aerospace america,1 +aerospace medicine and human performance,1 +aerospace science and technology,1 +aes international conference on semantic audio,1 +aesculapius,-1 +aesthetic investigations,1 +aesthetic pathways,1 +aesthetic plastic surgery,1 +aesthetic surgery journal,1 +aesthetica editore,0 +aesthetica universalis,0 +aeternitas,0 +aethiopica,1 +aeu international journal of electronics and communication,1 +aevum antiquum,1 +"aevum: rassegna di scienze storiche, linguistiche e filologiche",1 +afer : african ecclesiastical review,1 +affarinternazionali,-1 +affective science,1 +affilia-journal of women and social work,1 +afinidad,0 +afinla-teema,1 +afinla:n vuosikirja,1 +aforismos,0 +africa,3 +africa academy of management,0 +africa development-afrique et developpement,1 +africa education review,0 +africa institute of south africa,1 +africa journal of management,1 +africa media review,1 +africa research journal,1 +africa review,1 +africa theological journal,1 +africa today,1 +africa world press,1 +african affairs,3 +african american review,1 +african and asian studies,1 +african and black diaspora,1 +african anthropologist,1 +african archaeological review,2 +african arts,2 +african christian studies,1 +african crop science journal: a journal of tropical crop science and production,1 +african development review-revue africaine de developpement,1 +african diaspora journal of mathematics,1 +african dynamics,1 +african economic history,1 +african entomology,1 +african finance journal,1 +african geographical review,1 +african health sciences,1 +african historical review,1 +african human rights law journal,1 +african human rights yearbook,1 +african identities,1 +african invertebrates,1 +"african journal for physical, health education, recreation and dance",0 +african journal of agricultural research,0 +african journal of aids research,1 +african journal of aquatic science,1 +african journal of business management,0 +african journal of ecology,1 +african journal of educational studies in mathematics and sciences,0 +african journal of emergency medicine,1 +african journal of environmental assessment and management,1 +african journal of environmental science and technology,0 +"african journal of food, agriculture, nutrition and development",1 +african journal of gender and religion,1 +african journal of herpetology,1 +"african journal of hospitality, tourism and leisure",0 +african journal of information systems,1 +african journal of international and comparative law,1 +african journal of legal studies,1 +african journal of library archives and information science,1 +african journal of marine science,1 +african journal of microbiology research,0 +"african journal of mining, entrepreneurship and natural resource management",0 +african journal of neurological sciences,1 +african journal of paediatric surgery,0 +african journal of pharmacy and pharmacology,0 +african journal of primary health care & family medicine,1 +african journal of privacy & data protection,1 +african journal of psychiatry,0 +african journal of range & forage science,1 +african journal of reproductive health,1 +african journal of rural development,0 +"african journal of science, technology, innovation and development",1 +african journal of social work,1 +african journal of traditional complementary and alternative medicines,0 +african journal on conflict resolution,1 +african journalism studies,1 +african literature today,1 +african minds,0 +african music: journal of the african music society,1 +african natural history,1 +african philosophy,1 +african population studies,1 +african primates,0 +african review,0 +african review of economics and finance,1 +african security review,1 +african social studies series,1 +african sociological review,1 +african sources for african history,1 +african studies,1 +african studies quarterly,1 +african studies review,1 +african sun media,1 +african technology development forum journal,0 +african yearbook of international law,1 +african zoology,1 +african-europe group for interdisciplinary studies,1 +africana linguistica,1 +afriche e orienti,0 +afrika focus,0 +afrika mathematica,1 +afrika spectrum,1 +afrika statistika.,0 +"afrika und uebersee: sprachen, kulturen",1 +afrique contemporaine,1 +afterall,1 +afterimage: the journal of media arts and cultural criticism,1 +aftonbladet,-1 +ag - about gender,0 +agalma,1 +agatheos,1 +agbioforum,1 +age and ageing,3 +"age, culture, humanities",1 +ageing and society,2 +ageing international,1 +ageing research reviews,1 +agenda,1 +agenda publishing,1 +agenda: empowering women for gender equity,1 +agenzia x,0 +ager: revista de estudios sobre despoblacion y desarrollo rural,1 +agerings bokförlag,0 +aggregate,0 +aggression and violent behavior,2 +aggressive behavior,2 +agh university of science and technology,0 +agile : giscience series,0 +agile alliance annual conference,0 +agile publishing,0 +aging,1 +aging and disease,1 +aging and mental health,1 +aging brain,1 +aging cell,2 +aging clinical and experimental research,1 +aging health,1 +aging male,1 +aging medicine,1 +aging neuropsychology and cognition,1 +agio publishing house,0 +agon,0 +agora,-1 +agora,1 +agora: estudos classicos em debate,1 +agora: papeles de filosofia,1 +agrarforschung schweiz,1 +agrarian south : the journal of political economy,1 +agrarinformatika folyoirat,0 +agrarni nauki,0 +agrekon,1 +agribusiness,1 +agricolan julkaisusarja,0 +agricolan kirja-arvostelut,-1 +agriculturae conspectus scientificus,-1 +agricultural and biological sciences journal,0 +agricultural and food economics,1 +agricultural and food science,1 +agricultural and forest entomology,1 +agricultural and forest meteorology,3 +agricultural and resource economics review,1 +agricultural economics,1 +agricultural economics research review,0 +agricultural economics review,1 +agricultural economics society annual conference,0 +agricultural finance review,1 +agricultural history,2 +agricultural history review,3 +agricultural research,1 +agricultural systems,2 +agricultural water management,1 +agriculture,0 +agriculture and food security,1 +agriculture and human values,2 +agriculture and natural resources,0 +agriculture ecosystems and environment,3 +"agriculture, forestry and fisheries",0 +agriengineering,0 +agro food industry hi-tech,1 +agrochimica,1 +agrociencia,1 +agroecology and sustainable food systems,1 +agrofor,1 +agroforestry systems,1 +agronomy,1 +agronomy for sustainable development,2 +agronomy journal,1 +agronomy monograph,1 +agronomy research,1 +agropedology,1 +agu advances,1 +ahead,1 +ahfe international,0 +ahfe international,1 +ai,1 +ai and ethics,1 +ai and society,1 +ai communications,1 +ai edam-artificial intelligence for engineering design analysis and manufacturing,1 +ai magazine,1 +ai open,1 +ai perspectives & advances,0 +aiaa journal,1 +aib insights,0 +aibr-revista de antropologia iberoamericana,1 +aiche journal,1 +aidic conference series,1 +aids,1 +aids and behavior,1 +aids care: psychological and socio-medical aspects of aids/hiv,1 +aids education and prevention,1 +aids patient care and stds,2 +aids research and human retroviruses,1 +aids research and therapy,1 +aids reviews,1 +aigis : elektronisk tidskrift for klassiske studier i norden,1 +aikamedia,0 +aikuiskasvatuksen vuosikirja,1 +aikuiskasvatus,1 +aila applied linguistics series,1 +aila review,1 +aims agriculture and food,1 +aims allergy and immunology,0 +aims biophysics,1 +aims cell and tissue engineering,0 +aims electronics and electrical engineering,1 +aims energy,1 +aims environmental science,1 +aims genetics,1 +aims geosciences,1 +aims materials science,1 +aims mathematics,1 +aims microbiology,1 +aims molecular science,1 +aims public health,1 +ain shams engineering journal,0 +ainedidaktiikka,1 +ainedidaktisia tutkimuksia,1 +ainu senjumin kenkyu,1 +aip advances,1 +aip conference proceedings,1 +air & space law,1 +air medical journal,1 +air power history,1 +air quality atmosphere and health,1 +air traffic control quarterly,0 +"air, soil and water research",1 +aircc publishing corporation,0 +aircraft engineering and aerospace technology,1 +airea,1 +airline business,1 +ais transactions on human-computer interaction,1 +ais transactions on replication research,1 +aisb publication,0 +aistech,0 +aisthesis,1 +aisthesis verlag,1 +aisti associação ibérica de sistemas e tecnologias de informação,0 +aito maaseutu keski-suomessa,-1 +aitoja makuja,-1 +aiucd : associazione per l'informatica umanistica e la cultura digitale,0 +aivc conference proceedings,0 +aivoitus,-1 +aivoterveys,-1 +ajalooline ajakiri: the estonian historical journal,1 +ajan kohina,-1 +ajankohta,1 +ajatus,2 +ajil unbound,1 +ajs perspectives,-1 +ajs review,1 +akaan seutu,-1 +akadeemia,0 +"akademia ekonomiczna im. karola adamieckiego, wydawnictwo uczelniane",0 +"akademia muzyczna im. karola lipi?skiego, rada biblioteczno-wydawnicza",0 +akademia sztuk pięknych w katowicach,0 +"akademicheskij nauchno-izdatel`skij, proizvodstvenno-poligraficheskij i knigorasprostranitel`skij centr ran izdatel`stvo nauka",0 +akademicheskij proekt,0 +"akademie der wissenschaften und der literatur, mainz",1 +akademie der wissenschaften zu göttingen,1 +akademie verlag,1 +akademie věd české republiky,0 +akademie věd české republiky : ústav teoretické a aplikované mechaniky,0 +akademija nauk tatarstan,1 +akademik acil t?p dergisi,0 +akademik gastroenteroloji,0 +akademik gıda dergisi,0 +akademika forlag,1 +akademine leidyba,0 +akademische verlagsgemeinschaft münchen,1 +akademisk forlag,1 +akademisk kvarter,1 +akademisk publisering,1 +akademos,0 +akademska misao,0 +akadémiai kiadó,1 +akashi shoten,1 +akava,0 +akce international journal of graphs and combinatorics,1 +akdeniz university,0 +akhlāq dar ̒ulūm va fannāvarī,0 +akilles forlag,1 +akkadica,2 +akpé,-1 +akropolis,0 +akroterion : journal for the classics in south africa,1 +aksenov petr grigorevich,0 +akt,-1 +akti,-1 +aktuel naturvidenskab,0 +aktuel nordisk odontologi,-1 +aktuelle neurologie,1 +aktuelle rheumatologie,1 +aktuelle urologie,1 +aktuellt om historia,-1 +aku ankka,-1 +aku ankka juniori,-1 +aku ankka2,0 +akustiikkapäivä,-1 +akys-tiedote,-1 +akzente-zeitschrift fur literatur,1 +al dar research journal for sustainability,1 +al'tiora forte,0 +al-andalus magreb : estudios arabes e islamicos,1 +al-farabi kazakh national university,0 +al-iḍaḥ,0 +"al-madar journal of communications, information technologies and applications",0 +al-magallah al-ilmiyyah li-gamiyyat imsia al-tarbiyai ani ttariq al-fan,0 +al-magallat al-tarihiyyat al-majribiyyat,1 +al-masaq: islam and the medieval mediterranean,1 +al-mağallaẗ,0 +al-mujamma? al-thaq?f?,0 +al-mukhatabat,1 +al-qantara,1 +al-shajarah,0 +al-ʻuṣūr al-wusṭá,1 +al-ḥaṣād,0 +al-ḥaṣad al tarbaw-̦i - kuliyaẗ al-muaʼalimin,0 +alameda,0 +alasbimn journal,1 +alaska history,0 +albanian journal of mathematics,1 +albany law journal of science & technology,0 +albatrossi,-1 +albert bonniers förlag,0 +albertiana,1 +albertus magnus,0 +albéitar,-1 +albéitar,-1 +alces: a journal devoted to the biology and management of moose,1 +alcheringa,1 +alcohol,1 +alcohol and alcoholism,1 +"alcohol, clinical & experimental research",2 +aldrichimica acta,1 +alea : latin american journal of probability and mathematical statistics,1 +alea: estudos neolatinos,1 +aled,1 +aleksanteri -sarja,1 +aleksanteri cold war series,1 +aleksanteri papers,-1 +aleph: historical studies in science and judaism,1 +alergologia polska,0 +aletejja,1 +alexandria engineering journal,1 +alexandria journal of medicine,1 +alfa print,0 +alfred kröner,1 +alfred university press,0 +algae,1 +algal research,1 +algebra and logic,1 +algebra and number theory,2 +algebra colloquium,1 +algebra i analiz,0 +algebra universalis,1 +algebraic and geometric topology,1 +algebraic combinatorics,1 +algebraic geometry,1 +algebraic statistics,1 +algebras and representation theory,1 +algemeen nederlands tijdschrift voor wijsbegeerte,1 +algemeen rijksarchief,0 +algorithmic finance,1 +algorithmica,2 +algorithms,1 +algorithms for intelligent systems,0 +algorithms for molecular biology,1 +alif: journal of comparative poetics,1 +alimenta,-1 +alimentary pharmacology and therapeutics,3 +alinea editrice,0 +aljamia,1 +alkalmazott nyelvtudomany,1 +all earth,1 +all european academies,0 +all'insegna del giglio,0 +allegoria: per uno studio materialistico della letteratura,1 +allegra lab,0 +allelopathy journal,1 +allen & unwin,1 +aller media oy,0 +"allergia, iho & astma",-1 +allergiatutkimussäätiö,0 +allergo journal international,1 +allergo-journal,1 +allergologia et immunopathologia,1 +allergologie,1 +allergology international,2 +allergy,3 +allergy and asthma proceedings,1 +allergy and clinical immunology news,1 +allergy and rhinology,0 +allergy asthma & immunology research,1 +"allergy, asthma, and clinical immunology",1 +allergy: european journal of allergy and clinical immunology: supplement,1 +allgemeine forst und jagdzeitung,1 +allgemeine vermessungs-nachrichten,1 +allgemeine zeitschrift fur philosophie,1 +alliance for childhood european network foundation,0 +allied publishers group,1 +allpanchis,1 +alma talent,1 +alman dili ve edebiyatı dergisi,0 +almanac : discources of ethics,1 +almatourism,0 +almenna bókafélagið,1 +almqvist & wiksell,1 +alpha psychiatry,1 +alpha science international,1 +"alpha: revista de artes, letras y filosofia",1 +alphaville,1 +alpine and mediterranean quaternary,1 +alpine botany,1 +alsic: apprentissage des langues et systemes dinformation et de communication,1 +alt-thuringen,1 +alta metallurgical services,0 +altai hakpo,0 +altajskij gosudarstvenny`j universitet,0 +altalanos nyelveszeti tanulmanyok,1 +altamira press,2 +alter,1 +alternation: interdisciplinary journal for the study of the arts and humanities in southern africa,0 +alternative and complementary therapies,1 +alternative and integrative medicine,0 +alternative francophone,1 +alternative medicine review,1 +alternative spirituality and religion review,1 +alternative therapies in health and medicine,1 +alternative: an international journal of indigenous scholarship,2 +alternatives,1 +alternatives theatrales,1 +alternautas,0 +altertum,1 +altex alternatives to animal experimentation,1 +altinget,-1 +alto comissariado para a imigração e diálogo intercultural,1 +altorientalische forschungen,1 +altre modernità,1 +altreitalie,1 +alue ja ympäristö,1 +alue- ja ympäristötutkimuksen seura ry,0 +aluehallintovirastojen julkaisuja,-1 +aluminium,1 +alumni (suomenkielinen painos),-1 +alumni (svensk utg.),-1 +alusta!,0 +alvar aalto -säätiö,0 +alvheim & eide,1 +alvissmal,1 +alzheimer disease and associated disorders,1 +alzheimer's & dementia,3 +"alzheimer's & dementia : diagnosis, assessment & disease monitoring",1 +alzheimer's & dementia : translational research & clinical interventions,1 +alzheimer's research and therapy,2 +alʹmanah severoevropejskih i baltijskih issledovanij,1 +ama educators' proceedings,0 +ama service gmbh,0 +ama winter educators' conference,0 +ama-agricultural mechanization in asia africa and latin america,0 +amanita,0 +amazoniana,1 +amazônica,1 +amb express,1 +ambiances,1 +ambiencia,0 +"ambient ... the ... international conference on ambient computing, applications, services and technologies",0 +ambiente construído,0 +ambio,2 +ambix,1 +ambroobook,0 +ameghiniana,1 +amerasia journal,1 +america,1 +america indigena,1 +america latina hoy,1 +american accounting association auditing section midyear meeting,0 +american annals of the deaf,1 +american anthropologist,3 +american antiquity,3 +american archivist,1 +american art,1 +american association for the advancement of science,1 +american association of petroleum geologists,1 +american association of physics teachers,1 +american astronautical society,0 +american bankruptcy law journal,1 +american bee journal,0 +american behavioral scientist,1 +american biology teacher,1 +american book publishing record,1 +american book review,1 +american business law journal,2 +american catholic philosophical quarterly,1 +american center for life cycle assessment,0 +american center for oriental research,1 +american center of oriental research,0 +american center of oriental research publications,1 +american ceramic society,1 +american ceramic society bulletin,1 +american chemical society,2 +american communication journal,1 +american communist history,1 +american concrete institute,1 +american criminal law review,1 +american economic journal: applied economics,3 +american economic journal: economic policy,3 +american economic journal: macroeconomics,3 +american economic journal: microeconomics,3 +american economic review,3 +american educational research association,0 +american educational research journal,3 +american entomologist,0 +american ethnologist,3 +american family physician,1 +american fern journal,1 +american fisheries society,0 +american foreign policy interests,1 +american geophysical union,1 +american heart journal,2 +american heart journal plus : cardiology research and practice,1 +american heritage,1 +american historical association,1 +american historical review,3 +american history,1 +american imago,1 +american indian culture and research journal,1 +american indian quarterly,1 +american institute of aeronautics and astronautics,1 +american institute of biological sciences,1 +american institute of chemical engineers,1 +american institute of mathematical sciences,2 +american institute of physics,1 +american international journal of social science,0 +american jewish history,1 +american journal of agricultural economics,3 +american journal of alzheimers disease and other dementias,1 +american journal of analytical chemistry,0 +american journal of ancient history,1 +american journal of applied sciences,1 +american journal of archaeology,3 +american journal of audiology,1 +american journal of bioethics,2 +american journal of biological and environmental statistics,0 +american journal of biological anthropology,1 +american journal of botany,1 +american journal of cancer research,0 +american journal of cardiology,1 +american journal of cardiovascular disease,1 +american journal of cardiovascular drugs,1 +american journal of civil engineering,0 +american journal of climate change,0 +american journal of clinical and experimental immunology,0 +american journal of clinical and medical research,0 +american journal of clinical dermatology,1 +american journal of clinical hypnosis,0 +american journal of clinical nutrition,3 +american journal of clinical oncology-cancer clinical trials,1 +american journal of clinical pathology,1 +american journal of community psychology,1 +american journal of comparative law,3 +american journal of computational and applied mathematics,0 +american journal of creative education,0 +american journal of criminal justice,1 +american journal of critical care,1 +american journal of cultural sociology,1 +american journal of dance therapy,1 +american journal of dentistry,1 +american journal of dermatopathology,1 +american journal of distance education,1 +american journal of drug and alcohol abuse,1 +american journal of economics and sociology,1 +american journal of education,1 +american journal of education and learning,0 +american journal of educational research,0 +american journal of emergency medicine,1 +american journal of engineering research,0 +american journal of enology and viticulture,1 +american journal of entrepreneurship,0 +american journal of environmental engineering and science,0 +american journal of environmental protection,0 +american journal of environmental sciences,0 +american journal of epidemiology,2 +american journal of epidemiology and infectious disease,0 +american journal of evaluation,2 +american journal of family therapy,1 +american journal of forensic medicine and pathology,1 +american journal of gastroenterology,2 +american journal of geriatric pharmacotherapy,1 +american journal of geriatric psychiatry,1 +american journal of health behavior,1 +american journal of health economics,2 +american journal of health promotion,1 +american journal of health studies,1 +american journal of health-system pharmacy,1 +american journal of hematology,2 +american journal of hospice and palliative care,1 +american journal of human biology,1 +american journal of human ecology,0 +american journal of human genetics,3 +american journal of hypertension,1 +american journal of industrial and business management,0 +american journal of industrial engineering,0 +american journal of industrial medicine,1 +american journal of infection control,1 +american journal of international law,3 +american journal of jurisprudence,1 +american journal of kidney diseases,2 +american journal of law and medicine,1 +american journal of legal history,1 +american journal of managed care,1 +american journal of management,1 +american journal of mathematical and management sciences,1 +american journal of mathematics,3 +american journal of media psychology,1 +american journal of medical genetics. part a,1 +american journal of medical genetics. part b : neuropsychiatric genetics,1 +american journal of medical genetics. part c : seminars in medical genetics,1 +american journal of medical quality,1 +american journal of medicine,2 +american journal of mens health,1 +american journal of molecular biology,0 +american journal of nephrology,1 +american journal of networks and communications,0 +american journal of neurodegenerative disease,0 +american journal of neuroradiology,1 +american journal of nuclear medicine and molecular imaging,1 +american journal of numismatics,1 +american journal of nursing,1 +american journal of nursing science,0 +american journal of nursing studies,0 +"american journal of obstetrics & gynecology, maternal-fetal medicine",1 +american journal of obstetrics and gynecology,3 +american journal of occupational therapy,1 +american journal of ophthalmology,2 +american journal of ophthalmology : case reports,1 +american journal of orthodontics and dentofacial orthopedics,1 +american journal of orthopsychiatry,1 +american journal of otolaryngology,1 +american journal of pathology,2 +american journal of perinatology,1 +american journal of perinatology reports,1 +american journal of pharmaceutical education,1 +american journal of philology,3 +american journal of physical medicine and rehabilitation,1 +american journal of physics,1 +american journal of physiology : cell physiology,2 +american journal of physiology : endocrinology and metabolism,2 +american journal of physiology : gastrointestinal and liver physiology,2 +american journal of physiology : heart and circulatory physiology,2 +american journal of physiology : lung cellular and molecular physiology,2 +american journal of physiology : regulatory integrative and comparative physiology,2 +american journal of physiology-renal physiology,1 +american journal of plant sciences,0 +american journal of play,1 +american journal of political science,3 +american journal of potato research,1 +american journal of preventive cardiology,1 +american journal of preventive medicine,2 +american journal of primatology,1 +american journal of psychiatric rehabilitation,1 +american journal of psychiatry,3 +american journal of psychoanalysis,1 +american journal of psychology,1 +american journal of psychotherapy,1 +american journal of public health,2 +american journal of recreation therapy,1 +american journal of reproductive immunology,1 +american journal of respiratory and critical care medicine,3 +american journal of respiratory cell and molecular biology,1 +american journal of rhinology and allergy,1 +american journal of roentgenology,1 +american journal of science,1 +american journal of semiotics,1 +american journal of sociology,3 +american journal of speech-language pathology,2 +american journal of sports medicine,3 +american journal of surgery,1 +american journal of surgical pathology,2 +american journal of the medical sciences,1 +american journal of theology and philosophy,1 +american journal of therapeutics,1 +american journal of tourism management,0 +american journal of tourism research,0 +american journal of translational research,1 +american journal of transplantation,3 +american journal of tropical medicine and hygiene,1 +american journal of veterinary research,2 +american journal of water science and engineering,0 +american journal on addictions,1 +american journal on intellectual and developmental disabilities,2 +american laboratory,0 +american law and economics review,1 +american literary history,3 +american literary realism,1 +american literary scholarship,1 +american literature,3 +american malacological bulletin,1 +american marketing association,0 +american mathematical monthly,1 +american mathematical society,2 +american meteorological society,1 +american midland naturalist,1 +american mineralogist,1 +american museum novitates,1 +american music,2 +american naturalist,3 +american nineteenth century history,1 +american nuclear society,2 +american oriental society,0 +"american periodicals: a journal of history, criticism and bibliography",1 +american pharmaceutical review,1 +american philosophical quarterly,2 +american physical society,1 +american phytopathological society,1 +american poetry review,1 +american political science association,0 +american political science review,3 +american political thought,0 +american politics research,1 +american psychiatric publishing,1 +american psychological association,1 +american psychologist,3 +american quarterly,2 +american review of canadian studies,1 +american review of international arbitration,1 +american review of public administration,2 +american rock mechanics association,1 +american scholar,1 +american school of classical studies at athens,1 +american school of prehistoric research monograph series,1 +american science press,1 +american scientific publishers,1 +american shipper,0 +american society for nondestructive testing,1 +american society for testing and materials,1 +american society of agricultural & biological engineers,1 +american society of agronomy,1 +american society of civil engineers,1 +american society of mechanical engineers,1 +american sociological review,3 +american speech,2 +american statistician,1 +american studies in scandinavia,1 +american studies journal,0 +american surgeon,1 +american translators association scholarly monograph series,1 +american university in cairo press,1 +american university international law review,1 +americana,1 +americana ebooks,0 +americana: e-journal of american studies in hungary,1 +americas,1 +americas conference on information systems,1 +amerikastudien,1 +amerindia,1 +amfiteater,1 +amfiteatru economic,0 +ami press,0 +amia ... annual symposium proceedings,0 +amino acids,1 +amity foundation,0 +amity journal of management,1 +amk- ja ammatillisen koulutuksen tutkimuspäivät,0 +amk-lehti,-1 +ammattikasvatuksen aikakauskirja,1 +ammattikeittiöosaaja,-1 +ammattiosaamisen kehittämisyhdistys amke ry,0 +ammattirakentaja,-1 +amme idaresi dergisi,1 +amos andersonin taidemuseo,0 +amos andersonin taidemuseon julkaisuja. uusi sarja,0 +ampersand,1 +amphibia-reptilia,1 +amphibian & reptile conservation,1 +amps proceedings series,1 +ampyx-verlag,0 +ams press,1 +ams review,1 +ams-rapport,1 +ams-skrifter,1 +ams-varia,1 +amsterdam studies in jewish philosophy,1 +amsterdam university press,2 +amsterdamer beitrage zur alteren germanistik,1 +amsterdamer beitrage zur neueren germanistik,1 +amsterdamer publikationen zur sprache und literatur,1 +amta proceedings,1 +amyloid-journal of protein folding disorders,1 +amyotrophic lateral sclerosis & frontotemporal degeneration,1 +anabasis,1 +anae. approche neuropsychologique des apprentissages chez l'enfant,0 +anaerobe,1 +anaesthesia,2 +anaesthesia and intensive care,1 +anaesthesiology : intensive therapy,1 +anais brasileiros de dermatologia,1 +anais da academia brasileira de ciências,1 +anais da association for moral education conference,0 +anais de historia de alem-mar,1 +anais do ... congresso nacional de educação,0 +anais do colóquio de moda,1 +anais do encontro nacional de pesquisa em moda,0 +anais do simpósio brasileiro de informática na educação,0 +anais do simpósio brasileiro de redes de computadores e sistemas distribuídos,1 +"anais do simpósio internacional de educação a distância, encontro de pesquisadores em educação a distância",-1 +anais do women in information technology,0 +analecta augustiniana,1 +analecta bollandiana,1 +analecta cartusiana : review for carthusian history and spirituality,1 +analecta cisterciensia,1 +analecta hibernica,1 +analecta husserliana: the yearbook of phenomenological research,1 +analecta papyrologica,1 +analecta praehistorica leidensia,1 +analecta praemonstratensia,1 +analecta romana instituti danici,1 +"analele stiintifice ale universitatii ""al.i. cuza"" din iasi : lingvistica",0 +analele stiintifice ale universitatii al i cuza din iasi-serie noua-matematica,1 +analele stiintifice ale universitatii ovidius constanta-seria matematica,1 +analele universitatii bucuresti : matematica-informatica,0 +"analele universitatii din craiova, seria stiinte filologice, lingvistica",1 +analele universitatii din oradea : stiinte economice,0 +"analele universităţii din craiova : seria ştiinţe filologice, langues et littératures romanes",1 +"analele universităţii. seria ştiinţele limbii, literatură şi didactica predării, limbi şi literaturi străine",0 +anales,0 +anales cervantinos,1 +anales de antropologia,1 +anales de filologia clasica,1 +anales de la literatura espanola contemporanea,2 +anales de literatura chilena,1 +anales de literatura hispanoamericana,3 +anales de pediatria,1 +anales de psicologia,0 +anales de veterinaria de murcia,0 +anales del instituto de actuarios españoles,0 +anales del instituto de investigaciones esteticas,1 +anales del instituto de lingüística,0 +anales del jardin botanico de madrid,1 +anales del seminario de historia de la filosofia,1 +anales del sistema sanitario de navarra,1 +anales galdosianos,1 +anali,1 +anali hrvatskog politološkog društva,1 +anali zavoda za povijesne znanosti hrvatske akademije znanosti i umjetnosti u dubrovniku,0 +analisi: quaderns de comunicacio i cultura,1 +analitica,0 +analiz riska zdorovʹû,0 +analize,1 +analog and mixed signal integrated circuits for space applications conference,0 +analog game studies,0 +analog integrated circuits and signal processing,1 +analog magazine,-1 +analogia,1 +analyse opinion critique,-1 +analyse und kritik: zeitschrift fuer sozialtheorie,1 +analyses of social issues and public policy,1 +analysis,3 +analysis & sensing,1 +analysis and applications,1 +analysis and geometry in metric spaces,1 +analysis and mathematical physics,1 +analysis and pde,3 +analysis in theory and applications,1 +analysis mathematica,1 +analysis: international mathematical journal of analysis and its applications,1 +analyst,1 +analytic methods in accident research,1 +analytic philosophy,2 +analytic press,1 +analytic teaching and philosophical praxis,1 +analytica,0 +analytica chimica acta,2 +analytica chimica acta x,1 +analytical and bioanalytical chemistry,1 +analytical and bioanalytical chemistry research,0 +analytical biochemistry,1 +analytical cellular pathology,1 +analytical chemistry,3 +analytical chemistry research,1 +analytical letters,1 +analytical methods,1 +analytical science advances,1 +analytical sciences,1 +analytrics,0 +analyytikko,-1 +anaphora,0 +anaquel de estudios arabes,1 +anarchist developments in cultural studies,1 +anarchist studies,1 +anarâš,-1 +anasthesiologie intensivmedizin notfallmedizin schmerztherapie,1 +anasthesiologie und intensivmedizin,1 +anatolia : an international journal of tourism and hospitality,1 +anatolia antiqua,1 +anatolia turizm ve cevre kulturu dergisi,1 +anatolian studies,2 +anatolica,1 +anatomia histologia embryologia,1 +anatomical record-advances in integrative anatomy and evolutionary biology,1 +anatomical science international,1 +anatomical sciences education,1 +anatomy & cell biology,1 +anazitiseis sti fysiki kai ton athlitismo,0 +análisis,1 +ancient america,0 +ancient asia,1 +ancient civilizations from scythia to siberia,2 +ancient egypt,1 +ancient history bulletin,1 +ancient history magazine,-1 +ancient israel and its literature,1 +ancient judaism and early christianity,3 +"ancient mediterranean and medieval texts and contexts: studies in platonism, neoplatonism, and the platonic tradition",1 +ancient mesoamerica,1 +ancient narrative,1 +ancient near eastern monographs,1 +ancient near eastern studies,1 +ancient philosophy,2 +ancient society,1 +ancient warfare,-1 +ancient west and east,1 +andamios,1 +andante,-1 +andean geology,1 +anderseniana,1 +andragoška spoznanja,0 +andragoški glasnik,0 +andrias,1 +andrologia,1 +andrology,0 +andrology,1 +andromeda books,0 +ane books pvt. ltd.,0 +anesthesia and analgesia,2 +anesthesia progress,1 +anesthesiology,2 +anesthesiology and pain medicine,0 +anesthesiology clinics,1 +angelaki-journal of the theoretical humanities,1 +angelo pontecorboli editore,0 +angewandte chemie,3 +angiogenesis,2 +angiologiia i sosudistaia khirurgiia,0 +angiology,1 +angle orthodontist,1 +anglia,2 +anglica,1 +anglica wratislaviensia,1 +anglican and episcopal history,1 +anglican theological review,1 +anglistica aion : an interdisciplinary journal,1 +anglistik,1 +anglo saxonica,0 +anglo-norman studies,1 +anglo-saxon england,1 +anglo-saxon studies in archaeology and history,1 +anglophonia (en ligne),1 +animal,2 +animal : open space,0 +animal : science proceedings,0 +animal behavior and cognition,1 +animal behaviour,2 +animal biodiversity and conservation,1 +animal biology,1 +animal bioscience,1 +animal biotechnology,1 +animal biotelemetry,1 +animal cells and systems,1 +animal cognition,1 +animal conservation,1 +animal feed science and technology,2 +animal frontiers,1 +animal genetic resources,1 +animal genetics,2 +animal health research reviews,1 +animal history,0 +"animal husbandry, dairy and veterinary science",0 +animal law,0 +animal microbiome,1 +animal migration,1 +animal nutrition,1 +animal nutrition and feed technology,1 +animal production science,1 +animal reproduction,1 +animal reproduction science,1 +animal science journal,1 +animal science papers and reports,1 +animal sentience,1 +animal studies journal,1 +animal welfare,1 +animalia,-1 +animals,1 +animation journal,1 +animation-an interdisciplinary journal,2 +animus: the canadian journal of philosophy and humanities,1 +aninkainen,-1 +anja mäntylän rahasto,0 +ankara üniversitesi ilef dergisi,0 +ankara üniversitesi veteriner fakültesi dergisi,1 +ankem dergisi,0 +annablume,0 +annalen der physik,1 +"annalen des naturhistorischen museums in wien : serie a für mineralogie und petrographie, geologie und paläontologie, anthropologie und prähistorie",1 +annales academiae scientiarum fennicae,0 +annales archeologiques arabes syriennes,1 +annales botanici fennici,1 +annales d endocrinologie,1 +annales de bourgogne,1 +annales de bretagne et des pays de l'ouest,1 +annales de cardiologie et d angeiologie,1 +annales de chimie-science des materiaux,1 +annales de chirurgie plastique esthetique,1 +annales de demographie historique,1 +annales de dermatologie et de venereologie,1 +annales de geographie,1 +annales de l institut fourier,2 +"annales de l'economie publique, sociale et cooperative",1 +annales de la faculté des sciences de toulouse,1 +annales de la fondation louis de broglie,1 +annales de la societe entomologique de france,1 +annales de la societe royale d archeologie de bruxelles,1 +annales de li.s.u.p.,1 +annales de l’institut henri poincare-probabilites et statistiques,2 +annales de l’institut henri poincaré : analyse non linéaire,3 +"annales de l’institut henri poincaré d : combinatorics, physics and their interaction",1 +annales de medecine veterinaire,1 +annales de paleontologie,1 +annales de pathologie,1 +annales des sciences mathematiques du quebec,1 +annales du midi,1 +annales du patrimoine,1 +annales du service des antiquites de l egypte,1 +annales fennici mathematici,2 +annales geophysicae,1 +annales henri lebesgue,1 +annales henri poincaré : a journal of theoretical and mathematical physics,2 +annales historiques de la revolution francaise,1 +annales jean-jacques rousseau,1 +annales littéraires de luniversité de besançon: série linguistique et sémiotique,0 +annales mathematicae et informaticae,1 +annales mathematiques blaise pascal,1 +annales mathématiques du québec,1 +annales medico-psychologiques,1 +annales mercaturae,1 +annales philosophici,0 +annales polonici mathematici,1 +annales scientia politica,0 +annales scientifiques de l ecole normale superieure,3 +annales societatis geologorum poloniae,1 +annales theologici,0 +annales universitatis apulensis : seria philologica,1 +annales universitatis mariae curie-sklodowska: sectio a mathematica,1 +"annales universitatis mariae curie-skłodowska : sectio k, politologia",0 +annales universitatis paedagogicae cracoviensis,0 +annales universitatis scientiarum budapestinensis de rolando eötvös nominatae : sectio mathematica,0 +annales zoologici,1 +annales zoologici fennici,1 +annales-anali za istrske in mediteranske studije-series historia et sociologia,1 +"annales: histoire, sciences sociales",3 +annali benacensi,1 +annali d'italianistica,1 +"annali del dipartimento di studi letterari, linguistici e comparati. sezione linguistica",1 +annali del lazio meridionale,0 +annali dell istituto superiore di sanita,1 +annali dell istituto universitario orientale di napoli,1 +annali dell'università di ferrara. sezione 7: scienze matematiche,1 +annali della fondazione verga,0 +annali della scuola normale superiore di pisa,1 +annali della scuola normale superiore di pisa-classe di scienze,2 +annali di archeologia e di storia antica,1 +annali di ca foscari: rivista della facoltà di lingue e letterature straniere della università di venezia,1 +annali di ca' foscari : serie occidentale,1 +annali di igiene,1 +annali di matematica pura ed applicata,1 +annali di scienze religiose,1 +annali di storia delle università italiane,1 +annali di storia dellesegesi,1 +annali italiani di chirurgia,0 +annals academy of medicine singapore,1 +annals in social responsibility,1 +annals of 3d printed medicine,1 +annals of actuarial science,1 +annals of agricultural and environmental medicine,1 +annals of agricultural science,0 +annals of air and space law,1 +annals of allergy asthma and immunology,1 +annals of anatomy-anatomischer anzeiger,1 +annals of animal science,1 +annals of applied biology,1 +annals of applied mathematics,0 +annals of applied probability,3 +annals of applied sport science,0 +annals of applied statistics,3 +annals of arid zone,1 +annals of behavioral medicine,2 +annals of biological research,0 +annals of biomedical engineering,2 +annals of blood,0 +annals of botany,2 +annals of breast surgery,1 +annals of cardiac anaesthesia,1 +annals of cardiothoracic surgery,0 +annals of carnegie museum,1 +annals of case reports,0 +annals of clinical and laboratory science,1 +annals of clinical and translational neurology,1 +annals of clinical biochemistry,1 +annals of clinical case reports,0 +annals of clinical microbiology and antimicrobials,1 +annals of clinical psychiatry,1 +annals of combinatorics,1 +annals of computer science and information systems,1 +annals of daaam and proceedings,1 +annals of data science,1 +annals of dermatological research,0 +annals of dermatology,1 +annals of diagnostic pathology,1 +annals of disaster risk sciences,0 +annals of dyslexia,1 +annals of economics and finance,1 +annals of economics and statistics,1 +annals of emergency medicine,2 +annals of emerging technologies in computing,0 +annals of environmental science,0 +annals of epidemiology,1 +annals of epidemiology and public health,0 +annals of family medicine,1 +annals of finance,1 +annals of financial economics,1 +annals of forest research,1 +annals of forest science,1 +annals of functional analysis,1 +annals of gastroenterological surgery,1 +annals of general psychiatry,1 +annals of geophysics,1 +annals of glaciology,1 +annals of global analysis and geometry,1 +annals of global health,1 +annals of hematology,1 +annals of hepatology,1 +annals of human biology,1 +annals of human genetics,1 +annals of indian academy of neurology,1 +annals of innovation and entrepreneurship,0 +annals of intensive care,1 +annals of internal medicine,3 +annals of internal medicine : clinical cases,0 +annals of laboratory medicine,1 +annals of language and literature,0 +annals of leisure research,1 +annals of long-term care,1 +annals of mathematical sciences and applications,1 +annals of mathematics,3 +annals of mathematics and artificial intelligence,1 +annals of mathematics studies,1 +annals of maxillofacial surgery,0 +annals of medical and health sciences research,0 +annals of medicine,2 +annals of medicine and surgery,0 +annals of microbiology,1 +annals of neurology,3 +annals of noninvasive electrocardiology,1 +annals of nuclear energy,1 +annals of nuclear medicine,1 +annals of nursing and practice,0 +annals of nutrition and metabolism,1 +annals of occupational hygiene,1 +annals of oncology,3 +annals of operations research,1 +annals of ophthalmology,1 +annals of otolaryngology and rhinology,1 +annals of otology rhinology and laryngology,1 +annals of palliative medicine,1 +annals of pde,1 +annals of pediatric surgery,0 +annals of pharmacotherapy,1 +annals of physical and rehabilitation medicine,1 +annals of physics,1 +annals of plastic surgery,1 +annals of probability,3 +annals of pure and applied logic,2 +annals of regional science,1 +annals of saudi medicine,1 +annals of scholarship,1 +annals of science,3 +annals of solid and structural mechanics,1 +annals of statistics,3 +annals of surgery,3 +annals of surgery open,1 +annals of surgical oncology,2 +annals of surgical treatment and research,1 +annals of telecommunications-annales des telecommunications,1 +annals of the american academy of political and social science,2 +annals of the american association of geographers,3 +annals of the american thoracic society,2 +annals of the entomological society of america,1 +annals of the faculty engineering hunedoara,0 +annals of the history of computing,1 +annals of the icrp,1 +annals of the institute of statistical mathematics,1 +annals of the international communication association,1 +annals of the missouri botanical garden,1 +annals of the naprstek museum,1 +annals of the new york academy of sciences,1 +annals of the polish association of agricultural and agribusiness economists,0 +annals of the rheumatic diseases,3 +annals of the royal college of surgeons of england,1 +annals of thoracic and cardiovascular surgery,1 +annals of thoracic medicine,1 +annals of thoracic surgery,2 +annals of tourism research,3 +annals of tourism research empirical insights,1 +annals of translational medicine,0 +annals of transplantation,1 +annals of vascular surgery,1 +annals of work exposures and health,1 +annals. series on science of mathematics,0 +annee balzacienne,1 +annee psychologique,0 +annuaire de la haye de droit international,1 +annuaire du college de france : resume des cours et travaux,1 +annuaire europeen,1 +annuaire francais de droit international,1 +annuaire roumain danthropologie,1 +annual acm sigplan-sigact symposium on principles of programming languages,2 +annual acm symposium on parallelism in algorithms and architectures,2 +annual acm/ieee symposium on logic in computer science,2 +annual asian simulation and ai in computer games international conference,0 +annual bulletin of historical literature,1 +annual conference of the austrian society of agricultural economics,0 +annual conference of the international foundation of fashion technology institutes,0 +annual conference of the international group for lean construction,0 +annual conference of the special interest group on data communication,3 +annual conference on innovation & technology in computer science education,1 +annual conference on theory and applications of models of computation,0 +annual conference proceedings (association for business communication),0 +"annual ieee communications society conference on sensor, mesh and ad hoc communications and networks workshops",1 +annual ieee semiconductor thermal measurement and management symposium,1 +annual international conference of the british computer society`s specialist group on artificial intelligence,1 +annual international conference of the ieee engineering in medicine and biology society,1 +annual international conference on computer games multimedia & allied technology,0 +annual international conference on mobile computing and networking,3 +annual international conference on the theory and applications of cryptographic techniques,3 +annual journal of electronics,0 +annual mediterranean ad hoc networking workshop,0 +annual meeting of the american association for cancer research,0 +annual meeting of the american educational research association,0 +annual meeting of the american institute of chemical engineers,1 +annual meeting of the association for computational linguistics,3 +annual meeting of the decision sciences institute proceedings,1 +annual meeting of the european society for blood and marrow transplantation,0 +annual meeting of the international continence society,0 +annual meeting setac,0 +annual neurofibromatosis conference,0 +annual of the british school at athens,3 +annual of the department of antiquities of jordan,1 +annual privacy forum,1 +annual publication in african linguistics,1 +annual report : conference on electrical insulation and dielectric phenomena,1 +annual reports in medicinal chemistry,1 +annual reports on nmr spectroscopy,1 +"annual reports on the progress of chemistry. section c, physical chemistry",1 +annual research & review in biology,0 +annual review of analytical chemistry,1 +annual review of animal biosciences,2 +annual review of anthropology,2 +annual review of applied linguistics,2 +annual review of astronomy and astrophysics,3 +annual review of biochemistry,2 +annual review of biomedical engineering,2 +annual review of biophysics,2 +annual review of cancer biology,-1 +annual review of cell and developmental biology,2 +annual review of chemical and biomolecular engineering,1 +annual review of clinical psychology,3 +annual review of condensed matter physics,3 +"annual review of control, robotics, and autonomous systems",1 +annual review of critical psychology,1 +annual review of cybertherapy and telemedicine,1 +annual review of earth and planetary sciences,3 +annual review of ecology evolution and systematics,3 +annual review of economics,2 +annual review of entomology,2 +annual review of environment and resources,2 +annual review of financial economics,1 +annual review of fluid mechanics,3 +annual review of food science and technology,2 +annual review of genetics,2 +annual review of genomics and human genetics,2 +annual review of immunology,3 +annual review of law and social science,2 +annual review of linguistics,1 +annual review of marine science,3 +annual review of materials research,2 +annual review of medicine,2 +annual review of microbiology,1 +annual review of neuroscience,2 +annual review of nuclear and particle science,1 +annual review of nutrition,3 +annual review of pathology,2 +annual review of pathology-mechanisms of disease,2 +annual review of pathology: mechanisms of disease,2 +annual review of pharmacology and toxicology,3 +annual review of physical chemistry,1 +annual review of physiology,3 +annual review of phytopathology,2 +annual review of plant biology,2 +annual review of political science,3 +annual review of psychology,3 +annual review of public health,3 +annual review of resource economics,1 +annual review of sociology,3 +annual review of statistics and its application,1 +annual review of virology,1 +annual review of vision science,1 +annual reviews in control,2 +annual swedish phonetics conference,0 +annual symposium on foundations of computer science,3 +annual transactions of the nordic rheology society,1 +annual workshop on network and system support for games,1 +"annual workshop on wireless of the students, by the students, and for the students",0 +annual wyrd con interactive theater convention,0 +annuario della scuola archeologica di atene e delle missioni italiane in oriente,1 +annuario dellistituto storico italiano per leta moderna e contemporanea,1 +annuarium historiae conciliorum: internationale zeitschrift fur konziliengeschichtsforschung,1 +another gaze,-1 +"anq-a quarterly journal of short articles, notes and reviews",1 +antaeus,1 +antarctic science,1 +antennae,1 +antenore,1 +antepodium,1 +anthem press,1 +anthropocene,1 +anthropocene science,0 +anthropocenes,0 +anthropochildren,1 +anthropoetics: the journal of generative anthropolgy,1 +anthropologica,2 +anthropologica et praehistorica,1 +anthropological forum,2 +anthropological journal of european cultures,2 +anthropological linguistics,2 +anthropological notebooks,1 +anthropological quarterly,2 +anthropological review,1 +anthropological science,1 +anthropological theory,3 +anthropologie et societes,1 +anthropologischer anzeiger,1 +anthropologist,0 +anthropology & aging,1 +anthropology & materialism,1 +anthropology & photography,0 +anthropology and archeology of eurasia,1 +anthropology and education quarterly,2 +anthropology and humanism,1 +anthropology and medicine,2 +anthropology in action,2 +anthropology matters journal,0 +anthropology news,0 +anthropology of consciousness,1 +anthropology of east europe review,1 +anthropology of food: web journal dedicated to the sociology and anthropology of food,1 +anthropology of this century,0 +anthropology of work review,1 +anthropology southern africa,1 +anthropology today,1 +anthropológica del departamento de ciencias sociales,1 +anthropos,1 +anthropozoologica,1 +anthrozoos,1 +anthurium,1 +anti trafficking review,1 +anti-cancer agents in medicinal chemistry,1 +anti-cancer drugs,1 +anti-corrosion methods and materials,1 +anti-infective agents,1 +anti-inflammatory and anti-allergy agents in medicinal chemistry,1 +antiatlas journal,1 +antibiotics,0 +antibiotiki i himioterapiâ,0 +anticancer research,1 +antichthon,1 +antifaschistisches info-blatt,-1 +antigonish review,1 +antiguo oriente,0 +antiikki & design,-1 +antike kunst,2 +antike münzen und geschnittene steine,1 +antike und abendland,1 +antike welt,1 +antimicrobial agents and chemotherapy,3 +antimicrobial resistance & infection control,1 +antimicrobial stewardship & healthcare epidemiology,1 +antioch review,1 +antioxidants,0 +antioxidants and redox signaling,2 +antipodas: journal of hispanic and galician studies,1 +antipode,3 +antipodes,1 +antiqua,0 +antiquaries journal,1 +"antiquitas, byzantium, renascentia",0 +antiquite classique,1 +antiquite tardive,2 +antiquites africaines,1 +antiquites nationales,1 +antiquity,3 +antitrust bulletin,1 +antitrust law journal,1 +antiviral chemistry and chemotherapy,1 +antiviral research,1 +antiviral therapy,1 +antologia kiado,0 +antonianum,1 +antonie van leeuwenhoek international journal of general and molecular microbiology,1 +antriebstechnik,0 +antroblogi,-1 +antropolitica,1 +antropologi indonesia,1 +antropologia portuguesa,1 +antropologicas,1 +antropologiceskij forum,2 +anu centre for european studies briefing paper series,-1 +anu press,1 +anuac,1 +anuari de filologia : estudis de lingüística,1 +anuari de filologia. llengües i literatures modernes,0 +"anuari de filologia: seccio d, studia graeca et latina",1 +anuario calderoniano,1 +anuario de estudios americanos,1 +anuario de estudios centroamericanos,1 +anuario de estudios medievales,1 +anuario de historia de la iglesia,1 +anuario de historia del derecho espanol,1 +anuario filosofico,1 +anuario iberoamericano de derecho internacional penal,0 +anuario musical,1 +anuarul institutul de etnografie si folclor constantin ibrailoiu,1 +anxiety stress and coping,1 +anyanyelv-pedagógia,0 +anz journal of surgery,1 +anzeiger des germanischen nationalmuseums,1 +anzeiger für die altertumswissenschaft,1 +anziam journal,1 +anzmac conference proceedings,0 +aob plants,1 +aoisis,0 +aorn journal,1 +aorta,1 +aosis publishing,0 +aotearoa new zealand social work,1 +apcbees procedia,0 +apeiron,2 +apeiron: studies in infinite nature,1 +aperture,1 +aperture neuro,0 +aphasiology,2 +aphex,0 +apidologie,1 +apl electronic devices,-1 +apl energy,1 +apl materials,2 +apl photonics,2 +apl: organic electronics and photonics,1 +apmis,1 +apmis acta pathologica microbiologica et immunologica scandinavica: supplementum,1 +apocalyptica,0 +apocrypha,1 +apollinaris,1 +apollo : the international magazine for collectors,1 +apoptosis,1 +aportes: revista de historia contemporanea,1 +appalachian journal,1 +apparatus,1 +appelhans-verlag,1 +appell förlag,0 +appetite,2 +appita,0 +appita annual conference proceedings,1 +appita journal,1 +appita magazine,0 +apple academic press inc.,0 +apples: journal of applied language studies,1 +applicable algebra in engineering communication and computing,1 +applicable analysis,1 +applicable analysis and discrete mathematics,1 +application of clinical genetics,1 +applications in energy and combustion science,1 +applications in plant sciences,1 +applications of mathematics,1 +applied acoustics,2 +applied ai letters,1 +applied and computational harmonic analysis,2 +applied and computational mathematics,0 +applied and environmental microbiology,1 +applied and environmental soil science,1 +applied and preventive psychology,1 +applied animal behaviour science,2 +applied artificial intelligence,1 +applied biochemistry and biotechnology,1 +applied biochemistry and microbiology,1 +applied bionics and biomechanics,0 +applied cardiopulmonary pathophysiology,1 +applied catalysis : open,1 +applied catalysis a : general,2 +applied catalysis b : environmental,3 +applied categorical structures,1 +applied chemical engineering,-1 +applied clay science,1 +applied clinical informatics,1 +applied clinical trials,0 +applied cognitive psychology,1 +applied composite materials,1 +applied computational electromagnetics society journal,1 +applied computational intelligence and soft computing,0 +applied computer systems,1 +applied computing and geosciences,1 +applied computing and informatics,0 +applied computing and intelligence,1 +applied computing review,1 +applied corpus linguistics,1 +applied developmental science,1 +applied ecology and environmental research,0 +applied economic perspectives and policy,1 +applied economics,1 +applied economics letters,1 +applied economics quarterly,1 +applied electronics,0 +applied energy,3 +applied engineering in agriculture,1 +applied entomology and zoology,1 +applied environmental education and communication,1 +applied ergonomics,2 +applied finance letters,0 +applied financial economics,1 +applied food biotechnology,0 +applied food research,1 +applied general topology,1 +applied geochemistry,1 +applied geography,2 +applied geomatics,1 +applied geophysics,1 +applied health economics and health policy,1 +applied immunohistochemistry and molecular morphology,1 +applied in vitro toxicology,1 +applied informatics,0 +applied intelligence,1 +applied linguistics,3 +applied linguistics review,1 +applied magnetic resonance,1 +applied materials today,1 +applied mathematical finance,1 +applied mathematical modelling,1 +applied mathematical sciences,0 +applied mathematics,0 +applied mathematics and computation,1 +applied mathematics and information sciences,0 +applied mathematics and mechanics-english edition,1 +applied mathematics and optimization,2 +applied mathematics e: notes,1 +applied mathematics for modern challenges,1 +applied mathematics in science and engineering,1 +applied mathematics letters,1 +applied mathematics research express,1 +applied mathematics-a journal of chinese universities series b,0 +applied measurement in education,1 +applied mechanics,0 +applied mechanics and materials,1 +applied mechanics reviews,1 +applied microbiology and biotechnology,2 +applied mobilities,1 +applied nanoscience,1 +applied network science,1 +applied neuropsychology : adult,1 +applied neuropsychology : child,1 +applied numerical mathematics,1 +applied nursing research,1 +applied ocean research,1 +applied ontology,2 +applied optics,1 +applied organometallic chemistry,1 +applied physics a-materials science and processing,1 +applied physics b-lasers and optics,1 +applied physics express,1 +applied physics letters,3 +applied physics reviews,2 +applied physiology nutrition and metabolism-physiologie appliquee nutrition et metabolisme,1 +applied police briefings,0 +applied pragmatics,1 +applied psycholinguistics,2 +applied psychological measurement,1 +applied psychology,1 +applied psychology: health and well-being,1 +applied psychophysiology and biofeedback,1 +applied radiation and isotopes,1 +applied radiology,1 +applied research in quality of life,1 +applied rheology,1 +applied science and convergence technology,0 +applied science and engineering progress,0 +applied sciences,0 +applied semiotics,1 +applied soft computing,1 +applied soil ecology,1 +applied spatial analysis and policy,1 +applied spectroscopy,1 +applied spectroscopy practica,0 +applied spectroscopy reviews,1 +applied stochastic models in business and industry,1 +applied surface science,2 +applied surface science advances,1 +applied system innovation,0 +applied theatre research,2 +applied thermal engineering,3 +applied vegetation science,1 +applied water science,1 +appliedmath,0 +approaches,1 +approaches to culture theory series,0 +approaching religion,2 +apress,0 +apria,1 +apsipa transactions on signal and information processing,1 +apstract,1 +apt bulletin: the journal of preservation technology,1 +aptor software,0 +aptum,1 +apu juniori,-1 +apuntes hispanicos,1 +apus,-1 +aq,-1 +aqua,1 +aquacultural engineering,1 +aquaculture,2 +aquaculture and fisheries,1 +aquaculture economics and management,1 +aquaculture environment interactions,1 +aquaculture international,1 +aquaculture nutrition,1 +aquaculture reports,1 +aquaculture research,1 +"aquaculture, fish and fisheries",1 +aquarius,-1 +aquatic biology,1 +aquatic biology research,0 +aquatic botany,1 +aquatic conservation : marine and freshwater ecosystems,1 +aquatic ecology,1 +aquatic ecosystem health and management,1 +aquatic geochemistry,1 +aquatic insects,1 +aquatic invasions,1 +aquatic living resources,1 +aquatic mammals,1 +aquatic microbial ecology,1 +aquatic sciences,1 +aquatic toxicology,2 +aquichan,1 +ar/dé,0 +ara,-1 +arab gulf journal of scientific research,1 +arab historical review for ottoman studies,1 +arab journal of gastroenterology,1 +arab journal of mathematical sciences,1 +arab journal of urology,0 +arab media and society,1 +arab studies journal,1 +arab studies quarterly,1 +arab world english journal,1 +arabian archaeology and epigraphy,2 +arabian humanities,0 +arabian journal for science and engineering,1 +arabian journal of chemistry,1 +arabian journal of geosciences,0 +arabian journal of mathematics,-1 +arabic sciences and philosophy,1 +arabica,3 +arachnologische mitteilungen,0 +arachnology,1 +aracne,0 +aracne editrice,1 +aram basim reklam veyayincilik sanayi ticaret limite,0 +aram periodical,1 +aramaic studies,1 +aratake shuppan,1 +arator,0 +araviesti,-1 +arbeiderhistorie,1 +arbeidsforskningsinstituttet,0 +arbeidsrett,1 +"arbeit, bewegung, geschichte",0 +arbeiten zur kirchen- und theologiegeschichte,1 +arbeits- und forschungsberichte zur sächsischen bodendenkmalpflege,1 +"arbejderhistorie: tidsskrift for historie, kultur og politik",1 +arbetarbladet,-1 +arbetarhistoria: meddelande från arbetarrorelsens arkiv och bibliotek,0 +arbetsmarknad & arbetsliv,1 +arbetsrapport,-1 +arbitration international,2 +arbitražnye spory,0 +arbitrer : scientific journal of linguistics society of indonesia,0 +arbitrium: zeitschrift für rezensionen zur germanistischen literaturwissenschaft,1 +"arbor : ciencia, pensamiento y cultura",1 +arborescences,1 +arboriculture and urban forestry,1 +arc humanities press,1 +arca lovaniensis,0 +arcada -nylands svenska yrkeshögskola,0 +arcada working papers,-1 +arcadia,2 +arch plus,1 +archa verbi,1 +archaea,1 +archaeofauna,1 +archaeolingua,-1 +archaeolingua alapítvány,0 +archaeologia aeliana,1 +archaeologia cambrensis,1 +archaeologia islandica,1 +archaeologia lituana,1 +archaeologia maritima mediterranea,1 +archaeologia medii aevi finlandiae,1 +archaeologia polona,1 +archaeologica austriaca,2 +archaeologica baltica,1 +archaeologica bulgarica,1 +archaeological and anthropological sciences,2 +archaeological dialogues,3 +archaeological prospection,2 +archaeological reports,1 +archaeological research in asia,1 +archaeological review from cambridge,0 +archaeological textiles newsletter,1 +archaeological textiles review,1 +archaeologies,1 +archaeology,0 +archaeology and environment,1 +archaeology in oceania,1 +archaeology in wales,1 +archaeology ireland,1 +archaeology of food and foodways.,0 +archaeology of york,1 +"archaeology, ethnology and anthropology of eurasia",1 +archaeometry,3 +archaeonautica,1 +archaeopress,1 +archaiologikon deltion,0 +archeo,1 +archeologia,1 +archeologia classica,1 +archeologia e calcolatori,1 +archeologia medievale,2 +archeologia mosellana,1 +archeologia polski,1 +archeologia postmedievale,1 +archeologica veneta,1 +archeological papers of the american anthropological association,1 +archeologicke rozhledy,1 +archeologie du midi medieval,1 +archeologie en languedoc,1 +archeologie medievale,1 +archeology international,1 +archeostorie,1 +archeotex,1 +archetype publications,1 +archidocs,0 +archidoct,1 +archimad,-1 +archipel-etudes interdisciplinaires sur le monde insulindien,1 +architect,0 +architectura-zeitschrift für geschichte der baukunst,1 +architectura: arkitekturhistorisk årsskrift,1 +architectural design,0 +architectural digest,0 +architectural engineering and design management,2 +architectural histories,2 +architectural history,2 +architectural record,0 +architectural research in finland,1 +architectural review,0 +architectural science association,0 +architectural science review,3 +architectural theory review,2 +architecture,0 +architecture and culture,2 +architecture and urban planning,1 +"architecture, city and environment",1 +"architecture, structures and construction",1 +architecture_media_politics_society,1 +archiv der mathematik,1 +archiv der pharmazie,1 +archiv des völkerrechts,1 +archiv des öffentlichen rechts,1 +archiv fu?r tierzucht,1 +archiv fuer orientforschung,1 +archiv fur geflugelkunde,1 +archiv fur lebensmittelhygiene,1 +archiv fur molluskenkunde,1 +archiv fur rechts- und sozialphilosophie,1 +archiv für begriffsgeschichte,1 +archiv für das studium der neueren sprachen und literaturen,1 +"archiv für diplomatik, schriftgeschichte, siegel- und wappenkunde",1 +archiv für geschichte der philosophie,2 +"archiv für kriminologie: unter besonderer berücksichtigung der gerichtlichen physik, chemie und medizin",1 +archiv für kulturgeschichte,1 +archiv für liturgiewissenschaft : internationale fachzeitschrift für liturgiewissenschaft,1 +archiv für musikwissenschaft,2 +archiv für papyrusforschung und verwandte gebiete,2 +archiv für rechts- und sozialphilosophie,1 +archiv für reformationsgeschichte,3 +archiv für religionsgeschichte,1 +archiv für sozialgeschichte,1 +archiv für völkerkunde,0 +archiv orientalni,1 +archival science,3 +archivar: zeitschrift für archivwesen,1 +archivaria,1 +archive for history of exact sciences,2 +archive for mathematical logic,1 +archive for rational mechanics and analysis,3 +archive for the psychology of religion,3 +archive of applied mechanics,1 +archive of mechanical engineering,1 +archives and manuscripts,1 +archives and records,3 +archives contemporaines,1 +archives de pediatrie,1 +archives de philosophie,1 +archives de sciences sociales des religions,2 +archives des maladies professionnelles et de l environnement,1 +archives des sciences,0 +archives dhistoire doctrinale et litteraire du moyen age,1 +archives europeennes de sociologie,1 +archives héraldiques suisses,0 +archives internationales dhistoire des sciences,1 +archives italiennes de biologie,0 +archives of academic emergency medicine,1 +archives of acoustics,1 +archives of agronomy and soil science,1 +archives of american art journal,1 +archives of animal nutrition,1 +archives of asian art,1 +archives of biochemistry and biophysics,1 +archives of biological sciences,0 +archives of bone and joint surgery,0 +archives of budo,1 +archives of business research,0 +archives of cardiovascular diseases,1 +archives of civil and mechanical engineering,0 +archives of clinical and medical case reports,0 +archives of clinical neuropsychology,1 +archives of clinical trials,0 +archives of computational methods in engineering,1 +archives of control sciences,1 +archives of craniofacial surgery,1 +archives of data science. series a,1 +archives of dermatological research,1 +archives of design research,1 +archives of disease in childhood,2 +archives of disease in childhood-education and practice edition,1 +archives of disease in childhood-fetal and neonatal edition,3 +archives of drug information,1 +archives of electrical engineering,0 +archives of environmental and occupational health,1 +archives of environmental contamination and toxicology,1 +archives of environmental protection,1 +archives of foundry engineering,0 +archives of gerontology and geriatrics,1 +archives of gynecology and obstetrics,1 +archives of hellenic medicine,0 +archives of histology and cytology,1 +archives of insect biochemistry and physiology,1 +archives of iranian medicine,1 +archives of materials science and engineering,1 +archives of mechanics,1 +archives of medical research,1 +archives of medical science,1 +archives of metallurgy and materials,1 +archives of microbiology,1 +archives of mining sciences,1 +archives of natural history,1 +archives of oral biology,1 +archives of orthopaedic and trauma surgery,1 +archives of osteoporosis,1 +archives of pathology and laboratory medicine,2 +archives of pharmacal research,1 +archives of physical medicine and rehabilitation,3 +archives of physiology and biochemistry,1 +archives of physiotherapy,1 +archives of phytopathology and plant protection,1 +archives of plastic surgery,0 +archives of psychiatric nursing,1 +archives of psychology,0 +archives of public health,1 +archives of rehabilitation research and clinical translation,1 +archives of sexual behavior,2 +archives of suicide research,1 +archives of thermodynamics,1 +archives of toxicology,3 +archives of transport,0 +archives of virology,1 +archives of virology supplementum,1 +archives of womens mental health,1 +archives on veterinary science and technology,0 +archives: the journal of the british records association,1 +archiving,0 +archivio antropologico mediterraneo,1 +archivio di filosofia,1 +archivio glottologico italiano,1 +archivio novellistico italiano,1 +archivio per lantropologia e la etnologia,1 +archivio storico italiano,1 +archivium hibernicum,1 +archivo de filologia aragonesa,1 +archivo de prehistoria levantina,1 +archivo espanol de arqueologia,1 +archivo espanol de arte,2 +archivo teológico granadino,1 +archivos de bronconeumologia,1 +archivos de cardiología de méxico,0 +archivos de ciencias de la educación,0 +archivos de la sociedad española de oftalmología,1 +archivos de medicina veterinaria,1 +archivos latinoamericanos de nutricion,1 +archivum,1 +archivum eurasiae medii aevi,1 +archivum franciscanum historicum,1 +archivum fratrum praedicatorum,0 +archivum historiae pontificiae,1 +archivum historicum societatis iesu,1 +archivum immunologiae et therapiae experimentalis,1 +archivum lithuanicum,1 +archivum mathematicum,1 +archiwum filozofii prawa i filozofii społecznej,1 +archiwum instytutu inżynierii lądowej,0 +archiwum kryminologii,1 +archnet-ijar: international journal of architectural research,1 +archäologie der schweiz,1 +archäologie österreichs,1 +archäologische informationen: mitteilungen zur ur- und frühgeschichte,1 +archäologische mitteilungen aus iran und turan,1 +archäologischer anzeiger,1 +archäologisches korrespondenzblatt,1 +archéo-nil,1 +arcibel editores,1 +arcipelago edizioni,0 +arco libros,1 +arcs 2 international law briefing paper series,0 +arctic,1 +arctic and antarctic,1 +arctic antarctic and alpine research,1 +arctic anthropology,2 +arctic environmental research,0 +arctic monitoring and assessment programme,0 +arctic review on law and politics,2 +arctic science,1 +arctic yearbook,1 +arcticles,-1 +arctoa,0 +arctos,2 +arctos : supplementum,1 +ardea,1 +ardeola,1 +area,-1 +area,2 +arei : journal for central and eastern european history and politics,1 +areiopagi.fi,0 +arena,-1 +arena journal,0 +arena romanistica,1 +arena senter for europaforskning,0 +arendt studies,1 +areopagus,1 +arethusa,3 +"argentine school of micro-nanoelectronics, technology and applications",0 +argentinian journal of applied linguistics,1 +argos,1 +argos: revista de la asociacion argentina estudios clasicos,1 +argotica,0 +argument & computation,1 +argument-verlag,0 +argument: biannual philosophical journal,1 +argumenta,1 +argumenta oeconomica,0 +argumentation,2 +argumentation and advocacy,1 +argumentation et analyse du discours,1 +argumentum,0 +arhaiologiko ergo ste makedonia kai thrake,1 +arhangelsk lotsiia,0 +arheologia moldovei,1 +"arheologia, etnografia i antropologia evrazii",1 +arheologiâ evrazijskih stepej,1 +arheoloogilised välitööd eestis,0 +arheoloski vestnik,1 +arheološki institut,0 +arhiv za higijenu rada i toksikologiju,1 +arhivele totalitarismului,0 +ariadna ediciones,1 +ariadne,1 +ariadne long: nais- ja meesuuringute ajakiri,1 +ariadnī. parartīma.,0 +ariane: revue detudes litteraires francaises,2 +arid land research and management,1 +ariel-a review of international english literature,2 +aries: journal for the study of western esotericism,2 +arion-a journal of humanities and the classics,2 +aristoteleio panepistimio thessalonikis,0 +aristoteles semitico-latinus,1 +arizona center fo medieval & renaissance studies,0 +arizona quarterly,1 +arkaeologiske skrifter,1 +arkansas historical quarterly,0 +arkansas review,1 +arkeologi i norr,0 +arkeologia nyt!,-1 +arkheolohiya : zbirnyk naukovykh prats,1 +arkhimedes,0 +arkistolaitoksen toimituksia,0 +arkitekten,-1 +arkitektur,-1 +arkitekturforlaget b,0 +arkitekturmuseet,0 +arkiv : tidskrift för samhällsanalys,0 +arkiv for matematik,2 +arkiv för nordisk filologi,2 +arkiv förlag & tidskrift,1 +arkivoc,1 +arkki,-1 +arkkitehti,-1 +arkkitehtiuutiset,-1 +arkkitehtuuri,-1 +arkkitehtuurikilpailuja,-1 +arkkitehtuurin tiedekunta. b,0 +arktika i sever,1 +arktika xxi vek : gumanitarnye nauki,0 +arktisen keskuksen tiedotteita,-1 +arktos,1 +armand colin,1 +armed forces and society,1 +armenian folia anglistika,0 +armenian state pedagogical university,0 +arms and armour,1 +arnold mathematical journal,1 +aromi-lehti,-1 +arp rheumatology,1 +arpn journal of systems and software,0 +arq,0 +arq-architectural research quarterly,1 +arqueologia mexicana,1 +arquipelago: life and marine sciences,0 +arquitectura viva,0 +arquitetura revista,1 +arquivo brasileiro de medicina veterinária e zootecnia,0 +arquivos brasileiros de cardiologia,1 +arquivos brasileiros de endocrinologia e metabologia,1 +arquivos brasileiros de oftalmologia,1 +arquivos de neuro-psiquiatria,1 +array,1 +arrhythmia & electrophysiology review,1 +ars aequi,0 +ars combinatoria,1 +ars disputandi: the online journal for philosophy of religion,1 +ars inveniendi analytica,1 +ars mathematica contemporanea,1 +ars medica,-1 +ars orientalis,1 +ars pharmaceutica,1 +ars una,0 +art & perception,0 +art & the public sphere,1 +art + media,0 +art bulletin,3 +art communication & popculture,1 +art education,1 +art history,3 +art house,0 +art in america,1 +art inquiry,1 +art journal,3 +art residency catalog,-1 +art therapy,1 +"art, antiquity, and law",1 +"art, design and communication in higher education",2 +art/research international,1 +arte & ensaios,0 +arte cristiana,1 +arte et marte,-1 +arte individuo y sociedad,1 +arte medievale,2 +arte veneta,0 +artech house,1 +artelogi,-1 +artem,0 +artemisia edizioni,0 +"arteriosclerosis, thrombosis, and vascular biology",2 +artery research,1 +artes,0 +artforum international,0 +artha journal of social sciences,0 +arthritis and rheumatology,3 +arthritis care and research,2 +arthritis research and therapy,2 +arthropod structure and development,1 +arthropod systematics and phylogeny,1 +arthropod-plant interactions,1 +arthropoda selecta,1 +arthroscopy techniques,1 +"arthroscopy, sports medicine, and rehabilitation",1 +arthroscopy-the journal of arthroscopic and related surgery,3 +arthroskopie,1 +arthurian literature,1 +arthuriana,1 +arti dello spettacolo / performing arts,1 +arti musices,1 +artibus asiae,1 +artibus et historiae,1 +article press,1 +articulo,1 +artifact,1 +artifex,0 +"artificial cells, blood substitutes and biotechnology",1 +artificial intelligence,3 +artificial intelligence and law,2 +artificial intelligence for the earth systems,1 +artificial intelligence in medicine,2 +artificial intelligence review,1 +artificial life,2 +artificial life and robotics,1 +artificial organs,1 +artificial satellites,0 +artikkelikokoelma,-1 +artl@s bulletin,1 +artmargins,1 +artnews,0 +artnodes,1 +artos & norma bokförlag,0 +arts,0 +arts & international affairs,1 +"arts and artifacts in movie : technology, aesthetics, communication",1 +arts and health,1 +"arts and humanities in higher education: an international journal of theory, research and practice",1 +arts and the market,1 +arts asiatiques,1 +arts education policy review,1 +arts in psychotherapy,1 +arts management newsletter,-1 +arts of asia,1 +arts research africa,0 +arttu2-tutkimusohjelman julkaisusarja,-1 +arv: nordic yearbook of folklore,1 +arvinius + orfeus publishing,0 +arvopaperi,-1 +arx tavastica,0 +arxiv.org,0 +aryan books international,0 +asaio journal,1 +asanger verlag,1 +asce-asme journal of risk and uncertainty in engineering systems,1 +asce-asme journal of risk and uncertainty in engineering systems. part b. mechanical engineering,1 +aschehoug & co,1 +aschendorff,1 +asclepio: revista de historia de la medicina y de la ciencia,1 +asdiwal,1 +ase,-1 +ase international conference on social computing,0 +asean economic bulletin,1 +asean journal on hospitality and tourism,1 +asee annual conference & exposition proceedings,1 +asema,-1 +ashrae,0 +ashrae journal,1 +ashrae transactions,1 +asia & the pacific policy studies,1 +asia - pacific review,1 +asia anteriore antica,1 +asia europe journal,1 +asia in focus,1 +asia joint conference on information security,0 +asia journal of theology,1 +asia life sciences,0 +asia major: a journal of far eastern studies,1 +asia pacific allergy,0 +asia pacific business review,1 +asia pacific education review,0 +asia pacific family medicine,1 +asia pacific journal of anthropology,1 +asia pacific journal of clinical nutrition,1 +asia pacific journal of economics and business,1 +asia pacific journal of environmental law,1 +"asia pacific journal of health, sport and physical education",1 +asia pacific journal of human resources,1 +asia pacific journal of innovation and entrepreneurship,1 +asia pacific journal of management,1 +asia pacific journal of marketing and logistics,1 +asia pacific journal of mathematics,1 +asia pacific journal of public administration,0 +asia pacific journal of social work and development,1 +asia pacific journal of tourism research,1 +asia pacific journal on human rights and the law,1 +asia pacific law review,2 +asia pacific management review,1 +asia pacific translation and intercultural studies,1 +asia pacific viewpoint,1 +asia pacific world,1 +asia pacific: perspectives,1 +asia-european journal of mathematics,1 +asia-pacific association for machine translation,0 +asia-pacific conference on computer-human interaction,1 +asia-pacific education researcher,0 +asia-pacific financial markets,1 +asia-pacific forum on science learning and teaching,1 +asia-pacific journal : japan focus,1 +asia-pacific journal of accounting and economics,1 +asia-pacific journal of atmospheric sciences,1 +asia-pacific journal of business administration,1 +asia-pacific journal of chemical engineering,1 +asia-pacific journal of clinical oncology,1 +asia-pacific journal of cooperative education,1 +asia-pacific journal of education,1 +asia-pacific journal of financial studies,1 +asia-pacific journal of innovation in hospitality and tourism,0 +asia-pacific journal of management research and innovation,0 +asia-pacific journal of molecular biology and biotechnology,1 +asia-pacific journal of oncology nursing,1 +asia-pacific journal of operational research,1 +asia-pacific journal of ophthalmology,1 +asia-pacific journal of public health,0 +asia-pacific journal of regional science,1 +asia-pacific journal of research in early childhood education,0 +"asia-pacific journal of sports medicine, arthroscopy, rehabilitation and technology",1 +asia-pacific journal of teacher education,1 +asia-pacific language variation,1 +asia-pacific microwave conference,1 +asia-pacific power and energy engineering conference,0 +asia-pacific psychiatry,1 +asia-pacific research and training network on trade working paper series,0 +asia-pacific signal and information processing association annual summit and conference,0 +asia-pacific society for computers in education,0 +asiakkuusmarkkinoinnin vuosikirja,0 +asian affairs,2 +asian american journal of psychology,1 +asian and pacific migration journal,1 +asian anthropology,1 +asian bioethics review,1 +asian biomedicine,0 +asian business and management,1 +asian case research journal,1 +asian chemistry letters,1 +asian communication research,1 +asian conference on education & international development,0 +asian conference on education official conference proceedings,0 +asian conference on intelligent information and database systems,1 +"asian conference on the arts, humanities and social sciences conference proceedings",0 +asian development bank,0 +asian development review,1 +asian economic journal,1 +asian economic papers,1 +asian economic policy review,1 +asian efl journal,1 +asian englishes,1 +asian ethnicity,1 +asian ethnology,1 +asian folklore studies,1 +asian geographer,1 +asian herpetological research,1 +asian highlands perspectives,1 +asian journal for mathematics education,0 +"asian journal of agricultural extension, economics and sociology",0 +asian journal of andrology,1 +asian journal of biological sciences,0 +asian journal of business and management,0 +asian journal of business ethics,0 +asian journal of chemistry,1 +asian journal of civil engineering,1 +asian journal of clinical nutrition,0 +asian journal of communication,1 +asian journal of comparative law,1 +asian journal of comparative politics,1 +asian journal of computer science and technology,0 +asian journal of control,1 +asian journal of earth sciences,0 +asian journal of education and e-learning,0 +asian journal of endoscopic surgery,0 +asian journal of english language teaching,1 +asian journal of environment and disaster management,1 +asian journal of epidemiology,0 +asian journal of human services,0 +asian journal of humanities and social studies,0 +asian journal of international law,0 +asian journal of international law,1 +asian journal of management,0 +asian journal of management cases,1 +asian journal of managerial science,1 +asian journal of mathematics,1 +asian journal of neurosurgery,0 +asian journal of occupational therapy,1 +asian journal of organic chemistry,1 +asian journal of peacebuilding,1 +asian journal of pharmaceutical sciences,1 +asian journal of philosophy,1 +asian journal of physics,0 +asian journal of political science,1 +asian journal of psychiatry,-1 +asian journal of scientific research,0 +asian journal of social health and behavior,1 +asian journal of social psychology,1 +asian journal of social science,1 +asian journal of spectroscopy,1 +asian journal of sport and exercise psychology,1 +asian journal of surgery,1 +asian journal of technology innovation,1 +asian journal of transfusion science,0 +asian journal of university education,0 +asian journal of urology,0 +"asian journal of water, environment and pollution",1 +asian journal of womens studies,1 +asian journal of wto and international health law and policy,1 +asian languages and linguistics,1 +asian medicine,1 +asian music,1 +asian myrmecology,1 +asian nursing research,1 +asian pacific journal of allergy and immunology,1 +asian pacific journal of cancer prevention,1 +asian pacific journal of tropical biomedicine,0 +asian pacific journal of tropical medicine,1 +asian perspective,1 +asian perspectives,1 +asian philosophy,1 +asian population studies,1 +asian profile,1 +asian review of accounting,0 +asian security,1 +asian social science,0 +asian studies review,1 +asian survey,2 +asian theatre journal,2 +asian women,1 +asian yearbook of international law,1 +asian-pacific economic literature,1 +asian-pacific journal of second and foreign language education,1 +asianetwork exchange,-1 +asiapacific mediaeducator,1 +asiascape,1 +asiatische forschungen,1 +asiatische studien,1 +asil insights,0 +"asilomar conference on signals, systems, and computers proceedings",1 +ask,1 +asla : svenska föreningen för tillämpad språkvetenskap,1 +aslas skriftserie,1 +aslib journal of information management,1 +asm international,1 +asm press,1 +asme gear research institute,1 +asme international conference on energy sustainability,1 +asme journal of heat and mass transfer,1 +asmet - austrian society for metallurgy and materials,0 +asn neuro,1 +asociación de acústicos argentinos,0 +asociación española de dirección e ingeniería de proyectos,0 +asos yayınları,0 +aspasia,1 +aspects of applied biology,0 +aspekt press,0 +aspekti,-1 +aspen publishers,1 +aspetar sports medicine journal,-1 +assay and drug development technologies,1 +assemblage: the sheffield graduate journal of archaeology,1 +assembly automation,1 +asser press,0 +assessing writing,1 +assessment,1 +assessment and evaluation in higher education,3 +"assessment in education: principles, policy and practice",2 +assistive technology,1 +assitej,-1 +associated university presses,1 +association art et imageries pour la culture et le développement,0 +association européenne pour l´enseignement en architecture,0 +association for canadian studies,1 +association for computational creativity,1 +association for computational linguistics,1 +association for consumer research,1 +association for information science and technology,1 +association for information systems,1 +association for iron and steel technology,0 +association for symbolic logic,1 +association for teacher education in europe,1 +association for the advancement of computing in education,1 +association mondiale de la route,0 +association of chartered certified accountants,0 +association of geographic information laboratories in europe,0 +association of marketing theory and practice proceedings,0 +association of professional futurists,0 +association of researchers in construction management,0 +association pierre belon,0 +association scientifique pour la géologie et ses applications,0 +associazione culturale villa classica,0 +associazione genesi,0 +associazione italiana colore,0 +associazione italiana di ingegneria chimica,1 +associazione italiana di metallurgiana,0 +associazione italiana di storia urbana,0 +associação dos arqueólogos portugueses,0 +asta: advances in statistical analysis,1 +astana medicinalyk̦ žurnaly,0 +asterisque,2 +astin bulletin,1 +astm special technical publication,1 +astorica,0 +astra,-1 +astrobiology,1 +astrodynamics,1 +astronomical and astrophysical transactions: the journal of the eurasian astronomical society,1 +astronomical journal,1 +astronomical society of the pacific,0 +astronomical society of the pacific conference series,1 +astronomische nachrichten,1 +astronomičeskij žurnal,0 +astronomy and astrophysics,3 +astronomy and astrophysics review,3 +astronomy and computing,1 +astronomy and geophysics,1 +astronomy letters: a journal of astronomy and space astrophysics,1 +astronomy reports,1 +astroparticle physics,1 +astrophysical bulletin,1 +astrophysical journal,1 +astrophysical journal letters,3 +astrophysical journal supplement series,2 +astrophysics,1 +astrophysics and space science,1 +astrophysics and space science proceedings,0 +astrophysics and space sciences transactions,1 +astropolitics,1 +astroprint,0 +asukasviesti,-1 +asuminen ja yhteiskunta,-1 +asuntomme,-1 +asymptotic analysis,1 +at mineral processing : europe,1 +atalante-revista de estudios cinematograficos,1 +atas da conferência da associação portuguesa de sistemas de informação,0 +atena,0 +atencion primaria,1 +atene e roma: nuova serie seconda,1 +atenea,0 +ateneo de manila university press,1 +ateneumin julkaisut,1 +ateneumin taidemuseo,0 +atf press,0 +athabasca university press,1 +athena,1 +athenaeum,1 +athenaeum: studi periodici di letteratura e storia dellantichita,2 +athens institute for education and research,0 +athens journal of architecture,1 +athens journal of business & economics,0 +athens journal of education,1 +athens journal of health,0 +athens journal of health and medical sciences,0 +athens journal of history,0 +athens journal of law,1 +athens journal of psychology,-1 +athens journal of sciences,0 +athens journal of social sciences,1 +athens journal of sports,0 +athens journal of technology & engineering,0 +athens journal of tourism,0 +atherosclerosis,2 +atherosclerosis plus,1 +athletic business,-1 +atiner's conference paper series,0 +atiqot,1 +atla: alternatives to laboratory animals,1 +atlal,1 +atlal : the journal of saudi arabian archaeology,0 +atlande,0 +atlanta review,1 +atlanti,0 +atlanti +,0 +atlantic economic journal,1 +atlantic geology,1 +atlantic journal of communications,1 +atlantic publishers & distributors,0 +"atlantic studies: literary, cultural and historical perspectives",2 +atlantico,-1 +atlantis,1 +atlantis : a womens studies journal,1 +atlantis highlights in engineering,1 +"atlantis highlights in social sciences, education and humanities",0 +atlantis press bv,0 +atlantis studies in uncertainty modelling.,0 +atlantisch perspektief,-1 +atlas akademi,0 +atlas bokförlag,0 +atlas contact,0 +atlas of genetics and cytogenetics in oncology and haematology,1 +atmos,-1 +atmosfera,1 +atmosphere,0 +atmosphere: ocean,1 +atmospheric and climate science,0 +atmospheric and oceanic optics,1 +atmospheric chemistry and physics,3 +atmospheric chemistry and physics discussions,0 +atmospheric environment,1 +atmospheric environment x,1 +atmospheric measurement techniques,2 +atmospheric measurement techniques discussions,0 +atmospheric pollution research,1 +atmospheric research,1 +atmospheric science letters,1 +atomic data and nuclear data tables,1 +atomic energy,1 +atomic energy society of japan,1 +atomic spectroscopy,1 +atomization and sprays,1 +atoms,0 +atrain&nord,0 +atremi,0 +atriatuottaja,-1 +ats ydintekniikka,-1 +attachment and human development,1 +attention and performance,1 +attention perception and psychophysics,1 +atti centro richerche e documentazione sullantichità classica,1 +atti della accademia nazionale dei lincei: notizie degli scavi di antichita,1 +"atti della pontificia accademia romana di archeologia: serie 3, memorie",1 +"atti della pontificia accademia romana di archeologia: serie iii, rendiconti",1 +atti dellaccademia peloritana dei pericolanti: classe di scienze fisiche matematiche e naturali,0 +atti e memorie,1 +atw : international journal for nuclear power,1 +au courant,-1 +auco czech economic review,0 +audio engineering society,0 +audio engineering society conference on spatial audio,1 +audiological medicine,1 +audiology and neuro-otology,1 +audiology research,0 +audiology: official organ of the international society of audiology,1 +audit financiar,0 +auditing: a journal of practice and theory,2 +aue-säätiön julkaisuja,0 +aufklärung: interdisziplinare halbjahrechrift zur erforschung des 18: jahrhunderts und seiner wirkungsgeschichte,1 +augmentative and alternative communication,1 +augmented human research,1 +augustinian studies,2 +augustiniana,1 +augustinianum,1 +augustinus,1 +"aukstuju mokyklu vaidmuo visuomeneje: issukiai, tendencijos ir perspektyvos",0 +aula abierta,0 +aula orientalis,1 +aun,1 +aura,-1 +auraica: scripta a societate porthan edita,1 +auranmaan viikkolehti,-1 +aurea parma,0 +aureola,-1 +aurinko kustannus,0 +aurinkolaiva,-1 +auris nasus larynx,1 +aurora,-1 +aurora,0 +aurora-kustannus,0 +aus politik und zeitgeschichte,1 +ausgrabungen und funde in westfalen-lippe,1 +ausimm,0 +ausimm bulletin,1 +ausonius,0 +austin journal of anesthesia and analgesia,0 +austin journal of clinical cardiology,0 +austin journal of clinical neurology,0 +austin journal of dentistry,0 +austin journal of nursing & health care,0 +austin journal of psychiatry and behavioral sciences,0 +austral comunicación,1 +austral ecology,1 +austral entomology,1 +australasian biotechnology,1 +australasian canadian studies,1 +australasian computing education conference,1 +australasian conference on information systems,1 +australasian conference on robotics and automation,0 +australasian drama studies,1 +australasian emergency care,1 +australasian emergency nursing journal,1 +australasian fluid mechanics society,0 +australasian institute of mining and metallurgy,1 +australasian journal of combinatorics,1 +australasian journal of construction economics and building,1 +australasian journal of dermatology,1 +australasian journal of disaster and trauma studies,1 +australasian journal of early childhood,1 +australasian journal of educational technology,1 +australasian journal of environmental management,1 +australasian journal of information systems,1 +australasian journal of irish studies,1 +australasian journal of logic,1 +australasian journal of neuroscience,0 +australasian journal of paramedicine,0 +australasian journal of philosophy,3 +australasian journal of technology education,1 +australasian journal of victorian studies,1 +australasian journal on ageing,1 +australasian marketing journal,1 +australasian medical journal,0 +australasian orthodontic journal,1 +australasian philosophical review,1 +australasian plant pathology,1 +australasian psychiatry,1 +australasian speech science & technology association,1 +australasian universities building education association conference,0 +australian & international journal of rural education,0 +australian & new zealand academy of management,0 +australian & new zealand journal of european studies,1 +australian aboriginal studies,1 +australian academic and research libraries,1 +australian academic press,1 +australian accounting review,1 +australian acoustical society,0 +australian and new zealand control conference,0 +australian and new zealand journal of art,1 +australian and new zealand journal of arts therapy,1 +australian and new zealand journal of family therapy,1 +australian and new zealand journal of obstetrics and gynaecology,1 +australian and new zealand journal of psychiatry,1 +australian and new zealand journal of public health,1 +australian and new zealand journal of statistics,1 +australian and new zealand maritime law journal,0 +australian archaeology,1 +australian art education,1 +australian biblical review,1 +australian centre for geomechanics,0 +australian computer society,1 +australian critical care: official journal of the confederation of australian critical care nurses,1 +australian cultural history,1 +australian dance council,0 +australian dental journal,1 +australian economic papers,1 +australian economic review,1 +australian educational researcher,1 +australian endodontic journal,1 +australian family physician,1 +australian feminist law journal,1 +australian feminist studies,1 +australian forestry,1 +australian geographer,1 +"australian government - department of innovation, industry, science and research",0 +australian health review,1 +australian historical studies,1 +australian humanities review,1 +australian intellectual property journal,1 +australian journal of adult learning,1 +australian journal of advanced nursing,1 +australian journal of agricultural and resource economics,1 +australian journal of anthropology,2 +australian journal of asian law,1 +australian journal of basic and applied sciences,0 +australian journal of botany,1 +australian journal of career development,1 +australian journal of chemistry,1 +australian journal of civil engineering,0 +australian journal of communication,1 +australian journal of crop science,1 +australian journal of earth sciences,1 +australian journal of education,1 +australian journal of electrical & electronics engineering,0 +australian journal of environmental education,1 +australian journal of family law,1 +australian journal of forensic sciences,1 +australian journal of french studies,2 +australian journal of general practice,0 +australian journal of grape and wine research,1 +australian journal of human rights,1 +australian journal of international affairs,1 +australian journal of labour law,1 +australian journal of language and literacy,1 +australian journal of linguistics,1 +australian journal of management,1 +australian journal of maritime and ocean affairs,1 +australian journal of mathematical analysis and applications,1 +australian journal of music education,1 +australian journal of music therapy,1 +australian journal of pharmacy,1 +australian journal of political science,1 +australian journal of politics and history,1 +australian journal of primary health,1 +australian journal of psychology,1 +australian journal of public administration,1 +australian journal of rural health,1 +australian journal of social issues,1 +australian journal of teacher education,1 +australian journal of zoology,1 +australian journal on volunteering,1 +australian journalism review,1 +australian library journal,1 +australian literary studies,1 +australian manufacturing technology,-1 +australian mathematical society: gazette,1 +australian meteorological and oceanographic journal,1 +australian mining,1 +australian occupational therapy journal,1 +australian planner,1 +australian policy online,0 +australian prescriber,1 +australian psychologist,1 +australian review of applied linguistics,1 +australian scholarly publishing,0 +australian social work,1 +australian systematic botany,1 +"australian tax forum: a journal of taxation policy, law and reform",1 +australian universities review,1 +australian veterinary journal,1 +australian veterinary practitioner,1 +australian yearbook of international law,1 +austrian history yearbook,2 +austrian journal of earth sciences,1 +austrian journal of forest science,1 +austrian journal of statistics,1 +austrian review of international and european law,1 +austrian studies,1 +aut aut,1 +autex research journal,0 +author-publishers,0 +authorship,1 +autism,2 +autism & developmental language impairments,1 +autism in adulthood,1 +autism research,1 +autism-open access,0 +autismi,-1 +auto-immunity highlights,0 +auto/biography studies,1 +autoimmune diseases,1 +autoimmunity,1 +autoimmunity reviews,1 +automaatioväylä,-1 +automated software engineering,2 +automatic control and computer sciences,1 +automatic press,0 +automatica,3 +automatika,0 +automation and remote control,1 +automation in construction,2 +automatisierungstechnik,0 +autonomic and autacoid pharmacology,1 +autonomic neuroscience: basic and clinical,1 +autonomous agents and multi-agent systems,2 +autonomous robots,2 +autonómia és felelosség,0 +autophagy,2 +autophagy reports,0 +av edition,0 +av proyectos,-1 +av-arkki,0 +avain,-1 +avain,0 +avances de investigación en educación matemática,1 +avances en psicologia latinoamericana,0 +avangard prima,0 +avanguardia: rivista di letteratura contemporanea,1 +avant,1 +avant garde critical studies,1 +avant scene opera,0 +avar,1 +avian biology research,1 +avian conservation and ecology,1 +avian diseases,1 +avian pathology,1 +avian research,1 +aviation,1 +aviation in focus,0 +aviation psychology and applied human factors,1 +avocetta,1 +avoin kalevala,0 +avotakka,-1 +avriga: zpravy jednoty klasickych filologu,1 +avs quantum science,1 +avtobiografija,1 +avun maailma,-1 +aw-prax. aussenwirtschaftliche praxis,-1 +awwa water science,0 +axac,1 +axess,-1 +axiom academic publishers,0 +axioms,0 +axl books,0 +ayer,2 +ayrıntı dergisi,0 +azania,1 +azijske sveske,1 +azimuth,0 +azti arrantza,1 +azərbaycan məktəbi,1 +àmbits de psicopedagogia i orientació,0 +åbo underrättelser,-1 +b e journal of economic analysis and policy,1 +b e journal of macroeconomics,1 +b e journal of theoretical economics,1 +b en m,0 +b'lgarsko spisanie za obsestveno zdrave,0 +b-ent,1 +b.c.a. sicilia,1 +b>quest: a journal of applied topics in business and economics,1 +baar-verlag,1 +bab working papers,1 +babel,0 +babel a.f.i.a.l.,0 +babel: revue internationale de la traduction,1 +babesch: bulletin antieke beschaving,1 +babson college center for entrepreneurship,0 +babylon: tidsskrift om midtösten og nord-afrika,1 +babylonia,0 +bach,1 +bach-jahrbuch,1 +bacteriophage,1 +baessler archiv,1 +bahastra,0 +bahcesehir university,0 +bahir dar journal of education,0 +baifukan,1 +baker,1 +balans,-1 +balassi intézet,0 +balassi kiadó,0 +balkan journal of geometry and its applications,1 +balkan journal of medical genetics,0 +balkan journal of philosophy,1 +balkan studies,1 +balkanija,0 +balkanistica,1 +balkanološki institut,0 +balkanskie čteniâ,0 +balkansko ezikoznanie,1 +balkema,1 +ballet review,1 +baltan laboratories,0 +baltic astronomy,1 +baltic conference on future internet communications,0 +baltic development forum,0 +baltic forestry,1 +baltic journal of art history,1 +baltic journal of coleopterology,1 +baltic journal of economics,1 +"baltic journal of english language, literature and culture",1 +baltic journal of health and physical activity,0 +baltic journal of law and politics,1 +baltic journal of legal and social sciences,1 +baltic journal of management,1 +baltic journal of modern computing,0 +baltic journal of sport and health sciences,0 +baltic linguistics,1 +baltic marine environment protection commission,0 +baltic port insight,0 +baltic region,1 +baltic rim economies,0 +baltic screen media review,1 +baltic sea environment proceedings,-1 +baltic sea region cultural heritage forum,0 +baltic sea science congress,0 +baltic transport journal,-1 +baltic university press,0 +baltic worlds,1 +"baltic yearbook of communication, logic and cognition",1 +baltic yearbook of international law,0 +baltic-pontic studies,1 +baltica,1 +baltijskaâ meždunarodnaâ akademiâ,0 +baltijskij region,1 +baltische studien,1 +baltistica,1 +balto print,0 +balto-scandia,1 +baltu filologija,1 +bamberger orientstudien,0 +banach center publications,1 +banach journal of mathematical analysis,1 +banco central de chile,0 +bandecchi e vivaldi,0 +bangladesh journal of botany,1 +bangladesh journal of pharmacology,0 +bangladesh journal of plant taxonomy,1 +bank i kredyt,1 +bankhistorisches archiv,1 +banking law journal,1 +banko janakari,0 +bankruptcy developments journal,0 +banks and bank systems,0 +banque & marchés,0 +banque des mots,1 +baptria,-1 +bar publishing,1 +baraton interdisplinary research journal,0 +barbastella,0 +barcelona publishers,1 +bardi editore,1 +bardwell press,0 +bariatric nursing and surgical patient care,0 +barkhuis,0 +barn,1 +barnboken,1 +barnlitterært forskningstidsskrift,1 +basam books,0 +base,1 +bashkirskaya e`nciklopediya,0 +basic & applied herpetology,1 +basic and applied ecology,1 +basic and applied social psychology,1 +basic and clinical pharmacology and toxicology,2 +basic books,1 +basic income studies,1 +basic research in cardiology,2 +basin research,1 +basteria,0 +bat research news,1 +batteries,0 +batteries & supercaps,1 +battery energy,1 +battlebridge publications,0 +batumi state maritime academy,0 +bauphysik,1 +bautechnik,1 +bayerische akademie der wissenschaften,1 +bayesian analysis,2 +baylor university press,0 +bayshop (generis publishing),0 +"baywood publishing company, inc.",1 +bazar masarin,-1 +bāgh-i naẓar,1 +bba clinical,0 +bc studies,1 +bcas annual research symposium,0 +bdj open,1 +bdk america,0 +be journal in theoretical economics,1 +beacon press,1 +bealoideas,1 +beauchesne,0 +bebyggelsehistorisk tidskrift,1 +beck,2 +beckettiana,1 +bedfordshire archaeology,1 +"bedregal villanueva, juan francisco",0 +beech stave press,1 +before farming : the archaeology and anthropology of hunter-gatherers,1 +begell house,1 +behavior analyst,1 +behavior and philosophy,1 +behavior and social issues,1 +behavior genetics,1 +behavior modification,1 +behavior research methods,2 +behavior therapy,1 +behavioral and brain functions,1 +behavioral and brain sciences,2 +behavioral and social sciences librarian,1 +behavioral disorders,1 +behavioral ecology,3 +behavioral ecology and sociobiology,2 +behavioral interventions,1 +behavioral medicine,1 +behavioral neuroscience,1 +behavioral psychology-psicologia conductual,0 +behavioral research in accounting,1 +behavioral sciences,1 +behavioral sciences and the law,1 +behavioral sciences of terrorism and political aggression,1 +behavioral sleep medicine,1 +behaviormetrika,1 +behaviour,1 +behaviour and information technology,2 +behaviour change,1 +behaviour research and therapy,3 +behavioural and cognitive psychotherapy,1 +behavioural brain research,1 +behavioural neurology,1 +behavioural pharmacology,1 +behavioural processes,1 +behavioural public policy,1 +behinderung und internationale entwicklung,0 +"behrs, b., verlag gmbh & co. kg",0 +beihefte zur zeitschrift für die alttestamentliche wissenschaft,2 +beihefte zur zeitschrift für französische sprache und literatur,1 +beihefte zur zeitschrift für romanische philologie,1 +beijing daxue jiaoyu pinglun,0 +beijing international review of education,1 +beijing language and culture university press,0 +beijing law review,0 +beijing shifan daxue xuebao,0 +beilstein journal of nanotechnology,1 +beilstein journal of organic chemistry,1 +beiträge zur hochschulforschung,0 +beiträge zur lehrerinnen- und lehrerbildung,1 +beiträge empirischer musikpädagogik,1 +beiträge zur algebra und geometrie,1 +beiträge zur entomologie,0 +beiträge zur feministischen theorie und praxis,1 +beiträge zur film- und fernsehenwissenschaft,1 +beiträge zur fremdsprachenvermittlung,1 +beiträge zur germanistischen sprachwissenschaft,1 +beiträge zur geschichte der arbeiterbewegung,0 +beiträge zur geschichte der deutschen sprache und literatur,3 +beiträge zur geschichte der sprachwissenschaft,1 +beiträge zur interkulturellen germanistik,1 +beiträge zur namenforschung,1 +beiträge zur popularmusikforschung,1 +beiträge zur rechtsgeschichte österreichs,1 +belarusian state university,0 +belas infiéis,0 +beletra almanako,-1 +belfagor,1 +belgeo,1 +belgian journal of entomology,0 +belgian journal of linguistics,1 +belgian journal of zoology,1 +belgisch tijdschrift voor nieuwste geschiedenis,1 +belgorodskij gosudarstvenny`j nacional`ny`j issledovatel`skij universitet,0 +"belgorodskij universitet kooperacii, e`konomiki i prava",0 +belgrade english language & literature studies,0 +belin,1 +belknap press of harvard university press,2 +bell system technical journal,2 +bellaterra journal of teaching & learning language & literature,1 +belleten,1 +bellona,0 +belphegor: popular literature and media culture,1 +belt - brazilian english language teaching journal,1 +belvedere meridionale,0 +ben jonson journal,1 +benchmark,-1 +benchmarking,1 +benedictina: rivista di studi benedettini,1 +beneficial microbes,1 +benet oy,0 +benjam pöntinen,0 +benjamins current topics,-1 +bentham science publishers,1 +berber studies,1 +bereavement care,0 +berg,0 +bergamo university press,0 +bergen journal of criminal law and criminal justice,1 +bergen language and linguistics studies,1 +berghahn books,2 +bergsoniana,1 +berichte aus dem julius-kühn-institut,0 +berichte der römisch-germanischen kommission,2 +berichte zur wissenschaftsgeschichte,1 +berkeley electronic press,1 +"berkeley journal of gender, law and justice",1 +berkeley review of education,0 +berkeley technology law journal,1 +berkshire publishing group,0 +berlin human-machine systems workshop,0 +berlin-brandenburgische akademie der wissenschaften,1 +berliner beiträge zur skandinavistik,1 +berliner journal fur soziologie,1 +berliner theologische zeitschrift,1 +berliner und munchener tierarztliche wochenschrift,1 +berliner wissenschafts-verlag,1 +berlingske tidende,-1 +bernoulli,2 +bernstein-verlag,1 +bertil ohlin förlag,0 +bertrand livreiros,1 +berufsbildung in wissenschaft und praxis,-1 +berytus archaeological studies,1 +best practice,0 +best practice & research. clinical obstetrics & gynaecology,1 +best practice and research clinical endocrinology and metabolism,1 +best practice and research clinical haematology,1 +best practice and research clinical obstetrics and gynaecology,1 +best practice and research in clinical gastroenterology,1 +best practice and research in clinical rheumatology,1 +bestpractice: lääketieteen asiantuntijoiden ammattilehti,0 +bestuurskunde,1 +beszédkutatás,1 +beta,1 +betekint?,0 +beth bulletin,0 +bethlen gábor alapkezelő,0 +beton- und stahlbetonbau,1 +betoni,-1 +between,1 +between the species,1 +beverages,0 +beyond philology,1 +bezpieczny bank,0 +bfw-dokumentation,-1 +bhasha prodyogiki,0 +bhatkal & sen,0 +bhm berg- und hüttenmännische monatshefte,1 +bhr group,1 +bhv-peterburg,0 +bi'gyo gyoyug yeon'gu,0 +bialik institute publishing house,1 +bibacc publishing,0 +bibban,-1 +bibel und kirche,1 +bible and critical theory,1 +biblica,2 +biblical archaeology review,2 +biblical interpretation,2 +biblical research,1 +biblical theology bulletin,1 +biblion verlag,1 +bibliophilos,0 +bibliopolis,0 +"bibliopolis, edizioni di filosofia e scienze",1 +bibliotheca historico-ecclesiastica lundensis,1 +bibliotheca lichenologica,0 +bibliotheca orientalis,1 +bibliotheca sigillumiana,0 +bibliothek,0 +bibliotheque dhumanisme et renaissance: travaux et documents,1 +bibliothèque de lécole des chartes,1 +bibliothèque historique vaudoise,0 +bibliothèque russe de linstitut détudes slaves,0 +biblische notizen,2 +biblische zeitschrift,2 +bid: textos universitaris de biblioteconomia i documentacio,1 +bidrag till kännedom av finlands natur och folk,1 +bien dire et bien aprandre: revue de medievistique,1 +"biennial conference of the association for common european nursing diagnoses, interventions and outcomes",0 +big data,1 +big data & information analytics,1 +big data & society,2 +big data and cognitive computing,1 +big data in agriculture,0 +big data mining and analytics,0 +big data research,1 +big earth data,1 +bihdāsht va īminī-i kār,-1 +bijdragen tot de geschiedenis: inzonderheid van het aloude hertogdom brabant,1 +"bijdragen tot de taal-, land- en volkenkunde",2 +bijiao jiaoyu xuebao,0 +bijiao jiaoyu yanjiu,0 +bijiao jingxue,0 +bildhaan,1 +bildungsforschung,0 +bilig,1 +bilingua ga editions,1 +bilingual research journal,1 +bilingualism: language and cognition,3 +billesø & baltzer,1 +bio,0 +bio integration,0 +bio web of conferences,0 +bio-based and applied economics,1 +bio-complexity,1 +bio-design and manufacturing,0 +bio-medical materials and engineering,1 +bio-protocol,1 +bio-science law review,1 +bioacoustics: the international journal of animal sound and its recording,1 +bioactive carbohydrates and dietary fibre,1 +bioactive compounds in health and disease,0 +bioactive materials,1 +bioanalysis,1 +bioanalytical reviews,1 +biobien innovations,0 +biocatalysis and agricultural biotechnology,1 +biocatalysis and biotransformation,1 +biocell,1 +bioceramics development and applications,0 +biochar,0 +biochemia medica,1 +biochemical and biophysical research communications,1 +biochemical engineering journal,1 +biochemical genetics,1 +biochemical journal,2 +biochemical pharmacology,2 +biochemical society,1 +biochemical society symposia,1 +biochemical society transactions,1 +biochemical systematics and ecology,1 +biochemistry,1 +biochemistry : supplement series a membrane and cell biology,0 +biochemistry and biophysics reports,1 +biochemistry and cell biology-biochimie et biologie cellulaire,1 +biochemistry and molecular biology education,1 +biochemistry research international,1 +biochemistry: moscow,1 +biochimica clinica,0 +biochimica et biophysica acta (bba) - bioenergetics,1 +biochimica et biophysica acta (bba) - biomembranes,1 +biochimica et biophysica acta (bba) - gene regulatory mechanisms,1 +biochimica et biophysica acta (bba) - general subjects,1 +biochimica et biophysica acta (bba) - molecular and cell biology of lipids,1 +biochimica et biophysica acta (bba) - molecular basis of disease,1 +biochimica et biophysica acta (bba) - molecular cell research,1 +biochimica et biophysica acta (bba) - proteins and proteomics,1 +biochimica et biophysica acta (bba) - reviews on cancer,1 +biochimica et biophysica acta: bioenergetics,1 +biochimica et biophysica acta: biomembranes,1 +biochimica et biophysica acta: gene regulatory mechanisms,1 +biochimica et biophysica acta: general subjects,1 +biochimica et biophysica acta: molecular and cell biology of lipids,1 +biochimica et biophysica acta: molecular basis of disease,1 +biochimica et biophysica acta: molecular cell research,1 +biochimica et biophysica acta: proteins and proteomics,1 +biochimica et biophysica acta: reviews on cancer,1 +biochimie,1 +biochip journal,1 +bioconjugate chemistry,1 +biocontrol,1 +biocontrol science,1 +biocontrol science and technology,1 +biocybernetics and biomedical engineering,1 +biocycle,1 +biodata mining,1 +biodegradation,1 +biodemography and social biology,1 +biodiverse från centrum för biologisk mångfald,-1 +biodiversity,1 +biodiversity and conservation,2 +biodiversity data journal,1 +biodiversity informatics,1 +biodiversity information science and standards,0 +biodiversity journal,0 +biodiversity research and conservation,1 +biodrugs,1 +bioelectricity,1 +bioelectrochemistry,1 +bioelectromagnetics,1 +bioenergia,-1 +bioenergy research,1 +bioengineered,-1 +bioengineered bugs,1 +bioengineering,0 +bioessays,1 +bioethics,3 +biofabrication,1 +biofactors,1 +biofilm,1 +biofouling,1 +biofuel research journal,1 +biofuels,1 +biofuels bioproducts and biorefining: biofpr,1 +biofutur,1 +biogenic amines,1 +biogeochemistry,1 +biogeosciences,2 +biogeosciences discussions,0 +biogeotechnics,1 +biogerontology,1 +biography: an interdisciplinary quarterly,3 +biohub annual,-1 +bioimpacts,0 +bioinformatics,3 +bioinformatics advances,1 +bioinformatics and biology insights,1 +bioinformatics trends,0 +bioinorganic chemistry and applications,1 +bioinquirer journal,-1 +bioinspiration and biomimetics,1 +biointerface research in applied chemistry,0 +biointerphases,1 +bioinvasions records,1 +biokierto ja biokaasu,-1 +biolinguistics,1 +biologia,1 +biologia futura,1 +biologia plantarum,1 +biological agriculture and horticulture,1 +biological and pharmaceutical bulletin,1 +biological bulletin,1 +biological chemistry,1 +biological communications,1 +biological conservation,2 +biological control,1 +biological cybernetics,1 +biological invasions,2 +biological journal of the linnean society,1 +biological procedures online,1 +biological psychiatry,3 +biological psychiatry : cognitive neuroscience and neuroimaging,1 +biological psychiatry global open science,1 +biological psychology,2 +biological research,1 +biological research for nursing,1 +biological reviews,2 +biological rhythm research,1 +biological theory,1 +biological trace element research,1 +biologicals,1 +biologics,1 +biologiya morya,1 +biologičeskie membrany,0 +biology,0 +biology and environment: proceedings of the royal irish academy,1 +biology and fertility of soils,2 +biology and philosophy,2 +biology bulletin,1 +biology direct,1 +biology letters,2 +biology methods & protocols,0 +biology of mood & anxiety disorders,1 +biology of reproduction,1 +biology of sex differences,1 +biology of sport,1 +biology of the cell,1 +biology open,1 +biomacromolecules,2 +biomarker insights,1 +biomarker research,1 +biomarkers,1 +biomarkers in medicine,1 +biomarkers in neuropsychiatry,1 +biomarkers journal,0 +biomass and bioenergy,2 +biomass conversion and biorefinery,1 +biomaterial investigations in dentistry,1 +biomaterials,3 +biomaterials advances,1 +biomaterials and biosystems,0 +biomaterials science,1 +biomechanics and modeling in mechanobiology,1 +biomed,0 +biomed central,1 +biomed research international,0 +biomedica,1 +biomedical and environmental sciences,1 +biomedical chromatography,1 +biomedical engineering,1 +biomedical engineering advances,1 +biomedical engineering and computational biology,0 +biomedical engineering letters,1 +biomedical engineering online,1 +biomedical glasses,1 +biomedical human kinetics,1 +biomedical journal of scientific & technical research,0 +biomedical materials,1 +biomedical materials & devices,0 +biomedical microdevices,1 +biomedical optics express,1 +biomedical papers-olomouc,1 +biomedical physics & engineering express,1 +biomedical reports,1 +biomedical research-tokyo,1 +biomedical sciences instrumentation,1 +biomedical signal processing and control,1 +biomedical spectroscopy and imaging,1 +biomedical technology,0 +biomedicine,1 +biomedicine and pharmacotherapy,2 +biomedicines,0 +biomedinformatics,0 +biomedizinische technik,1 +biometals,1 +biometric technology today,0 +biometrical journal,1 +biometrical letters,1 +biometrics,2 +biometrika,3 +biomicrofluidics,1 +biomimetics,0 +biomolecular concepts,1 +biomolecular nmr assignments,1 +biomolecules,0 +biomolecules and therapeutics,1 +bionanoscience,1 +bioorganic and medicinal chemistry,1 +bioorganic and medicinal chemistry letters,1 +bioorganic chemistry,1 +bioorganicheskaya khimiya,0 +biopharm international,1 +biopharmaceutics and drug disposition,1 +biophysical chemistry,1 +biophysical economics and resource quality,1 +biophysical journal,2 +biophysical reviews,1 +biophysical reviews and letters,1 +biophysical society annual meeting : abstracts,0 +biophysics,1 +biophysics and physicobiology,0 +biopolymers,1 +biopolymers and cell,0 +biopreservation and biobanking,1 +biopress,1 +bioprinting,0 +bioprocess and biosystems engineering,1 +bioproducts business,0 +bioremediation journal,1 +bioresearch open access,1 +bioresource technology,2 +bioresource technology reports,1 +bioresources,1 +bioresources and bioprocessing,1 +biorheology,1 +biorisk,1 +biorxiv,0 +bios scientific publishers,1 +bioscene,1 +bioscience,2 +bioscience & engineering : an international journal,0 +bioscience biotechnology and biochemistry,1 +bioscience journal,1 +bioscience reports,1 +bioscience research,0 +bioscience trends,1 +bioscientifica,1 +bioscope-south asian screen studies,1 +biosecurity and bioterrorism: biodefense strategy practice and science,1 +biosemiotics,1 +biosensors,0 +biosensors and bioelectronics,3 +biosensors and bioelectronics x,1 +biosocieties,2 +biospektrum,0 +biosphère,-1 +biostatistics,2 +biostatistics & epidemiology,1 +biosystems,1 +biosystems engineering,2 +biota neotropica,1 +biotech,0 +biotechnic and histochemistry,1 +biotechniques,1 +biotechnologia acta,0 +biotechnologie agronomie societe et environnement,1 +biotechnology advances,2 +biotechnology and applied biochemistry,1 +biotechnology and bioengineering,2 +biotechnology and bioprocess engineering,1 +biotechnology and biotechnological equipment,1 +biotechnology and genetic engineering reviews,1 +biotechnology for biofuels and bioproducts,2 +biotechnology for the environment,0 +biotechnology in animal husbandry,1 +biotechnology journal,1 +biotechnology law report,1 +biotechnology letters,1 +biotechnology progress,1 +biotechnology reports,1 +"biotehniška fakulteta, oddelek za lesarstvo",0 +biotekniikan neuvottelukunnan julkaisuja,-1 +biotherapy: an international journal on biological agents,1 +biotribology,1 +biotropica,1 +bipolar disorders,2 +birch and the star,0 +bird behavior: an international and interdisciplinary multimedia journal,1 +bird conservation international,1 +bird study,1 +birdlife,-1 +birds,1 +birkhäuser,1 +birth defects research,1 +birth defects research part b: developmental and reproductive toxicology,1 +birth defects research part c: embryo today: reviews,1 +birth-issues in perinatal care,1 +bis oldenburg,1 +bis publishers,0 +bit numerical mathematics,2 +bitidningen,-1 +biuletyn polskiego towarzystwa jezykoznawczego,1 +bized,-1 +biznes-informatika,0 +bja open,1 +bjgp open,1 +bjog: an international journal of obstetrics and gynaecology,2 +bjpsych advances,1 +bjpsych international,0 +bjpsych open,1 +bjr open,1 +bjs open,1 +bju international,2 +bjui compass,1 +black dog press,0 +black music research journal,2 +black scholar,1 +blackhorse publishing,1 +blackwell munksgaard,1 +blackwell verlag,2 +bladder cancer,0 +bled econference,1 +"bleeding, thrombosis and vascular biology",0 +blityri,0 +blockchain : research and applications,1 +blockchain in healthcare today,0 +blood,3 +blood advances,1 +blood cancer discovery,1 +blood cancer journal,2 +blood cells molecules and diseases,1 +blood coagulation and fibrinolysis,1 +blood pressure,1 +blood pressure monitoring,1 +blood purification,1 +blood reviews,1 +blood transfusion,1 +bloomsbury academic,2 +bloomsbury education and childhood studies,0 +bloomsbury publishing india,0 +blucher design proceedings,0 +blue-green systems,0 +blues news,-1 +blumea,1 +blyttia,1 +blätter für deutsche und internationale politik,1 +bmb reports,1 +bmc agriculture,0 +bmc anesthesiology,1 +bmc biochemistry,1 +bmc bioinformatics,1 +bmc biology,2 +bmc biophysics,1 +bmc biotechnology,1 +bmc cancer,1 +bmc cardiovascular disorders,1 +bmc chemistry,1 +bmc clinical pathology,1 +bmc complementary medicine and therapies,1 +bmc dermatology,1 +bmc developmental biology,1 +bmc digital health,1 +"bmc ear, nose and throat disorders",1 +bmc ecology,1 +bmc ecology and evolution,2 +bmc emergency medicine,1 +bmc endocrine disorders,1 +bmc environmental science,1 +bmc evolutionary biology,2 +bmc gastroenterology,1 +bmc genomic data,1 +bmc genomics,1 +bmc geriatrics,2 +bmc health services research,2 +bmc immunology,1 +bmc infectious diseases,1 +bmc international health and human rights,1 +bmc materials,1 +bmc medical education,1 +bmc medical ethics,1 +bmc medical genetics,1 +bmc medical genomics,1 +bmc medical imaging,1 +bmc medical informatics and decision making,1 +bmc medical physics,1 +bmc medical research methodology,1 +bmc medicine,2 +bmc microbiology,1 +bmc molecular and cell biology,1 +bmc molecular biology,1 +bmc musculoskeletal disorders,1 +bmc nephrology,1 +bmc neurology,1 +bmc neuroscience,1 +bmc nursing,2 +bmc nutrition,1 +bmc obesity,1 +bmc ophthalmology,1 +bmc oral health,1 +bmc palliative care,1 +bmc pediatrics,1 +bmc pharmacology & toxicology,1 +bmc physiology,1 +bmc plant biology,1 +bmc pregnancy and childbirth,1 +bmc primary care,1 +bmc proceedings,1 +bmc psychiatry,2 +bmc psychology,1 +bmc public health,1 +bmc pulmonary medicine,1 +bmc research notes,1 +bmc rheumatology,1 +"bmc sports science, medicine & rehabilitation",1 +bmc structural biology,1 +bmc surgery,1 +bmc systems biology,1 +bmc urology,1 +bmc veterinary research,1 +bmc womens health,1 +bmc zoology,1 +bmemat,0 +bmgn : low countries historical review,1 +bmj,2 +bmj books,1 +bmj case reports,1 +bmj digital health & ai,-1 +bmj evidence-based medicine,1 +bmj global health,1 +bmj health & care informatics,1 +bmj innovations,1 +bmj leader,1 +bmj medicine,1 +bmj mental health,1 +bmj military health,1 +bmj neurology open,1 +"bmj nutrition, prevention & health",1 +bmj oncology,1 +bmj open,1 +bmj open diabetes research and care,1 +bmj open gastroenterology,1 +bmj open ophthalmology,1 +bmj open quality,1 +bmj open respiratory research,1 +bmj open sport & exercise medicine,1 +bmj paediatrics open,1 +bmj public health,1 +bmj quality and safety,3 +bmj sexual & reproductive health,1 +bmj supportive & palliative care,1 +"bmj surgery, interventions, & health technologies",1 +bmva press,1 +bnam,0 +bo ejeby förlag,1 +board game studies journal online,1 +boca,0 +bocagiana,0 +bochumer philosophisches jahrbuch für antike und mittelalter,1 +bochumer studien zur philosophie,1 +bodenkultur,1 +body and society,3 +body image,2 +body politics,1 +body sensor networks conference,0 +"body, movement and dance in psychotherapy: an international journal for theory, research and practice",1 +"body, space and technology journal",1 +boekengilde,0 +boer verlag,1 +bofit discussion papers,0 +bofit policy brief,-1 +bogens verden: tidskrift for litteratur og kultur,1 +bogucki wydawnictwo naukowe,0 +bohemia: zeitschrift für geschichte und kunst der böhmischen länder,1 +bokförlaget atlantis,1 +bokförlaget bas,0 +bokförlaget nya doxa,1 +bokförlaget signum,1 +bokvännens bok,-1 +boletim de ciencias geodesicas,1 +boletim de estudos clássicos,1 +boletim do centro de pesquisa de processamento de alimentos,1 +boletim do instituto de pesca,1 +boletim do museu paraense emílio goeldi : ciências humanas,1 +boletin de investigaciones marinas y costeras,1 +boletin de la asociacion de geografos espanoles,1 +boletin de la real academia de la historia,1 +boletin de la real academia espanola,1 +boletin de la sociedad argentina de botanica,1 +boletin de la sociedad botanica de mexico,1 +boletin de la sociedad entomologica aragonesa,0 +boletin de la sociedad espanola de ceramica y vidrio,1 +boletin de linguistica,1 +boletín,-1 +boletín de filología,2 +boletín de la sociedad española de espeleología y ciencias del karst,0 +boletín de la sociedad matemática mexicana,1 +boletín del museo chileno de arte precolombino,1 +boletín del observatorio de comercio internacional,-1 +bolgarskaja rusistika,1 +bolletino dellunione matematica italiana: articoli di ricerca matematica,1 +bollettino darte,1 +bollettino dei classici,1 +bollettino del centro camuno di studi preistorici,1 +bollettino della badia greca di grottaferrata,1 +bollettino della societa di studi valdesi,0 +bollettino della societa geologica italiana,1 +bollettino della societa paleontologica italiana,1 +bollettino di archeologia,1 +bollettino di geofisica teorica ed applicata,1 +bollettino di storia delle scienze matematiche,1 +bollettino di studi latini,1 +bollettino di studi sartriani,0 +bollettino storico piacentino,0 +bonacci,0 +bond law review,1 +bondebladet,-1 +bondeföretagaren,-1 +bone,2 +bone & joint open,1 +bone joint research,1 +bone marrow research,1 +bone marrow transplantation,1 +bone reports,1 +bone research,2 +bongari,-1 +bonner amerikanistische studien,1 +bonner jahrbücher,1 +bonner zoologische monographien,1 +bononia university press,0 +book collector,0 +book history,2 +book of abstracts (elearning and software for education),0 +"book of abstracts : dubrovnik conference on sustainable development of energy, water and environment systems",0 +book of abstracts : european meetings on cybernetics and systems research,0 +book publisher international,1 +book-of-abstracts.com,0 +bookbird: a journal of international childrens literature,1 +booknet oy,0 +bookplate journal,0 +books from the finnish political science association,0 +books on demand,0 +booktango,0 +bord de l'eau,0 +borderlands e-journal: new spaces in the humanities,1 +borderline personality disorder and emotion dysregulation,1 +borders in globalization review,1 +bordón,1 +boreal environment research,1 +borealis,0 +boreas,2 +boreas: uppsala studies in ancient mediterranean and near eastern civilizations,1 +borec,0 +borgen,1 +borè srl,0 +boréa bokförlag,1 +bosnian journal of basic medical sciences,0 +bosque,1 +boston university law review,1 +botanica,1 +botanica complutensis,0 +botanica marina,1 +botanica pacifica,0 +botanica serbica,0 +botanical journal of the linnean society,1 +botanical review,1 +botanical studies,1 +botany letters,1 +botany-botanique,1 +bothalia,1 +botnia insider,-1 +bottnisk kontakt,0 +botulinum journal,1 +boundaries,-1 +boundary 2: an international journal of literature and culture,2 +boundary-layer meteorology,1 +boydell & brewer,2 +bozen-bolzano university,0 +bozen-bolzano university press,0 +bps blackwell,1 +brachytherapy,1 +bradleya,0 +brain,3 +brain and behavior,1 +brain and cognition,2 +brain and development,1 +brain and language,2 +brain and neuroscience advances,0 +brain and spine,1 +brain behavior and evolution,1 +brain behavior and immunity,1 +brain communications,1 +brain connectivity,1 +brain disorders,0 +brain imaging and behavior,1 +brain impairment,1 +brain injury,1 +brain multiphysics,1 +brain pathology,2 +brain plasticity,0 +brain research,1 +brain research bulletin,1 +brain sciences,0 +brain stimulation,3 +brain structure and function,1 +brain topography,1 +brain tumor pathology,1 +"brain, behavior, & immunity : health",1 +brain-apparatus communication,0 +brandeis university press,1 +brandes & apsel verlag,1 +bratislava medical journal-bratislavske lekarske listy,1 +brazil publishing,0 +brazilian archives of biology and technology,1 +brazilian dental journal,1 +brazilian geographical journal,0 +brazilian journal of allergy and immunology,1 +brazilian journal of biology,1 +brazilian journal of chemical engineering,1 +brazilian journal of development,1 +brazilian journal of infectious diseases,0 +brazilian journal of medical and biological research,0 +brazilian journal of microbiology,1 +brazilian journal of motor behavior,1 +brazilian journal of operations & production management,0 +brazilian journal of otorhinolaryngology,1 +brazilian journal of pharmaceutical sciences,0 +brazilian journal of physical therapy,1 +brazilian journal of physics,1 +brazilian journal of poultry science,1 +brazilian journal of probability and statistics,1 +brazilian journalism research,1 +brazilian oral research,1 +brazilian review of econometrics,1 +brazilian review of finance,0 +breast,1 +breast cancer,1 +breast cancer research,2 +breast cancer research and treatment,1 +breast care,1 +breast journal,1 +breastfeeding medicine,1 +breathe,0 +brecht yearbook,1 +breeding science,1 +breitkopf & härtel,1 +brepols,2 +bricoleur press,1 +brics countries congress on computational intelligence,0 +brics law journal,0 +bridge : trends and traditions in translation and interpreting studies,0 +"bridge structures: assessment, design and construction",1 +bridges conference proceedings,1 +bridging baltic,0 +brief treatment and crisis intervention,1 +briefings in bioinformatics,2 +briefings in entrepreneurial finance,1 +briefings in functional genomics,1 +brigham young university,0 +brill,3 +brill encyclopedia of early christianity online,1 +brill nijhoff,2 +brill research perspectives,0 +brill research perspectives in the law of the sea,1 +brill research perspectives. law and religion,1 +brill rodopi,2 +brill schöningh,1 +brill sense,1 +brill's annual of afroasiatic languages and linguistics,0 +bristol and avon archaeology,1 +bristol university press,1 +britain and the world,0 +britannia: a journal of romano-british and kindred studies,1 +british academy of management,0 +british accounting review,2 +british actuarial journal,1 +british and american studies,1 +british archaeological reports: british series,1 +british archaeological reports: international series,1 +british birds,0 +british computer society,1 +british dental journal,1 +british ecological society,1 +british educational research journal,3 +british film institute publishing,1 +british food journal,1 +british institute of archaeology at ankara,0 +british institute of non-destructive testing,1 +british journal for the history of philosophy,3 +british journal for the history of science,3 +british journal for the philosophy of science,3 +british journal of aesthetics,3 +british journal of anaesthesia,3 +british journal of anaesthetic and recovery nursing,0 +british journal of applied science and technology,1 +british journal of biomedical science,0 +british journal of canadian studies,1 +british journal of cancer,2 +british journal of cardiology,1 +british journal of clinical pharmacology,2 +british journal of clinical psychology,1 +british journal of criminology,3 +british journal of dermatology,3 +"british journal of dermatology, supplement",1 +british journal of developmental psychology,1 +"british journal of education, society and behavioural science",1 +british journal of educational psychology,2 +british journal of educational studies,2 +british journal of educational technology,2 +british journal of general practice,2 +british journal of guidance and counselling,1 +british journal of haematology,2 +british journal of health care management,1 +british journal of health psychology,1 +british journal of hospital medicine,1 +british journal of industrial relations,2 +british journal of leadership in public services,0 +british journal of learning disabilities,1 +british journal of management,3 +british journal of mathematical and statistical psychology,1 +british journal of medicine and medical research,0 +british journal of middle eastern studies,2 +british journal of music education,2 +british journal of music therapy,1 +british journal of neuroscience nursing,1 +british journal of neurosurgery,1 +british journal of nursing,0 +british journal of nutrition,2 +british journal of occupational therapy,1 +british journal of ophthalmology,3 +british journal of oral and maxillofacial surgery,1 +british journal of pharmacology,3 +british journal of political science,3 +british journal of politics and international relations,1 +british journal of psychiatry,3 +british journal of psychology,1 +british journal of psychotherapy,1 +british journal of radiology,1 +british journal of religious education,2 +british journal of social psychology,3 +british journal of social work,3 +british journal of sociology,3 +british journal of sociology of education,3 +british journal of special education,1 +british journal of sports medicine,3 +british journal of surgery,3 +british journal of visual impairment,1 +british journalism review,1 +british library publishing,1 +british medical bulletin,1 +british microbiology research journal,0 +british museum press,1 +british politics,1 +british poultry science,1 +british tax review,1 +british wildlife,0 +british year book of international law,1 +brittonia,1 +brno studies in english,1 +broadview press,1 +brodogradnja,1 +bronte studies,1 +brookes publishing,1 +brookings institution press,1 +brookings papers on economic activity,1 +brookings trade forum,1 +brookings-wharton papers on financial services,1 +brown journal of world affairs,0 +bruniana & campanelliana,1 +bruno pini mathematical analysis seminar,0 +bruylant,1 +bryn mawr classical review,1 +bryobrothera,0 +bryobrotherella,0 +bryologist,1 +bryophyte diversity & evolution,1 +bräv,-1 +brünner beiträge zur germanistik und nordistik,1 +bsr policy briefing,-1 +buckeye east asian linguistics,0 +budapesti corvinus egyetem,0 +budapesti m?szaki és gazdaságtudományi egyetem,0 +buddhist studies review,1 +buddhist-christian studies,1 +budkavlen,1 +buffalo bulletin,1 +buffalo law review,1 +building and environment,2 +building research and information,2 +building research journal,0 +building services engineering research and technology,1 +building simulation,1 +building simulation applications bsa,0 +building simulation conference proceedings,0 +buildings,0 +buildings & cities,2 +buildings and landscapes: journal of the vernacular architecture forum,1 +built environment,1 +built environment project and asset management,1 +built heritage,1 +built-environment sri lanka,1 +bukarester beiträge zur germanistik,0 +buki vedi,0 +buletinul academiei de științe a republicii moldova : matematica,1 +bulgarian astronomical journal,0 +bulgarian chemical communications,0 +bulgarian historical review,1 +bulgarian journal of agricultural science,1 +bulgarska etnologiia,0 +bulgarski ezik,1 +bulletiini,-1 +bulletin,0 +bulletin darcheologie marocaine,1 +bulletin de correspondance hellenique,2 +bulletin de l academie nationale de medecine,1 +bulletin de l academie veterinaire de france,1 +bulletin de l'institut d'egypte,1 +bulletin de la socie?te? darche?ologie copte,1 +bulletin de la societe de linguistique de paris,2 +bulletin de la societe des sciences et des lettres de lodz,1 +bulletin de la societe entomologique de france,0 +bulletin de la societe francaise degyptologie,1 +bulletin de la societe geologique de france,1 +bulletin de la societe historique et archeologique du perigord,1 +bulletin de la societe internationale des etudes yourcenariennes,1 +bulletin de la societe mathematique de france,1 +bulletin de la societe prehistorique francaise,1 +bulletin de la societe toulousaine detudes classiques,1 +bulletin de la societe zoologique de france,1 +bulletin de la société dégyptologie de genève,1 +bulletin de la société linnéenne de provence,0 +bulletin de la société royale des sciences de liège,0 +bulletin de la société royale le vieux-liège,0 +bulletin de la société vaudoise des sciences naturelles,0 +bulletin de lecole francaise dextreme-orient,1 +bulletin de linstitut francais darcheologie orientale du caire,1 +bulletin de linstitut francais detudes andines,1 +bulletin de litterature ecclesiastique,1 +bulletin de philosophie medievale,1 +bulletin des anglicistes médiévistes,1 +bulletin des sciences mathematiques,1 +bulletin du cancer,1 +bulletin du cange,1 +bulletin for international taxation,1 +bulletin hispanique,2 +bulletin knob,1 +bulletin mathematique de la societe des sciences mathematiques de roumanie,1 +bulletin monumental,1 +bulletin of applied economics,1 +bulletin of atmospheric science and technology,1 +bulletin of canadian petroleum geology,1 +bulletin of earthquake engineering,1 +bulletin of economic research,1 +bulletin of education and research,0 +bulletin of electrical engineering and informatics,-1 +bulletin of electrochemistry,1 +bulletin of emergency and trauma,0 +bulletin of engineering geology and the environment,1 +bulletin of entomological research,1 +bulletin of environmental contamination and toxicology,1 +bulletin of experimental biology and medicine,1 +bulletin of faculty of physical therapy,1 +bulletin of geography: socio-economic series,1 +bulletin of geosciences,1 +bulletin of hispanic studies,3 +bulletin of indonesian economic studies,1 +bulletin of insectology,1 +bulletin of japan society for the science of design,0 +bulletin of kerala mathematics association,0 +bulletin of latin american research,1 +bulletin of marine science,1 +bulletin of materials science,1 +bulletin of mathematical biology,2 +bulletin of mathematical sciences,1 +bulletin of mathematical sciences and applications,0 +bulletin of medieval canon law: new series,1 +"bulletin of science, technology and society",1 +bulletin of spanish studies,1 +bulletin of symbolic logic,3 +bulletin of the american astronomical society,0 +bulletin of the american mathematical society,2 +bulletin of the american meteorological society,2 +bulletin of the american museum of natural history,2 +bulletin of the american schools of oriental research,1 +bulletin of the american society of papyrologists,1 +bulletin of the ancient orient museum,1 +bulletin of the atomic scientists,1 +bulletin of the australian mathematical society,1 +bulletin of the belgian mathematical society-simon stevin,1 +bulletin of the brazilian mathematical society,1 +bulletin of the british ornithologists' club,0 +bulletin of the british society for the history of mathematics,1 +bulletin of the center for children`s books,1 +bulletin of the chemical society of ethiopia,0 +bulletin of the chemical society of japan,0 +bulletin of the comediantes,1 +bulletin of the computational statistics of japan,1 +bulletin of the council for research in music education,2 +bulletin of the egyptian museum,1 +bulletin of the european association for theoretical computer science,0 +bulletin of the european association of fish pathologists,1 +bulletin of the geological society of finland,1 +bulletin of the geological society of greece,1 +bulletin of the geological survey of canada,1 +bulletin of the history of medicine,2 +bulletin of the indo-pacific prehistory association,1 +bulletin of the institute of classical studies,1 +bulletin of the institute of history and philology academia sinica,0 +bulletin of the international council for traditional music,-1 +bulletin of the international statistical institute,1 +bulletin of the iranian mathematical society,1 +bulletin of the john rylands university library of manchester,1 +bulletin of the korean chemical society,0 +bulletin of the korean mathematical society,1 +bulletin of the lebedev physics institute,1 +bulletin of the london mathematical society,2 +bulletin of the malaysian mathematical sciences society,1 +bulletin of the maritime institute in gdansk,0 +bulletin of the menninger clinic,0 +bulletin of the museum of far eastern antiquities,1 +bulletin of the national museum of nature and science : series b botany,1 +bulletin of the new zealand society for earthquake engineering,0 +bulletin of the peabody museum of natural history,1 +bulletin of the polish academy of sciences: mathematics,1 +bulletin of the polish academy of sciences: technical sciences,1 +bulletin of the russian academy of sciences: physics,1 +bulletin of the school of oriental and african studies : university of london,1 +bulletin of the scientific instrument society,1 +bulletin of the section of logic,1 +bulletin of the seismological society of america,1 +bulletin of the society of systematic biologists,0 +bulletin of the technical committee on learning technology,1 +bulletin of the torrey botanical club,1 +bulletin of the transilvania university of braşov. series vii social sciences. law,0 +bulletin of the veterinary institute in pulawy,1 +bulletin of the world health organization,3 +bulletin of volcanology,1 +bulletin of zoological nomenclature,0 +bulletin suisse de linguistique appliquee,1 +bulletin trimestriel du trésor de liege,0 +bulletins et memoires de la societe danthropologie de paris,0 +bullettino dell'istituto storico italiano per il medio evo,1 +bullettino della commissione archeologica comunale di roma,1 +bulzoni,1 +bunseki kagaku,0 +bunyan studies,1 +burleigh and dodds science publishing,0 +burlington magazine,3 +burnout research,1 +burns,1 +burns and trauma,1 +burns open,1 +business & society,-1 +business analyst,0 +business and economic history,1 +business and human rights journal,1 +business and information systems engineering,2 +business and management,0 +business and management research,0 +business and management studies,0 +business and politics,1 +business and professional communication quarterly,1 +business and professional ethics journal,1 +business and society,3 +business and society review,1 +business case journal,0 +business communication quarterly,1 +business creativity and the creative economy,0 +business education & accreditation,0 +business ethics and leadership,0 +business ethics quarterly,2 +"business ethics, the environment & responsibility",1 +business excellence,0 +business history,2 +business history review,3 +business horizons,1 +business information review,0 +business law review,1 +business lawyer,1 +business perspectives and research,1 +business process management journal,1 +business research quarterly,1 +business strategy & development,1 +business strategy and the environment,2 +business strategy review,1 +business strategy series,1 +business systems research,0 +"business, management and education",0 +businesses,0 +butterworth-heinemann,1 +bwk,1 +bwrc publications,0 +by : oppikirjat,-1 +by : tekniset ohjeet,-1 +bya nytt,-1 +byron journal,1 +bysantin tutkimuksen seura,0 +byu studies quarterly,0 +byzantiaka,1 +byzantina symmeikta,0 +byzantine and modern greek studies,2 +byzantinische forschungen,1 +byzantinische zeitschrift,2 +byzantinoslavica,1 +byzantion: revue internationale des etudes byzantines,3 +báo giáo dục,-1 +bärenreiter-verlag,1 +béascna,0 +böhlau verlag,2 +"bölcsészettudományi kutatóközpont, irodalomtudományi intézet",0 +bøygen,0 +bückle & böhm,0 +bürgerrechte & polizei,-1 +c theory,1 +c'est bon,-1 +c.,0 +c.a. reitzel,1 +c.f. müller,1 +c.r.i.n.: cahiers de recherche des instituts néerlandais de langue et de littérature française,1 +c21,1 +ca' foscari japanese studies,1 +ca: a cancer journal for clinicians,2 +caai artificial intelligence research,1 +caai transactions on intelligence technology,0 +"cab reviews: perspectives in agriculture, veterinary science, nutrition and natural resources",1 +cabi,1 +cactus tourism journal,0 +cacucci editore,0 +caddis press,1 +cadence user conference,0 +caderno de squibs,0 +cadernos de estudos sociais,0 +cadernos de etnolingüística,0 +cadernos de linguística,0 +cadernos de literatura brasileira,1 +cadernos de pesquisa,1 +cadernos de saude publica,1 +cadernos de traducao,1 +cadmo,0 +cadmus,0 +caesaraugusta,1 +caesarodunum,1 +cahiers afls,1 +"cahiers alsaciens darcheologie, dart et dhistoire",1 +cahiers archaeologiques,1 +cahiers de biologie marine,1 +cahiers de civilisation espagnole contemporaine,1 +cahiers de civilisation medievale,1 +cahiers de droit europeen,2 +cahiers de droit fiscal international,0 +cahiers de geographie de quebec,1 +cahiers de l'institut du moyen-âge grec et latin,1 +cahiers de la documentation,0 +cahiers de la recherche sur l´éducation et les savoirs,1 +cahiers de lassociation internationale des etudes francaises,1 +cahiers de lexicologie,1 +cahiers de linguistique asie orientale,2 +cahiers de linguistique francaise,1 +cahiers de linguistique theorique et appliquee,1 +cahiers de linstitut du moyen-âge grec et latin,1 +cahiers de littérature orale,1 +cahiers de méthodologie juridique,0 +cahiers de nutrition et de dietetique,1 +cahiers de praxematique,1 +cahiers de topologie et geometrie differentielle categoriques,1 +cahiers des ameriques latines,1 +cahiers des etudes anciennes,1 +cahiers des religions africaines,1 +cahiers detudes africaines,1 +cahiers detudes hispaniques medievales,1 +cahiers dextreme-asie,1 +cahiers dhistoire et de philosophie des sciences,1 +cahiers du centre detudes chypriotes,1 +cahiers du centre gustave glotz: revue dhistoire ancienne,1 +"cahiers du centre interdisciplinaire de recherches en histoire, lettres et langues",0 +cahiers du cinema,1 +cahiers du genre,1 +cahiers du monde russe,2 +cahiers déconomie politique,1 +cahiers détudes lévinassiennes,1 +cahiers ferdinand de saussure,1 +cahiers internationaux de sociolinguistique,0 +cahiers internationaux de symbolisme,1 +cahiers jean giraudoux,1 +cahiers mondes anciens,1 +cahiers naturalistes,1 +cahiers victoriens et edouardiens,1 +cahiers voltaire,1 +cahiers élisabéthains: a biannual journal of english renaissance studies,1 +cairo papers in social science,0 +caister academic press,0 +cal lab,-1 +calcified tissue international,1 +calcolo,1 +calculus of variations and partial differential equations,2 +calcutta statistical association bulletin,1 +caldasia,1 +calico,1 +calidoscopio,1 +california agriculture,1 +california cooperative oceanic fisheries investigations reports,1 +california fish and game,1 +california history,1 +california law review,2 +california linguistic notes,0 +california management review,2 +california western international law journal,1 +call center magazine,0 +callaloo,1 +calonian kutsu,-1 +calphad: computer coupling of phase diagrams and thermochemistry,1 +calvin theological journal,1 +cambria press,1 +cambrian medieval celtic studies,1 +cambridge anthropology,1 +cambridge archaeological journal,3 +cambridge classical journal,2 +cambridge forum on ai : law and governance,0 +cambridge imperial and post-colonial studies series,3 +cambridge international law journal,1 +cambridge journal of china studies,0 +cambridge journal of economics,1 +cambridge journal of education,1 +cambridge journal of eurasian studies,1 +cambridge journal of international and comparative law,1 +cambridge journal of mathematics,1 +cambridge journal of postcolonial literary inquiry,1 +"cambridge journal of regions, economy and society",2 +cambridge law journal,3 +cambridge occasional papers in linguistics,0 +cambridge opera journal,3 +cambridge prisms : extinction,0 +cambridge prisms : water,1 +cambridge quarterly,2 +cambridge quarterly of healthcare ethics,1 +cambridge review of international affairs,1 +cambridge scholars publishing,1 +cambridge scientific publishers ltd,1 +cambridge studies in advanced mathematics,1 +cambridge studies in linguistics,1 +cambridge university press,3 +cambridge yearbook of european legal studies,3 +camden house,1 +camera obscura,2 +camera praehistorica,1 +caminhos,0 +caminhos romanos,0 +campbell systematic reviews,-1 +campisano editore,0 +campo das letras,1 +campus verlag,2 +canadian academy of child and adolescent psychiatry. journal,1 +canadian aeronautics and space journal,1 +canadian applied mathematics quarterly,1 +canadian association of radiologists journal-journal de l association canadienne des radiologistes,1 +canadian bulletin of medical history,1 +canadian business law journal,1 +canadian conference on artificial intelligence,0 +canadian conservation institute,1 +canadian entomologist,1 +canadian family physician,1 +canadian field-naturalist,1 +canadian food studies,0 +canadian foreign policy,1 +canadian geographer-geographe canadien,1 +canadian geotechnical journal,1 +canadian historical review,1 +canadian human-computer communications society (chccs),0 +"canadian institute of mining, metallurgy and petroleum",1 +canadian international journal of social science,0 +canadian journal of administrative sciences-revue canadienne des sciences de l administration,1 +canadian journal of african studies,1 +canadian journal of agricultural economics-revue canadienne d agroeconomie,1 +canadian journal of anesthesia,1 +canadian journal of animal science,1 +canadian journal of archaeology,1 +canadian journal of behavioural science-revue canadienne des sciences du comportement,1 +canadian journal of cardiology,1 +canadian journal of career development,1 +canadian journal of chemical engineering,1 +canadian journal of chemistry,0 +canadian journal of civil engineering,1 +canadian journal of clinical pharmacology,0 +canadian journal of communication,1 +canadian journal of community mental health,1 +canadian journal of counselling,1 +canadian journal of criminology and criminal justice,1 +canadian journal of development studies-revue canadienne d etudes du developpement,1 +canadian journal of diabetes,1 +canadian journal of dietetic practice and research,1 +canadian journal of disability studies,1 +canadian journal of earth sciences,1 +canadian journal of economics-revue canadienne d economique,1 +canadian journal of education,1 +canadian journal of educational administration and policy,1 +canadian journal of electrical and computer engineering,0 +canadian journal of emergency medicine,1 +canadian journal of european and russian studies,1 +canadian journal of experimental psychology-revue canadienne de psychologie experimentale,1 +canadian journal of family law,1 +canadian journal of film studies-revue canadienne d etudes cinematographiques,1 +canadian journal of fisheries and aquatic sciences,2 +canadian journal of forest research-revue canadienne de recherche forestiere,2 +canadian journal of gastroenterology,1 +canadian journal of higher education,1 +canadian journal of history-annales canadiennes dhistoire,1 +canadian journal of human sexuality,1 +canadian journal of infectious diseases and medical microbiology,1 +canadian journal of information and library science-revue canadienne des sciences de l information et de bibliotheconomie,1 +canadian journal of law and jurisprudence: an international journal of legal thought,1 +canadian journal of law and society-revue canadienne de droit et societe,1 +canadian journal of learning and technology,1 +canadian journal of linguistics-revue canadienne de linguistique,1 +canadian journal of mathematics-journal canadien de mathematiques,1 +canadian journal of microbiology,1 +canadian journal of music therapy,1 +canadian journal of native studies,1 +canadian journal of neurological sciences,1 +canadian journal of nursing research,1 +canadian journal of occupational therapy,1 +canadian journal of ophthalmology-journal canadien d ophtalmologie,1 +canadian journal of pathology,0 +canadian journal of philosophy,2 +"canadian journal of philosophy, supplementary volume",1 +canadian journal of physics,1 +canadian journal of physiology and pharmacology,1 +canadian journal of plant pathology,0 +canadian journal of plant science,1 +canadian journal of plastic surgery,1 +canadian journal of political science-revue canadienne de science politique,1 +canadian journal of program evaluation,1 +canadian journal of psychiatry-revue canadienne de psychiatrie,1 +canadian journal of psychoanalysis,1 +canadian journal of public health-revue canadienne de sante publique,1 +canadian journal of remote sensing,1 +canadian journal of rural medicine-journal canadien de la medecine rurale,1 +canadian journal of school psychology,1 +"canadian journal of science, mathematics and technology education",1 +canadian journal of sociology-cahiers canadiens de sociologie,1 +canadian journal of soil science,1 +canadian journal of statistics-revue canadienne de statistique,1 +canadian journal of surgery,1 +canadian journal of urban research,0 +canadian journal of urology,1 +canadian journal of veterinary research-revue canadienne de recherche veterinaire,1 +canadian journal of women and the law-revue femmes et droit,1 +canadian journal of zoology-revue canadienne de zoologie,1 +canadian journal on aging,1 +canadian literature,2 +canadian mathematical bulletin-bulletin canadien de mathematiques,1 +canadian medical association journal,1 +canadian medical education journal,1 +canadian metallurgical quarterly,1 +canadian military history,1 +canadian mineralogist,1 +canadian mining journal,1 +canadian modern language review-revue canadienne des langues vivantes,1 +canadian nuclear society,0 +canadian online journal of queer studies in education,1 +canadian poetry,1 +canadian psychology-psychologie canadienne,1 +canadian public administration-administration publique du canada,1 +canadian public policy,1 +canadian respiratory journal,1 +canadian review of american studies,1 +canadian review of comparative literature,1 +canadian review of sociology-revue canadienne de sociologie,1 +canadian scholars press inc.,1 +canadian slavonic papers: an interdisciplinary journal devoted to central and eastern europe,2 +canadian social science,0 +canadian tax journal,1 +canadian theatre review,2 +canadian veterinary journal-revue veterinaire canadienne,1 +canadian water resources journal,1 +canadian woman studies,1 +canadian yearbook of international law,1 +canadian-american slavic studies,1 +cancer,2 +cancer & metabolism,1 +cancer and metastasis reviews,1 +cancer biology and therapy,1 +cancer biomarkers,1 +cancer biotherapy and radiopharmaceuticals,1 +cancer causes and control,1 +cancer cell,3 +cancer cell international,1 +cancer chemotherapy and pharmacology,1 +cancer communications,0 +cancer control,1 +cancer cytopathology,1 +cancer diagnosis & prognosis,0 +cancer discovery,3 +cancer epidemiology,1 +cancer epidemiology biomarkers and prevention,2 +cancer gene therapy,1 +cancer genetics,1 +cancer genomics and proteomics,1 +cancer growth and metastasis,0 +cancer imaging,1 +cancer immunology immunotherapy,1 +cancer immunology research,2 +cancer informatics,1 +cancer investigation,1 +cancer journal,1 +cancer letters,1 +cancer management and research,1 +cancer medicine,1 +cancer microenvironment,1 +cancer nanotechnology,1 +cancer nursing,2 +cancer nursing practice,0 +cancer prevention research,1 +cancer radiotherapie,1 +cancer reports,1 +cancer research,3 +cancer research and treatment,1 +cancer research communications,1 +cancer science,1 +cancer surveys,1 +cancer treatment and research communications,1 +cancer treatment reviews,1 +cancers,0 +candavia,0 +candide: journal for architectural knowledge,1 +candlin & mynard epublishing,0 +candollea,1 +canid biology & conservation,1 +canine medicine and genetics,1 +cannabis and cannabinoid research,1 +canterbury press,0 +canut yayinevi,0 +capacious,1 +capital & class,1 +capital markets law journal,1 +capitalism and society,1 +"capitalism, nature, socialism",2 +capitulum,0 +caplletra,1 +cappelen damm,1 +capra: cave archaeology and palaeontology research archive,1 +capsa historiae,0 +captus press inc.,1 +caravelle: cahiers du monde hispanique et luso: bresilien,1 +carbohydrate chemistry,1 +carbohydrate polymer technologies and applications,1 +carbohydrate polymers,2 +carbohydrate research,1 +carbon,2 +carbon and climate law review,1 +carbon balance and management,1 +carbon capture science & technology,1 +carbon footprints,1 +carbon letters,1 +carbon management,1 +carbon neutrality,1 +carbon research,1 +carbon resources conversion,1 +carbon trends,1 +carbon: science and technology,0 +carbonates and evaporites,1 +carcinogenesis,1 +cardiac electrophysiology clinics,0 +cardiac failure review,1 +cardiff university press,0 +cardiff university welsh school of architecture,0 +cardiogenetics,0 +cardiology,1 +cardiology and therapy,1 +cardiology clinics,1 +cardiology in review,1 +cardiology in the young,1 +cardiology journal,1 +cardiology plus,0 +cardiorenal medicine,0 +cardiovascular and hematological agents in medicinal chemistry,1 +cardiovascular and hematological disorders - drug targets,1 +cardiovascular and interventional radiology,1 +cardiovascular diabetology,1 +cardiovascular digital health journal,1 +cardiovascular drugs and therapy,1 +cardiovascular endocrinology,1 +cardiovascular journal of africa,1 +cardiovascular pathology,1 +cardiovascular research,2 +cardiovascular revascularization medicine,1 +cardiovascular therapeutics,1 +cardiovascular therapy and prevention,1 +cardiovascular toxicology,1 +cardiovascular ultrasound,1 +cardozo arts & entertainment law journal,1 +cardozo law review,1 +career development and transition for exceptional individuals,1 +career development international,1 +career development quarterly,2 +career planning and adult development journal,-1 +carfax publishing,1 +caribbean journal of science,1 +caries research,2 +caring for the ages,1 +carl hanser verlag,1 +carl heymanns verlag,1 +carl nielsen studies,1 +carlsson bokförlag,1 +carnegie mellon university press,1 +carnets de geologie,1 +carnets du cediscor,1 +carocci editore,1 +carpathian journal of earth and environmental sciences,1 +carpathian journal of mathematics,0 +carrefours de leducation,1 +carte di viaggio,0 +cartilage,1 +cartographic journal,1 +cartographic perspectives,1 +cartographica,1 +cartography and geographic information science,2 +carts international technical conference,0 +carus books,0 +caryologia,1 +cas proceedings,1 +casa editrice università la sapienza,1 +casalc review,1 +casas internacional,-1 +cascade books,0 +cascadilla press,1 +case reports in cardiology,0 +case reports in dentistry,0 +case reports in gastrointestinal medicine,-1 +case reports in genetics,0 +case reports in hematology,0 +case reports in medicine,0 +case reports in nephrology and dialysis,0 +case reports in neurological medicine,1 +case reports in neurology,1 +case reports in obstetrics and gynecology,0 +case reports in oncology,0 +case reports in ophthalmology,1 +case reports in orthopedics,0 +case reports in pediatrics,1 +case reports in plastic surgery & hand surgery,1 +case reports in psychiatry,1 +case reports in surgery,1 +case research journal,0 +case studies in chemical and environmental engineering,1 +case studies in construction materials,1 +case studies in nondestructive testing and evaluation,1 +case studies in sport and exercise psychology,1 +case studies in the environment,1 +case studies in thermal engineering,1 +case studies journal,0 +case studies on transport policy,1 +casopis pro moderni filologii,1 +caspar forlag,1 +cassiodorus: rivista di studi sulla tarda antichita,1 +castanea,1 +catalan journal of communication & cultural studies,0 +catalan journal of linguistics,1 +catalan review,1 +cataloging and classification quarterly,1 +catalysis for sustainable energy,0 +catalysis in green chemistry and engineering,1 +catalysis in industry,0 +catalysis letters,1 +catalysis reviews: science and engineering,2 +catalysis science and technology,1 +catalysis surveys from asia,0 +catalysis today,1 +catalyst,1 +catalysts,0 +catena,1 +cathedra: quarterly for the history of eretz-israel,1 +catheterization and cardiovascular interventions,1 +catholic biblical quarterly,2 +catholic historical review,2 +catholic university law review,1 +catholic university of america press,1 +catholic university of murcia,0 +catholica: vierteljahresschrift für ökumenische theologie,1 +cato journal,1 +cattle practice,1 +catwalk,0 +caucasus institute,0 +caucasus survey,1 +cauce: revista de filologia y su didactica,1 +cauda pavonis: studies in hermeticism,1 +cauriensia,1 +"causal productions pty, limited",0 +cave and karst science,1 +cbd technical series,0 +cbe: life sciences education,1 +ccamlr science,1 +ccf transactions on pervasive computing and interaction,1 +cci press,1 +ccr insights,-1 +ccs chemistry,1 +ce/papers,0 +cea critic,1 +ceas insights,0 +ceas space journal,1 +cedam,1 +cedla latin america studies,1 +cefr journal : research and practice,0 +cei-bois,0 +celebrity studies,1 +celestial mechanics and dynamical astronomy,1 +cell,3 +cell adhesion and migration,1 +cell and bioscience,1 +cell and tissue banking,1 +cell and tissue biology,0 +cell and tissue research,1 +cell biochemistry and biophysics,1 +cell biochemistry and function,1 +cell biology and toxicology,1 +cell biology international,1 +cell calcium,1 +cell chemical biology,2 +cell communication and adhesion,1 +cell communication and signaling,1 +cell cycle,1 +cell death and differentiation,2 +cell death and disease,1 +cell death discovery,1 +cell discovery,1 +cell division,1 +cell genomics,1 +cell host and microbe,3 +cell journal,1 +cell metabolism,3 +cell proliferation,1 +cell reports,3 +cell reports : methods,1 +cell reports medicine,1 +cell reports physical science,1 +cell research,2 +cell stem cell,3 +cell stress,0 +cell stress and chaperones,1 +cell structure and function,1 +cell surface,0 +cell systems,2 +cell transplantation,1 +cells,0 +cells and development,1 +cells tissues organs,1 +cellular and molecular bioengineering,1 +cellular and molecular biology,0 +cellular and molecular biology letters,1 +cellular and molecular gastroenterology and hepatology,2 +cellular and molecular immunology,1 +cellular and molecular life sciences,2 +cellular and molecular neurobiology,1 +cellular immunology,1 +cellular microbiology,1 +cellular oncology,1 +cellular physiology and biochemistry,1 +cellular polymers,1 +cellular reprogramming,1 +cellular signalling,1 +cellular therapy and transplantation,0 +cellulose,2 +cellulose chemistry and technology,1 +cellulose communications,0 +celovek i obrazovanie,0 +celtica: journal of the school of celtic studies,1 +celulosa y papel,0 +cement,1 +cement and concrete composites,3 +cement and concrete research,3 +cement wapno beton,1 +cengage gale,0 +cengage learning,1 +cengage learning asia,0 +centar za crkvene studije,0 +centar za demokraciju i pravo miko tripalo,0 +centar za istraživanje i razvoj upravljanja d.o.o.,0 +centaurus,1 +center for global nonkilling,0 +center for international forestry research,0 +center for transatlantic relations,0 +centr soxraneniya kul`turnogo naslediya,0 +central & eastern european software engineering conference in russia,0 +central and eastern european migration review,1 +central and eastern european review,1 +central asia and the caucasus,0 +central asia program,0 +central asian affairs,0 +central asian economic review,0 +central asian journal of water research,0 +central asian survey,1 +central asiatic journal,1 +central conservatory of music press,0 +central europe,2 +central european annals of clinical research,0 +central european astrophysical bulletin,1 +central european history,3 +central european journal of communication,1 +central european journal of comparative law,1 +central european journal of energetic materials,0 +central european journal of immunology,0 +central european journal of international & security studies,1 +central european journal of nursing and midwifery,1 +central european journal of operations research,1 +central european journal of public health,1 +central european management journal,-1 +central european neurosurgery,1 +central european political studies review,1 +central european public administration review,0 +central european university press,1 +central nervous system agents in medicinal chemistry,1 +centre d études européennes,0 +centre d'études sur les jeunes et les médias,0 +centre des hautes études internationales d'informatique documentaire,0 +centre d´études sur les médias,0 +centre détudes du xixe siècle joseph sable,1 +centre for economic and regional studies of the hungarian academy of sciences,0 +centre for lifelong learning services,0 +centre international d'étude du dix-huitième siècle,0 +centre liégeois d´édition scientifique,0 +centre on foreign policy and federalism,0 +centrepiece,0 +centria : oppimateriaaleja,-1 +centria : puheenvuoroja,-1 +centria : raportteja ja selvityksiä,-1 +centria : tutkimuksia,0 +centria bulletin,-1 +centria reports,-1 +centro congressi internazionale,0 +centro de estudios andaluces,1 +centro de estudos de história religiosa,0 +centro de investigaciones sociologicas,0 +centro di cultura e storia amalfitana,0 +centro journal,1 +centro matemática aplicada - universidade açores,0 +centropa: a journal of central european architecture and related arts,1 +centrum för arbetarhistoria i landskrona,0 +centrum för feministiska samhällsstudier,0 +centrum wiskunde & informatica,0 +cepal review,1 +cephalalgia,2 +cephalalgia reports,1 +ceps journal,1 +ceramic engineering and science proceedings,1 +ceramic transactions,1 +ceramics,0 +ceramics international,1 +ceramics technical,1 +ceramics-silikaty,1 +ceramics: art and perception,1 +cercle ferdinand de saussure,1 +cereal chemistry,1 +cereal foods world,1 +cereal research communications,1 +cerebellum,1 +"cerebral circulation, cognition and behavior",1 +cerebral cortex,3 +cerebral cortex communications,1 +cerebrovascular diseases,1 +cerebrovascular diseases extra,1 +cern - the european organization for nuclear research,0 +cern ideasquare journal of experimental innovation,1 +cern reports,1 +cern-proceedings,0 +cerne,1 +ceroart,1 +cervantes,1 +ces working papers,1 +cesifo economic studies,1 +ceska a slovenska neurologie a neurochirurgie,1 +ceska literatura,2 +cesko-slovenska patologie a soudni lekarstvi,0 +ceskoslovenska psychologie,0 +cesky casopis historicky: the czech historical review,1 +cesky lid: ethnologicky casopis,1 +ceu medievalia,1 +ceu political science journal,0 +ceu press,1 +ceur workshop proceedings,1 +cfe conference papers series,0 +cfi: ceramic forum international,1 +ch. links verlag : ein imprint von aufbau verlage,0 +chairudo herusu,0 +chalcogenide letters,1 +challenges,0 +chalmers tekniska högskola,0 +chance,1 +chandos,0 +change and adaptation in socio-ecological systems,1 +change over time,1 +change: the magazine of higher learning,1 +changing english,1 +changing perspectives and approaches in contemporary teaching,1 +changjiang xueshu,0 +changshu gao-zhuan xuebao,0 +changzhi xueyuan xuebao,0 +channel view publications,1 +channels,1 +chaos,1 +chaos and complexity letters,1 +chaos solitons and fractals,1 +chaotic modeling and simulation journal,1 +chapman and hall/crc,1 +charles c. thomas publisher,0 +charles scribner's sons,0 +charrette,1 +chartarum amici,-1 +charter club,-1 +chasedae keonbeojeonseu jeongbo seobiseu gisul nonmunji,0 +chasqui: revista de literatura latinoamericana,1 +chateau-gaillard,1 +chatto & windus,1 +chaucer review,2 +check list,1 +cheiron,1 +cheiron: materiali e strumenti di aggiornamento storiografico,1 +chelonian conservation and biology,1 +chem,3 +chem-bio informatics journal,1 +chembiochem,1 +chemcatchem,1 +chemelectrochem,1 +chemengineering,0 +chemical and biochemical engineering quarterly,1 +chemical and biological technologies in agriculture,1 +chemical and engineering news,1 +chemical and petroleum engineering,1 +chemical and pharmaceutical bulletin,1 +chemical and process engineering-inzynieria chemiczna i procesowa,1 +chemical biology and drug design,1 +chemical bulletin of politehnica university of timisoara : series of chemistry and environmental engineering,0 +chemical communications,2 +chemical data collections,0 +chemical educator,1 +chemical engineering,1 +chemical engineering & process techniques,0 +chemical engineering and processing,1 +chemical engineering and technology,1 +chemical engineering communications,1 +chemical engineering education,1 +chemical engineering journal,3 +chemical engineering journal advances,1 +chemical engineering progress,1 +chemical engineering research and design,1 +chemical engineering science,3 +chemical engineering science x,1 +chemical engineering transactions,1 +chemical fibers international,0 +chemical geology,2 +chemical immunology,1 +chemical industry and chemical engineering quarterly,1 +chemical informatics,0 +chemical innovation,1 +chemical journal of chinese universities: chinese,0 +chemical papers,1 +chemical physics,1 +chemical physics impact,1 +chemical physics letters,1 +chemical physics letters x,1 +chemical physics reviews,-1 +chemical processing,1 +chemical product and process modeling,1 +chemical record,1 +chemical research in chinese universities,0 +chemical research in toxicology,2 +chemical reviews,3 +chemical science,3 +chemical senses,1 +chemical society reviews,3 +chemical vapor deposition,1 +chemical week,1 +chemicke listy,0 +chemico-biological interactions,1 +chemie der erde-geochemistry,1 +chemie in unserer zeit,0 +chemie ingenieur technik,1 +chemija,0 +chemistry,0 +chemistry africa,0 +chemistry and biodiversity,1 +chemistry and ecology,1 +chemistry and industry,1 +chemistry and physics of carbon,1 +chemistry and physics of lipids,1 +chemistry and technology of fuels and oils,1 +chemistry education : research and practice,0 +chemistry education research and practice,1 +chemistry for sustainable development,0 +chemistry letters,1 +chemistry methods,1 +chemistry of heterocyclic compounds,1 +chemistry of materials,3 +chemistry of natural compounds,1 +chemistry teacher international,0 +chemistry world,0 +chemistry: a european journal,2 +chemistry: an asian journal,1 +chemistryopen,1 +chemistryselect,1 +chemkon,1 +chemmedchem,1 +chemnanomat,1 +chemoecology,1 +chemometrics and intelligent laboratory systems,1 +chemosensors,0 +chemosensory perception,1 +chemosphere,1 +chemotherapy,1 +chemphotochem,1 +chemphyschem,1 +chempluschem,1 +chemsuschem,2 +chemsystemschem,1 +chemtec publishing,0 +chenia,0 +cherepoveckij gosudarstvenny`j universitet,0 +cheske vysoke ucheni technicke v praze,0 +chest,2 +chiasma,1 +chiasmi international,1 +chicago journal of theoretical computer science,1 +chicago linguistic society,1 +chicago review,1 +chigiana: rassegna annuale di studi musicologici,1 +chikuma shobo,0 +child & youth services,1 +child abuse and neglect,1 +child abuse review,1 +child and adolescent mental health,1 +child and adolescent obesity,1 +child and adolescent psychiatric clinics of north america,1 +child and adolescent psychiatry and mental health,1 +child and adolescent social work journal,1 +child and family behavior therapy,1 +child and family law quarterly,2 +child and family social work,2 +child and youth care forum,1 +child care health and development,1 +child care in practice,1 +child development,3 +child development perspectives,1 +child development research,1 +child indicators research,1 +child language teaching and therapy,1 +child maltreatment,1 +child neurology open,1 +child neuropsychology,1 +child protection and practice,1 +child psychiatry and human development,1 +child welfare,1 +childhood,3 +childhood & philosophy,1 +childhood education,1 +childhood in the past,1 +childhood obesity,1 +childhood vulnerability journal,0 +childlinks,-1 +children,0 +children & schools,0 +children and society,1 +children and youth services review,1 +children australia,1 +children in war: the international journal of evacuee and war child studies,1 +children's literature,1 +"children, youth and environments",1 +childrens geographies: advancing interdisciplinary understanding of younger peoples lives,1 +childrens health care,1 +childrens literature in education,2 +children’s literature association quarterly,1 +childs nervous system,1 +chilean journal of agricultural research,1 +chilin poltteessa,-1 +chime,1 +chimia,1 +chimica oggi-chemistry today,0 +china agricultural economic review,1 +china and world economy,1 +china architecture and building press,0 +china cdc weekly,0 +china communications,1 +china economic review,1 +china finance review international,1 +china foundry,0 +china information,1 +china journal,3 +china journal of social work,1 +china ocean engineering,1 +china ocean university press,0 +china petroleum processing and petrochemical technology,1 +china pulp and paper,0 +china quarterly,2 +china quarterly of international strategic studies,1 +china report,1 +china review international: a journal of reviews of scholarly literature in chinese studies,1 +china review: an interdisciplinary journal on greater china,1 +china social sciences press,1 +china studies,2 +china summer workshop on information management,0 +china university of political science and law press,0 +china-an international journal,0 +china-eu law journal,1 +china-usa business review,0 +chinese (taiwan) yearbook of international law and affairs,-1 +chinese annals of mathematics series b,1 +chinese as a second language research,1 +chinese as a second language.,1 +chinese business review,0 +chinese chemical letters,0 +chinese clinical oncology,1 +chinese control and decision conference,0 +chinese control conference,0 +chinese education and society,1 +chinese geographical science,1 +chinese journal of aeronautics,1 +chinese journal of analytical chemistry,0 +chinese journal of applied entomology,0 +chinese journal of applied linguistics,1 +chinese journal of cancer research,0 +chinese journal of catalysis,1 +chinese journal of chemical engineering,1 +chinese journal of chemical physics,1 +chinese journal of chemistry,1 +chinese journal of communication,1 +chinese journal of dental research,1 +chinese journal of electrical engineering,0 +chinese journal of electronics,0 +chinese journal of environmental law,1 +chinese journal of geophysics: chinese edition,1 +chinese journal of inorganic chemistry,0 +chinese journal of integrative medicine,1 +chinese journal of international law,1 +chinese journal of international politics,1 +chinese journal of mechanical engineering,1 +chinese journal of mechanical engineering : additive manufacturing frontiers,0 +chinese journal of oceanology and limnology,1 +chinese journal of organic chemistry,0 +chinese journal of pathophysiology,1 +chinese journal of pediatrics,0 +chinese journal of physics,1 +chinese journal of physiology,1 +chinese journal of structural chemistry,0 +chinese journal of urban and environmental studies,0 +chinese language and discourse,1 +chinese law and government,1 +chinese librarianship,1 +chinese management studies,1 +chinese medical journal,1 +chinese medical sciences journal,1 +chinese optics letters,1 +chinese physics b,1 +chinese physics c,1 +chinese physics letters,1 +chinese political science review,1 +chinese science and technology translators journal,1 +chinese semiotic studies,1 +chinese sociological review,1 +chinese studies in history,1 +chinese university press,1 +chirality,1 +chiron,1 +chiropractic & manual therapies,1 +chirurg,1 +chirurgia,1 +chirurgie de la main,1 +cholesterol,1 +choonpa erekutoronikusu no kiso to oyo ni kansuru shinpojiumu,0 +choregia,1 +choreographic practices,2 +choros international dance journal,1 +chrismon plus,-1 +christian bioethics,1 +christian ejlers´s forlag,1 +christian higher education,1 +christian perspectives on science and technology,1 +christian-albrechts-universität zu kiel,0 +chromatographia,1 +chromosoma,1 +chromosome research,1 +chronic diseases and injuries in canada,1 +chronic diseases and translational medicine,1 +chronic illness,1 +chronica mundi,1 +chronicle of higher education,1 +chronique degypte,1 +chroniques italiennes,1 +chronobiology international,1 +chronos-verlag,0 +chronotopos,0 +chulalongkorn university,0 +chungara: revista de antropologia chilena,1 +church archaeology,1 +church history,2 +church history and religious culture,1 +"church, communication and culture",1 +chydenius,-1 +chôra,1 +cib conferences,-1 +cib w78 conference series,0 +ciberletras,1 +cice guidelines,1 +ciceroniana,1 +ciceroniana on line,1 +"cidades, comunidades e territórios",-1 +cidoc annual conference,0 +cie internationale beleuchtungskommission,0 +ciela,0 +ciencia e agrotecnologia,1 +ciencia e ingeniería,0 +ciencia e investigacion agraria,1 +ciencia e saude coletiva,1 +ciencia e tecnica vitivinicola,1 +ciencia e tecnologia de alimentos,1 +ciencia ergo sum,1 +ciencia florestal,1 +ciencias marinas,1 +cierre edizioni,0 +cifile journal of international law,1 +cigre international colloquium on low frequency electromagnetic fields,0 +cigre science & engineering,1 +ciji daxue jiaoyu yanjiu xuekan,0 +cim journal,1 +cim series in mathematical sciences,1 +cin: computers informatics nursing,2 +cineaste,0 +cineclube avanca,0 +cineforum,0 +cinema,1 +cinemas d'amerique latine,0 +cinemas: revue detudes cinematographiques,1 +cinta de moebio,1 +cinéma & cie,1 +cirad,1 +circuit,1 +circuit world,1 +circuits systems and signal processing,1 +circular economy,1 +circular economy and sustainability,1 +circulation,3 +circulation journal,1 +circulation reports,1 +circulation research,3 +circulation. genomic and precision medicine,1 +circulation: arrhythmia and electrophysiology,1 +circulation: cardiovascular genetics,1 +circulation: cardiovascular imaging,2 +circulation: cardiovascular interventions,2 +circulation: cardiovascular quality and outcomes,1 +circulation: heart failure,2 +circulo de linguistica aplicada a la comunicacion,1 +circumpolar health supplements,0 +circus-zeitung,-1 +cired - open access proceedings journal,1 +cired workshop proceedings,1 +ciriec españa : revista jurídica de economía social y cooperativa,0 +ciriec-españa,0 +cirp annals: manufacturing technology,1 +cirp journal of manufacturing science and technology,2 +cirugia espanola,1 +cirugia y cirujanos,1 +cisa publisher,0 +citeaux: commentarii cistercienses,1 +cithara : essays in the judeo-christian tradition,1 +cities,2 +cities & health,1 +cities and the environment,0 +citizen science,2 +citizenship studies,2 +citizenship teaching and learning,1 +"citizenship, social and economics education",1 +città e storia,0 +city,1 +city and community,1 +city and society,2 +city university of hong kong,0 +"city, culture and society",1 +"city, territory and architecture",1 +cité de l´architecture et du patrimoine,0 +cité du design – école supérieure d’art et design (epcc),0 +civil and environmental engineering,0 +civil engineering,1 +civil engineering and architecture,1 +civil engineering and environmental systems,1 +civil engineering journal,0 +civil justice quarterly,1 +civil szemle,1 +civil war history,1 +civil wars,1 +civil-comp press,0 +civilisations,1 +civitas hominibus,0 +civitas: revista espanola de derecho europeo,1 +ciência da madeira,0 +cjc open,1 +cjc pediatric and congenital heart disease,1 +cla journal: college language association,1 +clacso,1 +cladistics,2 +claeys & casteels,1 +clarin annual conference proceedings,0 +clarity,-1 +clarté,-1 +classica,1 +classica et mediaevalia: revue danoise de philologie et d histoire,2 +classica vox,1 +classical and quantum gravity,1 +classical antiquity,3 +classical bulletin,1 +classical journal,2 +classical literature,0 +classical philology,3 +classical quarterly,3 +classical receptions journal,1 +classical review,2 +classical world,1 +classics ireland,1 +classics@,0 +classicus,0 +classiques garnier,1 +classroom discourse,2 +clavis commentariorum antiquitatis et medii aevi,1 +clay minerals,1 +clay minerals society,0 +clay science,1 +clays and clay minerals,1 +clcweb: comparative literature and culture,1 +"clean : soil, air, water",1 +clean air journal,1 +clean energy,1 +clean technologies,0 +clean technologies and environmental policy,1 +cleaner and circular bioeconomy,1 +cleaner and responsible consumption,1 +cleaner chemical engineering,-1 +cleaner energy systems,-1 +cleaner engineering and technology,1 +cleaner environmental systems,1 +cleaner logistics and supply chain,1 +cleaner materials,1 +cleaner production letters,1 +cleaner waste systems,1 +cleen oy,0 +cleer working papers,0 +cleft palate-craniofacial journal,1 +clele journal,1 +clemson university digital press,1 +cleup,0 +cleveland clinic journal of medicine,1 +cleveland state law review,0 +climacteric,1 +climate,0 +climate and development,0 +climate change economics,1 +climate dynamics,2 +climate informatics,0 +climate law,1 +climate of the past,2 +climate policy,2 +climate research,1 +climate risk management,2 +climate services,1 +climatic change,2 +climepsi editores,1 +clinica chimica acta,1 +clinical & experimental neuroimmunology,0 +clinical anatomy,1 +clinical and applied immunology reviews,1 +clinical and applied thrombosis-hemostasis,1 +clinical and developmental immunology,1 +clinical and experimental allergy,2 +clinical and experimental allergy reviews,1 +clinical and experimental dental research,1 +clinical and experimental dermatology,1 +clinical and experimental hypertension,1 +clinical and experimental immunology,1 +clinical and experimental medicine,1 +clinical and experimental metastasis,1 +clinical and experimental nephrology,1 +clinical and experimental obstetrics and gynecology,1 +clinical and experimental ophthalmology,1 +clinical and experimental optometry,1 +clinical and experimental otorhinolaryngology,1 +clinical and experimental pharmacology and physiology,1 +clinical and experimental reproductive medicine,1 +clinical and experimental rheumatology,1 +clinical and investigative medicine,1 +clinical and translational allergy,1 +clinical and translational discovery,0 +clinical and translational gastroenterology,1 +clinical and translational imaging,1 +clinical and translational immunology,1 +clinical and translational medicine,1 +clinical and translational oncology,1 +clinical and translational radiation oncology,1 +clinical and vaccine immunology,1 +clinical archives of communication disorders,1 +clinical autonomic research,1 +clinical biochemistry,1 +clinical biomechanics,1 +clinical breast cancer,1 +clinical cancer research,3 +clinical cardiology,1 +clinical case reports,0 +clinical case studies,1 +clinical chemistry,3 +clinical chemistry and laboratory medicine,1 +clinical child and family psychology review,2 +clinical child psychology and psychiatry,1 +clinical chiropractic,1 +clinical colorectal cancer,1 +clinical diabetes and endocrinology,1 +clinical drug investigation,1 +clinical dysmorphology,1 +clinical eeg and neuroscience,1 +clinical endocrinology,1 +clinical epidemiology,3 +clinical epidemiology and global health,0 +clinical epigenetics,1 +clinical epileptology,0 +clinical ethics,1 +clinical gastroenterology and hepatology,2 +clinical genetics,1 +clinical genitourinary cancer,1 +clinical gerontologist,1 +clinical health promotion,0 +clinical hemorheology and microcirculation,1 +clinical hypertension,0 +clinical imaging,1 +clinical immunology,1 +clinical implant dentistry and related research,1 +clinical infectious diseases,3 +clinical interventions in aging,1 +clinical investigation,0 +clinical journal of oncology nursing,1 +clinical journal of pain,1 +clinical journal of sport medicine,1 +clinical journal of the american society of nephrology,2 +clinical kidney journal,1 +clinical kinesiology,1 +clinical laboratory,1 +clinical law review: a journal of lawyering and legal education,1 +clinical leadership and management review,1 +clinical linguistics and phonetics,3 +clinical lipidology,1 +clinical lung cancer,1 +clinical lymphoma myeloma and leukemia,1 +clinical mass spectrometry,1 +clinical medicine,1 +"clinical medicine insights : circulatory, respiratory and pulmonary medicine",1 +"clinical medicine insights : ear, nose and throat",0 +clinical medicine insights : endocrinology and diabetes,1 +clinical medicine insights : oncology,1 +clinical medicine insights : reproductive health,0 +clinical microbiology and infection,2 +clinical microbiology reviews,3 +clinical nephrology,1 +clinical neurology and neurosurgery,1 +clinical neuropathology,1 +clinical neuropharmacology,1 +clinical neurophysiology,3 +clinical neurophysiology practice,1 +clinical neuropsychiatry,1 +clinical neuropsychologist,1 +clinical neuroradiology,1 +clinical neuroscience research,1 +clinical nuclear medicine,1 +clinical nurse specialist,1 +clinical nursing research,1 +clinical nursing studies,0 +clinical nutrition,3 +clinical nutrition espen,1 +clinical nutrition experimental,1 +clinical obesity,1 +clinical obstetrics and gynecology,1 +"clinical obstetrics, gynecology and reproductive medicine",1 +clinical oncology,1 +clinical ophthalmology,1 +clinical oral implants research,3 +clinical oral investigations,2 +clinical orthopaedics and related research,2 +clinical otolaryngology,1 +clinical parkinsonism & related disorders,1 +clinical pediatric endocrinology,1 +clinical pediatrics,1 +clinical pharmacokinetics,2 +clinical pharmacology and therapeutics,3 +clinical pharmacology in drug development,1 +clinical physiology and functional imaging,1 +clinical practice and epidemiology in mental health,0 +clinical proteomics,1 +clinical psychological science,1 +clinical psychologist,1 +clinical psychology and psychotherapy,1 +clinical psychology in europe,0 +clinical psychology review,3 +clinical psychology: science and practice,2 +clinical pulmonary medicine,1 +clinical radiology,1 +clinical rehabilitation,2 +clinical research and regulatory affairs,1 +clinical research in cardiology,1 +clinical respiratory journal,1 +clinical reviews in allergy and immunology,1 +clinical rheumatology,1 +clinical science,1 +clinical simulation in nursing,1 +clinical social work journal,1 +clinical spectroscopy,0 +clinical spine surgery,1 +clinical therapeutics,1 +clinical theriogenology,1 +clinical toxicology,1 +clinical traditional medicine and pharmacology,-1 +clinical transplantation,1 +clinical trials,1 +"clinical, cosmetic and investigational dermatology",1 +clinician and technology,0 +clinicoeconomics and outcomes research,1 +clinics,1 +clinics and practice,0 +clinics and research in hepatology and gastroenterology,1 +clinics in chest medicine,1 +clinics in colon and rectal surgery,1 +clinics in dermatology,1 +clinics in geriatric medicine,1 +clinics in laboratory medicine,1 +clinics in liver disease,1 +clinics in orthopedic surgery,0 +clinics in perinatology,2 +clinics in plastic surgery,1 +clinics in shoulder and elbow,1 +clinics in sports medicine,1 +clinics in surgery,0 +clio,1 +clio @ themis,1 +clio medica,1 +"clio: a journal of literature, history, and the philosophy of history",2 +cliometrica,2 +clios psyche,0 +clocks & sleep,0 +clothing and textiles research journal,1 +clothing cultures,1 +"cloud computing ... the ... international conference on cloud computing, grids, and virtualization",1 +cloud software finland,0 +cloud-cuckoo-land,1 +clough center for the study of constitutional democracy,0 +clues: a journal of detection,1 +cluj university press,1 +cluster computing: the journal of networks software tools and applications,1 +clute institute academic conference proceedings,0 +cm communication management quarterly,0 +cmes: computer modeling in engineering and sciences,1 +cmi communications,0 +cms note,0 +cnit technical report,0 +cnr - insean,0 +cnrs editions,1 +cns and neurological disorders-drug targets,1 +cns drugs,1 +cns neuroscience and therapeutics,1 +cns spectrums,1 +cns. la chimica nella scuola,0 +co-herencia,1 +coaching,1 +coaching psychologist,1 +coastal engineering,3 +coastal engineering journal,1 +coastal management,1 +coastal studies & society,1 +coat of arms,1 +coatings,0 +cochlear implants international,1 +cochrane database of systematic reviews,2 +codesign: international journal of cocreation in design and the arts,3 +codex manuscriptus,0 +codices manuscripti: zeitschrift für handschriftenkunde,1 +codis working papers,0 +cogent arts & humanities,1 +cogent biology,1 +cogent business & management,1 +cogent economics and finance,1 +cogent education,1 +cogent engineering,1 +cogent food & agriculture,1 +cogent geoscience,0 +cogent physics,1 +cogent psychology,1 +cogent public health,1 +cogent social sciences,0 +cogitare enfermagem,0 +cogito,1 +cognitextes,1 +cognitio: revista de filosofia,1 +cognition,3 +cognition and emotion,2 +cognition and instruction,2 +cognition représentation langages,1 +"cognition, technology and work",1 +cognitive affective and behavioral neuroscience,1 +cognitive and behavioral neurology,1 +cognitive and behavioral practice,1 +cognitive behaviour therapy,1 +cognitive computation,2 +cognitive development,1 +cognitive linguistic studies,1 +cognitive linguistics,3 +cognitive neurodynamics,1 +cognitive neuropsychiatry,1 +cognitive neuropsychology,1 +cognitive neuroscience,1 +cognitive processing,1 +cognitive psychology,3 +cognitive research,1 +cognitive science,2 +cognitive science society,1 +cognitive semantics,1 +cognitive semiotics,2 +cognitive systems research,1 +cognitive therapy and research,1 +cognizant communication corporation,1 +coincidentia,0 +coj technical & scientific research,0 +cold regions science and technology,2 +cold spring harbor laboratory press,2 +cold spring harbor molecular case studies,1 +cold spring harbor perspectives in biology,1 +cold spring harbor perspectives in medicine,1 +cold spring harbor protocols,1 +cold spring harbor symposia on quantitative biology,1 +cold war history,3 +coleg cymraeg cenedlaethol,0 +colegio federado de ingenieros y de arquitectos,0 +coleopterists bulletin,1 +collaborative media group inc.,0 +collabra,1 +collagen and leather,0 +collated papers for the alte international conference,0 +collateral,0 +collectanea hibernica,1 +collectanea mathematica,1 +collectanea sancti martini,1 +collection agir,0 +collection fruitrop thema,0 +collection septieme art: 7e art,1 +collections cerlico,1 +collections: a journal for museum and archives professionals,1 +collective dynamics,0 +collective intelligence,1 +college and research libraries,2 +college and research libraries news,1 +college composition and communication,1 +college english,1 +college literature,1 +college mathematics journal,1 +college music symposium,1 +college publications,1 +college student journal,0 +collegian,1 +collegiate aviation review,0 +collegium antropologicum,1 +collegium biblicum,0 +collegium fenno-ugricum,0 +collegium medievale,1 +collingwood and british idealism studies,1 +collnet journal of scientometrics and information management,1 +colloid and polymer science,1 +colloid journal,1 +colloids and interface science communications,1 +colloids and surfaces a: physicochemical and engineering aspects,1 +colloids and surfaces b: biointerfaces,2 +colloquia germanica,1 +colloquia pontica,1 +colloquium,0 +colloquium helveticum: cahiers suisses de litterature generale et comparee,1 +colloquium mathematicum,1 +colombia forestal,0 +colombia medica,1 +colonial latin american historical review,1 +colonial latin american review,1 +coloproctology,1 +coloquio: letras,1 +color research and application,1 +"colorado natural resources, energy & environmental law review",0 +coloration technology,1 +colorectal cancer,1 +colorectal disease,1 +colour and visual computing symposium,0 +columbia journal of law and social problems,1 +columbia journal of tax law,1 +columbia journal of transnational law,1 +columbia journalism review,0 +columbia law review,3 +columbia studies in the classical tradition,1 +columbia university press,2 +colóquio brasileiro de matemática,0 +comadem international,1 +combinatorial chemistry,1 +combinatorial chemistry and high throughput screening,1 +combinatorial theory,-1 +combinatorica,2 +combinatorics and number theory,1 +"combinatorics, probability and computing",2 +combustion and flame,3 +combustion engines,0 +combustion explosion and shock waves,1 +combustion science and technology,1 +combustion theory and modelling,1 +come,0 +comedy studies,1 +comicalités,0 +comitatus: a journal of medieval and renaissance studies,0 +comité organisateur du congrès sga québec 2017,0 +comment visions,0 +commentarii mathematici helvetici,2 +commentary,1 +commentationes humanarum litterarum,0 +commentationes mathematicae universitatis carolinae,1 +commentationes scientiarum socialium,0 +comments on inorganic chemistry,1 +commercial press,0 +commodities,0 +common ground publishing,0 +common ground research networks,1 +common knowledge,1 +common law world review,1 +common market law review,3 +commons,1 +commons.fi,0 +communiars,0 +communicatio: south african journal for communication theory and research,1 +communication & organisation,0 +communication & society,1 +communication + 1,1 +communication and cognition,1 +communication and critical/cultural studies,1 +communication and democracy,1 +communication and medicine,1 +communication and sport,1 +communication design,0 +communication design quarterly review,0 +communication disorders quarterly,1 +communication education,2 +"communication et langages: presse, television, radio, publicite, edition, graphisme, formation, sociologie",1 +communication law and policy,1 +communication methods and measures,1 +communication monographs,3 +communication quarterly,1 +communication reports,1 +communication research,3 +communication research and practice,1 +communication research reports,1 +communication sciences & disorders,1 +communication studies,1 +communication teacher,1 +communication theory,3 +communication today,1 +"communication, culture and critique",1 +communicationes archeologicae hungariae,1 +communications,1 +communications biology,1 +communications chemistry,1 +communications earth & environment,1 +communications engineering,1 +communications in algebra,1 +communications in analysis and geometry,2 +communications in applied analysis,0 +communications in applied and industrial mathematics,1 +communications in applied mathematics and computational science,1 +communications in asteroseismology,1 +communications in computational physics,1 +communications in computer and information science,1 +communications in contemporary mathematics,1 +communications in information and systems,1 +communications in information science and management engineering,0 +communications in inorganic synthesis,0 +communications in mathematical analysis,1 +communications in mathematical finance,0 +communications in mathematical physics,3 +communications in mathematical sciences,1 +communications in mathematics,1 +communications in nonlinear science and numerical simulation,1 +communications in number theory and physics,1 +communications in partial differential equations,3 +communications in soil science and plant analysis,1 +communications in statistics: simulation and computation,1 +communications in statistics: theory and methods,1 +communications in theoretical physics,1 +communications law,1 +communications materials,1 +communications medicine,1 +communications of the acm,3 +communications of the association for information systems,2 +communications of the ibima,0 +communications of the iima,1 +communications on applied nonlinear analysis,1 +communications on pure and applied analysis,1 +communications on pure and applied mathematics,3 +communications on stochastic analysis,1 +communications physics,2 +communications psychology,1 +communications.,1 +communicative & integrative biology,1 +communicator,0 +communio viatorum,1 +communio: international catholic review,1 +communist and post-communist studies,1 +communitas - soobshestvo,0 +community child care cooperative,0 +community dental health,1 +community dentistry and oral epidemiology,2 +community development,1 +community development journal,1 +community ecology,1 +community mental health journal,1 +community psychology in global perspective,1 +"community, work and family",1 +company lawyer,1 +compar-a-ison: an international journal of comparative literature,1 +comparatist,1 +comparativ,1 +comparative & international higher education,1 +comparative american studies,1 +comparative and continental philosophy,1 +comparative and international law journal of southern africa,1 +comparative biochemistry and physiology a: molecular and integrative physiology,1 +comparative biochemistry and physiology b: biochemistry and molecular biology,1 +comparative biochemistry and physiology c: toxicology and pharmacology,1 +comparative biochemistry and physiology d: genomics and proteomics,1 +comparative civilizations review,1 +comparative clinical pathology,1 +comparative critical studies,1 +comparative cytogenetics,1 +comparative drama,1 +comparative economic studies,1 +comparative education,3 +comparative education review,3 +comparative european politics,1 +comparative exercise physiology,1 +comparative history of literatures in european languages,2 +comparative immunology microbiology and infectious diseases,1 +comparative labor law and policy journal,1 +comparative law review,1 +comparative legal history,2 +comparative legilinguistics,0 +comparative literature,3 +comparative literature studies,3 +comparative medicine,1 +comparative migration studies,1 +comparative oriental manuscript studies bulletin,1 +comparative parasitology,1 +comparative philosophy,1 +comparative political studies,3 +comparative political theory,1 +comparative politics,2 +comparative population studies,1 +comparative social research,1 +comparative sociology,1 +comparative southeast european studies,1 +comparative strategy: an international journal,1 +comparative studies in society and history,3 +compare: a journal of comparative and international education,1 +compatibility in power electronics,0 +compdyn proceedings,0 +compel: the international journal for computation and mathematics in electrical and electronic engineering,1 +compendium,-1 +compendium: continuing education for veterinarians,1 +compensation and benefits review,1 +competition and change: the journal of global business and political economy,1 +competition and regulation in network industries,1 +competition law insight,-1 +competition law review,1 +competition policy international,1 +competitiveness of agro-food and environmental economy,0 +competitiveness review,1 +complementary medicine research,1 +complementary therapies in clinical practice,1 +complementary therapies in medicine,1 +complex & intelligent systems,1 +complex adaptive systems modeling,1 +complex analysis and its synergies,1 +complex analysis and operator theory,1 +complex metals,0 +complex systems informatics and modeling quarterly,1 +complex variables and elliptic equations,1 +complexity,1 +"complexity, governance & networks",1 +compliance,-1 +compliance-berater,-1 +complicity,1 +complutense journal of english studies,1 +composite interfaces,1 +composite structures,2 +composites and advanced materials,1 +composites communications,1 +composites part a: applied science and manufacturing,2 +composites part b: engineering,3 +composites part c : open access,1 +composites science and technology,2 +compositio mathematica,2 +compositionality,1 +compost science and utilization,1 +comprehensive physiology,1 +comprehensive psychiatry,2 +comprehensive psychoneuroendocrinology,1 +comprehensive results in social psychology,1 +comprehensive reviews in food science and food safety,2 +comprehensive therapy,1 +compstat,1 +comptes rendus biologies,1 +comptes rendus chimie,0 +comptes rendus de lacadémie bulgare des sciences,0 +comptes rendus des seances de lacademie des inscriptions et belles-lettres,1 +comptes rendus geoscience,1 +comptes rendus mathematique,1 +comptes rendus mecanique,1 +comptes rendus palevol,1 +comptes rendus physique,1 +computability,1 +computation,1 +computational and applied mathematics,1 +computational and mathematical methods,1 +computational and mathematical methods in medicine,0 +computational and mathematical organization theory,1 +computational and structural biotechnology journal,1 +computational and theoretical chemistry,1 +computational biology and chemistry,1 +computational brain & behavior,1 +computational cognitive science,1 +computational communication research,1 +computational complexity,2 +computational condensed matter,0 +computational culture,1 +computational design and robotic fabrication,1 +computational economics,1 +computational geometry: theory and applications,1 +computational geosciences,1 +computational intelligence,1 +computational linguistics,3 +computational linguistics in the netherlands journal,0 +computational management science,1 +computational materials science,2 +computational mathematics and mathematical physics,1 +computational mathematics and modeling,1 +computational mechanics,1 +computational methods and function theory,1 +computational methods in applied mathematics,1 +computational methods in applied sciences,1 +computational optimization and applications,1 +computational particle mechanics,0 +computational research progress in applied science and engineering,0 +computational science & discovery,1 +computational social networks,1 +computational statistics,1 +computational statistics and data analysis,1 +computational toxicology,1 +computational visual media,1 +computer,2 +computer aided chemical engineering,1 +computer aided geometric design,1 +computer aided surgery,1 +computer aided verification,2 +computer and telecommunications law review,0 +computer animation and virtual worlds,1 +computer applications in engineering education,1 +computer assisted language learning,2 +computer communication review,1 +computer communications,1 +computer fraud and security,1 +computer graphics forum,1 +computer graphics world,1 +computer journal,1 +computer languages systems and structures,1 +computer law & security review,1 +computer law review international,1 +computer methods and programs in biomedicine,1 +computer methods and programs in biomedicine update,-1 +computer methods in applied mechanics and engineering,3 +computer methods in biomechanics and biomedical engineering,1 +computer methods in biomechanics and biomedical engineering : imaging & visualization,1 +computer methods in materials science,0 +computer music journal,3 +computer networks,2 +computer physics communications,1 +computer science and electronic engineering conference,0 +computer science and information systems,1 +computer science and information technology,0 +computer science and telecommunications,1 +computer science education,2 +computer science journal of moldova,0 +computer science research notes,0 +computer science review,1 +computer science: research and development,1 +computer speech and language,2 +computer standards and interfaces,1 +computer supported cooperative work: the journal of collaborative computing,3 +computer systems science and engineering,1 +computer vision and image understanding,2 +computer-aided civil and infrastructure engineering,3 +computer-aided design,2 +computer-aided design and applications,1 +computer-supported collaborative learning,1 +computerized medical imaging and graphics,2 +computerrecht,0 +computers,0 +computers & education : x reality,1 +computers & graphics,1 +computers and chemical engineering,2 +computers and composition,1 +computers and concrete,1 +computers and education,3 +computers and education : artificial intelligence,1 +computers and education open,1 +computers and electrical engineering,1 +computers and electronics in agriculture,2 +computers and fluids,1 +computers and geosciences,1 +computers and geotechnics,2 +computers and industrial engineering,1 +computers and mathematics with applications,1 +computers and operations research,1 +computers and security,2 +computers and society,1 +computers and structures,3 +computers environment and urban systems,2 +computers in biology and medicine,2 +computers in education journal,1 +computers in entertainment,1 +computers in human behavior,3 +computers in human behavior : artificial humans,0 +computers in human behavior reports,1 +computers in industry,2 +computers in the schools,1 +"computers, materials & continua",1 +computing,0 +computing : archives for scientific computing,1 +computing and informatics,1 +computing and software for big science,1 +computing and visualization in science,1 +computing in cardiology,1 +computing in construction,0 +computing in science and engineering,1 +computing reviews,1 +comrec studies on environment and development,0 +comsol,0 +comunicación social ediciones y publicaciones,0 +comunicar,1 +comunicare.ro,0 +comunicazioni sociali,1 +comunicação e sociedade,1 +comunidad de madrid,0 +con texte,0 +con-textos kantianos,1 +conbrio verlagsgesellschaft,1 +concentric : studies in linguistics,1 +concentric-literary and cultural studies,0 +concepts and transformation,1 +concepts in magnetic resonance part a,1 +concepts in magnetic resonance part b: magnetic resonance engineering,1 +concilium medii aevi,1 +concilium: international journal of theology,1 +concordia theological quarterly,1 +concorrenza e mercato,0 +concreta,0 +concrete international,1 +concrete operators,1 +concurrences,1 +concurrency and computation: practice and experience,1 +concurrent engineering: research and applications,0 +concussion,0 +condensed matter,0 +condensed matter physics,1 +conditioning medicine,1 +conference of australian institute of computer ethics,0 +conference of digital games research association,1 +"conference of telecommunication, media and internet techno-economics",0 +conference of the hungarian association for image processing and pattern recognition,0 +conference of the international journal of arts & sciences,0 +conference on cloud and internet of things,1 +conference on control and fault-tolerant systems,0 +conference on design and architectures for signal and image processing,1 +conference on design of circuits and integrated systems,0 +conference on future internet communications,0 +conference on gettering and defect engineering in semiconductor technology,0 +conference on human system interactions,1 +conference on lasers & electro-optics europe & international quantum electronics conference,1 +conference on lasers and electro-optics,0 +conference on metrology for solid state lighting,0 +"conference on micro- and nanotechnology sensors, systems, and applications",0 +conference on new directions in management accounting,0 +conference on performance measurement and management control,0 +conference on software engineering education & training,1 +conference on uncertainty in artificial intelligence,2 +conference proceedings,-1 +conference proceedings (annual kurultai of the endagered cultural heritage),0 +conference proceedings (ethnographic praxis in industry conference),0 +conference proceedings (international conference on advanced semiconductor devices and microsystems),0 +conference proceedings : canadian conference on electrical and computer engineering,0 +conference proceedings : congress on research in dance,0 +conference proceedings : european immersive education summit,0 +conference proceedings : frontiers in education conference,1 +conference proceedings : ieee applied power electronics conference and exposition,1 +"conference proceedings : ieee international conference on networking, sensing and control",1 +conference proceedings : international conference on indium phosphide and related materials,1 +conference proceedings : international conference on migration and diaspora entrepreneurship,0 +conference proceedings : international conference on transparent optical networks,1 +conference proceedings : international conference on unmanned aircraft systems,-1 +conference proceedings : international conference on unmanned aircraft systems,1 +conference proceedings : midwest symposium on circuits and systems,1 +conference proceedings : the future of education,0 +conference proceedings cired,1 +conference proceedings ipec,0 +conference proceedings of the academy for design innovation management,1 +conference proceedings of the european sco2 conference,1 +conference proceedings of the society for experimental mechanics,0 +conference proceedings wpmc,1 +conference record of the ieee photovoltaic specialists conference,1 +conference record of the industry applications society annual meeting,1 +conference transactions - british archaeological association,1 +confero,0 +configurações,0 +configurations,1 +conflict and communication,1 +conflict and health,1 +conflict and society,1 +conflict management and peace science,2 +conflict management institute (university of helsinki),0 +conflict resolution quarterly,1 +"conflict, security and development",1 +confluencia: revista hispanica de cultura y literatura,1 +confluentes mathematici,1 +conformal geometry and dynamics,1 +confrontation,1 +congenital anomalies,1 +congenital heart disease,1 +congreso internacional sobre aplicación de tecnologías de la información y comunicaciones avanzadas,0 +congresso brasileiro de ergonomia,0 +congressus internationalis fenno-ugristarum,1 +congressus numerantium,0 +connaissance des arts,1 +connect: the world of critical care nursing,1 +connection science,1 +connections,1 +connective tissue research,1 +connexe,1 +connexions: international professional communication journal,1 +connotations: a journal for critical debate,1 +conradian,1 +conradiana,1 +consciousness and cognition,2 +consciousness and emotion,1 +"consciousness, literature and the arts",1 +consecutio rerum,1 +conseil international des grands réseaux électriques,1 +consejo superior de investigaciones científicas,1 +consello da cultura galega,0 +conservation and management of archaeological sites,2 +conservation and society,2 +conservation biology,3 +conservation evidence,1 +conservation genetics,1 +conservation genetics resources,1 +conservation letters,3 +conservation of arctic flora and fauna,0 +conservation physiology,1 +conservation science and practice,1 +"conservatoire et jardin botaniques, de la ville de genève",0 +conserveries memorielles,0 +consilience: journal of sustainable development,1 +consortium psychiatricum,1 +conspress,0 +constantinides international workshop on signal processing,0 +constelaciones,1 +constellations: an international journal of critical and democratic theory,1 +constitutional commentary,1 +constitutional law library,1 +constitutional political economy,1 +constraints,1 +construction and building materials,1 +construction economics and building,1 +construction history,1 +"construction innovation: information, process, management",1 +construction law journal,0 +construction management and economics,1 +construction robotics,1 +construction science,0 +constructions,1 +constructions and frames,2 +constructive approximation,2 +constructive mathematical analysis,1 +constructivist foundations,1 +consulta online,1 +consulting psychology journal,1 +consumer behavior in tourism and hospitality,1 +consumption and society,1 +consumption markets and culture,1 +contact,0 +contact dermatitis,2 +contact lens and anterior eye,1 +contagion,0 +contemporanea,0 +contemporanea: rivista di storia dell800 e del 900,1 +contemporary accounting research,3 +contemporary aesthetics,2 +contemporary asia arbitration journal,1 +contemporary british history,2 +contemporary buddhism,2 +contemporary challenges,0 +contemporary clinical trials,1 +contemporary clinical trials communications,1 +contemporary drug problems,1 +contemporary economic policy,1 +contemporary economics,1 +contemporary educational psychology,3 +contemporary educational researches journal,0 +contemporary educational technology,1 +contemporary european history,3 +contemporary european politics,1 +contemporary family therapy,1 +contemporary french and francophone studies,2 +contemporary french civilization,1 +contemporary history fund,1 +contemporary hypnosis & integrative therapy,1 +contemporary islam,1 +contemporary issues in early childhood,2 +contemporary issues in technology and teacher education,1 +contemporary japan,1 +contemporary jewry,1 +"contemporary justice review: issues in criminal, social and restorative justice",1 +contemporary law review,1 +contemporary levant,1 +contemporary literature,3 +contemporary management research,0 +contemporary mathematics,0 +contemporary mathematics,1 +contemporary music review,2 +contemporary nurse,1 +contemporary ob/gyn,1 +contemporary pacific,2 +contemporary philosophies and theories in education,1 +contemporary physics,1 +contemporary political theory,2 +contemporary politics,1 +contemporary pragmatism,1 +contemporary problems of ecology,1 +contemporary psychoanalysis,1 +contemporary readings in law and social justice,1 +contemporary school psychology,1 +contemporary security policy,1 +contemporary social science,1 +contemporary sociology: a journal of reviews,1 +contemporary south asia,2 +contemporary southeast asia,1 +contemporary southeastern europe,1 +contemporary theatre review,3 +contemporary womens writing,1 +contention,1 +contesti,0 +context,0 +contextes et didactiques,0 +contextos,0 +contexts,1 +continental journal of education research,0 +continental philosophy review,3 +continental shelf research,1 +continuity & resilience review,1 +continuity and change,2 +continuity in education,1 +continuous innovation network,1 +continuum,0 +continuum mechanics and thermodynamics,1 +continuum: journal of media and cultural studies,1 +contra narrativas,0 +contraception,1 +contraception x,1 +contracting excellence,-1 +contrastes: revista interdisciplinar de filosofia,1 +contrastive pragmatics,1 +contributions in new world archaeology,1 +contributions of the astronomical observatory skalnaté pleso,1 +contributions of the austrian ludwig wittgenstein society,1 +contributions to indian sociology,2 +contributions to mineralogy and petrology,2 +contributions to music education,1 +contributions to nephrology,1 +contributions to phenomenology,2 +contributions to plasma physics,1 +contributions to political economy,1 +contributions to statistics,1 +contributions to the history of concepts,2 +contributions to zoology,1 +control and cybernetics,1 +control engineering and applied informatics,1 +control engineering practice,2 +control solutions international,1 +control systems conference,0 +control technology and applications,1 +control theory and technology,1 +controlling,0 +controlling & management review,0 +controversies,1 +convention of the electrical and electronics engineers in israel,0 +convergence: the international journal of research into new media technologies,2 +convergencia: revista de ciencias sociales,1 +converging evidence in language and communication research,1 +convergências,1 +conveyancer and property lawyer,1 +convivium,1 +convivium: revista de filosofia,1 +coolabah,1 +cooperatie in planning ua,0 +cooperation and conflict,2 +cooperativa editorial magisterio,0 +cooperativismo & desarrollo,1 +cooperativismo e economía social,0 +coordination chemistry reviews,1 +copd : journal of chronic obstructive pulmonary disease,1 +copenhagen business school,0 +copenhagen business school press,1 +copenhagen journal of asian studies,1 +copenhagen studies in language,1 +copernicus journal of political studies,0 +copernicus publications,1 +coptica,1 +cor et vasa,0 +coral reefs,1 +core,1 +core: conservation et restauration du patrimoine cultural,1 +cork university press,1 +cornea,1 +cornell hospitality quarterly,1 +cornell international law journal,1 +cornell journal of law and public policy,1 +cornell law review,2 +cornell university press,2 +cornell university southeast asia program publications,0 +cornish archaeology,1 +coronary artery disease,1 +coronaviruses,0 +corpora,1 +corpora and language in use,0 +corporación universitaria minuto de dios,0 +corporate and business strategy review,1 +"corporate board: role, duties and composition",1 +corporate communications,1 +corporate governance and sustainability review,1 +corporate governance: an international review,2 +corporate governance: the international journal of business in society,1 +corporate law and governance review,1 +corporate ownership and control,0 +corporate real estate journal,0 +corporate reputation review,1 +corporate social responsibility and environmental management,1 +corpus,1 +corpus linguistics and linguistic theory,3 +corpus linguistics research,1 +corpus mundi,0 +corpus pragmatics,0 +correspondances en mhnd,1 +correspondences : journal for the study of esotericism,1 +corrosion,1 +corrosion and materials degradation,0 +corrosion engineering science and technology,1 +corrosion reviews,1 +corrosion science,3 +corrosion science and technology,0 +cortex,2 +corvinus journal of international affairs,0 +corwin press,1 +cosmetics,0 +cosmic research,1 +cosmos and history: the journal of natural and social philosophy,1 +cosmos: the journal of the traditional cosmology society,0 +cost effectiveness and resource allocation,1 +cost engineering,1 +costituzionalismo.it,1 +costume,1 +cotsen institute of archaeology at ucla,1 +cough,1 +council for creative education,0 +council for international organizations of medical sciences,0 +council of europe,0 +counseling and values,1 +counseling psychologist,1 +counselling and psychotherapy research,1 +counselling psychology quarterly,1 +counselor education and supervision,1 +counterpress,1 +countertext,1 +couple and family psychology,1 +coupled systems mechanics,1 +courriel européen des langues,-1 +court historian,1 +court of conscience,0 +covid,0 +coyote,0 +cp-lehti,-1 +cpem digest,0 +cpt: pharmacometrics and systems pharmacology,1 +cq press,0 +cr: the new centennial review,1 +cracow indological studies,1 +craft research,2 +cranio,1 +craniofacial publications,0 +craniomaxillofacial trauma & reconstruction,1 +craterre,0 +crc press,1 +crearta: the international journal of the education in the arts,1 +creat!vity,0 +createspace,0 +creating leadership,-1 +creative arts in education and therapy,1 +creative education,0 +creative industries journal,1 +creative methods in rehabilitation,0 +creative nursing,1 +creativity and innovation management,1 +creativity research journal,1 +credit and capital markets,1 +cretaceous research,1 +crime and delinquency,2 +crime and justice: a review of research,2 +crime fiction studies,1 +crime law and social change,2 +crime media culture,1 +crime prevention and community safety,1 +crime science,1 +"crime, histoire et sociétés",1 +crimetime,0 +criminal behaviour and mental health,1 +criminal justice and behavior,2 +criminal justice ethics,1 +criminal justice history,1 +criminal justice policy review,1 +criminal justice review,1 +criminal justice studies,1 +criminal law and philosophy,1 +criminal law forum,1 +criminal law journal,1 +criminal law review,2 +criminology,3 +criminology & public policy,1 +criminology and criminal justice,2 +"criminology, criminal justice, law & society",1 +crisis and critique,0 +crisis: the journal of crisis intervention and suicide prevention,1 +crisolenguas,0 +"cristianesimo nella storia: ricerche storiche, esegetiche, teologiche",1 +critica,1 +critica darte,1 +critica del testo,1 +critica hispanica,1 +critica letteraria,1 +critical african studies,1 +critical analysis of law,1 +critical and radical social work,1 +critical approaches to discourse analysis across disciplines,1 +critical arts : a south-north journal of cultural and media studies,1 +critical asian studies,1 +critical care,3 +critical care and resuscitation,1 +critical care clinics,1 +critical care explorations,1 +critical care medicine,2 +critical care nurse,0 +critical care nursing quarterly,1 +critical care research and practice,1 +critical care science,1 +critical criminology,2 +critical discourse studies,2 +critical education,1 +critical finance review,1 +critical gambling studies,1 +critical historical studies,1 +critical horizons,1 +critical housing analysis,1 +critical inquiry,3 +critical inquiry in language studies: an international journal,2 +critical internationalization studies review,0 +critical legal thinking: law & the political,0 +critical literacy: theories and practices,1 +critical military studies,1 +critical multilingualism studies,1 +critical pathways in cardiology,1 +critical perspectives,1 +critical perspectives on accounting,2 +critical perspectives on international business,1 +critical policy studies,2 +critical public health,1 +critical quarterly,3 +critical research on religion,1 +critical review,1 +critical review of international social and political philosophy,2 +critical reviews in analytical chemistry,1 +critical reviews in biochemistry and molecular biology,1 +critical reviews in biomedical engineering,1 +critical reviews in biotechnology,1 +critical reviews in clinical laboratory sciences,1 +critical reviews in environmental science and technology,2 +critical reviews in eukaryotic gene expression,1 +critical reviews in food science and nutrition,2 +critical reviews in immunology,1 +critical reviews in microbiology,1 +critical reviews in oncogenesis,1 +critical reviews in oncology hematology,1 +critical reviews in physical and rehabilitation medicine,1 +critical reviews in plant sciences,1 +critical reviews in solid state and materials sciences,1 +critical reviews in therapeutic drug carrier systems,1 +critical reviews in toxicology,1 +critical romani studies,1 +critical social policy,2 +critical social work,1 +critical sociology,1 +critical stages,1 +critical studies in education,2 +critical studies in fashion & beauty,1 +critical studies in improvisation - etudes critiques en improvisation,1 +critical studies in media communication,1 +critical studies in men´s fashion,1 +critical studies in teaching and learning,0 +critical studies in television,1 +critical studies on security,1 +critical studies on terrorism,1 +"critical studies: a journal of critical theory, literature and culture",1 +critical survey,1 +critical times,1 +criticism: a quarterly for literature and the arts,3 +criticon,1 +critique,2 +critique & humanism,0 +critique of anthropology,2 +critique of political economy,1 +critique: studies in contemporary fiction,2 +crítica penal y poder,1 +crm proceedings and lecture notes,1 +croatian international relations review,1 +croatian journal of forest engineering,1 +croatian journal of philosophy,1 +croatian medical journal,1 +croatian operational research review,0 +"croatian society for communications, computing, electronics, measurement and control",1 +croatian yearbook of european law and policy,1 +croatica chemica acta,0 +croatica et slavica jadertina,1 +cromohs,1 +cronache ercolanesi,1 +cronos,1 +crop and environment,1 +crop and pasture science,1 +crop breeding and applied biotechnology,1 +crop protection,1 +crop research,0 +crop science,1 +crop wild relative,-1 +croquant,0 +cross cultural & strategic management,1 +cross cultural management: an international journal,1 +cross cultural studies : education and science,1 +cross-border review,0 +cross-cultural communication,-1 +cross-cultural communication,0 +cross-cultural research,2 +cross-currents,0 +cross/cultures: readings in the post/colonial literatures in english,1 +crossings,1 +crossroads,1 +"crossroads: an interdisciplinary journal for the study of history, philosophy, religion and classics",1 +crossway,0 +crusades,1 +crustaceana,1 +crux,-1 +cryobiology,1 +cryogenics,1 +cryoletters,1 +cryosphere,3 +crypto law review,0 +cryptogamie algologie,1 +cryptogamie bryologie,1 +cryptogamie mycologie,1 +cryptography,1 +cryptography and communications,1 +cryptologia,1 +crystal growth and design,2 +crystal research and technology,1 +crystallography reports,0 +crystallography reviews,1 +crystals,0 +crystengcomm,1 +crítica contemporánea,1 +crítica y resistencias,0 +csb conference proceedings,1 +csedu,0 +csee journal of power and energy systems,1 +csi international symposium on artificial intelligence and signal processing,0 +csi international symposium on computer architecture and digital systems,1 +csi journal of computing,0 +csid journal of infrastructure development,0 +csiro publishing,1 +csli publications,1 +csli studies in computational inguistics,1 +csrea press,0 +"ctandf: ciencia, tecnologia y futuro",1 +ctrl-z,1 +cts: clinical and translational science,2 +cuadernos americanos,1 +cuadernos constitutucionales de la catedra fadrique furio ceriol,0 +cuadernos de arte de la universidad de granada,1 +cuadernos de desarrollo rural,1 +cuadernos de filología clásica: estudios griegos e indoeuropeos,1 +cuadernos de filología francesa,0 +cuadernos de filología italiana,1 +cuadernos de historia contemporanea,1 +cuadernos de historia del derecho,1 +cuadernos de historia moderna,1 +cuadernos de información y comunicación,0 +cuadernos de investigacion filologica,1 +"cuadernos de musica, artes visuales y artes escenicas",1 +cuadernos de pedagogia,0 +cuadernos de prehistoria y arqueología de la universidad de granada,0 +cuadernos de psicología,0 +cuadernos de turismo,0 +cuadernos del centro de estudios en diseño y comunicación,0 +cuadernos europeos de deusto,0 +cuadernos hispanoamericanos,1 +cuadernos para investigación de la literatura hispanica,1 +cuaj: canadian urological association journal,1 +cuba counterpoints,0 +cuban journal of agricultural science,1 +cuban studies,0 +cubo,1 +cultura neolatina: rivista di filologia romanza,1 +cultura tedesca,0 +cultura y educacion,1 +"cultura, lenguaje y representacion-culture, language and representation",1 +cultura: international journal of philosophy of culture and axiology,1 +cultural analysis: an interdisciplinary forum on folklore and popular culture,2 +cultural and religious studies,0 +cultural and social history,2 +cultural anthropology,3 +cultural critique,1 +cultural diversity and ethnic minority psychology,2 +cultural dynamics,1 +cultural geographies,2 +cultural history,2 +cultural history : kulttuurihistoria,1 +cultural logic: an electronic journal of marxist theory and practice,1 +cultural politics,1 +cultural science,0 +cultural sociology,1 +cultural studies,3 +cultural studies of science education,1 +cultural studies review,1 +cultural studies: critical methodologies,1 +cultural trends,2 +cultural-historical psychology,1 +culture & business,0 +culture & history digital journal,0 +culture and cosmos,0 +culture and dialogue,1 +culture and history,1 +culture and history of the ancient near east,2 +culture and local governance,1 +culture and organization,1 +culture and psychology,2 +culture and religion,1 +culture crossroads,1 +culture et musées,1 +culture health and sexuality,2 +culture machine,1 +culture medicine and psychiatry,1 +culture unbound: journal of current cultural research,1 +"culture, agriculture, food and environment",1 +"culture, education and future",0 +"culture, theory and critique",2 +cultures et conflits,1 +cultus,1 +cultuur: tijdschrift voor etnologie,1 +cumberland academic press,1 +cumulus conference proceedings,0 +cumulus think tank,0 +cuneiform digital library journal,1 +cuneiform monographs,1 +cuporen julkaisuja,-1 +cuporen työpapereita,-1 +cuporen verkkojulkaisuja,-1 +curationis,0 +curator: the museum journal,2 +cureus,0 +curran associates,0 +current,1 +current addiction reports,1 +current allergy and asthma reports,1 +current alternative energy,0 +current alzheimer research,1 +current analytical chemistry,1 +current anesthesiology reports,1 +current anthropology,3 +current applied physics,1 +current atherosclerosis reports,1 +current bioactive compounds,1 +current bioinformatics,1 +current biology,3 +current biotechnology,1 +current cancer drug targets,1 +current cardiology reports,1 +current cardiology reviews,0 +current cardiovascular imaging reports,1 +current cardiovascular risk reports,1 +current catalysis,0 +current chemical biology,1 +current climate change reports,1 +current clinical microbiology reports,0 +current clinical pharmacology,1 +current computer-aided drug design,1 +current developmental disorders reports,1 +current developments in arctic law,-1 +current developments in nutrition,1 +current diabetes reports,1 +current directions in biomedical engineering,1 +current directions in psychological science,2 +current drug delivery,1 +current drug discovery technologies,1 +current drug metabolism,1 +current drug safety,1 +current drug targets,1 +current drug therapy,1 +current environmental health reports,1 +current enzyme inhibition,1 +current eye research,1 +current forestry reports,1 +current gene therapy,1 +current genetic medicine reports,0 +current genetics,1 +current genomics,1 +current geriatrics reports,1 +current gerontology and geriatrics research,1 +current heart failure reports,1 +current hematologic malignancy reports,0 +current herpetology,1 +current history,1 +current hiv research,1 +current hypertension reports,1 +current immunology reviews,0 +current infectious disease reports,1 +current issues in auditing,1 +current issues in comparative education,1 +current issues in education,1 +current issues in language planning,1 +current issues in molecular biology,0 +current issues in personality psychology,0 +current issues in sport science,1 +current issues in tourism,2 +current issues of business and law,1 +current landscape ecology reports,1 +current legal problems,2 +current medical imaging reviews,1 +current medical research and opinion,1 +current medicinal chemistry,1 +current microbiology,1 +current microwave chemistry,1 +current molecular biology reports,0 +current molecular medicine,1 +current molecular pharmacology,1 +current musicology,1 +current nanoscience,1 +current neurology and neuroscience reports,2 +current neuropharmacology,1 +current neurovascular research,1 +current nutrition reports,1 +current obesity reports,1 +current oncology,0 +current oncology reports,1 +current opinion in allergy and clinical immunology,1 +current opinion in anesthesiology,1 +current opinion in behavioral sciences,1 +current opinion in biomedical engineering,1 +current opinion in biotechnology,1 +current opinion in cardiology,1 +current opinion in cell biology,1 +current opinion in chemical biology,1 +current opinion in chemical engineering,1 +current opinion in clinical nutrition and metabolic care,1 +current opinion in colloid and interface science,1 +current opinion in critical care,1 +current opinion in electrochemistry,1 +current opinion in endocrine and metabolic research,1 +"current opinion in endocrinology, diabetes and obesity",1 +current opinion in environmental science & health,1 +current opinion in environmental sustainability,2 +current opinion in food science,1 +current opinion in gastroenterology,1 +current opinion in genetics and development,1 +current opinion in green and sustainable chemistry,0 +current opinion in hematology,1 +current opinion in hiv and aids,0 +current opinion in immunology,1 +current opinion in infectious diseases,1 +current opinion in insect science,1 +current opinion in investigational drugs,1 +current opinion in lipidology,1 +current opinion in microbiology,1 +current opinion in molecular therapeutics,1 +current opinion in nephrology and hypertension,1 +current opinion in neurobiology,1 +current opinion in neurology,1 +current opinion in obstetrics and gynecology,1 +current opinion in oncology,1 +current opinion in ophthalmology,1 +current opinion in organ transplantation,1 +current opinion in otolaryngology and head and neck surgery,1 +current opinion in pediatrics,1 +current opinion in pharmacology,1 +current opinion in physiology,1 +current opinion in plant biology,1 +current opinion in psychiatry,1 +current opinion in psychology,1 +current opinion in pulmonary medicine,1 +current opinion in rheumatology,1 +current opinion in solid state and materials science,2 +current opinion in structural biology,1 +current opinion in supportive and palliative care,0 +current opinion in systems biology,0 +current opinion in toxicology,1 +current opinion in urology,1 +current opinion in virology,1 +current oral health reports,1 +current organic chemistry,1 +current organic synthesis,1 +current orthopaedic practice,1 +current osteoporosis reports,1 +current pain and headache reports,1 +current pediatric research,0 +current pediatric reviews,1 +current perspectives in social theory,1 +current pharmaceutical analysis,1 +current pharmaceutical biotechnology,1 +current pharmaceutical design,1 +current physical chemistry,0 +current physical medicine and rehabilitation reports,0 +current plant biology,1 +current politics and economics of europe,1 +current pollution reports,1 +current problems in cancer,1 +current problems in cardiology,1 +current problems in dermatology,1 +current problems in diagnostic radiology,1 +current problems in pediatric and adolescent health care,1 +current problems in surgery,1 +current protein and peptide science,1 +current proteomics,1 +current protocols,1 +current psychiatry reports,1 +current psychology,1 +"current psychology letters: behaviour, brain and cognition",1 +current radiopharmaceuticals,1 +current research in biotechnology,1 +current research in ecological and social psychology,1 +current research in environmental & applied mycology,1 +current research in environmental sustainability,1 +current research in food science,1 +current research in immunology,0 +current research in microbial sciences,1 +current research in parasitology and vector-borne diseases,0 +current research in physiology,1 +current research in social psychology,1 +current research in structural biology,1 +current research in toxicology,1 +current research in translational medicine,1 +current research journal of social science,0 +current respiratory medicine reviews,1 +current reviews in musculoskeletal medicine,1 +current rheumatology reports,1 +current rheumatology reviews,1 +current robotics reports,1 +current science,1 +current signal transduction therapy,1 +current sleep medicine reports,1 +current sociology,2 +current sports medicine reports,1 +current stem cell research and therapy,1 +"current studies in comparative education, science and technology",0 +current sustainable/renewable energy reports,1 +current swedish archaeology,1 +current therapeutic research: clinical and experimental,1 +current tissue engineering,1 +current topics in catalysis,0 +current topics in developmental biology,1 +current topics in electrochemistry,1 +current topics in genetics,0 +current topics in medicinal chemistry,1 +current topics in membranes,1 +current topics in microbiology and immunology,1 +current topics in nutraceutical research,1 +current translational geriatrics and experimental gerontology reports,1 +current treatment options in allergy,1 +current treatment options in cardiovascular medicine,1 +current treatment options in neurology,1 +current treatment options in oncology,1 +current trends in ophthalmology,0 +current trends in translation teaching and learning e,1 +current tropical medicine reports,1 +current urban studies,0 +current urology reports,1 +current vascular pharmacology,1 +current womens health reviews,1 +current world archaeology,0 +current writing : text and reception in southern africa,1 +current zoology,1 +currents in biblical research,1 +currents in pharmacy teaching and learning,0 +curriculum and teaching,1 +curriculum inquiry,1 +curriculum journal,2 +curriculum matters,1 +curriculum perspectives,1 +curriculum studies in health and physical education,1 +cursiv,1 +curtiss botanical magazine,0 +curved and layered structures,1 +custos e agronegócio,1 +cutaneous and ocular toxicology,1 +cutis,1 +cutra,-1 +cutter business technology journal,0 +cvetnye metally,0 +cvir endovascular,1 +cw3 journal: corvey women writers on the web,1 +cxo academy kirjat,-1 +cyber orient,1 +cyber security and applications,-1 +cyber-physical systems,1 +cybergeo,1 +cybermetrics,1 +"cybernetics and human knowing: a journal of second order cybernetics, autopoiesis and cyber-semiotics",1 +cybernetics and information technologies,1 +cybernetics and physics,0 +cybernetics and systems,1 +cybernetics and systems analysis,1 +cyberpsychology,1 +cyberpsychology behavior and social networking,1 +cybersecurity,1 +cyberspace studies,0 +cyberwatch magazine,-1 +cybium,1 +cyborg and bionic systems,1 +cypriot journal of educational sciences,0 +cyprus human rights law review,0 +cyprus nursing chronicles,0 +cyprus review,1 +cyta: journal of food,1 +cytogenetic and genome research,1 +cytojournal,0 +cytokine,1 +cytokine and growth factor reviews,1 +cytokine x,1 +cytologia,1 +cytology and genetics,1 +cytometry part a,1 +cytometry part b: clinical cytometry,1 +cytopathology,1 +cytoskeleton,1 +cytotechnology,1 +cytotherapy,1 +czech academy of sciences,0 +czech and slovak journal of humanities,0 +czech institute of academic education,0 +czech journal of animal science,1 +czech journal of food sciences,1 +czech journal of genetics and plant breeding,1 +czech mycology,0 +czech polar reports,1 +czech yearbook of public and private international law,1 +czechoslovak mathematical journal,1 +czestochowa university of technology,0 +cálliidlágádus,1 +cátedra villarreal,0 +çedille,1 +d-lib magazine,1 +d.k. print world (p) ltd,0 +d.k. publishers & distributors,0 +d.s. brewer,2 +d?ngwùxué yánji?,0 +daaam international scientific book,1 +daanish books,0 +dacia: revue darcheologie et dhistoire ancienne,1 +dacoromania,1 +dados: revista de ciencias sociais,1 +dae panel,1 +daedalus,2 +dafolo,0 +dagens logistik,-1 +dagens nyheter,-1 +dagstuhl manifestos,0 +dagstuhl reports,0 +daidalos,1 +daigaku kyoiku shuppan,0 +daimon: revista de filosofia,1 +dairy,0 +dairy industries international,1 +dairy science and technology,1 +dairycare cost action fa1308,0 +daizu tampakushitsu kenkyu,0 +dalhousie french studies,1 +dalhousie law journal,1 +dalhousie review,1 +dalloz ip/it,0 +dalnauka,0 +dalton transactions,1 +dance articulated,1 +dance chronicle,2 +dance magazine,0 +dance research,2 +dance research journal,3 +"dance, movement & spiritualities",1 +dancecult: journal of electronic dance music culture,1 +dancing times,0 +dangdai jiaoyu yanjiu jikan,0 +danish foreign policy review,0 +danish medical journal,1 +danish yearbook of musicology,1 +danish yearbook of philosophy,1 +danmarks pædagogiske universitets forlag,1 +danmarks tekniske universitet,0 +dansk musikforskning online,1 +dansk psykologisk forlag,1 +dansk sociologi,1 +dansk sprognævn,0 +dansk teologisk tidsskrift,1 +dansk universitetspædagogisk tidsskrift,0 +danske studier,1 +danske talesprog,1 +dansklærerforeningen,1 +dante füzetek,0 +dante studies,1 +dao: a journal of comparative philosophy,1 +daol: discourse analysis online,1 +daphnis: zeitschrift für mittlere deutsche literatur und kultur der frühen neuzeit,1 +dar al-kitab al-miṣri,1 +darbai ir dienos,0 +darkmatter,1 +darnioji daugiakalbystė,1 +daru-journal of pharmaceutical sciences,0 +darulfunun ilahiyat,1 +das achtzehnte jahrhundert,1 +das argument: zeitschrift für philosophie und sozialwissenschaften,1 +das mittelalter,1 +das wort,1 +das zeichen : zeitschrift fur sprache und kultur gehörloser,1 +data,1 +data & policy,1 +data and information management,1 +data and knowledge engineering,2 +data base for advances in information systems,1 +data compression conference,1 +data envelopment analysis journal,0 +data in brief,1 +data intelligence,1 +data mining and knowledge discovery,3 +data science and engineering,1 +data science for transportation,1 +data science in science,1 +data science journal,1 +data-centric engineering,1 +data-intensive collaboration in science and engineering workshop,0 +database-the journal of biological databases and curation,1 +datakan p'ordzak'nnut'yan ev k'reagitut'yan haykakan handes,0 +datenschutz und datensicherheit,0 +datutop,1 +davidsfonds,0 +davvi girji,1 +dawn,-1 +daya publishing house,0 +daʾrunaʾ,0 +db,-1 +de achttiende eeuw,1 +de boccard,1 +de boeck,0 +de eerste dag,-1 +de ethica,1 +de europa,1 +de facto editora,0 +de gruyter,3 +de gruyter oldenbourg,1 +de gruyter saur,1 +de jure,1 +de luca editori d´arte,1 +de sitter publications,1 +dead sea discoveries,2 +deaf worlds: international journal of deaf studies,1 +deafness and education international,1 +dearquitectura,-1 +death studies,1 +debat supplement,1 +debate terminológico,1 +debater a europa,1 +debats,0 +debrecen university press,0 +decarbon,-1 +decibel new music,0 +decision,1 +decision analysis,1 +decision analytics journal,1 +decision sciences,2 +decision support systems,3 +decisions in economics and finance,1 +decolonization,1 +deep underground science and engineering,1 +deep-sea research part i: oceanographic research papers,1 +deep-sea research part ii: topical studies in oceanography,1 +defect and diffusion forum,1 +defence and peace economics,1 +defence strategic communications,0 +defence studies,1 +defense and security analysis,1 +defense technology,1 +defensor legis,1 +defensor patriae,-1 +degenerative neurological and neuromuscular disease,0 +degres: revue de synthese a orientation semiologique,1 +degrowth journal,0 +"dekoratyviuju ir sodo augalu sortimento, technologiju ir aplinkos optimizavimas",0 +del umbral,0 +dela : oddelek za geografijo filozofske fakultete v ljubljani,1 +delaware journal of corporate law,1 +delectus seminum,-1 +deleuze and guattari studies,1 +delft technical university,0 +delta book world,0 +deltion christianikīs archaiologikīs etaireias,1 +dementia,1 +dementia & neuropsychologia,1 +dementia and geriatric cognitive disorders,1 +dementia and geriatric cognitive disorders extra,1 +demeter,-1 +demeter press,0 +demis : demografičeskie issledovaniâ,0 +democracy & education,1 +democracy and security,1 +democratic theory,1 +democratization,2 +demografičeskoe obozrenie,1 +demographic research,1 +demography,3 +demokraatti,-1 +demokratizatsiya: the journal of post-soviet democratization,2 +demonstratio mathematica,1 +demos,1 +demófilo : revista de cultura tradicional de andalucia,1 +den norske tannlegeforenings tidende,1 +dendrobiology,1 +dendrochronologia,1 +denken ohne geländer,-1 +"denki gakkai rombunshi. a, kiso, zairyō, kyōtsū bumonshi",1 +denki gakkai ronbunshi,0 +denki gakkai ronbunshi. b: denryoku enerugi bumonshi,0 +denkmalpflege,1 +dental and medical problems,1 +dental clinics of north america,0 +dental hypotheses,0 +dental materials,3 +dental materials journal,1 +dental press journal of orthodontics,1 +dental traumatology,1 +dental update,1 +dentistry journal,1 +dentomaxillofacial radiology,1 +denver university law review,1 +departamento de agricultura de la diputación foral de bizkaia,0 +department of agricultural sciences publications (university of helsinki),0 +depression and anxiety,3 +depression research and treatment,1 +der anaesthesist,1 +der bauingenieur,0 +der burger im staat,1 +der deutschunterricht,-1 +der gynäkologe,1 +der mathematikunterricht,1 +"der moderne staat: zeitschrift für public policy, recht und management",1 +der sprachdienst,0 +der tagesspiegel,-1 +derbyshire archaeological journal,1 +derecho animal,1 +derecho pucp,0 +derivatives & financial instruments,0 +dermatitis,1 +dermato-endocrinology,1 +dermatologic clinics,1 +dermatologic surgery,1 +dermatologic therapy,1 +dermatologica sinica,0 +dermatology,1 +dermatology and therapy,0 +dermatology online journal,1 +derrida today,1 +des femmes - antoinette fouque,0 +desafios,0 +desalination,2 +desalination and water treatment,1 +desc,1 +descant,1 +desde el margen,-1 +deshima,0 +design & tecnologia,1 +design 360°,-1 +design and culture,2 +design and technology education: an international journal,1 +design automation for embedded systems,2 +design for health,1 +design issues,3 +design journal,3 +design management institute,0 +design management journal,0 +design management review,1 +design methods,1 +design philosophy papers,1 +design principles and practices,1 +design research quarterly,1 +design research society,1 +design science,1 +design society,1 +design studies,3 +"design, construction, maintenance",0 +designed monomers and polymers,1 +designmuseo,0 +designs,0 +designs codes and cryptography,3 +designs for learning,1 +designskolen kolding,0 +desperta ferro,-1 +destech publications inc.,0 +"destech transactions on social science, education and human science",0 +desy proceedings,0 +det norske videnskaps-akademi,1 +det teologisk fakultet : afdeling for bibelsk eksegese,0 +detay anatolia akademik yayıncılık,0 +detritus,1 +detskie čteniâ,0 +detskij sad,-1 +"deusto, estudios cooperativos",1 +deutsch als fremdsprache,3 +deutsch im kontrast,1 +deutsche bundesbank,0 +deutsche bücher: forum für literatur,1 +deutsche entomologische zeitschrift,1 +deutsche gesellschaft für akustik,0 +deutsche gesellschaft für luft- und raumfahrt - lilienthal-oberth e.v.,0 +deutsche lebensmittel-rundschau,1 +deutsche mathematiker vereinigung: jahresbericht,1 +deutsche medizinische wochenschrift,1 +deutsche orient-gesellschaft,1 +deutsche orient-gesellschaft: mitteilungen,1 +deutsche sprache,2 +deutsche universitäts-verlag,1 +deutsche vierteljahrsschrift für literaturwissenschaft und geistesgeschichte,3 +deutsche zeitschrift für philosophie,1 +deutsche zeitschrift für sportmedizin,1 +deutscher akademischer austauschdienst,0 +deutscher kunstverlag,1 +deutsches archiv für erforschung des mittelalters,2 +deutsches archäologisches institut,1 +deutsches arzteblatt international,1 +deutsches dante-jahrbuch,1 +deutsches jugendinstitut e.v.,0 +deutsches schiffartsarchiv,1 +deutsches ärzteblatt: ausgabe a: ärztliche mitteilungen,1 +deutschunterricht : zeitschrift für erziehungs- und bildungsaufgabe des deutschunterrichts,0 +deutschunterricht für ungarn,0 +developing economies,1 +developing world bioethics,1 +development,1 +development,2 +development and change,3 +development and learning in organizations,0 +development and psychopathology,2 +development dialogue,1 +development genes and evolution,1 +development growth and differentiation,1 +development in practice,1 +development policy review,1 +development southern africa,1 +developmental and comparative immunology,1 +developmental biology,1 +developmental biology journal,1 +developmental cell,3 +developmental cognitive neuroscience,1 +developmental disabilities research reviews,1 +developmental dynamics,1 +developmental medicine and child neurology,3 +developmental neurobiology,1 +developmental neuropsychology,1 +developmental neurorehabilitation,1 +developmental neuroscience,1 +developmental period medicine,0 +developmental psychobiology,1 +developmental psychology,3 +developmental review,3 +developmental science,3 +developments in biologicals,1 +developments in earth surface processes,1 +developments in international law,1 +developments in marketing science : proceedings of the academy of marketing science,0 +developments in paleoenvironmental research,1 +developments in precambrian geology,1 +developments in the built environment,1 +developments in water science,1 +deviance et societe,1 +deviant behavior,1 +device,1 +dewey studies,1 +dgvt verlag,0 +dh lawrence review,1 +dhcommons journal,0 +dia-logos,1 +diabetes,-1 +diabetes,3 +diabetes & metabolic syndrome,1 +diabetes & metabolism journal,1 +diabetes and metabolism,1 +diabetes and vascular disease research,1 +diabetes care,3 +diabetes educator,1 +diabetes epidemiology and management,1 +diabetes ja lääkäri,-1 +diabetes management,0 +diabetes obesity and metabolism,1 +diabetes research and clinical practice,1 +diabetes spectrum,1 +diabetes technology and therapeutics,1 +diabetes therapy,1 +"diabetes, metabolic syndrome and obesity",1 +diabetes/metabolism research and reviews,1 +diabetic medicine,1 +diabetologia,3 +diabetology & metabolic syndrome,1 +diachronica,3 +diaconia: journal for the study of christian social practice,1 +diacritics: a review of contemporary criticism,3 +diacronia,1 +"diacronie, studi di storia contemporanea",1 +diacrítica,1 +diadora,1 +diagnosis,0 +diagnostic and interventional imaging,1 +diagnostic and interventional radiology,1 +diagnostic and prognostic research,1 +diagnostic and therapeutic endoscopy,1 +diagnostic cytopathology,1 +diagnostic histopathology,0 +diagnostic microbiology and infectious disease,1 +diagnostic molecular pathology,1 +diagnostic pathology,1 +diagnostica,1 +diagnostics,0 +diagnostika,0 +diak opetus,-1 +diak publications,-1 +diak publications,0 +diak puheenvuoro,-1 +diak tutkimus,-1 +diak työelämä,-1 +diak vuosikirja,-1 +diakonia+,-1 +diakonia-ammattikorkeakoulu,0 +diakonian tutkimus,1 +dialectic,0 +dialectica,2 +dialectical anthropology,2 +dialectologia,1 +dialectologia et geolinguistica,1 +dialog,-1 +dialog: a journal of theology,1 +dialogi,-1 +dialogic pedagogy,1 +dialogo,1 +dialogo andino,0 +dialogos förlag,1 +dialogue,1 +dialogue and discourse,1 +dialogue and universalism,1 +dialogue in praxis: a social work international journal,1 +dialogue society,0 +dialogue: canadian philosophical review,1 +dialogues d'histoire ancienne,1 +dialogues francophones,1 +dialogues in health,0 +dialogues in human geography,2 +"dialogues in philosophy, mental and neuro sciences",1 +dialogues in sociology,0 +dialogues on digital society,-1 +dialogul slaviştilor la începutul secolului al xxi-lea,0 +dialysis and transplantation,1 +diamina,-1 +diamond and related materials,1 +diamond congress ltd,0 +diamond light source ltd,0 +dianji yu kongzhi xuebao,0 +dianli jianshe,0 +dianzi xuebao,0 +diaphanes ag,0 +diaspora studies,1 +"diaspora, indigenous and minority education",1 +diaspora: a journal of transnational studies,2 +"diasporas, histoire et sociétés",1 +diaspory: nezavisimyj nauchnyj zhurnal,1 +diasteema,-1 +diatom research,1 +diavlos,1 +dichtung-digital,1 +diciottesimo secolo,1 +dickens quarterly,1 +dickens studies annual,1 +dickensian,1 +dictionaries: journal of the dictionary society of north america,1 +dictionary of literary biography,1 +didacta varia (helsingin yliopisto. opettajankoulutuslaitos),0 +didacticae,0 +didactique du fles,0 +didakt kiadó,0 +didaktik der physik,0 +didaktisk tidskrift,0 +didaskalia ton fysikon epistimon : ereuna kai praxi,1 +didaskalia: ancient theater today,1 +diderot studies,1 +didrichsenin taidemuseo,0 +didrichsenin taidemuseon julkaisu,-1 +didymos-verlag,0 +didáctica geográfica,0 +die,1 +die betriebswirtschaft,0 +die casting engineer,1 +die deutsche schule,1 +die friedens-warte,1 +die laute: jahrbuch der deutschen lautengesellschaft,1 +die neue sammlung,0 +die pathologie,0 +die philosophin,1 +die unterrichtspraxis / teaching german,1 +die verwaltung: zeitschrift für verwaltungsrecht und verwaltungswissenschaften,1 +die vogelwelt,0 +die volkswirtschaft,-1 +die welt der slaven: halbjahresschrift fur slavistik,2 +die welt des islams,2 +die welt des orients,1 +die weltwoche,-1 +die zeit,-1 +diedut,1 +diegesis,1 +dielheimer blätter zum alten testament und seiner rezeption in der alten kirche,1 +diesel progress north american edition,1 +dietetics,0 +diethnes panepistimio tis ellados,0 +differences: a journal of feminist cultural studies,3 +differencialʹnye uravneniâ i processy upravleniâ,1 +differential and integral equations,1 +differential equations,1 +differential equations and applications,1 +differential equations and dynamical systems: an international journal for theory and applications,1 +differential geometry and its applications,1 +differential geometry: dynamical systems,1 +differentiation,1 +diffusion foundations,1 +diffusion fundamentals,1 +digest : journal of diversity and gender studies,1 +digest journal of nanomaterials and biostructures,1 +digest of technical papers (society for information display),0 +digest of technical papers : symposium on vlsi technology,1 +digest of the ieee antennas and propagation society international symposium,1 +digest of the leos summer topical meetings,1 +digestion,1 +digestive and liver disease,1 +digestive diseases,1 +digestive diseases and sciences,1 +digestive endoscopy,1 +digestive surgery,1 +digibarometri,-1 +digicopy fecem,0 +digipolis magazine,-1 +digital age in semiotics & communication,0 +digital applications in archaeology and cultural heritage,1 +digital biomarkers,1 +digital business,1 +digital chemical engineering,1 +digital communications and networks,1 +digital creativity,2 +digital culture & education,1 +digital culture & society,1 +digital defoe,0 +digital discovery,1 +digital economy and sustainable development,0 +digital education review,0 +digital enlightenment studies,-1 +digital evidence and electronic signature law review,1 +digital experiences in mathematics education,1 +digital formations,1 +digital geography and society,1 +digital government,1 +digital handbook of the history of experience,0 +digital health,1 +digital humanities in the nordic and baltic countries publications,1 +digital humanities quarterly,1 +digital icons,1 +digital journalism,3 +digital medievalist,1 +digital philology,1 +"digital policy, regulation and governance",1 +digital presentation and preservation of cultural and scientific heritage,0 +digital psychiatry,1 +digital scholarship in the humanities,2 +digital signal processing,1 +digital society,1 +digital studies,2 +digital transformation and society,1 +digital tv europe,1 +digital war,1 +digithum,1 +dignity,1 +diid,1 +dijiteol yesul gonghak meoltimidieo nonmunji,0 +dike,1 +dike verlag,1 +dil eğitimi ve araştırmaları dergisi,1 +dili kexue jinzhan,0 +dimecc publications series,-1 +dimensio,0 +dimensions - journal of architectural knowledge,1 +din : religionsvitenskapelig tidsskrift,1 +din ve bilim muş alparslan üniversitesi i̇slami i̇limler fakültesi dergisi,1 +dinamičeskie sistemy,0 +dino,-1 +dio press,0 +diogenes,1 +dionysius,1 +diotime,0 +diplomacy and statecraft,1 +diplomatic history,2 +diplomatic studies,1 +diplomatica,1 +diplomatische akademie wien,0 +dipterists digest,-1 +diqiu huaxue,1 +direktor shkoly,0 +diritto & diritti,0 +diritto e giustizia,1 +diritto penale e processo,1 +diritto pubblico,1 +disabilities,0 +disability and health journal,1 +disability and rehabilitation,1 +disability and rehabilitation: assistive technology,1 +disability and society,2 +disability studies quarterly,1 +disaster advances,0 +disaster medicine and public health preparedness,1 +disaster prevention and management,1 +disasters,2 +discern,0 +disciplinary and interdisciplinary science education research,1 +discipline filosofiche,1 +discours social: analyse du discours et sociocritique des textes,1 +"discours: revue de linguistique, psycholinguistique et informatique",1 +discourse and communication,2 +discourse and communication for sustainable education,1 +discourse and society,2 +"discourse approaches to politics, society and culture",1 +discourse processes,2 +discourse studies,3 +"discourse, context and media",3 +discourse: journal for theoretical studies in media and culture,1 +discourse: studies in the cultural politics of education,2 +discourses in dance,1 +discover analytics,1 +discover animals,-1 +discover applied sciences,1 +discover artificial intelligence,1 +discover civil engineering,1 +discover computing,3 +discover education,0 +discover energy,-1 +discover environment,-1 +discover food,1 +discover geoscience,1 +discover internet of things,-1 +discover mechanical engineering,1 +discover mental health,1 +discover nano,1 +discover oncology,0 +discover psychology,0 +discover public health,1 +discover social science and health,-1 +discover sustainability,1 +discover water,1 +discoveries in agriculture and food sciences,0 +discovery immunology,0 +discovery medicine,1 +discrete analysis,2 +discrete and computational geometry,2 +discrete and continuous dynamical systems: series a,1 +discrete and continuous dynamical systems: series b,1 +discrete and continuous dynamical systems: series s,1 +discrete applied mathematics,2 +discrete dynamics in nature and society,1 +discrete event dynamic systems: theory and applications,1 +discrete mathematics,1 +discrete mathematics and theoretical computer science,1 +"discrete mathematics, algorithms, and applications",1 +discrete optimization,1 +discusiones filosóficas,1 +discussion paper,-1 +discussion paper (population europe),0 +discussion papers,-1 +discussiones mathematicae : general algebra and applications,1 +discussiones mathematicae graph theory,1 +discussiones mathematicae: probability and statistics,1 +disease models and mechanisms,2 +diseases,0 +diseases of aquatic organisms,1 +diseases of the colon and rectum,1 +diseases of the esophagus,1 +disegnare con,-1 +disegnare idee immagini,1 +disegno,1 +disertaciones,1 +diseña,1 +diskurs,0 +diskus: the on-disk journal of international religious studies,1 +diskussion musikpaedagogik,1 +diskussionspapier,0 +diskussionspapiere - deutsches institut für wirtschaftsforschung,0 +dislocations in solids,1 +disp,1 +disparidades,1 +displays,1 +disputatio,1 +disputatio philosophica,1 +dispute,0 +dispute resolution studies review,0 +dissent,1 +disserta verlag,0 +dissertationes forestales,0 +dissertationes mathematicae,1 +dissolution technologies,1 +distance education,1 +distinktion,1 +distributed and parallel databases,1 +distributed computing,2 +distributed generation and alternative energy journal,0 +dituria,0 +divan,-1 +diverscité langues,0 +diversite,0 +diversity,0 +diversity and distributions,2 +diversity and equality in health and care,-1 +diving and hyperbaric medicine,1 +dix-huitieme siecle,1 +dix-neuf,1 +"diy, alternative cultures & society",1 +dizhi xuebao,0 +diálogo com a economia criativa,0 +diálogo de la lengua,1 +diálogos,1 +djøf,1 +dkv - deutscher kälte- und klimatechnischer verein,1 +dlz primus schwein,0 +dm disease-a-month,1 +dmitrii bulanin,1 +dna and cell biology,1 +dna repair,1 +dna research,1 +dobras,1 +docendo,0 +docmus-tohtorikoulun julkaisuja,1 +docomomo international,0 +docomomo journal,0 +docpoint,-1 +"doctoral conference on computing, electrical and industrial systems",0 +document design companion series,1 +document numerique,1 +documenta archaeobiologiae,1 +documenta mathematica,2 +documenta ophthalmologica,1 +documenta praehistorica,1 +documenta: tijdschrift voor theater,1 +documenti e studi sulla tradizione filosofica medievale,1 +documenti geografici,-1 +documentos de traballo. geography young scholars,0 +documents d analisi geografica,1 +documents d archeologie meridionale,1 +documents of the evangelical lutheran church of finland,1 +documents pour l'histoire du français langue étrangère ou seconde,1 +dohnanyi evkönyv,1 +doklady akademii nauk : rossijskaâ akademiâ nauk,0 +doklady biochemistry and biophysics,0 +doklady chemistry,0 +doklady earth sciences,1 +doklady mathematics,1 +doklady nacionalʹnoj akademii nauk belarusi,0 +doklady physical chemistry,0 +doklady physics,1 +doklady. biological sciences,0 +dokumentation från fakulteten för pedagogik och välfärdsstudier,-1 +dokumente,0 +dokuz eylül university,0 +dokuz eylül üniversitesi i̇şletme fakültesi dergisi,0 +dolomites research notes on approximation,0 +dom štampe,1 +domestic animal endocrinology,1 +domuzīme,-1 +donald school journal of ultrasound in obstetrics and gynecology,0 +donzelli editore,0 +doppiavoce,0 +dora yayıncılık,0 +dose-response,1 +dosis,1 +dossier de droit europeen,0 +dossiers forum transregionale studien,0 +dostoevsky studies,1 +dotawo,0 +douleur et analgesie,1 +dovenschmidt quaterly,0 +down beat,0 +doxa: cuadernos de filosofia y derecho,1 +dpce online,1 +dqr studies in literature,1 +dr. a.j. denkena verlag,1 +dr. manisha basumondal,1 +dragtjournalen,-1 +drama research,1 +drama: nordisk dramapedagogisk tidsskrift,1 +drammaturgia,1 +dreaming,1 +dress,1 +drevnyaya rus : voprosy medievistiki,1 +drewno,0 +dreyers,0 +drinking water engineering and science,1 +droit de lenvironnement,0 +drone systems and applications,0 +drones,0 +droplet,1 +droste verlag,1 +droz,2 +druck-zuck,0 +druckverlag kettler,0 +drug and alcohol dependence,2 +drug and alcohol review,1 +drug and chemical toxicology,1 +drug and therapeutics bulletin,1 +drug delivery,1 +drug delivery and translational research,1 +drug design development and therapy,0 +drug development and industrial pharmacy,1 +drug development research,1 +drug discovery today,2 +drug discovery today: disease mechanisms,1 +drug discovery today: disease models,1 +drug discovery today: technologies,1 +drug discovery today: therapeutic strategies,1 +drug metabolism and bioanalysis letters,1 +drug metabolism and disposition,2 +drug metabolism and personalized therapy,1 +drug metabolism and pharmacokinetics,1 +drug metabolism reviews,1 +drug news and perspectives,1 +drug resistance updates,2 +drug safety,1 +drug safety : case reports,0 +drug testing and analysis,1 +"drug, healthcare and patient safety",1 +drugs,2 +drugs - real world outcomes,1 +drugs and aging,1 +drugs and cell therapies in hematology,0 +drugs and therapy perspectives,1 +drugs of the future,1 +drugs of today,1 +"drugs, habits and social policy",1 +drugs-education prevention and policy,1 +drustvena istrazivanja,1 +družestvo na rusistite v bulgaria,0 +družina,-1 +drvna industrija,1 +drying technology,1 +ds : derecho y salud,0 +dsm technical publications,1 +du,1 +du bois review,1 +dual eye-tracking workshop,0 +dublin city university,0 +dublin institute for advanced studies,0 +dublin university law journal,1 +duckworth,1 +duculot,1 +duke environmental law and policy forum,1 +duke journal of comparative and international law,1 +duke journal of gender law and policy,1 +duke law journal,2 +duke mathematical journal,3 +duke university press,2 +dumbarton oaks,1 +dumbarton oaks papers,2 +duncker & humblot,1 +dunedin academic press,1 +dunod editeur,1 +duodecim,1 +duquesne university press,1 +durability and damage tolerance of composite materials and structures,1 +durham middle east papers,-1 +dutch crossing: a journal of low countries studies,1 +dutch journal for music theory,1 +dutch journal of applied linguistics,1 +dutkansearvvi dieđalaš áigečála,1 +dve domovini-two homelands,1 +dvs-berichte,0 +dvt: dejiny ved a techniky,1 +dvv media group gmbh,0 +dwi-jahrbuch,0 +dyes and pigments,1 +dykinson,0 +dynamic games and applications,1 +dynamic interpretations of the past,-1 +dynamic systems and applications,0 +dynamical systems: an international journal,1 +dynamics of asymmetric conflict,1 +dynamics of atmospheres and oceans,1 +"dynamics of continuous, discrete and impulsive systems series a: mathematical analysis",1 +dynamics of partial differential equations,1 +dynamis,1 +dyskursy młodych andragogów,1 +dyskursy o kulturze,0 +dyslexia,2 +dysphagia,2 +dzieje najnowsze,1 +dálný východ,0 +dìqiú xìnxī kēxué,0 +düsseldorf university press,1 +dějiny-teorie-kritika,1 +e & fn spon,1 +e&d ltd,0 +e+m : ekonomie a management,0 +e-beratungsjournal,1 +e-competitions,0 +e-conservation journal,0 +e-conservation magazine,0 +e-flux journal,-1 +e-health telecommunication systems and networks,0 +e-informatica,1 +e-international journal of educational research,0 +e-international relations,0 +e-international relations,1 +e-journal cigr,1 +e-journal for translingual discourse in ethnomusicology,0 +e-journal of applied psychology,1 +e-journal of nondestructive testing,0 +e-journal of portuguese history,1 +e-journal of surface science and nanotechnology,1 +e-journall,1 +e-l@tina,1 +e-learning and digital media,1 +e-learning and education,1 +e-learning papers,1 +e-legal : revue de la faculté de droit et de criminologie de l'université libre de bruxelles,0 +e-logos: electronic journal for philosophy,1 +e-polymers,1 +e-preservation science,1 +"e-prime : advances in electrical engineering, electronics and energy",1 +e-rea,0 +e-review of tourism research,0 +e-service journal,1 +e-water,0 +e. schweizerbartsche verlagsbuchhandlung,1 +e3s web of conferences,1 +e`kolit,0 +e`kon-inform,0 +eai endorsed transactions on artificial intelligence and robotics,1 +eai endorsed transactions on cognitive communications,0 +eai endorsed transactions on creative technologies,1 +eai endorsed transactions on future intelligent educational environments,0 +eai endorsed transactions on pervasive health and technology,0 +eai endorsed transactions on serious games,0 +eai endorsed transactions on smart cities,0 +eai endorsed transactions on wireless spectrum,0 +eai international conference on testbeds and research infrastructures for the development of networks & communities,0 +eai publishing,0 +eai/springer innovations in communication and computing,0 +eaie forum,-1 +ealthy magazine,-1 +eandmj: engineering and mining journal,1 +eapril conference proceedings,1 +ear and hearing,3 +ear se l newsletter,0 +early american literature,2 +early american studies: an interdisciplinary journal,1 +early child development and care,1 +early childhood education journal,1 +early childhood research and practice,1 +early childhood research quarterly,2 +early china,1 +early christianity,2 +early education,1 +early education and development,1 +early human development,1 +early intervention in psychiatry,1 +early keyboard journal,1 +early medieval china,1 +early medieval europe,3 +early modern and modern studies,1 +early modern culture online,0 +early modern history : society and culture,3 +early modern literary studies,1 +early modern morals excerpts,0 +early modern women: an interdisciplinary journal,1 +early music,2 +early music history,3 +early popular visual culture,1 +early science and medicine,1 +early theatre,1 +early years: an international research journal,1 +earsel eproceedings,1 +earth,0 +earth and environmental science transactions of the royal society of edinburgh,1 +earth and planetary physics,1 +earth and planetary science letters,3 +earth and space science,1 +earth interactions,1 +earth moon and planets,1 +earth planets and space,1 +earth science informatics,1 +"earth science, systems and society",1 +earth sciences history,1 +earth sciences research journal,1 +earth stewardship,-1 +earth surface dynamics,2 +earth surface processes and landforms,2 +earth system dynamics,1 +earth system governance,1 +earth system science data,2 +earth systems and environment,1 +earth's future,2 +earth-science reviews,3 +earth`s cryosphere,0 +earthquake engineering and engineering vibration,1 +earthquake engineering and structural dynamics,2 +earthquake science,1 +earthquake spectra,1 +earthquakes and structures,1 +earthscan,1 +easst review,-1 +east african journal of peace and human rights,0 +east african journal of public health,1 +east african researcher,0 +east and west,1 +east asia,1 +east asia forum,-1 +east asia forum quarterly,0 +east asian history,1 +east asian journal of philosophy,1 +east asian pragmatics,1 +"east asian science, technology and society",1 +"east asian science, technology, and medicine",1 +east china normal university press,0 +east european jewish affairs,1 +east european journal of psycholinguistics,1 +east european memory studies,0 +east european politics,2 +east european politics and societies,2 +east european quarterly,1 +"east, west",1 +east-west books,0 +east-west journal of mathematics,1 +east-west studies,1 +eastern africa social science research review,1 +eastern anthropologist,0 +eastern buddhist,1 +eastern european business and economics journal,0 +eastern european countryside,1 +eastern european economics,1 +eastern european holocaust studies,0 +eastern journal of european studies,0 +eastern mediterranean health journal,1 +eastern-european journal of enterprise technologies,0 +easychair proceedings in computing,0 +eating and weight disorders: studies on anorexia bulimia and obesity,1 +eating behaviors,1 +eating disorders,1 +eb-verlag,1 +ebapebr cadernos,0 +ebib: elektroniczny biuletyn informacyjny bibliotekarzy,1 +ebiomedicine,1 +ebsco bulletin of serials changes,1 +eburon,1 +ec tax review,2 +ec2e2n newsletter,-1 +ecaade,1 +ecaade proceedings,0 +ecancermedicalscience,1 +ecb legal conference,0 +ecclesia orans: periodica de scientiis liturgicis,1 +ecclesial practices,1 +ecclesiastical law journal,1 +ecclesiology,1 +eceee industrial summer study proceedings,0 +eceee summer study proceedings,0 +echelle-1,0 +echo,1 +echo research and practice,1 +echocardiography: a journal of cardiovascular ultrasound and allied techniques,1 +eciperu,0 +ecletica quimica,0 +eclettica edizioni,0 +eclinicalmedicine,1 +ecloga,1 +eclr: european competition law review,2 +ecnu review of education,1 +eco mont-journal on protected mountain areas research,0 +eco-environment & health,1 +eco-ethica,1 +eco-innovation observatory,0 +ecocene : cappadocia journal of environmental humanities,1 +ecofeminism and climate change,1 +ecography,3 +ecohealth,1 +ecohydrology,1 +ecohydrology & hydrobiology,1 +ecole centrale de nantes,-1 +ecole d'architecture de grenoble,0 +ecole française de rome,1 +ecologia en bolivia,0 +ecologia politica,0 +ecologica montenegrina,1 +ecological and environmental anthropology,1 +ecological applications,2 +ecological chemistry and engineering s-chemia i inzynieria ekologiczna s,1 +ecological complexity,1 +ecological economics,2 +ecological engineering,1 +ecological entomology,2 +ecological indicators,1 +ecological informatics,1 +ecological management and restoration,1 +ecological modelling,1 +ecological monographs,3 +ecological parasitology and immunology,0 +ecological processes,1 +ecological psychology,1 +ecological questions,0 +ecological research,1 +ecological solutions and evidence,1 +ecologies,0 +ecology,3 +ecology and evolution,1 +ecology and society,1 +ecology law quarterly,1 +ecology letters,3 +ecology of food and nutrition,1 +ecology of freshwater fish,1 +ecomat,1 +econ journal watch,1 +econometric reviews,2 +econometric theory,2 +econometrica,3 +econometrics,0 +econometrics and statistics,1 +econometrics journal,2 +economia agro-alimentare,1 +economia della cultura,0 +economia e politica,-1 +economia e politica industriale,1 +economia industrial,0 +economia internazionale,0 +economia politica,0 +economia pubblica,0 +economia. seria management,0 +economic affairs,1 +economic analysis and policy,1 +economic and industrial democracy,1 +economic and labour relations review,1 +economic and political studies,1 +economic and political weekly,1 +"economic and social changes: facts, trends, forecast",0 +economic and social development,0 +economic and social review,1 +economic botany,1 +economic change and restructuring,1 +economic computation and economic cybernetics studies and research,1 +economic development and cultural change,2 +economic development quarterly,1 +economic geography,3 +economic geology,2 +economic history of developing regions,2 +economic history review,3 +economic inquiry,2 +economic issues,1 +economic journal,3 +economic modelling,1 +economic notes,1 +economic policy,2 +economic problems of tourism,0 +economic record,1 +economic sociology: the european electronic newsletter,1 +economic systems,1 +economic systems research,1 +economic theory,2 +economic theory bulletin,1 +economic thought,1 +economica,1 +economica,2 +economics,1 +economics & education,0 +economics and business letters,1 +economics and culture,0 +economics and finance review,0 +economics and human biology,1 +economics and management,0 +economics and philosophy,2 +economics and policy of energy and the environment,0 +economics and politics,1 +economics and sociology,1 +economics bulletin,1 +economics letters,1 +economics of disasters and climate change,1 +economics of education review,2 +economics of energy and environmental policy,1 +economics of governance,1 +economics of innovation and new technology,1 +economics of transition and institutional change,1 +economics of transportation,0 +economie et statistique,1 +economies,0 +economist-netherlands,1 +economy and society,1 +econpol forum,0 +econtent,1 +ecopsychology,1 +ecosal plus,0 +ecoscience,1 +ecosistemas,-1 +ecosphere,1 +ecosystem health and sustainability,1 +ecosystem services,2 +ecosystems,2 +ecosystems and people,1 +ecotoxicology,1 +ecotoxicology and environmental safety,2 +ecotropica,1 +ecozon@,1 +ecpr press,1 +"ecps, journal of educational, cultural and psychological studies",1 +ecs journal of solid state science and technology,1 +ecs sensors plus,1 +ecs solid state letters,0 +ecs transactions,0 +ecti transactions,1 +ecti transactions on computer and information technology,1 +ecumenical review,1 +edamba journal,0 +edda,3 +eddy.se ab,0 +ediciones abya-yala,0 +ediciones ampersand,0 +ediciones asimétricas,0 +ediciones casa verde,1 +ediciones del orto,0 +ediciones el almendro de córdoba,1 +"ediciones eunate, s.a.",1 +ediciones godot,0 +ediciones morata,0 +ediciones universidad de navarra sa,1 +ediciones universidad de salamanca,0 +ediciones universitarias de valparaiso,1 +ediciones uo,0 +edicions de la universitat de lleida,0 +edifir - edizioni,1 +edify,0 +edilex,1 +edinburgh journal of botany,1 +edinburgh law review,1 +edinburgh napier university,0 +edinburgh university press,2 +edipuglia,0 +edisai,0 +edistys : analyysi,-1 +edit taidemedia,-1 +edita,1 +edith stein jahrbuch,0 +edith wharton review,1 +editio: internationales jahrbuch fur editionswissenschaft,1 +edition,0 +edition donau-universität krems,0 +edition kirchhof & franke,1 +edition leipzig,0 +edition lumière,1 +edition patrick frey,0 +edition sigma,1 +edition text + kritik,2 +edition vulpes,0 +editiones scholasticae,1 +editions a. pedone,0 +editions averbode erasm,0 +editions dalloz,1 +editions de laube,0 +editions du centre pompidou,1 +editions du cerf,1 +editions du cipa,0 +editions fedora,0 +editions jerome millon,1 +editions latomus,0 +editions mergoil,0 +editions universitaires de dijon,0 +editora artemis,0 +editora campus,1 +editora científica digital,0 +editora contracorrente,0 +editora crv,0 +editora d'plácido,0 +editora da furg,0 +editora da universidade federal de minas gerais,0 +editora da universidade federal de uberlândia,1 +editora inovar,0 +editora intersaberes,0 +editora kelps,0 +editora milfontes,0 +editora poisson,0 +editora prismas,0 +editora sinodal,0 +editora telha,0 +editora ufjf,0 +editora ufpr,0 +editora ufrj,0 +editora via verita,0 +editorial académica española,0 +"editorial agrícola española, s.a.",0 +editorial aluvión,0 +editorial aranzadi,0 +editorial aresta,1 +editorial caminho,1 +editorial comares,1 +editorial cujae,0 +editorial de la facultad de filosofía y letras universidad de buenos aires,0 +editorial de la universidad de costa rica,0 +editorial de la universitat politècnica de valència,0 +editorial digital sa,0 +editorial doble j,1 +editorial el manual moderno,1 +editorial estampa,1 +editorial fontamara,0 +editorial graó,0 +editorial gredos,1 +editorial hypermedia,0 +editorial la muralla,0 +editorial reus,0 +editorial sindéresis,1 +editorial tirant lo blanch,0 +editorial trillas,1 +editorial universidad de alcalá,0 +editorial universidad de antioquia,1 +editorial universidad de caldas,0 +editorial universidad de granada,0 +editorial universidad de sevilla,1 +editorial universidad del rosario,0 +editorial universidad francisco de vitoria,0 +editorial universidad icesi,1 +editorial uoc,0 +editorial verbo,1 +editorial verbo divino,0 +editoriale scientifica,1 +editreg,0 +editrice morcelliana,0 +editura academiei române,0 +editura cetatea de scaun,0 +editura institutului pentru studierea problemelor minorităţilor naţionale,0 +editura polirom,1 +editura politehnica,0 +editura u.t. press,0 +editura universitaria,0 +editura universitatii al. i. cuza,0 +editura universităţii din bucureşti,0 +editura universtitãtii transilvania din brasov,0 +edizioni ca' foscari - digital publishing,1 +edizioni cuecm,0 +edizioni della normale,1 +edizioni dell´orso,1 +edizioni di archilet,0 +edizioni di pagina,1 +edizioni di storia e letteratura,0 +edizioni efesto,0 +edizioni erickson,1 +edizioni magma,0 +edizioni nuova cultura,0 +edizioni orientalia christiana,0 +edizioni pantarei,0 +edizioni plus pisa university press,1 +edizioni unicopli,1 +edizioni università di trieste,0 +edições afrontamento,0 +edições colibri,1 +edições cosmos,1 +edições húmus,0 +edições levana,0 +edições pedago,0 +edições universitárias lusófonas : biblioteca,-1 +edp sciences,1 +edu@kcja,0 +eduardo oliva,0 +eduardo tomé,0 +educacio quimica,0 +educacion xx1,1 +educació social,0 +educación,0 +educación editora,0 +educación física y ciencia,0 +educación química,0 +"educação, sociedade & culturas",-1 +educar,1 +educare,0 +educare,1 +educating the young child,1 +educatio,0 +education,0 +education 3-13,1 +education and culture,1 +education and health,1 +education and information technologies,1 +education and new developments,1 +education and social theory,3 +education and society,1 +education and society in the middle ages and renaissance,1 +education and the law,1 +education and training,1 +education and training in autism and developmental disabilities,1 +education and treatment of children,1 +education and urban society,1 +education as change,1 +education comparée,0 +education dialogue,1 +education economics,1 +education et societes,1 +education finance and policy,2 +education for chemical engineers,1 +education for entrepreneurship : e4e,0 +education for health,1 +education for information,1 +education for primary care,1 +education in chemistry,1 +education in medicine journal,0 +education in the knowledge society,0 +education in the north,1 +education inquiry,1 +education law journal,0 +education next,1 +education policy analysis archives,1 +education reform journal,1 +education research and perspectives,1 +education sciences,0 +education sciences and psychology,0 +"education, citizenship and social justice",1 +educational action research,1 +educational administration quarterly,3 +educational alternatives,0 +educational and child psychology,1 +educational and psychological measurement,2 +educational and vocational guidance,1 +educational assessment,1 +"educational assessment, evaluation and accountability",1 +educational design research,1 +educational evaluation and policy analysis,3 +educational forum,1 +educational gerontology,1 +educational leadership,1 +educational linguistics,0 +educational management administration and leadership,2 +"educational measurement, issues and practice",1 +educational philosophy and theory,1 +educational policy,2 +educational practice and theory,1 +educational process : international journal,1 +educational psychologist,3 +educational psychology,2 +educational psychology in practice,1 +educational psychology review,2 +educational research,0 +educational research,2 +educational research and evaluation,1 +educational research and reviews,0 +educational research for policy and practice,1 +educational research quarterly,1 +educational research review,3 +educational researcher,3 +educational review,2 +educational studies,1 +educational studies in mathematics,3 +educational technology and society,2 +educational technology research and development,2 +educational theory,2 +educationia confab,0 +educator,-1 +educazione linguistica language education,-1 +educação,0 +educação e pesquisa,1 +educação gráfica,1 +educere et educare,0 +educitec,-1 +edufscar,1 +edukacja,1 +edukacja międzykulturowa,0 +edulearn proceedings,0 +edulingua,0 +eduskunnan kirjaston tutkimuksia ja selvityksiä,-1 +eduskunnan tarkastusvaliokunnan julkaisu,-1 +eduskunnan tulevaisuusvaliokunnan julkaisu,-1 +eduskunnan tulevaisuusvaliokunta,0 +edusp,0 +edutec,0 +edward elgar,2 +edwin mellen press,1 +ee : evaluation engineering,1 +eea report,-1 +eelk konsistoorium,0 +eelk usuteaduse instituudi toimetised,1 +eerdmans,1 +eerika,-1 +ees catalysis,1 +ees solar,-1 +eesti arst,0 +eesti geoloogia selts,0 +eesti haridusteaduste ajakiri,1 +eesti ja soome-ugri keeleteaduse ajakiri,1 +eesti keele sihtasutus,0 +eesti koostöö kogu,0 +eesti kunstiakadeemia,0 +eesti kunstimuuseum,-1 +eesti kunstimuuseum,0 +eesti loomeagentuur oü,0 +eesti mälu instituut,0 +eesti noorsootöö keskus,0 +eesti rahva muuseum,0 +eesti rahva muuseumi aastaraamat,0 +eesti rakenduslingvistika uhingu aastaraamat,1 +eesti teaduste akadeemia kirjastus,1 +eesti teatriliit,0 +eetos,1 +eetos-julkaisuja,1 +efficiency and responsibility in education,0 +effortti,-1 +eforeia archaiotiton thesprotias,0 +efort open reviews,1 +efquel innovation forum proceedings,0 +efs budbäraren,0 +efsa journal,-1 +efsa journal,1 +efsa supporting publications,0 +ega professional congress organisers,0 +ega-revista de expresion grafica arquitectonica,1 +egastroenterology,1 +eger journal of english studies,0 +egitim arastirmalari-eurasian journal of educational research,0 +egitim ve bilim-education and science,0 +egitto e vicino oriente,1 +egitânia sciencia,0 +egyháztörténeti szemle,0 +egyptian journal of agronomy,0 +egyptian journal of anaesthesia,1 +egyptian journal of aquatic research,1 +egyptian journal of basic and applied sciences,0 +egyptian journal of biological pest control,0 +egyptian journal of ear nose throat and allied sciences,0 +egyptian journal of forensic sciences (print),1 +egyptian journal of immunology,0 +egyptian journal of linguistics translation,0 +egyptian journal of otolaryngology,1 +egyptological memoirs,1 +ehealth international: the journal of applied health technology,1 +ehituskunst,0 +ehkäisevä päihdetyö ehyt ry,0 +ehne,-1 +ehrensvärd-seura ry,0 +ehumanista,1 +ehv academicpress,1 +eiasm workshop on audit quality,0 +eiconics ltd,0 +eidola,1 +eidos,0 +eidos,1 +eidote,-1 +eighteenth century : theory and interpretation,1 +eighteenth-century fiction,2 +eighteenth-century ireland,1 +eighteenth-century life,1 +eighteenth-century music,2 +eighteenth-century studies,2 +eigse: a journal of irish studies,1 +eiho-sha,0 +eikasmos-quaderni bolognesi di filologia classica,1 +eikon,1 +einaudi,0 +eino roiha -säätiö,0 +eire-ireland,0 +eirene,1 +eisenbrauns,1 +eiszeitalter und gegenwart,0 +eizo joho media gakkaishi,0 +ejc paediatric oncology,1 +ejc supplements,1 +ejhaem,1 +ejifcc,0 +ejnmmi physics,1 +ejnmmi radiopharmacy and chemistry,1 +ejnmmi research,1 +ejournal of edemocracy and open government,1 +ejournal of oral and maxillofacial research,0 +ejournalist,1 +ejso,1 +ejves vascular forum,1 +ekdoseis alexandreia,0 +ekdoseis asini,0 +ekdoseis ellinikou anoiktou panepistimiou,0 +ekdoseis isnafi,0 +ekdoseis papazisi,0 +ekdoseis vanias,0 +ekdotikos oikos melissa,0 +ekf líceum kiadó,0 +ekho verlag,0 +ekisho,0 +ekklisiastikos pharos,1 +eklem hastaliklari ve cerrahisi,1 +ekm teaduskirjastus,1 +ekologia,1 +ekonometria,1 +ekonomiaz,0 +ekonomicko-manažérske spektrum,1 +ekonomická univerzita,0 +ekonomika ir vadyba,0 +ekonomika management inovace,0 +ekonomisk debatt,-1 +ekonomiska forskningsinstitutet vid handelshögskolan i stockholm,0 +ekonomiska samfundets tidskrift,1 +ekonomitsheskaja nauka sovremennoj rossii,0 +ekonomitsheskaja sotsiologija,1 +ekonomitsheskie issledovanija,0 +ekonomska istrazivanja-economic research,0 +ekonomska misao i praksa,0 +"ekonomski vjesnik / econviews : review of contemporary entrepreneurship, business, and economic issues",0 +eksperimental'naya psikhologiya,0 +eksploatacja i niezawodność,0 +ekt-sarja,-1 +ekta books distributers,0 +ekumenik i norden,0 +el colegio de méxico,0 +el croquis: de arquitectura y de diseno,1 +el país,-1 +el salto,-1 +el-sanomat,-1 +eläin,-1 +elcvia electronic letters on computer vision and image analysis,1 +elearning and software for education,0 +electa,1 +electoral bulletins of the european union,-1 +electoral politics,0 +electoral studies,2 +electric power components and systems,1 +electric power quality and supply reliability conference,0 +electric power systems research,2 +electrical and control technologies,0 +electrical engineering,1 +electrical engineering in japan,0 +"electrical engineering/electronics, computer, communications and information technology association",1 +electrical overstress/electrostatic discharge symposium proceedings,0 +electrical power and energy conference,0 +"electrical, control and communication engineering",0 +electricity,0 +electricity journal,1 +electroanalysis,1 +electroanalytical chemistry,1 +electrocatalysis,0 +electrochem,0 +electrochemical and solid state letters,1 +electrochemical energy reviews,1 +electrochemical science advances,1 +electrochemical society,1 +electrochemistry,0 +electrochemistry communications,1 +electrochimica acta,2 +electromagnetic biology and medicine,1 +electromagnetics,1 +electronic antiquity,1 +electronic book review,1 +electronic commerce research,1 +electronic commerce research and applications,1 +electronic communications in probability,1 +electronic communications of the easst,1 +electronic design,1 +electronic government,1 +electronic green journal,1 +electronic international journal of time use research,1 +electronic journal of academic and special librarianship,1 +electronic journal of applied statistical analysis,-1 +electronic journal of biotechnology,1 +electronic journal of business ethics and organization studies,1 +electronic journal of business research methods,1 +electronic journal of combinatorics,2 +electronic journal of communication,1 +electronic journal of comparative law,1 +electronic journal of contemporary japanese studies,1 +electronic journal of differential equations,1 +electronic journal of e-government,1 +electronic journal of e-learning,0 +electronic journal of evolutionary modeling and economic dynamics,1 +electronic journal of foreign language teaching,0 +electronic journal of geotechnical engineering,0 +electronic journal of human sexuality,1 +electronic journal of information systems evaluation,1 +electronic journal of information systems in developing countries,1 +electronic journal of knowledge management,0 +electronic journal of linear algebra,1 +electronic journal of mathematics and technology,1 +electronic journal of organizational virtualness,0 +electronic journal of polish agricultural universities,0 +electronic journal of probability,2 +electronic journal of qualitative theory of differential equations,1 +electronic journal of research in educational psychology,1 +electronic journal of sociology,1 +electronic journal of statistics,2 +electronic journal of structural engineering,1 +electronic journal of vedic studies,1 +electronic lexicography in the 21st century. proceedings of elex ... conference,0 +electronic library,1 +electronic markets,1 +electronic materials,0 +electronic materials letters,1 +electronic musicological review,1 +electronic notes in discrete mathematics,1 +electronic notes in theoretical computer science,1 +electronic proceedings in theoretical computer science,0 +electronic publications of pan-european institute,0 +electronic research archive,1 +electronic structure,1 +electronic transactions on numerical analysis,2 +electronic workshops in computing,0 +electronics,0 +electronics and communications in japan,0 +electronics and nanotechnology,0 +electronics information and planning,1 +electronics letters,1 +electronics system integration technology conference,1 +electronics world,0 +electrophoresis,1 +električeskie stancii,0 +elektroniikkalehti,-1 +elektronika ir elektrotechnika,0 +elektrotechnik und informationstechnik,1 +elektrotehniski vestnik,0 +elelmiszervizsgalati kozlemenyek,1 +elementa,1 +elementary school journal,1 +elemente der mathematik,1 +elements,2 +elements in music and the city,1 +elements in publishing and book culture,1 +elements in the philosophy of religion,1 +elements on women in the history of philosophy,1 +elena plaksina verlag,0 +elenchos,1 +elephant and castle,1 +eletricidade moderna,0 +eleven international publishing,1 +elh,3 +elia,1 +elife,2 +elight,1 +eliksiiri,-1 +elinehto,-1 +elingup,0 +elinikäisen ohjauksen verkkolehti,-1 +"elinkeino-, liikenne- ja ympäristökeskusten yhteiset viestintäpalvelut -yksikkö",0 +elintarvike ja terveys,-1 +elintarvikeylioppilas,-1 +elinvoimaa alueelle,-1 +elisava tdd,0 +elixir psychology,0 +ella,-1 +ellerströms,0 +"ellinika: philological, historical and folkloric review",1 +elliniki simeiotiki etairia,0 +ellinogermaniki agogi,0 +elm magazine,-1 +elo,-1 +elonkehä,-1 +elore,2 +els,1 +elsevier,2 +elsevier doyma,1 +elsevier saunders,1 +elt journal,1 +elt research,0 +elthe ellīnikī periodikī ekdosī gia tī thrīskeutikī ekpaideusī,0 +eludamos,1 +eluosi yanjiu,0 +elysanomat,-1 +elytra,0 +eläinlääkintäsanomat,-1 +eläintaudit suomessa,-1 +eläinten hyvinvointi suomessa,-1 +eläinten ystävä,-1 +eläketurvakeskus,0 +eläkkeensaaja,-1 +elämäntapaliitto,0 +elämäntarina,-1 +em: air and waste management associations magazine for environmental managers,1 +ema - encontro de marketing,0 +emakeele selts,0 +emakeele seltsi aastaraamat,1 +emanate publishing house,-1 +embertárs,0 +embo journal,3 +embo molecular medicine,3 +embo reports,3 +emc imprint,0 +eme éditions,0 +emerald,1 +emerald reach proceedings series,0 +emergence: complexity and organization,1 +emergencias,1 +emergency and critical care medicine,-1 +emergency care and medicine,0 +emergency care journal,0 +emergency medicine,0 +emergency medicine,1 +emergency medicine australasia,1 +emergency medicine clinics of north america,1 +emergency medicine international (print),1 +emergency medicine journal,1 +emergency radiology,1 +emergent materials,1 +emerging adulthood,1 +emerging contaminants,1 +emerging infections,1 +emerging infectious diseases,2 +emerging markets case studies,0 +emerging markets finance and trade,1 +emerging markets review,1 +emerging materials research,1 +emerging media,0 +emerging microbes & infections,2 +emerging science journal,1 +emerita,1 +emi educational media international,1 +emily dickinson journal,1 +emirates journal of food and agriculture,1 +emission control science and technology,0 +emma - espoon modernin taiteen museo,0 +emma - espoon modernin taiteen museon julkaisuja,-1 +emmegi,0 +emotion,2 +emotion review,2 +"emotion, space and society",1 +emotional and behavioural difficulties,1 +emotions,1 +emotions and society,1 +empedocles: european journal for the philosophy of communication,1 +empirica,1 +empirical economic review,0 +empirical economics,1 +empirical musicology review,1 +empirical research in vocational education and training,1 +empirical software engineering,3 +empirical studies in theology,2 +empirical studies of the arts,2 +employee relations,1 +employee responsibilities and rights journal,1 +empuries,1 +ems - editions management et société,0 +ems magazine,0 +emu,1 +enanpad - encontro da anpad,0 +encatcscholar,0 +encephale: revue de psychiatrie clinique biologique et therapeutique,1 +enchoria,1 +encuentro,0 +enculturation,1 +encyclopaedia of islam online,1 +encyclopaedia of islam three,0 +encyclopaedia of woman and islamic cultures online,1 +encyclopedia,-1 +encyclopedia,0 +encyclopedia of slavic languages and linguistic online,0 +encyclopedia of the bible and its reception,1 +encyclopædia iranica,0 +endangered species research,1 +endeavour,1 +endocrine,1 +endocrine abstracts,0 +endocrine connections,1 +endocrine journal,1 +endocrine pathology,1 +endocrine practice,1 +endocrine research,1 +endocrine reviews,2 +"endocrine, metabolic & immune disorders : drug targets",1 +endocrine-related cancer,2 +endocrines,0 +endocrinologia y nutricion,1 +endocrinology,2 +endocrinology and metabolism,0 +endocrinology and metabolism clinics of north america,1 +"endocrinology, diabetes & metabolism",1 +"endocrinology, diabetes & metabolism case reports",1 +"endocrinology, metabolism & genetics",0 +endocytobiosis and cell research,1 +endodontic topics,1 +endoscopy,2 +endoscopy international open,1 +endotrends,1 +endymatologika,0 +endülüs yayınları,0 +energetika tatarstana,0 +energiaa,-1 +energies,0 +energy,3 +energy & environment materials,1 +energy advances,1 +energy and ai,1 +energy and buildings,3 +energy and built environment,1 +energy and climate change,1 +energy and environment,1 +energy and environment focus,0 +energy and environment research,0 +energy and environmental science,3 +energy and fuels,1 +energy conversion and management,2 +energy conversion and management x,1 +energy economics,1 +energy education science and technology part a: energy science and research,0 +energy education science and technology part b: social and educational studies,0 +energy efficiency,1 +energy engineering,0 +energy equipment and systems,-1 +energy exploration and exploitation,1 +energy for sustainable development,1 +energy harvesting and systems,1 +energy informatics,1 +energy informatics review,-1 +energy institute,1 +energy journal,1 +energy material advances,1 +energy materials: materials science and engineering for energy systems,1 +energy nexus,1 +energy policy,1 +energy procedia,1 +energy proceedings,1 +energy reports,1 +energy research and social science,2 +energy research journal,0 +energy reviews,1 +energy science & engineering,1 +energy security forum,0 +energy sources part a: recovery utilization and environmental effects,1 +energy sources part b: economics planning and policy,1 +energy storage,1 +energy storage and saving,1 +energy storage materials,1 +energy strategy reviews,1 +energy studies review,1 +energy systems,1 +energy technology,1 +"energy, ecology and environment",1 +"energy, sustainability and society",1 +energychem,1 +energyspectrum,0 +enerugeia,0 +eneuro,1 +eneurologicalsci,1 +enfance,1 +"enfances, familles, générations",1 +enfermedades infecciosas y microbiologia clinica,0 +enfermeria intensiva,1 +eng,0 +engaged management review,0 +"engaging science, technology, and society",1 +engenharia sanitaria e ambiental,1 +engineered regeneration,0 +engineered science,1 +engineering,0 +engineering,1 +engineering analysis with boundary elements,1 +engineering and applied science research,1 +engineering and technology,0 +engineering applications of artificial intelligence,2 +engineering applications of computational fluid mechanics,1 +engineering computations,1 +engineering conferences international,0 +engineering economist,1 +engineering failure analysis,1 +engineering for rural development,0 +engineering fracture mechanics,2 +engineering geology,2 +engineering geology special publications,1 +"engineering in agriculture, environment and food",1 +engineering in life sciences,1 +engineering intelligent systems for electrical engineering and communications,1 +engineering journal: american institute of steel construction inc,1 +engineering letters,0 +engineering management in production and services,0 +engineering management journal,1 +engineering management research,0 +engineering materials,0 +engineering mechanics,0 +engineering mechanics .... conference proceedings,0 +engineering optimization,1 +engineering proceedings,0 +engineering project organization journal,1 +engineering reports,1 +engineering research express,1 +"engineering science and technology, an international journal",2 +engineering solid mechanics,0 +engineering structures,3 +engineering studies,1 +engineering with computers,1 +"engineering, construction and architectural management",1 +"engineering, technology and applied science research",1 +engineers australia,0 +english,1 +english academy review,1 +english education,1 +english for specific purposes,2 +english for specific purposes world,0 +english heritage,1 +english historical review,3 +english in australia,0 +english in education,1 +english journal,1 +english language and linguistics,3 +english language notes,1 +english language research journal,0 +english language teaching,0 +english linguistics,1 +english linguistics research,0 +english literary renaissance,2 +english literature in transition 1880-1920,2 +english manuscript studies: 1100-1700,1 +english place-name society,1 +english studies,2 +english studies in africa,1 +english studies in canada,1 +english teaching & learning,1 +english teaching forum,1 +english teaching: practice and critique,1 +english text construction,1 +english today: the international review of the english language,1 +english world-wide,2 +eniki,-1 +enke,0 +enlightening tourism,0 +enlightenment and dissent,1 +ennen ja nyt,1 +eno-verkkokoulun tuki ry,0 +enquiry,1 +ens editions,1 +enseignement et recherche en administration de l'éducation,0 +ensenanza de las ciencias,0 +ensi- ja turvakotien liiton julkaisu,-1 +ensi- ja turvakotien liiton käsikirja,-1 +ensi- ja turvakotien liiton raportti,0 +ensi- ja turvakotien liitto,0 +enskilda högskolan stockholm,0 +ent: ear nose and throat journal,1 +entangled religions,1 +entanglements,0 +enterprise and society,2 +enterprise development and microfinance: an international journal of microfinance and business development,1 +enterprise information systems,2 +entertainment computing,1 +entertext,0 +enthymema,1 +entomofauna,0 +entomologia experimentalis et applicata,1 +entomologia generalis,1 +entomologica americana,1 +entomologica basiliensia et collectionis frey,0 +entomological news,1 +entomological research,1 +entomological review,1 +entomological science,1 +entomologie heute,0 +entomologische blätter für biologie und systematik der käfer,0 +entomologisk tidskrift,1 +entomologiske meddelelser,0 +entomologist´s gazette,0 +entomologist’s monthly magazine,0 +entomotropica,1 +entrehojas,0 +entrepalavras,0 +entreprendre & innover,0 +entrepreneurial business and economics review,1 +entrepreneurship and regional development,2 +entrepreneurship and sustainability issues,0 +entrepreneurship education,-1 +entrepreneurship education and pedagogy,1 +entrepreneurship research journal,1 +entrepreneurship theory and practice,3 +entreprises et histoire,1 +entropy,0 +environment,1 +environment & health,1 +environment & society portal. arcadia,1 +environment and behavior,2 +environment and development economics,1 +environment and ecology research,0 +environment and history,2 +environment and natural resources journal,1 +environment and planning a,3 +environment and planning b : urban analytics and city science,2 +environment and planning c : politics and space,2 +environment and planning d : society and space,3 +environment and planning e : nature and space,2 +"environment and planning f : philosophy, theory, models, methods and practice",1 +environment and society,2 +environment and urbanization,1 +environment international,3 +environment protection engineering,0 +environment systems and decisions,1 +"environment, development and sustainability",1 +environment-behaviour proceedings journal,0 +environmental advances,1 +environmental analysis & ecology studies,0 +environmental and climate technologies,1 +environmental and ecological statistics,1 +environmental and engineering geoscience,1 +environmental and experimental botany,1 +environmental and molecular mutagenesis,1 +environmental and occupational health practice,0 +environmental and resource economics,2 +environmental and sustainability indicators,1 +environmental archaeology,2 +environmental biology of fishes,1 +environmental challenges,1 +environmental chemistry,1 +environmental chemistry letters,1 +environmental communication: a journal of nature and culture,1 +environmental conservation,1 +environmental data science,1 +environmental development,1 +environmental dna,1 +environmental earth sciences,1 +environmental economics,0 +environmental economics and policy studies,1 +environmental education research,3 +environmental engineering,0 +environmental engineering and management journal,1 +environmental engineering science,1 +environmental entomology,1 +environmental epidemiology,1 +environmental epigenetics,1 +environmental ethics,2 +environmental evidence,0 +environmental fluid mechanics,1 +environmental forensics,1 +environmental geochemistry and health,1 +environmental geosciences,1 +environmental geotechnics,1 +environmental hazards,1 +environmental health,1 +environmental health and preventive medicine,1 +environmental health insights,1 +environmental health perspectives,3 +environmental history,3 +environmental humanities,2 +environmental impact assessment review,2 +environmental innovation and societal transitions,2 +environmental law and management,1 +environmental law institute,1 +environmental law reporter,1 +environmental law review,1 +environmental liability,1 +environmental management,1 +environmental microbiology,2 +environmental microbiology reports,1 +environmental microbiome,1 +environmental modeling and assessment,1 +environmental modelling and software,2 +environmental monitoring and assessment,1 +"environmental nanotechnology, monitoring & management",1 +environmental packaging,1 +environmental philosophy,1 +environmental planning and management,0 +environmental policy and governance,2 +environmental policy and law,1 +environmental politics,2 +environmental pollutants & bioavailability,1 +environmental pollution,2 +environmental processes,1 +environmental progress and sustainable energy,1 +environmental research,2 +environmental research & technology,1 +environmental research : climate,1 +environmental research : food systems,1 +environmental research : health,0 +environmental research : infrastructure and sustainability,1 +environmental research communications,1 +environmental research forum,1 +environmental research letters,3 +environmental reviews,1 +environmental science & ecotechnology,1 +environmental science & technology letters,1 +environmental science : advances,1 +environmental science : atmospheres,1 +environmental science : nano,2 +environmental science : processes and impacts,1 +environmental science : water research & technology,1 +environmental science and policy,2 +environmental science and pollution research,1 +environmental science and sustainable development,0 +environmental science and technology,2 +environmental sciences europe,1 +environmental sciences proceedings,0 +environmental sociology,1 +environmental systems research,0 +environmental technology,1 +environmental technology and innovation,1 +environmental technology reviews,1 +environmental toxicology,1 +environmental toxicology and chemistry,3 +environmental toxicology and pharmacology,1 +environmental values,3 +environments,0 +environmetrics,2 +environnement risques and sante,1 +enzyme and microbial technology,1 +enzyme research,1 +eolss publishing,1 +eom,-1 +eon'eo yeon'gu,1 +eon'eohag (jung'won eon'eo haghoe),1 +eos,0 +eos: commentarii societatis philologiae polonorum,1 +epe association,1 +epe journal,1 +epeteris etairias byzantinon spoudon,1 +epfl-cclab : composite construction laboratory,0 +ephemera: theory and politics in organization,1 +ephemerides liturgicae,1 +ephemerides theologicae lovanienses,1 +epic series in computing,1 +epic series in technology,0 +epidemics,1 +epidemiologia,0 +epidemiologia and prevenzione,1 +epidemiologic methods,1 +epidemiologic perspectives and innovations,1 +epidemiologic reviews,2 +epidemiologie mikrobiologie imunologie,1 +epidemiology,3 +epidemiology and health,1 +epidemiology and infection,1 +epidemiology and psychiatric sciences,2 +"epidemiology, biostatistics and public health",1 +epigenetics,1 +epigenetics and chromatin,1 +epigenetics communications,0 +epigenetics insights,0 +epigenomics,1 +epigraphica anatolica,1 +epigraphica: rivista internazionale di epigrafia,1 +epilepsia,2 +epilepsia open,1 +epilepsia-lehti,-1 +epilepsy & behavior reports,1 +epilepsy & seizure,0 +epilepsy and behavior,1 +epilepsy australia limited,1 +epilepsy currents,1 +epilepsy professional,-1 +epilepsy research,1 +epileptic disorders,1 +epileptologia,0 +episodes,1 +episodi,-1 +episteme,1 +episteme-sarja,1 +epistemologia,1 +epistīmonika chronika,0 +epistolographia,0 +epistrophy,1 +epites - epiteszettudomany,1 +epj applied metamaterials,0 +epj data science,1 +epj nuclear sciences & technologies,1 +epj photovoltaics,1 +epj quantum technology,1 +epj web of conferences,1 +epl,1 +epoche: a journal for the history of philosophy,1 +eppo bulletin,1 +epubli : ein imprint der neopubli,0 +"equality, diversity and inclusion",1 +equidad & desarrollo,0 +equilibrium,0 +equine veterinary education,1 +equine veterinary journal,2 +equinox publishing,2 +equity and excellence in education,1 +equivalences,1 +era content,0 +era-forum,1 +eracle,0 +eranos: acta philologica suecana,1 +eras,1 +erasmus journal for philosophy and economics,1 +erasmus law and economics review,1 +erasmus law review,1 +ercim news,-1 +ercoftac series,0 +erde,1 +erdelyi társadalom,0 +erdkunde,1 +erebea: revista de humanidades y ciencias sociales,0 +erekutoronikusu jisso gakkaishi,0 +"eretz-israel: archaeological, historical and geographical studies",1 +erfurt electronic studies in english,1 +ergo,2 +ergodic theory and dynamical systems,2 +ergon-verlag,1 +ergonomics,1 +ergonomics in design,1 +ergonomics international journal,0 +ergonomics open journal,0 +ergoscience,0 +erhvervshistorisk årbog,1 +erich schmidt verlag,1 +erikoislääkäri,0 +erim vatansever,0 +erityiskasvatus,-1 +erityisopettaja,-1 +eriu,1 +erj open research,1 +erkenntnis,3 +ernahrungs umschau,1 +erol kurt,0 +eruditio - educatio,0 +erwerbs-obstbau,0 +erziehung und unterricht,1 +erä,-1 +es keskiviikko,-1 +esa bulletin: european space agency,1 +esa workshop on satellite navigation technologies and european workshop on gnss signals and signal processing,0 +esaim : control optimisation and calculus of variations,1 +esaim : mathematical modelling and numerical analysis,2 +esaim : probability and statistics,1 +esaim : proceedings and surveys,1 +esarda bulletin,0 +esboços,1 +esc heart failure,1 +escola de artes ciências e humanidades,0 +escp business school,0 +escuela técnica superior de arquitectura de madrid,0 +esensia : jurnal ilmu-ilmu ushuluddin,1 +esignals,-1 +esignals pro,-1 +esignals research,0 +esmo open,2 +esne editorial,0 +esophagus,1 +esoterica,1 +esp across cultures,0 +esp today,1 +espace geographique,1 +espaces linguistiques,0 +"espacio, tiempo y forma : serie v historia contemporánea",1 +espanol actual,1 +esperantologio,1 +esperiana verlag,0 +esperienze letterarie: rivista trimestrale di critica e di cultura,1 +espes,1 +espon,0 +espoon kaupunginmuseon tutkimuksia,-1 +esprit,0 +esprit createur,2 +espéculo,0 +esq: a journal of the american renaissance,2 +esrb working paper series,-1 +esri press,1 +essachess : journal for communication studies,1 +essays and studies,1 +essays in biochemistry,1 +essays in criticism,3 +essays in economic and business history,1 +essays in education,1 +essays in medieval studies,1 +essays in philosophy,1 +essays in poetics,1 +essays in public works history,0 +essays in theatre-etudes theatrales,1 +essex archaeology and history,1 +estadística,1 +estadístico de encuestas,0 +estetika: the european journal of aesthetics,2 +estiem magazine,-1 +estonian art,-1 +estonian journal of archaeology,1 +estonian journal of earth sciences,1 +estonian journal of ecology,1 +estonian journal of engineering,1 +estonian journal of english studies,1 +estonian literary magazine,-1 +estonian marine institute report series,-1 +estreno: cuadernos del teatro espanol contemporaneo,1 +estuaries and coasts,1 +estuarine coastal and shelf science,1 +estudios atacamenos,1 +estudios biblicos,1 +estudios clasicos,1 +estudios constitucionales,1 +estudios de cultura maya,1 +estudios de cultura nahuatl,1 +estudios de fonética experimental,1 +estudios de historia moderna y contemporánea de méxico,1 +estudios de la antiguedad,1 +estudios de linguistica espanola,1 +estudios de linguistica universidad de alicante,1 +estudios de psicologia,0 +estudios de teoría literaria,1 +estudios eclesiasticos,1 +estudios filologicos,1 +estudios filologicos alemanes,1 +estudios filosofía/historia/letras,1 +estudios filosóficos,1 +estudios fronterizos,1 +estudios geologicos: madrid,1 +estudios interdisciplinarios de america latina y el caribe,1 +estudios irlandeses,1 +estudios latinoamericanos,1 +estudios romanicos,1 +estudios sobre el mensaje periodistico,1 +estudios sobre las culturas contemporaneas,1 +estudios socio-juridicos,0 +estudis romanics,1 +estudis: universidad de valencia,1 +estudos avançados,0 +estudos de lingüística galega,1 +estudos de sociologia,0 +estudos em comunicacao,1 +estudos em design,1 +estudos feministas,1 +estudos ibero-americanos,2 +estudos internacionais,0 +estudos linguisticos,1 +estudos linguísticos,0 +estudos semióticos,1 +eszterházy károly főiskola,0 +et-lehti,-1 +eta-florence renewable energies,0 +etaireia georgikon michanikon ellados,0 +etc,-1 +etc press,0 +etc: review of general semantics,1 +etd - educação temática digital,0 +etelä-saimaa,-1 +"etelemed the international conference on ehealth, telemedicine, and social medicine",0 +etelä-karjala-instituutti. toimituksia,0 +etelä-karjalan vuosikirja,0 +etelä-suomen sanomat,-1 +eteläpohjalaiset juuret,-1 +etene-julkaisuja,-1 +ethic@,1 +ethical human psychology and psychiatry,1 +ethical perspectives,1 +ethical space: the international journal of communication ethics,1 +ethical theory and moral practice,2 +ethics,3 +ethics & bioethics,1 +ethics and behavior,1 +ethics and education,1 +ethics and global politics,1 +ethics and information technology,2 +ethics and international affairs,1 +ethics and medicine: an international journal of bioethics,1 +ethics and social welfare,1 +ethics and the environment,1 +ethics in progress,1 +ethics in science and environmental politics,1 +ethics international press,0 +"ethics, medicine and public health",1 +"ethics, policy and environment",1 +ethik in der medizin,1 +ethiopian civil and commercial law series,0 +ethiopian journal of development research,1 +ethiopian journal of health development,1 +ethnic and racial studies,3 +ethnica,1 +ethnicities,3 +ethnicity and disease,1 +ethnicity and health,1 +ethniko kai kapodistriako panepistimio athinon,0 +ethnoarchaeology,1 +ethnobiology letters,0 +ethnobotany research and applications,1 +ethnographia,1 +ethnographic studies,1 +ethnographica: periodic publication of the peloponnese folklore foundation,1 +"ethnographie: creation, pratiques, publics",1 +ethnographisch-archaologische zeitschrift,1 +ethnography,2 +ethnography and education,2 +ethnohistory,2 +ethnologia actualis,0 +ethnologia balkanica: journal of southeast european anthropology,1 +ethnologia europae centralis,1 +ethnologia europaea,3 +ethnologia fennica,2 +ethnologia scandinavica,2 +ethnologia slovaca et slavica,1 +ethnologia: journal of the greek society for ethnology,1 +ethnologie francaise,1 +ethnologies,1 +ethnology,2 +ethnology notebooks,0 +ethnology paper,1 +ethnomusicology,3 +ethnomusicology forum,3 +ethnomusicology review,1 +ethnopolitics,2 +ethnos,3 +ethnos-tiedote,-1 +ethnos-toimite,1 +ethology,1 +ethology ecology and evolution,1 +ethos,2 +ethos: dialogues in philosophy and social sciences,0 +etica & politica,1 +etikk i praksis,1 +etla elinkeinoelämän tutkimuslaitos b,0 +etla muistio,-1 +etla raportit,0 +etla working papers,-1 +etmu-blogi,0 +etnoantropozum,0 +etnofoor,1 +etnografia e ricerca qualitativa,1 +etnografia polska,2 +etnografica: revista do centro em rede de investigacao em antropologia,1 +etnograficeskoe obozrenie,1 +etnografie sonore/ sound ethnographies,1 +etnolingwistyka,1 +etnolog : nova vrsta,1 +etnologia polona,1 +etnologicke rozpravy,1 +etnoloska tribina,1 +etnomusikologian vuosikirja,1 +etnosistemi,1 +etransportation,1 +etri journal,1 +etropic,1 +ets,0 +etudes anglaises,1 +etudes canadiennes,1 +etudes caribeennes,1 +etudes celtique,1 +etudes cinematographiques,1 +etudes classiques,2 +etudes creoles,1 +etudes cretoises,1 +etudes de lettres,0 +etudes de linguistique appliquee,1 +etudes francaises,2 +etudes germaniques,1 +etudes internationales,1 +etudes inuit,1 +etudes irlandaises,1 +etudes litteraires,1 +etudes medievales,1 +"etudes mongoles et siberiennes, centrasiatiques et tibetaines",1 +etudes phenomenologiques,2 +etudes philosophiques,1 +etudes photographiques,2 +etudes ricoeuriennes / ricoeur studies,1 +etudes romanes de lund,1 +etudes rurales,1 +etudes sur le judaïsme medieval,1 +etudes theatrales,1 +etudes theologiques et religieuses,1 +etui policy brief,0 +etupenkki,-1 +etupyörä,-1 +etämetsänomistaja,-1 +eu agrarian law,0 +eu law live,0 +eu och arbetsrätt,-1 +eu wahlmonitor,-1 +eu-russia papers,0 +eubios: journal of asian and international bioethics,1 +eucen studies,0 +eucml,1 +eudeba,0 +eui working papers : robert schuman centre,0 +eui working papers law,-1 +eui working papers mwp,-1 +eukaryotic cell,1 +eulimene,1 +eupa open proteomics,1 +euphorion: zeitschrift fur literaturgeschichte,3 +euphrosyne: revista de filologia classica,1 +euphytica,1 +eur : scientific and technical research series,1 +euraap,0 +euraap technical working group on compact antennas,0 +euracademy thematic guide series,0 +euractiv,-1 +eurailmag,0 +eurajoen kotiseutuyhdistys,0 +euralex proceedings,0 +euram conference,0 +euran kunta,0 +eurasia antiqua,1 +eurasia border review,0 +eurasia cultura,0 +"eurasia journal of mathematics, science & technology education",1 +"eurasia journal of mathematics, science and technology education",1 +eurasian business review,1 +eurasian chemical communications,0 +eurasian economic review,1 +eurasian geography and economics,2 +eurasian journal of applied linguistics,1 +eurasian journal of biosciences,0 +eurasian journal of business and economics,0 +eurasian journal of economic and business studies,0 +eurasian journal of economics and finance,0 +eurasian journal of mathematical and computer applications,1 +eurasian journal of medical investigation,0 +eurasian journal of physics and chemistry education,0 +eurasian journal of social sciences,1 +eurasian prehistory,1 +eurasian soil science,1 +eurasian studies in business and economics,0 +eurasip journal of embedded systems,1 +eurasip journal on advances in signal processing,1 +"eurasip journal on audio, speech, and music processing",1 +eurasip journal on bioinformatics and systems biology,1 +eurasip journal on image and video processing,1 +eurasip journal on information security,1 +eurasip journal on wireless communications and networking,1 +eure: revista latinoamericana de estudios urbano regionales,1 +eureka: health sciences,0 +eureka: life sciences,0 +eureka: physics and engineering,1 +eureka: social and humanities,1 +euresis: cahiers roumains detudes litteraires,1 +euro & talous,-1 +euro journal on computational optimization,1 +euro journal on decision processes,1 +euro journal on transportation and logistics,1 +euro+med plantbase,0 +euro-american workshop on information optics,0 +euro-atlantic quarterly,0 +euro-atlantic studies,1 +euroasian entomological journal,0 +eurocall newsletter,1 +eurochoices,1 +eurodyn,0 +eurofenix,-1 +eurofm,0 +eurofm journal: international journal of facilities management,1 +eurohealth,0 +euroheat & power,-1 +eurointervention,1 +eurolimes,1 +euromed press,0 +euromicro conference on real-time systems,1 +euroopan muuttoliikeverkosto,0 +eurooppalainen,-1 +eurooppalainen suomi ry,0 +eurooppalaisen filosofian seura ry,1 +europa,-1 +europa ethnica,1 +europa law publishing,1 +europa orientalis,1 +europa regional,1 +europa xxi,0 +europa édition,0 +europace,2 +europaeischer hochschulverlag gmbh & co. kg,1 +europaische rundschau,1 +europaische zeitschrift fur wirtschaftsrecht,1 +europarattslig tidskrift,1 +europarecht,2 +europe and the world,1 +europe unie,0 +europe's world,-1 +europe-asia studies,3 +europe-new zealand research series,1 +europe: revue litteraire mensuelle,1 +european academy of dermatology and venereology congress,0 +european accounting review,2 +european actuarial journal,1 +european addiction research,1 +european annals of allergy and clinical immunology,1 +european archives of oto-rhino-laryngology,1 +european archives of paediatric dentistry,1 +european archives of psychiatry and clinical neuroscience,1 +european association for animal production scientific series,1 +european association for computer graphics,1 +european association for machine translation,0 +european association for signal and image processing,1 +european association of distance teaching universities,0 +european association of erasmus coordinators,0 +european association of geoscientists and engineers,1 +european biomass conference and exhibition proceedings,0 +european biophysics journal with biophysics letters,1 +european bulletin of himalayan research,1 +european burn journal,0 +european business law review,3 +european business organization law review,1 +european business review,1 +european cardiology,1 +european cells and materials,1 +european centre for minority issues,0 +european centre for the development of vocational training,0 +european child and adolescent psychiatry,2 +european clinical respiratory journal,1 +european coatings journal,1 +european comic art,1 +european commission,0 +european company and financial law review,1 +european company case law,1 +european company law,1 +european competition journal,1 +european conference of circuits technology and devices : proceedings,0 +european conference on artificial life,0 +european conference on circuit theory and design,1 +"european conference on colour in graphics, image and vision",0 +european conference on computational biology,1 +european conference on computer vision,2 +european conference on computer-supported cooperative work,1 +european conference on education official conference proceedings,0 +european conference on information retrieval,2 +european conference on information systems,1 +european conference on language learning official conference proceedings,0 +european conference on modelling and simulation,1 +european conference on networks and communications,1 +european conference on power electronics and applications,1 +european conference on psychology and the behavioral sciences official conference proceedings,0 +european conference on simulation and ai in computer games,1 +european conference on social media,0 +european conference on software maintenance and reengineering,1 +european conference on technology in the classroom official conference proceedings,0 +european consortium for church and state research,0 +european constitutional law review,3 +european control association,0 +european convention on human rights law review,1 +european council for an energy efficient economy,1 +european council for modelling and simulation,0 +european countryside,1 +european criminal law review,1 +european cytokine network,1 +european data protection law review,1 +european diabetes nursing,1 +european distance and e-learning network,0 +european diversity and autonomy papers,1 +european early childhood education research journal,2 +european eating disorders review,1 +european economic review,2 +european education,1 +european education and culture executive agency,0 +european educational research association,1 +european educational research journal,2 +european educative projects,0 +european employment law cases,-1 +european endodontic journal,1 +european energy and environmental law review,1 +european energy journal,1 +european federation of corrosion publications,1 +european financial and accounting journal,1 +european financial management,2 +european food and feed law review,1 +european food research and technology,1 +european food safety authority,0 +european foreign affairs review,1 +european forest institute,0 +european fuel cell forum ag,0 +european gender equality law review,1 +european geologist,0 +european geosciences union,1 +european geothermal energy council,0 +european geriatric medicine,1 +european grassland federation,0 +european heart journal,3 +european heart journal : acute cardiovascular care,1 +european heart journal : cardiovascular imaging,2 +european heart journal : digital health,1 +european heart journal : imaging methods and practice,1 +european heart journal : quality of care and clinical outcomes,1 +european heart journal open,1 +european heart journal supplements,1 +european heart journal. cardiovascular pharmacotherapy,1 +european heart journal: case reports,1 +european history quarterly,3 +european human rights law review,2 +european infectious disease,1 +european institute for computer antivirus research conference,0 +european institute of public administration,1 +european integration online papers: eiop,1 +european integration studies,1 +european intellectual property review,1 +european investment law and arbitration review,1 +european journal for church and state research,1 +european journal for nursing history and ethics,1 +european journal for philosophy of science,3 +european journal for qualitative research in psychotherapy,1 +european journal for research on the education and learning of adults,1 +european journal for security research,1 +european journal for sport and society,1 +european journal for the history of medicine and health,2 +european journal for the study of thomas aquinas,1 +european journal for young scientists and engineers,0 +european journal of academic research,0 +european journal of adapted physical activity,1 +european journal of ageing,2 +european journal of agronomy,3 +european journal of alternative education studies,0 +european journal of american culture,1 +european journal of american studies,1 +european journal of anaesthesiology,1 +european journal of analytic philosophy,1 +european journal of applied linguistics,1 +european journal of applied mathematics,1 +european journal of applied physiology,1 +european journal of applied sciences,1 +european journal of archaeology,3 +european journal of behavior analysis,1 +european journal of biomedical informatics,0 +european journal of breast health,1 +european journal of business science and technology,0 +european journal of cancer,2 +european journal of cancer care,1 +european journal of cancer prevention,1 +european journal of cardio-thoracic surgery,1 +european journal of cardiovascular nursing,1 +european journal of cell biology,1 +european journal of chemistry,0 +european journal of clinical and experimental medicine,0 +european journal of clinical and medical oncology,0 +european journal of clinical hypnosis,1 +european journal of clinical investigation,1 +european journal of clinical microbiology and infectious diseases,1 +european journal of clinical nutrition,1 +european journal of clinical pharmacology,1 +european journal of combinatorics,2 +european journal of communication,3 +european journal of comparative law and governance,1 +european journal of contemporary education,0 +european journal of contraception and reproductive health care,1 +european journal of control,1 +"european journal of crime, criminal law and criminal justice",2 +european journal of criminology,2 +european journal of cross-cultural competence and management,1 +european journal of cultural and political sociology,2 +european journal of cultural management and policy,1 +european journal of cultural studies,2 +european journal of curriculum studies,1 +european journal of dental education,1 +european journal of dentistry,1 +european journal of dermatology,1 +european journal of development research,1 +european journal of developmental psychology,1 +european journal of drug metabolism and pharmacokinetics,1 +european journal of east asian studies,1 +european journal of ecology,1 +european journal of economic and social systems,1 +european journal of economics and management,0 +european journal of education,0 +european journal of education,2 +european journal of education and pedagogy,1 +european journal of education and psychology,0 +european journal of education studies,1 +european journal of educational research,1 +european journal of educational studies,0 +european journal of emergency medicine,1 +european journal of empirical legal studies,1 +european journal of endocrinology,3 +"european journal of endocrinology, supplement",1 +european journal of engineering education,1 +european journal of english studies,2 +european journal of entomology,1 +european journal of environment and public health,0 +european journal of environmental and civil engineering,1 +european journal of environmental sciences,0 +european journal of epidemiology,3 +european journal of experimental biology,0 +european journal of family business,1 +european journal of finance,1 +european journal of forest research,2 +european journal of futures research,1 +european journal of gastroenterology and hepatology,1 +european journal of general practice,1 +european journal of geography,1 +european journal of government and economics,1 +european journal of gynaecological oncology,1 +european journal of haematology,1 +european journal of health communication,1 +european journal of health economics,1 +european journal of health law,2 +european journal of health psychology,0 +european journal of heart failure,3 +european journal of higher education,1 +european journal of higher education it,0 +european journal of histochemistry,1 +european journal of homelessness,0 +european journal of horticultural science,1 +european journal of hospital pharmacy: science and practice,1 +european journal of human genetics,2 +european journal of human security,1 +european journal of humour research,1 +european journal of hybrid imaging,1 +european journal of immunology,1 +european journal of inclusive education,0 +european journal of industrial engineering,1 +european journal of industrial relations,1 +european journal of inflammation,1 +european journal of information systems,3 +european journal of innovation management,1 +european journal of inorganic chemistry,1 +european journal of integrative medicine,1 +european journal of interdisciplinary studies,0 +european journal of internal medicine,1 +european journal of international law,3 +european journal of international management,1 +european journal of international relations,3 +european journal of international security,1 +"european journal of investigation in health, psychology and education",0 +european journal of islamic finance,1 +european journal of jewish studies,1 +european journal of korean studies,1 +european journal of language and literature studies,1 +european journal of language policy,1 +european journal of law and economics,1 +european journal of law and technology,1 +european journal of law reform,1 +european journal of legal education,0 +european journal of legal studies,1 +european journal of life writing,1 +european journal of lipid science and technology,1 +european journal of management,0 +european journal of management issues,0 +european journal of marketing,2 +european journal of mass spectrometry,1 +european journal of materials,0 +european journal of mathematics,1 +european journal of mathematics and science education,0 +european journal of mechanics a: solids,2 +european journal of mechanics b: fluids,1 +european journal of medical genetics,1 +european journal of medical research,1 +european journal of medicinal chemistry,2 +european journal of mental health,1 +european journal of midwifery,1 +european journal of migration and law,2 +european journal of mineralogy,1 +european journal of multidisciplinary studies,1 +european journal of musicology,1 +european journal of navigation,1 +european journal of neurology,2 +european journal of neuroscience,2 +european journal of nuclear medicine and molecular imaging,3 +european journal of nutrition,2 +european journal of obstetrics & gynecology and reproductive biology x,1 +european journal of obstetrics and gynecology and reproductive biology,1 +european journal of oncology nursing,2 +"european journal of open, distance and e-learning",1 +european journal of operational research,2 +european journal of ophthalmology,1 +european journal of oral sciences,2 +european journal of organic chemistry,1 +european journal of orthodontics,1 +european journal of orthopaedic surgery and traumatology,1 +european journal of paediatric dentistry,1 +european journal of paediatric neurology,1 +european journal of pain,1 +european journal of palliative care,1 +european journal of parenteral & pharmaceutical sciences,0 +european journal of pediatric surgery,1 +european journal of pediatrics,1 +european journal of personality,2 +european journal of pharmaceutical sciences,3 +european journal of pharmaceutics and biopharmaceutics,2 +european journal of pharmacology,2 +european journal of philosophy,3 +european journal of philosophy of religion,1 +european journal of phycology,1 +european journal of physical and rehabilitation medicine,1 +european journal of physics,1 +european journal of physiotherapy,1 +european journal of plant pathology,1 +european journal of plastic surgery,1 +european journal of police studies,1 +european journal of political economy,1 +european journal of political research,3 +european journal of political research : political data yearbook,1 +european journal of political theory,2 +european journal of politics and gender,1 +european journal of population-revue europeenne de demographie,2 +european journal of pragmatism and american philosophy,1 +european journal of preventive cardiology,2 +european journal of probation,1 +european journal of prosthodontics and restorative dentistry,1 +european journal of protistology,1 +european journal of psychiatry,1 +european journal of psychoanalysis,0 +european journal of psychological assessment,1 +european journal of psychology applied to legal context,1 +european journal of psychology of education,1 +european journal of psychology open,1 +"european journal of psychotherapy, counselling and health",1 +european journal of psychotraumatology,1 +european journal of public health,2 +european journal of pure and applied mathematics,1 +european journal of radiology,1 +european journal of radiology open,1 +european journal of remote sensing,1 +european journal of risk regulation,1 +european journal of scandinavian studies,2 +european journal of science and mathematics education,1 +european journal of science and theology,0 +european journal of scientific research,0 +european journal of social & behavioural sciences,0 +european journal of social education,1 +european journal of social law,1 +european journal of social psychology,3 +european journal of social science education and research,1 +european journal of social sciences,0 +european journal of social sciences studies,0 +european journal of social security,1 +european journal of social theory,2 +european journal of social work,2 +european journal of soil biology,1 +european journal of soil science,2 +european journal of spatial development,1 +european journal of special education research,1 +european journal of special needs education,2 +european journal of sport science,2 +european journal of sport sciences,0 +european journal of stem education,0 +european journal of sustainable development,0 +european journal of taxonomy,1 +european journal of teacher education,3 +european journal of the history of economic thought,1 +european journal of theatre and performance,1 +european journal of theology,1 +european journal of therapeutics,0 +european journal of tourism research,1 +"european journal of tourism, hospitality and recreation",1 +european journal of training and development,1 +european journal of transformation studies,1 +european journal of translational myology,1 +european journal of transport and infrastructure research,1 +european journal of trauma & dissociation,1 +european journal of trauma and emergency surgery,1 +european journal of underwater and hyperbaric medicine,1 +european journal of vascular and endovascular surgery,2 +european journal of wildlife research,1 +european journal of women`s studies,3 +european journal of wood and wood products,1 +european journal of work and organizational psychology,2 +european journal of workplace innovation,1 +european journal on criminal policy and research,1 +european joyce studies,1 +european labour law journal,2 +european language resources distribution agency,1 +european law blog,-1 +european law enforcement research bulletin,1 +european law institute,1 +european law journal,3 +european law open,1 +european law reporter,1 +european law review,3 +european legacy: toward new paradigms,2 +european liberal forum,0 +european management journal,2 +european management review,1 +european mathematical society publishing house,2 +european medical journal urology,0 +european medieval drama,1 +european microelectronics and packaging conference,1 +european microwave association,0 +european microwave conference,1 +european modelling symposium,0 +european musculoskeletal review,1 +european network of heads of schools of architecture,0 +european network of living labs,0 +european networks law and regulation quarterly,0 +european neurofibromatosis meeting,0 +european neurological review,1 +european neurology,1 +european neuropsychopharmacology,1 +european nuclear society,0 +european offroads of social science,0 +european optical society,1 +european orthopaedics and traumatology,1 +european papers,1 +european parliament,0 +european pharmaceutical law review,1 +european physical education review,2 +european physical journal a,2 +european physical journal b,1 +european physical journal c,2 +european physical journal d,1 +european physical journal e,1 +european physical journal h,1 +european physical journal plus,1 +european physical journal: applied physics,1 +european physical journal: special topics,1 +european physical society,1 +european planning studies,2 +european police college,0 +european policy analysis,1 +european political science,1 +european political science review,2 +european politics and society,1 +european polymer journal,1 +european powder metallurgy association,0 +european power electronics and drives association,1 +european press academic publishing,0 +european proceedings of educational sciences,0 +european proceedings of international conference on education and educational psychology,0 +european proceedings of social and behavioural sciences,0 +european procurement & public private partnership law review,1 +european property law journal,1 +european psychiatry,2 +european psychologist,2 +european psychomotricity journal,1 +european public & social innovation review,1 +european public law,2 +european quality assurance forum papers and presentations,0 +european radiology,2 +european radiology experimental,1 +european regional conference of the international telecommunication society,0 +european research institute for social work,0 +european respiratory disease,1 +european respiratory journal,3 +european respiratory review,1 +european respiratory society,0 +european review,1 +european review for medical and pharmacological sciences,0 +european review of aging and physical activity,1 +european review of agricultural economics,2 +european review of applied psychology-revue europeenne de psychologie appliquee,1 +european review of contract law,2 +european review of digital administration & law,1 +european review of economic history,2 +european review of history-revue europeenne d histoire,3 +european review of international studies,1 +european review of latin american and caribbean studies,2 +european review of organised crime,1 +european review of private law,2 +european review of public law,1 +european review of service economics and management,0 +european review of social psychology,1 +european reward management conference,0 +european romantic review,2 +european safety and reliability association,1 +european science and technology review,0 +european science editing,1 +european science foundation,0 +european scientific journal,0 +european security,1 +european security and defence,-1 +european signal processing conference,1 +european simulation and modelling conference,1 +european sleep research society,0 +european social sciences research journal,0 +european social work research,0 +european societies,2 +european society for engineering education mathematics working group seminar,0 +european society for precision engineering and nanotechnology,0 +european society for research in mathematics education,1 +european sociological review,3 +european sociologist,0 +european software engineering conference,2 +european space agency,1 +european spatial research and policy,0 +european spine journal,1 +european sport management quarterly,1 +european squirrel initiative,0 +european starting ai researcher symposium,0 +european state aid law quarterly,1 +european stroke journal,1 +european structural and investment funds journal,1 +european studies,1 +european studies in philosophy of science,1 +european surgery: acta chirurgica austriaca,1 +european surgical research,1 +european symposia on algorithms,2 +"european symposium on artificial neural networks, computational intelligence and machine learning",1 +european taxation,1 +european thyroid journal,1 +european tort law yearbook,0 +european trade union institute,0 +european transactions on electrical power,1 +european transactions on telecommunications,1 +european transport : trasporti europei,1 +european transport conference past papers repository,-1 +european transport law,1 +european transport research review,1 +european transport studies,-1 +european triple helix congress on responsible innovation & entrepreneurship,0 +european union institute for security studies,0 +european union politics,2 +european university at st. petersburg,0 +european university cyprus,0 +european university information systems congress,0 +european university institute,0 +european urban and regional studies,2 +european urological review,1 +european urology,3 +european urology focus,2 +european urology oncology,1 +european urology open science,1 +european values studies,1 +european view,-1 +european view,0 +european water,1 +european wind energy association,1 +european workshop on microelectronics education,0 +european workshop on software ecosystems,0 +european workshop on structural health monitoring,0 +european workshop on visual information processing,1 +european yearbook of constitutional law,1 +european yearbook of minority issues,1 +european yearbook of the history of psychology,1 +european zoological journal,1 +europeanfm insight,-1 +europes journal of psychology,1 +europhysics news,0 +europäische geschichte online,1 +europäische zeitschrift für arbeitsrecht,0 +europäischer hochschulverlag,0 +europäisches journal für minderheitenfragen,1 +eurosis-eti,0 +eurosphere online working paper series,1 +eurospi,0 +eurosurveillance,2 +eurosys conference,1 +eurozine,-1 +eurup,0 +eurōpaikī ekfrasī,-1 +eur’orbem éditions,0 +eusl verlagsgesellschaft,0 +euspen,0 +eva analyysi,-1 +eva pamfletti,-1 +eva raportti,-1 +evaluate europe handbook series,0 +evaluation,1 +evaluation and program planning,1 +evaluation and the health professions,1 +evaluation review,1 +evangelical quarterly,1 +evangelische theologie,1 +evangelische verlagsanstalt gmbh,1 +evansia,0 +event management,1 +evental aesthetics,1 +evento,-1 +evergreen,0 +eversheds sutherland magazine,-1 +evidence & policy,1 +evidence based library and information practice,1 +evidence-based cardiovascular medicine,1 +evidence-based communication assessment and intervention,1 +evidence-based dentistry,1 +evidence-based hrm,1 +evidence-based midwifery,0 +evidence-based nursing,1 +evodevo,1 +evolution,3 +evolution : education and outreach,1 +evolution and development,1 +evolution and human behavior,2 +evolution equations and control theory,0 +evolution letters,2 +evolution psychiatrique,1 +"evolution, medicine and public health",2 +evolutionary and institutional economics review,1 +evolutionary anthropology,3 +evolutionary applications,2 +evolutionary behavioral sciences,1 +evolutionary bioinformatics,1 +evolutionary biology,1 +evolutionary computation,2 +evolutionary ecology,1 +evolutionary ecology research,1 +evolutionary human sciences,1 +evolutionary intelligence,1 +evolutionary journal of the linnean society,1 +evolutionary linguistic theory,1 +evolutionary psychological science,1 +evolutionary psychology,1 +evolutionary studies in imaginative culture,1 +evolutionary systematics,0 +evolving pedagogy,0 +evolving systems,1 +evropaikos organismos dimosiou dikaiou,0 +evropejskij dom,0 +evropska revija za pravo osiguranja,1 +evropský politický a právní diskurz,0 +ewop in practice,0 +ex aequo,0 +ex auditu,1 +ex fonte,1 +ex tuto,1 +ex-libris comunicação integrada,0 +examples and counterexamples,-1 +exarc journal,1 +excavatio,1 +excellence cluster topoi,0 +exceptional children,3 +exceptionality,1 +exceptionality education international,1 +exchange: journal of missiological and ecumenical research,2 +excli journal,1 +exemplaria classica,1 +exemplaria: a journal of theory in medieval and renaissance studies,1 +exercise and quality of life,1 +exercise and sport sciences reviews,1 +exercise immunology review,1 +exilforschung: ein internationales jahrbuch,1 +existentia,1 +exlibris-uutiset,-1 +experimental & clinical cardiology,0 +experimental aging research,1 +experimental agriculture,1 +experimental and applied acarology,1 +experimental and clinical endocrinology and diabetes,1 +experimental and clinical psychopharmacology,1 +experimental and clinical transplantation,1 +experimental and computational multiphase flow,1 +experimental and molecular medicine,1 +experimental and molecular pathology,1 +experimental and therapeutic medicine,1 +experimental and toxicologic pathology,1 +experimental animals,1 +experimental astronomy,1 +experimental biology and medicine,1 +experimental brain research,1 +experimental cell research,1 +experimental dermatology,2 +experimental diabetes research,1 +experimental economics,2 +experimental eye research,1 +experimental fluid mechanics,0 +experimental gerontology,1 +experimental heat transfer,1 +experimental hematology,1 +experimental hematology & oncology,1 +experimental lung research,1 +experimental mathematics,1 +experimental mechanics,1 +experimental neurology,1 +experimental oncology,1 +experimental parasitology,1 +experimental physiology,1 +experimental psychology,1 +experimental techniques,1 +experimental thermal and fluid science,1 +experiments in fluids,1 +expert evidence,1 +expert opinion on biological therapy,1 +expert opinion on drug delivery,1 +expert opinion on drug discovery,1 +expert opinion on drug metabolism and toxicology,1 +expert opinion on drug safety,1 +expert opinion on emerging drugs,1 +expert opinion on environmental biology,0 +expert opinion on investigational drugs,1 +expert opinion on medical diagnostics,1 +expert opinion on pharmacotherapy,1 +expert opinion on therapeutic patents,1 +expert opinion on therapeutic targets,1 +expert review of anti-infective therapy,1 +expert review of anticancer therapy,1 +expert review of cardiovascular therapy,1 +expert review of clinical immunology,1 +expert review of clinical pharmacology,1 +expert review of endocrinology & metabolism,1 +expert review of gastroenterology and hepatology,1 +expert review of hematology,1 +expert review of medical devices,1 +expert review of molecular diagnostics,1 +expert review of neurotherapeutics,1 +expert review of obstetrics and gynecology,0 +expert review of pharmacoeconomics and outcomes research,1 +expert review of proteomics,1 +expert review of respiratory medicine,1 +expert review of vaccines,1 +expert reviews in molecular medicine,1 +expert systems,1 +expert systems with applications,2 +explicator,1 +exploration,0 +exploration and mining geology,1 +exploration geophysics,1 +exploration of digital health technologies,0 +exploration of neuroscience,0 +explorations,0 +explorations in economic history,3 +explorations in media ecology,1 +explorations in renaissance culture,1 +exploratory research in clinical and social pharmacy,1 +explore: the journal of science and healing,1 +exploring diversity in entrepreneurship,0 +expositiones mathematicae,1 +expository times,1 +exposure and health,1 +express polymer letters,1 +expressions maghrebines,1 +extended abstracts on human factors in computing systems,0 +extrapolation,2 +extreme mechanics letters,1 +extremes,1 +extremophiles,1 +eye,1 +eye and contact lens-science and clinical practice,1 +eye and vision,-1 +eyesreg,0 +eyewear publishing,0 +eyvind johnson-sällskapets årsbok,-1 +eötvös loránd tudományegyetem,0 +eötvös loránd university,0 +ežegodnik finno-ugorskih issledovanij,1 +èlektronnoe priloženie k rossijskomu ûridičeskomu žurnalu,0 +éducation & didactique,0 +f & c edizioni,0 +f & f international,0 +f a davis company,0 +f&e,0 +f&s reports,1 +f&s science,1 +f1000 prime,0 +f1000research,1 +fabrica litterarum polono-italica,1 +fabrications,1 +fabrika komiksov,0 +fabrizio serra editore,1 +fabula,2 +facet publishing,1 +facets,1 +fachblatt des berufsverbandes österreichischer kunst- und werkerzieherinnen,-1 +fachhochschule nordwestschweiz,0 +fachsprache,2 +facial plastic surgery,1 +facial plastic surgery & aesthetic medicine,1 +facies,1 +facilities,2 +facta universitatis,1 +facta universitatis. series: mechanical engineering,0 +facta: a journal of roman material culture studies,1 +"facts, views & vision in obgyn",0 +facultad latinoamericana de ciencias sociales - flacso,0 +facultas,0 +faculty of maritime studies,0 +fadian jishu,-1 +fadls forlag a/s,1 +fafnir,2 +fagbokforlaget,1 +fahamu refugee legal aid newsletter,-1 +faili,-1 +fair play,-1 +fair play,1 +fairleigh dickinson university press,1 +faith and philosophy,2 +faits de langues,1 +fakes forgeries experts,-1 +faktori,-1 +fakultet muzičke umetnosti,0 +"fakulteta za organizacijske vede kranj, zalozba moderna organizacija",0 +falmer press,1 +familial cancer,1 +families in society: the journal of contemporary social services,1 +families systems & health,1 +"families, relationships and societies",1 +family & law,1 +family and community health,1 +family and community history,1 +family and consumer sciences research journal,1 +family business review,2 +family court review: an interdisciplinary journal,1 +family journal,1 +family law quarterly,1 +family medicine,1 +family medicine & medical science research,0 +family medicine & primary care review,0 +family medicine and community health,1 +family practice,2 +family process,2 +family relations,2 +"family science: global perspectives on research, policy and practice",1 +family transitions,1 +fao fisheries and aquaculture circular,-1 +fao fisheries and aquaculture proceedings,-1 +far east journal of mathematical education,1 +far east journal of theoretical statistics,1 +far eastern entomologist,0 +faraday discussions,1 +faravid,1 +farmacia,0 +farmaciâ,0 +farmakeutikī,0 +farmasia,-1 +farming and management,0 +farmiuutiset,-1 +faros,0 +fasciculi archaeologiae historicae,1 +fascism. journal of comparative fascism studies,1 +faseb bioadvances,0 +faseb journal,2 +fashion and textiles,1 +fashion colloquia,0 +fashion practice,1 +fashion studies,1 +fashion theory: the journal of dress body and culture,2 +"fashion, style & popular culture",1 +fasis,1 +fast capitalism,1 +fast-ls ltd,0 +fastcase,0 +fat studies,1 +fataburen nordiska museets,1 +fate in review,0 +fathering: a journal of theory and research about men as parents,1 +fatigue and fracture of engineering materials and structures,1 +faulkner journal,1 +fauna norvegica,1 +faventia,1 +faxuejia,0 +fazhi yu shehui,0 +fe dergi,0 +febs journal,2 +febs letters,1 +febs open bio,1 +federal law review,1 +federal probation,1 +federal reserve bank of st louis review,0 +federalismi.it,0 +federated conference on computer science and information systems,1 +fedoapress,1 +feedback,0 +feevale,0 +"felix ravenna: rivista di antichita ravennati, cristiane e byzantine",1 +felsefe tartışmaları,1 +felsőbbfokú tanulmányok intézete,0 +femina politica,1 +feminism and psychology,1 +feminist criminology,2 +feminist economics,1 +feminist encounters,1 +feminist formations,1 +feminist legal studies,2 +feminist media histories,1 +feminist media studies,2 +feminist review,2 +feminist studies,2 +feminist theology,1 +feminist theory,3 +feministische studien,1 +feminists@law,1 +fems immunology and medical microbiology,1 +fems microbes,1 +fems microbiology ecology,1 +fems microbiology letters,1 +fems microbiology reviews,2 +fems yeast research,1 +fenestra finnorum,-1 +fennia,1 +fenno-ugrica suecana,1 +fenno-ugrica suecana. nova series,1 +fenno-ugristica,1 +fennoscandia archaeologica,2 +fermentation,0 +fern gazette,1 +fernwood publishing,1 +ferrantia,0 +ferroelectrics,1 +ferroelectrics letters section,1 +fertility and sterility,3 +ferðamál á norðurslóðum,0 +fetal and maternal medicine review,1 +fetal and pediatric pathology,1 +fetal diagnosis and therapy,1 +few-body systems,1 +ff communications,2 +ff network,0 +fgi publications,0 +fgi reports,0 +fh oö forschungs- & entwicklungs gmbh,0 +fiatal írók szövetsége,0 +fib fédération internationale du béton,0 +fib symposium proceedings,1 +fiber and integrated optics,1 +fibers,0 +fibers and polymers,1 +fibonacci quarterly,1 +fibre chemistry,1 +fibreculture journal: internet theory criticism research,1 +fibres and textiles in eastern europe,1 +fibrogenesis & tissue repair,0 +fichl publication series,0 +fichte-studien,1 +fiction international,1 +fiddlehead,1 +fidea,-1 +fiducia,0 +field and vegetable crops research,1 +field bryology,0 +field crops research,2 +field methods,2 +fields institute communications,1 +fieldwork in religion,1 +fifteenth-century studies,1 +figura,0 +figurationen: gender - literatur - kultur,1 +fiia analysis,-1 +fiia reports,1 +fiib business review,1 +filander verlag,1 +filatelisti,-1 +fillari,-1 +film and history,1 +film criticism,1 +film history: an international journal,2 +film international,1 +film quarterly,2 +"film, fashion & consumption",1 +film-philosophy,1 +filmarchiv austria,0 +filmhistoria,1 +filmihullu,-1 +filmiverkko ry,0 +filogi,0 +filologia,1 +filologia antica e moderna,1 +filologia e critica,0 +filologia italiana,1 +filologia mediolatina: rivista della fondazione ezio franceschini,2 +filologia neotestamentaria,1 +filologija,1 +filologiâ i ?elovek,1 +filologiâ masalalari,0 +filologičeskie nauki : naučnye doklady vysšej školy,0 +filologičeskie nauki v mgimo,0 +filologičeskij klass,1 +filomat,1 +filosofia,1 +filosofia e questioni pubbliche,1 +filosofia unisinos,1 +filosofia: international journal of philosophy,1 +filosoficky casopis,1 +filosofija-sociologija,1 +filosofisia tutkimuksia helsingin yliopistosta,0 +filosofisk supplement,0 +filosofisk tidskrift,1 +filosofiska notiser,0 +filosofiâ,0 +filosofiâ hozâjstva,1 +filosofiâ i kul’tura,1 +filosofiâ nauki,1 +filosofiâ obrazovaniâ,1 +filosofiâ prava,1 +filosofiâ social’nyh kommunikacij,1 +filosofski alternativi,1 +filosofskie nauki,1 +filoteknos,0 +filozofia,1 +filozofia nauki,1 +filozofija i drustvo,1 +filozofska istrazivanja,1 +filozofski fakultet - izdavačka delatnost,0 +"filozofski fakultet, univerzitet ""sv. kiril i metodij"" skopje",0 +filozofski vestnik,1 +filtration,1 +filtration and separation,1 +filtration industry analyst,1 +"fimea kehittää, arvioi ja informoi",-1 +fimecc publications series,-1 +final program and proceedings : color and imaging conference,0 +finance,1 +finance a uver,0 +finance and society,0 +finance and stochastics,2 +finance india,1 +finance research letters,1 +financial accountability and management,1 +financial analysts journal,1 +financial counseling and planning,1 +financial history,1 +financial history review,1 +financial innovation,1 +financial management,2 +financial markets and portfolio management,1 +"financial markets, institutions and instruments",1 +"financial markets, institutions and risks",0 +financial review,1 +financial services review,1 +financial times,-1 +financial times music and copyright,0 +finans,0 +finanssi- ja vakuutuskustannus oy finva,0 +finanzarchiv,1 +finbion julkaisuja,0 +fincent publication series,-1 +findecon monograph series,0 +fingrid oyj,0 +finisterra,0 +finite elements in analysis and design,1 +finite fields and their applications,1 +finlands svenska andelsförbund,0 +finlands svenska folkdansring,0 +finlandssvenska kompetenscentret inom det sociala området,0 +finn lectura,0 +finn-brits,-1 +finn-kultur,-1 +finnanest,0 +finnisch-ugrische forschungen,3 +finnisch-ugrische mitteilungen,1 +finnische beiträge zur germanistik,1 +finnish business review,0 +finnish dance in focus,-1 +finnish defence studies,1 +finnish foreign policy papers,-1 +finnish journal for romanian studies,0 +finnish journal of ehealth and ewelfare,1 +finnish journal of linguistics,1 +finnish journal of social research,1 +finnish music quarterly,0 +finnish society for aesthetics publication series,0 +finnish yearbook of international law,1 +finnish yearbook of population research,1 +finno-ugric languages and linguistics,1 +finno-ugric studies association of canada,0 +fino traço editora,0 +finra ry,0 +finsk tidskrift,1 +finska läkaresällskapets handlingar,1 +fire,0 +fire and materials,1 +fire ecology,1 +fire research,0 +fire safety journal,2 +fire safety science,1 +fire technology,2 +firenze university press,1 +firera & liuzzo publishing,1 +first break,1 +first language,2 +first monday,2 +first world war studies,1 +fiscal studies,1 +fischer taschenbuch verlag - forum wissenschaft hochschule,1 +fish and fisheries,3 +fish and shellfish immunology,1 +fish pathology,1 +fish physiology and biochemistry,1 +fisheries,1 +fisheries management and ecology,1 +fisheries oceanography,2 +fisheries research,2 +fisheries science,1 +fishery bulletin,1 +fishes,0 +fisioterapia,1 +fiskarposten,-1 +fiskeritidskrift för finland,-1 +fit monograph series/collection,1 +fitispos international journal,0 +fitoterapia,1 +fixed point theory,1 +fizika metalliv i metallovedenie,1 +fizika nizkih temperatur,0 +flash art,-1 +flatchem,1 +flattiviesti,-1 +flavour,1 +flavour and fragrance journal,1 +fle learning,0 +fleischwirtschaft,1 +fleischwirtschaft international,0 +fleks,1 +flexible and printed electronics,2 +flexible services and manufacturing journal,1 +flick studio,0 +flinders law journal,1 +flinta,0 +flora,1 +flora mediterranea,0 +florentia iliberritana,1 +floriculture and ornamental biotechnology,0 +florida entomologist,1 +florida state open publishing,0 +florida tax review,1 +florilegium,1 +flow measurement and instrumentation,2 +flow turbulence and combustion,1 +fluctuation and noise letters,1 +fluid dynamics,1 +fluid dynamics and materials processing,1 +fluid dynamics research,1 +fluid mechanichs and its application,1 +fluid phase equilibria,1 +fluids,0 +fluids and barriers of the cns,1 +fluminensia,1 +fluoride,1 +flux,0 +fly,1 +fly for points,0 +fmcad,1 +fme transactions,1 +fmsera journal,1 +fnes vaalivälähdykset,-1 +fng research,1 +focaal: european journal of anthropology,2 +focus : journal of international business,1 +focus junior,-1 +focus localis,1 +focus on alternative and complementary therapies,1 +focus on autism and other developmental disabilities,1 +focus on catalysts,1 +focus on exceptional children,1 +focus on pigments,1 +focus on powder coatings,1 +focus on surfactants,1 +foi-komers,0 +fokus på familien,1 +folia biologica,1 +folia biologica: krakow,1 +folia cryptogamica estonica,1 +folia estonica,1 +folia ethnographica,1 +folia geobotanica,1 +folia histochemica et cytobiologica,1 +folia historiae artium,1 +folia linguistica,2 +folia linguistica et litteraria,0 +folia linguistica historica,2 +folia malacologica,-1 +folia malaysiana,0 +folia medica,0 +folia microbiologica,1 +folia morphologica,1 +folia neuropathologica,1 +folia onomastica croatica,1 +folia orientalia,1 +folia parasitologica,1 +folia phoniatrica et logopaedica,1 +folia praehistorica posnaniensia,1 +folia primatologica,1 +folia scandinavica posnaniensia,1 +folia uralica debreceniensia,1 +folk life,1 +folk music journal,1 +folk och musik,-1 +"folk, knowledge, place",-1 +folkdansforskning i norden,0 +folklivsstudier,0 +folklore,2 +folkloristiikan julkaisuja,0 +folkloristiikan toimite,0 +folkloristika,1 +folkmålsstudier,2 +fondacija za regionalno razvitie,0 +fondation européenne d'études progressistes,0 +fondation louis de broglie,1 +fondazione cisam,1 +fondazione politecnico di milano,0 +fondo de cultura economica,0 +fondo editorial universidad eafit,1 +fonetica si dialectologie,1 +fontana media,0 +fontes archaeologici posnanienses,1 +fontes artis musicae,1 +fonti musicali italiane,1 +food additives and contaminants part a: chemistry analysis control exposureand risk assessment,1 +food additives and contaminants part b: surveillance issn,1 +food analytical methods,1 +food and agricultural immunology,1 +food and agriculture organization of the united nations,0 +food and bioprocess technology,1 +food and bioproducts processing,1 +food and chemical toxicology,1 +food and drug law journal,1 +food and energy security,1 +food and environmental virology,1 +food and foodways,1 +food and function,1 +food and history,2 +food and humanity,1 +food and nutrition bulletin,1 +food and nutrition research,1 +food and waterborne parasitology,1 +food australia,1 +food biophysics,1 +food bioscience,1 +food biotechnology,1 +food chemistry,2 +food chemistry advances,1 +food chemistry x,1 +food control,2 +food engineering reviews,1 +food ethics,1 +food frontiers,1 +food hydrocolloids,3 +food hygiene and safety science,1 +food innovation and advances,0 +food microbiology,2 +food packaging and shelf life,1 +food policy,2 +food quality and preference,2 +food quality and safety,1 +food research international,2 +food reviews international,2 +food safety and risk,1 +food science & nutrition,1 +food science and biotechnology,1 +food science and human wellness,1 +food science and technology,1 +food science and technology international,1 +food science and technology research,1 +food security,1 +food structure,1 +food studies,1 +food studies press,0 +food technology,1 +food technology and biotechnology,1 +food webs,1 +"food, culture and society",1 +foodborne pathogens and disease,1 +foods,0 +foot,1 +foot and ankle clinics,1 +foot and ankle international,1 +foot and ankle surgery,1 +footprint,1 +footwear science,1 +for the learning of mathematics,1 +forbes,0 +forced migration review,0 +forces in mechanics,0 +fordham international law journal,2 +fordham journal of corporate & financial law,1 +fordham law review,1 +fordham university press,2 +fordítástudomány,0 +forecasting,0 +foreign affairs,1 +foreign economies and management,0 +foreign language annals,2 +foreign language teaching and research press,0 +foreign languages press,1 +foreign literature studies,1 +foreign policy,1 +foreign policy analysis,1 +forensic anthropology,0 +forensic chemistry,1 +forensic imaging,1 +forensic science international,2 +forensic science international : synergy,1 +forensic science international: animals and environments,0 +forensic science international: digital investigation,1 +forensic science international: genetics,3 +forensic science international: genetics supplement series,1 +forensic science international: reports,1 +forensic science policy & management,1 +"forensic science, medicine and pathology",1 +forensic sciences,0 +forensic sciences research,1 +forensic toxicology,1 +fores,0 +foresight,1 +forest ecology and management,3 +forest ecosystems,1 +forest pathology,1 +forest policy and economics,2 +forest products journal,1 +forest products society,1 +forest research institute,0 +forest science,1 +forest systems,1 +forestry,2 +forestry chronicle,0 +forestry research,0 +forestry studies,1 +forestry studies in china,1 +forests,0 +forests monitor,1 +"forests, trees and livelihoods",1 +forktail,1 +forlag1,1 +forlaget ajour,1 +forlaget anis,1 +forlaget hexis,1 +forlaget hikuin,1 +forlaget kolon,1 +form,-1 +form,0 +forma y funcion,1 +formakademisk,1 +formal aspects of computing,2 +formal methods in system design,2 +formalized mathematics,1 +formalpress,0 +formatex research center,0 +formath,1 +formation emploi,1 +formazione & insegnamento,0 +formulary,1 +formules: revue des creations formelles,1 +fornvannen,1 +foro amministrativo,1 +foro de derecho mercantil,1 +foro de educación,1 +foro hispanico,1 +foro internacional,1 +foro italiano,1 +forsait,0 +forschung im ingenieurwesen-engineering research,1 +forschungen zu burgen und schlossern,1 +forschungen zur osteuropäischen geschichte,1 +forschungen zur volks- und landeskunde,1 +forschungsjournal soziale bewegungen,0 +forskning & forandring,1 +forskning för framåt,-1 +forskning för kyrkan,1 +forskning om undervisning och lärande,1 +forskningspolitikk,-1 +forskningsrapporter,0 +forskningsrapporter från svenska handelshögskolan,0 +forskningsrapporter från husö biologiska station,-1 +forssan lehti,-1 +forstmaschinen-profi,-1 +fortid,0 +fortress press,1 +fortschritte der neurologie psychiatrie,1 +fortschritte der physik-progress of physics,1 +fortune,0 +forum,0 +forum,1 +forum 24,-1 +forum archaeologiae: zeitschrift fur klassische archaologie,1 +forum der psychoanalyse,1 +forum editrice universitaria udinese,0 +forum for anthropology and culture,1 +forum for development studies,1 +forum for international research in education,1 +forum for modern language studies,1 +forum for nordic dermato-venereology,1 +forum for social economics,1 +forum for world literature studies,1 +forum för antroposofi,-1 +forum für osteuropäische ideen- und zeitgeschichte,0 +forum historiae,0 +forum holzbau,0 +forum homosexualitat und literatur,1 +forum italicum,1 +forum iuris,0 +forum kinder- und jugendsport,0 +forum kritische psychologie,1 +forum mathematicum,2 +forum modernes theater,1 +forum navale,0 +forum noveyshey vostochnoevropeyskoy istorii i kul¿tury,0 +"forum of mathematics, pi",3 +"forum of mathematics, sigma",2 +forum of nutrition,1 +forum of slavic cultures,0 +forum pedagogiczne,0 +forum qualitative sozialforschung,1 +forum recht,-1 +forum scientiae oeconomia,0 +forum sociológico,1 +forum stadt,1 +forum wohnen und stadtentwicklung,-1 +forum: a journal of applied research in contemporary politics,1 +forum: international journal of interpretation and translation,1 +forumsprache,0 +forvaltningsrattslig tidskrift,1 +fossa,0 +fossil imprint,1 +fossil record,1 +fotoaparát,-1 +fotogeschichte,1 +fotogrammetrian ja kaukokartoituksen seura,0 +fottea,1 +foucault studies,1 +foundation: the international review of science fiction,1 +foundations and trends in accounting,1 +foundations and trends in communications and information theory,1 +foundations and trends in econometrics,1 +foundations and trends in electronic design automation,0 +foundations and trends in entrepreneurship,0 +foundations and trends in finance,1 +foundations and trends in human-computer interaction,1 +foundations and trends in information retrieval,3 +foundations and trends in information systems,1 +foundations and trends in machine learning,3 +foundations and trends in marketing,1 +foundations and trends in robotics,1 +foundations and trends in signal processing,-1 +foundations and trends in systems and control,1 +foundations and trends in web science,1 +foundations of chemistry,0 +foundations of computational mathematics,3 +foundations of data science,1 +foundations of genetic algorithms,1 +foundations of management,1 +foundations of materials science and engineering,0 +foundations of physics,1 +foundations of science,1 +four courts press,1 +fourrages,1 +fourth genre: explorations in nonfiction,1 +fpga world conference,0 +fractal and fractional,0 +fractals: complex geometry patterns and scaling in nature and society,1 +fractional calculus and applied analysis,1 +frame,0 +framespa,0 +framework: the journal of cinema and media,1 +fran-su,-1 +francais moderne,2 +francia,1 +franciscan studies,1 +francke verlag,1 +franco cesati editore,0 +francoangeli,1 +francophone postcolonial studies,1 +francosphères,1 +frank & timme,1 +frank cass publishers,1 +frankfurter allgemeine,-1 +frankfurter elektronische rundschau zur altertumskunde,1 +frankfurter judaistische beitrage,1 +franz steiner verlag,2 +franzbecker,0 +fratelli lega,0 +frattura ed integrità strutturale,1 +fraunhofer verlag,0 +fraunhofer-institut für zuverlässigkeit und mikrointegration,0 +fredsposten,-1 +free & equal,1 +free neuropathology,1 +free radical biology and medicine,1 +free radical research,1 +freiburger zeitschrift fur philosophie und theologie,1 +freie universität berlin,0 +freie universität berlin : institut für publizistik- und kommunikationswissenschaft,0 +freie universität berlin universitätsbibliothek,0 +fremdsprache deutsch: zeitschrift fur die praxis des deutschunterrichts,1 +fremdsprachen lehren und lernen,0 +fremdsprachen und hochschule,1 +french australian review,1 +french colonial history,1 +french cultural studies,1 +french forum,1 +french historical studies,1 +french history,2 +french journal for media research,1 +french politics,1 +"french politics, culture and society",-1 +french review,2 +french studies,3 +frequenz,0 +fresenius environmental bulletin,0 +fresh produce journal,0 +freshwater biology,2 +freshwater crayfish,1 +freshwater reviews,1 +freshwater science,1 +fri tanke,0 +friction,1 +friedrich-alexander-universität erlangen-nürnberg,0 +friedrich-ebert-stiftung,0 +fritzes,1 +frodskaparrit: annales societatis scientiarum faeroensis,1 +from science to policy,-1 +from the european south,1 +fromm-forum,0 +frommann-holzboog,1 +fronesis,-1 +fronteiras,1 +frontiers for young minds,-1 +frontiers in aging,0 +frontiers in aging neuroscience,1 +frontiers in agronomy,0 +frontiers in allergy,0 +frontiers in animal science,0 +frontiers in applied mathematics and statistics,0 +frontiers in artificial intelligence,1 +frontiers in artificial intelligence and applications,1 +frontiers in astronomy and space sciences,0 +frontiers in behavioral neuroscience,0 +frontiers in big data,1 +frontiers in bioengineering and biotechnology,0 +frontiers in bioinformatics,1 +frontiers in bioscience,1 +frontiers in bioscience - elite,0 +frontiers in bioscience - scholar,0 +frontiers in blockchain,0 +frontiers in built environment,0 +frontiers in cancer control and society,0 +frontiers in cardiovascular medicine,1 +frontiers in cell and developmental biology,0 +frontiers in cellular and infection microbiology,0 +frontiers in cellular neuroscience,0 +frontiers in chemical engineering,0 +frontiers in chemistry,0 +frontiers in child and adolescent psychiatry,0 +frontiers in climate,1 +frontiers in clinical diabetes and healthcare,0 +frontiers in communication,0 +frontiers in communications and networks,0 +frontiers in computational neuroscience,1 +frontiers in computer science,1 +frontiers in conservation science,0 +frontiers in control engineering,0 +frontiers in dental medicine,1 +frontiers in dentistry,0 +frontiers in digital health,0 +frontiers in drug delivery,0 +frontiers in earth science,1 +frontiers in ecology and evolution,1 +frontiers in ecology and the environment,2 +frontiers in education,0 +frontiers in electronics,0 +frontiers in endocrinology,0 +frontiers in energy,1 +frontiers in energy research,0 +frontiers in environmental archaeology,0 +frontiers in environmental chemistry,0 +frontiers in environmental economics,0 +frontiers in environmental science,1 +frontiers in finance and economics,0 +frontiers in food science and technology,0 +frontiers in forests and global change,0 +frontiers in fungal biology,0 +frontiers in gastroenterology,0 +frontiers in genetics,1 +frontiers in genome editing,0 +frontiers in global women’s health,0 +frontiers in health services,0 +frontiers in heat and mass transfer,1 +frontiers in hematology,0 +frontiers in human dynamics,0 +frontiers in human neuroscience,0 +frontiers in ict,0 +frontiers in immunology,1 +frontiers in insect science,0 +frontiers in integrative neuroscience,0 +frontiers in lab on a chip technologies,0 +frontiers in manufacturing technology,0 +frontiers in marine science,0 +frontiers in materials,0 +frontiers in mechanical engineering,0 +frontiers in medical technology,0 +frontiers in medicine,0 +frontiers in microbiology,0 +frontiers in molecular biosciences,0 +frontiers in molecular medicine,0 +frontiers in molecular neuroscience,0 +frontiers in nanotechnology,0 +frontiers in nephrology,0 +frontiers in network physiology,-1 +frontiers in neural circuits,0 +frontiers in neuroanatomy,0 +frontiers in neuroendocrinology,1 +frontiers in neuroengineering,0 +frontiers in neuroergonomics,0 +frontiers in neuroinformatics,0 +frontiers in neurology,1 +frontiers in neurorobotics,0 +frontiers in neuroscience,1 +frontiers in nuclear engineering,0 +frontiers in nutrition,0 +frontiers in oncology,0 +frontiers in ophthalmology,0 +frontiers in oral health,1 +frontiers in organizational psychology,0 +frontiers in pain research,0 +frontiers in pediatrics,0 +frontiers in pharmacology,0 +frontiers in physics,0 +frontiers in physiology,0 +frontiers in plant science,0 +frontiers in political science,1 +frontiers in psychiatry,0 +frontiers in psychology,1 +frontiers in public health,0 +frontiers in radiology,0 +frontiers in rehabilitation sciences,0 +frontiers in remote sensing,1 +frontiers in reproductive health,0 +frontiers in research metrics and analytics,0 +frontiers in robotics and ai,0 +frontiers in sensors,0 +frontiers in signal processing,1 +frontiers in sleep,-1 +frontiers in smart grids,0 +frontiers in social psychology,-1 +frontiers in sociology,0 +frontiers in soil science,-1 +frontiers in sports and active living,0 +frontiers in stroke,0 +frontiers in surgery,0 +frontiers in sustainability,0 +frontiers in sustainable cities,0 +frontiers in sustainable food systems,1 +frontiers in synaptic neuroscience,0 +frontiers in systems neuroscience,1 +frontiers in the internet of things,0 +frontiers in toxicology,0 +frontiers in transplantation,0 +frontiers in urology,0 +frontiers in veterinary science,1 +frontiers in virology,0 +frontiers in virtual reality,1 +frontiers in zoology,1 +frontiers media,0 +frontiers of architectural research,2 +frontiers of biogeography,1 +frontiers of chemical science and engineering,1 +frontiers of computer science,0 +frontiers of digital education,0 +frontiers of earth science,1 +frontiers of education in china,1 +frontiers of engineering management,0 +frontiers of environmental science & engineering,1 +frontiers of gastrointestinal research,1 +frontiers of hormone research,1 +frontiers of information technology & electronic engineering,1 +frontiers of law in china,1 +frontiers of materials science,-1 +frontiers of mathematics in china,1 +frontiers of mechanical engineering,1 +frontiers of medicine,0 +frontiers of narrative studies,2 +frontiers of neurology and neuroscience,1 +frontiers of optoelectronics,1 +frontiers of physics,1 +frontiers of radiation therapy and oncology,1 +frontiers of socio-legal studies,-1 +frontiers of structural and civil engineering,1 +frontiers: a journal of women studies,0 +frontline gastroenterology,1 +frontline learning research,1 +fruct oy,0 +fruhmittelalterliche studien,1 +fruhneuzeit-info,1 +fruits,1 +fródskapur,1 +fs (forest and society),0 +fteval journal for research and technology policy evaluation,0 +fu jen studies: literature and linguistics,1 +fudan journal of the humanities and social sciences,1 +fudan university press,1 +fuel,2 +fuel and energy abstracts,0 +fuel cells,1 +fuel cells bulletin,1 +fuel communications,1 +fuel processing technology,1 +fuels,0 +fuels & lubes international,0 +fujitsu scientific & technical journal,0 +fukui kenritsu kyouryuu hakubutsukan kiyou,1 +fulbright finland news,-1 +"fullerenes, nanotubes, and carbon nanostructures",1 +functional analysis and its applications,1 +functional and integrative genomics,1 +functional differential equations,1 +functional ecology,3 +functional linguistics,1 +functional materials,1 +functional materials letters,1 +functional neurology,1 +functional plant biology,1 +functiones et approximatio: commentarii mathematici,1 +functions of language,2 +fund og forskning i det kongelige biblioteks samlinger,1 +fundacion infancia y aprendizaje,1 +fundación arquitectura coam,0 +fundación cidob,0 +fundación española de historia moderna,0 +fundación p.i.e.b.,0 +fundacja interdisciplinary research foundation,0 +fundacja rozwoju systemu edukacji,0 +fundamenta informaticae,1 +fundamenta mathematicae,1 +fundamental and applied limnology,1 +fundamental and clinical pharmacology,1 +fundamental research,1 +fundamina,1 +funde und ausgrabungen im bezirk trier,1 +fungal biology,1 +fungal biology and biotechnology,1 +fungal biology reviews,1 +fungal diversity,3 +fungal ecology,1 +fungal genetics and biology,1 +fungal systematics and evolution,1 +fungi,0 +funkcialaj ekvacioj : serio internacia,1 +furniture history,1 +fusion engineering and design,1 +fusion science and technology,1 +futura,1 +future anterior: journal of historic preservation history theory and criticism,2 +future cities and environment,1 +future energy,1 +future farming,-1 +future foods,1 +future generation computer systems: the international journal of grid computing: theory methods and applications,3 +future in educational research,0 +future internet,0 +future internet assembly,0 +future journal of social sciences,0 +future medicinal chemistry,1 +future medicine ltd,0 +future microbiology,1 +future neurology,0 +future of children,2 +"future of food : journal on food, agriculture and society",0 +future oncology,1 +future pharmacology,0 +future rare diseases,0 +future science oa,0 +future sustainability,-1 +future technology,0 +future transportation,0 +future virology,1 +futures,2 +futures & foresight science,1 +futuri,-1 +futuribles,1 +futurist,1 +futurum,-1 +futuuri,-1 +futy journal of the environment,0 +fuzzy economic review,1 +fuzzy information and engineering,1 +fuzzy optimization and decision making,1 +fuzzy sets and systems,1 +fysi,-1 +fysioterapeuten,1 +fysioterapia,-1 +fédération internationale des professeurs de français,0 +fìlologìčnì studìï,0 +fìnansovo-kreditna dìâlʹnìstʹ : problemi teorìì̈ ta praktiki,0 +fìzika ì hìmìâ tverdogo tìla,0 +fólio,-1 +fórum társadalomtudományi szemle,1 +földtani közlöny,1 +fördervereinigung fluidtechnik,1 +föreningen brage,0 +föreningen för nordisk filologi,0 +föreningen mediehistoriskt arkiv,1 +företagare,-1 +företagsnyckeln,-1 +förlaget m ab oy,0 +förlagsaktiebolaget scriptum,0 +förskoletidningen,-1 +försvarshögskolan,0 +förvaltningshögskolan vid göteborgs universitet,0 +føroya fródskaparfelag,1 +g. giappichelli editore,0 +g.b. palumbo & c. editore,1 +"g3: genes, genomes, genetics",2 +gabi journal,0 +gaceta medica de mexico,1 +gad,1 +gaia: ecological perspectives for science and society,1 +gait and posture,1 +gakko kaizen kenkyu kiyo,0 +galaad edizioni,0 +galaktika media : žurnal media issledovanij,1 +galaxies,0 +galenos yayinevi,0 +galerie,0 +galileana: journal of galilean studies,1 +gallaudet university press,1 +gallen-kallelan museo,0 +gallia prehistoire,1 +gallia: fouille et monuments en france metropolitaine,1 +gallimard,2 +galpin society journal,1 +galvanotechnik,1 +gambling research,0 +game & puzzle design,1 +game studies: the international journal of computer game research,2 +game: the italian journal of game studies,0 +games,0 +games,1 +games and culture: a journal of interactive media,3 +games and economic behavior,2 +games for health,1 +gamevironments,1 +gamtamokslinis ugdymas,0 +gangemi editore,0 +ganhanqu dili,0 +gaodeng gongcheng jiaoyu yanjiu,0 +gaoxiao jiaoyu guanli,0 +gapa press,0 +garamond,0 +garant,1 +garden history,1 +garland science publishing,1 +garnet education,0 +gas for energy,-1 +gastric cancer,2 +gastro hep advances,1 +gastroenterologiahoitajat,-1 +gastroenterology,3 +gastroenterology and hepatology from bed to bench,1 +gastroenterology clinics of north america,1 +gastroenterology nursing,1 +gastroenterology report,-1 +gastroenterology research,0 +gastroenterology research and practice,1 +gastrohhep.com,1 +gastrointestinal endoscopy,1 +gastrointestinal tumors,1 +gates open research,0 +gatherings: the heidegger circle annual,1 +gaudeamus,2 +gay and lesbian issues and psychology review,1 +gayana,1 +gayana botanica,1 +"gaz, woda i technika sanitarna",0 +gazeta wyborcza,-1 +gazi mühendislik bilimleri dergisi,0 +gazzetta medica italiana : archivio per le scienze mediche,1 +gazō fugōka shinpojiumu,0 +gdańskie studia prawnicze,0 +gdmb verlag,0 +gea college,0 +geburtshilfe und frauenheilkunde,1 +gedisa,0 +gedrag and organisatie,1 +geenivarat,-1 +gefahrstoffe reinhaltung der luft,1 +gefasschirurgie,1 +gegenwartsliteratur,1 +gels,0 +gem,1 +gema online,0 +gematologiya i transfuziologiya,1 +gemmae,1 +gems and gemology,1 +gender,1 +gender a výzkum,0 +gender and development,1 +gender and education,3 +gender and history,3 +gender and language,2 +gender and politics,3 +gender and society,3 +gender in management: an international journal,1 +gender issues,1 +gender medicine,1 +gender studies and policy review,0 +"gender, place and culture",2 +"gender, technology and development",1 +"gender, work and organization",3 +genders,1 +gene,1 +gene conserve,1 +gene expression,1 +gene expression patterns,1 +gene regulation and systems biology,1 +gene reports,1 +gene technology,0 +gene therapy,1 +gene therapy and molecular biology,1 +gene therapy and regulation,1 +gene x,1 +genealogy,0 +genealogy+critique,-1 +general and comparative endocrinology,1 +general chemistry,0 +general hospital psychiatry,1 +general medicine open,0 +general physiology and biophysics,1 +general psychiatry,-1 +general relativity and gravitation,1 +general systems bulletin,0 +generalitat de catalunya,0 +generations: journal of the american society on aging,1 +genereviews,1 +genes,0 +genes and development,3 +genes and environment,1 +genes and genetic systems,1 +genes and genomics,1 +genes and immunity,1 +genes and nutrition,1 +genes brain and behavior,1 +genes chromosomes and cancer,1 +genes to cells,1 +genesis,1 +genesis: revue internationale de critique genetique,1 +genetic counseling,1 +genetic engineering and biotechnology news,1 +genetic epidemiology,1 +genetic programming and evolvable machines,1 +genetic resources,1 +genetic resources and crop evolution,1 +genetic testing and molecular biomarkers,1 +genetica,1 +genetics,2 +genetics and molecular biology,1 +genetics and molecular research,0 +genetics in medicine,3 +genetics in medicine open,-1 +genetics research,1 +genetics selection evolution,2 +genetika,1 +geneva centre for security policy,0 +geneva papers on risk and insurance-issues and practice,1 +geneva risk and insurance review,1 +gengo bunka to nihongo ky?iku,0 +genocide studies international,1 +genome,1 +genome biology,3 +genome biology and evolution,2 +genome medicine,3 +genome research,3 +genomics,1 +genomics data,1 +genomics society and policy,1 +"genomics, proteomics and bioinformatics",1 +genos,1 +genova university press,-1 +genre,1 +genshōgaku nempō,0 +genueve ediciones,0 +genus,1 +genusstudier vid mittuniversitetet,0 +geo,1 +geo-marine letters,1 +geo-spatial information science,1 +geoacta,1 +geoarabia,1 +geoarchaeology: an international journal,2 +geobiology,2 +geobios,1 +geocarto international,0 +geochemical journal,1 +geochemical perspectives letters,2 +geochemical transactions,1 +geochemistry geophysics geosystems,2 +geochemistry international,1 +geochemistry: exploration environment analysis,1 +geochimica et cosmochimica acta,2 +geochronology,1 +geochronometria,1 +geoderma,2 +geoderma regional,1 +geodesy and cartography,1 +geodetski list,1 +geodetski vestnik,1 +geodinamika i tektonofizika,1 +geodiversitas,1 +geoenergy,0 +geoenergy science and engineering,1 +geofisica internacional,1 +geofizika,1 +geofizičeskie issledovaniâ,0 +geofluids,1 +geofoor,-1 +geofoorumi,-1 +geoforum,3 +geoforum perspektiv,0 +geofysiikan päivät,-1 +geografia fisica e dinamica quaternaria,1 +geograficidade,0 +geografie,-1 +geografie,1 +geografisk tidsskrift: danish journal of geography,1 +geografiska annaler series a: physical geography,1 +geografiska annaler series b: human geography,2 +geografiska notiser,1 +geographia antiqua,1 +geographia polonica,1 +geographica bernensia,1 +geographica helvetica,1 +geographica pannonica,0 +geographical analysis,2 +geographical journal,1 +geographical research,1 +geographical review,1 +geographie economie societe,1 +geographie physique et quaternaire,1 +geographies,0 +geographische rundschau,1 +geographische zeitschrift,1 +geography,1 +geography and sustainability,1 +geography compass,2 +"geography, environment and sustainability",1 +geohealth,1 +geoheritage,1 +geohumanities,1 +geoinformatica,1 +geojournal,1 +geojournal of tourism and geosites,1 +geokhimiya,1 +geologi,0 +geologia croatica,1 +geologian tutkimuskeskus,0 +geologica acta,1 +geologica belgica,1 +geologica carpathica,1 +geological association of canada,1 +geological association of canada: special paper,1 +geological journal,1 +geological magazine,1 +geological quarterly,1 +geological society,1 +geological society of america,1 +geological society of america bulletin,2 +geological society special publication,1 +geological survey of finland : bulletin,1 +geology,3 +geology of ore deposits,1 +geology today,1 +"geology, ecology, and landscapes",1 +"geology, geophysics & environment",0 +geomagnetism and aeronomy,1 +geomatica,1 +geomatics natural hazards & risk,1 +geombinatorics,1 +geomechanics and engineering,1 +geomechanics and geoengineering,1 +geomechanics and geophysics for geo-energy and geo-resources,1 +geomechanics for energy and the environment,1 +geometriae dedicata,2 +geometric and functional analysis,3 +geometry and topology,3 +geometry and topology monographs,1 +geomicrobiology journal,1 +geomorphologie: relief processus environnement,1 +geomorphology,1 +geophysica,1 +geophysical and astrophysical fluid dynamics,1 +geophysical journal international,1 +geophysical monographs,1 +geophysical prospecting,1 +geophysical research letters,3 +geophysics,1 +geopolitica (dublin),0 +geopolitics,3 +geopolitics under globalization,1 +"geopolitics, history, and international relations",1 +georg,0 +georg editeur,1 +georg olms verlag,1 +georg thieme verlag,1 +georg-eckert-insitut für internationale schulbuchforschung,1 +george mason university press,1 +george washington law review,1 +georgetown immigration law journal,1 +georgetown journal of international affairs,0 +georgetown journal of international law,1 +georgetown journal of legal ethics,1 +georgetown law journal,2 +georgetown university press,1 +georgia review,1 +georgia tech school of interactive computing,0 +georgian mathematical journal,1 +"georgica: zeitschrift fur kultur, sprache und geschichte georgiens und kaukasiens",1 +georisk,1 +geoscience canada,1 +geoscience communication,1 +geoscience frontiers,1 +geoscience letters,1 +geosciences,0 +geosciences and engineering,-1 +geosciences journal,1 +"geoscientific instrumentation, methods and data systems",0 +"geoscientific instrumentation, methods and data systems discussions",0 +geoscientific model development,3 +geoscientific model development discussions,0 +geospatial health,1 +geosphere,1 +geostandards and geoanalytical research,1 +geosynthetics international,1 +geosystem engineering,1 +geosystems and geoenvironment,1 +geotechnical and geological engineering,1 +geotechnical engineering,1 +geotechnical report,-1 +geotechnical testing journal,1 +geotechnik,1 +geotechnique,3 +geotectonics,1 +geotema,1 +geotextiles and geomembranes,2 +geothermal energy,1 +geothermal energy science,1 +geothermics,1 +geotropico,1 +geoturystyka,0 +geowissenschaftliche mitteilungen,0 +geriatric care,1 +geriatric nursing,1 +geriatric orthopaedic surgery & rehabilitation,1 +geriatrics,0 +geriatrics and aging,1 +geriatrics and gerontology international,1 +gerion,1 +german as a foreign language,2 +german economic review,1 +german history,2 +german journal of human resource management,1 +german journal of psychiatry,1 +german law journal,2 +german life and letters,2 +german medical science,1 +german microwave conference,-1 +german monitor,1 +german politics,1 +german politics and society,1 +german quarterly,2 +german studies review,1 +german yearbook of international law,1 +germania,2 +germanic review,3 +germanisch-romanische monatsschrift,3 +germanistik : deutsche sprach- und literaturwissenschaft,1 +germanistik : internationales referatenorgan mit bibliographischen hinweisen,1 +germanistika i skandinavistika,-1 +germanistische linguistik,1 +germanistische mitteilungen,1 +germanoslavica,1 +gerodontology,1 +geronomi,-1 +gerontechnology,1 +gerontologi,0 +gerontologia,1 +gerontologist,3 +gerontology,1 +gerontology & geriatric medicine,1 +gerontology & geriatrics education,1 +geroscience,1 +gerundium,-1 +gerōn,-1 +geschichte der pharmazie,1 +geschichte in wissenschaft und unterricht,1 +geschichte lernen,1 +geschichte und gegenwart,1 +geschichte und gesellschaft,3 +geschichte.transnational,0 +gesprächsforschung,2 +gesta: international center of medieval art,2 +gestalt review,1 +gestalt theory: an international multidisciplinary journal,0 +gestion y politica publica,1 +gesture,2 +gesture studies,1 +gesunde pflanzen,1 +gesundheitsokonomie und qualitatsmanagement,1 +gesundheitswesen,1 +get it published verlag,0 +getmobile,1 +getsemania - kalervo palsan ystävät ry,0 +getty conservation institute,1 +getty research journal,1 +geus bulletin,1 +gewerblicher rechtsschutz und urheberrecht,1 +gezelliana,1 +gezinstherapie wereldwijd,0 +géotechnique letters,1 +gff,1 +ghana journal of linguistics,0 +ghana studies,0 +ghana universities press,1 +gi cancer,1 +gi forum,0 +gia publications,0 +giannini editore,0 +giannone edizioni,0 +gibb memorial trust,1 +gidlunds,1 +gifted and talented international,1 +gifted child quarterly,2 +gifted education international,1 +gigantum humeris,0 +gigascience,1 +gim international,1 +gimtoji kalba,-1 +gineco ro,1 +ginecologia y obstetricia clinica,1 +ginekologia polska,1 +giorgio bretschneider editore,1 +giornale critico della filosofia italiana,1 +giornale di diritto amministrativo,1 +giornale di diritto del lavoro e di relazioni industriali,0 +giornale di gerontologia,1 +giornale di metafisica,1 +giornale di storia costituzionale,1 +giornale italiano della ricerca educativa,1 +giornale italiano di cardiologia,0 +giornale italiano di dermatologia e venereologia,0 +giornale italiano di filologia,1 +giornale italiano di medicina del lavoro ed ergonomia,1 +giornale storico della letteratura italiana,1 +girlhood studies,1 +giroskopiya i navigatsiya,0 +gis business: geoinformationstechnologie fur die praxis,1 +giscience and remote sensing,1 +gito gesellschaft für industrielle informationstechnik und organisation mbh,0 +giuffre,1 +giunti editore spa,1 +giurisprudenza costituzionale,1 +giuseppe t. cirella,0 +giustizia,1 +giustizia amministrativa,1 +glad!,1 +gladius,1 +glalia,0 +gland surgery,1 +glasgow mathematical journal,1 +glasnik matematicki,1 +glasnik sed,1 +glass and ceramics,1 +glass physics and chemistry,1 +glass structures and engineering,1 +glass technology: european journal of glass science and technology part a,1 +glasshouse press,1 +glaube und denken,1 +gleerups,0 +gli spazi della musica,1 +glia,2 +glimpse,0 +global academic publishing,1 +global academic society journal,0 +global affairs,1 +global and planetary change,3 +global anesthesia and perioperative medicine,0 +global bioethics,2 +global biogeochemical cycles,3 +global built environment review,1 +global business and economics anthology,0 +global business and economics research journal,0 +global business and management research,0 +global business and organizational excellence,1 +global business conference,0 +global business languages,0 +global business review,1 +global challenges,1 +global change biology,3 +global change biology bioenergy,2 +global change research institute of the czech academy of sciences,0 +"global change, peace and security",1 +global china pulse,0 +global chinese,1 +global competition litigation review,0 +global conference on business & finance proceedings,0 +global congress on intelligent systems,0 +global constitutionalism,1 +global crime,1 +global dialogue,-1 +global discourse,1 +global ecology and biogeography,3 +global ecology and conservation,1 +global economic review,1 +global economy journal,1 +global education review,0 +global energy interconnection,1 +global energy law and sustainability,1 +global environment,1 +global environmental change advances,1 +global environmental change: human and policy dimensions,3 +global environmental politics,3 +global epidemiology,1 +global fashion management conference proceeding,0 +global finance journal,1 +global food history,1 +global food security,2 +global governance,1 +global health action,0 +global health journal,0 +global health promotion,1 +global health science and practice,0 +global heart,1 +global hip hop studies,1 +global innovation index,-1 +global intellectual history,2 +global journal of animal law,1 +global journal of arts education,1 +"global journal of biology, agriculture and health sciences",0 +global journal of business disciplines,0 +global journal of business pedagogy,1 +global journal of business research,0 +"global journal of business, economics and management",0 +global journal of comparative law,1 +global journal of computer science,0 +global journal of computer science and technology,0 +global journal of engineering education,0 +global journal of flexible systems management,1 +global journal of foreign language teaching,0 +global journal of guidance & counselling,0 +global journal of health science,0 +global journal of human social science,0 +global journal of information technology,0 +global journal of management and business research,0 +global journal of psychology research,0 +global journal of pure and applied mathematics,1 +global journal of research in engineering,0 +global journal of sociology,0 +"global journal of tourism, leisure and hospitality management.",-1 +global journal of transformative education,0 +global jurist,1 +global justice,1 +"global knowledge, memory and communication",1 +global labour journal,1 +global marketing conference proceeding,0 +global media and china,1 +global media and communication,1 +global media journal,0 +global media journal : canadian edition,0 +global media journal australia,0 +global mental health,1 +global nest international conference on environmental science & technology,0 +global nest journal,1 +global networks: a journal of transnational affairs,2 +global oriental,1 +global partnership management journal,0 +global pediatric health,0 +global pediatrics,1 +global performance studies,0 +global perspective on engineering management,0 +global perspectives,1 +global perspectives on geography,0 +global philosophy,1 +global policy,1 +global political economy,1 +global public health,1 +global public policy and governance,1 +global qualitative nursing research,2 +global reproductive health,1 +global responsibility,-1 +global responsibility to protect,1 +global science books,1 +global security,1 +global social policy,1 +global society,1 +global solutions journal,0 +global sourcing workshop,0 +global south development magazine,-1 +global spine journal,1 +global strategy journal,2 +global studies of childhood,1 +global sustainability,1 +global telecoms business,1 +global telemedicine and ehealth updates: knowledge resources,0 +global trade and customs journal,0 +global transitions,1 +globalbiz research,0 +"globalisation, societies and education",1 +globalisti,-1 +globalization and health,1 +globalization and its socio-economic consequences,0 +globalizations,2 +globe law and business,1 +glorian koti,-1 +glorian ruoka & viini,-1 +glosas,1 +glossa,0 +glossa,1 +glossa,2 +glossa psycholinguistics,0 +glossae,0 +glossae,1 +glossos,1 +glot international,1 +glotodidactica,0 +glotta: zeitschrift fur griechische und lateinische sprache,2 +glottodidactica,1 +glottopol,1 +glottotheory,1 +glq: a journal of lesbian and gay studies,2 +gluteeniton elämä,-1 +glycobiology,1 +glycoconjugate journal,1 +gms health technology assessment,1 +gms medizin-bibliothek-information,1 +gnomon: kritische zeitschrift fur die gesamte klassische altertumswissenschaft,2 +god tid,-1 +godel editorial,0 +goethe jahrbuch,1 +goethe yearbook,1 +gold bulletin,1 +goldsmiths press,1 +gompel & svacina,0 +gondolat,0 +gondwana research,3 +gongcheng kexue xuebao,0 +good society,0 +goodfellow publishers limited,0 +gorbachev foundation,1 +gordon & breach publishing group,1 +gorgias press,1 +gornyj žurnal,0 +gospodarka surowcami mineralnymi-mineral resources management,1 +gosudarstvennaya polyarnaya akademiya,0 +gosudarstvennoe i munitsipal´noe upravlenija,1 +gosudarstvennoe upravlenie,0 +gosudarstvenny`j institut russkogo yazy`ka im. a.s.pushkina,0 +gosudarstvo i pravo,1 +"gosudarstvo, religiâ, cerkovʹ v rossii i za rubežom",0 +goteborg studies in conservation,1 +gothenburg papers in theoretical linguistics,1 +gothic studies,1 +gotland university press,0 +gottinger forum fur altertumswissenschaft,1 +gottingische gelehrte anzeigen,1 +governance: an international journal of policy administration and institutions,3 +government and opposition,2 +government gazette,-1 +government information quarterly,2 +government population council,0 +gower,1 +goya,1 +gozdarski inštitut slovenije : silva slovenica,0 +göç dergisi,1 +göttingen journal of international law,0 +gps solutions,2 +gps world,1 +gracewing,0 +grada publishing,0 +gradiva,1 +graduate faculty philosophy journal,1 +graduate institute publications,0 +graduate journal of asia-pacific studies,1 +graeco-latina brunensia,1 +graecolatina et orientalia,1 +graefes archive for clinical and experimental ophthalmology,1 +graellsia,1 +grafia,-1 +grafica composer,0 +grafisches zentrum htu gmbh,0 +gramarye,0 +gramma: journal of theory and criticism,1 +grammateion,0 +grammatica e didattica,0 +grana,1 +granular computing,1 +granular matter,1 +graphical models,1 +graphics interface,1 +graphis scripta,0 +graphs and combinatorics,2 +grasas y aceites,1 +grass and forage science,1 +grassland research,1 +grassland science,1 +gravitation and cosmology,1 +grayling,-1 +grazer beitrage,1 +grazer linguistische studien,0 +grazer philosophische studien,2 +great lakes entomologist,1 +great plains quarterly,1 +greece and rome,2 +"greek, roman and byzantine studies",2 +"greek, roman, and byzantine studies: scholarly aids",0 +green analytical chemistry,1 +green and smart mining engineering,0 +green and sustainable chemistry,0 +green chemical engineering,1 +green chemistry,3 +green chemistry letters and reviews,1 +green energy & environment,1 +green energy and sustainability,1 +green finance,1 +green letters,1 +green lines instituto para o desenvolvimento sustentável,0 +green materials,0 +green processing and synthesis,1 +green technologies and sustainability,1 +"green technology, resilience, and sustainability",0 +"green, blue and digital economy journal",-1 +greenhouse gases: science and technology,1 +greenleaf publishing ltd,1 +greenwood press,1 +gregorianum,1 +grenzgange: beitrage zu einer modernen romanistik,1 +grey room,2 +grey systems,0 +grif i k,0 +griffith law review,1 +grifos,-1 +grifos,0 +gripla,1 +grodnenskij gosudarstvennyj universitet imeni janki kupaly,0 +groniek,0 +groningen journal of international law,1 +grotiana,1 +ground water monitoring and remediation,1 +groundwater,1 +groundwater for sustainable development,1 +group,1 +group analysis,1 +group and organization management,2 +group decision and negotiation,1 +group dynamics: theory research and practice,1 +group processes and intergroup relations,2 +groups geometry and dynamics,1 +groupwork,1 +growth and change,1 +growth factors,1 +growth hormone and igf research,1 +grundlagen der germanistik,1 +grundwasser,1 +grupa vern,0 +grupo editorial kipus,0 +gruppendynamik und organisationsberatung,1 +gruppenpsychotherapie und gruppendynamik,0 +gruppo di pisa,1 +grur international,2 +gränsløs,0 +gsa today,1 +gsdi association,0 +gsi helmholtzzentrum für schwerionenforschung,0 +gstf international journal on computing,1 +gstf journal of engineering technology,0 +gta verlag,1 +guandong xuekan,0 +guangxi normal university press,0 +guangzi xuebao,0 +gudrun schröder verlag,0 +guerra,0 +guerres & histoire,-1 +guerres mondiales et conflits contemporains,1 +guide (national institute for health and welfare),0 +guidebook of the new mexico geological society,1 +guidelines,-1 +guidi paolo,0 +guilford publications,1 +guillermo escolar editor,0 +guisuanyan xuebao,0 +gujizhui dongwu xuebao,1 +gulf professional publishing,1 +gumanitarnaja mysl juga rossii,0 +gumanitarnye i social’nye nauki,1 +gumanitarnye nauki i obrazovanie,0 +gummerus,0 +gunneria,1 +gunter narr verlag,1 +guo jia jiao yu xing zheng xue yuan xue bao,1 +guofang keji daxue xuebao,0 +gut,3 +gut and liver,1 +gut microbes,1 +gut pathogens,1 +guójì hànxué lùncóng,0 +gv executivo,0 +gvcasos,0 +gyancity journal of electronics and computer science,0 +gyancity journal of engineering and technology,0 +gyldendal,1 +gyldendal akademisk,1 +gyldendal juridisk,0 +gyldendal norsk forlag,1 +gymnasium,0 +gymnasium,1 +gynaecology forum,1 +gynakologisch-geburtshilfliche rundschau,1 +gynakologische endokrinologie,1 +gynecologic and obstetric investigation,1 +gynecologic oncology,2 +gynecologic oncology research and practice,0 +gynecological endocrinology,1 +gynecological surgery,1 +gynecologie obstetrique et fertilite,1 +gynecology & obstetrics case reports,0 +gyosa gyo-yug yeon-gu,0 +gyroscopy and navigation,1 +gävle university press,0 +géneros,1 +géolinguistique,0 +gériatrie et psychologie neuropsychiatrie du vieillissement,1 +görres-druckerei und verlag,0 +göteborgs universitet,0 +göteborgs universitet institutionen för svenska språket,0 +göttinger miszellen,0 +gütersloher verlagshaus,1 +h-net reviews,0 +h-soz-u-kult,0 +h:ström,0 +haaga-helia ammattikorkeakoulu,0 +haaga-helian julkaisut,-1 +haagalainen,-1 +haapavesi-lehti,-1 +haapsalu ja läänemaa muuseumid,0 +haaste,0 +haava,-1 +habaršy - a̋l-farabi atyndag̣y k̦azak̦ memlekettik ụlttyk̦ universiteti : himiâ seriâsy,0 +habaršy : zan̦ seriâsy,0 +habaršysy - a̋l-farabi atyndaġy k̦azak̦ memlekettik u̇lttyk̦ universitetì. fizika seriâsy,0 +habaršysy : èkonomika seriâsy,0 +habelt,1 +habis,1 +habitat international,1 +hacettepe journal of mathematics and statistics,0 +hacettepe universitesi egitim fakultesi dergisi-hacettepe university journal of education,0 +hacettepe üniversitesi,0 +hackett publishing company,1 +hacquetia,1 +hadašwt `arke` wlwgiywt,1 +hadronic journal,0 +hadtortenelmi kozlemenyek,1 +hadtudomany,1 +haematologica: the hematology journal,2 +haemophilia,1 +haeoe han-gukak doseogwan donghyang bogoseo,-1 +haerbin gongcheng daxue xuebao,0 +haften for kritiska studier,1 +hagiographica,1 +hague journal on the rule of law,1 +hahr: hispanic american historical review,3 +hai-kustannus,0 +hakastarolainen,-1 +hakehila,-1 +hakkert,1 +haksul daehoe nonmunjip,0 +halduskultuur - administrative culture,1 +hallgren & fallgren,1 +hallinnon tutkimuksen seura,0 +hallinnon tutkimus,2 +hallym international journal of aging,1 +halmstad university press,0 +ham - helsingin taidemuseon julkaisuja,-1 +hamburg studies on multilingualism,1 +hamburger edition his verlagsges,1 +hamburger jahrbuch fur musikwissenschaft,1 +hamburger journal für kulturanthropologie,0 +hamdard islamicus,1 +hamk ammatillisen opettajakorkeakoulun julkaisuja,-1 +hamk beat,-1 +hamk unlimited : journal,-1 +hamk unlimited : professional,0 +hamk unlimited : scientific,0 +hamkin e-julkaisuja,0 +hamkin julkaisuja,-1 +hammaslääketieteen historian seura aurora,0 +hammasteknikko,-1 +hamostaseologie,1 +hampton press,1 +hamsun-selskapets skriftserie,1 +hamuli,-1 +han'gug ga'jeong'gwa gyoyug haghoeji,0 +han'gug yangbong haghoeji,0 +han-guk cheoldo hakoe nonmunjip,0 +han-guk chojeondo jeoon-gonghakoe nonmunji,0 +han-guk eumseong hakoe ... haksul daehoe balpyo nonmunjip,0 +han-gukjawon-gonghakoeji,0 +hanagället,-1 +hand,1 +hand and microsurgery,0 +hand clinics,1 +hand surgery & rehabilitation,1 +hand therapy,1 +handbook of experimental pharmacology,1 +handbook of metal physics,1 +handbook of oriental studies: section 1 the near and middle east,2 +handbook of oriental studies: section 2 south asia,1 +handbook of oriental studies: section 5 japan,1 +handbook of oriental studies: section 8 uralic and central asian studies,1 +handbook of pragmatics,0 +handbook of thermal analysis and calorimetry,1 +handbook of translation studies,1 +handbook on the physics and chemistry of rare earths,1 +handbooks of management accounting research,1 +"handbuch der orientalistiek. 3. abt., südost asien",1 +"handbuch der orientalistik : 4. abt., china",1 +handbuecher zur sprach- und kommunikationswissenschaft,1 +handchirurgie mikrochirurgie plastische chirurgie,1 +handelingen,1 +handelingen van de koninklijke commissie voor toponymie en dialectologie,1 +handelshøjskolens forlag,1 +handelshøyskolen,0 +hang up,-1 +hannaharendt.net,1 +hans reitzels forlag,1 +hansische geschichtsblatter,1 +hapsc policy briefs series,0 +haramaya law review,1 +harbin institute of technology,0 +harbour,0 +harbours review,-1 +harcourt trade publishers,1 +hardwarex,1 +hardwood conference proceedings,0 +hardy-ramanujan journal,1 +harjavallan kaupunki,0 +harm reduction journal,1 +harmful algae,1 +harpercollins publishers,1 +harrassowitz verlag,2 +hart publishing,2 +hartung-gorre,0 +harvard business review,1 +harvard business review türkiye,-1 +harvard civil rights-civil liberties law review,2 +harvard data science review,0 +harvard design magazine,1 +harvard educational review,3 +harvard environmental law review,1 +harvard human rights journal,1 +harvard international law journal,3 +harvard international review,1 +harvard journal of asiatic studies,2 +harvard journal of law and gender,1 +harvard journal of law and public policy,1 +harvard journal of law and technology,1 +harvard journal on legislation,1 +harvard kennedy school misinformation review,0 +harvard law review,3 +harvard library bulletin,1 +harvard negotiation law review,1 +harvard oriental series,1 +harvard review of psychiatry,1 +harvard studies in classical philology,3 +harvard theological review,3 +harvard ukrainian research institute,0 +harvard ukrainian studies,1 +harvard university press,3 +harvey lectures,1 +harvey miller publishers,1 +harvey whitney books,1 +haseltonia,1 +haser,1 +hashi,-1 +haskins society journa l: studies in medieval history,1 +hastings center report,1 +hastings law journal,1 +hatje cantz,1 +hattoria,1 +hau: journal of ethnographic theory,2 +haupt verlag,1 +hautarzt,1 +hawaii international conference on system sciences,1 +haworth press,1 +hawwa,1 +haymarket books,0 +haz es ember,1 +hazardous waste consultant,1 +hbl junior,-1 +hbrc journal,0 +hci korea,0 +head & face medicine,1 +head and neck pathology,1 +head and neck: journal for the sciences and specialties of the head and neck,3 +headache,2 +health,0 +health,1 +health affairs,2 +health and environment,0 +health and human rights,1 +health and place,2 +health and population: perspectives and issues,1 +health and quality of life outcomes,1 +health and social care chaplaincy,1 +health and social care delivery research,0 +health and social care in the community,1 +health and social work,1 +health and technology,1 +health behavior and policy review,1 +health care analysis,2 +health care for women international,1 +health care management review,2 +health care management science,3 +health communication,1 +health economics,2 +health economics review,1 +"health economics, policy and law",2 +health education,1 +health education and behavior,1 +health education journal,1 +health education research,1 +health equity,0 +health expectations,1 +health informatics journal,1 +health information and libraries journal,1 +health information management journal,1 +health information science and systems,1 +health literacy research and practice,1 +health marketing quarterly,1 +health physics,1 +health policy,2 +health policy and development,1 +health policy and planning,2 +health policy and technology,1 +health professions education,1 +health promotion & physical activity,0 +health promotion international,1 +health promotion journal of australia,1 +health promotion practice,1 +health psychology,3 +health psychology and behavioral medicine,1 +health psychology bulletin,1 +health psychology open,1 +health psychology review,2 +health reports,0 +health research policy and systems,2 +health risk and society,1 +health science reports,1 +health sciences investigations journal,0 +health sciences review,0 +health services and outcomes research methodology,1 +health services insights,1 +health services management research,1 +health services research,3 +health services research and managerial epidemiology,1 +health sociology review issn,1 +health systems,1 +health systems in transition,-1 +health technology assessment,1 +"health, interprofessional practice and education",0 +"health, technology and society",3 +healthcare,0 +healthcare analytics,-1 +healthcare design,-1 +healthcare informatics research,1 +healthcare technology letters,1 +healthmanagement.org : the journal,0 +healthmed,0 +healthy aging & clinical care in the elderly,1 +hearing research,2 +"hearing, balance and communication",1 +heart,2 +heart and lung,1 +heart and mind,0 +heart and vessels,1 +heart failure reviews,1 +heart lung and circulation,1 +heart rhythm,1 +heart rhythm o2,-1 +heart surgery forum,1 +"heart, lung and vessels",0 +heartrhythm case reports,-1 +hearts,0 +heat and mass transfer,1 +heat transfer engineering,1 +heat transfer research,1 +heat transfer: asian research,1 +hebrew bible and ancient israel,2 +hebrew language and literature series,1 +hebrew studies,1 +hebrew union college annual,1 +hebrew union college press,0 +hec forum,1 +hedmark fylkeskommune,0 +hefte des archaologischen seminars bern,1 +hegel bulletin,1 +hegel-jahrbuch,1 +hegel-studien,2 +hegesztéstechnika,-1 +hehkuva hiillos,-1 +heibonsha,0 +heidegger studies,1 +heidegger-jahrbuch,1 +heidelberg press,1 +heidelberg university,0 +heidelberger akademie der wissenschaften,1 +heijnenkoelink,0 +heilongjiang daxue ziran kexue xuebao,0 +heimen,1 +heine-jahrbuch,1 +heinemann,1 +hejubian yu dengliziti wuli,0 +helbing lichtenhahn,0 +helen hamlyn centre for design,1 +helgoland marine research,1 +helicobacter,1 +helikon,-1 +helikon,1 +helion & company,0 +helios,1 +helix,0 +heliyon,1 +hellas: a journal of poetry and the humanities,1 +hellenic centre,0 +hellenic folkore research centre,0 +hellenic journal of cardiology,1 +"hellenic journal of music, education and culture",1 +hellenic journal of nuclear medicine,1 +hellenic journal of psychology,1 +hellenic maintenance society,0 +hellenic open university,0 +hellenic open university journal of informatics,0 +helmi,-1 +helminthologia,1 +helsingin ekonomi,-1 +helsingin hovioikeus,0 +helsingin ja uudenmaan sairaanhoitopiiri,0 +helsingin kaupungin keskushallinnon julkaisuja,-1 +helsingin kaupungin pelastuslaitoksen julkaisuja,-1 +helsingin kaupunginmuseo,0 +helsingin kaupunki,0 +helsingin pitäjä - vantaa,-1 +helsingin psykoterapiayhdistys ry,-1 +helsingin reservin sanomat,-1 +helsingin sanomat,-1 +helsingin seudun kauppakamari,0 +helsingin seudun liikenne -kuntayhtymä,0 +helsingin seudun sotaveteraani,-1 +helsingin uutiset,-1 +helsingin yliopisto,0 +helsingin yliopiston hallinnon julkaisuja : raportit ja selvitykset,-1 +helsingin yliopiston historian laitoksen julkaisuja,0 +helsingin yliopiston koulutuksen arviointikeskus hean raportit,0 +helsingin yliopiston maantieteen laitoksen julkaisuja ja raportteja,0 +helsingin yliopiston metsätieteiden laitoksen julkaisuja,0 +helsingin yliopiston slavistiikan ja baltologian laitoksen opetusmonisteita,-1 +helsinki law review,0 +helsinki review of global governance,0 +helsinki university press,1 +helsinki yearbook of intellectual history,1 +helsinki-kirjat oy,0 +helsus policy brief,-1 +helvetica chimica acta,1 +hem och skola,-1 +hemasphere,1 +hematological oncology,1 +hematologie,1 +hematology,1 +hematology reports,0 +hematology-oncology clinics of north america,1 +hemecht : zeitschrift für luxemburger geschichte,1 +hemijska industrija,1 +hemingway review,1 +hemodialysis international,1 +hemoglobin,1 +hempen verlag,1 +hemåt,-1 +hendrickson publishers,1 +hengitys,-1 +henki,-1 +henki & elämä,-1 +henoch,1 +henry james review,1 +hepatitis monthly,0 +hepato-gastro et oncologie digestive,1 +hepato-gastroenterology,1 +hepatobiliary and pancreatic diseases international,1 +hepatobiliary surgery and nutrition,1 +hepatology,3 +hepatology communications,1 +hepatology international,1 +hepatology research,1 +hephaistos,1 +herald of the russian academy of sciences,1 +heraldisk tidsskrift,1 +herbert von halem verlag,1 +herd: health environments research and design journal,1 +herder editrice e libreria,1 +herder verlag,1 +herder-institut e.v.,1 +hereditary cancer in clinical practice,1 +hereditas,1 +heredity,2 +heriot-watt university,0 +heritage,0 +heritage & society,1 +heritage language journal,1 +heritage science,2 +herito,0 +hermann,1 +hermathena,1 +hermeneus: revista de traduccion,1 +hermes,-1 +hermes,1 +hermes academic publishing and bookshop a/s,1 +hermes science publications,1 +hermes: journal of language and communication in business,1 +hermes: zeitschrift fur klassische philologie,3 +hermolla,-1 +herne,0 +hernia,1 +heroin addiction and related clinical problems,1 +heroism science,0 +herpetologica,1 +herpetological conservation and biology,1 +herpetological journal,1 +herpetological monographs,1 +herpetological review,1 +herpetology notes,0 +herpetozoa,1 +hertervig forlag,0 +hertfordshire archaeology and history,1 +hervormde teologiese studies,1 +herz,1 +herzog august bibliothek,0 +herzogia,1 +herzogiella,-1 +herzschrittmachertherapie und elektrophysiologie,1 +hesperia,2 +hessische blatter fur volks- und kulturforschung,1 +heteroatom chemistry,1 +heterocycles,1 +heterocyclic communications,1 +hethitica,1 +heti journal : international research and practice,0 +hetkinen raamatun lukemiseen,-1 +hevosenomistaja,-1 +hevosmaailma,-1 +hevosurheilu,-1 +heythrop journal: a quarterly review of philosophy and theology,1 +hgg advances,1 +hidrobiologica,1 +hieroja,-1 +hieronymus complutensis,1 +hiersemann,0 +hifimaailma,-1 +high ability studies,1 +high altitude medicine and biology,1 +high blood pressure and cardiovascular prevention,1 +high energy chemistry,1 +high energy density physics,1 +high frequency,1 +high performance polymers,1 +high power laser and particle beams,0 +high power laser science and engineering,1 +high pressure research,1 +high temperature,1 +high temperature corrosion of materials,1 +high temperature material processes,1 +high temperature materials and processes,1 +high temperatures - high pressures,1 +high voltage,1 +higher education,1 +higher education,3 +higher education abstracts,0 +higher education dynamics,1 +higher education for the future,1 +higher education forum,0 +higher education governance and policy,0 +higher education in europe,1 +higher education management and policy,1 +higher education policy,1 +higher education press,0 +higher education quarterly,1 +higher education research and development,2 +higher education review,1 +higher education studies,0 +"higher education, skills and work-based learning",0 +higher school of economics,0 +higher-order and symbolic computation,1 +highlights & insights on european taxation,0 +highlights of sustainability,1 +hightech and innovation journal,-1 +hiihto,-1 +hiisi,-1 +hiiskuttua,0 +hikaku h?gaku,0 +hikuin,0 +hiljainen seurakunta,-1 +hiljaisuuden ystävät,-1 +himalayan discoveries,0 +himalayan geology,1 +himalayan linguistics,1 +hindawi publishing corporation,1 +hinterland,-1 +hip international,1 +hiperboreea,1 +hipertext.net,1 +hipo tesis,-1 +hipotesis,1 +hippiäinen,-1 +hippocampus,1 +hippokrates,1 +hippokratia,0 +hippos,-1 +hipputeos oy,0 +hiroshima journal of mathematics education,1 +hiroshima mathematical journal,1 +hirundo,0 +hispamerica: revista de literatura,1 +hispania antiqua,1 +hispania sacra,1 +hispania: a journal devoted to the teaching of spanish and portuguese,1 +hispania: revista espanola de historia,1 +hispanic journal,1 +hispanic journal of behavioral sciences,0 +hispanic research journal: iberian and latin american studies,1 +hispanic review,3 +hispanofila,1 +histochemistry and cell biology,1 +histoire culturelle de l'europe,0 +histoire de lart,1 +histoire des sciences medicales,1 +histoire epistemologie langage,1 +histoire et civilisation du livre,1 +histoire et mesure,1 +histoire et societes,1 +histoire et societes rurales,1 +histoire medievale et archeologie,1 +histoire sociale-social history,2 +histoire urbaine,1 +"histoire, economie et societe",1 +histoires litteraires,1 +histology and histopathology,1 +histopathology,2 +historein,1 +historia,1 +historia agraria,1 +historia ciencias saude-manguinhos,1 +historia constitucional,1 +historia contemporanea,1 +historia critica,2 +historia de la educación,0 +historia et ius,1 +historia mathematica,3 +historia mexicana,2 +historia mirabilis,1 +historia national geographic,-1 +historia nyt!,0 +historia scientiarum,1 +historia social,1 +historia y comunicacion social,1 +historia y politica,2 +"historia, antropologia y fuentes orales",1 +historia: santiago,2 +historia: zeitschrift fur alte geschichte,2 +historiallinen aikakauskirja,2 +historiallinen arkisto,1 +historiallis-yhteiskuntatiedollisen kasvatuksen tutkimus- ja kehittämiskeskuksen julkaisuja,-1 +historiallis-yhteiskuntatiedollisen kasvatuksen tutkimus- ja kehittämiskeskuksen tutkimuksia,0 +historiallisia tutkimuksia,2 +historian,1 +historic brass society journal,1 +historic environment,1 +historica,1 +historical archaeology,2 +historical biology,1 +historical encounters,2 +historical journal,3 +historical journal of film radio and television,2 +historical journal of japan,1 +historical life course studies,1 +historical materialism: research in critical marxist theory,1 +historical metallurgy,1 +historical methods,3 +historical records of australian science,1 +historical reflections-reflexions historiques,1 +historical research,2 +historical review : la revue historique,1 +historical social research-historische sozialforschung,1 +historical sociolinguistics and sociohistorical linguistics,1 +historical studies in industrial relations,1 +historical studies in the natural sciences,2 +historicky casopis,1 +historická demografie,1 +historická sociologie,0 +histories,0 +histories of people and place,1 +historiographia linguistica,2 +"historische anthropologie: kultur, gesellschaft, alltag",1 +historische sozialforschung,1 +historische sprachforschung,3 +historische zeitschrift,3 +historisches jahrbuch,2 +historisk tidskrift (denmark),2 +historisk tidskrift (sweden),2 +historisk tidskrift för finland,2 +historisk tidsskrift (norway),2 +historiska media,1 +historiska museets förlag,1 +historiska och litteraturhistoriska studier,1 +historiskan,-1 +history,3 +history and anthropology,3 +history and memory: studies in representation of the past,3 +history and philosophy of logic,2 +history and philosophy of the life sciences,1 +history and technology,2 +history and theory,3 +history australia,1 +history compass,1 +history education research journal,1 +history in africa,2 +history in flux,1 +history journal: researches,1 +history of computing conference,0 +history of economic ideas,1 +history of economics review,1 +history of education,2 +history of education and childrens literature,1 +history of education quarterly,1 +history of education review,1 +history of european ideas,2 +history of geo- and space sciences,1 +history of humanities,1 +history of intellectual culture,1 +history of pharmacy and pharmaceuticals,1 +history of philosophy quarterly,2 +history of photography,3 +history of political economy,1 +history of political thought,2 +history of psychiatry,1 +history of psychology,1 +history of religions,3 +history of retailing & consumption,1 +history of science,2 +history of technology,1 +history of the family,3 +history of the human sciences,2 +history of the present,1 +history of universities,1 +history of warfare,2 +history teacher,1 +history today,0 +history workshop journal,3 +histos,1 +histria archaeologica,1 +história da historiografia,1 +hitachi review,1 +hito to shizen,0 +hitotsubashi journal of economics,1 +hitsaustekniikka,-1 +hiv clinical trials,1 +hiv medicine,1 +hið íslenska bókmenntafélag,1 +hla,1 +hlife,-1 +hm studies and publishing,0 +hno,1 +hnps advances in nuclear physics,0 +hobbes studies,1 +hochparterre,0 +hochschule anhalt,0 +hochschule für angewandte wissenschaften münchen,0 +hochschule für technik und wirtschaft des saarlandes,0 +hodder & stoughton,1 +hofmannsthal jahrbuch zur europaeischen moderne,1 +hogeschool utrecht kenniscentrum technologie,0 +hogrefe,1 +hoitotiede,1 +hoitotieteen laitoksen julkaisusarja,0 +hokkaido mathematical journal,1 +hokkaido university,0 +hokkaidou daigaku kyoushoku katei nempou,0 +holistic archive,0 +holistic nursing practice,1 +holistic science publications,0 +holkki,-1 +hollitzer wissenschaftsverlag,0 +hollolan kunta,0 +hollolan sanomat,-1 +holmi,0 +holocaust and genocide studies,2 +holocaust studies,1 +holocaust studies series,1 +holocene,1 +holzforschung,1 +home cultures,1 +home health care management and practice,1 +home health care services quarterly,1 +homeopathy,1 +homicide studies,1 +homme: revue francaise d'anthropologie,2 +homme: zeitschrift fur feministische geschichtswissenschaft,1 +homo ludens,0 +homo oeconomicus,1 +homo: journal of comparative human biology,1 +homology homotopy and applications,1 +homonoia,1 +hona il lil nashr wal tawzi,0 +hong duc publishing house,0 +hong kong journal of dermatology & venereology,0 +hong kong journal of emergency medicine,1 +hong kong journal of mental health,0 +hong kong journal of occupational therapy,1 +hong kong journal of paediatrics,1 +hong kong journal of social work,1 +hong kong law journal,1 +hong kong polytechnic university,0 +hong kong society for transportation studies,0 +hong kong university press,1 +hongwai yu jiguang gongcheng,0 +honoré champion,2 +hopkins quarterly,1 +hopos,1 +hoppo gengo kenkyu,0 +hoppou jimbun kenkyuu,0 +horisont,-1 +horizon : fenomenologiceskie issledovaniâ,1 +horizons,1 +horizons in biblical theology,1 +hormone and metabolic research,1 +hormone molecular biology and clinical investigation,1 +hormone research in paediatrics,1 +hormones,1 +hormones and behavior,1 +horn of africa bulletin,-1 +horos,1 +horticultura brasileira,1 +horticulturae,0 +horticultural reviews,1 +horticultural science,1 +horticulture environment and biotechnology,1 +horticulture research,2 +hortscience,1 +horttechnology,1 +hortus artium mediaevalium,1 +horyzonty polityki,1 +horyzonty wychowania,0 +hospitaali,0 +hospital healthcare europe,0 +hospital imaging & radiology europe,0 +hospital pediatrics,1 +hospital pharmacy,1 +hospital pharmacy europe,0 +hospitality and society,1 +hotus-hoitosuositus,1 +houille blanche: revue internationale de l'eau,1 +housing finance international,0 +housing policy debate,1 +housing studies,2 +"housing, care and support",1 +"housing, theory and society",1 +houston journal of international law,1 +houston journal of mathematics,1 +howard journal of communications,1 +howard journal of criminal justice,1 +hpb,1 +hpb surgery,1 +hr viesti,-1 +hrb open research,0 +hrvatska i komparativna javna uprava,0 +hrvatska revija za rehabilitacijska istrazivanja,1 +hrvatska sveucilisna naklada,1 +hrvatski casopis za odgoj i obrazovanje,0 +hrvatski filmski ljetopis,0 +hrvatsko nuklearno društvo,0 +hs teema,-1 +hsoa journal of aquaculture & fisheries,-1 +hssh reports and working papers,-1 +hsy,-1 +huagang yingyu qikan,0 +huanjing kexue,0 +huanjing kexue xuebao,0 +huaxia publishing house,0 +huazhong university of science and technology press,0 +hub,0 +hubei meishu xueyuan xuebao,0 +hucitec editora,0 +hudebni veda,1 +hudson review,1 +hufvudstadsbladet,0 +hugo valentin-centrum,0 +hugoye: journal of syriac studies,1 +hugur,1 +huimapyörä,-1 +huippu-urheilu-uutiset,-1 +human affairs,1 +human and ecological risk assessment,1 +human and experimental toxicology,1 +human antibodies,1 +human arenas,1 +human behavior and emerging technologies,1 +human biology,1 +human brain mapping,2 +human cell,1 +human communication & technology,1 +human communication research,3 +human communication: a journal of the pacific and asian communication association,0 +human computation,1 +human development,1 +human dimensions of wildlife,1 +human ecology,1 +human ecology review,1 +human ecology: an interdisciplinary journal,2 +human evolution,1 +human factors,2 +human factors and ergonomics in manufacturing and service industries,1 +human factors and ergonomics journal,0 +human factors in design,1 +human fertility,1 +human gene,1 +human gene therapy,1 +human gene therapy : methods,1 +human gene therapy. clinical development,1 +human genetics,1 +human genomics,1 +human geography,1 +human heredity,1 +human immunology,1 +human it: tidskrift för studier av it ur ett humanvetenskapligt perspektiv,1 +human kinetics publishers,1 +human microbiome journal,0 +human molecular genetics,2 +human movement,1 +human movement science,1 +human mutation,2 +human nature: an interdisciplinary biosocial perspective,1 +human organization,2 +human pathology,1 +human performance,1 +human physiology,1 +human psychopharmacology: clinical and experimental,1 +human relations,3 +human reproduction,3 +human reproduction open,0 +human reproduction update,3 +human resource development international,1 +human resource development quarterly,1 +human resource development review,1 +human resource management,3 +human resource management journal,2 +human resource management review,2 +human resources for health,3 +human rights education review,1 +human rights in development,1 +human rights law journal,1 +human rights law review,2 +human rights quarterly,2 +human rights review,1 +human security,-1 +"human service organizations : management, leadership & governance",1 +human studies,2 +human systems,1 +human systems management,1 +human technology,1 +human vaccines & immunotherapeutics,1 +human-centric computing and information sciences,1 +human-computer interaction,3 +human-intelligent systems integration,1 +human-machine communication journal,1 +human-wildlife interactions,1 +humana press,1 +humana.mente,1 +humanetten,1 +humanimalia,1 +humanisti,-1 +humanistic management journal,1 +humanistica,1 +humanistica lovaniensia: journal of neo-latin studies,2 +humanistilehti,-1 +humanistinen ammattikorkeakoulu : julkaisuja,-1 +humanities,0 +humanities & social sciences communications,1 +humanities and social sciences,0 +humanities and social sciences letters,0 +humanities and social sciences review,0 +humanities australia,0 +humanity,1 +humanity & society,1 +humanity books,1 +humanity in action press,0 +hume studies,2 +humor,1 +hunan daxue xuebao,0 +hunar-i zabān,1 +hunch,1 +hungarian academy of sciences centre for energy research,0 +hungarian educational research journal,1 +hungarian geographical bulletin,1 +hungarian historical review,1 +hungarian journal of english and american studies,1 +hungarian journal of industrial chemistry,1 +hungarian journal of legal studies,1 +hungarian quarterly,1 +hungarian studies,1 +hungarian studies yearbook,1 +hungarian yearbook of international law and european law,1 +hungarologiai közlemenyek,1 +hunter gatherer research,1 +huoltaja-säätiö,0 +hupo kexue,0 +hurst publishers,1 +husserl studies,3 +hvmanitas,1 +hybrid,0 +hybrid advances,1 +hybrid coe research report,-1 +hybrid coe strategic analysis,-1 +hybrida,1 +hybris,0 +hybris : revista de filosofía,1 +hydro review: the magazine of the north american hydroelectric industry,1 +hydrobiologia,2 +hydrobiology,0 +hydrocarbon processing,1 +hydrogen,0 +hydrogeology journal,1 +hydrological processes,1 +hydrological sciences journal-journal des sciences hydrologiques,1 +hydrologie und wasserbewirtschaftung,1 +hydrology,0 +hydrology and earth system sciences,2 +hydrology and earth system sciences discussions,0 +hydrology research,1 +hydrometallurgy,2 +hyean publishing,1 +hygiea internationalis,1 +hygiene,0 +hygiene and environmental health advances,0 +hyle,1 +hymnologi,1 +hymnologian ja liturgiikan seura,0 +hymnos,1 +hypatia,3 +hyperboreus,1 +hyperfine interactions,1 +hyperion international journal of econophysics and new economy,0 +hypertension,2 +hypertension in pregnancy,1 +hypertension research,1 +hyphen press,1 +hypoxia,1 +hystrix: italian journal of mammalogy,1 +hyte-toimintamalli,-1 +hyvä selkä,-1 +hyvä terveys,-1 +hyönteistarvike tibiale oy,0 +hànxué yánjiu,0 +háskólaútgáfan,0 +háskóli íslands,0 +hämeen ammattikorkeakoulu,0 +hämeen heimoliitto ry,0 +hämeen sanomat,-1 +hämeenlinnan kaupunki,0 +hämeenlinnan kaupunkiuutiset,-1 +högre utbildning,1 +högskolan dalarna,0 +högskolan i borås,0 +högskolan kristianstad,0 +högskolan väst,0 +høgskolen i oslo og akershus,0 +høyskoleforlaget,1 +i quaderni del m.ae.s,1 +i rågens och fjärdarnas rike,-1 +i tatti studies,1 +i-com,0 +i-land journal,0 +i-managers journal of education technology,0 +i-manager’s journal on management,0 +i-perception,1 +i-tech education and publishing kg,1 +i.b. tauris,1 +i/c,1 +i6doc.com,0 +iab workshop on internet technology adoption and transition,0 +iab/irtf workshop on congestion control for interactive real-time communication,0 +"iac online journal, cio and digital innovation",0 +iacr communications in cryptology,1 +iacr transactions on cryptographic hardware and embedded systems,1 +iacr transactions on symmetric cryptology,1 +iadis international journal on computer science and information system,0 +iadis international journal on www/internet,1 +iadis press,0 +iaee energy forum,0 +iaee international conference,0 +iaes international journal of artificial intelligence,1 +iafor international conference on education : official conference proceedings,0 +iafor journal of arts and humanities,0 +iah bulletin,0 +iahr international symposium on ice,1 +iahs press,1 +iaq conference,0 +iara,1 +iarc scientific publications,0 +iaria xps press,0 +iartem,1 +iartem journal,0 +iaspm@journal,1 +iassist quarterly,1 +iasted international conference on computers and advanced technology in education,0 +iasted international conference on modelling and simulation,0 +"iasted international conference on signal processing, pattern recognition and applications",0 +iasted international conference on web-based education,0 +iated academy,0 +iatefl,0 +iatefl slovenia newsletter,-1 +iatefl voices,-1 +iatss research,1 +iawa journal,1 +ibadan journal of english studies,0 +ibai-publishing,0 +ibd,-1 +iberia,1 +iberialais-amerikkalainen säätiö,0 +iberica,2 +ibero-american symposium on project approaches in engineering education,-1 +iberoamericana,1 +iberoamericana vervuert,1 +iberoromania,2 +ibfd,1 +ibidem-verlag,1 +ibima business review,0 +ibis,0 +ibis,1 +ibm journal of research and development,1 +ibro neuroscience reports,1 +ibsen studies,2 +ibunka komyunikeshon,0 +ibusiness,0 +icame journal,1 +icar technical series,0 +icaria editorial,0 +icarus,1 +icas proceedings,0 +icccbe2016 organizing committee,1 +ice publishing,1 +iceland's arctic council chairmanship,0 +icelandic agricultural sciences,1 +icelandic geotechnical society,0 +iceri proceedings,0 +ices cooperative research report,-1 +ices journal of marine science,1 +icfai university press,1 +icga journal,1 +ichnos: an international journal for plant and animal traces,1 +ichthyological exploration of freshwaters,1 +ichthyological research,1 +ichthyology & herpetology,1 +icic express letters,1 +icic express letters part b : applications,1 +icmsa,0 +ico iconographisk post,1 +icoana credinţei,0 +icofom study series,1 +icom-cc newsletter working group textiles,-1 +icomosin suomen osasto ry,0 +icon,1 +icon : the institute of conservation,1 +icon: international journal of constitutional law,3 +icon: journal of the international committee for the history of technology,1 +iconcept press,1 +iconference,1 +iconographica : rivista di iconografia medievale e moderna,1 +iconos : revista de ciencias sociales,1 +icsid review,1 +icst transaction on security and safety,-1 +icst transactions on ambient systems,0 +icst transactions on energy web,0 +icst transactions on mobile communications and applications,1 +icst transactions on ubiquitous environments,0 +ict express,0 +ict4awe,0 +ictact journal on communication technology,0 +ictact journal on image and video processing,0 +ictact journal on management studies,0 +ictact journal on microelectronics,0 +ictact journal on soft computing,0 +icu management,0 +id&a interaction design & architecture(s),1 +idea,1 +idealistic studies,1 +ideas in ecology and evolution,1 +ideas in history,1 +ideas sónicas / sonic ideas,0 +ideas y valores,1 +ideação,0 +ideggyogyaszati szemle-clinical neuroscience,1 +ideias,0 +"idensitat, associació d'art contemporani",0 +identities,0 +identities: global studies in culture and power,2 +identity,1 +ideology and politics journal,1 +idiootti,0 +idojaras,1 +idrc books,1 +"idrott, historia och samhälle",1 +idrottsforum.org,1 +idrugs,1 +idryma onasi : stegi grammaton kai technon,0 +ids bulletin: institute of development studies,1 +idäntutkimus,1 +iee control engineering series,1 +ieee,1 +ieee 5g world forum,1 +ieee access,1 +ieee aerospace and electronic systems magazine,1 +ieee aerospace conference,0 +ieee annals of the history of computing,1 +ieee antennas and propagation magazine,2 +ieee antennas and wireless propagation letters,2 +ieee asia-pacific conference on antennas and propagation,1 +ieee bits,1 +ieee circuits and systems magazine,2 +ieee cloud computing,1 +ieee communications letters,2 +ieee communications magazine,2 +ieee communications society,1 +ieee communications standards magazine,1 +ieee communications surveys and tutorials,2 +ieee computational intelligence magazine,1 +ieee computer architecture letters,0 +ieee computer graphics and applications,2 +ieee computer society annual symposium on vlsi,1 +ieee computer society conference on computer vision and pattern recognition,2 +ieee computer society conference on computer vision and pattern recognition workshops,1 +ieee computer society press,1 +ieee conference on business informatics,0 +ieee conference on computer communications,2 +ieee conference on computer communications workshops,1 +ieee conference on games,1 +ieee conference on industrial electronics and applications,1 +ieee conference on norbert wiener in the 21st century,0 +"ieee conference on robotics, automation and mechatronics",1 +ieee conference on standards for communications and networking,1 +ieee conference on virtual reality and 3d user interfaces,1 +ieee conference publication,1 +ieee consumer communications and networking conference,1 +ieee consumer electronics magazine,2 +ieee control systems letters,1 +ieee control systems magazine,2 +ieee data descriptions,-1 +ieee design and test,2 +ieee distributed systems online,1 +ieee electrical insulation conference,0 +ieee electrical insulation magazine,2 +ieee electrification magazine,1 +ieee electromagnetic compatibility magazine,1 +ieee electron device letters,2 +ieee embedded systems letters,1 +ieee energy conversion congress and exposition,1 +ieee engineering management review,1 +ieee european symposium on security and privacy workshops,1 +ieee forum on integrated and sustainable transportation systems,0 +"ieee games, entertainment, media conference",1 +ieee geoscience and remote sensing letters,1 +ieee geoscience and remote sensing magazine,2 +ieee global communications conference,1 +ieee global engineering education conference,1 +ieee green technologies conference,0 +ieee haptics symposium,1 +ieee industrial electronics magazine,2 +ieee industry applications magazine,1 +ieee instrumentation and measurement magazine,1 +ieee intelligent systems,2 +ieee intelligent transportation systems magazine,2 +ieee international conference of electron devices and solid-state circuits,0 +ieee international conference on advanced learning technologies,1 +ieee international conference on antenna measurements and applications,0 +"ieee international conference on application-specific systems, architectures, and processors",1 +ieee international conference on automation science and engineering,1 +ieee international conference on blockchain,0 +ieee international conference on broadband network and multimedia technology,0 +ieee international conference on circuits and systems,1 +ieee international conference on cloud computing,1 +ieee international conference on cluster computing,1 +ieee international conference on cognitive infocommunications,0 +ieee international conference on communication systems,0 +ieee international conference on communication technology,0 +ieee international conference on communications,1 +ieee international conference on communications workshops,0 +ieee international conference on computational photography,1 +ieee international conference on computer as a tool,0 +ieee international conference on computer vision,3 +ieee international conference on computer vision workshops,1 +ieee international conference on condition monitoring and diagnosis,1 +ieee international conference on consumer electronics - berlin,0 +ieee international conference on control and automation,0 +"ieee international conference on control system, computing and engineering",0 +ieee international conference on cyber-physical-social computing,0 +ieee international conference on data engineering workshop,0 +ieee international conference on data mining,2 +ieee international conference on data mining workshops,0 +ieee international conference on dc microgrids,0 +"ieee international conference on dependable, autonomic and secure computing",1 +ieee international conference on development and learning,0 +ieee international conference on dielectrics,1 +ieee international conference on digital ecosystems and technologies,0 +ieee international conference on digital game and intelligent toy enhanced learning,1 +ieee international conference on e-science,0 +ieee international conference on edge computing,1 +ieee international conference on emerging elearning technologies and applications,0 +"ieee international conference on engineering, technology and innovation",1 +ieee international conference on flexible and printable sensors and systems,1 +ieee international conference on global software engineering workshops,1 +ieee international conference on high performance switching and routing,1 +ieee international conference on ic design and technology,0 +ieee international conference on industrial cyber physical systems,1 +ieee international conference on industrial engineering and engineering management,0 +ieee international conference on industrial informatics,1 +ieee international conference on industrial technology,1 +ieee international conference on information science and technology,0 +ieee international conference on intelligent computer communication and processing,0 +"ieee international conference on internet of things and ieee green computing and communications and ieee cyber, physical and social computing and ieee smart data",1 +ieee international conference on internet of things and intelligence system,1 +ieee international conference on mechatronics,0 +ieee international conference on microelectronic systems education,0 +ieee international conference on mobile ad-hoc and sensor systems,1 +ieee international conference on multimedia and expo,1 +ieee international conference on multimedia and expo workshops,1 +ieee international conference on nano/micro engineered and molecular systems,0 +ieee international conference on network infrastructure and digital content,0 +ieee international conference on networks,1 +"ieee international conference on numerical electromagnetic modeling and optimization for rf, microwave, and terahertz applications",0 +ieee international conference on opensource systems and technologies,0 +ieee international conference on pervasive computing and communications,2 +ieee international conference on pervasive computing and communications workshops,1 +ieee international conference on photonics,1 +ieee international conference on power system technology,0 +ieee international conference on rehabilitation robotics,1 +ieee international conference on rfid-technologies and applications,0 +ieee international conference on robotics and automation,2 +ieee international conference on robotics and biomimetics,1 +ieee international conference on serious games and applications for health,1 +ieee international conference on service-oriented computing and applications,1 +ieee international conference on signal and image processing applications,0 +"ieee international conference on signal processing, computing and control",0 +ieee international conference on smart communities,1 +ieee international conference on smart computing,1 +ieee international conference on smart energy grid engineering,0 +ieee international conference on smart grid and smart cities,1 +ieee international conference on software architecture,2 +"ieee international conference on software quality, reliability and security",1 +"ieee international conference on software testing, verification and validation workshops",1 +ieee international conference on standardisation and innovation in information technology,0 +ieee international conference on system engineering and technology,0 +"ieee international conference on systems, man, and cybernetics",1 +"ieee international conference on thermal, mechanical and multi-physics simulation and experiments in microelectronics and microsystems",0 +"ieee international conference on trust, security and privacy in computing and communications",1 +"ieee international conference on wireless and mobile computing, networking, and communications",1 +ieee international conference on wireless for space and extreme environments conference digest,1 +ieee international energy conference,0 +ieee international enterprise distributed object computing conference workshops,0 +ieee international frequency control symposium,0 +ieee international fuzzy systems conference proceedings,1 +ieee international geoscience and remote sensing symposium proceedings,1 +ieee international instrumentation and measurement technology conference,1 +ieee international inter-disciplinary conference on cognitive methods in situation awareness and decision support,0 +ieee international microwave workshop series on rf and wireless technologies for biomedical and healthcare applications,0 +ieee international multitopic conference,0 +ieee international new circuits and systems conference,1 +ieee international smart cities conference,0 +ieee international solid-state circuits conference,2 +ieee international symposium on applied machine intelligence and informatics,0 +ieee international symposium on broadband multimedia systems and broadcasting,1 +ieee international symposium on circuits and systems proceedings,1 +ieee international symposium on computational intelligence and informatics,0 +ieee international symposium on electromagnetic compatibility,0 +ieee international symposium on information theory,1 +ieee international symposium on nanoscale architectures,0 +"ieee international symposium on parallel & distributed processing, workshops and phd forum",0 +"ieee international symposium on personal, indoor, and mobile radio communications workshops",1 +ieee international symposium on power electronics for distributed generation systems,0 +"ieee international symposium on precision clock synchronization for measurement, control, and communication",0 +ieee international symposium on sensorless control for electrical drives,0 +ieee international symposium on sustainable systems and technology,0 +ieee international symposium on wearable computers,1 +ieee international symposium on web systems evolution,1 +ieee international symposium on wireless pervasive computing,1 +ieee international ultrasonics symposium,1 +ieee international working conference on mining software repositories,1 +ieee international workshop on genomic signal processing and statistics,0 +ieee international workshop on intelligent data acquisition and advanced computing systems,0 +ieee international workshop on machine learning for signal processing,1 +ieee international workshop on measurements and networking,0 +ieee international workshop on multimedia signal processing,1 +ieee international workshop on signal processing advances in wireless communications,1 +ieee international workshop on signal processing systems,1 +"ieee international workshop on trust and identity in mobile internet, computing and communications",0 +ieee internet computing,3 +ieee internet of things journal,2 +ieee internet of things magazine,1 +ieee iranian conference on electrical engineering,0 +ieee ismar joint workshop on tracking methods and applications and trakmark,0 +ieee joint intelligence and security informatics conference,0 +ieee jordan conference on applied electrical engineering and computing technologies,0 +ieee journal of biomedical and health informatics,2 +"ieee journal of electromagnetics, rf and microwaves in medicine and biology",1 +ieee journal of emerging and selected topics in industrial electronics,1 +ieee journal of emerging and selected topics in power electronics,2 +ieee journal of indoor and seamless positioning and navigation,1 +ieee journal of microwaves,1 +ieee journal of oceanic engineering,1 +ieee journal of photovoltaics,2 +ieee journal of quantum electronics,2 +ieee journal of radio frequency identification,1 +ieee journal of selected areas in sensors,1 +ieee journal of selected topics in applied earth observations and remote sensing,1 +ieee journal of selected topics in quantum electronics,2 +ieee journal of selected topics in signal processing,3 +ieee journal of solid-state circuits,3 +ieee journal of the electron devices society,2 +ieee journal of translational engineering in health and medicine,1 +ieee journal on emerging and selected topics in circuits and systems,2 +ieee journal on flexible electronics,1 +ieee journal on miniaturization for air and space systems,1 +ieee journal on selected areas in communications,2 +ieee journal on selected areas in information theory,1 +ieee latin america transactions,1 +ieee latin american symposium on circuits and systems,0 +ieee latin-american conference on communications,0 +ieee magnetics letters,1 +ieee mediterranean electrotechnical conference,0 +ieee metrology for aerospace,1 +ieee micro,3 +ieee microwave and wireless technology letters,2 +ieee microwave magazine,1 +ieee military communications conference proceedings,1 +ieee mtt-s international microwave symposium digest,1 +ieee mtt-s international microwave workshop series on advanced materials and processes for rf and thz applications,0 +ieee multidisciplinary engineering education magazine,1 +ieee multimedia,1 +ieee nanotechnology magazine,1 +ieee nanotechnology materials and devices conference,1 +ieee network,3 +ieee networking letters,1 +ieee non-volatile memory systems and applications symposium,1 +ieee nordic-mediterranean workshop on time-to-digital converters,0 +ieee nuclear science symposium conference record,1 +ieee online conference on green communications,0 +ieee open access journal of power and energy,1 +ieee open journal of antennas and propagation,1 +ieee open journal of control systems,1 +ieee open journal of engineering in medicine and biology,1 +ieee open journal of industry applications,1 +ieee open journal of intelligent transportation systems,1 +ieee open journal of nanotechnology,1 +ieee open journal of power electronics,1 +ieee open journal of signal processing,1 +ieee open journal of the communications society,1 +ieee open journal of the computer society,1 +ieee open journal of the industrial electronics society,1 +ieee open journal of vehicular technology,1 +ieee pacific visualization symposium,1 +ieee packet video workshop,0 +ieee pervasive computing,2 +ieee pes innovative smart grid technologies conference europe,1 +ieee photonics journal,1 +ieee photonics technology letters,2 +ieee potentials,1 +ieee power & energy society general meeting,1 +ieee power and energy magazine,2 +ieee power electronics letters,1 +ieee pulse,1 +ieee pulsed power conference,1 +ieee radiation effects data workshop record,1 +ieee radio and wireless symposium,1 +ieee radio frequency integrated circuits symposium digest of papers,1 +ieee reviews in biomedical engineering,1 +ieee revista iberoamericana de tecnologias de aprendizagem,0 +ieee ro-man,1 +ieee robotics and automation letters,2 +ieee robotics and automation magazine,2 +ieee sarnoff symposium,0 +ieee security & privacy,2 +ieee sensors journal,2 +ieee sensors letters,1 +ieee signal processing letters,2 +ieee signal processing magazine,3 +ieee software,2 +ieee software defined networks for future networks and services,0 +ieee soi-3d-subthreshold microelectronics technology unified conference,0 +ieee solid-state circuits letters,1 +ieee solid-state circuits magazine,1 +ieee spectrum,1 +ieee statistical signal processing workshop,1 +ieee student conference on electrical machines and systems,0 +ieee subthreshold microelectronics conference,1 +ieee symposium on artificial life,1 +ieee symposium on computational intelligence for security and defense applications,1 +ieee symposium on computational intelligence in control and automation,1 +ieee symposium on computational intelligence in cyber security,1 +ieee symposium on computational intelligence in multi-criteria decision making,1 +"ieee symposium on computational intelligence, cognitive algorithms, mind, and brain",0 +ieee symposium on design and diagnostics of electronic circuits and systems,1 +ieee symposium on security and privacy,3 +ieee symposium on technologies for homeland security,0 +ieee symposium on visual languages and human-centric computing,1 +ieee systems journal,2 +"ieee systems, man, and cybernetics magazine",1 +ieee technology and society magazine,1 +"ieee topical conference on biomedical wireless technologies, networks, and sensing systems",0 +ieee transactions on aerospace and electronic systems,3 +ieee transactions on affective computing,3 +ieee transactions on antennas and propagation,3 +ieee transactions on applied superconductivity,1 +ieee transactions on artificial intelligence,1 +ieee transactions on automatic control,3 +ieee transactions on automation science and engineering,2 +ieee transactions on autonomous mental development,1 +ieee transactions on big data,1 +ieee transactions on biomedical circuits and systems,1 +ieee transactions on biomedical engineering,2 +"ieee transactions on biometrics, behavior, and identity science",1 +ieee transactions on broadcasting,1 +ieee transactions on circuits and systems for artificial intelligence,1 +ieee transactions on circuits and systems for video technology,2 +ieee transactions on circuits and systems i-regular papers,2 +ieee transactions on circuits and systems ii-express briefs,2 +ieee transactions on cloud computing,1 +ieee transactions on cognitive and developmental systems,1 +ieee transactions on cognitive communications and networking,1 +ieee transactions on communications,3 +"ieee transactions on components, packaging and manufacturing technology",1 +ieee transactions on computational imaging,2 +ieee transactions on computational social systems,1 +ieee transactions on computer-aided design of integrated circuits and systems,2 +ieee transactions on computers,3 +ieee transactions on consumer electronics,1 +ieee transactions on control of network systems,2 +ieee transactions on control systems technology,2 +ieee transactions on cybernetics,3 +ieee transactions on dependable and secure computing,3 +ieee transactions on device and materials reliability,1 +ieee transactions on dielectrics and electrical insulation,2 +ieee transactions on education,1 +ieee transactions on electromagnetic compatibility,1 +ieee transactions on electron devices,3 +ieee transactions on emerging topics in computational intelligence,1 +ieee transactions on emerging topics in computing,1 +ieee transactions on energy conversion,2 +"ieee transactions on energy markets, policy and regulation",1 +ieee transactions on engineering management,1 +ieee transactions on evolutionary computation,3 +ieee transactions on fuzzy systems,3 +ieee transactions on games,1 +ieee transactions on geoscience and remote sensing,3 +ieee transactions on green communications and networking.,1 +ieee transactions on haptics,2 +ieee transactions on human-machine systems,1 +ieee transactions on image processing,3 +ieee transactions on industrial electronics,3 +ieee transactions on industrial informatics,3 +ieee transactions on industry applications,2 +ieee transactions on information forensics and security,2 +ieee transactions on information theory,3 +ieee transactions on instrumentation and measurement,3 +ieee transactions on intelligent transportation systems,2 +ieee transactions on intelligent vehicles,2 +ieee transactions on knowledge and data engineering,3 +ieee transactions on learning technologies,2 +ieee transactions on machine learning in communications and networking,1 +ieee transactions on magnetics,2 +ieee transactions on medical imaging,3 +ieee transactions on microwave theory and techniques,2 +ieee transactions on mobile computing,3 +"ieee transactions on molecular, biological, and multi-scale communications",1 +ieee transactions on multi-scale computing systems,1 +ieee transactions on multimedia,3 +ieee transactions on nanobioscience,1 +ieee transactions on nanotechnology,1 +ieee transactions on network and service management,1 +ieee transactions on network science and engineering,1 +ieee transactions on neural networks and learning systems,3 +ieee transactions on neural systems and rehabilitation engineering,2 +ieee transactions on nuclear science,1 +ieee transactions on parallel and distributed systems,2 +ieee transactions on pattern analysis and machine intelligence,3 +ieee transactions on plasma science,1 +ieee transactions on power delivery,2 +ieee transactions on power electronics,3 +ieee transactions on power systems,2 +ieee transactions on professional communication,1 +ieee transactions on quantum engineering,1 +ieee transactions on radiation and plasma medical sciences,0 +ieee transactions on reliability,2 +ieee transactions on robotics,3 +ieee transactions on semiconductor manufacturing,1 +ieee transactions on services computing,2 +ieee transactions on signal and information processing over networks,1 +ieee transactions on signal processing,3 +ieee transactions on smart grid,3 +ieee transactions on software engineering,3 +ieee transactions on sustainable computing,1 +ieee transactions on sustainable energy,2 +"ieee transactions on systems, man, and cybernetics : systems",2 +ieee transactions on technology and society,1 +ieee transactions on terahertz science and technology,2 +ieee transactions on transportation electrification,1 +ieee transactions on ultrasonics ferroelectrics and frequency control,2 +ieee transactions on vehicular technology,3 +ieee transactions on very large scale integration (vlsi) systems,2 +ieee transactions on visualization and computer graphics,3 +ieee transactions on wireless communications,3 +ieee transportation electrification conference and expo,0 +ieee tsinghua international design management symposium,0 +ieee vehicle power and propulsion conference,0 +ieee vehicular networking conference,1 +ieee vehicular technology conference,1 +ieee vehicular technology magazine,2 +ieee winter conference on applications of computer vision,1 +ieee wireless and microwave technology conference,0 +ieee wireless communications,2 +ieee wireless communications and networking conference,1 +ieee wireless communications letters,2 +ieee workshop on advanced robotics and its social impacts,1 +ieee workshop on applications of signal processing to audio and acoustics,1 +ieee workshop on autonomic and opportunistic networks,0 +ieee workshop on control and modeling for power electronics,1 +ieee workshop on developing applications for pervasive display networks,0 +ieee workshop on electrical machines design control and diagnosis,0 +ieee workshop on managing ubiquitous communications and services,0 +ieee workshop on modeling and simulation of cyber-physical energy systems,0 +ieee world conference on factory communication systems,0 +ieee world congress on services,1 +ieee world forum on internet of things,1 +ieee world symposium on web applications and networking,0 +ieee-acm transactions on computational biology and bioinformatics,2 +ieee-acm transactions on networking,2 +ieee-asme transactions on mechatronics,3 +ieee-embs international conference on biomedical and health informatics,0 +ieee-ras international conference on humanoid robots,1 +ieee/acm international conference on automated software engineering,2 +ieee/acm international conference on computer-aided design,1 +ieee/acm international workshop on the twin peaks of requirements and architecture,0 +"ieee/acm transactions on audio, speech, and language processing",3 +ieee/asme international conference on advanced intelligent mechatronics,1 +ieee/caa journal of automatica sinica,2 +ieee/cic international conference on communications in china,0 +ieee/cic international conference on communications in china - workshops,0 +ieee/ifip international conference on vlsi and system-on-chip,1 +ieee/ifip international symposium on rapid system prototyping,1 +ieee/ifip network operations and management symposium,1 +ieee/ion position location and navigation symposium,0 +ieee/npss symposium on fusion engineering,1 +ieee/sice international symposium on system integration,0 +ieej journal of industry applications,1 +ieej transactions on electrical and electronic engineering,1 +ieej transactions on industry applications,1 +ieice communications express,1 +ieice electronics express,1 +ieice technical report,0 +ieice transactions on communications,1 +ieice transactions on electronics,1 +ieice transactions on fundamentals of electronics communications and computer sciences,1 +ieice transactions on information and systems,1 +iesus aboensis,0 +iet biometrics,1 +iet blockchain,1 +iet circuits devices and systems,1 +iet collaborative intelligent manufacturing,1 +iet communications,1 +iet computer vision,1 +iet computers and digital techniques,1 +iet conference proceedings,1 +iet control theory and applications,1 +iet cyber-physical systems,1 +iet cyber-systems and robotics,1 +iet electric power applications,1 +iet electrical systems in transportation,1 +iet energy systems integration,0 +iet generation transmission and distribution,2 +iet image processing,1 +iet information security,1 +iet intelligent transport systems,1 +"iet international conference on power electronics, machines and drives",0 +iet microwaves antennas and propagation,1 +iet nanobiotechnology,1 +iet optoelectronics,1 +iet power electronics,2 +iet radar sonar and navigation,1 +iet reliability of transmission and distribution networks conference,0 +iet renewable power generation,2 +iet science measurement and technology,1 +iet signal processing,1 +iet smart cities,1 +iet smart grid,1 +iet software,1 +iet systems biology,1 +iet wireless sensor systems,1 +iete journal of research,1 +iete technical review,1 +if,0 +ifac journal of systems and control,1 +"ifac workshop on research, education and development of unmanned aerial systems",0 +ifac-papersonline,1 +ifcn dairy report,-1 +ifip advances in information and communication technology,1 +ifip international conference on network and parallel computing,0 +ifip wg 9.7 working conference on history of nordic computing,0 +ifip wireless days,0 +ifip working group 5.7 international workshop on experimental interactive learning in industrial management,0 +ifla journal,0 +ifla metadata newsletter,-1 +ifla publications,0 +ifmbe proceedings,1 +iforest-biogeosciences and forestry,1 +ifri,0 +ifsa publishing,0 +igaku shoin,0 +igi global,1 +iheringia. série zoologia,0 +ihmisoikeuskeskuksen julkaisuja,-1 +ihmisoikeuskeskus,0 +ihmisyyden monet puolet- blogi,-1 +ihon aika,-1 +iic-international review of intellectual property and competition law,3 +iie transactions,1 +iimc international information management corporation ltd,0 +iipc publication series,1 +iisalmen sanomat,-1 +iise transactions on occupational ergonomics and human factors,1 +iitinseutu,-1 +iiw collection,0 +ij-forlaget,1 +ijab - fachstelle für internationale jugendarbeit der bundesrepublik deutschland,0 +ijcol,0 +ijid regions,0 +ijrdo - journal of educational research,0 +ijred (international journal of renewable energy development),1 +ijrw: international journal of waste resources,0 +ijs studies in judaica,1 +ijtte,0 +ikala,1 +ikam - institute of knowledge asset management,0 +ikaros,0 +ikastaria,0 +ikat,1 +ikiliikkuja,-1 +ikkunapaikka,-1 +iko-verlag,1 +ikoni & kulttuuri,0 +ikonomičeska misʺl,0 +ikä nyt!,-1 +ikäinstituutti,0 +ikääntyneen väestön palvelut,-1 +il calamo,0 +il centro di eccellenza per la cultura e la ricerca infermieristica,0 +il cerchio,0 +il diritto marittimo,1 +il fisioterapista,0 +il giornale dellarchitettura,0 +il giornale di chirurgia,1 +il mar nero,1 +il mulino,0 +il naturalista siciliano,0 +il nome nel testo: rivista internazionale di onomastica letteraria,1 +il nuovo cimento c,1 +il polo,0 +il saggiatore musicale,1 +il veltro,1 +ilar journal,1 +ilha do desterro,0 +ilias oy,0 +ilkka-pohjalainen,-1 +illinois classical studies,1 +illinois journal of mathematics,1 +illness crisis and loss,1 +illusioni,-1 +ilmailu,-1 +ilmajoki-lehti,-1 +ilmamaa,0 +ilmansuojelu,-1 +ilmastokatsaus,0 +ilmatieteen laitos,0 +ilmatorjunta,-1 +ilmiö,-1 +ilsienna,0 +ilta-sanomat,-1 +iltalehti,-1 +ilu: revista de ciencias de las religiones,1 +iluminace,1 +im publications,1 +im@go,1 +ima fungus,1 +ima journal of applied mathematics,1 +ima journal of management mathematics,1 +ima journal of mathematical control and information,1 +ima journal of numerical analysis,2 +imag,1 +image,-1 +image analysis and stereology,1 +image and narrative,1 +image and vision computing,2 +images,1 +images en dermatologie,0 +images re-vues,1 +imagetext,1 +"imagination, cognition and personality",1 +imaginations,1 +imaging,1 +imaging & microscopy,0 +imaging decisions mri,1 +imaging neuroscience,1 +imaging science in dentistry,-1 +imaging science journal,1 +imagining the impossible,1 +imago mundi: the international journal for the history of cartography,1 +imago musicae,1 +imago temporis-medium aevum,0 +imaps nordic,0 +imaps other content,0 +imatran kaupunki,0 +imcsm proceedings,0 +imdc,0 +imeko tc events series,1 +imerides endymasiologias - praktika,1 +imeta,0 +imex,0 +imf economic review,1 +immersion foundation,0 +immigrants and minorities,2 +immigration and asylum law and policy in europe,1 +immigration and nationality law review,1 +immunity,3 +immunity and ageing,1 +"immunity, inflammation and disease",1 +immuno-oncology technology,1 +immunobiology,1 +immunogenetics,1 +immunohorizons,1 +immunologic research,1 +immunological investigations,1 +immunological medicine,-1 +immunological reviews,2 +immunology,1 +immunology and allergy clinics of north america,1 +immunology and cell biology,1 +immunology letters,1 +"immunology, endocrine and metabolic agents in medicinal chemistry",1 +immunometabolism,0 +immunometabolism,1 +immunopharmacology and immunotoxicology,1 +immunotherapy,1 +impact,0 +impact assessment and project appraisal,1 +impact: studies in language and society,1 +impakti,-1 +imperial college press,1 +imperiumi,-1 +impilahtelainen,-1 +implant dentistry,1 +implementation science,1 +implementation science communications,1 +implicit religion,2 +imprensa nacional - casa da moeda,1 +imprensa universidade de coimbra,0 +impressions nouvelles,0 +imprint academic,1 +imprint publishing,-1 +improving schools,1 +imt-rapport,0 +imvi open mathematical education notes,0 +in bo,0 +in die skriflig,1 +in education,0 +in esse : english studies in albania,0 +in practice,1 +in silico biology,1 +in silico pharmacology,1 +in situ archeologica,1 +in vitro cellular and developmental biology: animal,1 +in vitro cellular and developmental biology: plant,1 +in vitro models,0 +in vivo,1 +in-visibilidades,0 +inarilainen,-1 +incantatio,1 +incarceration,1 +incas buletin,0 +incontri linguistici,1 +incose international symposium,1 +indagationes mathematicae: new series,1 +indeksi,-1 +independence,0 +independent publisher,0 +independent publishing network,0 +independent review,1 +inderscience publishers,1 +indes,0 +index journal,1 +index of middle english prose,1 +index on censorship,1 +index: international survey of roman law,1 +india hci conference on human computer interaction,0 +india review,1 +indialogs,1 +indian chemical engineer,0 +indian economic and social history review,2 +indian economic journal,1 +indian fern journal,0 +indian geotechnical journal,1 +indian growth and development review,1 +indian heart journal,1 +indian historical review,1 +indian institute of advanced study,1 +indian journal of agricultural sciences,1 +indian journal of agronomy,1 +indian journal of animal research,1 +indian journal of animal sciences,1 +indian journal of applied linguistics,0 +indian journal of arachnology,0 +indian journal of biochemistry and biophysics,1 +indian journal of biotechnology,1 +indian journal of cancer,1 +indian journal of chemical technology,1 +indian journal of chest diseases and allied sciences,1 +indian journal of commerce and management studies,0 +indian journal of community medicine,1 +indian journal of dermatology venereology and leprology,1 +indian journal of endocrinology and metabolism,0 +indian journal of engineering and materials sciences,1 +indian journal of environmental protection,0 +indian journal of experimental biology,0 +indian journal of fibre and textile research,1 +indian journal of fisheries,0 +indian journal of gastroenterology,1 +indian journal of gender studies,1 +indian journal of genetics and plant breeding,1 +indian journal of health and wellbeing,0 +indian journal of hematology and blood transfusion,0 +indian journal of heterocyclic chemistry,0 +indian journal of history of science,1 +indian journal of horticulture,1 +indian journal of human genetics,1 +indian journal of international economic law,1 +indian journal of labour economics,1 +indian journal of marine sciences,1 +indian journal of marketing,1 +indian journal of medical microbiology,0 +indian journal of medical research,1 +indian journal of medical sciences,0 +indian journal of microbiology,1 +indian journal of natural products and resources,0 +indian journal of nephrology,1 +indian journal of ophthalmology,1 +indian journal of orthopaedics,1 +indian journal of otolaryngology and head and neck surgery,1 +indian journal of palliative care,0 +indian journal of pathology and microbiology,0 +indian journal of pediatrics,1 +indian journal of pharmaceutical education and research,0 +indian journal of pharmaceutical sciences,0 +indian journal of pharmacology,1 +indian journal of physics,1 +indian journal of psychological medicine,1 +indian journal of pure and applied mathematics,1 +indian journal of pure and applied physics,1 +indian journal of science and technology,0 +indian journal of scientific research and technology,0 +indian journal of social work,1 +indian journal of surgery,1 +indian journal of surgical oncology,0 +indian journal of theoretical physics,0 +indian journal of traditional knowledge,0 +indian national science academy,1 +indian pacing and electrophysiology journal,1 +indian pediatrics,1 +indian society for promoting christian knowledge,-1 +indian veterinary journal,1 +indiana,1 +indiana journal of global legal studies,1 +indiana law journal,1 +indiana theory review,1 +indiana university mathematics journal,2 +indiana university press,1 +indiana university uralic and altaic series,1 +indigena,0 +indigenous affairs,1 +indigenous law journal,1 +indigenous policy,1 +indilinga : african journal of indigenous knowledge systems,1 +individual-based ecology,-1 +indo-european linguistics,0 +indo-iranian journal,2 +indo-pacific journal of phenomenology,1 +indogermanische forschungen,2 +indologica taurinensia,0 +indonesia,1 +indonesia and the malay world,1 +indonesian journal of electrical engineering and computer science,1 +indonesian journal of electrical engineering and informatics,0 +indonesian journal of international and comparative law,0 +indonesian journal of social research,1 +indoor air,2 +indoor and built environment,1 +indoor environments,1 +industria textila,1 +industrial and commercial training,1 +industrial and corporate change,2 +industrial and engineering chemistry research,1 +industrial and labor relations review,2 +industrial and organizational psychology-perspectives on science and practice,1 +industrial archaeology news,1 +industrial archaeology review,1 +industrial archaeology: the journal of the society for industrial archeology,1 +industrial biotechnology,1 +industrial ceramics,1 +industrial combustion,1 +industrial crops and products,2 +industrial diamond review,1 +industrial engineer,1 +industrial engineering and management systems,1 +industrial health,1 +industrial law journal,2 +industrial lubrication and tribology,1 +industrial management and data systems,1 +industrial marketing management,3 +industrial relations,1 +industrial relations journal,1 +industrial robot: an international journal,1 +industrie 4,-1 +industrie alimentari,1 +industrielle beziehungen,1 +industry and higher education,1 +industry and innovation,2 +infancia y aprendizaje,0 +infancy,1 +infant and child development,1 +infant behavior and development,1 +infant mental health journal,1 +infants and young children,1 +infection,1 +infection and drug resistance,1 +infection and immunity,1 +infection control and hospital epidemiology,1 +infection ecology & epidemiology,1 +infection genetics and evolution,1 +infection prevention in practice,1 +infectious agents and cancer,1 +infectious disease clinics of north america,1 +infectious disease modelling,-1 +infectious diseases,1 +infectious diseases & immunity,0 +infectious diseases and therapy,-1 +infectious diseases diagnosis & treatment,0 +infectious diseases in clinical practice,1 +infectious diseases in obstetrics and gynecology,1 +infectious diseases now,1 +infectious diseases of poverty,2 +infectious disorders : drug targets,1 +infektioidentorjunta,-1 +infini,1 +infinite dimensional analysis quantum probability and related topics,1 +infinity publishing,0 +inflammasome,0 +inflammation,1 +inflammation and allergy: drug targets,1 +inflammation and cell signaling,0 +inflammation research,1 +inflammatory bowel diseases,2 +inflammopharmacology,1 +inflexions: a journal for research creation,1 +influenza and other respiratory viruses,1 +info,1 +infobase creation sdn bhd,0 +infocommunications journal,1 +infomat,1 +infonomics society,1 +infor,0 +infor,1 +inforegio panorama,-1 +informa healthcare,1 +informa law,1 +informaatioteknologian tiedekunnan julkaisuja,-1 +informaatiotieteiden yksikön raportteja,-1 +informaatiotutkimus,1 +informacao e sociedade: estudos,1 +informacije midem: journal of microelectronics electronic components and materials,1 +informacionno-upravlâûŝie sistemy,1 +informacios tarsadalom,1 +informal logic,1 +informatica,1 +informatics,1 +informatics for health and social care,1 +informatics in education,1 +informatics in medicine unlocked,1 +informatics in primary care,1 +informatică economică,0 +informatik-spektrum,0 +informatika,-1 +informatika i avtomatizaciâ,1 +informatika i ee primeneniâ,0 +information,-1 +information,0 +information & computer security,1 +information & media,1 +information & security,0 +information age publishing,1 +information and communication sciences research,0 +information and communications technology law,2 +information and computation,2 +information and culture,1 +information and inference,2 +information and learning sciences,1 +information and management,2 +information and organization,3 +information and software technology,3 +information assurance and security letters,1 +information bulletin on variable stars,1 +information communication and society,2 +information design journal,1 +information development,1 +information discovery and delivery,1 +information economics and policy,1 +information engineering research institute,0 +information fusion,3 +information geometry,1 +information grammaticale,2 +information management international inc.,1 +information matters,-1 +information polity,1 +information processing and management,3 +information processing in agriculture,0 +information processing letters,1 +information research,2 +information resources management journal,1 +information science reference,1 +information sciences,3 +information sciences for decision making,1 +information security journal : a global perspective,1 +information services and use,1 +information society,2 +information systems,2 +information systems and e-business management,1 +information systems education journal,1 +information systems frontiers,2 +information systems journal,3 +information systems management,1 +information systems research,3 +information technologies and control,0 +information technologies and international development,1 +information technology and control,1 +information technology and disabilities,1 +information technology and libraries,1 +information technology and management,2 +information technology and people,2 +information technology and tourism,1 +information technology for development,1 +information technology journal,0 +"information technology, education and society",1 +information theory and applications,1 +information today,1 +information visualization,1 +"information, knowledge, systems management",1 +information: wissenschaft und praxis,1 +informationen aus orthodontie und kieferorthopädie,0 +informationen deutsch als fremdsprache,1 +informationen zur raumentwicklung,1 +informationes theologiae europae: internationales okumenisches jahrbuch fur theologie,1 +informations forlag,1 +informations sociales,0 +informes de la construccion,1 +informing science,1 +informing science institute,1 +informing science press,1 +informreklama,0 +informs journal on computing,1 +informs journal on data science,1 +informs transactions on education,1 +infra,-1 +infrared physics and technology,1 +infrastructure asset management,1 +infrastructures,0 +ingenere newsletter,-1 +ingeniare : revista chilena de ingeniería,0 +ingenieria hidraulica en mexico,1 +ingenieria quimica,1 +ingenierie des systemes dinformation,1 +ingineria illuminatului,1 +inhalation toxicology,1 +injury epidemiology,1 +injury prevention,1 +injury: international journal of the care of the injured,1 +inkeriläisten viesti,-1 +inklings: jahrbuch fur literatur and asthetik,1 +inkoma,0 +inks,1 +inland water biology,1 +inland waters,1 +inmedia,0 +innate immunity,1 +inner asia,1 +inner mongolia people's publishing house,0 +innes review,1 +innovacionnye proekty i programmy v obrazovanii,0 +innovar: revista de ciencias administrativas y sociales,1 +innovare journal of education,0 +innovation & management review,0 +innovation : organization & management,2 +innovation and development,1 +innovation and green development,1 +innovation and product development management conference,0 +innovation and supply chain management,0 +innovation in aging,1 +innovation in language learning and teaching,1 +innovation in the social sciences,1 +innovation journal,1 +innovation journalism,1 +innovation policy and the economy,1 +innovation: the european journal of social science research,1 +innovations,0 +innovations,1 +innovations in education and teaching international,1 +innovations in pharmacy,0 +innovations in systems and software engineering,1 +innovative biosystems and bioengineering,0 +innovative food science and emerging technologies,1 +innovative higher education,1 +"innovative infotechnologies for science, business and education",0 +innovative infrastructure solutions,1 +innovative marketing,0 +innovative practice in breast health,0 +innovative smart grid technologies,1 +innsbrucker beitrage zur sprachwissenschaft,1 +inocula,-1 +inorganic chemistry,2 +inorganic chemistry communications,1 +inorganic chemistry frontiers,2 +inorganic materials,0 +inorganic materials: applied research,0 +inorganic reaction mechanisms,1 +inorganic syntheses,1 +inorganica chimica acta,1 +inorganics,0 +inostrannye jazyki v škole,1 +inovacije u nastavi,0 +inquiry in education,0 +inquiry: an interdisciplinary journal of philosophy,2 +inquiry: the journal of health care organization provision and financing,1 +inra editions,1 +inroads,-1 +insciencepress,0 +inscriptions,1 +insea publications,1 +insect biochemistry and molecular biology,1 +insect conservation and diversity,1 +insect molecular biology,1 +insect science,1 +insect systematics and diversity,1 +insect systematics and evolution,1 +insecta mundi,0 +insectes sociaux,1 +insects,0 +insert - artistic practices as cultural inquiries,0 +inside gnss,1 +inside the internet,1 +insider,-1 +insight,1 +insight: journal of the american society of ophthalmic registered nurses,1 +insights,0 +insights into imaging,1 +insights on learning disabilities,1 +insinööri,-1 +insolvensrättslig tidskrift,1 +insticc press,1 +institución fernando el católico,0 +institut,0 +institut de france,1 +institut de papyrologie et degyptologie de lille: cahiers de recherche,1 +institut de recherche et coordination acoustique/musique,1 +"institut društvenih nauka, izdavačka delatnost",0 +institut d´études slaves,0 +"institut français des sciences et technologies des transports, de l’aménagement et des réseaux",0 +institut für werkstoffwissenschaft und werkstofftechnologie,1 +institut jozef stefan,0 +institut kajian etnik ukm (kita),0 +institut lingvisticheskix issledovanij rossijskoj akademii nauk,0 +institut lingvisticheskix issledovanij rossijskoj akademii nauk,1 +institut national de recherche en informatique et en automatique,1 +institut razvitiya obrazovaniya,0 +institut russkogo âzyka im. v.v. vinogradova,1 +institut teknologi sepuluh nopember,0 +institut umění - divadelní ústav,1 +institut universitaire varenne,0 +"institut yazy`ka, literatury` i istorii komi nauchnogo centra ural`skogo otdeleniya rossijskoj akademii nauk",0 +institut za kriminološka i sociološkaistraživanja,0 +institut za uporedno pravo,0 +institute for adult learning,0 +institute for operations research and the management sciences,1 +institute for small business affairs,0 +institute of acoustics,0 +institute of archaeology at jerusalem university,0 +institute of economic affairs,0 +institute of education press,1 +institute of educational sciences,0 +institute of logistics and transport,0 +"institute of marine engineering, science and technology",1 +institute of mathematical statistics,1 +institute of mediæval music,1 +institute of physics and engineering in medicine,1 +institute of physics conference series,1 +institute of physics publishing,1 +institute of research engineers & doctors,0 +institute-museum of the armenian genocide,0 +institutet för pentekostala studier,0 +institutet för rättshistorisk forskning,1 +institutet för språk och folkminnen,1 +instituti albanologjik,0 +institution of chemical engineers,1 +institution of engineering and technology,1 +institution of mechanical engineers,1 +institution of occupational safety and health,1 +institution of structural engineers,1 +"institutionen för nordiska språk, uppsala universitet",1 +instituto camões,1 +instituto de estudios judiciales,1 +instituto de literatura comparada margarida losa,0 +instituto nacional de pesquisas da amazônia,0 +"instituto politécnico de lisboa, escola superior de educação",0 +"instituto politécnico de santarém, escola superior de educação",0 +instituto superior da maia,0 +instituto superior engenharia do porto,0 +institutul european,0 +instructed second language acquisition,0 +instructional course lectures,1 +instructional science,3 +"instrumentation engineering, electronics and telecommunications",0 +instrumentation science and technology,1 +instruments,0 +instruments and experimental techniques,1 +instytut filozofii i socjologii pan,0 +instytut kultury regionalnej i badań literackich franciszka karpińskiego,1 +instytut maszyn przepływowych pan,0 +instytut nauk prawnych polskiej akademii nauk,0 +instytut pamięci narodowej,0 +instytut technologii eksploatacji,0 +instytut w?ókien naturalnych i ro?lin zielarskich,0 +insu,-1 +insula: revista de letras y ciencias humanas,1 +insurance markets and companies,0 +insurance markets and companies: analyses and actuarial computations,0 +insurance mathematics and economics,1 +intangible capital,0 +intech open,0 +inted proceedings,0 +integers,1 +integraciâ obrazovaniâ,1 +integral,1 +integral equations and operator theory,1 +integral review,1 +integral transforms and special functions,1 +integrated assessment,1 +integrated blood pressure control,0 +integrated computer-aided engineering,1 +integrated environmental assessment and management,1 +integrated ferroelectrics,1 +integrated pharmacy research and practice,1 +integrating materials and manufacturing innovation,1 +integration,0 +integration: the vlsi journal,1 +integrative and comparative biology,1 +integrative biology,1 +integrative cancer therapies,1 +integrative conservation,1 +integrative medicine,1 +integrative psychological and behavioral science,1 +integrative systematics,1 +integrative zoology,1 +intelektinė ekonomika,0 +inteligencia artificial,0 +intellect,2 +intellectual and developmental disabilities,1 +intellectual history archive,0 +intellectual history review,2 +intellectual property law library,1 +intellectual property publishing house,0 +intellectual property quarterly,0 +intelligence,3 +intelligence and national security,1 +intelligence-based medicine,0 +intelligent and converged networks,1 +intelligent and sustainable manufacturing,1 +intelligent automation and soft computing,1 +intelligent buildings international,1 +intelligent control and automation,0 +intelligent data analysis,1 +intelligent decision technologies,1 +intelligent information management,0 +intelligent service robotics,1 +"intelligent systems in accounting, finance and management",1 +intelligent systems with applications,1 +intelligenza artificiale,0 +intensities: the journal of cult media,1 +intensive and critical care nursing,1 +intensive care medicine,3 +intensive care medicine experimental,1 +inter,0 +inter faculty,1 +inter-asia cultural studies,1 +inter-disciplinary press,1 +interaccões,1 +interact,-1 +interacting with computers,2 +interaction between compilers and computer architectures,1 +interaction of mechanics and mathematics,1 +interaction studies,1 +interactional linguistics,0 +interactions,1 +interactions: studies in communication and culture,1 +interactive journal of medical research,1 +interactive learning environments,1 +interactive technology and smart education,1 +interacções,0 +interakciâ intervʹû interpretaciâ,1 +interarchaeologia,1 +intercarto. intergis,1 +interchange,1 +interciencia,1 +intercom,-1 +interconnections,1 +intercoop,0 +intercultural communication education,0 +intercultural communication studies,1 +intercultural education,1 +intercultural pragmatics,3 +interculturality and translation,1 +interdisciplinary cardiovascular and thoracic surgery,1 +interdisciplinary discourses,0 +interdisciplinary environmental review,1 +interdisciplinary journal for germanic linguistics and semiotic analysis,1 +interdisciplinary journal for religion and transformation in contemporary society,1 +interdisciplinary journal of contemporary research in business,0 +interdisciplinary journal of environmental and science education,1 +"interdisciplinary journal of information, knowledge, and management",0 +interdisciplinary journal of portuguese diaspora studies,1 +interdisciplinary journal of problem-based learning,1 +interdisciplinary literary studies,1 +interdisciplinary neurosurgery,1 +interdisciplinary perspectives on infectious diseases,1 +interdisciplinary research foundation,0 +interdisciplinary science reviews,1 +interdisciplinary studies in ancient culture and religion,1 +interdisciplinary studies in literature and environment,2 +interdisciplinary studies in musicology,1 +interdisciplinary studies journal,0 +interdisciplines,1 +intereconomics: review of european economic policy,1 +interesource group publishing,0 +interest groups & advocacy,1 +interethnic@,1 +interface focus,1 +interface: a journal for and about social movements,1 +interfaces,1 +interfaces and free boundaries,1 +interfaces científicas : educação,1 +intergovernmental panel on climate change,0 +"interiors: design, architecture, culture",1 +interjournal,1 +interkulturelle theologie,0 +interlending and document supply,1 +interlitteraria,1 +intermedialites,1 +intermetallics,1 +internal and emergency medicine,1 +internal auditing & risk management,0 +internal medicine,1 +internal medicine journal,1 +internasjonal politikk,1 +international academic conference proceedings,0 +international academy for production engineering,1 +international academy of practical theology conference series,0 +"international academy of technology, education and development",1 +international acm sigir conference on research and development in information retrieval,2 +international advances in economic research,1 +international affairs,3 +international agency for research on cancer,1 +international agrophysics,1 +international airport review,-1 +international ambient media association,0 +international and comparative corporate law journal,2 +international and comparative criminal law series,1 +international and comparative law quarterly,3 +international and comparative law review,-1 +international anesthesiology clinics,1 +international angiology,1 +international applied mechanics,1 +international aquatic research,1 +international arab journal of information technology,1 +international arbitration law review,1 +international archives of allergy and immunology,1 +international archives of occupational and environmental health,1 +"international archives of the photogrammetry, remote sensing and spatial information sciences",1 +international aset,0 +"international asia conference on informatics in control, automation, and robotics",0 +international association for aesthetics,0 +international association for automation and robotics in construction,0 +international association for bridge and structural engineering,1 +international association for computer information systems,1 +international association for escience,0 +international association for fire safety science,1 +international association for hungarian studies,0 +international association for hydro-environment engineering and research,1 +international association for the study of attachment,0 +international association for tourism policy,0 +international association for universal design,1 +international association of engineers,1 +international association of geodesy symposia,1 +international association of it lawyers,0 +international association of maritime universities,0 +international astronomical union,1 +international atomic energy agency,1 +international bali institute of tourism,0 +international bear news,-1 +international bibliography of military history,1 +international biodeterioration and biodegradation,1 +international black sea conference on communications and networking,0 +international braz j urol: official journal of the brazilian society of urology,1 +international breastfeeding journal,1 +international building performance simulation association,0 +international business & education conferences proceedings,0 +international business and global economy,0 +international business information management association,0 +international business research,0 +international business review,2 +international cartographic association,1 +international center for numerical methods in engineering cimne,1 +international chamber of commerce,1 +international changing cities conference,0 +international clil research journal,1 +international clinical psychopharmacology,1 +international coaching psychology review,1 +"international colloquium on automata, languages and programming",2 +international comission on illumination centenary conference,0 +international communication gazette,1 +international communications in heat and mass transfer,1 +international community law review,1 +international company and commercial law review,1 +international comparative jurisprudence,1 +international comparative social studies,1 +international computer music association,1 +international computer music conference proceedings,1 +international computer science and engineering conference,0 +international computer science symposium in russia,0 +international conceive design implement operate academy conference,0 +international conference an enterprise odyssey,0 +international conference and workshops on networked systems,0 +"international conference for entrepreneurship, innovation & regional development",0 +"international conference for high performance computing, networking, storage and analysis",1 +international conference image and vision computing new zealand,1 +international conference laser optics,0 +international conference nuclear energy for new europe,0 +international conference of advanced research methods and analytics,0 +international conference on advances in information mining and management,0 +international conference on artificial intelligence and statistics,2 +international conference on 3d vision proceedings,1 +international conference on active media technology,0 +international conference on ad hoc networks,0 +international conference on ad hoc networks and wireless,0 +international conference on adaptive and self-adaptive systems and applications,0 +international conference on advanced applied informatics,0 +international conference on advanced cognitive technologies and applications,0 +"international conference on advanced collaborative networks, systems and applications",0 +international conference on advanced communication technology,0 +international conference on advanced computational methods in engineering,0 +international conference on advanced computer science and information systems,0 +"international conference on advanced geographic information systems, applications, and services",0 +international conference on advanced ict for education,1 +international conference on advanced information networking and applications,1 +"international conference on advanced mechatronics, intelligent manufacture, and industrial automation",0 +international conference on advances in cognitive radio,0 +international conference on advances in computer-human interactions,0 +"international conference on advances in human-oriented and personalized mechanisms, technologies, and services",0 +international conference on advances in information technology,0 +international conference on advances in mechanical and robotics engineering,0 +international conference on advances in satellite and space communications,0 +international conference on advances in system testing and validation lifecycle,0 +international conference on affective computing and intelligent interaction and workshops,1 +international conference on algorithms and architectures for parallel processing,1 +international conference on analytical and stochastic modelling techniques and applications,0 +international conference on antenna theory and techniques,0 +international conference on application of fuzzy systems and soft computing,0 +international conference on applications of time-frequency processing in audio,0 +international conference on applied parallel and scientific computing,0 +international conference on artificial intelligence and pattern recognition,0 +international conference on artificial intelligence in information and communication,1 +international conference on auditory-visual speech processing,1 +international conference on autonomous agents and multiagent systems,2 +"international conference on autonomous infrastructure, management, and security",0 +international conference on barkhausen noise and micromagnetic testing,0 +international conference on bio-inspired systems and signal processing,0 +"international conference on bioinformatics, biocomputational systems and biotechnologies",1 +international conference on bioinspired optimization methods and their applications,1 +international conference on biometrics,1 +"international conference on broadband and wireless computing, communication and applications",0 +international conference on building and exploring web based environments,0 +international conference on cartography and gis proceedings,0 +international conference on clean electrical power,0 +international conference on climbing and walking robots,1 +international conference on cloud and green computing,0 +international conference on cloud and service computing,1 +international conference on cloud security management,0 +international conference on collaborative innovation networks,0 +international conference on communication systems and networks,1 +international conference on communication technology and system design,0 +"international conference on communication theory, reliability, and quality of service",0 +"international conference on communication, media, technology and design",0 +international conference on communications and electronic systems,0 +international conference on communications and information technology,0 +"international conference on communications, signal processing and their applications",0 +international conference on computational and information sciences,0 +"international conference on computational intelligence, communication systems and networks",0 +international conference on computational linguistics,1 +international conference on computational science and computational intelligence,0 +international conference on computational social networks,0 +international conference on computer aided systems theory,0 +international conference on computer applications technology,0 +international conference on computer graphics theory and applications,1 +international conference on computer modeling and simulation,0 +international conference on computer modelling and simulation,0 +international conference on computer science and communication technology,0 +"international conference on computer science, applied mathematics, and applications",0 +"international conference on computer science, computer engineering, and social media",0 +international conference on computer systems and industrial informatics,0 +"international conference on computer, control, informatics and its application",0 +international conference on computers helping people with special needs,0 +international conference on connected vehicles and expo,1 +"international conference on control, automation and systems",1 +"international conference on control, automation and systems engineering",0 +"international conference on control, decision and information technologies",1 +"international conference on creating, connecting, and collaborating through computing",1 +international conference on creative content technologies,0 +international conference on cyber and it service management,0 +international conference on cyber conflict,1 +international conference on data analytics,0 +international conference on data engineering,2 +"international conference on design, user experience and usability",0 +international conference on digital image processing,0 +international conference on digital information and communication technology and its applications,0 +international conference on digital signal processing proceedings,1 +international conference on digital society,0 +international conference on digital telecommunications,0 +international conference on distributed computer and communications networks,0 +international conference on distributed computing in sensor systems and workshops,1 +international conference on distributed computing systems,2 +international conference on e-infrastructure and e-services for developing countries,0 +international conference on e-learning,0 +international conference on educational data mining,1 +international conference on electric power and energy conversion systems,0 +international conference on electrical and computer engineering,0 +international conference on electrical and electronics engineering,0 +international conference on electrical engineering and control applications,0 +"international conference on electrical engineering, computing science, and automatic control",1 +"international conference on electrical engineering/electronics, computer, telecommunications and information technology",0 +international conference on electronic properties of two-dimensional systems /international conference on modulated semiconductor structures,0 +international conference on electronics packaging,0 +"international conference on emerging internetworking, data and web technologies",0 +"international conference on emerging research in computing, information, communication and applications",0 +"international conference on energy, environment, devices, systems, communications, computers",0 +international conference on enterprise systems,0 +international conference on entertainment computing,1 +international conference on environment and electrical engineering,1 +international conference on evaluation of novel approaches to software engineering,0 +international conference on field and service robotics,1 +international conference on field programmable logic and applications,1 +international conference on field programmable technology,0 +international conference on frontiers of information technology,0 +international conference on future internet of things and cloud,0 +international conference on future networks and communications,0 +international conference on games and virtual worlds for serious applications,0 +international conference on global health challenges,0 +international conference on green computing and engineering technologies,0 +international conference on green it solutions,1 +international conference on ground penetrating radar,0 +international conference on high voltage engineering and application,1 +international conference on higher education advances,0 +international conference on human aspects of it for the aged population,0 +international conference on human-computer interaction,0 +"international conference on humanoid, nanotechnology, information technology, communication and control, environment and management",0 +international conference on ict and knowledge engineering,0 +international conference on ict convergence,0 +"international conference on ict in education, research, and industrial applications",0 +"international conference on image processing, computer vision, and pattern recognition",0 +international conference on indoor positioning and indoor navigation,1 +international conference on industrial and hazardous waste management : executive summaries,0 +international conference on industrial mechatronics and automation,1 +international conference on informatics in school,0 +international conference on information and automation for sustainability,0 +international conference on information and communication systems,0 +international conference on information and communication technology convergence,0 +international conference on information and communication technology research,0 +international conference on information and communications technologies,0 +international conference on information and multimedia technology,1 +international conference on information and software technologies,0 +international conference on information assurance and security,1 +international conference on information communication technologies in education,0 +international conference on information modelling and knowledge bases,0 +international conference on information processing in sensor networks,2 +international conference on information security and cryptology iscturkey,0 +international conference on information systems,2 +international conference on information systems development,1 +international conference on information systems engineering,1 +international conference on information technology interfaces,0 +international conference on information technology: new generations,0 +international conference on information visualization theory and applications,1 +"international conference on information, intelligence, systems and applications",0 +"international conference on infrared, millimeter, and terahertz waves",1 +international conference on innovation and management,0 +international conference on innovative computing technology,0 +international conference on innovative mobile and internet services in ubiquitous computing,0 +international conference on integrated power electronics systems,0 +international conference on intelligence in next generation networks,1 +international conference on intelligent and advanced systems,0 +international conference on intelligent decision technologies,1 +international conference on intelligent human-machine systems and cybernetics,0 +international conference on intelligent systems design and applications,1 +international conference on intelligent user interfaces,2 +international conference on internet and web applications and services,0 +international conference on knowledge and systems engineering,1 +international conference on knowledge engineering and ontology development,1 +international conference on knowledge management and information systems,1 +international conference on lead-acid batteries,0 +international conference on learning representations,1 +international conference on life cycle assessment of food,0 +international conference on localization and gnss,1 +"international conference on logic, rationality and interaction",0 +international conference on machine learning,3 +international conference on machine vision,1 +international conference on manufacturing research,0 +international conference on maritime transport,0 +international conference on mathematical and computational methods in science and engineering proceedings,0 +international conference on mathematical methods in electromagnetic theory conference proceedings,1 +international conference on measurement and control engineering,0 +international conference on measuring technology and mechatronics automation,0 +international conference on membrane computing,0 +international conference on methods and models in automation and robotics,0 +international conference on microwave and millimeter wave technology,0 +international conference on military communications and information systems,1 +international conference on mixed design of integrated circuits and systems,0 +"international conference on mobile and ubiquitous systems : computing, networking and services",1 +international conference on mobile business,1 +international conference on mobile computing and ubiquitous networking,0 +international conference on mobile networks and management,0 +"international conference on mobile services, resources, and users",0 +"international conference on mobile ubiquitous computing, systems, services and technologies",0 +"international conference on mobile, hybrid, and on-line learning",0 +international conference on modeling and applied simulation,0 +"international conference on modeling and simulation of electric machines, converters and systems",0 +"international conference on modeling, simulation and applied optimization",0 +"international conference on modeling, simulation and visualization methods",0 +international conference on natural computation,0 +international conference on network and service management,1 +international conference on network of the future,0 +international conference on network protocols,2 +international conference on networking and services,0 +international conference on networks,0 +"international conference on next generation mobile applications, services and technologies",1 +international conference on online communities and social computing,0 +international conference on onomastics: name and naming,0 +international conference on operations research abstract book,0 +international conference on operations research and enterprise systems,1 +international conference on optical internet,0 +international conference on optical mems and nanophotonics,1 +international conference on optimization and control with applications,0 +international conference on parallel computing technologies,0 +international conference on pattern recognition,1 +international conference on peer-to-peer computing,1 +international conference on performance evaluation methodologies and tools,0 +international conference on personal satellite services,0 +international conference on pervasive and embedded computing and communication systems,0 +international conference on pervasive embedded computing and communication systems,0 +international conference on physics of reactors,1 +international conference on power electronics,1 +"international conference on power engineering, energy and electrical drives",0 +international conference on principles and practice of constraint programming,2 +international conference on principles of knowledge representation and reasoning,0 +international conference on probabilistic methods applied to power systems,1 +international conference on quality software,1 +international conference on quantitative and qualitative methodologies in the economic and administrative sciences,0 +international conference on quantum interaction,0 +international conference on queueing theory and network applications,0 +international conference on recent trends in computer science and electronics,0 +international conference on remote engineering and virtual instrumentation,0 +international conference on renewable energy research and applications,1 +international conference on robotics and mechatronics,0 +"international conference on robotics, biomimetics & intelligent computational systems",0 +international conference on self-adaptive and self-organizing systems,1 +international conference on sensor network security technology and privacy communication system,0 +international conference on sensor technologies and applications,0 +international conference on signal and information processing,0 +international conference on signal processing,0 +international conference on signal processing and multimedia applications,1 +"international conference on signal processing, communication and networking",0 +international conference on smart communications in network technologies,0 +international conference on smart energy systems and technologies,1 +"international conference on smart grid technology, economics and policies",0 +"international conference on smart grids, green communications and it energy-aware technologies",0 +international conference on social computing and social media,0 +international conference on society and information technologies,0 +international conference on soft computing models in industrial and environmental applications,0 +international conference on software architecture companion,1 +international conference on software engineering,3 +international conference on software engineering advances,1 +international conference on software engineering and knowledge engineering,1 +international conference on systems,0 +international conference on systems and informatics,0 +international conference on systems science,0 +"international conference on systems, signals, and image processing",1 +"international conference on telecommunication systems, services, and applications",0 +international conference on the applications of computer science and mathematics in architecture and civil engineering,0 +international conference on the design of cooperative systems,1 +international conference on the european energy market,1 +international conference on the human side of service engineering,0 +international conference on the synthesis and simulation of living systems,1 +international conference on thermoelectrics,1 +international conference on tools and algorithms for the construction and analysis of systems,2 +international conference on tourism management and tourism relates issues,-1 +international conference on ubiquitous and future networks,0 +international conference on ultra modern telecommunications & workshops,1 +international conference on user science and engineering,0 +international conference on very large data bases,2 +"international conference on virtual, augmented and mixed reality",0 +"international conference on wireless algorithms, systems, and applications",0 +international conference on wireless and mobile communications,0 +"international conference on wireless communication, vehicular technology, information theory and aerospace & electronic systems technology",0 +international conference on wireless communications and signal processing,0 +international conference physics teaching in engineering education,0 +international conference radioelektronika,0 +international conference series : world marketing congress,0 +international conference surveillance,0 +international conference the experience of designing and application of cad systems in microelectronics,0 +international congress of metrology,0 +international congress on acoustics,0 +international congress on advanced electromagnetic materials in microwaves and optics,0 +international congress on environmental modelling and software,0 +international construction law review,1 +"international convention on information and communication technology, electronics and microelectronics",1 +international corrosion conference series,0 +international council for research and innovation in building and construction,0 +international council for research in agro-forestry,0 +international council for small business,0 +international council of museums,1 +international council of sport science and physical education,0 +international criminal justice review,1 +international criminal law review,1 +international criminology,1 +international critical childhood policy studies journal,0 +international critical thought,1 +international cryptology conference,3 +international cybersecurity law review,1 +international dairy journal,1 +international data privacy law,2 +international debate education association,0 +international dental journal,1 +international development planning review,1 +international development policy,1 +international diabetes nursing,1 +international e-journal of advances in education,0 +international economic journal,1 +international economic review,3 +international economics,1 +international economics and economic policy,1 +international economics letters,0 +international education journal,1 +international education studies,0 +international ejournal of engineering mathematics: theory and application,1 +international electric propulsion conference,0 +international electronic journal for leadership in learning,1 +international electronic journal of algebra,1 +international electronic journal of elementary education,1 +international electronic journal of environmental education,1 +international electronic journal of mathematics education,1 +international electronic journal of nuclear safety and simulation,0 +international emergency nursing,1 +international endodontic journal,3 +"international energy agency, photovoltaic power systems programme",0 +international energy law review,1 +international entrepreneurship and management journal,1 +international environmental agreements: politics law and economics,1 +international environmental history group,0 +international environmental technology,-1 +international family law,1 +"international family law, policy and practice",1 +international federation for information processing,0 +international federation of surveyors,0 +international feminist journal of politics,2 +international fiction review,1 +international finance,1 +international food and agribusiness management review,1 +international ford madox ford studies,1 +international forestry review,1 +international forum of allergy and rhinology,1 +international forum of psychoanalysis,1 +international forum of teaching and studies,1 +international gambling studies,1 +international game theory review,1 +international geology review,1 +international grassland congress,0 +international health,0 +international heart and vascular disease journal,1 +international heart journal,1 +international heat transfer conference,0 +international heat treatment and surface engineering,1 +international higher education,0 +international history review,3 +international hl7 interoperability conference,1 +international human rights law review,1 +international humanitarian law series,1 +international hydrographic review,1 +international icst conference on cognitive radio oriented wireless networks and communications,1 +international ieee/embs conference on neural engineering,0 +international igte symposium on numerical field calculation in electrical engineering,0 +international immunology,1 +international immunopharmacology,1 +international in-house counsel journal,0 +international indigenous policy journal,1 +international information and library review,1 +international insolvency review,1 +international institute for advanced studies in systems research and cybernetics,0 +international institute for conservation of historic and artistic works,1 +international institute for environment and development,1 +international institute of informatics and systemics,0 +international institute of refrigeration,1 +international institute of social and economic sciences,0 +international insurance law review,1 +international interactions,1 +international joint conference on artificial intelligence,3 +international joint conference on awareness science and technology and ubi-media computing,0 +international joint conference on computational sciences and optimization,0 +international joint conference on computer science and software engineering,0 +international joint conference on software technologies,0 +international journal,1 +international journal about parents in education,1 +international journal bioautomation,0 +international journal emerging technology and advanced engineering,0 +international journal for academic development,1 +international journal for applied management science and global developments,0 +international journal for computational methods in engineering science and mechanics,1 +international journal for construction marketing,0 +international journal for court administration,1 +"international journal for crime, justice and social democracy",1 +international journal for cross-displinary subjects in education,0 +international journal for dialogical science,1 +international journal for educational and vocational guidance,1 +international journal for educational integrity,1 +international journal for educational media and technology,-1 +international journal for equity in health,1 +international journal for history and social sciences education,0 +"international journal for history, culture and modernity",2 +international journal for housing science and its applications,0 +international journal for human caring,1 +international journal for infonomics,0 +international journal for information security research,1 +international journal for innovation and quality in learning innoqual,1 +international journal for ion mobility spectrometry,1 +international journal for lesson and learning studies,1 +international journal for mathematics teaching and learning,1 +international journal for multiscale computational engineering,1 +international journal for numerical and analytical methods in geomechanics,2 +international journal for numerical methods in biomedical engineering,1 +international journal for numerical methods in engineering,2 +international journal for numerical methods in fluids,1 +international journal for parasitology,1 +international journal for philosophy of religion,2 +international journal for quality in health care,1 +international journal for quality research,1 +international journal for religious freedom,0 +international journal for research in vocational education and training,1 +international journal for research on extended education,1 +international journal for researcher development,1 +international journal for responsible tourism,0 +international journal for rural law and policy,0 +international journal for talent development and creativity,1 +international journal for technology in mathematics education,1 +international journal for the advancement of counselling,1 +international journal for the psychology of religion,3 +international journal for the scholarship of teaching and learning,1 +international journal for the semiotics of law,1 +international journal for the study of new religions,1 +international journal for the study of skepticism,1 +international journal for the study of the christian church,1 +international journal for uncertainty quantification,1 +international journal for vitamin and nutrition research,1 +international journal of power and energy systems,0 +international journal of 3-d information modeling,1 +international journal of 3d printing technologies and digital industry,0 +international journal of abdominal wall and hernia surgery,1 +international journal of academic research in business and social sciences,0 +international journal of academic research in progressive education and development,0 +international journal of acarology,1 +international journal of accounting,1 +international journal of accounting and finance,1 +international journal of accounting and information management,1 +international journal of accounting information systems,1 +"international journal of accounting, auditing and performance evaluation",1 +international journal of acoustics and vibration,0 +international journal of action research,1 +international journal of ad hoc and ubiquitous computing,1 +international journal of adaptive control and signal processing,1 +"international journal of adaptive, resilient and autonomic systems",1 +international journal of adhesion and adhesives,1 +international journal of adolescence and youth,1 +international journal of adolescent medicine and health,1 +international journal of adult education and technology,1 +"international journal of adult, community and professional learning",0 +international journal of advanced and applied sciences,0 +international journal of advanced biotechnology and research,0 +international journal of advanced computer science,0 +international journal of advanced computer science and applications,0 +international journal of advanced computer technology,0 +international journal of advanced corporate learning,1 +international journal of advanced engineering research and sciences,0 +"international journal of advanced engineering, management and science",0 +international journal of advanced intelligence paradigms,1 +international journal of advanced logistics,1 +international journal of advanced manufacturing systems,0 +international journal of advanced manufacturing technology,1 +international journal of advanced materials manufacturing and characterization,0 +international journal of advanced mechatronic systems,1 +international journal of advanced media and communication,1 +international journal of advanced renewable energy research,0 +international journal of advanced research in artificial intelligence,0 +international journal of advanced science and technology,0 +"international journal of advanced science, engineering and information technology",1 +international journal of advanced trends in computer science and engineering,0 +international journal of advancements in computing technology,0 +international journal of advancements in mechanical and aeronautical engineering,1 +international journal of advances in engineering sciences and applied mathematics,0 +international journal of advances in management and economics,0 +international journal of advances in psychology,1 +international journal of advances in science engineering and technology,0 +international journal of advertising,1 +international journal of aeroacoustics,1 +international journal of aerospace engineering,1 +international journal of africa nursing sciences,1 +international journal of african historical studies,2 +international journal of ageing and later life,1 +international journal of agent-oriented software engineering,1 +international journal of agile and extreme software development,1 +international journal of agile systems and management,1 +international journal of aging and human development,1 +international journal of agricultural and environmental information systems,0 +international journal of agricultural and food research,0 +international journal of agricultural and statistical sciences,1 +international journal of agricultural management,0 +international journal of agricultural policy and research,0 +"international journal of agricultural resources, governance and ecology",1 +international journal of agricultural sustainability,1 +international journal of agricultural technology,0 +international journal of agriculture and biology,0 +international journal of agriculture and biosciences,0 +international journal of agriculture and crop sciences,0 +international journal of agriculture and forestry,0 +international journal of agriculture innovation and research,0 +"international journal of agriculture innovation, technology and globalisation",1 +international journal of alcohol and drug research,1 +international journal of algebra,0 +international journal of algebra and computation,1 +international journal of alternative propulsion,1 +international journal of alzheimers disease,1 +international journal of ambient computing and intelligence,1 +international journal of ambient energy,0 +international journal of american linguistics,2 +international journal of analysis and applications,1 +international journal of analytical chemistry,0 +international journal of angiology,1 +international journal of antennas and propagation,1 +international journal of antimicrobial agents,1 +international journal of applied and computational mathematics,1 +international journal of applied behavioral economics,0 +international journal of applied ceramic technology,1 +international journal of applied earth observation and geoinformation,2 +international journal of applied electromagnetics and mechanics,1 +international journal of applied engineering and technology,0 +international journal of applied engineering research,0 +international journal of applied environmental sciences,0 +international journal of applied glass science,1 +international journal of applied industrial engineering,1 +international journal of applied linguistics,2 +international journal of applied linguistics and english literature,0 +international journal of applied logistics,1 +international journal of applied management science,1 +international journal of applied mathematics,0 +international journal of applied mathematics and computer science,1 +international journal of applied mathematics and mechanics,1 +international journal of applied mechanics,1 +international journal of applied mechanics and engineering,1 +international journal of applied philosophy,1 +international journal of applied positive psychology,1 +international journal of applied psychoanalytic studies,1 +international journal of applied research in veterinary medicine,1 +international journal of applied sciences: current and future research trends,-1 +international journal of applied sports sciences,1 +international journal of applied systemic studies,1 +international journal of approximate reasoning,2 +international journal of aquatic biology,1 +international journal of aquatic research and education,1 +international journal of arabic linguistics,1 +international journal of arabic-english studies,1 +international journal of architectural computing,2 +international journal of architectural engineering technology,0 +international journal of architectural heritage,2 +international journal of armenian genocide studies,1 +international journal of aromatherapy,1 +international journal of art and design education,2 +international journal of art therapy,1 +"international journal of art, culture and design technologies",1 +international journal of artificial intelligence,0 +international journal of artificial intelligence in education,1 +international journal of artificial organs,1 +international journal of arts & sciences,1 +international journal of arts and technology,1 +international journal of arts education,0 +international journal of arts management,2 +international journal of asian christianity,1 +international journal of asian social science,0 +international journal of assessment and evaluation,0 +international journal of astrobiology,1 +international journal of astronomy and astrophysics,0 +international journal of athletic therapy & training,1 +international journal of atmospheric sciences,0 +international journal of audiology,1 +international journal of auditing,1 +international journal of automation and computing,1 +international journal of automotive technology,1 +international journal of automotive technology and management,0 +international journal of autonomous and adaptive communications systems,1 +"international journal of aviation, aeronautics, and aerospace",0 +international journal of badiou studies,1 +international journal of bank marketing,1 +"international journal of banking, accounting and finance",1 +international journal of behavioral development,2 +international journal of behavioral medicine,1 +international journal of behavioral nutrition and physical activity,3 +international journal of behavioural accounting and finance,0 +international journal of behavioural and healthcare research,0 +"international journal of bias, identity and diversities in education",1 +international journal of bifurcation and chaos,1 +international journal of bilingual education and bilingualism,2 +international journal of bilingualism,3 +international journal of bio-inspired computation,0 +international journal of biochemistry and cell biology,1 +international journal of biodiversity and conservation,0 +"international journal of biodiversity science, ecosystems services and management",1 +international journal of bioelectromagnetism,1 +international journal of bioinformatics research and applications,1 +international journal of biological macromolecules,1 +international journal of biological markers,1 +international journal of biological sciences,1 +international journal of biology and biomedicine,0 +international journal of biomaterials,1 +international journal of biomathematics,1 +international journal of biomedical and clinical engineering,0 +international journal of biomedical engineering and technology,1 +international journal of biomedical imaging,1 +international journal of biomedical laboratory science,1 +international journal of biomedical science,0 +international journal of biomedical sciences,0 +international journal of biometeorology,1 +international journal of biometrics,1 +international journal of bioprinting,1 +"international journal of bioscience, biochemistry, bioinformatics",0 +international journal of biostatistics,1 +international journal of bipolar disorders,1 +international journal of blockchains and cryptocurrencies,0 +international journal of border security and immigration policy,1 +international journal of botany,0 +international journal of breast cancer,0 +international journal of bridge engineering,0 +international journal of buddhist thought and culture,1 +international journal of building pathology and adaptation,1 +international journal of bullying prevention,1 +international journal of business & cyber security,0 +international journal of business administration,0 +international journal of business and administrative studies,1 +international journal of business and applied social science,0 +international journal of business and data analytics,0 +international journal of business and economics,1 +international journal of business and emerging markets,1 +international journal of business and finance research,0 +international journal of business and globalisation,1 +international journal of business and management,0 +international journal of business and management,1 +international journal of business and management invention,0 +international journal of business and management studies,0 +international journal of business and social research,0 +international journal of business and social science,0 +international journal of business and society,0 +international journal of business and systems research,1 +international journal of business communication,1 +international journal of business competition and growth,0 +international journal of business continuity and risk management,0 +international journal of business data communications and networking,1 +international journal of business development and research,1 +international journal of business environment,1 +international journal of business excellence,1 +international journal of business forecasting and marketing intelligence,1 +international journal of business governance and ethics,1 +international journal of business information systems,1 +international journal of business innovation and research,1 +international journal of business insights and transformation,0 +international journal of business management and economic review,0 +international journal of business performance and supply chain modelling,1 +international journal of business performance management,1 +international journal of business process integration and management,1 +international journal of business research management,0 +international journal of business research papers,0 +international journal of business science and applied management,1 +"international journal of business, humanities and technology",0 +international journal of canadian studies,1 +international journal of cancer,2 +international journal of cancer management,0 +international journal of cancer research,0 +international journal of cancer therapy and oncology,0 +international journal of cardiology,1 +international journal of cardiology : heart & vasculature,1 +international journal of cardiology: cardiovascular risk and prevention,1 +international journal of cardiovascular imaging,1 +international journal of cardiovascular research,0 +international journal of cardiovascular sciences,0 +international journal of care and caring,1 +international journal of care coordination,1 +international journal of caring sciences,1 +international journal of cartography,1 +international journal of case method research & application,1 +international journal of case reports in medicine,0 +international journal of cast metals research,1 +international journal of cell biology,1 +international journal of central banking,1 +international journal of ceramic engineering & science,1 +international journal of changes in education,0 +international journal of chemical and biomolecular science,0 +international journal of chemical engineering,-1 +international journal of chemical engineering,0 +international journal of chemical engineering and applications,0 +international journal of chemical kinetics,1 +international journal of chemical reactor engineering,1 +international journal of chemistry and chemical engineering systems,0 +international journal of child and family welfare,1 +international journal of child care and education,1 +international journal of child health and nutrition,1 +"international journal of child, youth and family studies",1 +international journal of child-computer interaction,1 +international journal of childbirth,1 +international journal of children's spirituality,1 +international journal of childrens rights,2 +international journal of chinese culture and management,1 +international journal of chinese education,1 +international journal of chinese linguistics,1 +international journal of christianity & english language teaching,0 +international journal of chronic obstructive pulmonary disease,1 +international journal of cinema,0 +international journal of circuit theory and applications,1 +"international journal of circuits, systems and signal processing",0 +international journal of circumpolar health,1 +international journal of civil engineering,1 +international journal of civil engineering and technology,0 +international journal of climate change strategies and management,1 +international journal of climatology,1 +international journal of clinical and experimental hypnosis,1 +international journal of clinical and experimental medical sciences,0 +international journal of clinical and experimental medicine,0 +international journal of clinical and experimental pathology,1 +international journal of clinical and health psychology,1 +international journal of clinical medicine,0 +international journal of clinical oncology,1 +international journal of clinical pharmacology and therapeutics,1 +international journal of clinical pharmacy,1 +international journal of clinical practice,1 +international journal of clinical psychiatry and mental health,0 +international journal of clinical rheumatology,0 +international journal of clinical trials,0 +international journal of clothing science and technology,1 +international journal of co-operative accounting & management,0 +international journal of coaching science,1 +international journal of coal geology,2 +international journal of coal preparation and utilization,1 +international journal of coal science & technology,1 +international journal of cognitive biometrics,0 +international journal of cognitive informatics and natural intelligence,1 +international journal of cognitive linguistics,1 +"international journal of cognitive research in science, engineering and education",0 +international journal of cognitive therapy,1 +international journal of collaborative enterprise,1 +international journal of collaborative practices,1 +international journal of colorectal disease,1 +international journal of comadem,1 +international journal of comic art,1 +international journal of commerce and contracting,0 +international journal of communication,2 +international journal of communication networks and distributed systems,1 +international journal of communication networks and information security,0 +international journal of communication systems,1 +international journal of communications,0 +international journal of communications law and policy,1 +international journal of community currency research,0 +international journal of community diversity,0 +international journal of community music,1 +international journal of community well-being,1 +international journal of comparative and applied criminal justice,1 +international journal of comparative labour law and industrial relations,2 +international journal of comparative management,1 +international journal of comparative psychology,1 +international journal of comparative sociology,1 +international journal of complementary & alternative medicine,0 +international journal of complexity in education,1 +international journal of complexity in leadership and management,1 +international journal of composite materials,0 +international journal of computational cognition,1 +international journal of computational economics and econometrics,1 +international journal of computational fluid dynamics,1 +international journal of computational geometry and applications,1 +international journal of computational intelligence,0 +international journal of computational intelligence and applications,1 +international journal of computational intelligence in control,0 +international journal of computational intelligence systems,1 +international journal of computational linguistics and applications,0 +international journal of computational linguistics and chinese language processing,1 +international journal of computational materials science and surface engineering,1 +international journal of computational methods,1 +international journal of computational methods and experimental measurements,0 +international journal of computational science and engineering,1 +international journal of computer aided engineering and technology,1 +international journal of computer and communication engineering,0 +international journal of computer and electrical engineering,0 +international journal of computer and information technology,0 +international journal of computer applications,0 +international journal of computer applications in technology,1 +international journal of computer assisted radiology and surgery,1 +international journal of computer games technology,1 +international journal of computer information systems and industrial management applications,1 +international journal of computer integrated manufacturing,2 +international journal of computer mathematics,1 +international journal of computer network and information security,0 +international journal of computer networks and applications,1 +international journal of computer networks and communications,0 +international journal of computer processing of oriental languages,1 +international journal of computer science and applications,1 +international journal of computer science and engineering survey,0 +international journal of computer science and its application,0 +international journal of computer science and network security,0 +international journal of computer science in sport,1 +international journal of computer systems science and engineering,0 +international journal of computer theory and engineering,0 +international journal of computer vision,3 +international journal of computer-assisted language learning and teaching,1 +international journal of computer-integrated design and construction,1 +international journal of computer-supported collaborative learning,3 +international journal of computerized dentistry,1 +international journal of computers,0 +international journal of computers and applications,1 +international journal of computers and communications,0 +international journal of computers and their applications,1 +international journal of computers communications and control,1 +international journal of concrete structures and materials,1 +international journal of conflict and violence,1 +international journal of conflict engagement and resolution,0 +international journal of conflict management,1 +international journal of construction education and research,1 +international journal of construction management,1 +international journal of construction project management,0 +international journal of construction supply chain management,0 +international journal of consumer studies,1 +international journal of contemporary economics and administrative sciences,0 +international journal of contemporary educational research,0 +international journal of contemporary energy,1 +international journal of contemporary hospitality management,1 +international journal of contemporary mathematical sciences,0 +international journal of contemporary sociology,1 +international journal of continuing education and lifelong learning,1 +international journal of continuing engineering education and life-long learning,1 +international journal of control,1 +international journal of control automation and systems,1 +international journal of cooperative information systems,1 +international journal of cooperative studies,0 +international journal of corporate governance,1 +international journal of corpus linguistics,3 +international journal of corrosion,0 +international journal of corrosion and scale inhibition,1 +international journal of cosmetic science,1 +international journal of crashworthiness,1 +international journal of criminal justice,1 +international journal of critical accounting,1 +international journal of critical computer-based systems,1 +international journal of critical illness and injury science,1 +international journal of critical indigenous studies,0 +international journal of critical infrastructure protection,1 +international journal of cross cultural management,1 +international journal of cultural property,2 +international journal of cultural research,0 +international journal of cultural studies,3 +international journal of culture and mental health,1 +international journal of culture and religious studies,0 +international journal of current research,0 +international journal of current research and academic review,0 +"international journal of cyber behavior, psychology and learning",0 +international journal of cyber criminology,1 +international journal of cyber ethics in education,0 +international journal of cyber warfare and terrorism,1 +international journal of cybernetics and informatics,0 +international journal of dairy technology,1 +international journal of damage mechanics,1 +international journal of data and network science,1 +international journal of data mining and bioinformatics,1 +"international journal of data mining, modelling and management",1 +international journal of data science,1 +international journal of data science and analytics,1 +international journal of data warehousing and mining,1 +"international journal of decision sciences, risk and management",1 +international journal of decision support systems,0 +international journal of dental hygiene,1 +international journal of dentistry,1 +international journal of dependable and trustworthy information systems,0 +international journal of dermatology,1 +international journal of design,3 +international journal of design & nature and ecodynamics,0 +international journal of design and innovation research,0 +international journal of design creativity and innovation,1 +international journal of design engineering,0 +international journal of design management and professional practice,0 +"international journal of design, analysis and tools for integrated circuits and systems",1 +international journal of designed objects,0 +international journal of designs for learning,0 +international journal of development and conflict,0 +international journal of development and sustainability,0 +international journal of development education and global learning,1 +international journal of development issues,1 +international journal of developmental biology,1 +international journal of developmental disabilities,1 +international journal of developmental neuroscience,1 +international journal of developmental science,1 +international journal of diabetes in developing countries,1 +international journal of diary science,0 +international journal of differential equations,0 +international journal of digital content technology and its applications,0 +international journal of digital curation,1 +international journal of digital earth,1 +international journal of digital humanities,1 +international journal of digital information and wireless communications,0 +international journal of digital literacy and digital competence,1 +international journal of digital multimedia broadcasting,1 +international journal of disabilities sports & health sciences,0 +international journal of disability development and education,1 +international journal of disability management research,1 +international journal of disaster resilience in the built environment,1 +international journal of disaster risk reduction,2 +international journal of disaster risk science,1 +international journal of disclosure and governance,1 +international journal of discrimination and the law,1 +international journal of distance education technologies,1 +international journal of distributed sensor networks,1 +"international journal of diversity in organisations, communities and nations",1 +international journal of doctoral studies,1 +international journal of dravidian linguistics,0 +international journal of drug policy,2 +international journal of dynamical systems and differential equations,1 +international journal of dynamics and control,1 +international journal of e-adoption,1 +international journal of e-business research,1 +international journal of e-collaboration,1 +"international journal of e-education, e-business, e-management and e-learning",0 +international journal of e-health and medical communications,1 +international journal of e-learning & distance education,1 +international journal of e-learning and educational technologies in the digital media,0 +international journal of e-planning research,1 +international journal of e-politics,1 +international journal of e-services and mobile applications,1 +international journal of early childhood,1 +international journal of early childhood environmental education,1 +international journal of early childhood learning,0 +international journal of early childhood special education,0 +international journal of early years education,1 +international journal of earth sciences,1 +international journal of eating disorders,2 +international journal of ecology,0 +international journal of ecology and development,1 +international journal of economic behavior,0 +international journal of economic development,1 +international journal of economic sciences and applied research,0 +international journal of economic theory,1 +international journal of economics and business research,0 +international journal of economics and finance,0 +international journal of economics and financial issues,0 +international journal of economics and management engineering,0 +international journal of economics and management systems,0 +"international journal of economics, commerce and management",0 +"international journal of economy, management and social sciences",0 +"international journal of economy,energy and environment",0 +international journal of education,0 +international journal of education,1 +international journal of education administration and policy studies,0 +international journal of education and development using information and communication technology,1 +international journal of education and information technologies,1 +international journal of education and literacy studies,1 +international journal of education and social science,0 +international journal of education and the arts,1 +"international journal of education in mathematics, science and technology",1 +international journal of education technology and science,0 +international journal of education through art,3 +international journal of educational development,2 +international journal of educational excellence,1 +international journal of educational management,1 +international journal of educational methodology,1 +international journal of educational organization and leadership,1 +international journal of educational psychology,1 +international journal of educational reform,-1 +international journal of educational research,2 +international journal of educational research and innovation,0 +international journal of educational research open,0 +international journal of educational technology in higher education,2 +international journal of electric and hybrid vehicles,1 +international journal of electrical and computer engineering,1 +international journal of electrical and computer engineering research,0 +international journal of electrical engineering and technology,0 +international journal of electrical engineering education,1 +international journal of electrical power and energy systems,2 +international journal of electrochemical science,1 +international journal of electrochemistry,0 +international journal of electronic business,1 +international journal of electronic business management,1 +international journal of electronic commerce,2 +international journal of electronic finance,1 +international journal of electronic governance,1 +international journal of electronic government research,1 +international journal of electronic healthcare,1 +international journal of electronic security and digital forensics,1 +international journal of electronic transport,0 +international journal of electronics,1 +international journal of electronics and electrical engineering,0 +international journal of electronics and telecommunications,1 +international journal of embedded and real-time communication systems,1 +international journal of embedded systems,1 +international journal of embedded systems and applications,0 +international journal of emergency management,1 +international journal of emergency medicine,1 +international journal of emergency mental health,1 +international journal of emergency services,1 +international journal of emerging electric power systems,0 +international journal of emerging markets,1 +international journal of emerging technologies and society,1 +international journal of emerging technologies in learning,0 +international journal of emerging trends in engineering research,0 +"international journal of emerging trends in engineering, science & technology (ijetest-12)",0 +international journal of emotional education,1 +international journal of endocrinology,1 +international journal of energy and environmental engineering,1 +international journal of energy and environment,1 +international journal of energy and power engineering,-1 +international journal of energy and statistics,0 +international journal of energy economics and policy,0 +international journal of energy engineering,0 +international journal of energy for a clean environment,1 +international journal of energy optimization and engineering,0 +international journal of energy production and management,1 +international journal of energy research,1 +international journal of energy sector management,1 +international journal of energy technology and policy,1 +international journal of engine research,1 +international journal of engineering & technology,1 +international journal of engineering : transactions a basics,0 +"international journal of engineering : transactions b, applications",0 +international journal of engineering and computer science,0 +international journal of engineering and geosciences,0 +international journal of engineering and industries,0 +international journal of engineering and science,0 +international journal of engineering business management,1 +international journal of engineering education,1 +international journal of engineering management and economics,0 +international journal of engineering pedagogy,1 +international journal of engineering practical research,0 +international journal of engineering research and applications,0 +international journal of engineering research and development,0 +international journal of engineering research and technology,0 +international journal of engineering research in africa,1 +international journal of engineering research in computer science engineering,1 +international journal of engineering science,2 +international journal of engineering science and technology,0 +international journal of engineering systems modelling and simulation,0 +international journal of engineering works,0 +international journal of english language teaching,0 +"international journal of english language, literature in humanities",0 +international journal of english linguistics,0 +international journal of english studies,1 +international journal of enhanced research in science technology and engineering,0 +international journal of enterprise information systems,1 +international journal of entrepreneurial behaviour and research,1 +international journal of entrepreneurial venturing,1 +international journal of entrepreneurship,-1 +international journal of entrepreneurship,0 +international journal of entrepreneurship and innovation,1 +international journal of entrepreneurship and innovation management,1 +international journal of entrepreneurship and small business,1 +international journal of environment & sustainability,0 +international journal of environment and bioenergy,0 +international journal of environment and health,0 +international journal of environment and pollution,1 +international journal of environment and resource,0 +international journal of environment and sustainable development,1 +international journal of environment and waste management,1 +"international journal of environment, agriculture and biotechnology",0 +international journal of environmental analytical chemistry,1 +international journal of environmental health research,1 +international journal of environmental impacts,0 +international journal of environmental monitoring and analysis,0 +international journal of environmental policy and decision making,1 +international journal of environmental research,1 +international journal of environmental research and public health,0 +international journal of environmental resources research,0 +international journal of environmental science,0 +international journal of environmental science and development,0 +international journal of environmental science and technology,1 +international journal of environmental sciences,0 +international journal of environmental studies,1 +international journal of environmental technology and management,1 +"international journal of environmental, cultural, economic and social sustainability",1 +international journal of epidemiology,3 +international journal of eportfolio,0 +international journal of esports,1 +international journal of ethics education,1 +international journal of eurasian linguistics,0 +international journal of european studies,0 +international journal of evaluation and research in education,1 +international journal of event and festival management,1 +international journal of event management research,1 +international journal of evidence and proof,1 +international journal of evidence based coaching and mentoring,1 +international journal of evolution equations,1 +international journal of evolutionary biology,0 +international journal of excellence in education,1 +international journal of exercise science,0 +international journal of exergy,1 +international journal of experimental pathology,1 +international journal of export marketing,1 +international journal of extreme automation and connectivity in healthcare,0 +international journal of family medicine,0 +"international journal of fashion design, technology and education",1 +international journal of fashion studies,1 +international journal of fatigue,2 +international journal of feminist approaches to bioethics,1 +international journal of fertility and sterility,1 +international journal of fertility and womens medicine,1 +international journal of film and media arts,1 +international journal of finance and accounting,0 +international journal of finance and banking,0 +international journal of finance and economics,1 +international journal of financial innovation in banking,1 +international journal of financial studies,0 +international journal of fluid mechanics research,1 +international journal of fluid power,1 +international journal of food contamination,1 +international journal of food design,1 +international journal of food engineering,1 +international journal of food microbiology,3 +international journal of food properties,1 +international journal of food science,1 +international journal of food science and technology,1 +international journal of food sciences and nutrition,1 +international journal of food studies,1 +international journal of forecasting,2 +international journal of foreign language teaching and research,0 +international journal of forensic mental health,1 +international journal of foresight and innovation policy,1 +international journal of forest engineering,1 +international journal of forestry research,1 +international journal of foundations of computer science,1 +international journal of fracture,1 +international journal of fracture fatigue and wear,0 +international journal of francophone studies,1 +international journal of fruit science,1 +international journal of fuzzy systems,1 +international journal of game theory,1 +international journal of game-based learning,1 +international journal of gaming and computer-mediated simulations,1 +international journal of gastronomy and food science,1 +international journal of gender and entrepreneurship,1 +international journal of gender and women's studies,0 +"international journal of gender, science and technology",1 +international journal of general medicine,0 +international journal of general systems,1 +international journal of genetics and molecular biology,0 +international journal of genomics,0 +international journal of genomics and proteomics,0 +international journal of geo-engineering,1 +international journal of geographical information science,2 +"international journal of geography, geology and environment",0 +international journal of geoheritage and parks,1 +international journal of geomechanics,1 +international journal of geometric methods in modern physics,1 +international journal of geophysics,1 +international journal of geosciences,0 +international journal of geosynthetics and ground engineering,1 +international journal of geotechnical engineering,1 +international journal of geriatric psychiatry,1 +international journal of gerontology,1 +international journal of global energy issues,1 +international journal of global environmental issues,1 +international journal of global warming,1 +international journal of globalisation and small business,1 +international journal of green computing,0 +international journal of green economics,1 +international journal of green energy,1 +international journal of green technology,0 +international journal of greenhouse gas control,2 +international journal of grid and high performance computing,1 +international journal of grid and utility computing,1 +international journal of group psychotherapy,1 +international journal of gynecological and obstetrical research,0 +international journal of gynecological cancer,1 +international journal of gynecological pathology,1 +international journal of gynecology and obstetrics,1 +international journal of handheld computing research,0 +international journal of happiness and development,1 +international journal of health care finance and economics,1 +international journal of health care quality assurance,1 +international journal of health economics and management,1 +international journal of health geographics,1 +international journal of health governance,1 +international journal of health information management research,0 +international journal of health planning and management,1 +international journal of health policy and management,1 +international journal of health professions,0 +international journal of health promotion and education,1 +international journal of health research and innovation,0 +international journal of health sciences,1 +international journal of health sciences and research,0 +international journal of health system and disaster management,0 +international journal of healthcare,0 +international journal of healthcare information systems and informatics,1 +international journal of healthcare management,1 +international journal of healthcare technology and management,1 +international journal of heart failure,-1 +international journal of heat and fluid flow,1 +international journal of heat and mass transfer,2 +international journal of heavy vehicle systems,1 +international journal of hematology,1 +international journal of hematology- oncology and stem cell research,0 +international journal of heritage architecture,0 +international journal of heritage studies,3 +international journal of high performance computing and networking,1 +international journal of high performance computing applications,2 +international journal of high speed computing,1 +international journal of high speed electronics and systems,1 +international journal of high-rise buildings,0 +international journal of higher education,0 +international journal of higher education management,0 +international journal of higher education pedagogies,0 +international journal of hindu studies,2 +international journal of historical archaeology,2 +international journal of home economics,1 +international journal of hospitality and event management,0 +international journal of hospitality and tourism,1 +international journal of hospitality and tourism administration,1 +international journal of hospitality and tourism systems,1 +international journal of hospitality management,2 +international journal of housing markets and analysis,1 +international journal of housing policy,1 +international journal of human capital and information technology professionals,1 +international journal of human computer interactions,0 +international journal of human culture studies,1 +international journal of human factors and ergonomics,1 +international journal of human genetics,0 +international journal of human resource management,2 +international journal of human resources development and management,1 +international journal of human rights,1 +international journal of human rights and constitutional studies,0 +international journal of human rights education,1 +international journal of human rights in healthcare,1 +international journal of human sciences,0 +international journal of human-computer interaction,2 +international journal of human-computer studies,3 +international journal of humanities and arts computing,2 +international journal of humanities and cultural studies,0 +international journal of humanities and management sciences,0 +international journal of humanities and social science,0 +international journal of humanoid robotics,1 +international journal of hybrid information technology,0 +international journal of hybrid innovation technologies,1 +international journal of hybrid intelligent systems,1 +international journal of hydrogen energy,1 +international journal of hydrology science and technology,1 +international journal of hydromechatronics,0 +international journal of hygiene and environmental health,2 +international journal of hypertension,1 +international journal of hyperthermia,1 +international journal of iberian studies,1 +international journal of ict research in africa and the middle east,0 +international journal of image and graphics,1 +international journal of imaging systems and technology,1 +international journal of immunogenetics,1 +international journal of immunology,0 +international journal of immunopathology and pharmacology,1 +international journal of impact engineering,2 +international journal of impotence research,1 +international journal of inclusive democracy,1 +international journal of inclusive education,2 +international journal of indigenous health,0 +international journal of industrial and operations research,1 +international journal of industrial and systems engineering,1 +international journal of industrial chemistry,1 +international journal of industrial engineering,0 +international journal of industrial engineering and management,1 +international journal of industrial engineering and operations management,1 +international journal of industrial ergonomics,1 +international journal of industrial organization,2 +international journal of infection control,0 +international journal of infectious diseases,1 +international journal of inflammation,1 +international journal of information and communication technology education,1 +international journal of information and computer security,1 +international journal of information and decision sciences,1 +international journal of information and education technology,0 +international journal of information and electronics engineering,0 +international journal of information and management sciences,0 +international journal of information communication technologies and human development,1 +international journal of information ethics,1 +international journal of information management,3 +international journal of information management data insights,1 +international journal of information policy and law,1 +international journal of information processing and management,0 +international journal of information quality,1 +international journal of information security,1 +international journal of information security and cybercrime,1 +international journal of information security and privacy,1 +international journal of information system modeling and design,1 +international journal of information systems and change management,1 +international journal of information systems and project management,1 +international journal of information systems and social change,1 +international journal of information systems for crisis response and management,1 +international journal of information systems in the service sector,1 +international journal of information technologies and systems approach,0 +international journal of information technology,0 +international journal of information technology,1 +international journal of information technology & computer science,0 +international journal of information technology and business management,0 +international journal of information technology and decision making,1 +international journal of information technology and management,1 +international journal of information technology project management,1 +international journal of injury control and safety promotion,1 +international journal of innovation,1 +international journal of innovation and economic development,0 +international journal of innovation and learning,1 +international journal of innovation and regional development,1 +international journal of innovation and research in educational sciences,1 +international journal of innovation and sustainable development,1 +international journal of innovation and technology management,1 +international journal of innovation in education,1 +international journal of innovation in the digital economy,1 +international journal of innovation management,1 +international journal of innovation science,1 +international journal of innovation studies,1 +"international journal of innovation, creativity and change",0 +"international journal of innovation, management and technology",0 +international journal of innovations in engineering and science,0 +international journal of innovative computing and applications,1 +international journal of innovative computing information and control,1 +"international journal of innovative computing, information and control",0 +international journal of innovative research and development,0 +"international journal of innovative research in science, engineering and technology",0 +international journal of innovative research in technology and science,0 +"international journal of innovative science, engineering and technology",0 +international journal of innovative studies in sciences and engineering technology,0 +international journal of innovative technology and exploring engineering,0 +"international journal of inspired education, science and technology",0 +international journal of instruction,0 +international journal of instructional media,1 +international journal of instructional technology & distance learning,1 +international journal of intangible heritage,1 +international journal of integrated care,2 +international journal of integrated engineering,0 +international journal of integrated supply management,1 +international journal of integrating technology in education,0 +international journal of intellectual property management,1 +international journal of intelligence and counterintelligence,1 +international journal of intelligent computing and cybernetics,1 +international journal of intelligent computing research,0 +international journal of intelligent enterprise,1 +international journal of intelligent information and database systems,1 +international journal of intelligent information technologies,1 +international journal of intelligent robotics and applications,1 +international journal of intelligent systems,1 +international journal of intelligent systems technologies and applications,1 +international journal of intelligent transport systems research,1 +international journal of intelligent unmanned systems,0 +international journal of intensive short-term dynamic psychotherapy,1 +international journal of interactive communication systems and technologies,1 +international journal of interactive mobile technologies,1 +international journal of interactive multimedia and artificial intelligence,0 +international journal of interactive worlds,0 +international journal of intercultural information management,1 +international journal of intercultural relations,2 +international journal of interdisciplinary educational studies,0 +international journal of interdisciplinary organizational studies,0 +international journal of interdisciplinary research and innovations,0 +international journal of interdisciplinary social sciences,1 +international journal of interdisciplinary telecommunications and networking,0 +international journal of internet and enterprise management,1 +international journal of internet marketing and advertising,1 +international journal of internet of things and web services,0 +international journal of internet protocol technology,1 +international journal of internet science,1 +international journal of interoperability in business information systems,1 +international journal of interpreter education,1 +international journal of inventory research,1 +international journal of islamic and middle eastern finance and management,1 +international journal of islamic architecture,0 +international journal of islamic banking and finance research,0 +"international journal of it in architecture, engineering and construction",0 +international journal of it/business alignment and governance,1 +international journal of japanese sociology,1 +international journal of kinesiology and sports science,0 +international journal of knowledge and learning,1 +international journal of knowledge and systems science,0 +international journal of knowledge based and intelligent engineering systems,1 +international journal of knowledge discovery in bioinformatics,1 +international journal of knowledge engineering and data mining,0 +international journal of knowledge engineering and soft data paradigms,0 +international journal of knowledge management,1 +international journal of knowledge management in tourism and hospitality,1 +international journal of knowledge management studies,1 +international journal of knowledge society research,1 +"international journal of knowledge, culture and change management",1 +international journal of knowledge-based development,1 +international journal of knowledge-based organizations,1 +international journal of laboratory hematology,1 +international journal of language & linguistics,0 +international journal of language and applied linguistics,0 +international journal of language and communication disorders,3 +international journal of language and culture,1 +international journal of language studies,1 +international journal of language testing,1 +"international journal of language, translation and intercultural communication",0 +international journal of languages and literatures,0 +international journal of languange education and applied linguistics,0 +international journal of latest research in science & technology,0 +international journal of latest trends in computing,0 +international journal of law and information technology,2 +international journal of law and management,1 +international journal of law and psychiatry,1 +international journal of law crime and justice,1 +international journal of law in context,1 +international journal of law in the built environment,1 +"international journal of law, policy and the family",2 +international journal of leadership in education,1 +international journal of leadership studies,1 +international journal of lean six sigma,1 +international journal of learner corpus research,1 +international journal of learner diversity and identities,0 +international journal of learning,1 +international journal of learning & teaching,0 +international journal of learning analytics and artificial intelligence for education,1 +international journal of learning and change,1 +international journal of learning and intellectual capital,1 +international journal of learning and media,1 +international journal of learning and teaching,1 +international journal of learning in higher education,0 +international journal of learning technology,1 +"international journal of learning, teaching and educational research",0 +international journal of legal discourse,1 +international journal of legal information,1 +international journal of legal medicine,2 +international journal of leisure and tourism marketing,1 +international journal of leprosy and other mycobacterial diseases,1 +international journal of lexicography,2 +international journal of liability and scientific enquiry,1 +international journal of life cycle assessment,2 +international journal of lifelong education,1 +international journal of lightweight materials and manufacture,1 +international journal of limnology,1 +international journal of linguistics & communication,0 +"international journal of linguistics, literature and culture",0 +international journal of listening,1 +international journal of literacies,0 +international journal of literary linguistics,1 +international journal of literature and arts,0 +international journal of logistics management,1 +international journal of logistics systems and management,1 +international journal of logistics: research and applications,1 +international journal of low radiation,1 +international journal of low-carbon technologies,1 +international journal of lower extremity wounds,1 +international journal of machine consciousness,1 +international journal of machine learning and computing,0 +international journal of machine learning and cybernetics,1 +international journal of machine tools and manufacture,3 +international journal of machining and machinability of materials,1 +international journal of magazine studies,0 +international journal of management accounting research,1 +international journal of management and applied research,-1 +international journal of management and decision making,1 +international journal of management and economics,0 +international journal of management and enterprise development,1 +international journal of management and network economics,1 +international journal of management and sustainability,1 +international journal of management cases,0 +international journal of management concepts and philosophy,1 +international journal of management development,0 +international journal of management excellence,0 +international journal of management in education,1 +international journal of management practice,1 +international journal of management reviews,2 +international journal of management science and engineering management,0 +"international journal of management, economics & social sciences",0 +"international journal of management, knowledge and learning",1 +international journal of managerial and financial accounting,1 +international journal of managerial finance,1 +international journal of managerial studies and research,0 +international journal of managing information technology,0 +international journal of managing projects in business,1 +international journal of manpower,1 +international journal of manufacturing research,1 +international journal of manufacturing technology and management,1 +international journal of marine and coastal law,1 +international journal of marine design,1 +international journal of maritime engineering,1 +international journal of maritime history,2 +international journal of market research,1 +international journal of marketing studies,0 +international journal of mass customisation,0 +international journal of mass emergencies and disasters,1 +international journal of mass spectrometry,1 +international journal of material forming,1 +international journal of material science,0 +international journal of materials and product technology,1 +international journal of materials and structural integrity,1 +international journal of materials and structural reliability,1 +international journal of materials engineering innovation,1 +international journal of materials research,1 +international journal of materials science,0 +international journal of mathematical analysis,0 +international journal of mathematical and statistical sciences,0 +international journal of mathematical education in science and technology,1 +"international journal of mathematical modeling, simulation and applications",1 +international journal of mathematical modelling and numerical optimization,0 +international journal of mathematical models and methods in applied sciences,0 +"international journal of mathematical, engineering and management sciences",1 +international journal of mathematics,1 +international journal of mathematics and computer science,1 +international journal of mathematics and computers in simulation,0 +international journal of mathematics and mathematical sciences,0 +international journal of mathematics and statistics,0 +international journal of mathematics for industry,1 +international journal of mathematics in operational research,0 +"international journal of mathematics, game theory and algebra",1 +international journal of mechanic systems engineering,0 +international journal of mechanical and materials engineering,1 +international journal of mechanical engineering and applications,0 +international journal of mechanical engineering and robotics research,0 +international journal of mechanical engineering education,1 +international journal of mechanical sciences,1 +"international journal of mechanical, industrial science and engineering",0 +international journal of mechanics and materials in design,1 +international journal of mechatronics and manufacturing systems,1 +international journal of media and cultural politics,1 +international journal of media and information literacy,1 +"international journal of media, journalism and mass communications",0 +international journal of medical and health sciences,0 +international journal of medical education,0 +international journal of medical engineering and informatics,1 +international journal of medical informatics,3 +international journal of medical microbiology,1 +international journal of medical pharmaceutical and health sciences,0 +international journal of medical research and health sciences,0 +international journal of medical robotics and computer assisted surgery,1 +international journal of medical sciences,1 +"international journal of medical, health, biomedical, bioengineering and pharmaceutical engineering",0 +international journal of medicinal mushrooms,1 +international journal of medicine and biomedical research,0 +international journal of mens health,1 +international journal of mental health,1 +international journal of mental health and addiction,1 +international journal of mental health nursing,2 +international journal of mental health promotion,1 +international journal of mental health systems,0 +international journal of mentoring and coaching in education.,1 +"international journal of metadata, semantics and ontologies",1 +international journal of metaheuristics,1 +international journal of metalcasting,1 +international journal of metallurgical engineering,0 +international journal of methods in psychiatric research,1 +international journal of micro air vehicles,1 +international journal of microbiology,1 +international journal of microsimulation,1 +international journal of microstructure and materials properties,1 +international journal of microwave and optical technology,1 +international journal of microwave and wireless technologies,1 +international journal of middle east studies,2 +"international journal of migration, health and social care",1 +international journal of military history and historiography,1 +international journal of mineral processing,1 +international journal of minerals metallurgy and materials,1 +international journal of mining and mineral engineering,1 +international journal of mining engineering and mineral processing,0 +international journal of mining science and technology,2 +"international journal of mining, reclamation and environment",1 +international journal of mobile and blended learning,1 +international journal of mobile communications,1 +international journal of mobile human computer interaction,1 +international journal of mobile learning and organisation,1 +"international journal of modeling, simulation, and scientific computing",1 +international journal of modelling & simulation,1 +international journal of modelling in operations management,0 +"international journal of modelling, identification and control",1 +international journal of modern education and computer science,0 +international journal of modern engineering research,0 +international journal of modern physics : conference series,0 +international journal of modern physics a,1 +international journal of modern physics b,1 +international journal of modern physics c,1 +international journal of modern physics d,1 +international journal of modern physics e: nuclear physics,1 +international journal of modern sciences and engineering technology,0 +international journal of molecular epidemiology and genetics,1 +international journal of molecular imaging,1 +international journal of molecular medicine,1 +international journal of molecular sciences,0 +international journal of monitoring and surveillance technologies research,0 +international journal of morphology,1 +international journal of ms care,1 +international journal of multicriteria decision making,1 +international journal of multicultural education,1 +international journal of multidisciplinary perspectives in higher education,1 +international journal of multidisciplinary research configuration,0 +international journal of multilingual education,0 +international journal of multilingualism,2 +international journal of multimedia and ubiquitous engineering,0 +international journal of multimedia data engineering & management,1 +international journal of multimedia intelligence and security,1 +international journal of multimedia technology,1 +international journal of multinational corporation strategy,1 +international journal of multiphase flow,2 +international journal of multiple research approaches,1 +international journal of multivariate data analysis,1 +international journal of music and performing arts,0 +international journal of music business research,0 +international journal of music education,2 +international journal of music in early childhood,0 +"international journal of music science, technology and art",1 +international journal of nano and biomaterials,1 +international journal of nanomanufacturing,1 +international journal of nanomedicine,1 +international journal of nanoparticles,1 +international journal of nanoscience,1 +international journal of nanotechnology,1 +international journal of nautical archaeology,2 +international journal of naval architecture and ocean engineering,1 +international journal of nematology,1 +international journal of neonatal screening,0 +international journal of nephrology,1 +international journal of network dynamics and intelligence,0 +international journal of network management,1 +international journal of networking and computing,0 +international journal of networking and virtual organisations,1 +international journal of neural systems,1 +international journal of neuropsychopharmacology,1 +international journal of neurorehabilitation,0 +international journal of neuroscience,1 +"international journal of new media, technology and the arts",1 +international journal of non-linear mechanics,1 +international journal of nonlinear analysis and applications,0 +international journal of nonlinear sciences and numerical simulation,1 +international journal of not-for-profit law,0 +"international journal of nuclear energy, science and technology",0 +"international journal of nuclear governance, economy and ecology",1 +international journal of nuclear knowledge management,1 +international journal of number theory,1 +international journal of numerical analysis and modeling,1 +international journal of numerical methods for heat and fluid flow,1 +international journal of numerical modelling: electronic networks devices and fields,1 +international journal of nursing & care,0 +international journal of nursing and health care research,1 +international journal of nursing education,0 +international journal of nursing education scholarship,1 +international journal of nursing knowledge,1 +international journal of nursing practice,1 +international journal of nursing sciences,1 +international journal of nursing studies,3 +international journal of nursing studies advances,1 +international journal of nutrition sciences,0 +international journal of obesity,3 +international journal of obesity supplements,1 +international journal of obstetric anesthesia,1 +international journal of occupational and environmental health,1 +international journal of occupational and environmental medicine,1 +international journal of occupational and environmental safety,1 +international journal of occupational health and public health nursing,1 +international journal of occupational medicine and environmental health,1 +international journal of occupational safety and ergonomics,1 +international journal of ocean systems management,0 +international journal of oceanography & aquaculture,0 +international journal of odonatology,1 +international journal of offender therapy and comparative criminology,1 +international journal of offshore and polar engineering,1 +"international journal of oil, gas and coal technology",1 +international journal of older people nursing,1 +international journal of oncology,1 +international journal of online and biomedical engineering,1 +international journal of online dispute resolution,0 +international journal of online marketing,0 +international journal of online pedagogy and course design,1 +international journal of open source software and processes,1 +international journal of operational research,1 +international journal of operations and production management,3 +international journal of ophthalmology,1 +international journal of optomechatronics,1 +international journal of oral and maxillofacial implants,1 +international journal of oral and maxillofacial surgery,1 +international journal of oral implantology,1 +international journal of oral science,3 +international journal of oral-medical sciences,1 +international journal of organisational behaviour,1 +international journal of organisational design and engineering,1 +international journal of organization theory and behavior,1 +international journal of organizational analysis,1 +international journal of organizational leadership,0 +international journal of orthodox theology,1 +international journal of orthopaedic and trauma nursing,1 +international journal of osteoarchaeology,2 +international journal of osteopathic medicine,1 +international journal of paediatric dentistry,2 +international journal of paleopathology,1 +international journal of palliative nursing,1 +international journal of parallel programming,2 +"international journal of parallel, emergent and distributed systems",1 +international journal of parliamentary studies,1 +international journal of pattern recognition and artificial intelligence,1 +international journal of pavement engineering,1 +international journal of peace studies,1 +international journal of pedagogy and curriculum,0 +international journal of pediatric otorhinolaryngology,1 +international journal of pediatrics,0 +international journal of peptide research and therapeutics,1 +international journal of peptides,1 +international journal of performability engineering,1 +international journal of performance analysis in sport,1 +international journal of performance arts and digital media,1 +international journal of performance measurement,0 +international journal of periodontics and restorative dentistry,1 +international journal of person centered medicine,1 +international journal of personality psychology,0 +international journal of pervasive computing and communications,1 +international journal of pest management,1 +international journal of pharma medicine and biological sciences,0 +international journal of pharmaceutical and healthcare marketing,1 +international journal of pharmaceutical and phytopharmacological research,0 +international journal of pharmaceutical compounding,1 +international journal of pharmaceutical research and allied sciences,0 +international journal of pharmaceutics,2 +international journal of pharmaceutics & pharmacology,0 +international journal of pharmaceutics x,1 +international journal of pharmacology,0 +"international journal of pharmacology, phytochemistry and ethnomedicine",0 +international journal of pharmacy practice,1 +international journal of philosophical studies,2 +international journal of philosophy & theology,1 +international journal of philosophy study,0 +international journal of photoenergy,1 +international journal of physical distribution and logistics management,2 +international journal of physical education: a review publication,1 +international journal of physical medicine and rehabilitation,0 +international journal of physical modelling in geotechnics,1 +international journal of physical sciences,0 +international journal of physics,0 +"international journal of physiology, pathophysiology and pharmacology",1 +international journal of phytoremediation,1 +international journal of plant biology,0 +international journal of plant developmental biology,0 +international journal of plant production,1 +international journal of plant science and ecology,0 +international journal of plant sciences,1 +international journal of plasticity,3 +international journal of play,1 +international journal of play therapy,1 +international journal of police science & management.,1 +international journal of politic and security,0 +international journal of political economy: a journal of translations,1 +international journal of politics and good governance,0 +international journal of politics and law research,1 +"international journal of politics, culture and society",1 +international journal of polymer analysis and characterization,1 +international journal of polymer science,0 +international journal of polymeric materials,1 +international journal of population data science,1 +international journal of population geography,1 +international journal of population studies,1 +international journal of portfolio analysis and management,0 +international journal of powder metallurgy,1 +international journal of power electronics and drive systems,1 +international journal of powertrains,1 +international journal of practical theology,2 +international journal of precision engineering and manufacturing,1 +international journal of precision engineering and manufacturing green technology,1 +international journal of press-politics,3 +international journal of pressure vessels and piping,1 +international journal of primatology,1 +international journal of prisoner health,1 +international journal of private law,1 +international journal of probiotics & prebiotics,1 +international journal of procedural law,1 +international journal of process management and benchmarking,1 +international journal of procurement management,1 +international journal of product development,1 +international journal of product lifecycle management,1 +international journal of production economics,2 +international journal of production management and engineering,0 +international journal of production research,2 +international journal of productivity and performance management,1 +international journal of productivity and quality management,1 +international journal of professional business review,0 +international journal of progressive education,1 +international journal of project management,3 +international journal of project organisation and management,1 +international journal of prosthodontics,1 +international journal of proteomics,1 +international journal of psychiatry in clinical practice,1 +international journal of psychiatry in medicine,1 +international journal of psychoanalysis,1 +international journal of psychological studies,0 +international journal of psychology,1 +international journal of psychology and psychological therapy,1 +international journal of psychophysiology,1 +international journal of psychotherapy practice and research,1 +international journal of public administration,1 +international journal of public administration in the digital age,1 +international journal of public and private health care management and economics,1 +"international journal of public and private perspectives on healthcare, culture, and the environment",0 +international journal of public health,1 +international journal of public leadership,1 +international journal of public opinion research,2 +international journal of public policy,1 +international journal of public sector management,2 +international journal of public sector performance management,1 +international journal of public theology,1 +international journal of pure and applied mathematical sciences,1 +international journal of pure and applied mathematics,0 +international journal of qualitative methods,1 +international journal of qualitative studies in education,1 +international journal of qualitative studies on health and well-being,1 +international journal of quality and reliability management,1 +international journal of quality and service sciences,1 +international journal of quality assurance in engineering and technology education,0 +"international journal of quality, statistics, and reliability",1 +international journal of quantitative and qualitative research methods,0 +international journal of quantitative research in education,1 +international journal of quantum chemistry,1 +international journal of quantum information,1 +international journal of radiation biology,1 +international journal of radiation oncology biology physics,2 +international journal of radio frequency identification technology and applications (ijrfita),1 +international journal of railway,1 +international journal of rapid manufacturing,1 +international journal of rapid solidification,1 +international journal of reality therapy,1 +international journal of reasoning-based intelligent systems,1 +international journal of recent technology and engineering,0 +international journal of refractory metals and hard materials,1 +international journal of refrigeration-revue internationale du froid,1 +international journal of refugee law,3 +international journal of rehabilitation research,1 +"international journal of reliability, quality and safety engineering",1 +international journal of religion and spirituality in society,1 +international journal of religious tourism and pilgrimage,0 +international journal of remote sensing,1 +international journal of renewable and sustainable energy,0 +international journal of renewable energy and biofuels,0 +international journal of renewable energy research,0 +international journal of renewable energy technology,0 +international journal of reproductive biomedicine,0 +international journal of research and method in education,1 +international journal of research in education and science,0 +international journal of research in education methodology,0 +international journal of research in marketing,3 +international journal of research in social science and humanities,0 +international journal of research in social sciences,0 +international journal of research in undergraduate mathematics education,1 +international journal of research studies in education,0 +international journal of research studies in management,0 +international journal of research studies in psychology,1 +"international journal of research, innovation and commercialisation",0 +international journal of retail and distribution management,1 +international journal of revenue management,1 +international journal of rf and microwave computer-aided engineering,1 +international journal of rf technologies,0 +international journal of rheumatic diseases,1 +international journal of rheumatology,1 +international journal of risk and safety in medicine,1 +international journal of risk assessment and management,1 +international journal of river basin management,1 +international journal of robotics and automation,1 +international journal of robotics and control systems,1 +international journal of robotics research,3 +international journal of robust and nonlinear control,2 +international journal of rock mechanics and mining sciences,3 +international journal of role-playing,1 +international journal of rotating machinery,1 +international journal of rural management,1 +international journal of russian studies,0 +international journal of safety and security engineering,0 +international journal of safety and security in tourism / hospitality,1 +international journal of satellite communications and networking,1 +international journal of school and educational psychology,1 +international journal of science and mathematics education,1 +international journal of science education,3 +international journal of science education part b communication and public engagement,1 +international journal of science technology and society,0 +"international journal of science, commerce and humanities",0 +"international journal of science, mathematics and technology learning",1 +international journal of sciences,0 +international journal of scientific and research publications,0 +international journal of scientific and technological research,0 +international journal of scientific research in inventions and new ideas,0 +international journal of scottish theatre and screen,1 +international journal of secure software engineering,1 +international journal of security and networks,1 +international journal of sediment research,1 +international journal of selection and assessment,1 +international journal of self help and self care,1 +international journal of semantic computing,1 +international journal of sensor networks,1 +international journal of serious games,1 +"international journal of service science, management, engineering, and technology",0 +international journal of services and operations management,1 +international journal of services and standards,1 +international journal of services operations and informatics,1 +international journal of services sciences,1 +"international journal of services, economics and management",1 +"international journal of services, technology and management",1 +international journal of sexual health,1 +international journal of shape modeling,1 +international journal of sheep and wool science,1 +international journal of shipping and transport logistics,1 +"international journal of simulation : systems, science and technology",0 +international journal of simulation and process modelling,1 +international journal of simulation modelling,0 +international journal of sino-western studies,1 +international journal of six sigma and competitive advantage,1 +international journal of small business and entrepreneurship research,0 +international journal of smart and nano materials,1 +international journal of smart education and urban society,1 +international journal of smart grid and clean energy,0 +international journal of smart home,0 +international journal of smart sensing and intelligent systems,1 +international journal of social and humanistic computing,1 +international journal of social and organizational dynamics in it,1 +international journal of social computing and cyber-physical systems,0 +international journal of social determinants of health and health services,1 +international journal of social ecology and sustainable development,1 +international journal of social economics,1 +international journal of social entrepreneurship and innovation,1 +international journal of social forestry,1 +international journal of social imaginaries,1 +international journal of social media and interactive learning environments,1 +international journal of social media and online communities,1 +international journal of social network mining,0 +international journal of social pedagogy,1 +international journal of social policy and education,0 +international journal of social psychiatry,2 +international journal of social quality,1 +international journal of social research methodology,1 +international journal of social robotics,2 +international journal of social science and economic research,0 +international journal of social science research,0 +international journal of social science studies,0 +international journal of social sciences,0 +international journal of social sciences and humanities invention,0 +"international journal of social sustainability in economic, social and cultural context",0 +international journal of social welfare,2 +international journal of society systems science,1 +"international journal of society, culture and language",1 +international journal of sociology,1 +international journal of sociology and social policy,1 +international journal of sociology of agriculture and food,1 +international journal of sociology study,1 +international journal of sociotechnology and knowledge development,1 +international journal of software engineering and its applications,0 +international journal of software engineering and knowledge engineering,1 +international journal of software engineering and soft computing,0 +international journal of solids and structures,2 +international journal of spa and wellness,1 +international journal of space structures,1 +international journal of space-based and situated computing,0 +international journal of spatial data infrastructures research,1 +international journal of special education,1 +international journal of spectroscopy,0 +international journal of speech language and the law,1 +international journal of speech technology,1 +international journal of speech-language pathology,1 +international journal of speleology,1 +international journal of sport and exercise psychology,1 +international journal of sport communication,1 +international journal of sport culture and science,0 +international journal of sport finance,1 +international journal of sport management,1 +international journal of sport management and marketing,1 +"international journal of sport management, recreation & tourism",1 +international journal of sport nutrition and exercise metabolism,1 +international journal of sport policy and politics,1 +international journal of sport psychology,1 +international journal of sports marketing and sponsorship,1 +international journal of sports medicine,1 +international journal of sports physical therapy,0 +international journal of sports physiology and performance,1 +international journal of sports science and coaching,1 +international journal of spray and combustion dynamics,0 +international journal of standardization research,1 +international journal of statistical sciences,1 +international journal of statistics and management systems,0 +international journal of std and aids,1 +international journal of steel structures,1 +international journal of stem cell research & therapeutics,0 +international journal of stem cells,1 +international journal of stem education,1 +international journal of stochastic analysis,0 +international journal of strategic change management,1 +international journal of strategic communication,1 +international journal of strategic decision sciences,0 +international journal of strategic engineering asset management,1 +international journal of strategic information technology and applications,0 +international journal of strategic management,0 +international journal of strategic property management,1 +international journal of strength and conditioning,0 +international journal of stress management,1 +international journal of stroke,1 +international journal of structural integrity,1 +international journal of structural stability and dynamics,1 +international journal of studies in education and science,1 +international journal of supply chain and inventory management,1 +international journal of supply chain and operations resilience,0 +international journal of supply chain management,0 +international journal of surface science and engineering,1 +international journal of surgery,3 +international journal of surgery protocols,0 +international journal of surgical oncology,0 +international journal of surgical pathology,1 +international journal of sustainability in higher education,1 +international journal of sustainability policy and practice,0 +international journal of sustainable agricultural technology,1 +international journal of sustainable building technology and urban development,1 +international journal of sustainable built environment,1 +international journal of sustainable construction engineering and technology,0 +international journal of sustainable design,-1 +international journal of sustainable development,1 +international journal of sustainable development and planning,0 +international journal of sustainable development and world ecology,1 +international journal of sustainable economy,1 +international journal of sustainable energy,1 +international journal of sustainable energy planning and management,1 +international journal of sustainable engineering,1 +international journal of sustainable fashion and textiles,1 +international journal of sustainable lighting,1 +international journal of sustainable materials and structural systems,1 +international journal of sustainable society,1 +international journal of sustainable strategic management,0 +international journal of sustainable strategy and research,0 +international journal of sustainable transportation,1 +international journal of sustainable water and environmental systems,0 +international journal of synergy and research,0 +international journal of systematic and evolutionary microbiology,1 +international journal of systematic theology,3 +international journal of systemic therapy,1 +international journal of systems and service-oriented engineering,1 +international journal of systems and society,1 +international journal of systems and software security and protection,1 +"international journal of systems applications, engineering & development",0 +international journal of systems assurance engineering and management,1 +international journal of systems science,1 +international journal of systems science : operations & logistics,1 +international journal of taiwan studies,1 +international journal of teaching and learning in higher education,1 +international journal of technoentrepreneurship,1 +international journal of technoethics,1 +international journal of technologies in learning,0 +international journal of technology,1 +international journal of technology and design education,2 +international journal of technology and globalisation,1 +international journal of technology and human interaction,1 +international journal of technology and inclusive education,1 +international journal of technology assessment in health care,1 +international journal of technology diffusion,0 +international journal of technology enhanced learning,1 +international journal of technology in education,1 +international journal of technology in education and science,1 +international journal of technology in teaching and learning,0 +international journal of technology intelligence and planning,1 +international journal of technology management,1 +international journal of technology management & sustainable development,1 +international journal of technology marketing,1 +international journal of technology transfer and commercialisation,1 +"international journal of technology, innovation and management",0 +"international journal of technology, knowledge and society",1 +"international journal of technology, policy and management",1 +international journal of telemedicine and applications,1 +international journal of telemedicine and clinical practices,1 +international journal of testing,1 +international journal of the analytic hierarchy process,1 +international journal of the arts in society,1 +international journal of the book,1 +international journal of the classical tradition,2 +international journal of the economics of business,1 +international journal of the history of sport,2 +international journal of the humanities,1 +international journal of the legal profession,1 +international journal of the linguistic association of the southwest,0 +international journal of the platonic tradition,1 +international journal of the society of materials engineering for resources,1 +international journal of the sociology of language,3 +international journal of the sociology of leisure,1 +international journal of theoretical and applied finance,1 +international journal of theoretical and applied nanotechnology,1 +international journal of theoretical and mathematical physics,0 +international journal of theoretical physics,1 +"international journal of theoretical physics, group theory and nonlinear optics",1 +international journal of therapy and rehabilitation,1 +international journal of thermal & environmental engineering,0 +international journal of thermal sciences,1 +international journal of thermodynamics,1 +international journal of thermofluids,0 +international journal of thermophysics,1 +international journal of tomography and simulation,0 +international journal of tourism anthropology,1 +international journal of tourism cities,1 +international journal of tourism policy,1 +international journal of tourism research,1 +international journal of tourism sciences,1 +international journal of toxicology,1 +international journal of trade and global markets,1 +international journal of training and development,1 +international journal of transgender health,1 +international journal of transitional justice,1 +international journal of transitions and innovation systems,0 +international journal of transitions in childhood,1 +international journal of translational science,1 +international journal of transmedia literacy,0 +international journal of transport development and integration,0 +international journal of transport economics,1 +international journal of transport phenomena,1 +international journal of trends in medicine,0 +international journal of trichology,0 +international journal of tropical insect science,1 +international journal of tuberculosis and lung disease,1 +international journal of turbo and jet-engines,1 +"international journal of turbomachinery, propulsion and power",0 +international journal of ultra wideband communications and systems (ijuwbcs),0 +international journal of uncertainty fuzziness and knowledge-based systems,1 +international journal of unconventional computing,1 +international journal of urban and regional research,3 +international journal of urban sciences,1 +international journal of urban sustainable development,1 +international journal of urological nursing,1 +international journal of urology,1 +international journal of user-system interaction,0 +international journal of value chain management,1 +international journal of vascular medicine,1 +international journal of vehicle autonomous systems,1 +international journal of vehicle design,1 +international journal of vehicle performance,1 +international journal of vehicle systems modelling and testing,1 +international journal of vehicular technology,0 +international journal of ventilation,1 +international journal of veterinary medicine,0 +international journal of veterinary sciences and medicine,0 +international journal of virtual and personal learning environments,1 +international journal of virtual worlds and human computer interaction,0 +international journal of vocational education and training,1 +international journal of water governance,1 +international journal of water resources development,1 +international journal of wavelets multiresolution and information processing,1 +international journal of web and grid services,1 +international journal of web and semantic technology,0 +international journal of web based communities,1 +international journal of web engineering and technology,1 +international journal of web information systems,1 +international journal of web portals,1 +international journal of web services practices,1 +international journal of web services research,1 +international journal of web-based learning and teaching technologies,1 +international journal of wellbeing,1 +international journal of wettability science & technology,1 +international journal of whole schooling,1 +international journal of wilderness,1 +international journal of wildland fire,1 +international journal of wine business research,1 +international journal of wine research,0 +international journal of wireless and mobile computing,0 +international journal of wireless and mobile networks,0 +international journal of wireless information networks,1 +international journal of wireless networks and broadband technologies,0 +international journal of women's health,1 +international journal of wood culture,1 +international journal of work innovation,1 +international journal of work organisation and emotion,1 +international journal of workplace health management,1 +international journal of young adult literature,-1 +international journal of zizek studies,1 +international journal of zoology,0 +international journal on advances in intelligent systems,0 +international journal on advances in internet technology,0 +international journal on advances in life sciences,0 +international journal on advances in networks and services,0 +international journal on advances in security,1 +international journal on advances in software,0 +international journal on advances in systems and measurements,0 +international journal on advances in telecommunications,0 +international journal on applied physics and engineering,0 +international journal on artificial intelligence tools,1 +international journal on biomedicine and healthcare,0 +international journal on child maltreatment,1 +international journal on digital libraries,1 +international journal on disability and human development,1 +international journal on document analysis and recognition,1 +international journal on e-learning,1 +international journal on engineering applications,0 +"international journal on engineering, science and technology",1 +international journal on food system dynamics,1 +international journal on hydropower and dams,1 +international journal on information systems and management in creative e-media,0 +international journal on information technologies and security,1 +international journal on interactive design and manufacturing,1 +"international journal on language, literature and culture in education",1 +international journal on measurement technologies and instrumentation engineering,0 +international journal on mental health and deafness,1 +international journal on minority and group rights,2 +international journal on recent and innovation trends in computing and communication,0 +international journal on semantic web and information systems,1 +international journal on social and education sciences,1 +international journal on software tools for technology transfer,1 +international journal on studies in education,1 +international journal  of logistics economics and globalisation,1 +international keystone conference,1 +international labor and working-class history,2 +international labor rights case law,0 +international labour organisation,0 +international labour review,1 +international legal materials,1 +"international letters of chemistry, physics and astronomy",0 +international letters of natural sciences,0 +international letters of social and humanistic sciences,0 +international lichenological newsletter,-1 +international litigation in practice,1 +international m3 semantic interoperability workshop,0 +international management development association,0 +international maritime health,1 +international marketing review,2 +international materials reviews,2 +international mathematical forum,0 +international mathematics research notices,2 +international medical education,0 +international medical journal,0 +international microbiology,1 +international microelectronics and packaging society uk,0 +international migration,1 +international migration review,2 +international mobile machine control conference,0 +international monetary fund,0 +international multi-conference on computing in the global information technology,0 +"international multi-conference on systems, signals and devices",0 +international multidisciplinary scientific geoconference sgem,0 +international multilingualism research journal,1 +international negotiation,1 +international negotiation series,1 +international network for engineering education and research,0 +international neurourology journal,0 +international nursing review,2 +international oil spill conference proceedings,0 +international online journal of education and teaching,0 +international ophthalmology,1 +international ophthalmology clinics,1 +international organization,3 +international organization center of academic research,0 +international organizations law review,1 +international orthopaedics,1 +international peace studies centre,0 +international peacekeeping,1 +international perspectives in psychology,1 +international perspectives on inclusive education,1 +international perspectives on sexual and reproductive health,1 +international philosophical quarterly,1 +international planning studies,1 +international platform of jurists for east timor,0 +international political science review,2 +international political sociology,2 +international politics,1 +international politics reviews,1 +international polymer processing,1 +international power electronics and motion control conference,1 +international practice development journal,1 +international pragmatics association,1 +"international proceedings of chemical, biological and environmental engineering",0 +international proceedings of computer science and information technology,0 +international proceedings of economics development and research,0 +international productivity monitor,0 +international psychogeriatrics,1 +international public management journal,2 +international public management review,1 +international pulp bleaching conference,0 +international quarterly for asian studies,1 +international quarterly of community health education,1 +international reading association,1 +international real estate review,0 +international refereed journal of engineering and science,0 +international regional science review,1 +international relations,1 +international relations of the asia-pacific,1 +international relations studies series,1 +international reports on socio-informatics,0 +international research in childrens literature,1 +international research in early childhood education,0 +international research in geographical and environmental education,1 +international research journal of engineering and technology,0 +international research journal of finance and economics,0 +international research journal of public and environmental health,0 +international review for the sociology of sport,1 +international review of administrative sciences,2 +international review of aerospace engineering,1 +international review of african american art,1 +international review of applied economics,1 +international review of automatic control,0 +international review of business and social sciences,0 +international review of cell and molecular biology,1 +international review of chemical engineering,0 +international review of civil engineering,0 +international review of economics,1 +international review of economics and finance,1 +international review of economics education,1 +international review of education,1 +international review of electrical engineering: iree,1 +international review of entrepreneurship,1 +international review of environmental and resource economics,1 +international review of finance,1 +international review of financial analysis,1 +international review of hydrobiology,1 +international review of law and economics,3 +"international review of law, computers and technology",1 +international review of mechanical engineering,1 +international review of mission,1 +international review of neurobiology,1 +international review of pragmatics,1 +international review of psychiatry,1 +international review of public administration,1 +international review of qualitative research,1 +international review of research in developmental disabilities,1 +international review of research in open and distance learning,1 +"international review of retail, distribution and consumer research",1 +international review of scottish studies,1 +international review of social history,3 +international review of social research,1 +international review of social sciences and humanities,0 +international review of sociology,1 +international review of sport and exercise psychology,3 +international review of the aesthetics and sociology of music,1 +international review of the red cross,1 +international review of victimology,1 +international review on modelling and simulations,1 +international review on public and nonprofit marketing,1 +international reviews in physical chemistry,1 +international reviews of immunology,1 +international road weather conference,0 +international scholarly research notices,0 +international science and technology conference,0 +international scientific conference electric power engineering,0 +international scientific conference management and engineering,0 +"international scientific conference on information, communication and energy systems and technologies",1 +international scientific conference on power and electrical engineering of riga technical university,0 +"international scientific conference theory, research and education in nursing",0 +international scientific journal of computing,1 +international scientific-practical conference problems of infocommunications science and technology,0 +international security,3 +international semantic web conference,2 +international seminar on orc power systems,1 +international seminars in pediatric gastroenterology and nutrition,1 +international series in operations research and management science,0 +international series in software engineering,1 +international series on information systems and management in creative e-media,1 +international shipbuilding progress,1 +international small business journal,2 +international soc design conference,0 +international social science journal,1 +international social security review,1 +international social work,2 +international society for asphalt pavements,1 +international society for computers and their applications,0 +international society for indoor air quality and climate,0 +international society for music education,0 +international society for music information retrieval,1 +international society for productivity enhancement,1 +international society for professiornal innovation management,0 +international society for the study of work & organizational values,0 +international society of arboriculture,0 +international society of automation,0 +international society of information fusion,0 +international society of offshore and polar engineers,1 +international society of the learning sciences,0 +international sociology,2 +international soil and water conservation research,1 +international solar energy society,1 +"international solid-state sensors, actuators and microsystems conference",0 +international sport coaching journal,1 +international sportmed journal,1 +international statistical institute,1 +international statistical review,1 +international studies,1 +international studies in educational administration,1 +international studies in human rights,1 +international studies in humour,0 +international studies in philosophy,1 +international studies in sociology and social anthropology,1 +international studies in sociology of education,1 +international studies in the philosophy of science,2 +international studies of management and organization,1 +international studies perspectives,1 +international studies quarterly,3 +international studies review,1 +international sugar journal,1 +international summer school “advanced course on petri nets”,0 +international surgery,1 +international symposium on advanced networks and telecommunication systems,1 +international symposium on antennas and propagation,0 +"international symposium on artificial intelligence, robotics and automation in space",0 +international symposium on biomechanics in sports,0 +international symposium on biomedical imaging,1 +international symposium on business modeling and software design,1 +international symposium on communications and information technologies,1 +international symposium on computational geometry,2 +international symposium on computer architecture,3 +international symposium on computers in education,0 +"international symposium on dependable software engineering: theories, tools, and applications",0 +international symposium on empirical software engineering and measurement,2 +international symposium on forestry mechanization,0 +international symposium on fundamentals of electrical engineering,0 +international symposium on image and signal processing and analysis,1 +international symposium on magnetic bearings,1 +international symposium on medical information and communication technology,1 +international symposium on networks-on-chip,0 +international symposium on parallel computing in electrical engineering,0 +international symposium on performance evaluation of computer and telecommunication systems,0 +international symposium on quality electronic design proceedings,0 +international symposium on robotics,0 +international symposium on robotics and intelligent sensors,0 +international symposium on robotics research,0 +international symposium on semantic mining in biomedicine,0 +international symposium on semiconductor light emitting devices,0 +international symposium on software testing and analysis,2 +international symposium on telecommunications,0 +international symposium on the science and technology of light sources,1 +international symposium on topical problems in field of electrical and power engineering,0 +"international symposium on vehicle, mechanical and electrical engineering",0 +international symposium on wireless communication systems,1 +international system safety conference,0 +international tax and public finance,2 +international teacher education conference,0 +international telecommunication union,0 +international telecommunications energy conference,0 +international telecommunications network strategy and planning symposium,0 +international telecommunications symposium,0 +international telework workshop,0 +international theory,3 +international topical meeting on optical sensing and artificial vision,0 +international trade journal,1 +international trade law & regulation,0 +"international transaction journal of engineering, management, & applied sciences & technologies",0 +international transactions in operational research,1 +international transactions on electrical energy systems,1 +international transfer pricing journal,0 +international transport law review,1 +international turfgrass society research journal,0 +international union for conservation of nature,0 +international union of forest research organizations,0 +international union of radio science,0 +international union rights,0 +international universities power engineering conference,0 +international universities press,1 +international urogynecology journal,1 +international urology and nephrology,1 +international vat monitor,0 +international wireless communications and mobile computing conference,1 +international women's news,-1 +international wood products journal,1 +international work-conference on bioinformatics and biomedical engineering,0 +international workshop on acoustic signal enhancement,1 +international workshop on advanced ground penetrating radar,0 +international workshop on advanced motion control,0 +international workshop on advanced optical imaging and metrology,0 +"international workshop on advances in regularization, optimization, kernel methods and support vector machines: theory and applications",0 +international workshop on advances in sensors and interfaces,1 +international workshop on antenna technology,0 +international workshop on automated specification and verification of web systems,0 +international workshop on automation of software test,0 +international workshop on behavior change support systems,1 +international workshop on biomedical engineering,0 +international workshop on biometrics,0 +international workshop on boolean problems,0 +international workshop on business models for mobile platforms,0 +international workshop on cellular nanoscale networks and their applications,1 +international workshop on collaboration teaching of globally distributed software development,0 +international workshop on communication technologies for vehicles,0 +international workshop on content-based multimedia indexing. print,0 +international workshop on cooperative robots and sensor networks,0 +international workshop on cross layer design,0 +international workshop on cyber-physical networking systems,0 +international workshop on dependable and secure industrial and embedded systems,0 +international workshop on dynamic analysis,0 +international workshop on electromagnetic metamaterials,0 +international workshop on evaluating information access,1 +international workshop on haptic and audio interaction design,0 +international workshop on image analysis for multimedia interactive services,0 +international workshop on integrated nonlinear microwave and millimetre-wave circuits,0 +international workshop on intelligent exploration of semantic data,0 +"international workshop on interconnection network architecture: on-chip, multi-chip",0 +international workshop on knowledge management,0 +international workshop on linked data in architecture and construction,0 +international workshop on many-core embedded systems,0 +international workshop on micropiles,0 +international workshop on mining urban data,0 +international workshop on mobile cloud computing and services,0 +international workshop on multiple access communications,0 +international workshop on nanocarbon photonics and optoelectronics,0 +international workshop on network on chip architectures,0 +international workshop on nonlinear photonics,0 +"international workshop on power and timing modeling, optimization and simulation",0 +international workshop on power grid-friendly computing,0 +international workshop on quality-aware devops,0 +international workshop on radiation imaging detectors,0 +international workshop on recent advances in broadband access networks,0 +international workshop on reconfigurable communication-centric systems-on-chip,1 +international workshop on requirements engineering for social computing,1 +international workshop on security in information systems,0 +international workshop on selected topics in mobile and wireless computing,0 +international workshop on semantic ambient media experiences,0 +international workshop on semantic evaluation,0 +international workshop on semantic technologies,0 +international workshop on small cell wireless networks,0 +international workshop on software engineering education based on real-world experiences,0 +international workshop on software engineering for sensor network applications,0 +international workshop on software engineering research and industrial practice,0 +international workshop on the practical application of stochastic modelling,0 +international workshop on theory and applications of formal argument,0 +international workshop on thermal investigations of ics and systems,0 +international workshop on traffic monitoring and analysis,0 +international workshop on value-based software traceability,0 +international workshop on variability in software architecture,0 +"international workshops on image processing theory, tools, and applications",1 +international workshops on matrices and statistics,0 +international world wide web conference,3 +international wound journal,1 +international yearbook of nephrology,1 +international yeats studies,1 +internationale kirchliche zeitschrift,1 +internationale neerlandstiek,1 +internationale politik,1 +internationale psychoanalyse,0 +internationale zeitschrift fur philosophie,1 +internationaler wissenschaftliche korrespondenz zur geschichte der deutschen arbeiterbewegung,1 +internationales archiv für sozialgeschichte der deutschen literatur,3 +internationales jahrbuch fur hermeneutik,1 +internationales steuerrecht,1 +internationalisation of higher education,0 +internet and higher education,3 +internet archaeology,1 +internet encyclopedia of philosophy,1 +internet interventions,1 +internet journal of allied health sciences and practice,1 +internet journal of geriatrics and gerontology,0 +internet journal of medical technology,0 +internet journal of pathology,0 +internet journal of rheumatology,0 +internet journal of vibrational spectroscopy,1 +internet mathematics,1 +internet of things,-1 +internet of things,1 +internet of things and cyber-physical systems,1 +internet policy review,1 +internet pragmatics,1 +internet protocol journal,0 +internet research,2 +internet society,0 +internet technology letters,-1 +internetowy kwartalnik antymonopolowy i regulacyjny,0 +internist,1 +interpersona : an international journal on personal relationships,1 +"interplay: a journal of languages, linguistics, and literature",0 +interpres: rivista di studi quattrocenteschi,1 +interpretation : a journal of subsurface characterization,1 +interpretation: a journal of bible and theology,1 +interpreter and translator trainer,2 +interpreters newsletter,1 +interpreting,2 +interreligious studies and intercultural theology,1 +interscience communications,1 +intersecciones en antropologia,1 +intersections,1 +intersections,2 +intersections: gender and sexuality in asia and the pacific,1 +intersentia,1 +intersezioni,1 +interspeech,1 +intertax: international tax review,2 +intertexts,1 +intervalli,-1 +intervention in school and clinic,1 +intervention press,1 +interventional cardiology,0 +interventional neurology,1 +interventional neuroradiology,1 +interventional pain medicine,1 +interventions: international journal of postcolonial studies,2 +intervirology,1 +intestinal research,1 +inti,1 +into,1 +intonations,0 +intralinea,1 +invalidiliiton julkaisuja,-1 +invalidisäätiö,0 +invasive plant science and management,1 +inventiones mathematicae,3 +inventions,0 +inverbis,0 +inverse problems,3 +inverse problems and imaging,2 +invertebrate biology,1 +invertebrate neuroscience,1 +invertebrate reproduction and development,1 +invertebrate systematics,1 +invest working papers,-1 +investigacion bibliotecologica,1 +investigacion de historia economica,2 +investigaciones feministas,0 +investigaciones geográficas,1 +investigaciones historicas: epoca moderna y contemporanea,1 +investigación clínica,0 +investigational new drugs,1 +investigations in mathematics learning,1 +investigative and clinical urology,1 +investigative genetics,1 +investigative interviewing : research and practice,1 +investigative ophthalmology and visual science,2 +investigative radiology,3 +investigações,1 +investment analysts journal,1 +investment management and financial innovations,0 +invigilata lucernis,1 +invisible culture,1 +involve,1 +inzinerine ekonomika-engineering economics,0 +inzynieria mineralna,0 +inštitut za lokalno samoupravo maribor,0 +inštitut za novejšo zgodovino,0 +iob discussion papers,0 +ionia publications,0 +ionics,1 +ionio panepistimio,0 +iop conference series : materials science and engineering,1 +iop conference series earth and environmental science,0 +iop scinotes,1 +ios press,1 +iot,0 +iotbds,1 +iowa journal of communication,1 +iowa law review,1 +iowa research online,0 +iowa state university press,1 +ip rax: praxis de internationalen privat- und verfahrensrechts,1 +ipem-translation,0 +iperstoria,0 +ippologia,1 +ippr progressive review,1 +ipr university center,0 +ipsera conference proceedings,0 +ir,-1 +iral: international review of applied linguistics in language teaching,1 +iran and the caucasus,1 +iran: journal of the british institute of persian studies,2 +iranian conference on machine vision and image processing,0 +iranian journal of allergy asthma and immunology,0 +iranian journal of animal biosystematics,1 +iranian journal of applied animal science,0 +iranian journal of applied language studies,0 +iranian journal of basic medical sciences,0 +iranian journal of biotechnology,0 +iranian journal of cancer prevention,0 +iranian journal of chemistry and chemical engineering: international english edition,1 +iranian journal of electrical and electronic engineering,0 +iranian journal of environmental health science and engineering,1 +iranian journal of fisheries sciences,1 +iranian journal of fuzzy systems,1 +iranian journal of immunology,0 +iranian journal of kidney diseases,0 +iranian journal of language teaching research,1 +iranian journal of materials science and engineering,1 +iranian journal of nursing and midwifery research,0 +iranian journal of parasitology,0 +iranian journal of pediatrics,0 +iranian journal of pharmaceutical research,1 +iranian journal of public health,1 +iranian journal of radiology,0 +iranian journal of reproductive medicine,1 +iranian journal of science and technology : transactions of civil engineering,0 +iranian journal of science and technology transaction a: science,1 +iranian journal of science and technology-transactions of electrical engineering,0 +iranian journal of science and technology-transactions of mechanical engineering,0 +iranian journal of veterinary research,1 +iranian polymer journal,0 +iranian studies,1 +iranica antiqua,1 +iraq,1 +iraqi bulletin of geology and mining,0 +iraqi geological journal,1 +iraqi journal for computer science and mathematics,0 +irbm,1 +irem küçükoğlu,0 +irenikon,1 +iride: filosofia e discussione pubblica,1 +iris,0 +iris,1 +iris group,0 +irish academic press,1 +irish accounting review,1 +irish economic and social history,1 +irish educational studies,0 +irish feminist review,1 +irish geography,1 +irish historical studies,1 +irish journal of agricultural and food research,1 +irish journal of anthropology,1 +irish journal of medical science,1 +irish journal of paramedicine,1 +irish journal of psychology,1 +irish journal of sociology,1 +irish naturalists' journal,0 +irish political studies,1 +irish slavonic studies,1 +irish studies review,1 +irish sword,1 +irish theological quarterly,1 +irish university review,1 +irish veterinary journal,1 +irlanninsetteri,-1 +irodalmi szemle,-1 +irodalomismeret,0 +irodalomtorteneti kozlemenyek,0 +iron and steel technology,1 +ironmaking and steelmaking,1 +irrigation and drainage,1 +irrigation and drainage systems,1 +irrigation science,1 +irstea bordeaux,0 +iryo keizai kenkyu,0 +irz,-1 +is&t international symposium on electronic imaging,1 +"is&t/spie electronic imaging / 3d imaging, interaction, and metrology / stereoscopic displays and applications",1 +is&t/spie electronic imaging / image processing: algorithms and systems,1 +isa transactions,2 +isaidat law review,1 +isbt science series,1 +isca international workshop on speech and language technology in education,0 +isca-livres,0 +iscience,1 +isegoria,1 +"isel academic journal of electronics, telecommunications and computers",0 +isfnr newsletter,-1 +ishara press,0 +ishraq,1 +isi bilimi ve teknigi dergisi-journal of thermal science and technology,1 +isij international,1 +isimu,1 +isis,3 +isis reports,0 +isj-invertebrate survival journal,0 +iskos,1 +islam and christian-muslim relations,2 +islam and the modern age,1 +islam in africa,1 +islam: zeitschrift fur geschichte und kultur des islamischen orients,3 +islamic africa,1 +islamic history and civilization,2 +islamic law and society,2 +islamic perspective,0 +"islamic philosophy, theology and science",2 +islamic quarterly,1 +islamic studies review,1 +islamochristiana,1 +island arc,1 +island press,1 +island studies journal,1 +islenskt mal og almenn malfraedi,1 +islets,1 +isme communications,1 +isme journal,3 +iso numero,-1 +isogloss,1 +isokinetics and exercise science,1 +isonomia,1 +isotopes in environmental and health studies,1 +ispi dossier,-1 +ispim oy,0 +"isprs annals of the photogrammetry, remote sensing and spatial information sciences",1 +isprs international journal of geo-information,1 +isprs journal of photogrammetry and remote sensing,2 +isprs open journal of photogrammetry and remote sensing,1 +israel affairs,1 +israel exploration journal,2 +israel exploration society,0 +israel journal of chemistry,1 +israel journal of earth sciences,1 +israel journal of ecology and evolution,1 +israel journal of entomology,0 +israel journal of mathematics,2 +israel journal of plant sciences,0 +israel journal of psychiatry and related sciences,1 +israel journal of veterinary medicine,1 +israel medical association journal,1 +israeli journal of aquaculture-bamidgeh,1 +israeli journal of humor research,1 +issi newsletter,0 +issues and studies,1 +issues in accounting education,1 +issues in applied linguistics,0 +issues in business management and economics,0 +issues in comprehensive pediatric nursing,1 +issues in educational research,1 +issues in forensic psychology,1 +issues in information systems,1 +issues in informing science and information technology,0 +issues in law and medicine,1 +issues in mathematics education,1 +issues in mental health nursing,1 +issues in psychoanalytic psychology,1 +issues in science and technology,1 +issues in science and technology librarianship,1 +issues of analysis,0 +issuex,-1 +ist press,1 +ist-africa,0 +istanbuler mitteilungen,1 +iste,1 +iste editions,0 +istes organization,0 +istina,1 +istituto affari internazionali,0 +istituto della enciclopedia italiana,0 +istituto italiano di studi germanici,0 +istituto nazionale di fisica nucleare,0 +istituto papirologico g. vitelli,1 +istituto poligraficio e zecca dello stato,1 +istor,1 +istoricheskaya pamyat`,0 +istorija peterburga,0 +istorijos instituto leidykla,0 +istoriko-astronomicheskie issledovaniya,1 +istoriko-filosofskij ežegodnik,0 +istoriko-matematicheskie issledovania,1 +istoriâ,1 +istoričeskij kurʹer,1 +istraživanja i projektovanja za privredu,0 +istros,1 +it,-1 +it professional,1 +it-universitetet i københavn,1 +it. information technology,1 +itaca,1 +italia dialettale,1 +italia medioevale e umanistica,1 +italian americana,0 +italian botanist,1 +italian economic journal,-1 +italian journal of agronomy,1 +italian journal of animal science,1 +italian journal of biochemistry,1 +italian journal of educational technology,0 +italian journal of food safety,-1 +italian journal of food science,1 +italian journal of medicine,1 +italian journal of pediatrics,1 +italian journal of public law,1 +italian journal of sociology of education,1 +italian journal of vascular and endovascular surgery,0 +italian journal of zoology,1 +italian labour law e-journal,1 +italian poetry review,1 +italian sociological review,1 +italian studies,3 +italian yearbook of international law,1 +italianist,2 +italianistica,2 +italianistica debreceniensis,1 +italica,1 +italienisch: zeitschrift fur italienische sprache und literatur,1 +italienische studien,1 +italique: poesie italienne de la renaissance,1 +itc press,1 +itc specialist seminar on energy efficient and green networking,0 +ite journal: institute of transportation engineers,1 +ite transactions on media technology and applications,0 +itea: informacion tecnica economica agraria,1 +iterations,1 +itherm,0 +itinera,1 +"itineraires: litterature, textes, cultures",1 +itinerari,1 +itinerario: international journal on the history of european expansion and global interaction,1 +itk - interaktiivinen tekniikka koulutuksessa,0 +itl : international journal of applied linguistics,1 +itla research,-1 +itlan raportit ja selvitykset,-1 +itm web of conferences,0 +itu journal,1 +itua,-1 +itä-häme,-1 +itä-savo,-1 +itä-suomen sosiaalialan osaamiskeskuksen julkaisuja,-1 +itä-suomen yliopisto,0 +itä-suomen yliopiston oikeustieteellisiä julkaisuja,0 +itäväylä,-1 +iubmb life,1 +iucrj,1 +iudicium verlag,1 +iufro world congress,0 +iufro world series,0 +iui workshop on interacting with smart objects,0 +iuniverse publication,0 +iuorio edizioni,0 +iuphar/bps guide to pharmacology cite,0 +iustitia,0 +iustus förlag,1 +ivanovskij gosudarstvennyj universitet,0 +ivi,0 +ivp academic,0 +"iwa conference on instrumentation, control and automation",0 +iwa publishing,1 +iwh-diskussionspapiere,-1 +ixe editions,0 +iyyun: the jerusalem philosophical quarterly,1 +iza discussion papers,-1 +iza journal of development and migration,1 +iza journal of european labor studies,1 +iza journal of labor economics,1 +iza journal of labor policy,1 +iza world of labor,1 +izdatel stvo delo,0 +izdatel'skii dom yask,0 +izdatel'stvo kuzbassvuzizdat,0 +izdatel`skie resheniya,0 +"izdatel`skij centr ""azbukovnik""",0 +"izdatel`stvo ""artist. rezhisser. teatr""",0 +"izdatel`stvo ""chisty`j list""",0 +"izdatel`stvo ""e`kon-inform""",0 +"izdatel`stvo ""forum""",0 +"izdatel`stvo ""lema""",0 +"izdatel`stvo ""triada""",0 +"izdatel`stvo ""ves` mir""",0 +izdatel`stvo lan`,0 +izdatel`stvo pushkinskij dom,0 +izdatel`stvo tomskogo universiteta,0 +izdatelskij dom azhur,0 +"izdatelstvo ""veles""",0 +izdatelstvo ja,0 +izdatelstvo uralskogo universiteta,0 +izhevskij institut komp`yuterny`x issledovanij,0 +izvestiia russkogo geograficheskogo obshchestva,0 +izvestiya atmospheric and oceanic physics,1 +izvestiya mathematics,1 +izvestiya: physics of the solid earth,1 +izvestiâ nacionalʹnoj akademii nauk respubliki kazahstan : seriâ himii i tehnologii,0 +izvestiâ nacionalʹnoj akademii nauk respubliki kazahstan. seriâ geologii i tehničeskih nauk,0 +izvestiâ nacionalʹnoj akademii nauk respubliki kazahstan. seriâ obŝestvennyh i gumanitarnyh nauk,0 +izvestiâ sankt-peterburgskoj lesotehni?eskoj akademii,0 +izvestiâ saratovskogo universiteta. novaâ seriâ. seriâ sociologiâ. politologiâ,1 +izvestiâ uralʹskogo federalʹnogo universiteta : gumanitarnye nauki,1 +izvestiâ vuzov : prikladnaâ himiâ i biotehnologiâ,0 +izvestiâ vysših u?ebnyh zavedenij : himiâ i himi?eskaâ tehnologiâ,0 +izvestiâ vysših učebnyh zavedenij : lesnoj žurnal,0 +iéseg éditions,0 +i̇dil dergisi,0 +i̇stanbul tıp fakültesi dergisi,0 +i̇stanbul üniversitesi sosyoloji dergisi,0 +j multidisciplinary scientific journal,1 +j ross publishing,0 +j-reading,1 +j. b. metzler,2 +j?v?d?n khirad,0 +j@rgonia,1 +ja clinical reports,1 +jaacap open,1 +jaarboek van de maatschappij der nederlandse letterkunde te leiden,1 +jaarboek van het genootschap amstelodanum,1 +jaarboek van het stijn streuvels genootschap,1 +jaarboek voor nederlandse boekgeschiedenis,1 +jaarboek voor vrouwengeschiedenis,1 +jaarboek: thomas instituut,1 +jac-antimicrobial resistance,1 +jacc : advances,1 +jacc : asia,1 +jacc : basic to translational science,1 +jacc : cardiooncology,1 +jacc : cardiovascular imaging,3 +jacc : cardiovascular interventions,2 +jacc : case reports,1 +jacc : clinical electrophysiology,1 +jacc heart failure,2 +jacet language teacher cognition research bulletin,0 +jacobin,-1 +jacobs journal of pulmonology,0 +jacobs journal of veterinary science and research,0 +jacs au,1 +jadavpur university journal of sociology,0 +jagiellonian library,0 +jagiellonian university press,1 +jahrbuch archaeologie schweiz,1 +jahrbuch der berliner museen,1 +jahrbuch der deutschen schillergesellschaft,1 +jahrbuch der europäischen integration,-1 +jahrbuch der historischen forschung in der bundesrepublik deutschland,1 +jahrbuch der osterreichischen byzantinistik,2 +jahrbuch der religionspädagogik,1 +jahrbuch des deutschen archaeologischen instituts,2 +jahrbuch des freien deutschen hochstifts,1 +jahrbuch des instituts für deutsche sprache,1 +jahrbuch des kunsthistorischen museums wien,1 +jahrbuch des romisch-germanischen zentralmuseums mainz,0 +jahrbuch des vereins für niederdeutsche sprachforschung,1 +jahrbuch deutsch als fremdsprache,2 +jahrbuch extremismus und demokratie,1 +jahrbuch fur antike und christentum,1 +jahrbuch fur antisemitismusforschung,1 +jahrbuch fur die geschichte mittel- und ostdeutschlands,1 +jahrbuch fur europaische geschichte,1 +jahrbuch fur europaische uberseegeschichte,1 +jahrbuch fur europaische verwaltungsgeschichte,1 +jahrbuch fur finnisch-deutsche literaturbeziehungen,1 +jahrbuch fur geschichte lateinamerikas,1 +jahrbuch fur hegelforschung,1 +jahrbuch fur historische kommunismusforschung,1 +jahrbuch fur internationale germanistik,1 +jahrbuch fur internationale germanistik: reihe c forschungsberichte,1 +jahrbuch fur numismatik und geldgeschichte,0 +jahrbuch fur religionsphilosophie,1 +jahrbuch fur universitatsgeschichte,1 +jahrbuch fur westdeutsche landesgeschichte,1 +jahrbuch fur wirtschaftsgeschichte,2 +jahrbuch für biblische theologie,1 +jahrbuch für europäische ethnologie,1 +jahrbuch für germanistische sprachgeschichte,0 +jahrbuch für regionalgeschichte,1 +jahrbuch für regionalwissenschaft,1 +jahrbucher fur nationalokonomie und statistik,1 +jahrbücher für geschichte osteuropas,3 +jahreshefte des osterreichischen archaologischen institutes in wien,2 +jahti,-1 +jai press,1 +jaids: journal of acquired immune deficiency syndromes,1 +jakajima,0 +jalkaväen vuosikirja,-1 +jalkaväen vuosikirja,0 +jama : journal of the american medical association,3 +jama cardiology,3 +jama dermatology,2 +jama internal medicine,3 +jama network open,1 +jama neurology,3 +jama oncology,3 +jama ophthalmology,3 +jama otolaryngology : head and neck surgery,3 +jama pediatrics,3 +jama psychiatry,3 +jama surgery,3 +james currey,2 +james joyce literary supplement,1 +james joyce quarterly,1 +jamia open,-1 +jamk arena pro,-1 +jamk arena public,-1 +jamtli,0 +jan van eyck academie,0 +janac: journal of the association of nurses in aids care,1 +jane&paulo,-1 +jano,-1 +janus head,1 +janus: sosiaalipolitiikan ja sosiaalityön tutkimuksen aikakauslehti,1 +japan and the world economy,1 +japan forum,1 +japan institute of navigation,1 +japan journal of industrial and applied mathematics,1 +japan journal of nursing science,1 +japan military review,0 +japan scientific societies press,1 +japan society of applied physics,0 +japan society of mechanical engineers,0 +japanese economic review,1 +japanese economy: translations and studies,1 +japanese geotechnical society special publication,0 +japanese journal of applied entomology and zoology,1 +japanese journal of applied physics,1 +japanese journal of clinical oncology,1 +japanese journal of crop science,1 +japanese journal of educational psychology,0 +japanese journal of hygiene,1 +japanese journal of infectious diseases,0 +japanese journal of lactic acid bacteria,0 +japanese journal of learning disabilities,1 +japanese journal of mathematics,1 +japanese journal of ophthalmology,1 +japanese journal of physical fitness and sports medicine,1 +japanese journal of physiological anthropology,1 +japanese journal of political science,1 +japanese journal of radiology,1 +japanese journal of religious studies,2 +japanese journal of systematic entomology,1 +japanese journal of veterinary research,1 +japanese language and literature,1 +japanese magazine of mineralogical and petrological sciences,0 +japanese psychological research,1 +japanese religions,1 +japanese studies,1 +jar: journal for artistic research,2 +jarcp,1 +jaro: journal of the association for research in otolaryngology,2 +jarq: japan agricultural research quarterly,1 +jasa express letters,1 +jasesoi journal,-1 +jasss: the journal of artificial societies and social simulation,1 +javma: journal of the american veterinary medical association,2 +javni sklad republike slovenije za kulturne dejavnosti,0 +javnost : the public,1 +jazyk i kultura,1 +jazyk i recevaja dejatelnost,1 +jazykovedny casopis,1 +jazz education in research and practice,1 +jazz perspectives,1 +jazz research journal,1 +jazzforschung,1 +jb & js open access,1 +jbi evidence implementation,1 +jbi evidence synthesis,2 +jbis: journal of the british interplanetary society,1 +jbjs case connector,0 +jbjs reviews,1 +jbmr plus,1 +jbr-btr,1 +jbuon,0 +jcac: journal of the canadian association for conservation,1 +jcem case reports,0 +jci insight,2 +jcmcc,1 +jcms: journal of common market studies,2 +jco clinical cancer informatics,1 +jco oncology practice,1 +jco precision oncology,1 +jcp: biochemical physics,1 +jcpp advances,1 +jcpsp: journal of the college of physicians and surgeons pakistan,1 +jcr: journal of clinical rheumatology,1 +jct coatingstech,1 +jdr clinical and translational research,1 +jds communications,0 +jeadv clinical practice,0 +jedidut,-1 +jednak książki,0 +jelenkor,-1 +jelenkor kiadó,0 +"jem, journal of educational measurement",1 +jenaer arbeiten zur lehrwerkforschung und materialentwicklung.,0 +jenda : a journal of culture and african women studies,1 +jenny stanford publishing,1 +"jentzsch-cuvillier, annette",0 +jeongbo beobhag,0 +jeremy mills publishing,1 +jerusalem studies in arabic and islam,1 +jerusalem studies in religion and culture,1 +jessica kingsley publishers,1 +jeten,1 +jetp letters,1 +"jeunesse: young people, texts, cultures",1 +jewish and christian perspectives series,2 +jewish art,0 +jewish bible quarterly,1 +jewish culture and history,1 +jewish history,2 +jewish identities in a changing world,1 +jewish quarterly review,1 +jewish social studies,1 +"jewish studies, an internet journal",1 +jezik,1 +jezik in slovstvo,1 +jezikoslovlje,1 +jezikoslovni zapiski,1 +jezyk i metoda,0 +jezyk polski,1 +jfps international journal of fluid power system,0 +jgh open,1 +jhep reports,1 +jhlt open,1 +jianghan shiyou xueyuan xuebao,0 +jiangsu education publishing house,1 +jiangsu gao-jiao,0 +jianzhushi,0 +jiaotong yunshu gongcheng xuebao,0 +jiaoyu celiang yu pingjia,0 +jiaoyu xueshu uuekan,0 +jid innovations,1 +jihočeská univerzita v českých budějovicích,0 +jilin daxue xuebao,0 +jilin shifan daxue xuebao,0 +jim : jornal de investigação médica,1 +jimd reports,1 +jimoondang,1 +jindal global law review,1 +jinkou chinou gakkai rombunshi,0 +jinkou chinou gakkai zenkoku taikai rombunshuu,0 +jinshu xuebao,1 +jisuanji gongcheng,0 +jisuanji jicheng zhizao xitong,0 +jisuanji xuebao,0 +jisuanji yingyong,0 +jitta: journal of information technology theory and application,1 +jk science,1 +jlis.it,-1 +jmir aging,0 +jmir ai,1 +jmir cancer,1 +jmir cardio,0 +jmir diabetes,1 +jmir formative research,0 +jmir human factors,1 +jmir infodemiology,1 +jmir medical education,1 +jmir medical informatics,1 +jmir mental health,1 +jmir mhealth and uhealth,2 +jmir nursing,2 +jmir pediatrics and parenting,1 +jmir public health and surveillance,1 +jmir rehabilitation and assistive technologies,2 +jmir research protocols,1 +jmir serious games,1 +jmir xr and spatial computing,0 +jmm case reports,1 +jmm international journal on media management,1 +jnci cancer spectrum,1 +jnt: journal of narrative theory,1 +joelho,1 +joensuun taidemuseo,0 +johannes gutenberg-universität,0 +john benjamins,2 +john clare society journal,1 +john donne journal,0 +john libbey publishing,1 +john wiley & sons,2 +johnny kniga,0 +johns hopkins university press,2 +johnson matthey technology review,1 +johtamistaidon opisto,0 +joint bone spine,1 +joint commission journal on quality and patient safety,1 +joint force quarterly,1 +joint ifip wireless and mobile networking conference,0 +joint urban remote sensing event,0 +joint workshop on hands-free speech communication and microphone arrays,0 +"joint workshop on language technology for closely related languages, varieties and dialects",1 +joiv : international journal on informatics visualization,0 +jokka,-1 +jolma,0 +jom,1 +jomec journal,1 +jonares,0 +jones and bartlett publishers,1 +joornaalii seeraa oromiyaa,0 +jor spine,1 +jordan journal of biological sciences,0 +jordan journal of physics,0 +jordanian journal of engineering and chemical industries,0 +jordemodern,-1 +jornal brasileiro de pneumologia,1 +jornal de pediatria,1 +joroisten lehti,-1 +josette lyon,0 +josip juraj strossmayer university of osijek,0 +jossey-bass,1 +joto afrika,-1 +joule,3 +joulukannel,-1 +journ@l electronique dhistoire des probabilites et de la statistique,1 +journal advances in higher education,1 +journal american water works association,0 +journal asiatique,1 +journal culinaire,-1 +journal d analyse mathematique,2 +journal de chirurgie viscerale,1 +journal de gynecologie obstetrique et biologie de la reproduction,1 +journal de l'école polytechnique : mathématiques,1 +journal de la societe des americanistes,1 +journal de la societe des oceanistes,1 +journal de mathematiques pures et appliquees,3 +journal de pediatrie et de puericulture,1 +journal de radiologie diagnostique et interventionnelle,1 +journal de theorie des nombres de bordeaux,1 +journal de therapie comportementale et cognitive,1 +journal de traumatologie du sport,1 +journal der deutschen dermatologischen gesellschaft,1 +journal des africanistes,1 +journal des anthropologues,1 +journal des savants,1 +journal du droit international,1 +journal europäischer orchideen,0 +journal européen des systèmes automatisés,0 +journal européen des urgences et de réanimation,1 +journal for algebra and number theory academia,1 +journal for crime conflict and media culture,1 +journal for critical animal studies,0 +journal for critical education policy studies,1 +journal for cultural and religious theory,1 +journal for cultural research,2 +journal for deradicalization,1 +journal for digital legal history,1 +journal for drama in education,1 +journal for dramatic theory and criticism,1 +journal for early modern cultural studies,1 +journal for east european management studies,1 +journal for educational research online,1 +"journal for educators, teachers and trainers",0 +journal for eighteenth-century studies,2 +journal for ethics in antiquity and christianity,0 +journal for european environmental and planning law,1 +journal for general philosophy of science,1 +journal for geometry and graphics,1 +journal for global business advancement,1 +journal for healthcare quality,1 +journal for higher education management,0 +journal for immunotherapy of cancer,2 +journal for international business and entrepreneurship development,1 +journal for islamic studies,0 +journal for labour market research,1 +journal for language technology and computational linguistics,1 +journal for late antique religion and culture,1 +journal for literary and intermedial crossings,1 +journal for manufacturing science and production,1 +journal for multicultural education,1 +journal for nature conservation,1 +journal for nurses in professional development,0 +journal for patient compliance,0 +journal for person-oriented research,0 +journal for public diplomacy,1 +journal for reattach therapy and developmental diversities,0 +"journal for religion, film and media",1 +journal for reproducibility in neuroscience,0 +journal for research in arts and sports education,1 +journal for research in mathematics education,3 +journal for specialists in group work,1 +journal for specialists in pediatric nursing,1 +journal for stem education research,1 +journal for studies in humanities and social sciences,0 +journal for the academic study of religion,1 +journal for the anthropological study of human movement,0 +journal for the cognitive science of religion,1 +journal for the education of the gifted,1 +journal for the history of astronomy,1 +journal for the history of knowledge,1 +journal for the history of reformed pietism,1 +journal for the measurement of physical behaviour,1 +journal for the psychology of language learning.,0 +journal for the scientific study of religion,3 +journal for the study of british cultures,1 +journal for the study of judaism,3 +journal for the study of postsecondary and tertiary education,0 +"journal for the study of religion, nature and culture",1 +journal for the study of religions and ideologies,1 +journal for the study of spirituality,1 +journal for the study of the historical jesus,1 +journal for the study of the new testament,3 +journal for the study of the old testament,3 +journal for the study of the pseudepigrapha,2 +journal for the theory of social behaviour,2 +journal francais d ophtalmologie,1 +journal fur die reine und angewandte mathematik,3 +journal fur mathematik-didaktik,1 +journal fur verbraucherschutz und lebensmittelsicherheit-journal of consumer protection and food safety,1 +journal für lehrerinnenbildung,0 +journal für medienlinguistik,1 +journal für entwicklungspolitik,1 +journal für ernährungsmedizin,-1 +journal für kulturpflanzen,-1 +journal in computer virology,1 +journal international de bioethique,1 +journal international des sciences de la vigne et du vin,1 +journal nano science and technology,-1 +journal of 3d printing in medicine,0 +journal of aapos,1 +journal of abdominal wall surgery,0 +journal of academic ethics,1 +journal of academic language and learning,1 +journal of academic librarianship,1 +journal of academic perspectives,0 +journal of access services,1 +journal of accountancy,1 +journal of accounting & organizational change,1 +journal of accounting and auditing: research and practice,0 +journal of accounting and economics,3 +journal of accounting and finance,0 +journal of accounting and management information systems,0 +journal of accounting and public policy,2 +journal of accounting education,1 +journal of accounting in emerging economies,1 +journal of accounting literature,1 +journal of accounting research,3 +"journal of accounting, auditing and finance",1 +"journal of accounting, finance and auditing studies",0 +journal of active and passive electronic devices,1 +"journal of activity, sedentary and sleep behaviors",1 +journal of actuarial practice,1 +journal of acute disease,0 +journal of adaptation in film & performance,1 +journal of addiction medicine,1 +journal of addiction medicine and therapy,0 +journal of addiction research and therapy,0 +journal of addictions and offender counseling,1 +journal of addictions nursing,1 +journal of addictive diseases,1 +journal of adhesion,1 +journal of adhesion science and technology,1 +journal of adhesive dentistry,1 +journal of administrative and business studies,0 +journal of administrative sciences and technology,0 +journal of adolescence,1 +journal of adolescent and adult literacy,2 +journal of adolescent and young adult oncology,1 +journal of adolescent health,1 +journal of adolescent research,1 +journal of adult and continuing education,1 +journal of adult development,1 +journal of adult education,0 +journal of adult protection,1 +journal of advanced academics,1 +journal of advanced agricultural technologies,0 +journal of advanced ceramics,2 +journal of advanced computational intelligence and intelligent informatics,1 +journal of advanced concrete technology,1 +journal of advanced dielectrics,1 +journal of advanced instrumentation in science,0 +journal of advanced joining processes,1 +journal of advanced linguistic studies,0 +journal of advanced management science,0 +journal of advanced manufacturing systems,1 +journal of advanced materials,1 +journal of advanced mechanical design systems and manufacturing,0 +journal of advanced nursing,3 +journal of advanced oxidation technologies,0 +journal of advanced perioperative care,1 +journal of advanced research,1 +journal of advanced research in applied sciences and engineering technology,1 +journal of advanced research in dynamical and control systems,0 +journal of advanced research in fluid mechanics and thermal sciences,1 +journal of advanced research in humanities and social sciences,0 +journal of advanced research in micro and nano engineering,0 +journal of advanced transportation,1 +journal of advanced zoology,0 +journal of advances in dairy research,0 +journal of advances in humanities,0 +journal of advances in information fusion,1 +journal of advances in information technology,0 +journal of advances in management research,1 +journal of advances in medical education and professionalism,0 +journal of advances in modeling earth systems,2 +journal of adventure education and outdoor learning,1 +journal of advertising,2 +journal of advertising research,1 +journal of aeronautics and aerospace engineering,0 +journal of aeronautics astronautics and aviation,0 +journal of aerosol medicine and pulmonary drug delivery,1 +journal of aerosol science,1 +journal of aerospace computing information and communication,1 +journal of aerospace engineering,1 +journal of aerospace technology and management,0 +journal of aesthetic education,2 +journal of aesthetics and art criticism,3 +journal of aesthetics and culture,1 +journal of aesthetics and phenomenology,1 +journal of affective disorders,1 +journal of affective disorders reports,1 +journal of african american studies,1 +journal of african and asian local goverment studies,1 +journal of african and international law,1 +journal of african archaeology,2 +journal of african business,1 +journal of african cinemas,1 +journal of african cultural studies,2 +journal of african diaspora archaeology and heritage,0 +journal of african earth sciences,1 +journal of african economies,1 +journal of african elections,1 +journal of african history,3 +journal of african languages and linguistics,3 +journal of african languages and literatures,1 +journal of african law,1 +journal of african media studies,1 +journal of african research in business and technology,0 +journal of african zoology,1 +journal of ageing and longevity,0 +"journal of aggression, conflict and peace research",1 +"journal of aggression, maltreatment and trauma",1 +journal of aging and environment,1 +journal of aging and health,2 +journal of aging and physical activity,1 +journal of aging and social policy,1 +journal of aging research,1 +journal of aging studies,1 +journal of agrarian change,2 +journal of agribusiness and rural development,0 +journal of agricultural and applied economics,1 +journal of agricultural and environmental ethics,1 +journal of agricultural and food chemistry,3 +journal of agricultural and food industrial organization,1 +journal of agricultural and food information,1 +journal of agricultural and practice,0 +journal of agricultural and resource economics,1 +journal of agricultural economics,1 +journal of agricultural education and extension,1 +journal of agricultural engineering,-1 +journal of agricultural safety and health,1 +journal of agricultural science,0 +journal of agricultural science,2 +journal of agricultural science and technology,1 +journal of agricultural science and technology a,0 +journal of agricultural sciences,0 +"journal of agricultural, biological, and environmental statistics",1 +journal of agriculture and food research,1 +journal of agriculture and life sciences,0 +journal of agriculture and rural development in the tropics and subtropics,1 +journal of agriculture and sustainability,0 +journal of agriculture food and development,0 +journal of agriculture of the university of puerto rico,1 +journal of agro crop science,1 +journal of agromedicine,1 +journal of agrometeorology,1 +journal of agronomy and crop science,1 +journal of ai law and regulation,1 +"journal of ai, robotics & workplace automation",0 +journal of air law and commerce,1 +journal of air transport management,1 +journal of air transport studies,0 +journal of aircraft,1 +journal of airline and airport management,1 +journal of airport management,0 +journal of alcohol and drug education,1 +journal of alcohol drug dependence,0 +journal of algebra,2 +journal of algebra and its applications,1 +journal of algebraic combinatorics,1 +journal of algebraic geometry,2 +journal of algebraic hyperstructures and logical algebras,0 +journal of algebraic statistics,1 +journal of algorithms and computational technology,1 +journal of algorithms-cognition informatics and logic,2 +journal of aligner orthodontics,0 +journal of allergy,0 +journal of allergy and clinical immunology,3 +journal of allergy and clinical immunology : global,1 +journal of allergy and clinical immunology : in practice,2 +journal of allied health,1 +journal of alloys and compounds,1 +journal of alternative and community media,1 +journal of alternative and complementary medicine,1 +journal of alternative finance,1 +journal of alternative investments,1 +journal of alzheimer's disease,1 +journal of alzheimer's disease & parkinsonism,0 +journal of alzheimer's disease reports,1 +journal of ambient intelligence and humanized computing,1 +journal of ambient intelligence and smart environments,1 +journal of ambulatory care management,1 +journal of american college health,1 +journal of american culture,1 +journal of american drama and theatre,1 +journal of american ethnic history,2 +journal of american folklore,3 +journal of american history,3 +journal of american studies,2 +journal of american studies of turkey,1 +journal of american-east asian relations,0 +journal of amino acids,1 +journal of analysis,0 +journal of analysis and applications,1 +journal of analytic theology,1 +journal of analytical & bioanalytical techniques,0 +journal of analytical and applied pyrolysis,1 +journal of analytical atomic spectrometry,1 +journal of analytical chemistry,0 +journal of analytical methods in chemistry,0 +journal of analytical oncology,0 +journal of analytical psychology,1 +journal of analytical science & technology,0 +journal of analytical toxicology,1 +journal of anatomy,2 +journal of ancient civilizations,1 +journal of ancient egyptian interconnections,1 +journal of ancient history,1 +journal of ancient judaism,1 +journal of ancient near eastern history,1 +journal of ancient near eastern religions,2 +journal of ancient topography,1 +journal of anesthesia,1 +journal of anesthesia and clinical research,0 +journal of anglican studies,1 +journal of anglo-italian studies,1 +journal of animal and feed sciences,1 +journal of animal and plant sciences,1 +journal of animal and veterinary advances,0 +journal of animal breeding and genetics,2 +journal of animal ecology,3 +journal of animal ethics,1 +"journal of animal law, ethics and one health",1 +journal of animal physiology and animal nutrition,1 +journal of animal science,2 +journal of animal science and biotechnology,1 +journal of animal science and technology,0 +journal of anime and manga studies,1 +journal of anthropological archaeology,3 +journal of anthropological research,2 +journal of anthropological sciences,1 +journal of antibiotics,1 +journal of antimicrobial chemotherapy,2 +journal of antitrust enforcement,1 +journal of antivirals & antiretrovirals,0 +journal of anxiety disorders,2 +journal of aoac international,1 +journal of apicultural research,1 +journal of apicultural science,1 +journal of apiproduct and apimedical science,1 +journal of applied accounting research,1 +journal of applied analysis,1 +journal of applied and computational mechanics,1 +journal of applied and industrial mathematics,1 +journal of applied animal research,1 +journal of applied animal welfare science,1 +journal of applied aquaculture,1 +journal of applied artificial intelligence,0 +journal of applied arts and health,0 +journal of applied behavior analysis,1 +journal of applied behavioral science,1 +journal of applied biobehavioral research,1 +journal of applied biology and biotechnology,1 +journal of applied biomaterials & functional materials,1 +journal of applied biomechanics,1 +journal of applied biomedicine,1 +journal of applied botany and food quality,1 +journal of applied business research,0 +journal of applied clinical medical physics,1 +journal of applied communication research,1 +journal of applied computing and information technology,0 +journal of applied corporate finance,1 +journal of applied crystallography,1 +journal of applied developmental psychology,1 +journal of applied ecology,3 +journal of applied econometrics,2 +journal of applied economic research,0 +journal of applied economics,1 +journal of applied electrochemistry,1 +journal of applied engineering sciences,0 +journal of applied entomology,1 +journal of applied finance and economic policy,0 +"journal of applied finance: theory, practice, education",1 +journal of applied fire science,1 +journal of applied fluid mechanics,0 +journal of applied genetics,1 +journal of applied geodesy,1 +journal of applied geophysics,1 +journal of applied gerontology,1 +journal of applied glycoscience,0 +journal of applied horticulture,1 +journal of applied ichthyology,1 +journal of applied journalism and media studies,1 +journal of applied learning and teaching,1 +journal of applied linguistics and applied literature : dynamics and advances,1 +journal of applied linguistics and language research,1 +journal of applied linguistics and lexicography,0 +journal of applied linguistics and professional practice,1 +journal of applied logic,1 +journal of applied management accounting research,0 +journal of applied management and entrepreneurship,1 +journal of applied mathematics,1 +journal of applied mathematics and computing,1 +journal of applied mathematics and decision sciences,0 +journal of applied mathematics and physics,0 +journal of applied mechanics and technical physics,1 +journal of applied mechanics: transactions of the asme,1 +journal of applied meteorology and climatology,1 +journal of applied microbiology,1 +journal of applied non-classical logics,1 +journal of applied nonlinear dynamics,0 +journal of applied operational research,1 +journal of applied oral science,1 +journal of applied packaging research,1 +journal of applied philosophy,2 +journal of applied phycology,1 +journal of applied physics,1 +journal of applied physiology,2 +journal of applied polymer science,1 +journal of applied poultry research,1 +journal of applied probability,1 +journal of applied probability and statistics,1 +journal of applied psychology,3 +journal of applied remote sensing,1 +journal of applied research,1 +journal of applied research and technology,0 +journal of applied research in higher education,1 +journal of applied research in intellectual disabilities,1 +journal of applied research in memory and cognition,1 +journal of applied sciences research,0 +journal of applied security research,1 +journal of applied social psychology,1 +journal of applied spectroscopy,1 +journal of applied sport psychology,1 +journal of applied statistical science,1 +journal of applied statistics,1 +journal of applied toxicology,1 +journal of applied youth studies,1 +journal of approximation theory,1 +journal of aquaculture & marine biology,0 +journal of aquatic animal health,1 +journal of aquatic food product technology,1 +journal of arabic and islamic studies,1 +journal of arabic linguistics tradition,0 +journal of arabic literature,2 +journal of arachnology,1 +journal of archaeological method and theory,3 +journal of archaeological research,3 +journal of archaeological science,3 +journal of archaeological science : reports,1 +journal of archaeology and education,0 +journal of architectural and planning research,2 +journal of architectural conservation,2 +journal of architectural education,1 +journal of architectural engineering,1 +journal of architecture,3 +journal of architecture and urbanism,1 +journal of archival organization,1 +journal of argumentation in context,1 +journal of arid environments,1 +journal of arid land,1 +journal of arizona history,0 +journal of arrhythmia,1 +journal of art historiography,1 +journal of art writing by students,0 +journal of arthroplasty,2 +journal of arthropod-borne diseases,1 +journal of articles in support of the null hypothesis,1 +journal of artificial general intelligence,1 +journal of artificial intelligence and soft computing research,0 +journal of artificial intelligence research,3 +journal of artificial organs,1 +journal of arts and communities,1 +journal of arts and humanities,0 +"journal of arts management, law, and society",3 +"journal of arts, design, and music",0 +journal of asia business studies,1 +journal of asia entrepreneurship and sustainability,1 +journal of asia pacific studies,1 +journal of asia tefl,1 +journal of asia-pacific biodiversity,1 +journal of asia-pacific business,1 +journal of asia-pacific entomology,1 +journal of asia-pacific pop culture,0 +journal of asia-pacific studies,0 +journal of asian american studies,1 +journal of asian and african studies,1 +journal of asian architecture and building engineering,1 +journal of asian business,1 +journal of asian ceramic societies,0 +journal of asian earth sciences,1 +journal of asian earth sciences x,1 +journal of asian economics,1 +journal of asian electric vehicles,0 +journal of asian history,3 +journal of asian natural products research,1 +journal of asian pacific communication,1 +journal of asian politics and history,1 +journal of asian public policy,1 +journal of asian scientific research,0 +journal of asian studies,3 +journal of asset management,1 +journal of assisted reproduction and genetics,1 +journal of asthma,1 +journal of asthma and allergy,1 +journal of astm international,1 +journal of astronomical history and heritage,1 +"journal of astronomical telescopes, instruments, and systems",1 +journal of astronomy and space sciences,1 +journal of astrophysics and astronomy,1 +journal of atherosclerosis and thrombosis,1 +journal of athletic enhancement,0 +journal of athletic training,1 +journal of atmospheric and oceanic technology,1 +journal of atmospheric and solar-terrestrial physics,1 +journal of atmospheric chemistry,1 +"journal of atomic, molecular and optical physics",1 +journal of atrial fibrillation,1 +journal of attention disorders,2 +journal of audiovisual translation,1 +journal of australian political economy,1 +journal of australian studies,1 +journal of austrian studies,2 +journal of autism,1 +journal of autism and developmental disorders,2 +journal of autoethnography,1 +journal of autoimmunity,2 +"journal of automata, languages and combinatorics",1 +journal of automated methods and management in chemistry,1 +journal of automated reasoning,2 +journal of automatic control,0 +journal of automation and control engineering,0 +journal of automation and information sciences,1 +"journal of automation, electronics and electrical engineering",0 +journal of autonomy and security studies,1 +journal of avant-garde studies,1 +journal of avian biology,2 +journal of avian medicine and surgery,1 +journal of aviation technology and engineering,1 +journal of awareness-based systems change,0 +journal of ayn rand studies,0 +journal of ayurveda and integrative medicine,1 +journal of back and musculoskeletal rehabilitation,1 +journal of bacteriology,1 +journal of balkan and near eastern studies,1 +journal of baltic science education,0 +journal of baltic studies,2 +journal of bamboo and rattan,1 +journal of band research,1 +journal of banking and finance,2 +journal of banking and financial economics,1 +journal of banking regulation,1 +journal of basic & clinical physiology & pharmacology,0 +journal of basic and applied sciences,0 +journal of basic and applied scientific research,0 +journal of basic microbiology,1 +journal of beckett studies,2 +journal of behavior therapy and experimental psychiatry,1 +journal of behavioral addictions,1 +journal of behavioral and applied management,1 +journal of behavioral and brain science,0 +journal of behavioral and experimental economics,1 +journal of behavioral and experimental finance,1 +journal of behavioral and social sciences,0 +journal of behavioral decision making,2 +journal of behavioral economics for policy,1 +journal of behavioral education,1 +journal of behavioral finance,1 +journal of behavioral health services and research,1 +journal of behavioral medicine,1 +journal of beijing college of politics and law,1 +journal of beliefs and values,1 +journal of benefit-cost analysis,1 +journal of berry research,1 +journal of bhutan studies,1 +journal of biblical literature,3 +journal of big data,1 +journal of big history,0 +journal of binocular vision and ocular motility,1 +journal of bio- and tribo-corrosion,1 +journal of bioactive and compatible polymers,1 +journal of biobased materials and bioenergy,0 +journal of biochemical and molecular toxicology,1 +journal of biochemical and pharmacological research,0 +journal of biochemistry,1 +journal of biodiversity management & forestry,0 +journal of bioeconomics,1 +journal of bioenergetics and biomembranes,1 +journal of bioengineering and biomedical science,0 +journal of bioethical inquiry,1 +journal of biogeography,2 +journal of bioinformatics and computational biology,1 +journal of biological chemistry,2 +journal of biological dynamics,1 +journal of biological education,1 +journal of biological engineering,1 +journal of biological inorganic chemistry,1 +journal of biological physics,1 +journal of biological regulators and homeostatic agents,0 +journal of biological research: thessaloniki,1 +journal of biological rhythms,1 +journal of biological systems,1 +journal of biologically active products from nature,1 +journal of biomaterials and nanobiotechnology,0 +journal of biomaterials and tissue engineering,0 +journal of biomaterials applications,1 +journal of biomaterials science: polymer edition,1 +journal of biomechanical engineering: transactions of the asme,1 +journal of biomechanics,2 +journal of biomedical engineering and biosciences,0 +journal of biomedical informatics,1 +journal of biomedical informatics x,0 +journal of biomedical materials research part a,1 +journal of biomedical materials research part b: applied biomaterials,1 +journal of biomedical nanotechnology,0 +journal of biomedical optics,2 +journal of biomedical photonics & engineering,0 +journal of biomedical physics and engineering,0 +journal of biomedical research & environmental sciences,0 +journal of biomedical science,2 +journal of biomedical science and engineering,0 +journal of biomedical semantics,1 +journal of biomedicine and biotechnology,1 +journal of biometrics & biostatistics,0 +"journal of biomimetics, biomaterials and biomedical engineering",0 +journal of biomolecular nmr,1 +journal of biomolecular screening,1 +journal of biomolecular structure and dynamics,1 +journal of biomolecular techniques,1 +journal of bionic engineering,1 +journal of biopharmaceutical statistics,1 +journal of biophotonics,1 +journal of bioremediation & biodegradation,0 +journal of bioresources and bioproducts,0 +journal of bioscience and bioengineering,1 +journal of biosciences,1 +journal of biosensors and bioelectronics,0 +journal of biosocial science,1 +journal of biotech research,0 +journal of biotechnology,1 +journal of biotechnology & biomaterials,0 +journal of biotechnology x,1 +journal of biourbanism,1 +journal of bisexuality,1 +journal of black psychology,1 +journal of black sexuality and relationships,0 +journal of black studies,1 +journal of bodywork and movement therapies,1 +journal of bone and joint surgery: american volume,3 +journal of bone and mineral metabolism,1 +journal of bone and mineral research,3 +journal of bone metabolism,1 +journal of bone oncology,1 +journal of borderlands studies,1 +journal of brand management,1 +journal of brand strategy,0 +journal of breast cancer,1 +journal of breath research,1 +journal of bridge engineering,1 +journal of british and irish innovative poetry,-1 +journal of british cinema and television,1 +journal of british studies,2 +journal of broadcasting and electronic media,2 +journal of bryology,1 +journal of buddhist ethics,1 +journal of building acoustics,1 +journal of building construction and planning research,0 +journal of building engineering,1 +journal of building material science,1 +journal of building performance simulation,1 +journal of building physics,2 +"journal of building survey, appraisal and valuation",0 +journal of burn care and research,1 +journal of business administration,0 +journal of business and behavioral sciences,0 +journal of business and economic statistics,3 +journal of business and economics,0 +journal of business and finance librarianship,1 +journal of business and industrial marketing,1 +journal of business and policy research,0 +journal of business and psychology,1 +journal of business and technical communication,1 +journal of business anthropology,1 +journal of business chemistry,1 +journal of business continuity and emergency planning,0 +journal of business cycle research,1 +journal of business economics,1 +journal of business economics and management,1 +journal of business ecosystems,1 +journal of business ethics,2 +journal of business ethics education,1 +journal of business finance and accounting,2 +journal of business law,2 +journal of business logistics,1 +journal of business management and economics,0 +journal of business market management,1 +journal of business models,1 +journal of business research,2 +journal of business strategy,1 +journal of business studies quarterly,0 +"journal of business systems, governance and ethics",1 +journal of business venturing,3 +journal of business venturing design,-1 +journal of business venturing insights,1 +"journal of business, communication and technology",1 +journal of business-to-business marketing,1 +"journal of cachexia, sarcopenia and muscle",2 +journal of camel practice and research,1 +journal of canadian petroleum technology,1 +journal of canadian studies : revue d'etudes canadiennes,2 +journal of cancer,1 +journal of cancer education,1 +journal of cancer epidemiology & prevention,1 +journal of cancer policy,1 +journal of cancer research & therapy,0 +journal of cancer research and clinical oncology,1 +journal of cancer research and therapeutics,1 +journal of cancer science & therapy,0 +journal of cancer science and clinical therapeutics,0 +journal of cancer survivorship,1 +journal of cancer therapeutics & research,0 +journal of cancer therapy,0 +journal of cannabis research,1 +journal of carbohydrate chemistry,1 +journal of carcinogenesis,1 +journal of carcinogenesis and mutagenesis,0 +journal of cardiac failure,1 +journal of cardiac surgery,1 +journal of cardiology,1 +journal of cardiology & clinical research,0 +journal of cardiology cases,0 +journal of cardiopulmonary rehabilitation and prevention,1 +journal of cardiothoracic and vascular anesthesia,1 +journal of cardiothoracic surgery,1 +journal of cardiovascular computed tomography,1 +journal of cardiovascular development and disease,0 +journal of cardiovascular electrophysiology,1 +journal of cardiovascular magnetic resonance,2 +journal of cardiovascular medicine,1 +journal of cardiovascular nursing,2 +journal of cardiovascular pharmacology,1 +journal of cardiovascular pharmacology and therapeutics,1 +journal of cardiovascular surgery,1 +journal of cardiovascular translational research,1 +journal of career assessment,2 +journal of career development,1 +journal of caribbean archaeology,1 +journal of case reports and medical images,0 +journal of case reports and studies,0 +journal of case reports in medicine,0 +journal of cases on information technology,1 +journal of casting & materials engineering,0 +journal of catalysis,3 +journal of cataract and refractive surgery,1 +journal of causal inference,1 +journal of cave and karst studies,1 +journal of cell biology,3 +journal of cell communication and signaling,1 +journal of cell death,1 +journal of cell science,2 +journal of cellular and molecular medicine,1 +journal of cellular automata,1 +journal of cellular biochemistry,1 +journal of cellular physiology,1 +journal of cellular plastics,1 +journal of celtic linguistics,2 +journal of central banking theory and practice,1 +journal of central nervous system disease,1 +journal of central south university,1 +journal of ceramic processing research,1 +journal of ceramic science and technology,0 +journal of cereal science,1 +journal of cerebral blood flow and metabolism,3 +journal of cetacean research and management,1 +journal of change management,1 +journal of chemical and engineering data,1 +journal of chemical biology,1 +journal of chemical crystallography,1 +journal of chemical ecology,1 +journal of chemical education,1 +journal of chemical engineering & process technology,0 +journal of chemical engineering of japan,1 +journal of chemical information and modeling,1 +journal of chemical metrology,0 +journal of chemical neuroanatomy,1 +journal of chemical physics,1 +journal of chemical research,1 +journal of chemical sciences,0 +journal of chemical technology and biotechnology,1 +journal of chemical technology and metallurgy,0 +journal of chemical theory and computation,2 +journal of chemical thermodynamics,1 +journal of cheminformatics,1 +journal of chemistry,1 +journal of chemistry and chemical engineering,0 +journal of chemistry and technologies,0 +journal of chemometrics,1 +journal of chemotherapy,1 +journal of child & adolescent trauma,1 +journal of child and adolescent behavior,0 +journal of child and adolescent mental health,1 +journal of child and adolescent psychiatric nursing,1 +journal of child and adolescent psychopharmacology,1 +journal of child and adolescent substance abuse,1 +journal of child and family studies,1 +journal of child health care,1 +journal of child language,3 +journal of child language acquisition and development,1 +journal of child neurology,1 +journal of child psychology and psychiatry,3 +journal of child psychotherapy,1 +journal of child sexual abuse,1 +journal of childhood studies,1 +"journal of childhood, education & society",1 +journal of children and media,1 +journal of children and poverty,1 +journal of childrens services,1 +journal of children´s orthopaedics,1 +journal of china and international relations,1 +journal of china tourism research,1 +journal of china universities of posts and telecommunications,0 +journal of chinese cinemas,1 +journal of chinese economics and business studies,1 +journal of chinese humanities,1 +journal of chinese linguistics,2 +journal of chinese linguistics : monograph series,0 +journal of chinese literature and culture,1 +journal of chinese overseas,1 +journal of chinese philosophy,1 +journal of chinese political science,1 +journal of chinese social and economic history,1 +journal of choice modelling,1 +journal of christian education,1 +journal of chromatographic science,1 +journal of chromatography a,1 +journal of chromatography b: analytical technologies in the biomedical and life sciences,1 +journal of chromatography open,1 +journal of church and state,2 +journal of cinema and media studies,3 +journal of circadian rhythms,1 +journal of circuits systems and computers,1 +journal of circulating biomarkers,0 +journal of civil & environmental engineering,0 +journal of civil engineering and architecture,0 +journal of civil engineering and construction technology,0 +journal of civil engineering and management,1 +journal of civil engineering and materials application,0 +journal of civil engineering research,0 +journal of civil society,1 +journal of civil structural health monitoring,0 +journal of classical analysis,0 +journal of classical sociology,1 +journal of classics teaching,1 +journal of classification,1 +journal of classroom interaction,1 +journal of clean energy technologies,0 +journal of cleaner production,2 +journal of climate,2 +journal of climatology,0 +journal of clinical & cellular immunology,0 +journal of clinical & experimental cardiology,0 +journal of clinical & experimental dermatology research,0 +journal of clinical & experimental ophthalmology,0 +journal of clinical & experimental pathology,0 +journal of clinical & translational endocrinology,1 +journal of clinical and diagnostic research,0 +journal of clinical and experimental dentistry,1 +journal of clinical and experimental neuropsychology,1 +journal of clinical and medical images case reports,0 +journal of clinical and translational pathology,0 +journal of clinical anesthesia,1 +journal of clinical apheresis,1 +journal of clinical biochemistry and nutrition,1 +journal of clinical case reports,0 +journal of clinical case reports and images,0 +journal of clinical child and adolescent psychology,2 +journal of clinical densitometry,1 +journal of clinical dentistry,1 +journal of clinical endocrinology and metabolism,3 +journal of clinical engineering,1 +journal of clinical epidemiology,3 +journal of clinical ethics,1 +journal of clinical gastroenterology,1 +journal of clinical gerontology and geriatrics,1 +journal of clinical gynecology and obstetrics,0 +journal of clinical hypertension,1 +journal of clinical immunology,2 +journal of clinical investigation,3 +journal of clinical laboratory analysis,1 +journal of clinical lipidology,1 +journal of clinical medicine,0 +journal of clinical microbiology,1 +journal of clinical monitoring and computing,1 +journal of clinical neurology,1 +journal of clinical neuromuscular disease,1 +journal of clinical neurophysiology,1 +journal of clinical neuroscience,1 +journal of clinical nursing,3 +journal of clinical oncology,3 +journal of clinical oncology and research,0 +journal of clinical orthodontics,1 +journal of clinical orthopaedics and trauma,0 +journal of clinical outcomes management,1 +journal of clinical pathology,1 +journal of clinical pediatric dentistry,1 +journal of clinical periodontology,3 +journal of clinical pharmacology,1 +journal of clinical pharmacy and therapeutics,1 +journal of clinical psychiatry,1 +journal of clinical psychology,1 +journal of clinical psychology in medical settings,1 +journal of clinical psychopharmacology,1 +journal of clinical research & bioethics,0 +journal of clinical respiratory diseases and care,0 +journal of clinical sleep medicine,1 +journal of clinical sport psychology,1 +journal of clinical trials,0 +journal of clinical ultrasound,1 +journal of clinical virology,1 +journal of cloud computing,1 +journal of cluster science,1 +journal of cme,1 +journal of co-operative organization and management,1 +journal of co-operative studies,0 +journal of co2 utilization,1 +journal of coastal conservation,1 +journal of coastal research,0 +journal of coatings technology and research,1 +journal of cognition,1 +journal of cognition and culture,1 +journal of cognition and development,1 +journal of cognitive and behavioral psychotherapies,1 +journal of cognitive education and psychology,1 +journal of cognitive engineering and decision making,1 +journal of cognitive enhancement,0 +journal of cognitive neuroscience,2 +journal of cognitive psychology,1 +journal of cognitive psychotherapy: an international quarterly,1 +journal of cognitive science,1 +journal of cold regions engineering,1 +journal of cold war studies,2 +journal of collective negotiations,1 +journal of college student development,1 +journal of college student psychotherapy,1 +"journal of college student retention: research, theory and practice",1 +journal of colloid and interface science,1 +journal of colonialism and colonial history,1 +journal of combat sports and martial arts,0 +journal of combinatorial designs,1 +journal of combinatorial optimization,1 +journal of combinatorial theory series a,3 +journal of combinatorial theory series b,2 +journal of combinatorics and number theory,1 +journal of commodity markets,1 +journal of commonwealth and comparative politics,1 +journal of commonwealth and postcolonial studies,1 +journal of communication,3 +journal of communication and computer,0 +journal of communication and religion,1 +journal of communication disorders,2 +"journal of communication disorders, deaf studies & hearing aids",0 +journal of communication in healthcare,1 +journal of communication inquiry,1 +journal of communication management,1 +journal of communication technology,1 +journal of communications,1 +journal of communications and information networks,0 +journal of communications and information sciences,1 +journal of communications and networks,1 +journal of communications software and systems,1 +journal of communications technology and electronics,1 +journal of community and applied social psychology,2 +journal of community archaeology and heritage,1 +journal of community genetics,1 +journal of community health,1 +journal of community health nursing,1 +journal of community informatics,1 +journal of community medicine & public health,0 +journal of community practice,1 +journal of community psychology,1 +journal of community safety & well-being,1 +journal of commutative algebra,1 +journal of comparative asian development,1 +journal of comparative economics,2 +journal of comparative effectiveness research,0 +journal of comparative family studies,1 +journal of comparative germanic linguistics,2 +journal of comparative law,1 +journal of comparative literature and aesthetics,0 +journal of comparative neurology,1 +journal of comparative pathology,1 +journal of comparative physiology a: neuroethology sensory neural and behavioral physiology,1 +"journal of comparative physiology b : biochemical, systemic, and environmental physiology",1 +journal of comparative policy analysis: research and practice,1 +journal of comparative politics,1 +journal of comparative psychology,1 +journal of comparative research in anthropology and sociology,1 +journal of comparative social work,1 +journal of competition law and economics,2 +journal of competitiveness,1 +journal of complementary & integrative medicine,1 +journal of complex analysis,0 +journal of complex networks,1 +journal of complexity,1 +journal of complexity in health sciences,1 +journal of composite materials,1 +journal of composites for construction,2 +journal of composites science,0 +journal of computational acoustics,1 +journal of computational analysis and applications,1 +journal of computational and applied mathematics,1 +journal of computational and graphical statistics,3 +journal of computational and nonlinear dynamics,1 +journal of computational and theoretical nanoscience,0 +journal of computational and theoretical transport,1 +journal of computational biology,1 +journal of computational chemistry,1 +journal of computational design and engineering,1 +journal of computational electronics,1 +journal of computational finance,1 +journal of computational geometry,1 +journal of computational information systems,1 +journal of computational interdisciplinary sciences,1 +journal of computational literary studies,0 +journal of computational mathematics,1 +journal of computational medicine,1 +journal of computational methods in sciences and engineering,1 +journal of computational neuroscience,1 +journal of computational physics,2 +journal of computational physics x,1 +journal of computational science,1 +journal of computational social science,1 +journal of computer and communications,0 +journal of computer and system sciences,3 +journal of computer and systems sciences international,1 +journal of computer applications in archaeology,1 +journal of computer assisted learning,2 +journal of computer assisted tomography,1 +"journal of computer chemistry, japan",0 +journal of computer engineering & information technology,0 +journal of computer graphics techniques,1 +journal of computer information systems,1 +journal of computer languages,1 +journal of computer networks and communications,1 +journal of computer science and technology,1 +journal of computer security,2 +journal of computer virology and hacking techniques,1 +journal of computer-aided design & computer graphics,0 +journal of computer-aided molecular design,1 +journal of computer-mediated communication,3 +journal of computerized adaptive testing,-1 +journal of computers,0 +journal of computers in education,1 +journal of computers in mathematics and science teaching,1 +journal of computing and information science in engineering,1 +journal of computing and information technology,1 +journal of computing in civil engineering,1 +journal of computing in higher education,1 +journal of conchology,1 +journal of concrete and applicable mathematics,1 +journal of condensed matter nuclear science,0 +journal of conflict and integration,1 +journal of conflict and security law,1 +journal of conflict archaeology,1 +journal of conflict resolution,3 +journal of conflict transformation,0 +journal of consciousness studies,1 +journal of conservation and museum studies,1 +journal of construction,0 +journal of construction engineering and management: asce,2 +"journal of construction engineering, technology and management",0 +journal of construction in developing countries,1 +journal of construction management,0 +journal of construction project management and innovation,0 +journal of constructional steel research,2 +journal of constructivist psychology,1 +journal of consulting and clinical psychology,3 +journal of consumer affairs,1 +journal of consumer behaviour,1 +journal of consumer culture,1 +journal of consumer ethics,1 +journal of consumer health on the internet,1 +journal of consumer marketing,1 +journal of consumer policy,1 +journal of consumer psychology,2 +journal of consumer research,3 +journal of contaminant hydrology,1 +journal of contemplative inquiry,1 +journal of contemporary accounting and economics,1 +journal of contemporary african studies,1 +journal of contemporary archaeology,1 +journal of contemporary asia,2 +journal of contemporary brachytherapy,1 +journal of contemporary central and eastern europe,1 +journal of contemporary china,1 +"journal of contemporary crime, harm, and ethics",1 +journal of contemporary criminal justice,1 +journal of contemporary dental practice,1 +journal of contemporary education theory & research,1 +journal of contemporary ethnography,2 +journal of contemporary european research,1 +journal of contemporary european studies,1 +journal of contemporary history,3 +journal of contemporary issues in education,-1 +journal of contemporary management,0 +journal of contemporary management issues,1 +journal of contemporary marketing science,0 +journal of contemporary mathematical analysis: armenian academy of sciences,1 +journal of contemporary medicine,0 +journal of contemporary physics: armenian academy of sciences,1 +journal of contemporary psychotherapy,1 +journal of contemporary religion,3 +journal of contemporary thought,1 +journal of contemporary water research and education,1 +journal of contextual behavioral science,1 +journal of contingencies and crisis management,1 +journal of continuing education in nursing,0 +journal of continuing education in the health professions,1 +journal of continuing higher education,1 +journal of contract law,1 +journal of contract management,0 +journal of control science and engineering,1 +"journal of control, automation and electrical systems",1 +journal of controlled release,3 +journal of controversial ideas,1 +journal of convention and event tourism,1 +journal of convex analysis,1 +journal of coordination chemistry,1 +journal of coptic studies,1 +journal of corpora and discourse studies,1 +journal of corporate citizenship,1 +journal of corporate finance,3 +journal of corporate law studies,2 +journal of corporate real estate,1 +journal of correctional education,1 +journal of corrosion science and engineering,1 +journal of cosmetic and laser therapy,1 +journal of cosmetic dermatology,1 +journal of cosmetic science,1 +journal of cosmology,0 +journal of cosmology and astroparticle physics,2 +journal of cost management,0 +journal of cotton science,1 +journal of counseling and development,2 +journal of counseling psychology,3 +journal of couple and relationship therapy,1 +journal of coupled systems and multiscale dynamics,0 +journal of cranio-maxillofacial surgery,1 +journal of craniofacial surgery,1 +journal of craniomandibular function,1 +journal of creating value,1 +journal of creative behavior,1 +journal of creative communications,1 +journal of creative industries and cultural studies,1 +journal of creative practices in language learning and teaching,1 +journal of creativity,0 +journal of credit risk,1 +journal of crime & justice,1 +journal of criminal justice,2 +journal of criminal justice and popular culture,1 +journal of criminal law,0 +journal of criminal law and criminology,1 +journal of criminal psychology,1 +"journal of criminological research, policy and practice",1 +journal of criminology,1 +journal of critical care,1 +journal of critical globalisation studies,1 +journal of critical incident analysis,0 +journal of critical infrastructure policy,1 +journal of critical mixed race studies,0 +journal of critical realism,1 +journal of critical thought & praxis,0 +journal of crohns and colitis,2 +journal of crop improvement,1 +journal of cross-cultural gerontology,1 +journal of cross-cultural psychology,2 +journal of crustacean biology,1 +journal of cryptographic engineering,1 +journal of cryptology,3 +journal of crystal growth,1 +journal of culinary science and technology,1 +journal of cultural analysis and social change,0 +journal of cultural analytics,1 +journal of cultural cognitive science,1 +journal of cultural economics,2 +journal of cultural economy,1 +journal of cultural geography,1 +journal of cultural heritage,3 +journal of cultural heritage management and sustainable development,1 +journal of cultural property conservation,1 +journal of cultural research in art education,0 +"journal of culture, society and development",0 +journal of cuneiform studies,1 +journal of current chinese affairs,1 +journal of current issues and research in advertising,1 +journal of curriculum & instruction,1 +journal of curriculum and pedagogy,1 +journal of curriculum and teaching,0 +journal of curriculum studies,3 +journal of curriculum theorizing,1 +journal of customer behaviour,1 +journal of cutaneous medicine and surgery,1 +journal of cutaneous pathology,1 +journal of cyber policy,1 +journal of cyber security and mobility,1 +journal of cyber security technology,1 +journal of cybersecurity,1 +journal of cybersecurity and privacy,0 +"journal of cybersecurity education, research & practice",0 +journal of cycling and micromobility research,0 +journal of cystic fibrosis,1 +journal of cytology,1 +journal of dairy research,1 +journal of dairy science,3 +journal of dance & somatic practices,1 +journal of dance education,2 +journal of data analysis and information processing,0 +journal of data and information science,1 +journal of data mining and digital humanities,1 +journal of data protection & privacy,1 +journal of data science,0 +journal of data science and intelligent systems,0 +"journal of data science, statistics, and visualisation",1 +journal of database management,1 +journal of deaf studies and deaf education,1 +journal of deafblind studies on communication,0 +journal of decision systems,1 +journal of defence studies,0 +journal of defense analytics and logistics,1 +journal of defense modeling and simulation,1 +journal of defense resources management,0 +journal of defense studies and resource management,0 +journal of deliberative democracy,1 +journal of democracy,0 +journal of democratic theory,0 +journal of demographic economics,1 +journal of dental education,1 +journal of dental hygiene,1 +journal of dental research,3 +"journal of dental science, oral and maxillofacial research",0 +journal of dental sciences,1 +journal of dentistry,2 +journal of dentistry and oral biology,0 +journal of dentistry and oral health (jdoh),0 +journal of dentistry for children,1 +journal of dentistry research,0 +journal of derivatives,1 +journal of derivatives and hedge funds,1 +journal of dermatological science,1 +journal of dermatological treatment,1 +journal of dermatology,1 +journal of design and textiles,0 +journal of design for resilience in architecture and planning,1 +journal of design for sustainable and environment,-1 +journal of design history,3 +journal of design research,1 +journal of design strategies,0 +journal of design thinking,1 +"journal of design, business and society",1 +journal of destination marketing and management,1 +journal of developing areas,1 +journal of developing societies,1 +journal of development economics,3 +journal of development economics and finance,0 +journal of development effectiveness,1 +journal of development studies,2 +journal of developmental and behavioral pediatrics,1 +journal of developmental and life course criminology,1 +journal of developmental and physical disabilities,1 +journal of developmental biology,0 +journal of developmental biology and tissue engineering,0 +journal of developmental entrepreneurship,1 +journal of developmental origins of health and disease,1 +journal of dharma,0 +journal of diabetes,1 +journal of diabetes and its complications,1 +journal of diabetes and metabolic disorders,1 +journal of diabetes and metabolism,0 +journal of diabetes investigation,1 +journal of diabetes mellitus,0 +journal of diabetes research,1 +journal of diabetes science and technology,1 +journal of diagnostic medical sonography,1 +journal of dialogue studies,1 +journal of didactics of philosophy,1 +journal of dietary supplements,1 +journal of difference equations and applications,1 +journal of differential equations,2 +journal of differential geometry,3 +journal of digestive diseases,1 +journal of digital humanities,0 +journal of digital information management,1 +journal of digital landscape architecture,1 +journal of digital learning in teacher education,1 +journal of digital media & interaction,1 +journal of digital media & policy,1 +journal of digital social research,1 +journal of disability & religion,1 +journal of disability policy studies,1 +journal of disaster research,1 +journal of discrete algorithms,1 +journal of discrete mathematical sciences & cryptography,1 +journal of dispersion science and technology,1 +journal of display technology,1 +journal of distance education,1 +journal of distributed systems and technologies,0 +journal of diversity in higher education,0 +journal of documentation,3 +journal of drug and alcohol research,0 +journal of drug assessment,1 +journal of drug delivery,1 +journal of drug delivery science and technology,1 +journal of drug education,1 +journal of drug issues,1 +journal of drug targeting,1 +journal of drugs in dermatology,1 +journal of dual diagnosis,1 +journal of dynamic behavior of materials,1 +journal of dynamic systems measurement and control: transactions of the asme,1 +journal of dynamical and control systems,1 +journal of dynamical systems and geometric theories,1 +journal of dynamics and differential equations,2 +journal of dynamics and games,1 +journal of e-business,0 +journal of e-government studies and best practices,0 +journal of e-health management,0 +journal of e-learning and higher education,0 +journal of e-learning and knowledge society,1 +journal of e.commerce and psychology,1 +journal of early adolescence,1 +journal of early childhood education research,1 +journal of early childhood literacy,2 +journal of early childhood research,1 +journal of early childhood teacher education,1 +journal of early christian history,1 +journal of early christian studies,3 +journal of early intervention,1 +journal of early modern christianity,1 +journal of early modern history,3 +journal of early modern studies,1 +journal of early modern studies,2 +journal of earth science,1 +journal of earth science and engineering,0 +journal of earth sciences and geotechnical engineering,1 +journal of earth system science,1 +journal of earthquake and tsunami,1 +journal of earthquake engineering,1 +journal of east asia and international law,1 +journal of east asian archaeology,1 +journal of east asian linguistics,2 +journal of east asian philosophy,1 +journal of east asian studies,1 +journal of east-european and asian studies,0 +journal of east-west business,1 +journal of east-west thought,1 +journal of eastern african studies,1 +journal of eastern caribbean studies,1 +journal of eastern christian studies,1 +journal of eastern europe research in business and economics,0 +journal of eastern mediterranean archaeology and heritage studies,1 +journal of eating disorders,1 +journal of ecclesiastical history,3 +journal of ecohumanism,1 +journal of ecohydraulics,1 +journal of ecological anthropology,1 +journal of ecological engineering,1 +journal of ecology,3 +journal of ecology and environment,1 +journal of econometric methods,1 +journal of econometrics,3 +journal of economic analysis,0 +journal of economic and administrative sciences,1 +journal of economic and social measurement,1 +journal of economic and social policy,1 +journal of economic asymmetries,1 +journal of economic behavior and organization,2 +journal of economic dynamics and control,2 +journal of economic education,1 +journal of economic entomology,1 +journal of economic geography,3 +journal of economic growth,2 +journal of economic history,3 +journal of economic inequality,2 +journal of economic interaction and coordination,1 +journal of economic issues,1 +journal of economic literature,3 +journal of economic methodology,1 +journal of economic perspectives,2 +journal of economic policy reform,1 +journal of economic psychology,1 +journal of economic research,0 +journal of economic sciences,0 +journal of economic structures,1 +journal of economic studies,1 +journal of economic surveys,1 +journal of economic theory,3 +journal of economics,1 +journal of economics and business,1 +journal of economics and finance,1 +journal of economics and management strategy,2 +journal of economics studies and research,0 +"journal of economics, business and management",0 +"journal of economics, race, and policy",0 +"journal of economics, theology and religion",1 +journal of ecotourism,1 +journal of ect,1 +journal of ecumenical studies,1 +journal of education,-1 +journal of education advancement & marketing,0 +journal of education and christian belief,1 +journal of education and development,0 +journal of education and health promotion,0 +journal of education and human development,0 +journal of education and learning,0 +journal of education and practice,0 +journal of education and research,1 +journal of education and training,0 +journal of education and training studies,0 +journal of education and work,2 +journal of education finance,1 +journal of education for business,1 +journal of education for international development,1 +journal of education for library and information science,1 +journal of education for life,1 +journal of education for multilingualism,0 +journal of education for students placed at risk,1 +journal of education for sustainable development,1 +journal of education for teaching,1 +journal of education in museums,1 +"journal of education in science, environment and health",1 +journal of education policy,3 +"journal of education policy, planning and administration",1 +"journal of education, culture and society",1 +"journal of education, language, and ideology",0 +"journal of education, psychology and social sciences",0 +"journal of education, society and behavioural science",0 +journal of educational administration,1 +journal of educational administration and history,1 +journal of educational and behavioral statistics,2 +journal of educational and developmental psychology,0 +journal of educational and psychological consultation,1 +journal of educational and social research,0 +journal of educational change,2 +journal of educational computing research,1 +journal of educational data mining,1 +journal of educational evaluation for health professions,1 +journal of educational issues,0 +"journal of educational media, memory, and society",1 +journal of educational multimedia and hypermedia,1 +journal of educational psychology,3 +journal of educational research,2 +journal of educational technology systems,1 +"journal of educational, health and community psychology",0 +journal of egyptian archaeology,3 +journal of elasticity,1 +journal of elastomers and plastics,1 +journal of elder abuse and neglect,1 +"journal of elections, public opinion, and parties",2 +journal of electrical and computer engineering,1 +journal of electrical engineering,0 +journal of electrical engineering and technology,1 +journal of electrical systems,0 +journal of electroanalytical chemistry,1 +journal of electrocardiology,1 +journal of electroceramics,1 +journal of electrochemical science and engineering,1 +journal of electrochemical science and technology,1 +journal of electromagnetic analysis and applications,0 +journal of electromagnetic engineering and science,0 +journal of electromagnetic waves and applications,1 +journal of electromyography and kinesiology,2 +journal of electron spectroscopy and related phenomena,1 +journal of electronic banking systems,0 +journal of electronic commerce in organizations,1 +journal of electronic commerce research,1 +journal of electronic gaming and esports,0 +journal of electronic imaging,1 +journal of electronic materials,1 +journal of electronic packaging,1 +journal of electronic publishing,1 +journal of electronic research and application,0 +journal of electronic science and technology,0 +journal of electronic testing: theory and applications,1 +journal of electronics and electrical engineering,0 +journal of electronics and information technology,1 +journal of electrostatics,1 +journal of elementology,1 +journal of embeded computing,1 +journal of embodied research,1 +journal of emergency medicine,1 +journal of emergency nursing,1 +journal of emerging and rare diseases,0 +journal of emerging market finance,1 +journal of emerging sport studies,0 +journal of emerging technologies in accounting,1 +journal of emerging technologies in web intelligence,0 +journal of emerging trends in computing and information sciences,0 +journal of emerging trends in marketing and management,0 +journal of emotional and behavioral disorders,1 +journal of empirical finance,2 +journal of empirical generalisations in marketing science,1 +journal of empirical legal studies,1 +journal of empirical research on human research ethics,1 +journal of empirical theology,2 +journal of employment counseling,1 +journal of enabling technologies,1 +journal of endocrinological investigation,1 +journal of endocrinology,1 +journal of endodontics,2 +journal of endometriosis and pelvic pain disorders,1 +journal of endourology,1 +journal of endovascular resuscitation and trauma management,1 +journal of endovascular therapy,1 +journal of energetic materials,1 +journal of energy,0 +journal of energy and development,1 +journal of energy and natural resource,0 +journal of energy and natural resources law,2 +journal of energy and power engineering,0 +journal of energy and power technology,0 +journal of energy chemistry,1 +journal of energy engineering: asce,1 +journal of energy history,1 +journal of energy in southern africa,1 +journal of energy markets,1 +journal of energy resources technology: transactions of the asme,1 +journal of energy storage,2 +journal of engineered fibers and fabrics,1 +journal of engineering,1 +journal of engineering and applied science,0 +journal of engineering and applied sciences,0 +journal of engineering and science research,0 +journal of engineering and technology management,1 +journal of engineering design,1 +journal of engineering education,2 +journal of engineering for gas turbines and power: transactions of the asme,1 +journal of engineering materials and technology: transactions of the asme,1 +journal of engineering mathematics,1 +journal of engineering mechanics: asce,1 +journal of engineering physics and thermophysics,1 +journal of engineering science & technology,1 +journal of engineering science and technology review,1 +journal of engineering thermophysics,0 +"journal of engineering, design and technology",1 +journal of english and germanic philology,3 +journal of english as a lingua franca,1 +journal of english for academic purposes,2 +journal of english for research publication purposes,0 +journal of english linguistics,3 +journal of english phonetic society of japan,1 +journal of english studies,1 +journal of english-medium instruction,0 +journal of enhanced heat transfer,1 +journal of enterprise architecture,0 +journal of enterprise information management,1 +journal of enterprise resource planning studies,0 +journal of enterprise transformation,1 +journal of enterprising communities,1 +journal of enterprising culture,1 +journal of entomological science,1 +journal of entrepreneurial and organizational diversity,0 +journal of entrepreneurship,1 +journal of entrepreneurship and public policy,1 +journal of entrepreneurship education,0 +journal of entrepreneurship in emerging economies,1 +"journal of entrepreneurship, business and economics",0 +"journal of entrepreneurship, management and innovation",1 +journal of entrepreneurship: research & practice,0 +journal of environment and development,1 +journal of environmental & earth sciences,1 +journal of environmental accounting and management,1 +journal of environmental and analytical toxicology,0 +journal of environmental and engineering geophysics,1 +journal of environmental and occupational science,1 +journal of environmental assessment policy and management,1 +journal of environmental biology,1 +journal of environmental chemical engineering,1 +journal of environmental economics and management,3 +journal of environmental economics and policy,1 +journal of environmental education,2 +journal of environmental engineering and landscape management,1 +journal of environmental engineering and science,1 +journal of environmental engineering: asce,1 +journal of environmental health,1 +journal of environmental health research,1 +journal of environmental health science & engineering,0 +journal of environmental horticulture,1 +journal of environmental hydrology,0 +journal of environmental informatics,1 +journal of environmental informatics letters,1 +journal of environmental law,3 +journal of environmental law & policy,1 +journal of environmental management,2 +journal of environmental media,0 +journal of environmental pathology toxicology and oncology,1 +journal of environmental planning and management,1 +journal of environmental policy and planning,2 +journal of environmental protection,0 +journal of environmental protection and ecology,0 +journal of environmental psychology,3 +journal of environmental quality,1 +journal of environmental radioactivity,1 +journal of environmental science and engineering,0 +journal of environmental science and health part a: toxic/hazardous substances and environmental engineering,1 +journal of environmental science and health part b: pesticides food contaminants and agricultural wastes,1 +journal of environmental science and health part c: environmental carcinogenesis and ecotoxicology reviews,1 +journal of environmental science and management,1 +journal of environmental sciences: china,1 +journal of environmental studies and sciences,1 +journal of environmental systems,1 +journal of enzyme inhibition and medicinal chemistry,1 +journal of epidemiological research,0 +journal of epidemiology,1 +journal of epidemiology and community health,3 +journal of epidemiology and global health,1 +journal of epileptology,1 +journal of equine science,1 +journal of equine veterinary science,1 +journal of equity,1 +journal of ergonomics,0 +journal of escience librarianship,1 +journal of essential oil research,1 +journal of essential oil-bearing plants,1 +journal of esthetic and restorative dentistry,1 +journal of ethics,2 +journal of ethics and legal technologies,-1 +journal of ethics and social philosophy,2 +journal of ethics in entrepreneurship and technology,1 +journal of ethiopian law,0 +"journal of ethnic and cultural diversity in social work: innovations in theory, research and practice",1 +journal of ethnic and cultural studies,1 +journal of ethnic and migration studies,3 +journal of ethnic foods,1 +journal of ethnicity in criminal justice,1 +journal of ethnicity in substance abuse,1 +journal of ethnobiology,1 +journal of ethnobiology and ethnomedicine,2 +journal of ethnopharmacology,1 +journal of ethology,1 +journal of eu research in business,0 +journal of eukaryotic microbiology,1 +journal of eurasian research,1 +journal of eurasian studies,1 +journal of euromarketing,1 +journal of european competition law and practice,2 +journal of european economic history,1 +journal of european integration,1 +journal of european integration history,2 +journal of european periodical studies,1 +journal of european popular culture,1 +journal of european psychology students,1 +journal of european public policy,3 +journal of european real estate research,1 +journal of european social policy,3 +journal of european studies,1 +journal of european television history and culture,1 +journal of european tort law,1 +journal of evaluation in clinical practice,1 +journal of evidence-based dental practice,1 +journal of evidence-based medicine,1 +journal of evidence-based social work,1 +journal of evolution and technology,1 +journal of evolution equations,1 +journal of evolutionary biochemistry and physiology,1 +journal of evolutionary biology,2 +journal of evolutionary economics,1 +journal of evolutionary psychology,1 +journal of evolutionary studies in business,-1 +journal of excellence in sales,-1 +journal of excipients and food chemicals,0 +journal of exercise physiology online,1 +journal of exercise rehabilitation,1 +journal of exercise science and fitness,1 +journal of exotic pet medicine,1 +journal of experimental agriculture international,1 +journal of experimental and clinical cancer research,2 +journal of experimental and theoretical artificial intelligence,1 +journal of experimental and theoretical physics,1 +journal of experimental biology,2 +journal of experimental botany,2 +journal of experimental child psychology,1 +journal of experimental criminology,1 +journal of experimental education,2 +journal of experimental marine biology and ecology,1 +journal of experimental medicine,3 +journal of experimental nanoscience,1 +journal of experimental orthopaedics,1 +journal of experimental pharmacology,1 +journal of experimental political science,1 +journal of experimental psychology: animal behavior processes,1 +journal of experimental psychology: applied,1 +journal of experimental psychology: general,3 +journal of experimental psychology: human perception and performance,2 +journal of experimental psychology: learning memory and cognition,2 +journal of experimental social psychology,2 +journal of experimental therapeutics and oncology,1 +journal of experimental zoology a,1 +journal of experimental zoology part a: ecological genetics and physiology,1 +journal of experimental zoology part b: molecular and developmental evolution,1 +journal of expertise,1 +journal of exposure science and environmental epidemiology,1 +journal of extension,1 +journal of extracellular biology,1 +journal of extracellular vesicles,2 +journal of extreme anthropology,1 +journal of extreme events,1 +journal of eye movement research,1 +journal of facade design and engineering,0 +journal of facilities management,1 +journal of faculty and staff development in higher education,0 +journal of family and community medicine,0 +journal of family and consumer sciences,1 +journal of family and consumer sciences education,1 +journal of family and economic issues,1 +journal of family business management,1 +journal of family business strategy,1 +journal of family communication,1 +journal of family history,2 +journal of family issues,1 +journal of family medicine and primary care,1 +journal of family nursing,2 +journal of family planning and reproductive health care,1 +journal of family practice,1 +journal of family psychology,2 +journal of family research,1 +journal of family social work,1 +journal of family studies,1 +journal of family theory & review,-1 +journal of family therapy,1 +journal of family violence,1 +journal of fashion marketing and management,1 +journal of fashion technology & textile engineering,0 +journal of feline medicine and surgery,1 +journal of feline medicine and surgery open reports,1 +journal of feminist family therapy,1 +journal of feminist studies in religion,2 +journal of field archaeology,2 +journal of field ornithology,1 +journal of field robotics,2 +journal of film and video,1 +journal of film music,1 +journal of finance,3 +journal of finance and data science,1 +journal of finance and economics,0 +journal of finance and management in public services,1 +journal of finance case research,1 +journal of financial and quantitative analysis,3 +journal of financial crime,1 +journal of financial econometrics,1 +journal of financial economic policy,1 +journal of financial economics,3 +journal of financial education,0 +journal of financial intermediation,3 +journal of financial literacy and wellbeing,0 +journal of financial management and accounting,0 +journal of financial management markets and institutions,1 +journal of financial management of property and construction,0 +journal of financial markets,2 +journal of financial planning,0 +journal of financial regulation and compliance,1 +journal of financial reporting & accounting,1 +journal of financial research,1 +journal of financial services marketing,1 +journal of financial services research,2 +journal of financial stability,2 +journal of financial studies,0 +journal of financial studies and research,0 +journal of financial therapy,1 +journal of finnish studies,2 +journal of fire protection engineering,1 +journal of fire sciences,1 +journal of fish and wildlife management,0 +journal of fish biology,1 +journal of fish diseases,1 +journal of fitness research,0 +journal of fixed income,1 +journal of fixed point theory and applications,0 +journal of flood risk management,1 +journal of florida studies,0 +journal of flow chemistry,1 +journal of fluency disorders,2 +"journal of fluid flow, heat and mass transfer",0 +journal of fluid mechanics,3 +journal of fluids and structures,1 +journal of fluids engineering: transactions of the asme,1 +journal of fluorescence,1 +journal of fluorine chemistry,1 +journal of folklore research,3 +journal of food & nutritional disorders,0 +journal of food agriculture and environment,0 +journal of food and drug analysis,0 +journal of food and nutrition research,1 +journal of food bioactives,0 +journal of food biochemistry,1 +journal of food chemistry & nanotechnology,0 +journal of food composition and analysis,1 +journal of food engineering,1 +journal of food lipids,1 +journal of food measurement and characterization,1 +journal of food process engineering,1 +journal of food processing and beverages,0 +journal of food processing and preservation,1 +journal of food products marketing,1 +journal of food protection,1 +journal of food quality,1 +journal of food safety,1 +journal of food safety and hygiene,0 +journal of food science,1 +journal of food science and technology: mysore,1 +journal of food technology,0 +journal of food technology in africa,1 +journal of foodservice business research,1 +journal of foodservice management and education,1 +journal of foot and ankle research,1 +journal of foot and ankle surgery,1 +journal of foraminiferal research,1 +journal of forecasting,1 +journal of foreign language education and technology,0 +journal of foreign language teaching and translation studies,0 +"journal of foreign languages, cultures & civilizations",0 +journal of forensic accounting research,1 +journal of forensic and legal medicine,1 +journal of forensic nursing,1 +journal of forensic practice,1 +journal of forensic psychiatry and psychology,1 +journal of forensic psychology research and practice,1 +journal of forensic research,0 +journal of forensic sciences,1 +journal of forest business research,0 +journal of forest economics,1 +journal of forest planning,0 +journal of forest research,1 +journal of forest science,1 +journal of forestry,1 +journal of forestry research,1 +journal of fourier analysis and applications,2 +journal of fractal geometry,1 +journal of fractional calculus and application,0 +journal of frailty and aging,1 +"journal of frailty, sarcopenia and falls",0 +journal of french language studies,3 +journal of freshwater ecology,1 +journal of friction and wear,1 +journal of frontiers in construction engineering,0 +journal of fuel cell science and technology,1 +journal of function spaces,0 +journal of function spaces and applications,1 +journal of functional analysis,2 +journal of functional and logic programming,1 +journal of functional biomaterials,0 +journal of functional foods,2 +journal of functional morphology and kinesiology,0 +journal of functional programming,2 +journal of fundamentals of renewable energy and applications,0 +journal of fungi,0 +journal of further and higher education,1 +journal of fusion energy,1 +journal of futures markets,2 +"journal of futures studies: epistemology, methods, applied and alternative futures",1 +journal of gambling issues,1 +journal of gambling studies,1 +journal of games criticism,1 +journal of gaming and virtual worlds,1 +journal of gang research,1 +journal of gastroenterology,2 +journal of gastroenterology and hepatology,1 +journal of gastrointestinal and liver diseases,1 +journal of gastrointestinal cancer,0 +journal of gastrointestinal oncology,1 +journal of gastrointestinal surgery,1 +journal of gastronomy and tourism,1 +journal of gay and lesbian politics,1 +journal of gay and lesbian social services,1 +journal of gemmology,1 +journal of gender studies,2 +journal of gender-based violence,1 +journal of gene medicine,1 +journal of general and applied microbiology,1 +journal of general education,1 +journal of general internal medicine,1 +journal of general management,1 +journal of general physiology,2 +journal of general plant pathology,1 +journal of general practice,0 +journal of general psychology,1 +journal of general virology,1 +journal of genetic counseling,1 +journal of genetic engineering and biotechnology,0 +journal of genetic psychology,1 +journal of genetic syndromes & gene therapy,0 +journal of genetics,1 +journal of genetics and cell biology,0 +journal of genetics and genome research,1 +journal of genetics and genomics,1 +journal of genocide research,1 +journal of geochemical exploration,1 +journal of geodesy,2 +journal of geodetic science,1 +journal of geodynamics,1 +journal of geographic information system,0 +journal of geographical sciences,1 +journal of geographical systems,1 +journal of geography,1 +journal of geography in higher education,1 +"journal of geography, environment and earth science international",1 +"journal of geography, politics and society",1 +journal of geology,1 +journal of geometric analysis,2 +journal of geometric mechanics,1 +journal of geometry,1 +journal of geometry and physics,1 +journal of geophysical research : atmospheres,2 +journal of geophysical research : biogeosciences,2 +journal of geophysical research : earth surface,2 +journal of geophysical research : oceans,1 +journal of geophysical research : planets,1 +journal of geophysical research : solid earth,2 +journal of geophysical research : space physics,2 +journal of geophysics and engineering,1 +journal of geoscience education,1 +journal of geosciences,1 +journal of geosciences and geomatics,0 +journal of geotechnical and geoenvironmental engineering,2 +journal of geotechnical and transportation engineering,0 +journal of geriatric cardiology,1 +journal of geriatric oncology,0 +journal of geriatric physical therapy,1 +journal of geriatric psychiatry and neurology,1 +journal of germanic linguistics,1 +journal of gerontological nursing,1 +journal of gerontological social work,1 +journal of gerontology & geriatric research,0 +journal of ginseng research,1 +journal of glaciology,1 +journal of glass studies,2 +journal of glaucoma,1 +journal of global academic institute education & social sciences,0 +journal of global antimicrobial resistance,1 +journal of global buddhism,1 +journal of global business and technology,0 +journal of global business insights,1 +journal of global catholicism,1 +journal of global education and research,0 +journal of global entrepreneurship research,1 +journal of global ethics,1 +journal of global fashion marketing,0 +journal of global health,1 +journal of global history,3 +journal of global information management,1 +journal of global information technology management,1 +journal of global marketing,1 +journal of global mass communication,1 +journal of global mobility,1 +journal of global operations and strategic sourcing,1 +journal of global optimization,3 +journal of global resarch of computer science,0 +journal of global research in education and social science,0 +journal of global resources,0 +journal of global responsibility,1 +journal of global scholars of marketing science,0 +journal of global security studies,1 +journal of global slavery,1 +journal of global sport management,1 +journal of global strategic management,0 +journal of governance and regulation,0 +journal of government and civil society,1 +journal of governmental & nonprofit accounting,1 +journal of graph algorithms and applications,1 +journal of graph theory,1 +journal of graphic novels and comics,1 +journal of graphic technology,1 +journal of great lakes research,1 +journal of greco-roman christianity and judaism,0 +journal of greco-roman studies,1 +journal of greek archaeology,1 +journal of greek linguistics,2 +journal of green building,1 +journal of grey system,0 +journal of grid computing,1 +journal of groundwork cases and faculty of judgement,0 +journal of group theory,1 +journal of groups in addiction & recovery,1 +journal of guangxi normal university : philosophy and social sciences edition,0 +journal of guidance control and dynamics,2 +journal of gynecologic oncology,1 +journal of gynecologic surgery,1 +journal of gynecology obstetrics and human reproduction,1 +journal of hand and microsurgery,0 +journal of hand surgery global online,1 +journal of hand surgery: american volume,1 +journal of hand surgery: european volume,1 +journal of hand therapy,1 +journal of happiness studies,2 +journal of harbin institute of technology,0 +journal of hard tissue biology,1 +journal of hazardous materials,3 +journal of hazardous materials advances,1 +"journal of hazardous, toxic and radioactive waste",1 +journal of head and neck surgery,1 +journal of head trauma rehabilitation,2 +journal of headache and pain,2 +journal of health administration education,1 +journal of health and social behavior,2 +journal of health and social sciences,1 +journal of health care for the poor and underserved,1 +journal of health communication,2 +journal of health development,0 +journal of health economics,3 +journal of health informatics in africa,0 +journal of health informatics in developing countries,1 +journal of health management,1 +journal of health organization and management,1 +journal of health politics policy and law,1 +journal of health population and nutrition,1 +journal of health psychology,1 +journal of health science,0 +journal of health science,1 +journal of health services research and policy,1 +journal of healthcare informatics research,1 +journal of healthcare information management,1 +journal of healthcare management,1 +journal of healthcare risk management,0 +journal of heart and lung transplantation,2 +journal of heart valve disease,1 +journal of hebrew scriptures,2 +journal of hellenic studies,3 +journal of helminthology,1 +journal of hematology,0 +journal of hematology and oncology,2 +journal of hepato-biliary-pancreatic sciences,1 +journal of hepatocellular carcinoma,1 +journal of hepatology,3 +"journal of herbs, spices and medicinal plants",1 +journal of heredity,1 +journal of heritage tourism,1 +journal of herpetology,1 +journal of heterocyclic chemistry,1 +journal of heuristics,2 +journal of high energy astrophysics,1 +journal of high energy physics,3 +"journal of high energy physics, gravitation and cosmology",0 +journal of high speed networks,1 +journal of high technology law,0 +journal of high technology management research,1 +journal of higher education,3 +journal of higher education outreach and engagement,0 +journal of higher education policy and management,1 +journal of higher education theory and practice,0 +journal of hindu studies,1 +journal of histochemistry and cytochemistry,1 +journal of historical geography,1 +journal of historical linguistics,2 +journal of historical network research,1 +journal of historical political economy,1 +journal of historical pragmatics,2 +journal of historical research in marketing,1 +journal of historical sociolinguistics,2 +journal of historical sociology,0 +journal of historical studies,1 +journal of histotechnology,1 +journal of hiv/aids and social services,1 +journal of holistic nursing: official journal of the american holistic nurses association,1 +journal of holy land and palestine studies,0 +journal of home economics research,1 +journal of home language research,1 +journal of homeland security and emergency management,1 +journal of homosexuality,1 +journal of horticultural research,0 +journal of horticultural science and biotechnology,1 +journal of horticultural science and research,0 +journal of hospice and palliative nursing,1 +journal of hospital administration,0 +journal of hospital infection,1 +journal of hospital librarianship,1 +journal of hospital medicine,1 +journal of hospitality and tourism,0 +journal of hospitality and tourism cases,0 +journal of hospitality and tourism education,1 +journal of hospitality and tourism insights,0 +journal of hospitality and tourism management,1 +journal of hospitality and tourism research,1 +journal of hospitality and tourism technology,1 +journal of hospitality application and research,1 +journal of hospitality financial management,1 +journal of hospitality leisure sport and tourism education,1 +journal of hospitality management and tourism,0 +journal of hospitality marketing and management,1 +journal of hotel and business management,0 +journal of housing and the built environment,1 +journal of housing economics,1 +journal of housing for the elderly,1 +journal of housing research,1 +journal of huazhong university of science and technology-medical sciences,1 +journal of human and work management,0 +journal of human behavior in the social environment,1 +journal of human capital,2 +journal of human development and capabilities,1 +journal of human ergology,1 +journal of human evolution,2 +journal of human genetics,1 +journal of human growth and development,0 +journal of human hypertension,1 +journal of human kinetics,1 +journal of human lactation,1 +journal of human movement studies,1 +journal of human nutrition and dietetics,1 +journal of human performance in extreme environments,1 +journal of human reproductive sciences,1 +journal of human resources,2 +journal of human resources in hospitality and tourism,1 +journal of human resources management research,0 +journal of human rights,1 +journal of human rights and social work,0 +journal of human rights and the environment,1 +journal of human rights practice,1 +journal of human security,1 +journal of human sport and exercise,1 +journal of human subjectivity,1 +journal of human trafficking,1 +"journal of human trafficking, enslavement and conflict-related sexual violence",1 +journal of human values,1 +journal of human-robot interaction,1 +journal of human-technology relations,0 +journal of humanistic counseling,1 +journal of humanistic mathematics,1 +journal of humanistic psychology,1 +journal of humanitarian affairs,1 +journal of humanitarian logistics and supply chain management,1 +journal of hunger & environmental nutrition,0 +journal of huntington's disease,1 +journal of hydraulic engineering: asce,2 +journal of hydraulic research,1 +journal of hydro-environment research,1 +journal of hydrodynamics,1 +journal of hydroinformatics,1 +journal of hydrologic engineering,1 +journal of hydrology,3 +journal of hydrology : regional studies,1 +journal of hydrology and hydromechanics,1 +journal of hydrology new zealand,0 +journal of hydrology x,1 +journal of hydrometeorology,1 +journal of hygienic engineering and design,0 +journal of hymenoptera research,1 +journal of hyperbolic differential equations,1 +journal of hypertension,1 +journal of iberian and latin american studies,1 +journal of iberian archaeology,1 +journal of iberian geology,1 +journal of ibero-romance creoles,1 +journal of ichthyology,1 +journal of ict standardisation,1 +journal of illustration,1 +journal of image and graphics,1 +journal of imagery research in sport and physical activity,1 +journal of imaging,0 +journal of imaging informatics in medicine,1 +journal of imaging science and technology,1 +journal of immersion and content-based language education,1 +journal of immigrant and minority health,1 +journal of immigrant and refugee studies,1 +journal of immune based therapies and vaccines,1 +journal of immunoassay and immunochemistry,1 +journal of immunological methods,1 +journal of immunology,2 +journal of immunology research,1 +journal of immunotherapy,1 +journal of immunotoxicology,1 +journal of impact and esg investing,0 +journal of imperial and commonwealth history,2 +journal of inclusion phenomena and macrocyclic chemistry,1 +journal of inclusive cities and built environment,1 +journal of income distribution,1 +journal of indian business research,1 +journal of indian philosophy,1 +journal of indian philosophy and religion,2 +journal of indian society of pedodontics and preventive dentistry,0 +journal of individual differences,1 +journal of indo-european studies,2 +journal of industrial and engineering chemistry,1 +journal of industrial and management optimization,1 +journal of industrial and production engineering,1 +journal of industrial ecology,2 +journal of industrial economics,2 +journal of industrial engineering and management,1 +journal of industrial engineering international,1 +journal of industrial history,1 +journal of industrial information integration,2 +journal of industrial microbiology and biotechnology,1 +journal of industrial relations,1 +journal of industrial textiles,1 +"journal of industry, competition and trade",1 +journal of inequalities and applications,1 +journal of inequalities in pure and applied mathematics,1 +"journal of infant, child, and adolescent psychotherapy",1 +journal of infection,2 +journal of infection and chemotherapy,1 +journal of infection and public health,1 +journal of infection in developing countries,0 +journal of infectious diseases,2 +journal of inflammation research,1 +journal of inflammation: london,1 +journal of information and computational science,1 +journal of information and knowledge,0 +journal of information and knowledge management,1 +journal of information and optimization sciences,1 +journal of information and organizational sciences,0 +journal of information and telecommunication,1 +journal of information assurance and cybersecurity,0 +journal of information communication and ethics in society,1 +journal of information ethics,1 +journal of information literacy,1 +journal of information policy,1 +journal of information privacy and security,1 +journal of information processing,0 +journal of information science,3 +journal of information science and engineering,1 +journal of information science theory and practice,1 +journal of information security,0 +journal of information security and applications,1 +journal of information system and technology management,0 +journal of information systems,1 +journal of information systems and technology management,1 +journal of information systems education,1 +journal of information technology,3 +journal of information technology & software engineering,0 +journal of information technology and politics,1 +journal of information technology cases and applications,1 +journal of information technology education: innovations in practice,1 +journal of information technology education: research,1 +journal of information technology in construction,1 +journal of information technology management,1 +journal of information technology research,0 +journal of information technology teaching cases,1 +journal of information warfare,1 +"journal of information, information technology and organizations",0 +"journal of information, intelligence and knowledge",0 +journal of informetrics,3 +journal of infrared and millimeter waves,1 +"journal of infrared, millimeter, and terahertz waves",1 +journal of infrastructure development,0 +journal of infrastructure preservation and resilience,1 +journal of infrastructure systems,1 +journal of infusion nursing,1 +journal of inherited metabolic disease,1 +journal of injury and violence research,0 +journal of inklings studies,1 +journal of innate immunity,1 +journal of inner asian art and archaeology,1 +journal of innovation and business best practices,0 +journal of innovation and entrepreneurship,1 +journal of innovation and knowledge,1 +journal of innovation economics,1 +journal of innovation in digital ecosystems,0 +journal of innovation management,1 +journal of innovation management in small and medium enterprise,0 +journal of innovative optical health sciences,1 +journal of inorganic and organometallic polymers and materials,1 +journal of inorganic biochemistry,1 +journal of inorganic materials,1 +journal of insect behavior,1 +journal of insect biodiversity and systematics,1 +journal of insect biotechnology and sericology,1 +journal of insect conservation,1 +journal of insect physiology,1 +journal of insect science,1 +journal of insects as food and feed,1 +journal of inspiration economy,0 +journal of institutional and theoretical economics-zeitschrift fur die gesamte staatswissenschaft,1 +journal of institutional economics,1 +journal of instructional psychology,1 +journal of instrumentation,1 +journal of insulin resistance,0 +journal of insurance and financial management,0 +journal of integer sequences,1 +journal of integral equations and applications,1 +journal of integrated care,1 +journal of integrated design and process science,1 +journal of integrated omics,1 +journal of integrative agriculture,1 +journal of integrative environmental sciences,1 +journal of integrative neuroscience,1 +journal of integrative plant biology,1 +journal of intellectual and developmental disability,1 +journal of intellectual capital,1 +journal of intellectual disabilities,1 +journal of intellectual disability research,2 +journal of intellectual property law and practice,1 +journal of intellectual property rights,1 +"journal of intellectual property, information technology and electronic commerce law",2 +journal of intelligence,0 +journal of intelligence history,1 +journal of intelligence studies in business,1 +journal of intelligent and fuzzy systems,1 +journal of intelligent and robotic systems,2 +journal of intelligent computing,0 +journal of intelligent information systems,1 +journal of intelligent manufacturing,2 +journal of intelligent material systems and structures,1 +journal of intelligent systems,1 +journal of intelligent systems and internet of things,1 +journal of intelligent transportation systems,1 +journal of intensive care,1 +journal of intensive care medicine,1 +journal of intensive medicine,1 +journal of interaction science,1 +journal of interactional research in communication disorders,1 +journal of interactive advertising,1 +journal of interactive learning research,1 +journal of interactive marketing,2 +journal of interactive media in education,1 +journal of interactive online learning,1 +journal of interconnection networks,1 +journal of intercultural communication,1 +journal of intercultural communication research,1 +journal of intercultural management,0 +journal of intercultural studies,2 +journal of interdisciplinary history,3 +journal of interdisciplinary history of ideas,1 +journal of interdisciplinary mathematics,1 +journal of interdisciplinary music studies,1 +journal of interdisciplinary sciences,1 +journal of interdisciplinary voice studies,1 +journal of interferon and cytokine research,1 +journal of intergenerational relationships,1 +journal of interior design,1 +journal of internal medicine,2 +journal of international accounting research,1 +"journal of international accounting, auditing and taxation",1 +journal of international affairs,0 +journal of international and comparative law,1 +journal of international and comparative social policy,1 +journal of international and global studies,1 +journal of international and intercultural communication,1 +journal of international arbitration,1 +journal of international banking law and regulation,1 +journal of international business and economy,0 +journal of international business management and research,0 +journal of international business policy,1 +journal of international business studies,3 +journal of international commercial law and technology,1 +journal of international communication,1 +journal of international conference on electrical machines and systems,1 +journal of international consumer marketing,1 +journal of international cooperation in education,1 +journal of international criminal justice,2 +journal of international development,1 +journal of international dispute settlement,1 +journal of international economic law,3 +journal of international economics,3 +journal of international education in business,1 +journal of international entrepreneurship,1 +journal of international environmental application and science,0 +journal of international farm management,1 +journal of international financial management and accounting,1 +"journal of international financial markets, institutions and money",2 +journal of international food and agribusiness marketing,1 +journal of international forum of researchers in education,1 +journal of international higher education,0 +"journal of international hospitality, leisure and tourism management",0 +journal of international humanitarian action,1 +journal of international humanitarian legal studies,1 +journal of international logistics and trade,1 +journal of international management,1 +journal of international maritime law,1 +journal of international marketing,2 +journal of international medical research,1 +journal of international migration and integration,2 +journal of international money and finance,2 +journal of international oral health,1 +journal of international organization studies,1 +journal of international peacekeeping,1 +journal of international political theory,1 +journal of international relations and development,1 +journal of international scientific publications: ecology & safety,0 +journal of international social studies,0 +journal of international society of preventive and community dentistry,1 +journal of international special need education,1 +journal of international students,1 +journal of international studies,1 +journal of international taxation,1 +journal of international technology and information management,1 +journal of international trade and economic development,1 +journal of international wildlife law and policy,1 +journal of international womens studies,1 +journal of internet and e-business studies,0 +journal of internet banking and commerce,0 +journal of internet commerce,1 +journal of internet engineering,0 +journal of internet law,0 +journal of internet services and applications,1 +journal of internet social networking and virtual communities,0 +journal of internet technology,1 +journal of interpersonal violence,2 +journal of interpolation and approximation in scientific computing,0 +journal of interpretation research,1 +journal of interprofessional care,1 +journal of interprofessional education & practice,0 +journal of intervention and statebuilding,1 +journal of interventional cardiac electrophysiology,1 +journal of interventional cardiology,1 +journal of invasive cardiology,1 +journal of inverse and ill-posed problems,1 +journal of invertebrate pathology,1 +journal of investigational allergology and clinical immunology,1 +journal of investigative and clinical dentistry,0 +journal of investigative dermatology,3 +journal of investigative dermatology symposium proceedings,1 +journal of investigative medicine,1 +journal of investigative psychology and offender profiling,1 +journal of investigative surgery,1 +journal of investing,1 +journal of investment management,1 +journal of irish and scottish studies,1 +journal of irish archaeology,1 +journal of iron and steel research international,1 +journal of irrigation and drainage engineering: asce,1 +journal of isakos,1 +journal of islamic accounting and business research,1 +journal of islamic banking and business research,0 +journal of islamic economic laws,1 +journal of islamic ethics,1 +journal of islamic marketing,1 +journal of islamic studies,2 +journal of islamic thought and civilization,1 +journal of island and coastal archaeology,1 +journal of israeli history,1 +journal of italian philosophy,1 +journal of i̇stanbul university faculty of dentistry,0 +journal of japanese botany,0 +journal of japanese philosophy,1 +journal of japanese society of tribologists,1 +journal of japanese studies,2 +journal of jesuit studies,1 +journal of jewish languages,1 +journal of jewish studies,3 +journal of jewish thought and philosophy,1 +journal of juristic papyrology,1 +journal of k-theory,1 +journal of king saud university : computer and information sciences,1 +journal of king saud university : engineering sciences,0 +journal of king saud university : science,0 +journal of knot theory and its ramifications,1 +journal of knowledge economy,1 +journal of knowledge management,1 +journal of knowledge management practice,1 +"journal of knowledge management, economics and information technology",0 +journal of korea trade,0 +journal of korean academy of nursing,1 +journal of korean medical science,1 +journal of korean neurosurgical society,1 +journal of korean studies,1 +journal of l.m. montgomery studies,1 +journal of labelled compounds and radiopharmaceuticals,1 +journal of labor and society,1 +journal of labor economics,3 +journal of labor research,1 +journal of laboratory and precision medicine,1 +journal of laboratory physicians,0 +journal of land use science,1 +journal of landscape architecture,2 +journal of landscape ecology,1 +journal of language aggression and conflict,1 +journal of language and aging research,0 +journal of language and cultural education,1 +journal of language and culture,1 +journal of language and discrimination,0 +journal of language and education,1 +journal of language and politics,2 +journal of language and popular culture in africa,1 +journal of language and sexuality,1 +journal of language and social psychology,3 +"journal of language contact: evolution of languages, contact and discourse",2 +journal of language evolution,1 +journal of language identity and education,2 +journal of language literature and culture,1 +journal of language modelling,1 +journal of language teaching and research,1 +journal of languages for specific purposes,0 +journal of laparoendoscopic and advanced surgical techniques,1 +journal of large-scale research facilities,0 +journal of laryngology and otology,1 +journal of laser applications,1 +journal of laser micro nanoengineering,1 +"journal of late antique, islamic and byzantine studies",0 +journal of late antiquity,1 +journal of latin american and caribbean anthropology,1 +journal of latin american cultural studies,1 +journal of latin american geography,1 +journal of latin american studies,3 +journal of latin linguistics,1 +journal of law and economics,2 +journal of law and medicine,1 +journal of law and public policy,1 +journal of law and social deviance,0 +journal of law and social work,1 +journal of law and society,3 +journal of law and the biosciences,1 +journal of law economics and organization,2 +journal of law medicine and ethics,1 +"journal of law, business and ethics",1 +"journal of law, technology & policy",1 +journal of leadership and organizational studies,1 +journal of leadership education,0 +journal of leadership studies,1 +"journal of leadership, accountability and ethics",0 +journal of lean systems,0 +journal of learning analytics,2 +journal of learning design,1 +journal of learning development in higher education,0 +journal of learning disabilities,3 +journal of learning for development,0 +journal of learning spaces,1 +journal of learning through the arts,0 +journal of lecture notes on software engineering,0 +journal of legal analysis,1 +journal of legal anthropology,1 +journal of legal education,1 +journal of legal history,2 +journal of legal medicine,1 +journal of legal philosophy,1 +journal of legal research methodology,1 +journal of legal studies,2 +journal of legal technology risk management,1 +journal of legislative studies,1 +journal of leisure research,2 +journal of lesbian studies,1 +journal of leukocyte biology,1 +journal of lgbt youth,1 +journal of librarianship and information science,1 +journal of librarianship and scholarly communication,1 +journal of library administration,1 +journal of library and information services in distance learning,1 +journal of library metadata,1 +journal of lie theory,1 +journal of life economics,0 +journal of life medicine,0 +journal of lifestyle and sdgs review,1 +journal of light and visual environment,1 +journal of lightwave technology,3 +journal of limnology,1 +journal of linear and topological algebra,1 +journal of linguistic and intercultural education,1 +journal of linguistic anthropology,3 +journal of linguistic geography,1 +journal of linguistics,3 +journal of linguistics and language teaching,0 +journal of lipid research,1 +journal of lipids,1 +journal of liposome research,1 +journal of liquid chromatography and related technologies,1 +journal of literacy research,2 +journal of literary and cultural disability studies,1 +journal of literary education,0 +journal of literary multilingualism,1 +journal of literary semantics,2 +journal of literary studies,1 +journal of literary theory,2 +journal of literature and art studies,0 +journal of literature and trauma studies,1 +"journal of literature, history and philosophy",1 +journal of lithic studies,1 +journal of livestock science,0 +journal of location based services,1 +journal of logic and analysis,1 +journal of logic and computation,2 +"journal of logic, language and information",2 +journal of logical and algebraic methods in programming,2 +journal of long-term effects of medical implants,1 +journal of loss and trauma,1 +journal of loss prevention in the process industries,1 +journal of low frequency noise vibration and active control,1 +journal of low power electronics,0 +journal of low power electronics and applications,0 +journal of low temperature physics,1 +journal of lower genital tract disease,1 +journal of luminescence,1 +journal of lutheran ethics,1 +journal of machine learning research,3 +journal of macroeconomics,1 +journal of macromarketing,1 +journal of macromolecular science part a: pure and applied chemistry,1 +journal of macromolecular science part b: physics,1 +journal of magnesium and alloys,1 +journal of magnetic resonance,1 +journal of magnetic resonance imaging,2 +journal of magnetic resonance open,1 +journal of magnetics,1 +journal of magnetism and magnetic materials,1 +journal of maltese education research,0 +journal of mammalian evolution,1 +journal of mammalogy,1 +journal of mammary gland biology and neoplasia,1 +journal of managed care pharmacy,1 +journal of management,3 +journal of management accounting research,1 +journal of management and change,0 +journal of management and governance,1 +journal of management and marketing research,0 +journal of management and organization,1 +journal of management and strategy,0 +journal of management control,1 +journal of management development,1 +journal of management education,1 +journal of management for global sustainability,1 +journal of management history,1 +journal of management in engineering,1 +journal of management information systems,3 +journal of management inquiry,2 +journal of management policy and practice,0 +journal of management science and engineering,1 +journal of management studies,3 +"journal of management, spirituality & religion",1 +journal of managerial psychology,1 +journal of manipulative and physiological therapeutics,1 +journal of manufacturing and materials processing,0 +journal of manufacturing processes,1 +journal of manufacturing science and engineering: transactions of the asme,1 +journal of manufacturing systems,3 +journal of manufacturing technology management,1 +journal of maps,1 +journal of marine engineering and technology,1 +journal of marine environmental engineering,1 +journal of marine research,1 +journal of marine science and application,1 +journal of marine science and engineering,0 +journal of marine science and technology,1 +journal of marine systems,1 +journal of marital and family therapy,1 +journal of maritime archaeology,2 +journal of maritime law and commerce,1 +journal of maritime research,1 +journal of market access & health policy,1 +journal of marketing,3 +journal of marketing analytics,1 +journal of marketing and management,0 +journal of marketing behavior,1 +journal of marketing channels,1 +journal of marketing communications,1 +journal of marketing development and competitiveness,0 +journal of marketing education,1 +journal of marketing for higher education,1 +journal of marketing management,1 +journal of marketing perspectives,0 +journal of marketing research,3 +journal of marketing research and case studies,0 +journal of marketing theory and practice,1 +journal of markets and morality,1 +journal of marriage and the family,3 +journal of mass spectrometry,1 +journal of mass violence research,0 +journal of material culture,3 +journal of material cycles and waste management,1 +journal of materials chemistry c,1 +journal of materials chemistry. a,2 +journal of materials chemistry. b,1 +journal of materials education,0 +journal of materials engineering and performance,1 +journal of materials in civil engineering,1 +journal of materials processing technology,2 +journal of materials research,1 +journal of materials research and technology,1 +journal of materials science,1 +journal of materials science : materials theory,1 +journal of materials science and engineering b,0 +journal of materials science and nanotechnology,0 +journal of materials science and technology,2 +journal of materials science research,0 +journal of materials science: materials in electronics,1 +journal of materials science: materials in medicine,1 +journal of maternal-fetal and neonatal medicine,1 +journal of mathematical analysis,0 +journal of mathematical analysis and applications,1 +journal of mathematical behavior,1 +journal of mathematical biology,3 +journal of mathematical chemistry,1 +journal of mathematical cryptology,1 +journal of mathematical economics,1 +journal of mathematical finance,0 +journal of mathematical fluid mechanics,1 +journal of mathematical imaging and vision,2 +journal of mathematical inequalities,0 +journal of mathematical logic,1 +journal of mathematical neuroscience,0 +journal of mathematical physics,1 +journal of mathematical physics analysis geometry,1 +journal of mathematical psychology,1 +journal of mathematical sciences,1 +journal of mathematical sciences: the university of tokyo,1 +journal of mathematical sociology,1 +journal of mathematical study,0 +journal of mathematics,0 +journal of mathematics and culture,1 +journal of mathematics and modeling in finance,0 +journal of mathematics and music,1 +journal of mathematics and statistical science,0 +journal of mathematics and statistics,0 +journal of mathematics and the arts,1 +journal of mathematics in industry,1 +journal of mathematics teacher education,1 +journal of measurements in engineering,0 +journal of mechanical behaviour of materials,1 +journal of mechanical design,2 +journal of mechanical engineering,0 +journal of mechanical science and technology,1 +journal of mechanics,1 +journal of mechanics engineering and automation,0 +journal of mechanics in medicine and biology,1 +journal of mechanics of materials and structures,1 +journal of mechanisms and robotics,2 +journal of media & mass communication,0 +journal of media and religion,1 +journal of media business studies,1 +journal of media critiques,1 +journal of media economics,1 +journal of media ethics,1 +journal of media management and entrepreneurship,1 +journal of media psychology,1 +journal of medical and biological engineering,1 +journal of medical artificial intelligence,1 +journal of medical biochemistry,1 +journal of medical biography,1 +journal of medical case reports,1 +journal of medical cases,0 +journal of medical devices-transactions of the asme,1 +journal of medical diagnostic methods,0 +journal of medical economics,1 +journal of medical education,0 +journal of medical education and curricular development,1 +journal of medical engineering,0 +journal of medical engineering and technology,1 +journal of medical entomology,1 +journal of medical ethics,3 +journal of medical genetics,2 +journal of medical humanities,1 +journal of medical imaging,1 +journal of medical imaging and health informatics,1 +journal of medical imaging and radiation oncology,1 +journal of medical imaging and radiation sciences,1 +journal of medical internet research,2 +"journal of medical marketing: device, diagnostic and pharmaceutical marketing",1 +journal of medical microbiology,1 +journal of medical microbiology & diagnosis,0 +journal of medical mycology,1 +journal of medical primatology,1 +journal of medical radiation sciences,1 +journal of medical science,1 +journal of medical screening,1 +journal of medical systems,1 +journal of medical toxicology: official journal of the american college of medical toxicology,1 +journal of medical ultrasonics,1 +journal of medical virology,1 +journal of medicinal and aromatic plant sciences,1 +journal of medicinal chemistry,3 +journal of medicinal food,1 +journal of medicinal plants research,0 +journal of medicine,1 +journal of medicine and medical sciences,0 +journal of medicine and philosophy,2 +journal of medieval and early modern studies,3 +journal of medieval history,3 +journal of medieval iberian studies,1 +journal of medieval latin,1 +journal of medieval religious cultures,1 +journal of mediterranean archaeology,2 +journal of mediterranean studies,1 +journal of membrane biology,1 +journal of membrane computing,1 +journal of membrane science,2 +journal of membrane science & technology,0 +journal of membrane science and research,1 +journal of memory and language,2 +"journal of men, masculinities and spirituality",1 +journal of mennonite studies,0 +journal of mens health,0 +journal of mens studies: a scholarly journal about men and masculinities,1 +journal of mental health,1 +journal of mental health policy and economics,1 +journal of mental imagery,1 +journal of metallurgy and materials science,1 +journal of metamorphic geology,2 +journal of metastable and nanocrystalline materials,0 +journal of micro- and nano-manufacturing,1 +journal of micro-bio robotics,0 +journal of micro-nanolithography mems and moems,1 +journal of microbial and biochemical technology,0 +journal of microbiological methods,1 +journal of microbiology,1 +journal of microbiology and biology education,1 +journal of microbiology and biotechnology,1 +journal of microbiology immunology and infection,1 +"journal of microbiology, biotechnology and food sciences",0 +journal of microelectromechanical systems,1 +journal of microelectronics and electronic packaging,0 +journal of microencapsulation,1 +journal of micromechanics and microengineering,1 +journal of micromechanics and molecular physics,1 +journal of micropalaeontology,1 +journal of microscopy: oxford,1 +journal of microwave power and electromagnetic energy,1 +journal of middle east womens studies,1 +journal of midwifery and womens health,1 +journal of migration and health,1 +journal of migration history,1 +journal of military ethics: normative aspects of the use of military force,1 +journal of military history,1 +journal of military social work and behavioral health services,0 +journal of military studies,1 +journal of mind and behavior,1 +journal of mineralogical and petrological sciences,1 +journal of minerals and materials characterization and engineering,0 +journal of mines and geosciences,0 +journal of minimally invasive gynecology,1 +journal of mining and metallurgy section b: metallurgy,1 +journal of mining science,1 +journal of mixed methods research,2 +journal of mobile multimedia,1 +"journal of mobile technologies, knowledge, and society",0 +journal of modelling in management,1 +journal of modern accounting and auditing,0 +journal of modern african studies,2 +journal of modern applied statistical methods,1 +journal of modern craft,1 +journal of modern dynamics,1 +journal of modern education review,0 +journal of modern european history,2 +journal of modern greek studies,2 +journal of modern history,3 +journal of modern italian studies,2 +journal of modern jewish studies,1 +journal of modern literature,3 +journal of modern optics,1 +journal of modern philosophy,1 +journal of modern physics,0 +journal of modern power systems and clean energy,1 +journal of modern project management,1 +journal of modern textile science and engineering,0 +journal of molecular and cellular cardiology,2 +journal of molecular and cellular cardiology plus,0 +journal of molecular and cellular pathology,0 +journal of molecular and clinical medicine,0 +journal of molecular and engineering materials,1 +journal of molecular biochemistry,0 +journal of molecular biology,2 +journal of molecular biomarkers and diagnosis,0 +journal of molecular cell biology,1 +journal of molecular diagnostics,1 +journal of molecular endocrinology,1 +journal of molecular evolution,1 +journal of molecular graphics and modelling,1 +journal of molecular histology,1 +journal of molecular liquids,1 +journal of molecular medicine: jmm,2 +journal of molecular microbiology and biotechnology,1 +journal of molecular modeling,1 +journal of molecular neuroscience,1 +journal of molecular recognition,1 +journal of molecular spectroscopy,1 +journal of molecular structure,1 +journal of molluscan studies,1 +journal of monetary economics,3 +journal of money credit and banking,2 +journal of money laundering control,1 +journal of monolingual and bilingual speech,1 +journal of moral education,2 +journal of moral philosophy,2 +journal of moral theology,1 +journal of morphology,1 +journal of motor behavior,1 +journal of motor learning and development,1 +journal of mountain ecology,1 +journal of mountain science,1 +journal of movement disorders,0 +journal of multi business model innovation and technology,0 +journal of multi-criteria decision analysis,1 +journal of multicultural counseling and development,1 +journal of multicultural discourses,1 +journal of multidisciplinary engineering science and technology,0 +journal of multidisciplinary healthcare,1 +journal of multidisciplinary research,0 +journal of multilingual and multicultural development,3 +journal of multilingual theories and practices,0 +journal of multimedia education research,1 +journal of multimorbidity and comorbidity,1 +journal of multinational financial management,1 +journal of multiple sclerosis,0 +journal of multiple-valued logic and soft computing,1 +journal of multiscale modelling,1 +journal of multiscale neuroscience,0 +journal of multivariate analysis,2 +journal of muscle foods,1 +journal of muscle research and cell motility,1 +journal of musculoskeletal and neuronal interactions,1 +journal of musculoskeletal pain,1 +journal of musculoskeletal research,1 +journal of museum education,1 +journal of music and meaning,1 +journal of music teacher education,1 +journal of music theory,2 +journal of music theory pedagogy,1 +journal of music therapy,2 +"journal of music, health, and wellbeing",1 +"journal of music, technology and education",1 +journal of musicological research,2 +journal of musicology,3 +journal of muslim minority affairs,1 +journal of muslims in europe,1 +journal of namibian studies: history politics culture,0 +journal of nano education,1 +journal of nano research,1 +journal of nanobiotechnology,1 +journal of nanoelectronics and optoelectronics,0 +journal of nanoparticle research,1 +journal of nanophotonics,1 +journal of nanoscience and nanotechnology,1 +journal of nanoscience with advanced technology,0 +journal of nanostructure in chemistry,0 +journal of nanotechnology,1 +journal of nanotheranostics,0 +journal of narrative politics,1 +journal of natural fibers,2 +journal of natural history,1 +journal of natural medicines,1 +journal of natural products,1 +journal of natural resources policy research,1 +journal of nature and science,0 +journal of navigation,1 +journal of near eastern studies,1 +journal of near infrared spectroscopy,1 +journal of negative results in biomedicine,1 +journal of negro education,1 +journal of nematology,1 +journal of neonatal nursing,1 +journal of nepal health research council,0 +journal of nepal medical association,0 +journal of nepal paediatric society,0 +journal of nephrology,1 +journal of nervous and mental disease,1 +journal of network and computer applications,1 +journal of network and systems management,1 +journal of networks,0 +journal of neural engineering,1 +journal of neural transmission,1 +journal of neuro-oncology,1 +journal of neuro-ophthalmology,1 +journal of neurochemistry,2 +journal of neurodevelopmental disorders,1 +journal of neuroendocrinology,1 +journal of neuroengineering and rehabilitation,1 +journal of neurogastroenterology and motility,1 +journal of neurogenetics,1 +journal of neuroimaging,1 +journal of neuroimmune pharmacology,1 +journal of neuroimmunology,1 +journal of neuroinflammation,1 +journal of neurointerventional surgery,2 +journal of neurolinguistics,2 +journal of neurologic physical therapy,1 +journal of neurological sciences: turkish,1 +journal of neurological surgery,1 +"journal of neurological surgery. part b, skull base",1 +journal of neurology,2 +journal of neurology and neurophysiology,0 +journal of neurology neurosurgery and psychiatry,3 +journal of neurology research,0 +journal of neuromuscular diseases,1 +journal of neuropathology and experimental neurology,1 +journal of neurophilosophy,1 +journal of neurophysiology,2 +journal of neuropsychiatry and clinical neurosciences,1 +journal of neuropsychology,1 +journal of neuroradiology,1 +journal of neurorestoratology,0 +journal of neuroscience,3 +journal of neuroscience methods,1 +journal of neuroscience nursing,1 +journal of neuroscience research,1 +"journal of neuroscience, psychology, and economics",1 +journal of neurosurgery,2 +journal of neurosurgery : case lessons,0 +journal of neurosurgery: pediatrics,1 +journal of neurosurgery: spine,1 +journal of neurosurgical anesthesiology,1 +journal of neurosurgical sciences,1 +journal of neurotherapy,1 +journal of neurotrauma,2 +journal of neurovirology,1 +journal of neutron research,1 +journal of new approaches in educational research,1 +journal of new materials for electrochemical systems,1 +journal of new music research,3 +journal of new seeds,1 +journal of new zealand & pacific studies,1 +journal of next generation information technology,0 +journal of nietzsche studies,1 +journal of non-crystalline solids,1 +journal of non-crystalline solids : x,1 +journal of non-equilibrium thermodynamics,1 +journal of non-newtonian fluid mechanics,1 +journal of noncommutative geometry,1 +journal of nondestructive evaluation,1 +journal of nonlinear and convex analysis,1 +journal of nonlinear mathematical physics,1 +journal of nonlinear optical physics and materials,1 +journal of nonlinear science,2 +journal of nonparametric statistics,1 +journal of nonprofit and public sector marketing,1 +journal of nonsmooth analysis and optimization,1 +journal of nonverbal behavior,1 +journal of nordic archaeological science,1 +journal of north african research in business,0 +journal of north african studies,1 +journal of northern studies,1 +journal of northwest atlantic fishery science,1 +journal of northwest semitic languages,1 +journal of novel physiotherapies,0 +journal of nuclear cardiology,1 +journal of nuclear energy science & power generation technology,0 +journal of nuclear engineering,0 +journal of nuclear engineering and radiation science,1 +journal of nuclear materials,2 +journal of nuclear materials management,0 +journal of nuclear medicine,3 +journal of nuclear medicine technology,1 +journal of nuclear science and technology,1 +journal of nucleic acids,0 +journal of number theory,2 +journal of numerical analysis and approximation theory,1 +journal of numerical cognition,1 +journal of numerical mathematics,1 +journal of nursing,0 +journal of nursing administration,1 +journal of nursing and care,0 +journal of nursing and health studies,0 +journal of nursing and healthcare of chronic illness,1 +journal of nursing and practice,0 +journal of nursing care quality,1 +journal of nursing education,2 +journal of nursing education and practice,0 +journal of nursing home research,0 +journal of nursing management,3 +journal of nursing measurement,1 +journal of nursing research,0 +journal of nursing scholarship,2 +journal of nutrition,2 +journal of nutrition and food security,0 +journal of nutrition and metabolism,1 +journal of nutrition education and behavior,1 +journal of nutrition health and aging,1 +journal of nutrition in gerontology and geriatrics,1 +journal of nutritional biochemistry,3 +journal of nutritional health and food science,0 +journal of nutritional science,1 +journal of nutritional science and vitaminology,1 +journal of obesity,1 +journal of obesity & weight loss therapy,0 +journal of object technology,1 +"journal of obstetric, gynecologic, and neonatal nursing",1 +journal of obstetrics and gynaecology,1 +journal of obstetrics and gynaecology canada,1 +journal of obstetrics and gynaecology research,1 +journal of occupational and environmental hygiene,1 +journal of occupational and environmental medicine,1 +journal of occupational and organizational psychology,2 +journal of occupational health,1 +journal of occupational health psychology,3 +journal of occupational medicine and toxicology,1 +journal of occupational rehabilitation,2 +journal of occupational science,1 +"journal of occupational therapy, schools & early intervention",0 +journal of ocean and coastal economics,0 +journal of ocean engineering and marine energy,1 +journal of oceanography,1 +journal of ocular pharmacology and therapeutics,1 +journal of offender rehabilitation,1 +journal of official statistics,1 +journal of offshore mechanics and arctic engineering,1 +journal of oil palm research,1 +journal of oleo science,0 +journal of olympic history,0 +journal of oman studies,1 +journal of oncology pharmacy practice,1 +journal of online learning and teaching,1 +journal of online learning research,1 +journal of online trust & safety,1 +journal of open archaeology data,0 +journal of open aviation science,0 +journal of open educational resources in higher education,0 +journal of open humanities data,1 +journal of open innovation,1 +journal of open psychology data,0 +journal of open research software,1 +journal of open source software,1 +"journal of open, flexible, and distance learning",1 +journal of openness commons & organizing,0 +journal of operational oceanography,1 +journal of operational risk,1 +journal of operations management,3 +journal of operator theory,1 +journal of ophthalmic and vision research,1 +journal of ophthalmic inflammation and infection,-1 +journal of ophthalmic surgery,0 +journal of ophthalmology,1 +journal of opioid management,1 +journal of optical communications,1 +journal of optical communications and networking,2 +journal of optical microsystems,1 +journal of optical technology,1 +journal of optics,1 +journal of optics a: pure and applied optics,1 +journal of optimization theory and applications,1 +journal of optoelectronics and advanced materials,1 +journal of optometry,1 +journal of oral and facial pain and headache,1 +journal of oral and maxillofacial surgery,1 +"journal of oral and maxillofacial surgery, medicine, and pathology",0 +journal of oral biosciences,1 +journal of oral health and biosciences,0 +journal of oral implantology,1 +journal of oral microbiology,2 +journal of oral pathology and medicine,2 +journal of oral rehabilitation,2 +journal of oral research,0 +journal of oral science,1 +journal of organic chemistry,2 +journal of organization design,1 +journal of organizational and end user computing,1 +journal of organizational behavior,3 +journal of organizational behavior management,1 +journal of organizational change management,1 +journal of organizational computing and electronic commerce,1 +journal of organizational effectiveness,1 +journal of organizational ethnography,1 +journal of organizational knowledge management,0 +journal of organizational management studies,0 +journal of organizational psychology,0 +journal of organizational sociology,1 +journal of organometallic chemistry,1 +journal of ornithology,1 +journal of orofacial orthopedics-fortschritte der kieferorthopadie,1 +journal of orofacial pain,1 +journal of orthodontics,1 +journal of orthodox christian studies,1 +journal of orthopaedic and sports physical therapy,1 +journal of orthopaedic case reports,0 +journal of orthopaedic research,2 +journal of orthopaedic science,1 +journal of orthopaedic surgery,1 +journal of orthopaedic surgery and research,1 +journal of orthopaedic translation,0 +journal of orthopaedic trauma,1 +journal of orthopaedics,1 +journal of orthopaedics and traumatology,1 +journal of osteopathic medicine,1 +journal of osteoporosis,1 +journal of osteoporosis and physical activity,0 +journal of otolaryngology and neurotology research,0 +journal of otolaryngology-head and neck surgery,1 +journal of otology,1 +journal of outdoor and environmental education,1 +journal of outdoor recreation and tourism,1 +journal of outsourcing and organizational information management,0 +journal of ovarian research,1 +journal of ovonic research,1 +journal of pacific archaeology,1 +journal of pacific history,2 +journal of pacific rim psychology,1 +journal of pacifism and nonviolence,1 +journal of packaging technology and research,1 +journal of paediatrics and child health,1 +journal of pain,2 +journal of pain and palliative care pharmacotherapy,1 +journal of pain and symptom management,1 +journal of pain research,1 +journal of paleolimnology,1 +journal of paleolithic archaeology,1 +journal of paleontology,1 +journal of palestine studies,1 +journal of palliative care,1 +journal of palliative medicine,1 +journal of parallel and distributed computing,2 +journal of parapsychology,1 +journal of parasitic diseases,0 +journal of parasitology,1 +journal of parenteral and enteral nutrition,1 +journal of park and recreation administration,1 +journal of parkinsons disease,1 +journal of partial differential equations,1 +journal of participation and employee ownership,1 +journal of participatory research methods,-1 +journal of pastoral care and counseling: jpcc,1 +journal of pastoral theology,0 +journal of pathogens,1 +journal of pathology,3 +journal of pathology informatics,1 +journal of patient care,-1 +journal of patient experience,1 +journal of patient safety,1 +journal of patient safety and risk management,1 +journal of patient-reported outcomes,1 +journal of pattern recognition and intelligent systems,0 +journal of pattern recognition research,1 +journal of payments strategy & systems,0 +journal of peace education,1 +journal of peace research,3 +journal of peacebuilding and development,1 +journal of peasant studies,3 +journal of pediatric and adolescent gynecology,1 +journal of pediatric endocrinology and metabolism,1 +journal of pediatric gastroenterology and nutrition,1 +journal of pediatric genetics,1 +journal of pediatric health care,1 +journal of pediatric hematology oncology,1 +journal of pediatric neurology,1 +journal of pediatric nursing,1 +journal of pediatric oncology nursing,1 +journal of pediatric ophthalmology and strabismus,1 +journal of pediatric orthopaedics,1 +journal of pediatric orthopaedics: part b,1 +journal of pediatric psychology,1 +journal of pediatric rehabilitation medicine,0 +journal of pediatric surgery,1 +journal of pediatric surgery case reports,1 +journal of pediatric urology,1 +journal of pediatrics,2 +journal of pediatrics : clinical practice,1 +journal of peer learning,1 +journal of pension economics and finance,1 +journal of pentecostal and charismatic christianity,1 +journal of pentecostal theology,1 +journal of peptide science,1 +journal of perceptual imaging,1 +journal of performance of constructed facilities,1 +journal of perianesthesia nursing,1 +journal of perinatal and neonatal nursing,1 +journal of perinatal education,1 +journal of perinatal medicine,1 +journal of perinatology,1 +journal of periodontal research,1 +journal of periodontology,2 +journal of perioperative practice,1 +journal of persianate studies,1 +journal of personal selling and sales management,2 +journal of personality,3 +journal of personality and social psychology,3 +journal of personality assessment,1 +journal of personality disorders,2 +journal of personalized medicine,0 +journal of personnel psychology,1 +journal of perspectives in applied academic practice,0 +journal of perspectives in management,0 +journal of pest science,1 +journal of pesticide science,1 +journal of petroleum geology,1 +journal of petrology,2 +journal of pharmaceutical analysis,1 +journal of pharmaceutical and biomedical analysis,1 +journal of pharmaceutical and biomedical analysis open,1 +journal of pharmaceutical health services research,1 +journal of pharmaceutical innovation,1 +journal of pharmaceutical policy and practice,1 +journal of pharmaceutical sciences,2 +journal of pharmaceutics & drug delivery research,0 +journal of pharmacokinetics and pharmacodynamics,1 +journal of pharmacological and toxicological methods,1 +journal of pharmacological sciences,1 +journal of pharmacology and experimental therapeutics,2 +journal of pharmacy and bioallied sciences,0 +journal of pharmacy and pharmaceutical sciences,1 +journal of pharmacy and pharmacology,1 +journal of pharmacy and pharmacology research,0 +journal of pharmacy practice,1 +journal of phase equilibria and diffusion,1 +journal of phenomenological psychology,1 +journal of philanthropy and marketing,1 +journal of philosophical logic,3 +journal of philosophical research,1 +journal of philosophy,3 +journal of philosophy in schools,1 +journal of philosophy of education,3 +journal of philosophy of life,1 +journal of phonetics,3 +journal of photochemistry and photobiology a: chemistry,1 +journal of photochemistry and photobiology b: biology,1 +journal of photochemistry and photobiology c: photochemistry reviews,1 +"journal of photogrammetry, remote sensing and geoinformation science",1 +journal of photonics for energy,1 +journal of photopolymer science and technology,1 +journal of phycology,1 +journal of physical activity and health,1 +journal of physical and chemical reference data,1 +journal of physical chemistry a,1 +journal of physical chemistry b,1 +journal of physical chemistry c,2 +journal of physical chemistry letters,3 +journal of physical education and sport,0 +journal of physical education and sports management,-1 +"journal of physical education, recreation & dance",0 +journal of physical oceanography,2 +journal of physical organic chemistry,1 +journal of physical science and application,0 +journal of physical studies,1 +journal of physical therapy science,0 +journal of physics : complexity,1 +journal of physics : conference series,1 +journal of physics a: mathematical and theoretical,2 +journal of physics and chemistry of solids,1 +journal of physics b: atomic molecular and optical physics,1 +journal of physics communications,1 +journal of physics d: applied physics,1 +journal of physics g: nuclear and particle physics,2 +journal of physics: condensed matter,2 +journal of physiological anthropology,1 +journal of physiological sciences,1 +journal of physiology and biochemistry,1 +journal of physiology and pharmacology,1 +journal of physiology: london,2 +journal of physiology: paris,1 +journal of physiotherapy,2 +journal of phytopathology,1 +journal of pidgin and creole languages,2 +journal of pineal research,2 +journal of pipeline science and engineering,1 +journal of pipeline systems engineering and practice,1 +journal of place management and development,1 +journal of plankton research,1 +journal of planning and environmental law,1 +journal of planning education and research,2 +journal of planning history,1 +journal of planning literature,2 +journal of plant biochemistry & physiology,0 +journal of plant biochemistry and biotechnology,1 +journal of plant biology,1 +journal of plant development,1 +journal of plant diseases and protection,1 +journal of plant ecology: uk,1 +journal of plant growth regulation,2 +journal of plant interactions,1 +journal of plant nutrition,1 +journal of plant nutrition and soil science,1 +journal of plant pathology,1 +journal of plant pathology & microbiology,0 +journal of plant physiology,1 +journal of plant protection research,0 +journal of plant registrations,1 +journal of plant research,1 +journal of plant sciences,0 +journal of plasma physics,1 +journal of plastic film and sheeting,1 +journal of plastic reconstructive and aesthetic surgery,1 +journal of plastic surgery and hand surgery,1 +journal of poetry therapy,1 +journal of police and criminal psychology,1 +journal of police crisis negotiations,1 +journal of policy analysis and management,3 +journal of policy and practice in intellectual disabilities,1 +journal of policy history,2 +journal of policy modeling,1 +"journal of policy research in tourism, leisure and events",1 +journal of polish safety and reliability association,0 +journal of politeness research: language behaviour culture,2 +journal of political and military sociology,1 +journal of political ecology: case studies in history and society,1 +journal of political economy,3 +journal of political economy macroeconomics,1 +journal of political economy microeconomics,1 +journal of political ideologies,1 +journal of political institutions and political economy,1 +journal of political marketing,1 +journal of political philosophy,0 +journal of political power,1 +journal of political science and public affairs,0 +journal of political science education,1 +journal of politics,3 +journal of politics and law,0 +journal of pollination ecology,1 +journal of pollution effects & control,0 +journal of polymer engineering,1 +journal of polymer materials,1 +journal of polymer research,1 +journal of polymer science,1 +journal of polymers,0 +journal of polymers and the environment,1 +journal of popular culture,2 +journal of popular film and television,1 +journal of popular music education,1 +journal of popular music studies,2 +journal of popular romance studies,1 +journal of popular television,1 +journal of population ageing,1 +journal of population and social studies,1 +journal of population economics,2 +journal of porous materials,1 +journal of porous media,1 +journal of porphyrins and phthalocyanines,1 +journal of portfolio management,1 +journal of portuguese linguistics,2 +journal of positive behavior interventions,2 +journal of positive management,0 +journal of positive psychology,2 +journal of positive school psychology,1 +journal of post keynesian economics,1 +journal of postcolonial linguistics,1 +journal of postcolonial writing,2 +journal of postgraduate medicine,1 +journal of posthuman studies,1 +journal of postsecondary education and disability,1 +journal of poultry science,1 +journal of poverty,1 +journal of poverty and social justice,1 +journal of powder technology,0 +journal of power,1 +journal of power electronics,1 +journal of power sources,2 +journal of power sources advances,1 +journal of practice teaching and learning,0 +journal of pragmatic constructivism,1 +journal of pragmatics,3 +journal of praxis in higher education,1 +journal of pre-college engineering education research,1 +journal of pre-raphaelite studies: new series,1 +journal of prediction markets,1 +journal of pregnancy,1 +journal of prehistoric religion,1 +journal of prenatal & perinatal psychology & health,0 +journal of presbyterian history,1 +journal of pressure vessel technology: transactions of the asme,1 +journal of prevention,1 +journal of prevention and intervention in the community,1 +journal of preventive medicine and hygiene,0 +journal of preventive medicine and public health,0 +journal of primary care and community health,1 +journal of print and media technology research,1 +journal of prison education research,1 +journal of private equity,1 +journal of private international law,3 +journal of probability and statistical science,1 +journal of probability and statistics,0 +journal of probiotics & health,0 +journal of problem based learning in higher education,1 +journal of process control,2 +journal of product and brand management,1 +journal of product innovation management,3 +journal of productivity analysis,2 +journal of professional issues in engineering education and practice,1 +journal of professional nursing,1 +journal of professions and organization,1 +journal of progressive human services,1 +journal of promotion management,1 +journal of property investment and finance,1 +journal of property research,1 +"journal of property, planning and environmental law",1 +journal of propulsion and power,1 +journal of prosthetic dentistry,1 +journal of prosthetics and orthotics,1 +journal of prosthodontic research,2 +journal of prosthodontics,1 +journal of proteome research,1 +journal of proteomics,1 +journal of proteomics and bioinformatics,0 +journal of pseudo-differential operators and applications,1 +journal of psychedelic studies,0 +journal of psychiatric and mental health nursing,2 +journal of psychiatric practice,1 +journal of psychiatric research,1 +journal of psychiatry,0 +journal of psychiatry and neuroscience,2 +journal of psychiatry studies,0 +journal of psycho-social studies,1 +journal of psychoactive drugs,1 +journal of psychoeducational assessment,1 +journal of psychohistory,1 +journal of psycholinguistic research,1 +journal of psychological and educational research,1 +journal of psychological type,0 +journal of psychologists and counsellors in schools,1 +journal of psychology,1 +journal of psychology & psychotherapy,0 +journal of psychology and ai,-1 +journal of psychology and theology,1 +journal of psychology in africa,0 +journal of psychopathology and behavioral assessment,1 +journal of psychopathology and clinical science,3 +journal of psychopharmacology,1 +journal of psychophysiology,1 +journal of psychosocial nursing and mental health services,1 +journal of psychosocial oncology,1 +journal of psychosocial rehabilitation and mental health,1 +journal of psychosomatic obstetrics and gynecology,1 +journal of psychosomatic research,1 +journal of psychotherapy integration,1 +journal of public administration and governance,0 +journal of public administration research and theory,3 +journal of public affairs,1 +"journal of public budgeting, accounting and financial management",1 +journal of public child welfare,-1 +journal of public economic theory,1 +journal of public economics,3 +journal of public finance and public choice,0 +journal of public health,1 +journal of public health and emergency,1 +journal of public health dentistry,1 +journal of public health in africa,0 +journal of public health management and practice,1 +journal of public health policy,1 +journal of public health research,1 +journal of public mental health,1 +journal of public pedagogies,0 +journal of public policy,2 +journal of public policy and marketing,2 +journal of public procurement,2 +journal of public relations research,1 +journal of pulp and paper science,1 +journal of purchasing and supply management,2 +journal of pure and applied algebra,1 +journal of pure and applied microbiology,1 +journal of qualitative criminal justice and criminology,1 +journal of qualitative research in sports studies,0 +journal of qualitative research in tourism,1 +journal of quality assurance in hospitality and tourism,1 +journal of quality in maintenance engineering,1 +journal of quality management,1 +journal of quality technology,1 +journal of quantitative analysis in sports,1 +journal of quantitative criminology,3 +journal of quantitative linguistics,1 +journal of quantitative methods,1 +journal of quantitative spectroscopy and radiative transfer,1 +journal of quaternary science,1 +journal of quranic studies,2 +"journal of race, ethnicity and the city",1 +"journal of race, ethnicity, and politics",1 +journal of racial and ethnic health disparities,1 +journal of radiation research,1 +journal of radiation research and applied sciences,0 +journal of radio and audio media,1 +journal of radioanalytical and nuclear chemistry,1 +journal of radiological protection,1 +journal of radiology nursing,1 +journal of radiotherapy in practice,1 +journal of raman spectroscopy,1 +journal of raptor research,1 +journal of rare earths,1 +journal of rational - emotive and cognitive - behavior therapy,1 +journal of real estate finance and economics,1 +journal of real estate literature,1 +journal of real estate portfolio management,1 +journal of real estate practice and education,1 +journal of real estate research,1 +journal of real-time image processing,1 +journal of receptors and signal transduction,1 +journal of reconstructive microsurgery,1 +journal of reconstructive microsurgery open,1 +journal of refractive surgery,1 +journal of refugee studies,2 +journal of regional analysis and policy,1 +journal of regional science,2 +journal of regulatory economics,1 +journal of rehabilitation,1 +journal of rehabilitation medicine,2 +journal of rehabilitation medicine : clinical communications,0 +journal of rehabilitation research and development,1 +journal of reinforced plastics and composites,1 +journal of relationship marketing,1 +journal of reliability and statistical studies,0 +journal of reliable intelligent environments,0 +journal of religion,2 +journal of religion and film,1 +journal of religion and health,1 +journal of religion and popular culture,1 +journal of religion and society,1 +journal of religion and spirituality in social work: social thought,1 +journal of religion and violence,1 +journal of religion in africa,1 +journal of religion in europe,2 +"journal of religion, disability and health",1 +"journal of religion, media and digital culture",1 +"journal of religion, spirituality and aging",1 +journal of religious education,1 +journal of religious ethics,3 +journal of religious history,2 +journal of remanufacturing,1 +journal of remote sensing,1 +journal of renal care,1 +journal of renal nutrition,1 +journal of renewable and sustainable energy,1 +journal of renewable materials,0 +journal of reproduction & infertility,0 +journal of reproduction and development,1 +journal of reproductive and infant psychology,1 +journal of reproductive immunology,1 +journal of reproductive medicine,1 +journal of research administration,1 +journal of research and practice in information technology,1 +journal of research design and statistics in linguistics and communication science,1 +journal of research for consumers,0 +journal of research in architecture and planning,1 +journal of research in childhood education,1 +journal of research in crime and delinquency,3 +journal of research in gender studies,1 +journal of research in health sciences,0 +journal of research in industrial organization,0 +journal of research in innovative teaching & learning,1 +journal of research in interactive marketing,1 +journal of research in international education,1 +journal of research in interprofessional practice and education,1 +journal of research in marketing and entrepreneurship,1 +journal of research in medical sciences,1 +journal of research in music education,2 +journal of research in music performance,1 +journal of research in nursing,1 +journal of research in obesity,0 +journal of research in personality,2 +journal of research in pharmacy,1 +journal of research in reading,2 +journal of research in rural education,1 +journal of research in science teaching,3 +journal of research in social sciences,0 +journal of research in special educational needs,1 +journal of research in stem education,1 +journal of research in technical careers,0 +journal of research management and administration,0 +journal of research of the national institute of standards and technology,1 +journal of research on adolescence,2 +journal of research on character education,1 +journal of research on educational effectiveness,2 +journal of research on leadership education,0 +journal of research on technology in education,1 +"journal of research on trade, management and economic development",0 +journal of research practice,1 +journal of resistance studies,1 +journal of resources and ecology,1 +journal of responsible innovation,1 +journal of responsible production and consumption,-1 +journal of retailing,3 +journal of retailing and consumer services,1 +journal of revenue and pricing management,1 +journal of reviews on global economics,0 +journal of rheology,2 +journal of rheumatology,1 +journal of risk,1 +journal of risk and financial management,0 +journal of risk and insurance,2 +journal of risk and uncertainty,2 +journal of risk model validation,1 +journal of risk research,1 +journal of ritual studies,1 +journal of road engineering,1 +journal of road safety,1 +journal of robotic surgery,1 +journal of robotics and mechatronics,1 +journal of rock mechanics and geotechnical engineering,1 +journal of roman archaeology,3 +journal of roman archaeology : supplementary series,2 +journal of roman military equipment studies,1 +journal of roman pottery studies,1 +journal of roman studies,3 +journal of romance studies,1 +journal of romanticism,1 +journal of rubber research,1 +journal of rural and community development,1 +journal of rural cooperation,1 +journal of rural health,1 +journal of rural studies,2 +journal of russian laser research,1 +journal of safety and sustainability,0 +journal of safety research,2 +journal of sandwich structures and materials,1 +"journal of satisfiability, boolean modeling and computation",1 +journal of saudi chemical society,0 +journal of scandinavian cinema,2 +journal of scheduling,1 +journal of schenkerian studies,1 +journal of scholarly publishing,1 +journal of school choice,1 +journal of school health,1 +journal of school nursing,1 +journal of school psychology,1 +journal of school violence,1 +journal of science,0 +journal of science and cycling,0 +journal of science and medicine in sport,2 +journal of science and technology for forest products and processes,1 +journal of science and technology of the arts,1 +journal of science and technology policy management,1 +journal of science communication,1 +journal of science education and technology,1 +journal of science in sport and exercise,1 +journal of science teacher education,2 +"journal of sciences, islamic republic of iran",0 +journal of scientific computing,1 +journal of scientometric research,1 +journal of scottish historical studies,1 +journal of scottish philosophy,1 +journal of scottish thought,0 +journal of screenwriting,2 +journal of sea research,1 +journal of second and multiple language acquisition,0 +journal of second language pronunciation,1 +journal of second language writing,2 +journal of securities operations & custody,0 +journal of sedimentary environments,1 +journal of sedimentary research,1 +journal of seismic exploration,1 +journal of seismology,1 +journal of self-assembly and molecular electronics,1 +journal of semantics,3 +journal of semiconductor technology and science,0 +journal of semiconductors,1 +journal of semitic studies,2 +journal of sensor and actuator networks,0 +journal of sensors,1 +journal of sensors and sensor systems,0 +journal of sensory studies,1 +journal of separation science,1 +journal of septuagint and cognate studies,1 +journal of service management,2 +journal of service research,3 +journal of service science,0 +journal of service science and management,0 +journal of service science research,1 +journal of service theory and practice,1 +journal of services marketing,1 +journal of services research,0 +journal of settlements and spatial planning,0 +journal of seventeenth century music,1 +journal of sex and marital therapy,1 +journal of sex research,2 +journal of sexual aggression,1 +journal of sexual medicine,1 +journal of shanghai jiaotong university,0 +journal of shellfish research,1 +journal of shia islamic studies,1 +journal of ship mechanics,0 +journal of ship production and design,1 +journal of ship research,2 +journal of shipping and trade,1 +journal of shoulder and elbow surgery,1 +journal of siberian federal university : humanities and social sciences,1 +journal of signal and information processing,0 +journal of signal processing systems for signal image and video technology,1 +journal of simulation,1 +journal of singing,1 +journal of slavic linguistics,2 +journal of slavic military studies,1 +journal of sleep disorders : treatment & care,0 +journal of sleep research,1 +journal of small animal practice,1 +journal of small business and enterprise development,1 +journal of small business and entrepreneurship,1 +journal of small business management,2 +journal of small business strategy,0 +journal of small satellites,1 +journal of social and clinical psychology,1 +journal of social and economic development,1 +journal of social and personal relationships,1 +journal of social and political philosophy,1 +journal of social and political psychology,2 +journal of social and political studies,0 +journal of social archaeology,3 +journal of social computing,1 +journal of social distress and the homeless,1 +journal of social entrepreneurship,1 +journal of social history,3 +journal of social inclusion,0 +journal of social issues,2 +journal of social marketing,1 +journal of social ontology,2 +journal of social philosophy,2 +journal of social policy,3 +journal of social psychology,1 +journal of social psychology research,0 +journal of social research & policy,1 +journal of social science education,2 +journal of social science for policy implications,0 +journal of social sciences,0 +journal of social sciences and humanities,0 +journal of social sciences research,0 +journal of social security law,1 +journal of social service research,1 +journal of social structure,1 +journal of social studies research,1 +journal of social welfare and family law,2 +journal of social work,1 +journal of social work education,1 +journal of social work in disability and rehabilitation,1 +journal of social work in end-of-life and palliative care,1 +journal of social work practice,2 +journal of social work practice in the addictions,1 +journal of social work values and ethics,1 +"journal of social, political and economic studies",1 +journal of socio-economics,1 +journal of sociolinguistics,3 +journal of sociology,1 +journal of sociology and social welfare,1 +journal of soft computing and data mining,0 +journal of software,0 +journal of software,1 +journal of software and systems development,0 +journal of software engineering and applications,0 +journal of software engineering research and development,1 +journal of soil and water conservation,1 +journal of soil science and plant nutrition,1 +journal of soils and sediments,1 +journal of sol-gel science and technology,1 +journal of solar energy engineering: transactions of the asme,1 +journal of solar energy research,0 +journal of solid state chemistry,1 +journal of solid state electrochemistry,1 +journal of solid waste technology and management,1 +journal of solution chemistry,1 +journal of somaesthetics,1 +journal of song-yuan studies,1 +journal of sonic studies,1 +journal of sound and music in games,1 +journal of sound and vibration,2 +journal of south american earth sciences,1 +journal of south asia women studies,1 +journal of south asian and middle eastern studies,1 +journal of south asian development,1 +journal of south asian languages and linguistics,1 +journal of south asian linguistics,1 +journal of southeast asian american education & advancement,0 +journal of southeast asian architecture,1 +journal of southeast asian research,0 +journal of southeast asian studies,2 +journal of southeast university,0 +journal of southern african studies,2 +journal of southern history,1 +journal of southern religion,1 +journal of soviet and post-soviet politics and society,1 +journal of space safety engineering,1 +journal of space syntax,1 +journal of space weather and space climate,1 +journal of spacecraft and rockets,1 +journal of spacecraft technology,1 +journal of spanish cultural studies,2 +journal of spatial and organizational dynamics,0 +journal of spatial hydrology,1 +journal of spatial information science,1 +journal of spatial science,1 +journal of special education,3 +journal of special education technology,1 +journal of specialized translation,1 +journal of spectral imaging,1 +journal of spectral theory,1 +journal of spectroscopy,0 +"journal of speculative philosophy: a quarterly journal of history, criticism, and imagination",1 +journal of speech and language pathology and applied behavior analysis,1 +journal of speech sciences,0 +"journal of speech, language, and hearing research",3 +journal of spinal cord medicine,1 +journal of spirituality in mental health,1 +journal of sport and exercise psychology,2 +journal of sport and health science,1 +journal of sport and social issues,1 +journal of sport behavior,1 +journal of sport for development,-1 +journal of sport history,1 +journal of sport management,1 +journal of sport psychology in action,1 +journal of sport rehabilitation,1 +journal of sport tourism,1 +journal of sports economics,1 +journal of sports medicine and physical fitness,1 +journal of sports science and medicine,1 +journal of sports sciences,1 +journal of stained glass,1 +journal of standardisation,1 +journal of statistical and econometric methods,0 +journal of statistical computation and simulation,1 +journal of statistical mechanics: theory and experiment,1 +journal of statistical physics,2 +journal of statistical planning and inference,1 +journal of statistical research,1 +journal of statistical software,2 +journal of statistical theory and applications,1 +journal of statistical theory and practice,1 +journal of statistics and applications,1 +journal of statistics and management systems,1 +journal of statistics education,1 +journal of statistics: advances in theory and applications,0 +journal of stem cell research and therapy,0 +journal of stem education: innovations and research,1 +journal of steroid biochemistry and molecular biology,1 +journal of stomatology oral & maxillofacial surgery,1 +journal of stored products research,1 +journal of strain analysis for engineering design,1 +journal of strategic contracting and negotiation,1 +journal of strategic information systems,3 +journal of strategic innovation and sustainability,0 +journal of strategic marketing,1 +journal of strategic studies,1 +journal of strategy and management,1 +journal of strength and conditioning research,1 +journal of stroke,2 +journal of stroke and cerebrovascular diseases,1 +journal of structural and functional genomics,1 +journal of structural biology,1 +journal of structural biology x,1 +journal of structural chemistry,1 +journal of structural engineering: asce,2 +journal of structural fire engineering,1 +journal of structural geology,1 +journal of structural integrity and maintenance,1 +journal of studies in education,0 +journal of studies in international education,2 +journal of studies on alcohol and drugs,1 +journal of submicroscopic cytology and pathology,1 +journal of substance abuse treatment,1 +journal of substance use,1 +journal of sufi studies,1 +journal of sulfur chemistry,1 +journal of supercomputing,1 +journal of superconductivity and novel magnetism,1 +journal of supercritical fluids,1 +journal of superhard materials,1 +journal of supply chain and customer relationship management,0 +journal of supply chain management,3 +journal of supply chain management : research and practice,0 +journal of supreme court history,1 +journal of surfactants and detergents,1 +journal of surgery,0 +journal of surgery and research,0 +journal of surgical case reports,1 +journal of surgical education,1 +journal of surgical oncology,1 +journal of surgical research,1 +"journal of surveillance, security and safety",1 +journal of survey statistics and methodology,1 +journal of surveying engineering: asce,1 +journal of sustainability research,1 +journal of sustainable agriculture and environment,0 +journal of sustainable architecture and civil engineering,1 +journal of sustainable bioenergy systems,0 +journal of sustainable cement-based materials,1 +journal of sustainable development,0 +"journal of sustainable development of energy, water and environment systems",1 +journal of sustainable finance and investment,1 +journal of sustainable forestry,1 +journal of sustainable marketing,1 +journal of sustainable metallurgy,1 +journal of sustainable mining,1 +journal of sustainable mobility,0 +journal of sustainable real estate,0 +journal of sustainable research in engineering,0 +journal of sustainable tourism,3 +journal of swine health and production,1 +journal of symbolic computation,1 +journal of symbolic logic,2 +journal of symplectic geometry,1 +journal of synchrotron radiation,2 +journal of synthetic crystals,0 +journal of synthetic organic chemistry japan,0 +journal of system and management sciences,1 +journal of system design and dynamics,1 +journal of systematic investing,1 +journal of systematic palaeontology,1 +journal of systematics and evolution,1 +journal of systemic therapies,1 +"journal of systemics, cybernetics and informatics",0 +journal of systems and information technology,1 +journal of systems and software,3 +journal of systems architecture,2 +journal of systems chemistry,1 +journal of systems engineering and electronics,1 +journal of systems research,1 +journal of systems science and complexity,1 +journal of systems science and systems engineering,1 +journal of taibah university for science,0 +journal of taphonomy,1 +"journal of targeting, measurement and analysis for marketing",1 +journal of tax administration,1 +journal of taxation,1 +journal of teacher action research,0 +journal of teacher education,3 +journal of teacher education and educators,1 +journal of teacher education for sustainability,1 +journal of teaching and education,0 +journal of teaching and learning,1 +journal of teaching english for specific and academic purposes.,1 +journal of teaching in international business,1 +journal of teaching in physical education,2 +journal of teaching in social work,1 +journal of teaching in travel and tourism,1 +journal of technical education and training,1 +journal of technical writing and communication,1 +journal of technology and science education,1 +journal of technology and teacher education,1 +journal of technology education,1 +journal of technology in behavioral science,1 +journal of technology in human services,1 +journal of technology innovations in renewable energy,0 +journal of technology law & policy,0 +journal of technology management and innovation,1 +journal of technology management for growing economies,0 +journal of technology transfer,2 +"journal of technology, learning, and assessment",1 +"journal of telecommunication, electronic and computer engineering",0 +journal of telecommunications and information technology,1 +journal of telemedicine and telecare,1 +journal of terramechanics,1 +journal of territorial and maritime studies,1 +journal of testing and evaluation,1 +"journal of textile design, research and practice",1 +journal of textile science & fashion technology,0 +journal of texture studies,1 +journal of the academy of marketing science,3 +journal of the academy of nutrition and dietetics,1 +journal of the acm,3 +journal of the acoustical society of america,3 +journal of the african literature association,1 +journal of the air and waste management association,1 +journal of the american academy of audiology,1 +journal of the american academy of child and adolescent psychiatry,3 +journal of the american academy of dermatology,2 +journal of the american academy of nurse practitioners,1 +journal of the american academy of orthopaedic surgeons,1 +journal of the american academy of orthopaedic surgeons : global research & reviews,1 +journal of the american academy of psychiatry and the law,1 +journal of the american academy of religion,3 +journal of the american animal hospital association,1 +journal of the american association for laboratory animal science,1 +journal of the american board of family medicine,1 +journal of the american ceramic society,2 +journal of the american chemical society,3 +journal of the american chiropractic association,1 +journal of the american college of cardiology,3 +journal of the american college of emergency physicians open,1 +journal of the american college of nutrition,1 +journal of the american college of radiology,1 +journal of the american college of surgeons,3 +journal of the american dental association,1 +journal of the american geriatrics society,3 +journal of the american heart association: cardiovascular and cerebrovascular disease,2 +journal of the american helicopter society,1 +journal of the american institute for conservation,2 +journal of the american leather chemists association,1 +journal of the american liszt society,1 +journal of the american mathematical society,3 +journal of the american medical directors association,2 +journal of the american medical informatics association,2 +journal of the american mosquito control association,0 +journal of the american musical instrument society,1 +journal of the american musicological society,3 +journal of the american oil chemists society,1 +journal of the american oriental society,1 +journal of the american pharmacists association,1 +journal of the american philosophical association,2 +journal of the american planning association,2 +journal of the american podiatric medical association,1 +journal of the american pomological society,1 +journal of the american psychiatric nurses association,1 +journal of the american psychoanalytic association,1 +journal of the american research center in egypt,1 +journal of the american society for horticultural science,1 +journal of the american society for mass spectrometry,1 +journal of the american society for physical research,1 +journal of the american society of brewing chemists,1 +journal of the american society of cytopathology,1 +journal of the american society of echocardiography,1 +journal of the american society of nephrology,3 +journal of the american statistical association,3 +journal of the american water resources association,1 +journal of the anatomical society of india,1 +journal of the anthropological society of oxford,1 +journal of the argentine chemical society,0 +journal of the asia pacific economy,1 +journal of the association for consumer research,1 +journal of the association for information science and technology,3 +journal of the association for information systems,3 +journal of the association for the study of australian literature,1 +journal of the association of environmental and resource economists,2 +journal of the astronautical sciences,1 +journal of the atmospheric sciences,1 +journal of the audio engineering society,2 +journal of the australasian ceramic society,0 +journal of the australian ceramic society,1 +journal of the australian mathematical society,1 +journal of the australian war memorial,1 +journal of the balkan tribological association,1 +journal of the beijing institute of technology,0 +journal of the bible and its reception,1 +journal of the brazilian chemical society,0 +journal of the brazilian computer society,1 +journal of the brazilian society of mechanical sciences and engineering,1 +journal of the british academy,0 +journal of the british association for chinese studies,1 +journal of the british society for phenomenology,3 +journal of the canadian dental association,1 +journal of the canadian society of forensic science,1 +journal of the ceramic society of japan,1 +journal of the chemical society of pakistan,0 +journal of the chester archaeological society,0 +journal of the chilean chemical society,0 +journal of the chinese chemical society,0 +journal of the chinese institute of engineers,1 +journal of the chinese medical association,1 +journal of the chinese society of mechanical engineers,1 +journal of the conductors' guild,0 +journal of the copyright society of the usa,1 +journal of the cork historical and archaeological society,1 +journal of the david collection,1 +journal of the early book society,1 +journal of the early republic,1 +journal of the economic and social history of the orient,2 +journal of the economic science association,1 +journal of the economics of ageing,1 +journal of the edinburgh bibliographical society,0 +journal of the electrochemical society,1 +journal of the electrochemical society of india,0 +journal of the endocrine society,1 +journal of the energy institute,1 +journal of the entomological research society,1 +journal of the european academy of dermatology and venereology,2 +journal of the european association for chinese studies,1 +journal of the european association for health information and libraries,0 +journal of the european ceramic society,2 +journal of the european economic association,3 +journal of the european mathematical society,3 +journal of the european mosquito control association,1 +journal of the european optical society: rapid publications,1 +journal of the european second language association,1 +journal of the european society of women in theological research,1 +journal of the evangelical theological society,1 +journal of the experimental analysis of behavior,1 +journal of the faculty of agriculture kyushu university,1 +journal of the fantastic in the arts,1 +journal of the finnish economic association,1 +journal of the formosan medical association,1 +journal of the franklin institute: engineering and applied mathematics,1 +journal of the galway archaeological and history society,0 +journal of the geological society,1 +journal of the geological society of india,1 +journal of the geological society of japan,1 +journal of the gilded age and progressive era,2 +journal of the harbin institute of technology,0 +journal of the historical society,0 +journal of the history of biology,2 +journal of the history of childhood and youth,2 +journal of the history of collections,1 +journal of the history of economic thought,1 +journal of the history of ideas,3 +journal of the history of international law,1 +journal of the history of medicine and allied sciences,2 +journal of the history of philosophy,3 +journal of the history of sexuality,1 +journal of the history of the behavioral sciences,1 +journal of the history of the neurosciences,1 +journal of the iest,1 +journal of the indian chemical society,0 +journal of the indian mathematical society,1 +journal of the indian ocean region,1 +journal of the indian society of agricultural statistics,1 +journal of the indian society of remote sensing,1 +journal of the indian statistical association,1 +journal of the institute of asian studies,1 +journal of the institute of brewing,1 +journal of the institute of conservation,1 +"journal of the institute of engineers, malaysia",0 +journal of the institute of mathematics of jussieu,2 +journal of the institute of telecommunications professionals,1 +journal of the institution of engineers (india) : series c,1 +journal of the international aids society,1 +journal of the international association for shell and spatial structures,1 +journal of the international association of buddhist studies,1 +journal of the international association of tibetan studies,1 +journal of the international colour association,1 +journal of the international council for small business,0 +journal of the international neuropsychological society,2 +journal of the international phonetic association,2 +journal of the international qur'anic studies association,1 +journal of the international society for orthodox church music,1 +journal of the international society for respiratory protection,1 +journal of the international society for teacher education,0 +journal of the international society for telemedicine and ehealth,0 +journal of the international society of sports nutrition,1 +journal of the iranian chemical society,1 +journal of the iranian statistical society,1 +journal of the israel dental association,0 +journal of the japan institute of metals,1 +journal of the japan petroleum institute,1 +journal of the japan statistical society,1 +journal of the japanese and international economies,1 +journal of the japanese physical therapy association,1 +journal of the japanese society for engineering education,0 +journal of the japanese society for food science and technology-nippon shokuhin kagaku kogaku kaishi,1 +journal of the japanese society for horticultural science,1 +journal of the kansas entomological society,1 +journal of the korean astronomical society,1 +journal of the korean ceramic society,1 +journal of the korean mathematical society,1 +journal of the korean physical society,1 +journal of the korean regional development association,1 +journal of the korean society for applied biological chemistry,1 +journal of the korean society of clothing and textiles,1 +journal of the korean statistical society,1 +journal of the learning sciences,3 +journal of the lepidopterists society,1 +journal of the linguistic association of nigeria,0 +journal of the london mathematical society: second series,3 +journal of the lute society of america,1 +journal of the marine biological association of the united kingdom,1 +journal of the mass spectrometry society of japan,0 +journal of the mathematical society of japan,1 +journal of the mechanical behavior of biomedical materials,1 +journal of the mechanics and physics of solids,3 +journal of the medical library association,1 +journal of the meteorological society of japan,1 +journal of the mexican chemical society,0 +journal of the midwest association for information systems,0 +journal of the midwest modern language association,1 +journal of the motherhood initiative for research and community involvement,1 +journal of the musical arts in africa,1 +journal of the national cancer institute,3 +journal of the national cancer institute: monographs,1 +journal of the national comprehensive cancer network,2 +journal of the national institute for career education and counselling,0 +journal of the national medical association,1 +journal of the neurological sciences,1 +journal of the north atlantic,1 +journal of the operational research society,2 +journal of the operations research society of japan,1 +journal of the optical society of america a: optics image science and vision,1 +journal of the optical society of america b: optical physics,1 +journal of the optical society of korea,1 +journal of the ottoman and turkish studies association,0 +journal of the oxford centre for buddhist studies,1 +journal of the oxford graduate theological society,0 +journal of the pakistan medical association,0 +journal of the pancreas,0 +journal of the patent and trademark office society,1 +journal of the pediatric infectious diseases society,1 +journal of the peripheral nervous system,1 +journal of the philosophy of games,1 +journal of the philosophy of history,2 +journal of the philosophy of sport,2 +journal of the physical society of japan,1 +journal of the polynesian society,1 +journal of the professional association for cactus development,1 +journal of the renin-angiotensin-aldosterone system,1 +journal of the royal anthropological institute,3 +journal of the royal asiatic society,1 +journal of the royal college of physicians of edinburgh,0 +journal of the royal musical association,3 +journal of the royal new zealand air force,-1 +journal of the royal society interface,1 +journal of the royal society of antiquaries of ireland,1 +journal of the royal society of medicine,1 +journal of the royal society of new zealand,1 +journal of the royal statistical society series a: statistics in society,2 +journal of the royal statistical society series b: statistical methodology,3 +journal of the royal statistical society series c: applied statistics,2 +journal of the saudi heart association,0 +journal of the science of food and agriculture,1 +journal of the serbian chemical society,0 +journal of the short story in english,1 +journal of the society for american music,1 +journal of the society for armenian studies,1 +journal of the society for cardiovascular angiography & interventions,1 +journal of the society for information display,1 +journal of the society for musicology in ireland,1 +journal of the society of architectural historians,3 +journal of the society of christian ethics,1 +journal of the society of leather technologists and chemists,1 +journal of the south african institute of mining and metallurgy,1 +journal of the south african institution of civil engineering,1 +journal of the south african veterinary association,1 +journal of the southeast asian linguistics society,1 +journal of the southwest,1 +journal of the taiwan institute of chemical engineers,1 +journal of the technical university at plovdiv : fundamental sciences and applications,0 +journal of the text encoding initiative,1 +journal of the textile institute,1 +journal of the turkish chemical society section a : chemistry,0 +journal of the warburg and courtauld institutes,3 +journal of the west,1 +journal of the world aquaculture society,1 +journal of the world federation of orthodontists,1 +journal of theological interpretation,1 +journal of theological studies,3 +journal of theology for southern africa,1 +journal of theoretical and applied electronic commerce research,0 +journal of theoretical and applied mechanics,1 +journal of theoretical and computational chemistry,1 +journal of theoretical and philosophical psychology,1 +journal of theoretical archaeology,1 +journal of theoretical biology,2 +journal of theoretical politics,2 +journal of theoretical probability,1 +journal of theoretical social psychology,1 +journal of therapeutic horticulture,1 +journal of therapeutic ultrasound,1 +journal of thermal analysis and calorimetry,1 +journal of thermal biology,1 +journal of thermal science,1 +journal of thermal science and engineering applications,1 +journal of thermal science and technology issn,1 +journal of thermal spray technology,1 +journal of thermal stresses,1 +journal of thermodynamics & catalysis,0 +journal of thermophysics and heat transfer,1 +journal of thermoplastic composite materials,1 +journal of thoracic and cardiovascular surgery,2 +journal of thoracic disease,1 +journal of thoracic imaging,1 +journal of thoracic oncology,2 +journal of threat assessment and management,1 +journal of threatened taxa,1 +journal of thrombosis and haemostasis,1 +journal of thrombosis and thrombolysis,1 +journal of time series analysis,2 +journal of time series econometrics,1 +journal of tissue engineering,2 +journal of tissue engineering and regenerative medicine,1 +journal of tissue science and engineering,0 +journal of tissue viability,1 +journal of topology,2 +journal of topology and analysis,1 +journal of tourism and cultural change,1 +journal of tourism and hospitality,0 +journal of tourism and hospitality management,0 +journal of tourism challenges and trends,0 +journal of tourism consumption and practice,1 +journal of tourism futures,1 +journal of tourism history,2 +journal of tourism insights,0 +"journal of tourism, heritage & services marketing",1 +journal of toxicologic pathology,1 +journal of toxicological sciences,1 +journal of toxicology,1 +journal of toxicology and environmental health. part a,1 +journal of toxicology and environmental health: part b: critical reviews,1 +journal of trace elements in medicine and biology,1 +journal of traditional and complementary medicine,1 +journal of traditional chinese medicine,0 +journal of traditional medicines,1 +journal of traffic and transportation engineering,1 +journal of transatlantic studies,2 +journal of transcendental philosophy,1 +journal of transcultural nursing,1 +journal of transdisciplinary environmental studies,1 +journal of transformative education,1 +journal of transformative learning,0 +journal of translation,1 +journal of translational autoimmunity,1 +journal of translational genetics and genomics,0 +journal of translational internal medicine,0 +journal of translational medicine,1 +journal of transnational american studies,1 +journal of transnational management,1 +journal of transport and health,1 +journal of transport and land use,1 +journal of transport and supply chain management,0 +journal of transport economics and policy,1 +journal of transport geography,2 +journal of transport history,1 +journal of transportation engineering : part a. systems,1 +journal of transportation engineering : part b. pavements,1 +"journal of transportation law, logistics, and policy",0 +journal of transportation security,1 +journal of transportation systems engineering and information technology,1 +journal of transportation technologies,0 +journal of trauma and acute care surgery,1 +journal of trauma and dissociation,1 +journal of trauma and injury,1 +journal of trauma management and outcomes,1 +journal of traumatic stress,1 +journal of travel and tourism marketing,1 +journal of travel and tourism research,1 +journal of travel medicine,2 +journal of travel research,3 +journal of trial and error,0 +journal of tribology: transactions of the asme,1 +journal of tropical biology and conservation,1 +journal of tropical ecology,1 +journal of tropical forest science,1 +journal of tropical meteorology,1 +journal of tropical pediatrics,1 +journal of trust research,1 +journal of turbomachinery: transactions of the asme,1 +journal of turbulence,1 +journal of ultrasound in medicine,1 +journal of uncertainty analysis and applications,1 +"journal of unconventional parks, tourism and recreation research",0 +journal of universal computer science,1 +journal of universal language,1 +journal of university teaching and learning practice,1 +journal of uoeh,0 +journal of uralic linguistics,0 +journal of urban affairs,2 +journal of urban and environmental engineering,1 +journal of urban cultural studies,1 +journal of urban design,2 +journal of urban design and mental health,0 +journal of urban ecology,1 +journal of urban economics,3 +journal of urban ethnology,1 +journal of urban health: bulletin of the new york academy of medicine,1 +journal of urban history,2 +journal of urban management,1 +journal of urban mathematics education,1 +journal of urban mobility,0 +journal of urban planning and development: asce,1 +journal of urban regeneration and renewal,1 +journal of urban technology,1 +journal of urbanism,2 +journal of urology,2 +journal of us-china public administration,0 +journal of user experience,1 +journal of vacation marketing,1 +journal of vaccines and vaccination,0 +journal of vacuum science and technology a,1 +"journal of vacuum science and technology. b, nanotechnology & microelectronics",1 +journal of vaishnava studies,0 +journal of value inquiry,2 +journal of vascular access,1 +journal of vascular and interventional radiology,1 +journal of vascular nursing,1 +journal of vascular research,1 +journal of vascular surgery,2 +journal of vascular surgery cases and innovative techniques,0 +journal of vascular surgery: venous and lymphatic disorders,1 +journal of vector borne diseases,1 +journal of vector ecology,1 +journal of vegetation science,1 +journal of venomous animals and toxins including tropical diseases,1 +journal of vertebral subluxation research,1 +journal of vertebrate biology,1 +journal of vertebrate paleontology,1 +journal of vestibular research: equilibrium and orientation,1 +journal of veterinary anatomy,0 +journal of veterinary behavior: clinical applications and research,1 +journal of veterinary cardiology,1 +journal of veterinary dentistry,1 +journal of veterinary diagnostic investigation,1 +journal of veterinary emergency and critical care,1 +journal of veterinary internal medicine,2 +journal of veterinary medical education,1 +journal of veterinary medical science,1 +journal of veterinary pharmacology and therapeutics,2 +journal of veterinary science,1 +journal of veterinary science & technology,0 +journal of vibration and acoustics: transactions of the asme,1 +journal of vibration and control,1 +journal of vibration engineering & technologies,1 +journal of vibroengineering,1 +journal of victorian culture,1 +journal of vinyl and additive technology,1 +journal of viral hepatitis,1 +journal of virological methods,1 +journal of virology,2 +journal of virology and microbiology,0 +journal of virtual exchange,0 +journal of virtual reality and broadcasting,1 +journal of virtual studies,0 +journal of virtual worlds research,1 +journal of visceral surgery,1 +journal of vision,2 +journal of visual art and design,1 +journal of visual art practice,1 +journal of visual communication and image representation,2 +journal of visual culture,3 +journal of visual impairment and blindness,1 +journal of visual literacy,1 +journal of visual political communication,1 +journal of visualization,1 +journal of visualized experiments,1 +journal of vocational behavior,2 +journal of vocational education and training,2 +journal of vocational rehabilitation,1 +journal of voice,2 +journal of volcanology and geothermal research,1 +journal of volcanology and seismology,1 +journal of war and culture studies,1 +journal of water and climate change,1 +journal of water and environment technology,1 +journal of water and health,1 +journal of water and land development,1 +journal of water chemistry and technology,1 +journal of water law,1 +journal of water management modeling,1 +journal of water process engineering,1 +journal of water resource and protection,0 +journal of water resources planning and management: asce,1 +journal of water security,1 +journal of water technology and treatment methods,0 +"journal of water, sanitation and hygiene for development",1 +journal of waterway port coastal and ocean engineering: asce,1 +journal of wealth management,1 +journal of web engineering,1 +journal of web semantics,1 +journal of west indian literature,1 +journal of wetland archaeology,2 +journal of white collar and corporate crime,1 +journal of wildlife and biodiversity,1 +journal of wildlife diseases,1 +journal of wildlife management,1 +journal of william morris studies,1 +journal of wind engineering and industrial aerodynamics,1 +journal of wine economics,1 +journal of wine research,1 +"journal of wireless mobile networks, ubiquitous computing and dependable applications",0 +journal of women and aging,1 +journal of women politics and policy,1 +journal of women's health care,0 +"journal of women's health, issues & care",0 +journal of women's history,3 +journal of womens health,1 +journal of wood chemistry and technology,1 +journal of wood science,1 +journal of work-applied management,1 +journal of workplace learning,1 +journal of workplace rights,0 +journal of world business,3 +journal of world energy law and business,2 +journal of world history,3 +journal of world intellectual property,1 +journal of world investment and trade,1 +journal of world languages,1 +journal of world popular music,1 +journal of world prehistory,3 +journal of world trade,2 +journal of world-systems research,1 +journal of wound care,1 +journal of wound management,1 +journal of wound ostomy and continence nursing,1 +journal of wrist surgery,1 +journal of wscg,1 +journal of wuhan university of technology: materials science edition,1 +journal of x-ray science and technology,1 +journal of yoga and physiotherapy,0 +journal of young pharmacists,0 +journal of youth and adolescence,2 +journal of youth and theology,1 +journal of youth development,0 +journal of youth studies,2 +journal of zhejiang university-science b,1 +journal of zhejiang university. science c: computers and electronics,1 +journal of zhejiang university: science a,1 +journal of zoo and wildlife medicine,1 +journal of zoological systematics and evolutionary research,1 +journal of zoology,1 +journal on baltic security,1 +journal on chain and network science,1 +journal on computing and cultural heritage,2 +journal on data semantics,1 +journal on education in emergencies,0 +journal on efficiency and responsibility in education and science,1 +journal on ethnopolitics and minority issues in europe,1 +journal on interactive systems,0 +journal on mathematics education,1 +journal on migration and human security,1 +journal on multimodal user interfaces,1 +journal on selected topics in nano electronics and computing,0 +journal on the art of record production,1 +journal on the use of force and international law,1 +journal on tourism & sustainability,0 +journal on vehicle routing algorithms,1 +journalipp,0 +journalism,3 +journalism and communication monographs,1 +journalism and mass communication educator,1 +journalism and mass communication quarterly,2 +journalism and media,0 +journalism education,1 +journalism history,1 +journalism practice,2 +journalism research review quarterly,0 +journalism studies,3 +journalisti,-1 +journalistica,1 +journals of gerontology series a: biological sciences and medical sciences,3 +journals of gerontology series b: psychological sciences and social sciences,2 +journeys: the international journal of travel and travel writing,1 +joutsan seutu,-1 +joutsen,1 +joutsen : erikoisjulkaisuja,1 +jovene editore,0 +jovis verlag,0 +joyce studies annual,1 +jōetsu kyōiku daigaku kenkyū kiyō,0 +"jp journal of algebra, number theory and applications",1 +jp journal of biostatistics,0 +jp kunnallissanomat,-1 +jpc: journal of planar chromatography: modern tlc,1 +jphys energy,1 +jphys materials,1 +jphys photonics,1 +jpras open,1 +jpt: journal of petroleum technology,1 +jramathedu : journal of research and advances in mathematics education,1 +jrsm open,0 +jsams plus,0 +jses international,1 +jsfa reports,1 +jsls: journal of the society of laparoendoscopic surgeons,1 +"jsme international journal, series a: solid mechanics and material engineering",1 +"jsme international journal, series b: fluids and thermal engineering",1 +"jsme international journal, series c: mechanical systems, machine elements and manufacturing",1 +jsrp paper,0 +jtcvs open,1 +jtcvs techniques,1 +judaica,1 +judaica bohemiae,1 +judgment and decision making,1 +judicature,1 +julglädje,-1 +julgrisen,-1 +julius-kühn-archiv,0 +julkaisu,-1 +julkaisu (tampereen teknillinen yliopisto. arkkitehtuurin laitos),0 +julkaisu - oulun yliopisto. arkkitehtuurin osasto. a,0 +julkaisu : keski-suomen liitto b,-1 +julkaisu : länsi-uudenmaan vesi ja ympäristö,-1 +julkaisu : vantaanjoen ja helsingin seudun vesiensuojeluyhdistys,-1 +julkaisuja,-1 +julkaisuja (jyväskylän yliopiston kauppakorkeakoulu),0 +julkaisuja / publikationer / publications (siirtolaisuusinstituutti),0 +julkaisuja : terveyden edistämisen tutkimuskeskus,-1 +"julkaisuja. sarja b, tutkimuksia ja raportteja (kymenlaakson ammattikorkeakoulu)",0 +julkaisusarja,-1 +julkaisusarja - helsingin yliopisto. tietojenkäsittelytieteen laitos. b. raportti,0 +"julkaisusarja - turun yliopiston kasvatustieteiden tiedekunta. b, selosteita",0 +julkaisusarja 1 maanpuolustuskorkeakoulun tutkimuksia,0 +julkaisusarja 2 : tutkimusselosteita,-1 +"julkaisusarja 3. työpapereita, maanpuolustuskorkeakoulu : sotataidon laitos",-1 +julkaisut,-1 +julkisten ja hyvinvointialojen liitto,0 +juminkeko-säätiö,0 +juminkeon julkaisuja,0 +junction publishing,0 +junctures: the journal for thematic dialogue,1 +jundishapur journal of microbiology,1 +jung journal: culture and psyche,1 +junge welt,-1 +junior researcher workshop on real-time computing,0 +junius verlag,0 +juoksija,-1 +jure,1 +jure förlag,0 +juridica,1 +juridica international,0 +juridica lapponica,0 +juridica-kirjasarja,0 +juridisk tidskrift,1 +jurimetrics,1 +juris europensis scientia,0 +jurisprudence,1 +jurisprudencija,0 +jurist: studies in church law and ministry,1 +juriste d'entreprise magazine,-1 +juristen,1 +juristenzeitung,1 +juristförlaget i lund,0 +juristiuutiset,-1 +jurnal gramatika : jurnal penelitian pendidikan bahasa dan sastra indonesia,0 +jurnal hubungan internasional,0 +jurnal infotel,0 +jurnal manajemen indonesia,0 +jurnal pendidikan sains indonesia,0 +jurnal perencanaan pembangunan,0 +jurnal perspektif manajerial dan kewirausahaan,0 +jurnal sosioteknologi,0 +jurnal teknologi,1 +jurnal teknologi hasil pertanian,0 +jurnal undang-undang dan masyarakat,0 +jurvan sanomat,-1 +jus cogens,1 +jusletter it,0 +jussens venner,1 +just,1 +just labor,1 +justice quarterly,3 +justice spatiale - spatial justice,1 +"justice, power and resistance",1 +justus-liebig-universität gießen : universitätsbibliothek,0 +juurikassarka,-1 +juuso salokoski,0 +juvan lehti,-1 +juvenes print,0 +juvenile and family court journal,1 +juventa verlag,1 +juznoslovenski filolog,1 +jvs-vascular insights,1 +jyllands-posten,-1 +jysk arkaeologisk selskabs skrifter,1 +jysk arkæologisk selskab,1 +jyu reports,-1 +jyu studies,0 +jyunity,-1 +jyväskylä,-1 +jyväskylä studies in biological and environmental science,0 +"jyväskylä studies in education, psychology and social research",0 +jyväskylä studies in humanities,0 +jyväskylän ammattikorkeakoulu,0 +jyväskylän ammattikorkeakoulun julkaisuja,-1 +jyväskylän historiallinen arkisto,-1 +jyväskylän kaupunki,0 +jyväskylän koulutuskuntayhtymä gradian julkaisuja,-1 +jyväskylän normaalikoulun julkaisuja,0 +jyväskylän piha- ja puutarhasanomat,-1 +jyväskylän taidemuseon julkaisuja,-1 +jyväskylän yliopisto,0 +jyväskylän yliopiston avoimen yliopiston verkko-julkaisuja,-1 +jyväskylän yliopiston bio- ja ympäristötieteiden laitoksen tiedonantoja,-1 +jyväskylän yliopiston kirjaston julkaisuja,0 +jyväskylän yliopiston liikuntakasvatuksen laitoksen tutkimuksia,0 +jyväskylän yliopiston psykologian laitoksen julkaisuja,0 +jyväskylän yliopiston tiedemuseon julkaisuja,-1 +jàmbá,1 +jägaren,-1 +jäkkärä,-1 +jänkä,-1 +järjestöbarometri,-1 +jäsenlehti,-1 +jäsentiedote : westermarck society,-1 +jäteplus,-1 +jökull,1 +"k og k: kultur og klasse, kritik og kulturanalyse",1 +k&h-kustannus,0 +k-12 stem education,1 +k-theory,1 +k. j. ståhlbergin säätiö,0 +k.i.t. group gmbh dresden,0 +k:on,0 +kaakkois-suomen ammattikorkeakoulu,0 +kaakkois-suomen sosiaalialan osaamiskeskuksen julkaisuja,-1 +kaarina,-1 +kabbalah: journal for the study of jewish mystical texts,1 +kabinetnyj uchenyj,0 +kachere series publications,1 +kacike: journal of caribbean amerindian history and anthropology,1 +kadmos: zeitschrift fur vor- und fruhgriechische epigraphik,1 +kafkas universitesi veteriner fakultesi dergisi,1 +kagaku gijutsu komyunikeshon,0 +kagaku kogaku ronbunshu,1 +kagakushi kenkyū,0 +kahramanmaraş sütçü i̇mam üniversitesi tarım ve doğa dergisi,0 +kaifeng jiaoyu xueyuan xuebao,0 +kainuun joulu,-1 +kainuun liitto,-1 +kainuun sanomat,-1 +kainuun sosiaali- ja terveydenhuollon kuntayhtymä,-1 +kairos,1 +kajaanin ammattikorkeakoulu,0 +kajaanin ammattikorkeakoulun julkaisusarja,-1 +kajaanin ammattikorkeakoulun julkaisusarja a tutkimuksia,0 +kajo ́,-1 +kakkoskieli,-1 +kaku igaku,0 +kalajokilaakso,-1 +kalajokiseutu,-1 +kalatalouden keskusliiton julkaisu,-1 +kalbos kultura,1 +kalbotyra,1 +kalbu studijos,1 +kaleida forma,0 +kaleidoscope learning,0 +kalenterimaailma,-1 +kaleva,-1 +kalevalaseuran vuosikirja,1 +kalevi sorsa -säätiö,0 +kalevi sorsa säätiön julkaisuja,-1 +kalligram,0 +kalmistopiiri,-1 +kalpa publications in computing,0 +kaltio,-1 +kamchatka,1 +kameralehti,-1 +kami pa gikyoshi,0 +kampus kustannus,-1 +kampus kustannus,0 +kanadan sanomat,-1 +kanava,0 +kanbrief,-1 +kandidaattikustannus oy,0 +kangasalan luonto,-1 +kangasalan sanomat,-1 +kankaanpään seutu,-1 +kanon,0 +kansainvälinen etelä-pohjanmaa,-1 +kansainvälisen liikkuvuuden ja yhteistyön keskus cimo,0 +kansalaisareenan julkaisuja,-1 +kansalaisuuden kuilut ja kuplat,-1 +kansalaisyhteiskunta,-1 +kansallinen itämeri-tutkijoiden foorumi,0 +kansallinen koulutuksen arviointikeskus,0 +kansallinen sivistysliitto ry,0 +kansallisarkiston toimituksia,-1 +kansallisbiografia,0 +kansallisen audiovisuaalisen instituutin julkaisuja,-1 +kansalliskirjasto,0 +kansalliskirjaston gallerian julkaisuja,-1 +kansalliskirjaston julkaisuja,-1 +kansan tahto,-1 +kansan uutiset,-1 +kansaneläkelaitos,0 +kansanmusiikki,-1 +kansanmusiikki-instituutin julkaisuja,0 +kansantaloudellinen aikakauskirja,1 +kansanvalistusseura,1 +kansatieteellinen arkisto,1 +kant e-prints,1 +kant yearbook,1 +kant-studien,3 +kantele,-1 +kantian review,2 +kantovskij sbornik,1 +kantri,-1 +kaohsiung journal of medical sciences,0 +kapitaali,-1 +kaposvári egyetem,0 +karadeniz teknik üniversitesi,0 +karaite archives,0 +karas-sana oy,0 +kardiologia polska,1 +kardiologiya,1 +kardiologiâ v belarusi,0 +karel`skij nauchny`j centr ran,0 +karelia,-1 +karelia-ammattikorkeakoulun julkaisuja,-1 +karelia-ammattikorkeakoulun julkaisuja : raportteja,-1 +karelia-ammattikorkeakoulun julkaisuja a : tutkimuksia,0 +karhunhammas,-1 +karikyuramu kenkyu,0 +karisto oy,0 +karjal žurnualu,-1 +karjala,-1 +karjalainen,-1 +karjalan heili,-1 +karjalan heimo,-1 +karjalan kielen seura ry,0 +karjalan kunnaat,-1 +karjalan kuvalehti,-1 +karjalan sivistysseura ry,0 +karjalan teologisen seuran julkaisuja,1 +karlstad university press,1 +karlstads universitet,0 +karnac books,0 +karnov group denmark,1 +karolinska förbundets årsskrift,1 +karolinum,1 +karpatsʹkì matematičnì publìkacìï,1 +karstenia: the mycological journal,1 +kart og plan,1 +kart- & bildteknik,-1 +karthago,1 +karthala,1 +kartographische nachrichten,1 +karttakeskus oy,0 +kasama shoin,0 +kask conservatorium,0 +kaskal,0 +kasparek verlag,1 +kassel university press,1 +kasvatus,2 +kasvatus & aika,1 +kasvatus mitmekultuurilises keskkonnas,0 +kasvatusalan tutkimuksia,1 +kasvinsuojelulehti,-1 +kasvu,-1 +kasvun tuki -aikakauslehti,1 +katajanokan kaiku,-1 +katalysnytt,0 +katedra,0 +"katedra pedagogiki społecznej i andragogiki - wydział pedagogiczny, uniwersytet pedagogiczny w krakowie",0 +katedra technologii i urządzeń zagospodarowania odpadów politechnika śląska,0 +katharos oy,0 +kathmandu university medical journal,0 +katsauksia,-1 +kaunis grani,-1 +kauppakamari,-1 +kauppalehti,-1 +kauppalehti,0 +kauppapolitiikka,-1 +kauppatieteellinen yhdistys ry,0 +kaupunkilainen,-1 +kaupunkiympäristön julkaisuja,-1 +kaustisen lukio,0 +kava-pech,0 +kavkazskij èntomologičeskij bûlletenʹ,1 +kazahskij universitet mezhdunarodnyh otnoshenij i mirovyh yazykov im. abylaj hana,0 +kazanskij pedagogiceskij zhurnal,0 +kārā/fan,0 +keats-shelley journal,1 +keats-shelley review,1 +kebikec,0 +kedi journal of educational policy,1 +keel ja kirjandus,1 +kegan paul,1 +kehittyvä elintarvike,-1 +kehittyvä kauppa,-1 +kehitys,-1 +kehitysvammaliiton selvityksiä,-1 +kehitysvammaliiton tutkimuksia,0 +kehitysvammaliitto ry,0 +kehotus,-1 +kehrämedia oy,0 +kehrääjä,-1 +keiei jitsumuho kenkyu,0 +keizaigaku ronsan,0 +keizaigakushi kenkyu,0 +keiō gijuku daigaku hiyoshi kiyō : jinbun kagaku,0 +kello & kulta,-1 +kemanusiaan the asian journal of humanities,1 +kemi-tornion ammattikorkeakoulu,0 +"kemi-tornion ammattikorkeakoulun julkaisuja. sarja b, raportit ja selvitykset",0 +kemia,-1 +kemiauutiset,-1 +kemiläinen,-1 +kenchreai: eastern port of corinth,1 +kendall hunt publishing,0 +kennedy institute of ethics journal,1 +kent ltd : doszhan,0 +kent state university press,1 +kentron: revue du monde antique et de psychologie historique,1 +kenttäpostia,-1 +kenyon review,0 +keompyuteo eumak jeoneol emille,1 +kerber verlag,0 +keresztény magvetö,0 +kerhokeskus - koulutyön tuki ry,0 +kermes: arte e tecnica del restauro,1 +kernos,1 +kerns verlag,0 +kerntechnik,1 +kerygma und dogma: zeitschrift fur theologische forschung und kirchliche lehre,3 +keräilyuutiset,-1 +keski-espoon sanomat,-1 +keski-pohjanmaan ammattikorkeakoulu,0 +keski-suomen insinööri,-1 +keski-suomen kiinteistöviesti,-1 +keski-suomen linnut,-1 +keski-suomen sairaanhoitopiirin kuntayhtymän julkaisuja,-1 +keski-suomen sotaveteraanin joulu,-1 +keski-suomen sukututkijat,-1 +keski-suomen sukututkijat ry,0 +keskipohjalaiset kylät,-1 +keskipohjanmaa,-1 +keskisuomalainen,-1 +keskusrikospoliisi,0 +ketju,-1 +ketonoidanlukko,-1 +kew bulletin,1 +kew publishing,1 +kexue tongbao,0 +key engineering materials,1 +key issues in cultural heritage,3 +kgk: kautschuk gummi kunststoffe,1 +"khalifa international award for date, palm and agricultural innovation",0 +khimiya rastitelnogo syrya,0 +khozjajstvo i pravo,1 +kht-media,0 +kide,-1 +kidney and blood pressure research,1 +kidney cancer,1 +kidney diseases,1 +kidney international,3 +kidney international reports,1 +kidney360,1 +kiekaus,-1 +kiel computer science series,0 +kieleke,-1 +kieler bletter zur volkskunde,1 +kieler milchwirtschaftliche forschungsberichte,1 +kieli,-1 +"kieli, koulutus ja yhteiskunta",0 +kielikello,-1 +kielikeskuksen julkaisuja,0 +kielikeskus tutkii,-1 +kielikukko,-1 +kierkegaard studies,1 +kihun julkaisusarja,-1 +kiiltomato,0 +kiina sanoin ja kuvin,-1 +kiinteistö ja energia,-1 +kiinteistöposti,-1 +kiinteistöviesti,-1 +kiipeily,-1 +kijárat kiadó,0 +kikimora publications,1 +kilpailuoikeudellinen vuosikirja,1 +kilpi,-1 +kilpisjärvi notes,-1 +kinder- und jugendliteraturforschung,1 +kindheit - bildung - erziehung : philosophische perspektiven,3 +kindheit und entwicklung,0 +kinema: a journal for film and audiovisual media,1 +kinematics and physics of celestial bodies,1 +kinephanos,1 +kinesiologia slovenica,1 +kinesiology,1 +kinesis,0 +kinestetiikka,-1 +kinetic and related models,1 +kinetics and catalysis,1 +kings college london medieval studies,1 +kings college publications,1 +kingston business school,0 +kingston conference on international security series,0 +kio daigaku kiyo,0 +kipinä,0 +kippari,-1 +kipupuomi,-1 +kipuviesti,-1 +kirche und recht,0 +kirchenmusikalisches jahrbuch,1 +kirchliche zeitgeschichte,2 +kirik & teoloogia,-1 +kirjailija,-1 +kirjallisuudentutkijain seura,0 +kirjallisuudentutkimuksen aikakauslehti avain,2 +kirjallisuus- ja kulttuuriyhdistys särö ry,0 +kirjallisuusterapia,0 +kirjapaja,0 +kirjastolehti,-1 +kirjastus juura,0 +kirjokansi,0 +kirjuri,0 +kirke og kultur,1 +kirkhakkinen,-1 +kirkko ja islam -julkaisuja,0 +kirkko ja kaupunki,-1 +kirkko ja koti,-1 +kirkkohallitus,0 +kirkkomme lähetys,-1 +kirkkomusiikki,-1 +kirkkotie,-1 +kirkon tutkimuskeskus,0 +kirkon töissä,-1 +kirkon ulkomaanapu,0 +kirkonkellari,-1 +kisebbségi szemle,0 +kismet press,1 +kit scientific working papers,0 +kita kiinteistö & talotekniikka,-1 +kittilälehti,-1 +kiukaisten joulu,-1 +kiuruvesi,-1 +kivennapalainen,-1 +kivi,-1 +kiviteollisuusliitto ry,0 +kko:n ratkaisut kommentein,0 +klaip?dos universiteto leidykla,0 +klartext verlagsgesellschaft mbh,0 +klass,-1 +klassekampen,-1 +klassika-xxi,0 +klassisk forum,1 +klaus schwarz verlag,1 +kleintierpraxis,1 +kleio,0 +kleist-jahrbuch,1 +klett-cotta,1 +kliin lab,0 +kliininen radiografiatiede,1 +klim,1 +klinická onkologie,0 +klinik psikofarmakoloji bulteni-bulletin of clinical psychopharmacology,1 +klinische monatsblatter fur augenheilkunde,1 +klinische neurophysiologie,1 +klinische padiatrie,1 +klinisk sygepleje,1 +kliničeskaâ i specialʹnaâ psihologiâ,0 +kliničeskaâ medicina,0 +klio,1 +klog éditions,0 +klubilehti,-1 +kluwer academic publishers,2 +kluwer law international,2 +klēsis,0 +km vet,-1 +kmi international journal of maritime affairs and fisheries,1 +kmk scientific press,0 +knack magazine,-1 +kne energy,0 +kne life sciences,0 +knee,1 +knee surgery & related research,1 +knee surgery sports traumatology arthroscopy,1 +knjizevna smotra,1 +knnv publishers,1 +know,1 +knowledge & performance management,0 +knowledge and information systems,2 +knowledge and management of aquatic ecosystems,1 +knowledge and process management,1 +knowledge cultures,0 +knowledge engineering review,2 +knowledge management & e-learning: an international journal,1 +knowledge management research and practice,1 +knowledge organization,2 +knowledge systems institute,0 +knowledge-based systems,2 +knygotyra,1 +kobe hogaku zassi,0 +kobundo,0 +kobunshi ronbunshu,0 +kochi daigaku kyoiku gakubu kenkyu hokoku,0 +kodai mathematical journal,1 +kodansha,0 +kodikas/code: ars semeiotica,1 +kodin pellervo,-1 +kodomogaku kenkyu,0 +koedoe,1 +kogan page,0 +kognitiivinen psykoterapia: tieteellinen verkkolehti,1 +kognitiivis-analyyttisen psykoterapiayhdistyksen julkaisuja,-1 +kognition & pædagogik,0 +kohlhammer,1 +kohtaamisia,-1 +koillis-helsingin lähitieto,-1 +koillissanomat,-1 +koiramme,-1 +koiviston viesti,-1 +koivu,-1 +kok,0 +kokalos,1 +kokemäkeläinen,-1 +kokkola,-1 +kokkolan kaupunki,0 +kokoro,-1 +kokos julkaisuja,0 +kokshetauskij gosudarstvennyj universitet im. sh. ualihanova,0 +kol`skij nauchny`j centr ran,0 +koleopterologische rundschau,0 +kollesis editrice,0 +kolner jahrbuch,1 +kolner zeitschrift fur soziologie und sozialpsychologie,1 +kolon,1 +kome,1 +komi respublikanskaya akademiya gosudarstvennoj sluzhby` i upravleniya,0 +komiat,-1 +kommentár,0 +kommunal ekonomi,-1 +kommunikativnye issledovaniâ,1 +kommuntorget,-1 +komparatistik,1 +kompjuternaja lingvistika i intellektualnye tehnologii,1 +kompositio,-1 +kompʹûternaâ optika,0 +kompʹûternye instrumenty v obrazovanii,0 +kon acad wetenschappen letteren,0 +kona powder and particle journal,1 +koneyrittäjä,-1 +konferenser / kungl. vitterhets historie och antikvitets akademien,1 +kongelige danske videnskabernes selskab,1 +kongzhi lilun yu yingyong,0 +konińskie studia językowe katedry filologii pwsz w koninie,1 +konkurentnoe pravo,0 +konneveden joulu,-1 +konrad theiss verlag,1 +konrad-adenauer-stiftung,0 +konsepti,0 +konservaattori,-1 +konsthistorisk tidskrift,3 +konsulʹtativnaâ psihologiâ i psihoterapiâ,1 +kontakt,1 +konteksty: polska sztuka ludowa,1 +kontur,-1 +"kontury globalʹnyh transformacij: politika, èkonomika, pravo",1 +konya teknik üniversitesi,0 +kopaed,1 +kopijyvä,0 +kopp mária intézet a népesedésért és a családokért,0 +korall,0 +korea europe review,1 +korea institute for health and social affairs publishing,0 +korea journal,1 +korea maritime institute,0 +korea national open university press,0 +korea observer,1 +korea-australia rheology journal,1 +korea-forum,-1 +korean circulation journal,1 +korean geotechnical society,0 +korean institute of bridge and structural engineers,0 +korean institute of chemical engineers,0 +korean institute of ciriminology,0 +korean journal for food science of animal resources,1 +korean journal of anesthesiology,1 +korean journal of chemical engineering,1 +korean journal of defense analysis,1 +korean journal of horticultural science and technology,1 +korean journal of medical history,1 +korean journal of metals and materials,1 +korean journal of parasitology,0 +korean journal of physiology & pharmacology,0 +korean journal of radiology,1 +korean journal of teacher education,0 +korean language education,0 +korean linguistics,1 +korean society for rock mechanics,0 +korean society of aesthetics,0 +korean studies,1 +korean women´s development institute,0 +korjaamo ja varaosaviesti,-1 +korkeakoulujen arviointineuvoston julkaisuja,0 +korpilahti,-1 +korporativnoe upravlenie i innovacionnoe razvitie èkonomiki severa,0 +korporativnye finansy,0 +korrozios figyelo,1 +kortesjärven joulu,-1 +korunk,0 +"koseisha koseikaku co., ltd.",0 +kosmetologi sky,-1 +kosmopolis,1 +kosmorama,1 +kosmoskynä,-1 +koti ja maaseutu,-1 +koti-kajaani,-1 +kotikielen seura,0 +kotikulmilta,-1 +kotilääkäri,-1 +kotimaa,-1 +kotimaisten kielten keskuksen verkkojulkaisuja,-1 +kotimaisten kielten keskus,1 +kotipuutarha,-1 +kotiseudun kasvot,-1 +kotiseudun sanomat,-1 +kotiseutu,-1 +kotiseutu-uutiset,-1 +kotiseutuposti,-1 +kotitilalta,-1 +koulu ja menneisyys,1 +koululainen,-1 +koulutuksen arviointineuvosto,0 +koulutuksen arviointineuvoston julkaisuja,0 +koulutuksen tutkimuslaitos,0 +kouvola,-1 +kouvolan kaupunginmuseon julkaisuja,-1 +kouvolan sanomat,-1 +kovac,0 +kovove materialy-metallic materials,1 +kragujevac filološko-umetnički fakultet,0 +krakowski instytut prawa karnego fundacja,0 +krasnodarskij gosudarstvenny`j universitet kul`tury` i iskusstv,0 +kratylos: kritisches berichts- und rezensionsorgan fur indogermanische und allgemeine sprachwissenschaft,1 +kreativnaâ hirurgiâ i onkologiâ,0 +kregel publications,0 +kreodi,-1 +kriminalistik,1 +kriminologia,1 +kriminologian ja oikeuspolitiikan instituutin tutkimuksia,0 +kriminologija & socijalna integracija,0 +kriminologijos studijos,1 +kriminologisches journal,1 +kriosfera zemli,0 +kris och kritik,0 +krisis: tijdschrift voor actuele filosofie,1 +kristeligt dagblad,-1 +kriterion: revista de filosofia,1 +kriterion: zeitschrift fur philosophie,1 +kritiikin uutiset,-1 +kritiikki,-1 +kritik,1 +kritika kultura,1 +kritika: explorations in russian and eurasian history,2 +kritische berichte,1 +kritisk forum for praktisk teologi,1 +kritisk juss,1 +kronika,1 +kronikka,-1 +kronoscope: journal for the study of time,1 +krītika chronika,1 +ksce journal of civil engineering,1 +ksii transactions on internet and information systems,1 +księgarnia akademicka,0 +ksoidin,-1 +"ktema: civilisations de l orient, de la grece et de rome antiques",1 +ku leuven,0 +ku leuven soc onderzoekinstituut,0 +kuckuck,0 +kuenstliche intelligenz,1 +kuhmoisten sanomat,-1 +kuhmolainen,-1 +kuidas korraldada kultuuri?,-1 +kuivike,-1 +kul`t-inform-press,0 +kula,0 +kuljetus ja logistiikka,-1 +kuljetusyrittäjä,-1 +kultaneito,1 +kulttuurihistoria nyt,-1 +kulttuurihistorian seura,0 +kulttuuriklubi,0 +kulttuurintutkimus,2 +kulttuuripoliittisen tutkimuksen edistämissäätiö,0 +kulttuuripolitiikan tutkimuksen vuosikirja,1 +kulttuurista perinnöksi,-1 +kulttuurivihkot,-1 +kultur.region.niederösterreich,0 +kultura,0 +kultura bezpieczeństwa,1 +kultura i społeczeństwo,1 +kultura slova,1 +"kultura, społeczeństwo, edukacja",0 +kultura. historia. globalizacja,1 +kulturella perspektiv: svensk etnologisk tidsskrift,1 +kulturens frontlinjer,1 +kulturhistoriske studier i centralitet,0 +kulturstiftung sibirien,1 +kulturstudier,1 +kuluttaja,-1 +kuluttajatutkimuskeskus,0 +kulutustutkimus.nyt,1 +kuml: arbog for jysk arkaeologisk selskab,1 +kummi,-1 +kummin,-1 +kunde: zeitschrift fur ur- und fruhgeschichte,0 +kungl. gustav adolfs akademien för svensk folkkultur,1 +kungl. samfundet för utgivandet av handskrifter rörande skandinaviens historia,1 +kungl. tekniska högskolan i stockholm (kth),0 +kungl. vitterhets historie och antikvitets akademien,1 +kungliga krigsvetenskapsakademiens handlingar och tidskrift,1 +kungliga musikhögskolan,0 +kungliga skogs- och lantbruksakademien,1 +kungliga skogs- och lantbruksakademiens tidskrift,1 +kunnallisalan kehittämissäätiö,0 +kunnallisalan kehittämissäätiön julkaisu,-1 +kunnallisalan kehittämissäätiön polemia-sarja,-1 +kunnallisalan kehittämissäätiön tutkimusjulkaisut,0 +kunnallislehti,-1 +kunnon perhetila,-1 +kunnossapitoyhdistys promaint ry,0 +kunst,-1 +kunst og kultur,1 +kunst und kirche,-1 +kunst und politik,1 +kunstakademiets arkitektskoles forlag,1 +kunstchronik,1 +kunsten,0 +kunsthåndverk,1 +kunsthøgskolen i oslo,0 +kunstiteaduslikke uurimusi,1 +kunstkritikk,-1 +kuntalehti,-1 +kuntatekniikka,-1 +kuntoutus,1 +kuntoutussäätiö,0 +kuntoutusta kehittämässä,-1 +kuoriti edyukeshon,0 +kuortaneen kunta,0 +kupoli,-1 +kuram ve uygulamada egitim bilimleri,0 +kuramdan uygulama eğitim yönetimi,-1 +kurdish studies,1 +kurdish studies journal,1 +kurikan kaupunki,0 +kurikka-lehti,-1 +kuriositeettikabi,-1 +kuriren,-1 +kurjenpolvet,-1 +kurosio publishers,1 +kustannus oy duodecim,0 +kustannus oy maamerkki,0 +kustannus oy rajalla,0 +kustannus oy uusi tie,0 +kustannus-puntsi,0 +kustannusliike parkko,0 +kustannusosakeyhtiö atlasart,0 +kustannusosakeyhtiö auditorium,0 +kustannusosakeyhtiö medicina oy,0 +kustannusosakeyhtiö taide,0 +kustannusyhtiö ta-tieto oy,0 +kutadgubilig: felsefe - bilim arastirmalari dergisi,1 +kutafin university law review,1 +kuti,-1 +kuurojen lehti,-1 +kuurojen liitto ry.,0 +kuurtanes-seuran joulu,-1 +kuvataideakatemia,0 +kuvittaja,-1 +kuwait conference on e-services and e-systems,0 +kuwait medical journal,0 +kvan,1 +kvartti,0 +"kvinder, kon og forskning",1 +kwartalnik historii nauki i techniki - kwartalnyi zhurnal istorii nauki i tekhniki -,1 +kwartalnik historyczny,1 +kwartalnik neofilologiczny,1 +kybernetes,1 +kybernetika,1 +kyklos,1 +kylkirauta,0 +kylmäextra,-1 +kylväjä,-1 +kymen sanomat,-1 +kymenlaakson ammattikorkeakoulu,0 +kymenlaakson luonto,-1 +kynnys ry,0 +kyoto journal of mathematics,1 +kyoto sangyo daigaku,0 +kyrkohistorisk årsskrift,1 +kyrkpressen,-1 +kytösavut,-1 +kyungpook mathematical journal,1 +kyushu journal of mathematics,1 +kyvyt käyttöön,-1 +káñina,1 +källan,-1 +käpy-lehti,-1 +käpylä-lehti,-1 +kätilölehti,-1 +käypä hoito,1 +käyttäytymisanalyysi ja -terapia,1 +käytännön maamies,-1 +käännöstieteen tutkimus,1 +kääntäjä,0 +kåkenhus-kirjat,0 +königshausen & neumann,1 +københavns universitet,0 +kültür ve turizm bakanlığı,0 +künnimees,0 +kōdō kagaku,0 +k̦araġandy universitetinin̦ habaršysy : filologiâ seriâsy,0 +k̦azu̇u habaršysy,0 +ķaraġandy universitetìnìn̦ habaršysy : himiâ seriâsy,0 +l alighieri : rassegna bibliografica dantesca,1 +l'analisi linguistica e letteraria,0 +l'atelier du crh,0 +l'europe en formation,1 +l'information psychiatrique,-1 +l'obs,-1 +l'universo,0 +l1 educational studies in languages and literature,1 +l2 journal,1 +l3 soluções em tecnologia ltda,0 +la bibliofilia: rivista di storia del libro e di bibliografia,1 +la clinica terapeutica,1 +"la corónica: a journal of medieval hispanic languages, literatures, and cultures",1 +la documentation francaise,1 +la ergástula,0 +la faute à rousseau,-1 +la fundación para el desarrollo económico y social hispano-marroquí,0 +la ley,0 +la librairie vuibert,1 +la matematica,1 +la matematica e la sua didattica,0 +la metallurgia italiana,0 +la musa talìa,0 +la nouvelle revue de l’adaptation et de la scolarisation,0 +la nuova critica,1 +la nuova critica: rivista di scienze dell uomo e di filosofia delle scienze,1 +la parola del testo,1 +la pieve poligrafica editore,0 +la prensa médica argentina,0 +la provincia sannita,0 +la razón digit@l,-1 +la revista icono 14,1 +la revolution francaise,1 +la revue des lettres modernes : gustave flaubert,1 +la revue internationale et stratégique,0 +la revue lisa,1 +la ricerca folklorica,1 +laari,0 +lab animal,1 +lab on a chip,2 +lab pro,-1 +lab world magazine,0 +lab-ammattikorkeakoulun julkaisusarja,0 +labirint,0 +labmedicine,1 +labor et fides,0 +labor history,3 +labor studies journal,1 +labor: studies in the working class history of the americas,1 +laboratoire de recherche historique rhône-alpes,0 +"laboratorio dell'ispf, rivista elettronica di testi, saggi e strumenti",1 +laboratorium,1 +laboratorium för folk och kultur,0 +laboratoriumsmedizin-journal of laboratory medicine,1 +laboratory animals,1 +laboratory hematology,1 +laboratory investigation,1 +laboratory phonology,1 +labour,1 +labour and industry: a journal of the social and economic relations of work,1 +labour economics,2 +labour history,1 +labour history review,1 +labour publishing house,0 +labour-le travail,1 +labyrinth : teorii i praktiki kulʹtury,0 +labyrinth press,1 +labyrintti,-1 +ladan,0 +lafrica romana,1 +lag och bok,0 +lahden ammattikorkeakoulu,0 +"lahden ammattikorkeakoulun julkaisu. sarja c, artikkelikokoelmat, raportit ja muut ajankohtaiset julkaisut",0 +lahden diakoniasäätiön julkaisuja,-1 +lahden historiallisen museon julkaisuja,0 +lahden kaupunginmuseon tutkimuksia,-1 +lahden kaupunki,0 +lahden taidemuseon julkaisuja,-1 +lahti venture capitals,0 +laitilan sanomat,-1 +lajiluettelo,-1 +lake and reservoir management,1 +lakehead university centre for northern studies,0 +lakes and reservoirs: research and management,1 +lakeuren lairalla,-1 +lakiasiainhuone oy,0 +lakimies,2 +lakimiesliiton kustannus,1 +lambda nordica: tidskrift om homosexualitet,1 +lambert-lucas,1 +lammas ja vuohi,-1 +lammin kotiseutulehti,-1 +lampas: tijdschrift voor nederlandse classici,1 +lampin raitti,-1 +lamy,1 +lan,1 +lancaster university,0 +lancet : child & adolescent health,3 +lancet microbe,3 +land,0 +land degradation and development,1 +land economics,1 +land use policy,2 +landbauforschung,0 +landbohistorisk tidskrift,1 +landesamt für denkmalpflege und archäologie sachsen-anhalt,0 +landesverteidigungsakademie,0 +landfall,1 +landing,-1 +"landolt-bornstein: group i elementary particles, nuclei and atoms",1 +landolt-bornstein: group ii molecules and radicals,1 +landolt-bornstein: group iii condensed matter,1 +landolt-bornstein: group iv physical chemistry,1 +landolt-bornstein: group vi astronomy and astrophysics,1 +landolt-bornstein: group vii biophysics,1 +landolt-bornstein: group viii advanced materials and technologies,1 +landsbygdens folk,-1 +landscape and ecological engineering,1 +landscape and urban planning,3 +landscape architecture and art,1 +landscape architecture frontiers,1 +landscape architecture magazine,0 +landscape ecology,2 +landscape history,2 +landscape journal,1 +landscape online,1 +landscape research,2 +landscape review,1 +landscapes,1 +landsforeningen af læsepædagoger,0 +landskab,-1 +landslides,2 +landwirtschaftliche forschung,1 +langaa research and publishing common initiative group,0 +langage et societe,1 +langages,3 +langenbecks archives of surgery,1 +langmuir,2 +language,3 +language & ecology,0 +language acquisition,2 +language acquisition and language disorders,1 +language and cognition,2 +language and communication,3 +language and computers,1 +language and dialogue,1 +language and education,2 +language and health,1 +language and history,1 +language and intercultural communication,2 +language and law,0 +language and linguistics,1 +language and linguistics compass,1 +language and linguistics in melanesia,0 +language and literacy,1 +language and literature,3 +language and psychoanalysis,1 +language and semiotic studies,0 +language and sociocultural theory,1 +language and speech,3 +language arts,1 +language assessment quarterly,1 +language awareness,1 +language culture and curriculum,1 +language development research,0 +language discourse & society,1 +language documentation and conservation,2 +language documentation and description,2 +language dynamics and change,2 +language ecology.,0 +language education and multilingualism,0 +language education and technology (let journal),0 +language forum,0 +language in africa,0 +language in society,3 +language learning,3 +language learning and development,1 +language learning and language teaching,1 +language learning and teaching conference,0 +language learning and technology,2 +language learning in higher education,1 +language learning journal,1 +language matters,1 +language on the move,-1 +language policy,3 +language problems and language planning,1 +language research,1 +language resources,0 +language resources and evaluation,3 +language science press,2 +language sciences,3 +language speech and hearing services in schools,1 +language teaching,3 +language teaching for young learners,1 +language teaching research,3 +language teaching tomorrow,-1 +language testing,2 +language testing in asia,1 +language typology and universals,2 +language under discussion,1 +language value,1 +language variation and change,3 +"language, cognition and neuroscience",1 +"language, context and cognition",1 +"language, context and text",1 +"language, culture and society",1 +"language, individual and society",0 +"language, interaction and aquisition",1 +"language: codification, competence, communication",0 +language@internet,1 +languages,0 +languages in contrast: international journal for contrastive linguistics:,1 +languages of the caucasus,0 +languages of the world,1 +"languages, society & policy",0 +langue francaise,3 +langue(s) & parole,0 +langues et linguistique,0 +langues modernes,0 +lannee stendhalienne,1 +lannoo,0 +lannée épigraphique,1 +lantbrukskalender,-1 +lap lambert academic publishing,0 +lapillinen,-1 +lapin ammattikorkeakoulun julkaisuja,0 +lapin ammattikorkeakoulun julkaisuja : muut julkaisut,-1 +lapin ammattikorkeakoulun julkaisuja : sarja a. referee-tutkimukset,0 +lapin ammattikorkeakoulun julkaisuja : sarja b tutkimusraportit ja kokoomateokset,0 +lapin kansa,-1 +lapin nuija,-1 +lapin tutkimusseura ry,0 +lapin yliopisto,0 +lapin yliopiston kasvatustieteellisiä julkaisuja,0 +lapin yliopiston oikeustieteellisiä julkaisuja,-1 +lapin yliopiston taiteiden tiedekunnan julkaisuja c : katsauksia ja puheenvuoroja,0 +lapin yliopiston yhteiskuntatieteellisiä julkaisuja,-1 +lapin yliopiston yhteiskuntatieteellisiä julkaisuja b : tutkimusraportteja ja selvityksiä,0 +lapinkoira,-1 +lapland university press,1 +lappajärven joulu,-1 +lappeenrannan kaupunki,0 +lappeenrannan teknillinen yliopisto,0 +lapsen maailma,0 +lapsiasiavaltuutetun toimiston julkaisuja,-1 +lapuan joulu,-1 +lapuan sanomat,-1 +larcier,0 +large animal review,1 +large-scale assessments in education,1 +larhyss journal,0 +lars müller publishers,0 +laryngo-rhino-otologie,1 +laryngoscope,2 +laryngoscope investigative otolaryngology,1 +las torres de lucca,1 +laser and particle beams,1 +laser and photonics reviews,3 +laser chemistry,1 +laser focus world,0 +laser institute of america,0 +laser physics,1 +laser physics letters,1 +lasers in dental science,1 +lasers in engineering,1 +lasers in manufacturing and materials processing,1 +lasers in medical science,1 +lasers in surgery and medicine,1 +lasin maailma,-1 +lasirakentaja,-1 +lasten asialla,-1 +lasten keskus,0 +lastenkirjainstituutin julkaisuja,0 +lastenkirjainstituutti,0 +lastensuojelun keskusliiton verkkojulkaisu,-1 +lastronomie,0 +late antique archaeology,1 +late imperial china,1 +later medieval europe,1 +laterality,1 +laterza,0 +latest trends in textile and fashion designing,0 +latin american and caribbean ethnic studies,1 +latin american antiquity,2 +latin american applied research,1 +latin american computing conference,0 +latin american indian literatures journal,1 +latin american journal of aquatic research,1 +latin american journal of content and language integrated learning,1 +latin american journal of management for sustainable development,1 +latin american journal of solids and structures,1 +latin american literary review,1 +latin american music review,1 +latin american perspectives,1 +latin american politics and society,1 +latin american research review,1 +latin american theatre review,1 +latin trade,1 +latin-american journal of physics education,1 +latino studies,1 +latinoamerica: anuario de estudios latinoamericanos,1 +latissimus,-1 +latium,0 +latomus,2 +latvian journal of physics and technical sciences,0 +latviešu valodas agentura,0 +latvijas arhivi,1 +latvijas arpolitikas instituts,0 +latvijas kara muzejs,0 +latvijas kristīgā akadēmija,0 +latvijas lauksaimniecības universitāte,0 +latvijas universitate,0 +latvijas universitates latvijas vestures instituts,0 +latvijas universitetes raksti,1 +"latvijas zinātn̦u akadēmijas vēstis. a dal̦a, humanitārās zinātnes",1 +latšo diives,-1 +laulupedagogi,-1 +laurea journal,-1 +laurea julkaisut,0 +laurea long,-1 +laurea-ammattikorkeakoulu,0 +lauttakylä,-1 +laval theologique et philosophique,1 +lavenc,1 +law & history,1 +law and business review of the americas,1 +law and contemporary problems,2 +law and critique,2 +law and history review,2 +law and human behavior,2 +law and literature,2 +law and philosophy,3 +law and policy,2 +law and practice of international courts and tribunals,1 +law and social inquiry: journal of the american bar foundation,1 +law and society review,3 +law business research,0 +law in context,1 +law in eastern europe,1 +law library journal,1 +law of ukraine,0 +law press china,1 +law quarterly review,2 +law text culture,1 +"law, culture and the humanities",1 +"law, democracy & development",0 +"law, environment and development journal",1 +"law, ethics and philosophy",1 +"law, innovation and technology",2 +"law, probability and risk: a journal of reasoning under uncertainty",1 +"law, social justice and global development",1 +"law, technology and humans",1 +lawrence and wishart,1 +lawrence erlbaum associates,2 +laws,0 +länsi-savo,-1 +lc gc europe,0 +lc gc north america,0 +le courrier de la nature,0 +le courrier de la transplantation,0 +le discours et la langue,1 +le droit maritime francais,1 +le forme e la storia,1 +le français aujourd´hui,1 +le français dans le monde,0 +le français dans le monde. recherches et applications,1 +le français à l'université,-1 +le grand continent,-1 +le infezioni in medicina,0 +le langage et lhomme,1 +le mauricien,-1 +le monde diplomatique,-1 +le monde diplomatique & novaja gazeta,-1 +le monnier università,0 +le sans-visage,0 +lea,1 +leadec leadership development center oy,0 +leadership,1 +leadership and management in engineering,1 +leadership and organization development journal,1 +leadership and policy in schools,1 +leadership and the humanities,1 +leadership in health services,1 +leadership quarterly,3 +lean construction journal,1 +learned publishing,1 +learner development journal,1 +learning,1 +learning and behavior,1 +learning and individual differences,3 +learning and instruction,3 +learning and memory,2 +learning and motivation,1 +learning and teaching in higher education,1 +learning and teaching journal,0 +learning and teaching: the international journal of higher education in the social sciences,1 +learning disabilities research and practice,2 +learning disability quarterly,2 +learning environments research,2 +learning inquiry,1 +learning landscapes,1 +learning letters,-1 +learning organization,1 +learning tech,0 +"learning, culture and social interaction",1 +"learning, media and technology",1 +leaves,1 +lebende sprachen,1 +lectio difficilior,1 +lecture notes,-1 +lecture notes in bioinformatics,1 +lecture notes in business information processing,1 +lecture notes in civil engineering,1 +lecture notes in computational science and engineering,1 +lecture notes in computational vision and biomechanics,0 +lecture notes in computer science,1 +lecture notes in control and information sciences,1 +lecture notes in control and information sciences - proceedings,0 +lecture notes in economics and mathematical systems,1 +lecture notes in educational technology,1 +lecture notes in electrical engineering,1 +lecture notes in engineering and computer science,0 +lecture notes in geoinformation and cartography,1 +lecture notes in informatics,1 +lecture notes in information systems and organisation,1 +lecture notes in intelligent transportation and infrastructure,0 +lecture notes in logistics,0 +lecture notes in management science,0 +lecture notes in mathematics,1 +lecture notes in mechanical engineering,1 +lecture notes in mobility,1 +lecture notes in networks and systems,1 +lecture notes in physics,1 +lecture notes in production engineering,1 +lecture notes in pure and applied mathematics,1 +"lecture notes of the institute for computer sciences, social informatics and telecommunications engineering",1 +lecture notes on data engineering and communications technologies,1 +lecture notes on multidisciplinary industrial engineering,0 +led edizioni universitarie,0 +led professional review,0 +ledger,1 +ledizioni,1 +leeds international classical studies,1 +leeds studies in english,1 +leeds university press,0 +left coast press,1 +leftword books,0 +legacy,1 +legal and criminological psychology,2 +legal aspects of international organization,1 +legal education review,-1 +legal ethics,1 +legal information management,1 +legal issues of economic integration,1 +legal medicine,1 +legal pluralism and critical social analysis,1 +legal roots,0 +legal studies,2 +legal theory,3 +legalities,1 +legatio,1 +lege artis,0 +lege artis medicinae,0 +legenda,1 +legislative studies quarterly,3 +legon journal of sociology,1 +legume perspectives,0 +legume research,1 +legume science,1 +lehtimäen joulu,-1 +leia,-1 +leibniz international proceedings in informatics,1 +leibniz online,-1 +leibniz review,1 +leibniz-institut für deutsche sprache,1 +leiden journal of international law,2 +leiden university press,1 +leija,-1 +leipuri,-1 +leipziger universitätsverlag gmbh,0 +leipä leveämmäksi,-1 +leirikoulu,-1 +leisure,1 +leisure sciences,2 +leisure studies,1 +leitura,0 +lejand yayincilik,0 +leksrus,0 +lelkipásztor: evangélikus lelkészi szakfolyóirat,1 +lempäälän joulu,-1 +lempäälän-vesilahden sanomat,-1 +lenand,0 +lendemains: etudes comparees sur la france,1 +lengas: revue sociolinguistique,1 +lengua y migración,1 +lenguaje y textos,1 +lenguas modernas,1 +lenninsiipi,-1 +lenseignement mathematique,1 +lentoratas,-1 +leo s. olschki,1 +leonardo,3 +leonardo electronic almanac,1 +leonardo libri,0 +leonardo reviews,0 +lepakot,-1 +leprosy review,1 +ler historia,1 +lernen und lernströrungen,1 +les ateliers de l'éthique,1 +les belles lettres,1 +les cahiers d`épilepsie,1 +les cahiers de champs visuels,1 +les cahiers de framespa,1 +les cahiers de la sécurité et de la justice,0 +les cahiers du gerad,0 +les cahiers du rifal,1 +les cahiers forellis,0 +les cahiers irice,0 +les cahiers jean-marie gustave le clézio,0 +les carnets de l'acost,0 +les champs de mars,1 +les dossiers d'archéologie,-1 +les houches,1 +les liens qui libèrent,0 +les politiques sociales,0 +les presses du réel,0 +leshonenu,1 +leslla symposium proceedings,0 +lesnoe hozâjstvo,0 +lesovedenie,0 +lesprominform,-1 +lessing yearbook,1 +lestadiolainen uusheräys ry,0 +lestijoki,-1 +lestin mutti,-1 +lethaia,1 +letonica,1 +letra e voz,1 +letras,0 +letras & letras,0 +letras (santa maria),0 +letras cubanas,1 +letras de hoje,0 +letras femeninas,1 +letrônica,0 +letteratura italiana antica,1 +letterature d america,1 +lettere italiane,2 +letters in applied microbiology,1 +letters in biomathematics,1 +letters in drug design and discovery,1 +letters in high energy physics,1 +letters in mathematical physics,1 +letters in organic chemistry,1 +lettres modernes minard,1 +leukemia,3 +leukemia & lymphoma,1 +leukemia research,1 +leukemia research reports,0 +leukos,1 +leuven university press,1 +leuvense bijdragen: tijdschrift voor germaanse filologie,1 +levant,2 +levende talen magazine,-1 +levende talen tijdschrift,0 +levi,-1 +leviathan: a journal of melville studies,1 +leviathan: zeitschrift fur sozialwissenschaft,1 +levéltári szemle,0 +levón-instituutin julkaisut,0 +lex electronica,0 +lex localis: journal of local self: government,1 +"lex nova, s.a.u.",0 +lex portus,1 +lex russica,0 +lex scientia law review,1 +lexia,1 +lexicographica: internationales jahrbuch fur lexikographie,1 +lexicographica: series maior: supplementbände zum internationalen jahrbuch für lexikographie,1 +lexicometrica,1 +lexiconordica,1 +lexikos,0 +lexington books,1 +lexique,1 +lexis,1 +lexis: revista de linguistica y literatura,1 +lexisnexis butterworths,1 +lexonomica,1 +lexpress,-1 +lexxion verlagsgesellschaft,0 +leykam buchverlag,0 +lfe,0 +lgbt health,1 +lgbtq + family,1 +lhistoire,1 +lhumaine,0 +liames,1 +lianes,1 +lias: journal of early modern intellectual culture and its sources,1 +liber,1 +liber quarterly,1 +libera-säätiö,0 +libero,-1 +libertarian papers,1 +liberte,1 +liberà università maria ss. assunta : lumsa,0 +libraccio editore,0 +libraries unlimited,0 +library,1 +library and archival security,1 +library and information research,1 +library and information science,1 +library and information science research,3 +library hi tech,1 +library journal,1 +library management,1 +library philosophy and practice,0 +library quarterly,1 +library resources and technical services,1 +library trends,1 +libreria editrice vaticana,1 +libreriauniversitaria.it,0 +libres,1 +libri,1 +libri & documenti,0 +libri et liberi,1 +libri publishing,0 +libri shkollor,0 +libya antiqua: annual of the department of antiuities of libya,1 +libyan journal of medicine,0 +libyan studies,1 +lidel,0 +lidil,1 +lied und populare kultur-song and popular culture,1 +liekki,-1 +lienart éditions,0 +liettua lehti,-1 +lietuvos archaeologija,1 +lietuvos edukologijos universitetas,0 +lietuvos edukologijos universiteto leidykla,0 +lietuvos etnologija: socialines antropologija i etnologija studijos,1 +lietuvos istorijos studijos,-1 +lietuvos kompiuterininkų sąjunga,0 +life,0 +life medicine,1 +life science alliance,1 +life science journal: acta zhengzhou university overseas edition,0 +life sciences,1 +"life sciences, society and policy",1 +life writing,2 +lifespans & styles,0 +lifestyle genomics,1 +lifestyle medicine,1 +lifetime data analysis,1 +lifewriting annual,-1 +ligeia: dossiers sur lart,1 +light and engineering,1 +light: advanced manufacturing,1 +light: science & applications,3 +lighting research and technology,2 +lignes,0 +liha ja ruoka,-1 +liikejuridiikka,1 +liikekieli,-1 +liikenne,1 +liikenne- ja viestintäministeriön julkaisuja,-1 +liikenne/kaupunki,0 +liikenneturvan selvityksiä,-1 +liikennevilkku,-1 +liikenneviraston tutkimuksia ja selvityksiä,0 +liikkeessä yli rajojen,-1 +liikunnan ammattilainen,-1 +liikunnan ja kansanterveyden edistämissäätiö,0 +liikunnan ja kansanterveyden julkaisuja,0 +liikunta ja tiede,1 +liikuntatieteellinen seura,1 +liikuntatieteellisen seuran julkaisuja,0 +liikuntatieteellisen seuran tutkimuksia ja selvityksiä,-1 +liito,-1 +liiton arkki,-1 +liitos,-1 +like,0 +lilith: a feminist history journal,1 +lilja,-1 +lilloa,0 +lilun yuekan,0 +lim editrice,0 +limba romana,1 +limes plus,0 +liminalities,1 +limnetica,1 +limnologica,1 +limnological review,0 +limnology,1 +limnology and freshwater biology,0 +limnology and oceanography,3 +limnology and oceanography letters,1 +limnology and oceanography: methods,1 +limor kustannus,0 +lincom,1 +lindbergia,1 +linde verlag,1 +linear algebra and its applications,2 +linear and multilinear algebra,1 +linformation litteraire,1 +lingua,1 +lingua aegyptia,1 +lingua americana,1 +lingua e stile,1 +lingua et linguistica,1 +lingua nostra,1 +lingua posnaniesia,1 +lingua sinica,1 +linguamática,1 +linguas e literaturas: revista da faculdade de letras,1 +lingue antiche e moderne,0 +lingue culture mediazioni,0 +lingue e linguaggi,1 +lingue e linguaggio,1 +linguistic analysis,1 +linguistic and philosophical investigations,1 +linguistic approaches to bilingualism,1 +linguistic approaches to literature,1 +linguistic association of korea journal,1 +linguistic discovery,1 +linguistic frontiers,1 +linguistic inquiry,3 +linguistic insights: studies in language and communication,1 +linguistic issues in language technology,1 +linguistic landscape,1 +linguistic minorities in europe online,0 +linguistic review,3 +linguistic typology,3 +linguistic typology at the crossroads,0 +linguistic variation,1 +linguistica,1 +linguistica anverpiensia new series,1 +linguistica biblica,1 +linguistica e filologia,1 +linguistica espanola actual,1 +linguistica lettica,1 +linguistica occitana,0 +linguistica online,1 +linguistica palatina,1 +linguistica pragensia,1 +linguistica silesiana,1 +linguistica uralica,1 +linguistica y literatura,1 +linguistica zero,1 +linguistics,3 +linguistics and education,2 +linguistics and philology,1 +linguistics and philosophy,3 +linguistics and the human sciences,1 +linguistics applied,1 +linguistics in the netherlands,1 +linguistics of the tibeto-burman area,1 +linguistics vanguard,1 +"linguistics, archaeology and the human past",0 +"linguistics, culture & education",0 +linguistik aktuell,1 +linguistik online,1 +linguistique,1 +linguistique et langues africaines,1 +linguistische arbeiten,2 +linguistische berichte,1 +lingvisticae investigationes,1 +lingvisticae investigationes supplementa,1 +lingvistik',0 +lingwistyka stosowana,1 +lingüística en la red,0 +linha d'agua,1 +linköping electronic conference proceedings,1 +linköping university electronic press,0 +linköpings universitet,0 +linnaeus university press,0 +linnut,0 +linnut-vuosikirja,0 +linquistique africaine,1 +linux journal,0 +linux symposium,0 +linx,1 +linye kexue,0 +lion and the unicorn,1 +lipetsk state pedagogical university,0 +lipid insights,0 +lipids,2 +lipids in health and disease,1 +lippincott williams & wilkins,1 +liquid crystals,1 +liquid crystals reviews,1 +lir.journal,0 +liric,0 +lishi yanjiu,0 +listos,0 +listy cukrovarnicke a reparske,1 +listy filologicke,1 +lit verlag,2 +lit: literature interpretation theory,1 +literacy,1 +literacy education and second language learning for adults,1 +literacy information and computer education journal,0 +literacy research and instruction,1 +literacy today,-1 +literarus,0 +literarus-literaturnoje slovo,-1 +literary and linguistic computing,2 +literary geographies,1 +literary imagination,1 +literary journalism studies,1 +literary research,1 +literatur fur leser,1 +literatur und kritik,1 +literatura,1 +literatura mexicana,1 +literatura y linguistica,1 +literature and aesthetics,1 +literature and arts review,0 +literature and history: third series,2 +literature and medicine,2 +literature and theology,3 +"literature, critique, and empire today",2 +literature-film quarterly,1 +literaturkritik.de,0 +literaturnyj fakt,0 +lithic technology,1 +lithics,1 +lithology and mineral resources,1 +lithos,0 +lithos,2 +lithosphere,1 +lithuanian annual strategic review,1 +lithuanian historical studies,1 +lithuanian journal of physics,1 +lithuanian mathematical journal,1 +lithuanian national museum of art,0 +litnet,0 +litteraria copernicana,1 +litteraria pragensia: studies in literature and culture,1 +litterature,2 +litteratures,1 +litteratures classiques,1 +lituanus,1 +liturgical press,0 +liturgy,1 +liver cancer,1 +liver international,1 +liver transplantation,2 +liverpool university press,1 +livers,0 +livestock research for rural development,1 +livestock science,1 +living reviews in computational astrophysics,1 +living reviews in relativity,3 +living reviews in solar physics,3 +livraria almedina,0 +ljetopis socijalnog rada,1 +ljubljana university press,0 +llen cymru,1 +lletres asturianes,1 +lloyds maritime and commercial law quarterly,2 +llull: boletin de la sociedad espanola de historia de las ciencias,1 +lms journal of computation and mathematics,1 +lncs transactions on aspect-oriented software development,1 +lncs transactions on edutainment,1 +lo sguardo,1 +lo squaderno,1 +loa,-1 +loading...,0 +lobachevskii journal of mathematics,1 +lobachevsky state university of nizhni novgorod,0 +local and regional anesthesia,1 +local development & society,1 +local economy,1 +local environment,1 +local government studies,2 +local population studies,1 +loccumer pelikan,-1 +locke studies: an annual journal of locke research,1 +lodz papers in pragmatics,1 +lodz studies in language,1 +lodz university press,0 +log,1 +logforum,0 +logic and logical philosophy,1 +logic and philosophy of science,1 +logic journal of the igpl,2 +logica universalis,1 +logical analysis and history of philosophy,1 +logical methods in computer science,1 +logique et analyse,1 +logisma editore,0 +logistics,0 +logistics & sustainable transport,1 +logistics and transport focus,0 +logistics europe,0 +logistics research,1 +logistique et management,0 +logistyka,0 +logičeskie issledovaniâ,1 +logopedics phoniatrics vocology,1 +logos,1 +logos (yorkton),1 +logos and pneuma: chinese journal of theology,1 +logos pljus,0 +logos verlag berlin,1 +logos-ensyklopedia,0 +logos: a journal of catholic thought and culture,1 +logos: anales del seminario de metafisica,1 +logos: vilnius,1 +lohjan saaristo,-1 +loimu,-1 +loisir et societe,1 +lokalhistorisk magasin,-1 +lombardo accademia di scienze e lettere,0 +lommen,-1 +london journal,1 +"london journal of tourism, sport and creative industries",0 +london mathematical society,2 +london mathematical society lecture notes,1 +london metropolitan university,0 +london oriental and african language library,1 +london review of education,1 +london review of international law,1 +long play,-1 +long range planning,3 +longhua chinese medicine,0 +longitudinal and life course studies,1 +longman,1 +looking glass,1 +looming,0 +loquens,1 +lorenzo de medici press,0 +lotta,-1 +lotus international,0 +louisiana state university press,1 +lounais-lappi,-1 +lousi,-1 +louvain studies,1 +lov og rett: norsk juridisk tidsskrift,1 +low carbon economy,0 +low temperature physics,1 +low-carbon materials and green construction,1 +lrec proceedings,1 +lse press,0 +lse public policy review,0 +lsp journal,1 +ltd publishing house universal,0 +lu latviešu valodas institūt,0 +lubricants,0 +lubrication science,1 +lucentum,1 +luchterhand,1 +lucius und lucius,1 +lud,1 +ludus: medieval and early renaissance theatre and drama,1 +ludwig múzeum,0 +ludwig-maximilians-universität münchen : universitätsbibliothek,0 +luglio editore,0 +lugymedia,0 +luigi pellegrini editore,0 +luiss university press,1 +luksitko,-1 +luleå tekniska universitet,1 +lulu.com,0 +luma,-1 +lumat,1 +lumat-b,0 +lumen,-1 +luminescence,1 +lumooja,-1 +lunar & planetary institute,0 +lund archaeological review,1 +lund university press,1 +lunds universitet,0 +lunds universitet : arkeologiska institutionen och historiska museet,0 +lunds universitet : sociologiska institutionen,-1 +lunds universitets kyrkohistoriska arkiv,0 +lung,1 +lung cancer,1 +lunula: archaeologia protohistorica,1 +luokanopettaja,-1 +luomulehti,-1 +luonnon varassa,-1 +luonnonvara- ja biotalouden tutkimus,0 +luonnonvarakeskus,0 +luonnosta sinulle,-1 +luontokuva,-1 +luontosäde,0 +lupus,1 +lurra editions,0 +luso: brazilian review,2 +luston julkaisuja,-1 +lustrum,1 +lut scientific and expertise publications,-1 +lut scientific and expertise publications : tutkimusraportit,0 +luterisma mantojuma fonds,0 +luther,1 +luther-agricola-seura,1 +luther-kirjat,0 +lutheran quarterly,1 +lutheran theological journal,0 +lutherjahrbuch,2 +luthersk kirketidende,-1 +luts-lower urinary tract symptoms,0 +lutukka,0 +luustotieto,-1 +luuvalo,-1 +lux veritatis,0 +luxury,1 +luyou xuekan,0 +lva,-1 +lwt: food science and technology,1 +lychnos: lardomshistoriska samfundets arsbok = annual of the swedish history of science society,1 +lykia,1 +lymphatic research and biology,1 +lymphologie in forschung und praxis,1 +lymphology,1 +lynne rienner publishers,1 +lyrikvännen,-1 +lysa publishers,0 +lyubavich,0 +l´erma di bretschneider,1 +l´harmattan,1 +lähde,-1 +lähde : historiatieteellinen aikakauskirja,1 +lähellä,-1 +lähetysteologinen aikakauskirja,1 +lähihistoria,1 +lähikuva,2 +lähikuva-yhdistys,0 +lähilehti,-1 +lähivõrdlusi-lähivertailuja,1 +läkartidningen,0 +länsi-saimaan sanomat,-1 +länsi-uusimaa,-1 +länsiväylä,-1 +läraren,-1 +läs- och skrivsvårigheter & dyslexi,-1 +lääkealan turvallisuus- ja kehittämiskeskus fimea,0 +lääketietokeskus oy,0 +lääkkeiden luokitus,-1 +lääkärilehti,1 +læring og medier,-1 +lìtasfera,0 +líbero,1 +lönnströmin taidemuseo,0 +lûboslovie,1 +l’ ellisse,1 +m.e. sharpe,2 +m/c journal,1 +m@gm@,0 +m@n@gement,1 +maa- ja elintarviketalouden tutkimuskeskus,0 +maa- ja metsätalous,-1 +maa- ja metsätalousministeriö,0 +maahenki,0 +maailman kuvalehti,-1 +maailmankirjat,-1 +maal og minne,1 +maan suola,-1 +maandblad voor accountancy en bedrijfseconomie,0 +maankäyttö,-1 +maanmittauslaitoksen julkaisuja,-1 +maanomistaja,-1 +maanpuolustus,-1 +maanpuolustuskorkeakoulu,0 +maarav: a journal for the study of the northwest semitic languages and literatures,1 +maaseudun tulevaisuus,-1 +maaseudun uusi aika ry,0 +maaseutu plus,-1 +maaseutututkimus,1 +maastricht journal of european and comparative law,3 +maatalouskalenteri,-1 +maatalousmuseon tutkimuksia,0 +maatiainen,-1 +maatila-pellervo,-1 +maatilalla,-1 +mabs,1 +mac keith press,0 +macat international,0 +macedonian journal of chemistry and chemical engineering,0 +machine learning,3 +machine learning and knowledge extraction,1 +machine learning reports,0 +machine learning with applications,1 +machine learning: science and technology,1 +machine vision and applications,2 +machines,0 +machining science and technology,1 +maciej kanert pro jezeli p to q,0 +maciej oczak,0 +macmillan,1 +macquarie university,0 +macroeconomic dynamics,1 +macroeconomics and finance in emerging market economies,1 +macrolinguistics,1 +macromarketing society,1 +macromol,0 +macromolecular bioscience,1 +macromolecular chemistry and physics,1 +macromolecular materials and engineering,1 +macromolecular rapid communications,1 +macromolecular reaction engineering,1 +macromolecular research,1 +macromolecular symposia,1 +macromolecular theory and simulations,1 +macromolecules,3 +macrotheme review,0 +madagascar conservation and development,1 +made in china,0 +madera y bosques,1 +maderas: ciencia y tecnologia,1 +madoc: tijdschrift over de middel eeuwen,1 +maejo international journal of science and technology,1 +magallania,1 +magazine antiques,0 +magazine house,0 +magazine of civil engineering,0 +magazine of concrete research,1 +magazyn polonia,-1 +maggioli editore,1 +maghreb-machrek,1 +"magic, ritual, and witchcraft",1 +magma,1 +magma studie,0 +magma-pamflett,-1 +"magna graecia: rassegna di archeologia, storia, arte, attualita",1 +magnesium research,1 +magnetic resonance,1 +magnetic resonance imaging,1 +magnetic resonance imaging clinics of north america,1 +magnetic resonance in chemistry,1 +magnetic resonance in medical sciences,1 +magnetic resonance in medicine,1 +magnetic resonance materials in physics biology and medicine,1 +magnetochemistry,0 +magnetohydrodynamics,1 +magnolia press,1 +magnus publications,0 +magyar allatorvosok lapja,1 +magyar egyhazzene,1 +magyar filozofiai szemle,1 +"magyar kemiai folyoirat, kemiai kozlemenyek",0 +magyar nepmuveszet,1 +magyar nyelv,1 +magyar nyelvjarasok,1 +magyar nyelvor,1 +magyar sporttudomanyi szemle,0 +magyar tudomany,0 +magyar tudományos akadémia,0 +magyar zene,1 +magyarországi zsidó hitközségek szövetsége,0 +mahkuscript,1 +mahkuzine: journal of artistic research,0 +mai,0 +maia: rivista di letterature classiche,1 +maik nauka/interperiodica,1 +main group chemistry,1 +main group metal chemistry,1 +main school of fire service,0 +mains libres,0 +maintworld,-1 +mainz,0 +mairie de beaune,0 +maito ja me,-1 +maitotalous,-1 +majallah-i āmūzish-i muhandisī-i īrān,0 +makadam,1 +make,1 +makedonika,1 +makedonski jazik,1 +makelearn series,0 +makerere journal of higher education,0 +making futures,0 +maks press,0 +makumira publications,1 +mal-lehti,-1 +malacologia,1 +malaria journal,1 +malawi medical journal,1 +malaysian applied biology,0 +malaysian journal of computer science,0 +malaysian journal of elt research,0 +malaysian journal of learning & instruction,1 +malaysian journal of library and information science,1 +malice,0 +malmö universitet,0 +maloca,0 +malta classics association,0 +malta medical journal,0 +mamatov,0 +mamluk studies review,1 +mammal research,1 +mammal review,2 +mammal study,1 +mammalia,1 +mammalian biology,1 +mammalian genome,1 +man and environment,1 +man in india,0 +mana: estudos de antropologia social,1 +management,1 +management & marketing,0 +management accounting research,3 +management and organization review,1 +management and organizational history,2 +management and organizational studies,0 +management and production engineering review,1 +management communication quarterly,2 +management decision,1 +management development network entrepreneurship conference,0 +management dynamics,0 +management dynamics in the knowledge economy,0 +management et avenir,0 +management in education,1 +management international review,1 +management learning,2 +management of biological invasions,1 +management of environmental quality,1 +management of innovation and technology,-1 +management of sustainable development,1 +management research,1 +management research and practice,0 +management research review,1 +management review quarterly,1 +management revue,1 +management science,3 +management studies,0 +management systems in production engineering,0 +management teaching review,1 +management theory and studies for rural business and infrastructure development,0 +managerial and decision economics,1 +managerial auditing journal,1 +managerial finance,1 +managing global transitions,1 +managing leisure,1 +managing sport and leisure,1 +manchester metropolitan university,0 +manchester school,1 +manchester university press,2 +mande studies,1 +mandelbaum verlag,0 +mandenkan,2 +mandragora,0 +maney publishing,1 +manifestolibri,0 +mankind quarterly,0 +manoa: a pacific journal of international writing,1 +manohar publishers & distributors,1 +mantu,-1 +manuaali,-1 +manual therapy,1 +manucius,0 +manuelle medizin,1 +manuelle therapie,1 +manufacturing accounting research conference,0 +manufacturing and service operations management,3 +manufacturing chemist,1 +manufacturing engineering,0 +manufacturing letters,1 +manufacturing review,0 +manufacturing technology,1 +manuscript studies,1 +manuscripta,1 +manuscripta mathematica,1 +manuscripta orientalia,1 +manuscrito: revista internacional de filosofia,1 +manuskripte,1 +manusya,1 +many-core applications research community symposium,0 +mapan-journal of metrology society of india,0 +mapryal,0 +marang,1 +marburg journal of religion,1 +"marburger beiträge zur antiken handels-, wirtschafts- und sozialgeschichte",1 +marburger jahrbuch fur kunstwissenschaft,1 +marcel dekker,1 +marcello messina,0 +marche romane,1 +marcial pons ediciones de historia,-1 +marcianum press,0 +marcus förlag,0 +mare & martin,0 +mare nostrum,0 +marhaba,-1 +marie curie sklodowska university press,1 +marietti,0 +marin drinov academic publishing house,1 +marine and coastal fisheries,1 +marine and freshwater behaviour and physiology,1 +marine and freshwater research,1 +marine and petroleum geology,1 +marine biodiversity,1 +marine biodiversity records,1 +marine biology,1 +marine biology research,1 +marine biotechnology,1 +marine chemistry,1 +marine drugs,0 +marine ecology: an evolutionary perspective,1 +marine ecology: progress series,2 +marine environmental research,1 +marine genomics,1 +marine geodesy,1 +marine geology,2 +marine geophysical researches,1 +marine georesources and geotechnology,1 +marine life science & technology,1 +marine mammal science,1 +marine micropaleontology,1 +marine ornithology,1 +marine policy,2 +marine pollution bulletin,1 +marine resource economics,1 +marine structures,3 +marine systems & ocean technology,1 +marine technology society journal,1 +mariners mirror,1 +mario congedo editore,1 +maritime business review,1 +maritime economics and logistics,1 +maritime policy and management,1 +maritime studies,1 +marius,1 +market and competition law review,1 +marketing,1 +marketing education review,1 +marketing health services,1 +marketing intelligence and planning,1 +marketing intelligence review,-1 +marketing intelligence review (english ed.),-1 +marketing letters,1 +marketing management association ... educators' conference proceedings,0 +marketing management journal,0 +marketing review,1 +marketing review st. gallen,0 +marketing science,3 +marketing science and inspirations,0 +marketing theory,2 +marketing ì menedžment ìnnovacìj,0 +"markets, globalization & development review",0 +markov processes and related fields,1 +markus wiener publishers,0 +marmara iktisat dergisi,0 +marquette university press,1 +marriage and family review,1 +martat,-1 +martial arts studies,1 +martin dunitz,1 +martin-luther-verlag,0 +maruzen,1 +marvell studies,-1 +marvels and tales: journal of fairy-tale studies,1 +"marxism & sciences : a journal of nature, culture, human and society",1 +mary ann liebert,1 +masaryk university journal of law and technology,1 +masarykova univerzita,0 +masculinidades y cambio social,1 +masculinities,1 +maske und kothurn,1 +mass communication and society,1 +mass spectrometry letters,1 +mass spectrometry reviews,1 +massachusetts review,1 +massey university press,0 +mast,1 +master drawings,0 +mastozoología neotropical,0 +mat og helse i skolen,0 +matatu,1 +match: communications in mathematical and in computer chemistry,1 +mate ltd.,0 +matec web of conferences,0 +matematicheskii sbornik,0 +matematicki vesnik,1 +matematičeskie zametki svfu,1 +materia,0 +materia socio medica,0 +materia: rio de janeiro,1 +material culture review,1 +material design & processing communications,1 +material religion,2 +"material science, engineering and applications",0 +materiale plastice,1 +materiales de construccion,1 +materiali e contributi per la storia della narrativa greco-latina,1 +materiali e discussioni per lanalisi dei testi classici,2 +materiali in tehnologije,1 +materiali per una storia della cultura giuridica,1 +materialia,1 +"materialisten: tidsskrift for forskning, fagkritikk og teoretisk debatt",1 +materials,0 +materials & design,3 +materials advances,1 +materials and corrosion-werkstoffe und korrosion,1 +materials and manufacturing processes,1 +materials and structures,1 +materials at high temperatures,1 +materials characterization,1 +materials chemistry and physics,1 +materials chemistry frontiers,1 +materials circular economy,1 +materials evaluation,1 +materials express,0 +materials for quantum technology,1 +materials for renewable and sustainable energy,1 +materials futures,1 +materials horizons,2 +materials letters,1 +materials letters x,1 +materials open research,0 +materials performance,1 +materials performance and characterization,1 +materials physics and mechanics,1 +materials proceedings,0 +materials research bulletin,1 +materials research express,1 +materials research innovations,1 +materials research letters,1 +materials research proceedings,0 +materials research society,1 +materials research society symposia proceedings,1 +materials research: ibero-american journal of materials,1 +materials science,1 +materials science and engineering a: structural materials properties microstructure and processing,2 +materials science and engineering b: advanced functional solid-state materials,1 +materials science and engineering r: reports,2 +materials science and technology,1 +materials science forum,1 +materials science in additive manufacturing,1 +materials science in semiconductor processing,1 +materials science poland,1 +materials science: medziagotyra,1 +materials sciences and applications,0 +materials technology,1 +materials testing: materials and components technology and application,1 +materials today,3 +materials today : proceedings,1 +materials today advances,1 +materials today bio,1 +materials today chemistry,1 +materials today communications,1 +materials today electronics,-1 +materials today energy,1 +materials today nano,1 +materials today physics,1 +materials today sustainability,1 +materials transactions,1 +materials world,1 +materialwissenschaft und werkstofftechnik,1 +materialy archeologiczne,1 +materiały ceramiczne,0 +maternal and child health journal,1 +maternal and child nutrition,1 +matfyzpress,0 +mathematica aeterna,0 +mathematica balkanica,1 +mathematica bohemica,1 +mathematica pannonica,1 +mathematica scandinavica,2 +mathematica slovaca,1 +mathematical and computational applications,0 +mathematical and computational forestry and natural resource sciences,1 +mathematical and computer modelling,1 +mathematical and computer modelling of dynamical systems,1 +mathematical and software engineering,0 +mathematical association of america,1 +mathematical biosciences,1 +mathematical biosciences and engineering,1 +mathematical communications,1 +mathematical control and related fields,1 +mathematical finance,2 +mathematical geosciences,1 +mathematical inequalities and applications,1 +mathematical intelligencer,1 +mathematical inverse problems,0 +mathematical logic quarterly,1 +mathematical medicine and biology: a journal of the ima,1 +mathematical methods in the applied sciences,1 +mathematical methods of operations research,1 +mathematical methods of statistics,1 +mathematical modelling and analysis,1 +mathematical modelling of natural phenomena,1 +mathematical modelling of weld phenomena,0 +mathematical models and computer simulations,1 +mathematical models and methods in applied sciences,2 +mathematical models in engineering,1 +mathematical notes,1 +mathematical physics analysis and geometry,1 +mathematical physics electronic journal,1 +mathematical population studies,1 +mathematical proceedings of the cambridge philosophical society,2 +mathematical proceedings of the royal irish academy,1 +mathematical programming,3 +mathematical programming computation.,1 +mathematical reports,0 +mathematical reports of the academy of science,1 +mathematical research letters,2 +mathematical sciences letters,0 +mathematical social sciences,1 +mathematical statistics and learning,1 +mathematical structures in computer science,1 +mathematical thinking and learning,2 +mathematics,0 +mathematics and computer education,1 +mathematics and computers in science and engineering series,0 +mathematics and computers in simulation,1 +mathematics and financial economics,1 +mathematics and mechanics of complex systems,1 +mathematics and mechanics of solids,1 +mathematics and statistics,0 +mathematics education research journal,1 +mathematics education review,1 +mathematics for applications,0 +mathematics in computer science,1 +mathematics in engineering,1 +"mathematics in engineering, science and aerospace",1 +mathematics in industry,1 +mathematics interdisciplinary research,0 +mathematics magazine,1 +mathematics of computation,3 +mathematics of control signals and systems,1 +mathematics of operations research,3 +mathematics student,0 +mathematik lehren,1 +mathematika,1 +mathematische annalen,3 +mathematische nachrichten,1 +mathematische semesterberichte,1 +mathematische zeitschrift,2 +matinen raporttisarja,-1 +matkailualan tutkimus- ja koulutusinstituutti,0 +matkailututkimus,1 +matrix,0 +matrix biology,2 +matrix biology plus,1 +matter,1 +matter : international journal of science and technology,0 +matter and radiation at extremes,1 +mattering press,0 +matters,0 +mattes verlag,1 +maturitas,1 +matériaux & techniques,0 +maunulan sanomat,-1 +mausam,1 +mauss international,0 +max niemeyer,2 +max planck commentaries on world trade law,1 +max planck encyclopedia of public international law,1 +max planck yearbook of united nations law,1 +max weber studies,1 +max-lab,0 +max-planck-gesellschaft zur förderung der wissenschaften e.v.. bibliothek,0 +max-planck-institut für europäische rechtsgeschichte,0 +mayfly,0 +mayo clinic proceedings,2 +mayo clinic proceedings : digital health,1 +mayéutica,0 +mazharov roman aleksandrovich,0 +mağallaẗ al-mağmaʿ,0 +mağallaẗ al-buḥūṯ al-taqniyyaẗ,0 +mağallaẗ al-kūfaẗ al-handasiyyaẗ,-1 +mağallaẗ ğāmiʿaẗ al-zaytūnaẗ al-urdunniyyaẗ li-l-dirāsāt al-qānūniyyaẗ,0 +"mašinski fakultet, izdavačka delatnost",0 +maǧallaẗ al-abḥāṯ al-handasiyyaẗ,0 +maǧallaẗ al-kuwayt li-l-ʿulūm,1 +maǧallaẗ al-ǧam'iyyaẗ al-ʿarabiyyaẗ lil milāḥaẗ,0 +mbio,2 +mcc agentur für kommunikation,-1 +mcdonald institute for archaeological research,1 +mcfarland,1 +mcgill international journal of sustainable development law and policy,1 +mcgill law journal,1 +mcgill-queen's university press,1 +mcgraw-hill,1 +mcn: the american journal of maternal-child nursing,1 +mdm policy & practice,1 +mdpi,0 +mds,-1 +mean streets,0 +meander,1 +meandros medical and dental journal,0 +meanjin,0 +measurement,2 +measurement : sensors,-1 +measurement and control,1 +measurement and evaluation in counseling and development,1 +measurement in physical education and exercise science,1 +measurement instruments for the social sciences,1 +measurement science and technology,2 +measurement science review,1 +measurement techniques,1 +measurement: interdisciplinary research and perspectives,1 +measuring behavior,0 +measuring business excellence,1 +meat and muscle biology,1 +meat science,2 +meccanica,1 +mechademia,0 +mechanical engineering,1 +mechanical engineering institute,0 +mechanical engineering research,0 +mechanical sciences,1 +mechanical systems and signal processing,3 +mechanics & industry,1 +mechanics based design of structures and machines,1 +mechanics of advanced materials and structures,1 +mechanics of composite materials,1 +mechanics of materials,2 +mechanics of solids,1 +mechanics of time-dependent materials,1 +mechanics research communications,1 +"mechanics, materials science & engineering",0 +mechanik,0 +mechanika,0 +mechanika,1 +mechanism and machine theory,2 +mechanisms and machine science,1 +mechanisms of ageing and development,1 +mechatronic systems and control,0 +mechatronica & machinebouw,-1 +mechatronics,2 +mechatronics forum international conference,0 +mecánica computacional,0 +med,2 +med andra ord,-1 +meddelanden - åbo akademi. litteraturvetenskapliga institutionen,0 +meddelanden : kyrkohistoriska arkivet vid åbo akademi,0 +meddelanden från sjöhistoriska institutet vid åbo akademi,1 +meddelanden från svenska handelshögskolan,0 +meddelelser fra ny carlsberg glyptotek,1 +"meddelelser om groenland, man and society",1 +meddelelser om konservering,1 +medecine et chirurgie du pied,1 +medecine et droit,1 +medecine therapeutique pediatrie,1 +meded publish,0 +mededelingen van het cyriel buysse genootschap,1 +mededelingen vanwege het spinozahuis,1 +medi@lmanah,1 +medi@ções,1 +media and communication,1 +media and intercultural communication : a multidisciplinary journal,1 +media asia,1 +media culture and society,3 +media development,1 +media education,1 +media education research journal,1 +media fields journal,0 +media history,2 +media history monographs,1 +media industries,1 +media international australia,1 +media ja viestintä,2 +media practice and education,1 +media psychology,2 +media theory,1 +media transformations,1 +"media, war and conflict",1 +media-xolding yakutiya,0 +mediaevalia,1 +mediaevalia historica bohemica,1 +mediaevalia: textos e estudos,1 +mediaevistik: internationale zeitschrift fur interdisziplinare mittelalterforschung,1 +mediakasvatuskeskus metka,0 +mediakasvatusseura,0 +mediakasvatusseuran julkaisuja,0 +medialingvistika,1 +medialni studia,1 +mediamir,0 +mediamuseo rupriikin julkaisuja,-1 +mediapinta,0 +mediapolis,0 +mediaskop,1 +mediataito,-1 +mediations,1 +mediatization studies,1 +mediators of inflammation,1 +mediaxxi,0 +medical & clinical case reports journal,0 +medical and biological engineering and computing,1 +medical and veterinary entomology,1 +medical anthropology,3 +medical anthropology quarterly,2 +medical cannabis and cannabinoids,0 +medical care,2 +medical care research and review,1 +medical clinics of north america,2 +medical decision making,3 +medical devices,-1 +medical dosimetry,1 +medical education,3 +medical education online: an electronic journal,1 +medical engineering and physics,1 +medical future verlag,0 +medical history,2 +medical humanities,1 +medical hypotheses,1 +medical image analysis,3 +medical informatics europe,1 +medical journal of australia,1 +medical journal of the islamic republic of iran,0 +medical laser application,1 +medical law international,2 +medical law review,2 +medical letter on drugs and therapeutics,1 +medical microbiology and immunology,1 +medical molecular morphology,1 +medical mycology,1 +medical mycology case reports,0 +medical oncology,1 +medical physics,1 +medical physics in the baltic states,0 +medical physics international,0 +medical principles and practice,1 +medical problems of performing artists,1 +medical research archives,0 +medical science and discovery,0 +medical science educator,1 +medical science monitor,1 +medical sciences,0 +medical sciences forum,0 +medical teacher,1 +medical technologies journal,0 +medical writing,0 +medicare & medicaid research review,1 +medicc review,1 +medicina,0 +medicina clinica,1 +medicina del lavoro,1 +medicina dello sport,1 +medicina intensiva,1 +medicina nei secoli,1 +medicina oral patologia oral y cirugia bucal,1 +medicina veterinaria: recife,1 +medicina: buenos aires,1 +medicinal chemistry,1 +medicinal chemistry research,1 +medicinal research reviews,2 +medicine,1 +medicine and clinical science,0 +medicine and law,0 +medicine and science in sports and exercise,3 +medicine anthropology theory,1 +medicine health care and philosophy,1 +medicine in drug discovery,1 +medicine research,0 +medicine science and the law,1 +"medicine, conflict, and survival",1 +medicines,0 +medicinski arhiv,0 +medicinski glasnik,1 +medico e bambino,0 +medicographia,0 +mediehistorisk tidsskrift,1 +mediekultur,1 +medien & altern,0 +medien journal,1 +medien und kommunikationswissenschaft,1 +medien und zeit,0 +medieval and early modern science,1 +medieval and renaissance drama in england,1 +medieval archaeology,2 +medieval ceramics: journal of the medieval pottery research group,0 +medieval clothing and textiles,1 +medieval encounters,1 +medieval english theatre,1 +medieval feminist forum,1 +medieval history journal,1 +medieval institute publications,1 +medieval low countries : an annual review,1 +medieval perspectives,1 +medieval philosophy and theology,1 +medieval prosopography: history and collective biography,1 +medieval scandinavia,1 +medieval sermon studies,1 +medieval studies,1 +medieval worlds,1 +medievales,1 +medievalia,1 +medievalia et humanistica,2 +medievalismo,1 +medijska istraživanja,1 +medijske studije,1 +medioevo,1 +medioevo e rinascimento,1 +medioevo greco,1 +medioevo romanzo,1 +meditari accountancy research,1 +mediterranea: ricerche storiche,1 +mediterranean archaeology,1 +mediterranean archaeology & archaeometry,1 +mediterranean chronicle,1 +mediterranean conference on embedded computing,1 +mediterranean conference on information systems,1 +mediterranean historical review,2 +mediterranean journal of chemistry,0 +mediterranean journal of mathematics,1 +mediterranean journal of social sciences,0 +mediterranean language review,1 +mediterranean marine science,1 +mediterranean politics,1 +mediterranean quarterly,1 +mediterranean studies,1 +"mediterraneo antico: economie, societa, culture",1 +medium aevum,1 +medium aevum quotidianum,1 +mediuutiset,-1 +"medizin, gesellschaft und geschichte",1 +medizinethnologie,-1 +medizinhistorisches journal,1 +medizinische genetik,0 +medpharm networks,1 +medströms bokförlag,0 +medusa,1 +medusa-software,0 +medusa: svensk tidsskrift for antiken,1 +medycyna nowozytna: studia nad historia medycyny,1 +medycyna ogólna i nauki o zdrowiu,0 +medycyna pracy,1 +medycyna weterynaryjna,1 +meeting abstracts,0 +meeting of the minds journal,-1 +mefisto,1 +mehiläinen,-1 +mehmet akif ezan,0 +mehran university research journal of engineering and technology,0 +mehrwertsteuerrecht,0 +meidän apteekki,-1 +meidän suomi,-1 +meidän talo,-1 +meie kirik,0 +meie maa,-1 +meiner verlag,1 +meitian dizhi yu kantan,0 +melanges de l'ecole francaise de rome: italie et mediterranee,1 +melanges de la casa de velazquez,1 +melanges de linstitut dominicain detudes orientales du caire,1 +melanoma research,1 +melbourne journal of international law,1 +melbourne university law review,1 +melus,2 +membrana,1 +membrane technology,1 +membrane water treatment,1 +membranes,0 +memetic computing,1 +"memini, travaux et documents",0 +memo,-1 +memoire de la societe eduenne,1 +memoires de lacademie des inscriptions et belles lettres,1 +memoires du museum national dhistoire naturelle,1 +memoirs of the american academy in rome,1 +memoirs of the american mathematical society,3 +memoranda societatis pro fauna et flora fennica,1 +memorandum,0 +memoria,-1 +memoria e ricerca: rivista di storia contemporanea,1 +memorial university of newfoundland,0 +memoriamedia,1 +memorias ciie,0 +memorias del instituto de investigaciones en ciencias de la salud,0 +memorias do instituto oswaldo cruz,0 +memorie della societa astronomica italiana,0 +memorie domenicane,0 +memory,1 +memory and cognition,2 +memory studies,3 +"memory, mind & media",1 +memristor and memristive systems symposium,0 +men and masculinities,2 +menadžment u hotelijerstvu i turizmu,1 +mendel university in brno,0 +mendeleev communications,1 +mene & tiedä,-1 +mennonite quarterly review,1 +meno istorija ir kritika,1 +menopause international,1 +menopause: the journal of the north american menopause society,1 +mensalainen,-1 +mental health & prevention,1 +mental health and physical activity,1 +mental health in family medicine,0 +mental health practice,0 +mental health review journal,1 +"mental health, religion and culture",1 +mental illness,1 +mental lexicon,1 +mentis verlag,1 +mentoring and tutoring,1 +menu,-1 +mercator european research centre,0 +mercatorfonds,0 +mercer university press,1 +mercurius,-1 +mercury series,1 +merenkulkualan koulutus- ja tutkimuskeskuksen julkaisuja,-1 +merenkulkualan koulutus- ja tutkimuskeskuksen julkaisuja,0 +"meridians: feminism, race, transnationalism",1 +merikarhu,-1 +merikarvia-lehti,-1 +"merisotakoulun julkaisusarja. a, tutkimuksia",0 +merits,0 +merkur: deutsche zeitschrift fur europaisches denken,0 +merrill-palmer quarterly,1 +merve verlag,1 +mesenaatti,-1 +meson press,1 +mesoporous biomaterials,0 +mesopotamia,1 +meta,3 +"meta : research in hermeneutics, phenomenology and practical philosophy",1 +meta h,1 +meta proceedings,0 +meta-psychology,1 +meta-radiology,1 +meta4books vzw,0 +metabarcoding and metagenomics,1 +metabolic brain disease,1 +metabolic engineering,2 +metabolic engineering communications,1 +metabolic syndrome and related disorders,1 +metabolism open,1 +metabolism: clinical and experimental,2 +metabolites,0 +metabolomics,1 +metabolomics: open access,0 +metacognition and learning,2 +metagis-systems,0 +metaixmio,0 +metal finishing,1 +metal ions in life sciences,1 +metal music studies,1 +metal powder industries federation,0 +metal powder report,1 +metal science and heat treatment,1 +metall,1 +metallitekniikka,-1 +metallofizika i noveishie tekhnologii,1 +"metallography, microstructure and analysis",1 +metallomics,1 +metallovedenie i termicheskaya obrabotka metallov,0 +metallurgical and materials transactions a: physical metallurgy and materials science,1 +metallurgical and materials transactions b : process metallurgy and materials processing science,2 +metallurgical and mining industry,0 +metallurgical research & technology,1 +metallurgist,1 +metals,0 +metals and materials international,1 +metalurgia international,1 +metalurgija,1 +metamaterials,1 +metamorphosis,0 +metanoia instituutti,0 +metaphilosophy,2 +metaphor and symbol,3 +metaphor and the social world,1 +metaphorik.de,1 +metaphysica,1 +metascience,1 +metatheoria,1 +metaverse,-1 +meteli,-1 +meteoritics and planetary science,1 +meteorological applications,1 +meteorologische zeitschrift,1 +meteorology,0 +meteorology and atmospheric physics,1 +methane,0 +methis: studia humaniora estonica,1 +method and theory in the study of religion,3 +"methoden, daten, analysen",1 +methodological innovations,1 +methodology and computing in applied probability,1 +methodology: european journal of research methods for the behavioral and social sciences,1 +methods,1 +methods and applications in fluorescence,1 +methods and applications of analysis,1 +methods and findings in experimental and clinical pharmacology,1 +methods and protocols,1 +methods in cell biology,1 +methods in ecology and evolution,3 +methods in enzymology,1 +methods in microbiology,1 +methods in molecular biology,1 +methods in psychology,1 +methods of biochemical analysis,1 +methods of functional analysis and topology,1 +methods of information in medicine,3 +methodsx,0 +methuen,1 +metis,1 +metis presses,0 +metodo,2 +metodologia,1 +metrika,1 +metroeconomica: international review of economics,1 +metrologia,2 +metrology,-1 +metron,1 +metropol verlag,1 +metropolia ammattikorkeakoulu,0 +metropolia ammattikorkeakoulun julkaisuja,-1 +metropolia ammattikorkeakoulun julkaisuja : taito-sarja,-1 +metropolis,0 +metropolis m,0 +metropolitan museum journal,0 +metropolitan museum of art bulletin,0 +metroverlag,0 +metsä,-1 +metsä groupin viesti,-1 +metsäalan ammattilehti,-1 +metsähallituksen luonnonsuojelujulkaisuja,-1 +metsähallituksen luonnonsuojelujulkaisuja : sarja a,0 +metsähallitus,0 +metsäkustannus,0 +metsälehti,-1 +metsälehti makasiini,-1 +metsän henki,-1 +metsänomistajat keski-suomi,-1 +metsäntutkimuslaitos,0 +metsäpäijänne,-1 +metsäsanoma,-1 +metsästys ja kalastus,-1 +metsästäjä,-1 +metsätehon raportti,-1 +metsätieteen aikakauskirja,1 +metsään,-1 +metu journal of the faculty of architecture,1 +mevlana international journal of education,0 +mexican international conference on artificial intelligence,0 +mexican studies-estudios mexicanos,1 +mexicon,0 +meyer & meyer sport,1 +mezhdunarodnoe publichnoe i chastnoe pravo,0 +mezinárodní a srovnávací právní revue,1 +mezinárodní vztahy,1 +meän tornionlaakso,-1 +meždunarodnaâ èkonomika,0 +mfs: modern fiction studies,3 +mfåa,-1 +mi?dzy orygina?em a przek?adem,1 +mi`gug`hag nonjib,0 +mibes transactions,0 +miccai workshop on mesh processing in medical image analysis,0 +michael imhof verlag,0 +michigan journal of gender and law,1 +michigan journal of international law,2 +michigan law review,2 +michigan mathematical journal,1 +michigan publishing,1 +michigan quarterly review,1 +michigan state university press,1 +michigan telecommunications and technology law review,1 +micro,0 +micro & macro marketing,0 +micro and nano engineering,1 +micro and nano letters,1 +micro and nanosystems,1 +micro total analysis systems,0 +"micro, macro & mezzo geoinformation",-1 +microbes and environments,1 +microbes and infection,1 +microbial biotechnology,1 +microbial cell factories,1 +microbial drug resistance,1 +microbial ecology,2 +microbial genomics,1 +microbial pathogenesis,1 +microbiological research,1 +microbiologist,-1 +microbiology,1 +microbiology and immunology,1 +microbiology and molecular biology reviews,2 +microbiology australia,0 +microbiology insights,0 +microbiology research,0 +microbiology resource announcements,0 +microbiology spectrum,2 +microbiology today,-1 +microbiology-sgm,1 +microbiologyopen,1 +microbiome,3 +microbiome research reports,0 +microchemical journal,1 +microchimica acta,1 +microcirculation,1 +microelectronic engineering,1 +microelectronics international,1 +microelectronics journal,1 +microelectronics reliability,1 +microfluidics and nanofluidics,1 +microgravity science and technology,1 +microlife,1 +micrologus,1 +micromachines,0 +micromechanics and microsystems europe conference,0 +micron,1 +microoptics conference,0 +microorganisms,0 +micropaleontology,1 +microplastics,0 +microplastics and nanoplastics,1 +microporous and mesoporous materials,2 +microprocessors and microsystems,1 +micropublication biology,0 +microrna,1 +microscopy,1 +microscopy and microanalysis,1 +microscopy research and technique,1 +microstructures,1 +microsurgery,1 +microsystem technologies: micro-and nanosystems-information storage and processing systems,1 +microsystems & nanoengineering,2 +microvascular research,1 +microwave and optical technology letters,1 +microwave journal,1 +microwave technologies and techniques workshop,0 +microwaves & rf,0 +middle east - topics & arguments,1 +middle east african journal of ophthalmology,1 +middle east critique,1 +middle east journal,2 +middle east journal of cancer,0 +middle east journal of culture and communication,1 +middle east law and governance,1 +middle east policy,1 +middle east quarterly,1 +middle east report,1 +middle eastern literatures,1 +middle eastern studies,1 +middle ground journal,0 +middle-east journal of scientific research,0 +middlesex university,0 +middlesex university press,1 +midland history,2 +midwest quarterly: a journal of contemporary thought,1 +midwest studies in philosophy,2 +midwifery,2 +mieroszewski centre,0 +migration,0 +migration & diversity,0 +migration and development,1 +migration and society,1 +migration information source,0 +migration letters,0 +migration policy practice,-1 +migration studies,1 +migration studies. c.,0 +migration: a european journal of international migration and ethnic relation,1 +migrations société,0 +miikkulainen,-1 +miilu,-1 +miina sillanpään säätiö,0 +miina sillanpään säätiön julkaisusarja,-1 +mikael : kääntämisen ja tulkkauksen tutkimuksen aikakauslehti,1 +mikael agricola -seura,0 +mikkelin ammattikorkeakoulu,0 +mikkelin valokuvakeskus,0 +mikologiya i fitopatologiya,1 +mikrobiyoloji ve enfeksiyon hastalıkları dergisi,0 +mikrotalasna revija,1 +milan journal of mathematics,1 +milan law review,1 +milbank quarterly,3 +miles-verlag,0 +militargeschichtliche zeitschrift,1 +military balance,1 +military law review,1 +military medical research,1 +military medicine,1 +military operations research,1 +military psychology,1 +militärhistorisk tidskrift,1 +millennium film journal,1 +millennium: journal of international studies,2 +milli folklor,1 +milli mála,1 +milli savunma üniversitesi rektörlüğü,0 +milton quarterly,2 +milton studies,1 +mimarist,0 +mimesis international,0 +mimesis journal,1 +min-ad: israel studies in musicology online,1 +mina fagrapport,0 +minard,1 +mind,3 +mind and language,3 +mind and matter,1 +mind and society,1 +mind brain and education,0 +"mind, culture, and activity",2 +mindbrained bulletin,-1 +mindfulness,2 +minds and machines,1 +mine water and the environment,1 +mineral economics,1 +mineral processing and extractive metallurgy,1 +mineral processing and extractive metallurgy review,1 +mineralia,-1 +mineralium deposita,1 +mineralogical magazine,1 +mineralogical society of america,1 +mineralogy and petrology,1 +minerals,0 +minerals and metallurgical processing,1 +minerals engineering,3 +"minerals, metals & materials society",1 +minerva,0 +minerva,3 +minerva anestesiologica,1 +minerva biotecnologica,1 +minerva cardiology and angiology,1 +minerva endocrinology,1 +minerva gastroenterologica e dietologica,0 +minerva ginecologica,1 +minerva medica,1 +minerva ortopedica e traumatologica,1 +minerva pediatrica,1 +minerva psichiatrica,0 +minerva shobo,1 +minerva surgery,1 +minerva urologica e nefrologica,1 +minerva: an internet journal of philosophy,1 +minería,-1 +mini-reviews in medicinal chemistry,1 +mini: reviews in organic chemistry,1 +minima epigraphica et papyrologica,1 +minimally invasive neurosurgery,1 +minimally invasive therapy and allied technologies,1 +mining engineering,-1 +mining report,0 +mining science,1 +"mining, metallurgy & exploration",1 +ministerio de educación de la provincia de santa fe,0 +"ministerio de educación, cultura y deporte. área de cultura",0 +ministerstwo spraw zagranicznych,0 +minnesota historical society press,1 +minnesota journal of international law,1 +minnesota law review,1 +minnesota review,1 +minnesota symposia on child psychology,1 +minorités linguistiques et société,1 +minos,1 +mintis,0 +minzu yuwen,1 +mir i politika,1 +mir rossii,2 +mir russkogo slova,0 +mir russkogo slova,1 +mirator,1 +mires and peat,1 +mirovaâ èkonomika i meždunarodnye otnošeniâ,1 +mirovni institut,0 +mis quarterly,3 +mis quarterly executive,2 +miscelanea geographica,0 +miscelanea: a journal of english and american studies,1 +miscellanea di storia delle esplorazioni,0 +miscellanea francescana: rivista trimestrale di scienze teologiche e di studi francescani,1 +mise au point,1 +mishkan,0 +mision juridica,1 +misjonshøgskolens forlag,1 +miskolc mathematical notes,1 +missiology: an international review,1 +mission studies,2 +missionalia,1 +mississippi quarterly,1 +missouri botanical garden press,0 +missouri journal of mathematical sciences,1 +mistra urban futures,0 +mit electronic journal for middle east studies,1 +mit press,3 +mit sloan management review,2 +miteinander,-1 +mitigation and adaptation strategies for global change,1 +mitkufat haeven: journal of the israel prehistoric society,1 +mitmekeelne haridus,-1 +mitochondrial dna : part a,0 +mitochondrial dna part b : resources,0 +mitochondrion,1 +mittari,-1 +"mitteilungen der berliner gesellschaft fur anthropologie, ethnologie und urgeschichte",1 +mitteilungen der deutschen gesellschaft für allgemeine und angewandte entomologie,0 +mitteilungen der osterreichischen geographischen gesellschaft,1 +mitteilungen der paul-sacher-stiftung,0 +mitteilungen der schweizerischen entomologischen gesellschaft,1 +mitteilungen des deutschen archaologischen instituts : athenische abteilung,2 +mitteilungen des deutschen archaologischen instituts: abteilung kairo,1 +mitteilungen des deutschen archaologischen instituts: abteilung madrid,1 +mitteilungen des deutschen archaologischen instituts: romische abteilung,2 +mitteilungen des instituts fur osterreichische geschichtsforschung,1 +mitteilungen des kunsthistorischen institutes in florenz,2 +mitteilungen des regensburger verbunds für werbeforschung,0 +mitteilungen klosterneuburg,1 +mitteilungen zur christlichen archaologie,1 +mitteilungen zur kirchlichen zeitgeschichte,0 +mittellateinische studien und texte,2 +mittellateinisches jahrbuch,1 +mittuniversitetet,0 +mitä-missä-milloin,-1 +mizan law review,1 +międzynarodowego centrum kultury,0 +miškininkystė ir kraštotvarka,-1 +mk nambyar saarclaw review,0 +mla news,1 +mlife,0 +mljekarstvo,1 +mln,2 +"mltj : muscles, ligaments and tendons journal",0 +mmm:n julkaisuja,0 +mnemosyne,2 +"mnemosyne, supplements",2 +mnimon,1 +moara,1 +mobile culture studies. the journal,1 +mobile dna,1 +mobile genetic elements,1 +mobile media and communication,2 +mobile networks and applications,1 +mobilities,2 +mobility humanities,0 +mobility in history,1 +mobilization,2 +moda documenta,0 +modapalavra e-periódico,1 +model assisted statistics and applications,1 +modeles linguistiques,1 +modeling earth systems and environment,1 +modeling identification and control,1 +modelling,0 +modelling & simulation society of australia & new zealand,0 +modelling and simulation in engineering,1 +modelling and simulation in materials science and engineering,1 +"modelling, identification and control",0 +"modelling, measurement & control. c, energetics, chemistry, earth, environmental & biomedical problems",0 +modern africa,1 +modern american history,1 +modern and contemporary france,2 +modern asian studies,2 +modern behavioral science,0 +modern china,2 +modern chinese literature and culture,1 +modern concepts & developments in agronomy,0 +modern drama,2 +modern economy,0 +modern english teacher,1 +modern environmental science and engineering,0 +modern greek studies,1 +modern humanities research association,1 +modern intellectual history,2 +modern italy,1 +modern judaism,1 +modern language association of america,1 +modern language journal,3 +modern language quarterly,3 +modern language review,1 +modern language studies,1 +modern law science,1 +modern mechanical engineering,0 +modern nyelvoktatás,1 +modern pathology,2 +modern philology,2 +modern physics letters a,1 +modern physics letters b,1 +modern rheumatology,1 +modern stochastics : theory and applications,1 +modern theology,3 +modern trends in psychiatry,0 +moderna språk,1 +moderna: semestrale di teoria e critica della letteratura,1 +moderne sprachen,1 +moderne stadtgeschichte,1 +modernism-modernity,2 +modernist cultures,1 +modernités russes,-1 +"modernizaciâ, innovaciâ, razvitie",0 +modus 3d journal,-1 +moenia: revista lucense de lingustica and literatura,1 +mohr siebeck,2 +moj orthopedics & rheumatology,0 +mokslinės leidybos deimantas,0 +mokslo taikomieji tyrimai lietuvos kolegijose,0 +mokuzai gakkaishi,1 +molbank,0 +molecular & cellular oncology,0 +molecular and biochemical parasitology,1 +molecular and cellular biochemistry,1 +molecular and cellular biology,2 +molecular and cellular biomechanics,1 +molecular and cellular endocrinology,1 +molecular and cellular neuroscience,1 +molecular and cellular probes,1 +molecular and cellular proteomics,2 +molecular and cellular therapies,1 +molecular and cellular toxicology,1 +molecular and clinical oncology,0 +molecular aspects of medicine,3 +molecular autism,1 +molecular biology,1 +molecular biology and evolution,3 +molecular biology of the cell,2 +molecular biology reports,1 +molecular biomedicine,-1 +molecular biosystems,1 +molecular biotechnology,1 +molecular brain,1 +molecular breeding,1 +molecular cancer,3 +molecular cancer research,1 +molecular cancer therapeutics,1 +molecular carcinogenesis,1 +molecular catalysis,1 +molecular cell,3 +molecular crystals and liquid crystals,1 +molecular cytogenetics,1 +molecular diagnosis and therapy,1 +molecular diversity,1 +molecular ecology,3 +molecular ecology resources,2 +molecular genetics & genomic medicine,1 +molecular genetics and genomics,1 +molecular genetics and metabolism,1 +molecular genetics and metabolism reports,0 +molecular genetics microbiology and virology,1 +molecular human reproduction,1 +molecular imaging,1 +molecular imaging and biology,1 +molecular immunology,1 +molecular informatics,1 +molecular medicine,1 +molecular medicine reports,1 +molecular membrane biology,1 +molecular metabolism,2 +molecular microbiology,2 +molecular neurobiology,1 +molecular neurodegeneration,3 +molecular nutrition and food research,3 +molecular oncology,1 +molecular oral microbiology,1 +molecular pain,1 +molecular pharmaceutics,2 +molecular pharmacology,2 +molecular phylogenetics and evolution,2 +molecular physics,1 +molecular plant,3 +molecular plant pathology,1 +molecular plant-microbe interactions,1 +molecular psychiatry,3 +molecular reproduction and development,1 +molecular sieves: science and technology,1 +molecular simulation,1 +molecular syndromology,1 +molecular systems biology,3 +molecular therapy,3 +molecular therapy : oncology,1 +molecular therapy nucleic acids,1 +molecular therapy. methods & clinical development,1 +molecular vision,1 +molecules,0 +molecules and cells,1 +molin & sorgenfrei förlag,0 +mollusc world,0 +molluscan research,1 +momentti,-1 +monash bioethics review,1 +monash university law review,1 +monash university publishing,1 +monatshefte fur chemie,1 +monatshefte fur deutschsprachige literatur und kultur,1 +monatshefte fur mathematik,1 +monatsschrift fur kriminologie und strafrechtsreform,1 +monatsschrift kinderheilkunde,1 +monde(s),1 +mondes en developpement,1 +mondi migranti,1 +mondial,0 +monetary and economic research center,0 +money matters,-1 +mongolian academy of sciences : the institute of language and literature,0 +mongolian studies,1 +mongolica,0 +monikkoperheet,-1 +monist,2 +monitoring obshestvennogo mnenija : ekonomicheskie i socialnye peremeny,1 +monograf,1 +monographs of the archaeological society of finland,1 +monographs of the boreal environment research,0 +monographs of the society for research in child development,1 +mons days of theoretical computer science,0 +montage av: zeitschift fuer theorie und geschichte audiovisueller kommunikation,1 +montana math enthusiast,1 +montana-the magazine of western history,0 +monte carlo methods and applications,1 +montenegrin journal for social sciences,1 +montenegrin journal of sports science and medicine,1 +montenegrin sports academy,1 +monthly labor review,1 +monthly notices of the royal astronomical society,2 +monthly notices of the royal astronomical society: letters,3 +monthly review press,0 +monthly review: an independent socialist magazine,1 +monthly weather review,1 +monti: monographs in translation and interpretation,1 +monumenta graeca et romana,1 +monumenta nipponica,2 +monumenta serica,1 +monumental,1 +monuments et mémoires de la fondation eugene piot,1 +moottori,-1 +moral philosophy and politics,1 +moravian geographical reports,1 +mordovskij gosudarstvenny`j universitet im. n.p.ogareva,0 +moreana,1 +morfem,0 +morgan & claypool publishers,1 +morgan kaufmann publishers,1 +morgenbladet,-1 +morlacchi editore,0 +morning watch,0 +moro,-1 +moroccan journal of chemistry,0 +morphologie,0 +morphology,2 +mortality,1 +mosaic press,0 +mosaic: a journal for the interdisciplinary study of literature,3 +mosaico produção editorial,0 +moscow mathematical journal,1 +moscow state institute of international relations,0 +moscow university biological sciences bulletin,0 +moscow university physics bulletin,0 +moscow university press,0 +moskovskij pedagogicheskij gosudarstvenny`j universitet,0 +motiivi,-1 +motilal banarsidass,0 +motivation and emotion,1 +motivation science,1 +motivational interviewing,1 +motor control,1 +motricite cerebrale: readaptation neurologie du developpement,1 +motriz: revista de educacao fisica,1 +mots: les langages du politique,1 +motto books,0 +mountain research and development,1 +mouseion,1 +mousikos logos,0 +mousse publishing,0 +moussons,1 +mouton de gruyter,2 +mouvement social,2 +movement and sport sciences,1 +movement disorders,3 +movement disorders clinical practice,1 +movement ecology,1 +movie,1 +movimento,1 +moving image,1 +moving the social,0 +movoznavstvo,0 +moyen age,1 +moyen francais,1 +mrktng,-1 +mrs advances,1 +mrs bulletin,2 +mrs communications,1 +mrs energy & sustainability,1 +mrs internet journal of nitride semiconductor research,1 +msor connections,1 +msphere,1 +msystems,1 +mt metsä,-1 +mta matematikai kutatóintézet,0 +mtm journal,1 +mucai gongye,0 +mucchi editore,1 +mucosal immunology,1 +mudīriyyat va barnāmah/rīzī dar niẓām/hā-yi āmūzishī,0 +mudīriyyat-i madrisah,0 +muinaistutkija,1 +muinasaja teadus,1 +muisti,-1 +multi-science publishing,1 +multi: the journal of plurality and diversity in design,1 +multibody system dynamics,2 +multicultural education review,1 +multicultural perspectives,1 +multicultural shakespeare,1 +multidimensional systems and signal processing,1 +"multidisciplinary journal for education, social and technological sciences",0 +multidisciplinary respiratory medicine,1 +multidiscipline modeling in materials and structures,1 +multiethnica,1 +multifunctional materials,1 +multilingua: journal of cross-cultural and interlanguage communication,2 +multilingual,0 +multilingual margins,1 +multilingual matters,2 +multimedia systems,1 +multimedia tools and applications,1 +multimodal communication,1 +multimodal technologies and interaction,1 +multimodal transportation,1 +multimodality & society,0 +multinational business review,1 +multinational finance journal,1 +multiphase science and technology,1 +multiple sclerosis,2 +multiple sclerosis and demyelinating disorders,1 +multiple sclerosis and related disorders,1 +multiple sclerosis international,1 +"multiple sclerosis journal, experimental, translational and clinical",1 +multiple voices for ethnically diverse exceptional learners,1 +multiscale modeling and simulation,1 +multisensory research,1 +multitudes,1 +multivariate behavioral research,1 +multivers,1 +multunk,0 +mun oulu,-1 +munchener jahrbuch der bildenden kunst,1 +munchener studien zur sprachwissenschaft,1 +munchener theologische zeitschrift,1 +mundo eslavo,1 +mundorama,-1 +munhwa gwan'gwang yeon'gu,0 +munhwayesulgyeong-yeonghagyeon-gu,0 +munich social science review,0 +municipalnoe obrazovanie : innovacii i èksperiment,0 +município santo tirso,0 +munksgaard,1 +munshiram manoharlal,1 +munster: zeitschrift fur christliche kunst und kunstwissenschaft,1 +munuaissairaanhoitaja-päivät,0 +muotialan asuin- ja toimintakeskus,0 +muotimaailma,-1 +muova design research,-1 +muova education,-1 +muovaaja,-1 +muovi,-1 +muqarnas,1 +muravei publishers,1 +murmansk state humanities university,1 +murmursunds allehanda,-1 +muscle and nerve,1 +musculoskeletal care,1 +musculoskeletal science & practice,1 +musculoskeletal surgery,0 +museo,-1 +museokello,-1 +museologia,0 +museologia scientifica: rivista dell a.n.m.s.,1 +museologian julkaisuja,-1 +museon,1 +museopro,-1 +museovirasto,0 +museoviraston julkaisuja,0 +museu marítim de barcelona,0 +museum and society,2 +museum anthropology,1 +museum anthropology review,1 +museum für völkerkunde hamburg,0 +museum helveticum,2 +museum history journal,1 +museum international,2 +museum management and curatorship,2 +"museum of evolution, uppsala",0 +museum of modern art,1 +museum tusculanum,1 +museums & the web,0 +museums and social issues,1 +museumsetc,0 +music & science,1 +music + practice,1 +music analysis,3 +music and anthropology: journal of mediterranean musical anthropology,1 +music and arts in action,1 +music and letters,2 +music and medicine,1 +music and politics,1 +music and the moving image,1 +music business journal,0 +music education research,3 +music forum,0 +music in art,1 +music perception,2 +music performance research,1 +music reference services quarterly,1 +music research annual,1 +music technology group,0 +music theory and analysis,1 +music theory online,1 +music theory spectrum,3 +music therapy perspectives,2 +music therapy today,1 +"music, sound, and the moving image",0 +musica & figura,1 +musica e storia,1 +musica humana,1 +musicae scientiae,3 +musical quarterly,2 +musicoguía magazine,0 +musicologica austriaca,1 +musicologica slovaca,0 +musicology australia,1 +musicology today,1 +musicultures,1 +musiikin suunta,0 +"musiikin, kulttuurin ja taiteen edistämisyhdistys ry",0 +musiikki,2 +musiikkiarkiston kannatusyhdistys,0 +musiikkikasvatus,1 +musiikkiterapia,-1 +musik in bayern,1 +musik und asthetik,1 +musik und kirche,0 +musikeon books,0 +musikforschung,2 +musikk og tradisjon,1 +musikkterapi,1 +musikpedagogik,1 +musikpsychologie,1 +musiktheorie,1 +musiktherapeutische umschau,1 +musil-forum: beitrage zur literatur der klassischen moderne,1 +musings,0 +"musique, images, instruments",1 +muslim education quarterly,0 +muslim minorities,1 +muslim world,1 +musta taide,-1 +mustarinda,-1 +mustasaari tiedottaa,-1 +mustekala.info,0 +mustemaalari,-1 +mutagenesis,1 +mutation research,1 +mutation research: fundamental and molecular mechanisms of mutagenesis,1 +mutation research: genetic toxicology and environmental mutagenesis,1 +mutation research: reviews in mutation research,1 +muttersprache,1 +muuriankkuri,-1 +muusikko,-1 +muutos,-1 +muzealnictwo,0 +muzej antropologii i e`tnografii im. petra velikogo (kunstkamera) ran,1 +muzeum narodowe w szczecinie,0 +muziki,1 +muzikologija,0 +muzikoloski zbornik,1 +muzyka: kwartalnik poswiecony historii i teorii muzyki,1 +muṭāli̒āt-i barnāmah/rīzī-yi āmūzishī,0 +mycobiology,1 +mycobiota,0 +mycokeys,1 +mycologia,2 +mycological progress,1 +mycological research,1 +mycology,0 +mycopathologia,1 +mycorrhiza,1 +mycoscience,1 +mycoses,1 +mycosphere,1 +mycosystema,1 +mycotaxon,1 +mycotoxin research,1 +myers education press,1 +myndigheten för kulturanalys,0 +myntstudier,-1 +myrmecological news,1 +myrtia: revista de filologia clasica,1 +myynti & markkinointi,-1 +myötätuulta merimaskussa,-1 +mzuni press,0 +mäetagused,0 +mälardalens högskola,0 +mäntykustannus,0 +mäyräkoiramme,-1 +määräykset ja ohjeet,-1 +mål + mæle,-1 +médecine sciences,1 +médica panamericana,0 +mélanges de l'ecole francaise de rome: antiquité,2 +mélanges de l'ecole francaise de rome: moyen-age,1 +mémoires de la société mathématique de france,1 +mémoires de la société néophilologique,1 +mìkrobìologìčnij žurnal,0 +mówią wieki,-1 +mùzeum,1 +música hodie,1 +mühendislik bilimleri ve tasarım dergisi,0 +müürileht,-1 +mūzikas akadēmijas raksti,0 +n a b u: nouvelles assyriologiques breves et utilitaires,1 +n-1 publications,0 +n-iussp,-1 +n:paradoxa: international feminist art journal,1 +naamkunde,1 +nachrichten aus der chemie,0 +nachrichten der arl,-1 +nacional`ny`j issledovatel`skij nizhegorodskij gosudarstvenny`j universitet,0 +nacrazvitie,0 +nacta journal,1 +naea news,-1 +nafems,0 +nagoya journal of medical science,0 +nagoya mathematical journal,1 +naharaim,1 +nai010 uitgevers/publishers,0 +nais,1 +naisit publishers,0 +"nakanishi print co., ltd. shoukado shoten",0 +nakanishiya shuppan,0 +naklada jesenski i turk,1 +nalans,1 +namenkundliche informationen,1 +names,2 +namibia journal of social justice,0 +nammco scientific publications,1 +nammo lapua oy,0 +nammo vihtavuori oy,0 +namn och bygd,1 +namn og nemne: tidsskrift for norsk namnegransking,1 +"nan nu: men, women and gender in early and imperial china",1 +nanjing linye daxue xuebao,0 +nanjing theological review,0 +nanjing university press,0 +nankai business review international,1 +nano,1 +nano communication networks,1 +nano energy,3 +nano energy systems,0 +nano express,1 +nano futures,1 +nano hybrids and composites,0 +nano letters,3 +nano research,2 +nano research energy,1 +nano select,1 +nano today,3 +nano-micro letters,2 +nano-structures & nano-objects,1 +nanoethics,1 +nanofabrication,1 +nanoimpact,1 +nanomaterials,1 +nanomedicine,1 +nanomedicine: nanotechnology biology and medicine,2 +nanophotonics,2 +nanoscale,3 +nanoscale advances,1 +nanoscale and microscale thermophysical engineering,1 +nanoscale horizons,1 +"nanoscale systems : mathematical modeling, theory and applications",1 +nanoscience and nanotechnology letters,0 +"nanosistemy : fizika, himia, matematika",1 +nanotechnologies in russia,0 +nanotechnology,2 +nanotechnology and precision engineering,1 +nanotechnology for environmental engineering,1 +nanotechnology reviews,1 +"nanotechnology, science and applications",1 +nanotheranostics,1 +nanotoxicology,2 +napakaira,-1 +napis: tom poswiecony literaturze okolicznosciowej i uzytkowej,1 +napkút kiadó,0 +nappi,-1 +napvilág kiadó,0 +nar cancer,1 +nar genomics and bioinformatics,1 +narcea,0 +narcissus self publishing,0 +narodna umjetnost,1 +narodowy instytut fryderyka chopina,0 +narr francke attempto verlag,1 +narra j,0 +narratio,0 +narrative,2 +narrative culture,2 +narrative inquiry,2 +narrative works,1 +narva muuseum,0 +nasa/dod conference on evolvable hardware,1 +nasa/esa conference on adaptive hardware and systems,0 +nasarre: revista aragonesa de musicologia,1 +nase rec,1 +nashboro press,1 +nashim: a journal of jewish womens studies,1 +nasjonalbiblioteket,0 +nasleđe,1 +nassauische annalen,1 +nassp bulletin,1 +nathaniel hawthorne review,1 +nation,1 +nationaal informatiecentrum leermiddelen,0 +national academies press,1 +national accounting review,1 +national art education association,0 +national bank of poland working paper,-1 +national center for radio and television studies,1 +national central university,0 +national chengchi university,0 +national conference on information assurance,0 +national congress of bioengineering : proceedings,0 +national forensic journal,0 +national gallery technical bulletin,1 +national identities,2 +national institute economic review,1 +national institute of adult continuing education,1 +national institute of informatics,0 +national institute of information and communications technology,0 +national institute of technology sendai college,0 +national medical journal of india,1 +national metallurgical academy of ukraine,0 +national science review,1 +national tax journal,1 +national technical university of athens,0 +national trust,1 +national university of tucumán,0 +nationalism and ethnic politics,1 +nationalities papers,1 +nationalmuseets arbejdsmark,1 +nationalmuseum,0 +nations and nationalism,3 +native plants journal,0 +native studies review,0 +nato cooperative cyber defence centre of excellence,0 +"nato science series: sub series i, life and behavioural sciences",1 +natopoll,-1 +natur och kultur,1 +natur und landschaft,0 +natur und recht,1 +natura,0 +natura optima dux foundation,0 +natural areas journal,1 +natural computing,1 +natural hazards,1 +natural hazards and earth system sciences,1 +natural hazards review,1 +natural history,1 +natural history sciences,0 +natural language and linguistic theory,3 +natural language engineering,3 +natural language processing journal,0 +natural language semantics,2 +natural product communications,1 +natural product reports,1 +natural product research,1 +natural resource modeling,1 +natural resources,0 +natural resources forum,1 +natural resources journal,1 +natural resources research,1 +natural science,0 +natural sciences,1 +nature,3 +nature aging,1 +nature and culture,1 +nature and resources,1 +nature and science of sleep,1 +nature astronomy,3 +nature biomedical engineering,3 +nature biotechnology,3 +nature cancer,3 +nature cardiovascular research,1 +nature catalysis,2 +nature cell biology,3 +nature chemical biology,3 +nature chemistry,3 +nature cities,0 +nature climate change,3 +nature communications,3 +nature computational science,1 +nature conservation,1 +nature conservation research,0 +nature ecology & evolution,3 +nature electronics,3 +nature energy,3 +nature food,3 +nature genetics,3 +nature geoscience,3 +nature human behaviour,3 +nature immunology,3 +nature machine intelligence,2 +nature materials,3 +nature medicine,3 +nature mental health,1 +nature metabolism,2 +nature methods,3 +nature microbiology,3 +nature nanotechnology,3 +nature neuroscience,3 +nature photonics,3 +nature physics,3 +nature plants,3 +nature protocols,1 +nature publishing group,0 +nature reviews : chemistry,2 +nature reviews : disease primers,3 +nature reviews : earth & environment,1 +nature reviews : materials,1 +nature reviews cancer,2 +nature reviews cardiology,2 +nature reviews clinical oncology,2 +nature reviews drug discovery,3 +nature reviews endocrinology,2 +nature reviews gastroenterology and hepatology,2 +nature reviews genetics,2 +nature reviews immunology,3 +nature reviews methods primers,1 +nature reviews microbiology,3 +nature reviews molecular cell biology,2 +nature reviews nephrology,2 +nature reviews neurology,3 +nature reviews neuroscience,3 +nature reviews physics,2 +nature reviews psychology,1 +nature reviews rheumatology,2 +nature reviews urology,2 +nature structural and molecular biology,3 +nature sustainability,3 +nature synthesis,1 +nature water,1 +nature-based solutions,1 +naturen,0 +natures sciences societes,1 +natureza and conservacao,1 +nau?no-tehni?eskij vestnik povolž?â,0 +nauchno-innovacionny`j centr,1 +nauchno-izdatel`skij centr infra-m,0 +nauchno-izdatelskij centr indrik,0 +nauchno-prakticheskaja konferencii privolzhsky federalnogo okruga s mezhdunarodnyj uchastiem,0 +nauchnyj zhurnal niu itmo : seria ekonomika i ekologicheskij menedzhment,0 +naukovij vìsnik nacìonalʹnogo gìrničogo unìversitetu,1 +naunyn-schmiedebergs archives of pharmacology,1 +nauta,-1 +nautic,-1 +nautica fennica,1 +nautilus,1 +naučno-tehničeskie vedomosti sankt-peterburgskogo gosudarstvennogo politehničeskogo universiteta,0 +"naučno-tehničeskij vestnik informacionnyh tehnologij, mehaniki i optiki",0 +naučnoe obozrenie : teoriâ i praktika,0 +naučnyj rezulʹtat : seriâ sociologiâ i upravlenie,1 +naučnyj žurnal kubanskogo gosudarstvennogo agrarnogo universiteta,0 +naval engineers journal,1 +naval institute press,1 +naval research logistics,1 +navigation,2 +navigationen,0 +navigator magazine,-1 +nawa,0 +nazariyat islam felsefe bilim tarihi araştırmaları dergisi,1 +naša žiznʹ,0 +nber macroeconomics annual,1 +ncar technical note,0 +nceub,0 +ncge news,-1 +ncsl international measure,0 +ndc policy brief,-1 +nds,-1 +ndt,0 +ndt & e international,2 +nea ygeia,-1 +nealt monograph series,0 +nealt proceedings series,1 +near eastern archaeology,1 +near surface geophysics,1 +nebraska symposium on motivation,1 +nebrija procedia,0 +necatibey eğitim fakültesi elektronik fen ve matematik eğitimi dergisi,0 +necsus,1 +ned geref teologiese tydskrif,1 +nederlands instituut voor het nabije oosten,1 +nederlands juristenblad,-1 +nederlands kunsthistorisch jaarboek,1 +nederlands theologisch tijdschrift,1 +nederlands tijdschrift voor geneeskunde,1 +nederlands tijdschrift voor tandheelkunde,1 +nederlandse letterkunde,1 +nederlandse taalkunde,1 +neerlandistiek.nl,1 +nefrologia,1 +neftyanoe khozyaistvo - oil industry,1 +negah-e moaser,0 +negotiation journal,1 +nejm evidence,1 +nelinijni kolivannâ,1 +nelumbo : bulletin of the botanical survey of india,0 +nematology,1 +nemo,0 +neo-assyrian text corpus project,1 +neobiota,1 +neofilologiâ,0 +neograeca bohemica,1 +neohelicon,2 +neonataalihoitaja,-1 +neonatal and pediatric medicine,0 +neonatal network,0 +neonatology,2 +neonatology today,0 +neophilologus,2 +neoplasia,2 +neoplasma,1 +neoreviews,0 +neotestamentica,2 +neotropical biodiversity,1 +neotropical biology and conservation,1 +neotropical entomology,1 +neotropical ichthyology,1 +nep era : soviet russia 1921-1928,0 +nepal journal of biotechnology,0 +nephrologie et therapeutique,1 +nephrology,1 +nephrology dialysis transplantation,2 +nephrology nursing journal,1 +nephron extra,1 +neprajzi ertesito,1 +nepreryvnoe obrazovanie: xxi vek,1 +nervenarzt,1 +nervenheilkunde,1 +nestor-istorija,1 +net journal of agricultural science,0 +netbiblo,0 +netcom,0 +netherlands heart journal,1 +netherlands international law review,1 +netherlands journal of geosciences-geologie en mijnbouw,1 +netherlands journal of medicine,0 +netherlands quarterly of human rights,2 +netherlands yearbook of international law,1 +netla,0 +netnomics: economic research and electronic networking,1 +network,0 +network and distributed system security symposium,2 +network modeling analysis in health informatics and bioinformatics,1 +network neuroscience,1 +network science,1 +network: computation in neural systems,1 +networker: association for computing machinery,1 +networks,2 +networks and heterogeneous media,1 +networks and spatial economics,1 +neue gesellschaft für bildende kunst e.v.,0 +neue paläontologische abhandlungen,1 +neue politische literatur,1 +"neue praxis: zeitschrift für sozialarbeit, sozialpädagogik und sozialpolitik",1 +neue romania,1 +neue rundschau,1 +neue zeitschrift fur systematische theologie und religionsphilosophie,3 +neue zeitschrift für arbeitsrecht,1 +neue zeitschrift für musik,0 +neues jahrbuch fur geologie und palaontologie: abhandlungen,1 +neues jahrbuch fur mineralogie: abhandlungen,1 +neukirchener verlag,1 +neulateinisches jahrbuch: journal of neo-latin language and literature,1 +neuphilologische mitteilungen,2 +neural computation,3 +neural computing and applications,1 +neural development,1 +neural network world,1 +neural networks,3 +neural plasticity,1 +neural processing letters,1 +neural regeneration research,1 +neuro-oncology,2 +neuro-oncology advances,1 +neuro-oncology practice,1 +neuro-ophthalmology,1 +neuroanatomy and behaviour,0 +neurobiology of aging,2 +neurobiology of disease,2 +neurobiology of language,1 +neurobiology of learning and memory,1 +neurobiology of lipids,1 +neurobiology of stress,1 +neurocase,1 +neurochemical journal,1 +neurochemical research,1 +neurochemistry international,1 +neurochirurgie,1 +neurocirugia,1 +neurocomputing,2 +neurocritical care,1 +neurodegenerative disease management,1 +neurodegenerative diseases,1 +neurodiversity,0 +neuroendocrinology,1 +neuroendocrinology letters,1 +neuroepidemiology,1 +neuroethics,2 +neuroforum,1 +neurogastroenterology and motility,1 +neurogenetics,1 +neurohoitaja,-1 +neuroimage,3 +neuroimage : clinical,2 +neuroimage : reports,1 +neuroimaging clinics of north america,1 +neuroimmunomodulation,1 +neuroinformatics,2 +neurologia,1 +neurologia croatica,1 +neurologia i neurochirurgia polska,1 +neurologia medico-chirurgica,1 +neurologic clinics,1 +neurological research,1 +neurological research and practice,1 +neurological sciences,1 +neurological surgery,1 +neurologist,1 +neurology,3 +neurology : genetics,1 +neurology : neuroimmunology & neuroinflammation,1 +neurology and neurobiology,0 +neurology and therapy,2 +neurology asia,1 +neurology india,1 +neurology international,0 +neurology psychiatry and brain research,1 +neurology research international,1 +"neurology, neurophysiology and neuroscience",1 +neurology. clinical practice,0 +neuromethods,1 +neuromodulation,1 +neuromolecular medicine,1 +neuromorphic computing and engineering,1 +neuromuscular disorders,1 +neuron,3 +neuron glia biology,1 +neuronal signaling,1 +"neurons, behavior, data analysis, and theory",0 +neuropathology,1 +neuropathology and applied neurobiology,1 +neuropediatrics,1 +neuropeptides,1 +neuropharmacology,3 +neurophotonics,1 +neurophysiologie clinique-clinical neurophysiology,1 +neurophysiology,1 +neurophysiology and rehabilitation,0 +neuroprotection,0 +neuropsy open,0 +neuropsychiatric disease and treatment,1 +neuropsychiatry,0 +neuropsychobiology,1 +neuropsychologia,2 +neuropsychological rehabilitation,1 +neuropsychology,2 +neuropsychology review,2 +neuropsychopharmacologia hungarica,0 +neuropsychopharmacology,3 +neuropsychopharmacology reports,0 +neuroquantology,0 +neuroradiology,1 +neurorehabilitation,1 +neurorehabilitation and neural repair,2 +neuroreport,1 +neurosci,0 +neuroscience,2 +neuroscience and behavioral physiology,1 +neuroscience and biobehavioral reviews,3 +neuroscience applied,1 +neuroscience bulletin,1 +neuroscience letters,1 +neuroscience of consciousness,1 +neuroscience research,1 +neuroscience research communications,1 +neurosciences,1 +neuroscientist,1 +neurosignals,1 +neurospine,1 +neurosurgery,2 +neurosurgery clinics of north america,1 +neurosurgery practice,1 +neurosurgery quarterly,1 +neurosurgical focus,0 +neurosurgical focus : video,0 +neurosurgical review,1 +neurotherapeutics,1 +neurotoxicity research,1 +neurotoxicology,1 +neurotoxicology and teratology,1 +neurotrauma reports,1 +neurourology and urodynamics,1 +neusis: the greek journal for the history and philosophy of science and technology,1 +neuvola & kouluterveys,-1 +nevelestudomany,0 +nevtani ertesito,1 +new academic press,0 +new age books,0 +new age in russia,-1 +new american studies journal,1 +new and rare for lithuania insect species: records and descriptions,0 +new angle,-1 +"new apps: art, politics, philosophy, science",0 +new astronomy,1 +new astronomy reviews,1 +new balkan politics,1 +new biotechnology,1 +new blackfriars,0 +new carbon materials,-1 +new cinemas: journal of contemporary film,1 +new concepts in polymer science,1 +new contree,1 +new criminal law review,1 +new directions for adult and continuing education,1 +new directions for child and adolescent development,1 +new directions for evaluation,1 +new directions for higher education,1 +new directions for institutional research,1 +new directions for student services,0 +new directions for teaching and learning,1 +new directions for youth development,1 +new disease reports,1 +new diversities,1 +new educational review,1 +new electronics,1 +new england journal of entrepreneurship,1 +new england quarterly: a historical review of new england life and letters,1 +new england review: middlebury series,1 +new england theatre journal,1 +new europe college yearbook,0 +new forests,1 +new formations: a journal of culture/theory/politics,1 +new generation computing,1 +new genetics and society,1 +new german critique,3 +new german review,1 +new global studies,0 +new hibernia review,1 +new history,1 +new horizons in adult education and human resource development,1 +new horizons in translational medicine,0 +new ideas in psychology,1 +new journal of chemistry,1 +new journal of european criminal law,1 +new journal of physics,2 +new left review,2 +new library world,1 +new literary history,3 +new mathematics and natural computation,1 +new media and society,3 +new medit,1 +new mexico geological society,0 +new mexico historical review,1 +new microbes and new infections,1 +new microbiologica,1 +new orleans review,1 +new perspectives,1 +new perspectives in science education : conference proceedings,0 +new perspectives on learning and instruction,3 +new perspectives on turkey,1 +new perspectives quarterly,1 +new phytologist,3 +new political economy,3 +new political science: a journal of politics and culture,1 +new problems of philosophy,3 +new republic,1 +new review of academic librarianship,1 +new review of childrens literature and librarianship,1 +new review of film and television studies,2 +new review of hypermedia and multimedia,1 +new review of information networking,1 +new sociological perspectives,0 +new solutions: a journal of environmental and occupational health policy: ns:,1 +new south wales public health bulletin,1 +new space,1 +new technology work and employment,1 +new testament studies,3 +"new testament tools, studies and documents",1 +new theatre quarterly,2 +new trends and issues proceedings on humanities and social sciences,0 +new trends in qualitative research,1 +new voices in classical reception studies,1 +new voices in translation studies,1 +new waves in philosophy,3 +new world choreographies,3 +new writing: the international journal for the practice and theory of creative writing,1 +new yearbook for phenomenology and phenomenological philosophy,2 +new york academy of sciences,1 +new york journal of mathematics,1 +new york review of books,0 +new york times book review,0 +new york university journal of international law and politics,1 +new york university law review,2 +new york university press,2 +new zealand aquatic environment and biodiversity report,-1 +new zealand entomologist,1 +new zealand geographer,1 +new zealand journal of agricultural research,1 +new zealand journal of botany,1 +new zealand journal of crop and horticultural science,1 +new zealand journal of ecology,1 +new zealand journal of educational studies,1 +new zealand journal of environmental law,1 +new zealand journal of forestry science,0 +new zealand journal of geology and geophysics,1 +new zealand journal of history,1 +new zealand journal of marine and freshwater research,1 +new zealand journal of mathematics,1 +new zealand journal of music therapy,1 +new zealand journal of psychology,1 +new zealand journal of public and international law,1 +new zealand journal of teachers' work,-1 +new zealand journal of zoology,1 +new zealand law review,1 +new zealand population review,1 +new zealand slavonic journal,1 +new zealand sociology,1 +new zealand studies in applied linguistics,1 +new zealand universities law review,1 +new zealand veterinary journal,1 +newborn and infant nursing review,1 +news & science,-1 +news and views,0 +newsbrief,-1 +newsletter,-1 +newsletter - australian centre for maritime studies,1 +newsletter of the international network of gelechioid aficionados,0 +newsletters on stratigraphy,1 +newspaper research journal,1 +newswood limited,0 +newton´s bulletin,0 +next,-1 +next energy,1 +next materials,1 +next research,0 +next sustainability,1 +nexus network journal,1 +nhri symposium,1 +nias press,1 +nibio,0 +nibio bok,0 +nibr-notat,-1 +nic series : publication series of the john von neumann institute for computing,1 +nichibunken japan review,0 +nicotine and tobacco research,1 +nieren- und hochdruckkrankheiten,1 +nietzsche-studien,1 +nifu,1 +nigata daigaku koto kyoiku kenkyu,0 +nigeria dental journal,-1 +nigerian journal of clinical practice,0 +nigerian journal of construction technology and management,0 +nihon kagaku kyoiku gakkai nenkai ronbunshu,0 +nihon onsen kiko butsuri igakkai zasshi,0 +nihon reoroji gakkaishi,1 +nihon shokuhin k?gakkaishi,0 +nihon terewaku gakkaishi,0 +nihon zaidan pararinpikku sapoto senta pararinpikku kenkyukai kiyo,0 +nihr open research,0 +niilo mäki instituutti,0 +niin & näin,1 +nijhoff law specials,1 +nikephoros: zeitschrift fur sport und kultur im altertum,1 +nikola vaptsarov naval academy,0 +nineteenth century art worldwide,1 +nineteenth century gender studies,1 +nineteenth century music,2 +nineteenth century prose,2 +nineteenth century theatre and film,1 +nineteenth-century contexts,1 +nineteenth-century french studies,2 +nineteenth-century literature,3 +nineteenth-century music review,1 +nineteenth-century studies,1 +ningen kankyogaku kenkyu,0 +ningen kōgaku,0 +nino aragno editore,1 +nippi,-1 +nippon hyoron,0 +nippon jozo kyokaishi,0 +nippon suisan gakkaishi,1 +nir : nordiskt immateriellt rättsskydd,2 +nispacee journal of public administration and policy,1 +nitric oxide-biology and chemistry,1 +nitrogen,0 +nivala,-1 +nivel,0 +nivelposti,-1 +niveltieto,-1 +nizhegorodskij gosudarstvenny`j lingvisticheskij universitet im. n.a.dobrolyubova,0 +nj drama australia journal,1 +njar publishers,0 +njas: wageningen journal of life sciences,1 +njf report,-1 +nmediac: the journal of new media and culture,1 +nmh-publikasjoner,1 +nmims management review,0 +nmr in biomedicine,1 +no foundations: journal of extreme legal positivism,1 +no niin,-1 +no to hattatsu,0 +noa: norsk som andrespråk,1 +nobel bilimsel eserler,0 +"nobilta: rivista di araldica, genealogia, ordini cavallereschi",0 +nobuko,0 +nodea: nonlinear differential equations and applications,1 +nodus publikationen,1 +noema,1 +noise & vibration worldwide,0 +noise and health,1 +noise and vibration in industry,0 +nokia ennen ja nyt,-1 +nokturno,-1 +nomad: nordisk matematikkdidaktikk,1 +nomadic peoples,1 +nomerta kustannus oy,0 +nomina,1 +nomina africana,1 +nomos,2 +non fighting generation ry,0 +non-coding rna,0 +non-fiction,-1 +non-genetic inheritance,1 +nonautonomous dynamical systems,1 +nondestructive testing and evaluation,1 +nongchon jido wa gaebal,0 +nongye jixie xuebao,0 +nonlinear analysis-hybrid systems,0 +nonlinear analysis: modelling and control,1 +nonlinear analysis: real world applications,1 +nonlinear analysis: theory methods and applications,1 +nonlinear biomedical physics,0 +nonlinear dynamics,2 +nonlinear dynamics and systems theory,1 +"nonlinear dynamics, psychology, and life sciences",1 +"nonlinear optics, quantum optics",1 +nonlinear phenomena in complex systems,1 +nonlinear processes in geophysics,1 +nonlinear studies,1 +nonlinearity,1 +nonprofit and voluntary sector quarterly,2 +nonprofit digest,0 +nonprofit management and leadership,1 +nonproliferation review,1 +nora: nordic journal of feminist and gender research,2 +nordand: nordisk tidsskrift for andrespråksforskning,2 +norden,-1 +nordens välfärdscenter,0 +nordenskiöld-samfundets tidskrift,0 +nordeuropaforum,1 +nordfo,0 +nordia geographical publications,1 +nordia tiedonantoja,-1 +nordic academic press,1 +nordic academic press of architectural research,1 +nordic acoustics association,0 +nordic and baltic journal of information and communications technologies,1 +nordic association for canadian studies text series,1 +nordic centre in shanghai,0 +nordic concrete research,1 +nordic conference on pattern languages of programs,0 +nordic council of ministers,0 +nordic design research conference,1 +nordic economic policy review,1 +nordic innovation,0 +nordic irish studies,1 +nordic journal of aesthetics,1 +nordic journal of african studies,1 +nordic journal of architectural research,2 +nordic journal of art and research,1 +"nordic journal of arts, culture and health",1 +nordic journal of botany,1 +nordic journal of business,1 +nordic journal of commercial law,1 +nordic journal of comparative and international education,1 +nordic journal of criminology,1 +"nordic journal of dance : practice, education and research",1 +nordic journal of digital literacy,1 +nordic journal of educational history,1 +nordic journal of english studies,1 +nordic journal of european law,1 +nordic journal of health economics,1 +nordic journal of human rights,2 +nordic journal of information literacy in higher education,1 +nordic journal of international law,2 +nordic journal of legal studies,0 +nordic journal of library and information studies,1 +nordic journal of linguistics,3 +nordic journal of literacy research,1 +nordic journal of media management,1 +nordic journal of media studies,1 +nordic journal of migration research,2 +nordic journal of music therapy,2 +nordic journal of nursing research,1 +nordic journal of political economy,1 +nordic journal of psychiatry,1 +nordic journal of rehabilitation,0 +nordic journal of religion and society,3 +nordic journal of renaissance studies,1 +nordic journal of science and technology studies,1 +nordic journal of social research,1 +nordic journal of stem education,1 +nordic journal of studies in educational policy,1 +nordic journal of studies in policing,1 +nordic journal of surveying and real estate research,1 +nordic journal of surveying and real estate research : special series,1 +"nordic journal of transitions, careers and guidance",1 +nordic journal of urban studies,1 +nordic journal of vocational education and training,1 +nordic journal of wellbeing and sustainable welfare development,0 +nordic journal of working life studies,1 +nordic journal on law and society,1 +nordic notes,1 +nordic perspectives on open science,-1 +nordic psychology,1 +nordic pulp and paper research journal,1 +nordic research in music education,1 +nordic review of international studies,1 +nordic road and transport research,-1 +nordic social work research,1 +nordic studies in education,1 +nordic studies in pragmatism,1 +nordic studies on alcohol and drugs,1 +nordic symposium on cloud computing and internet technology,0 +nordic symposium on multimodal communication,0 +nordic tax journal,1 +nordic theatre studies,2 +nordic wittgenstein review,1 +nordic working papers,-1 +nordic workshop on programming theory,0 +nordic: journal of architecture,1 +nordica,1 +nordica helsingiensia,1 +nordicom,1 +nordicom review,2 +nordicum-mediterraneum,1 +nordidactica: journal of humanities and social science education,1 +nordina,1 +nordiques,1 +nordisk administrativt tidsskrift,1 +nordisk arkivnyt,-1 +nordisk barnehageforskning,1 +nordisk judaistik / scandinavian jewish studies,2 +nordisk konservatorforbund : danske afdeling,-1 +nordisk kulturpolitisk tidsskrift,1 +nordisk miljörättslig tidskrift,1 +nordisk museologi,1 +nordisk numismatisk unions medlemsblad,-1 +nordisk numismatisk årsskrift - scandinavian numismatic journal,1 +nordisk oestforum,1 +nordisk pappershistorisk tidskrift,-1 +nordisk poesi,1 +nordisk samhällsgeografisk tidskrift,1 +nordisk socialrättslig tidskrift,1 +nordisk sygeplejeforskning,0 +nordisk tidskrift for horsel- och dovundervisning ntd,1 +"nordisk tidskrift for vetenskap, konst och industri",1 +nordisk tidskrift för socioonomastik,1 +nordisk tidskrift för allmän didaktik,1 +nordisk tidsskrift for helseforskning,1 +nordisk tidsskrift for kriminalvidenskab,1 +nordisk tidsskrift for pedagogikk & kritikk,1 +nordisk tidsskrift for selskabsret,1 +nordisk tidsskrift for ungdomsforskning,1 +nordisk tidsskrift for utdanning og praksis,1 +nordisk välfärdsforskning,1 +nordiska afrikainstitutet,1 +nordiska museets förlag,0 +"nordiske fortidsminder, serie b",1 +nordiske organisasjonsstudier,1 +nordiske studier i leksikografi,0 +nordiske udkast,1 +nordlit,1 +nordlyd,1 +nordmetric news,0 +nordost-archiv,0 +nordregio,0 +nordregio news,0 +nordrhein-westfälische akademie der wissenschaften und der künste,1 +nordwel studies in historical welfare state research,1 +noreddine hanini,0 +norges geologiske undersøkelse,1 +norges miljø- og biovitenskapelige universitet,0 +norges musikkhøgskole,0 +norma : international journal for masculinity studies,2 +normal,-1 +normas,1 +normat: nordisk matematisk tidskrift,1 +norna-rapporter,1 +norrbotten,-1 +norrlinia,0 +norsk antropologisk tidsskrift,1 +norsk arkitekturforlag,1 +norsk betongforening,0 +norsk epidemiologi,1 +"norsk epidemiologi, supplement",1 +norsk filosofisk tidsskrift,1 +norsk geografisk tidsskrift-norwegian journal of geography,1 +norsk kulturråd,0 +norsk lingvistisk tidsskrift,1 +norsk litteraer årbok,1 +norsk litteraturvitenskapelig tidsskrift,1 +norsk medietidsskrift,1 +norsk pedagogisk tidsskrift,1 +norsk sosiologisk tidsskrift,1 +norsk statsvitenskapelig tidsskrift,1 +norsk tidsskrift for logopedi,1 +norsk tidsskrift for misjonsvitenskap,1 +norsk utenrikspolitisk institutt,0 +norsk veterinaertidsskrift,1 +norske samlaget,1 +norstedts,1 +norstedts juridik,1 +north american actuarial journal,1 +north american archaeologist,1 +north american fungi,1 +north american journal of aquaculture,1 +north american journal of celtic studies,1 +north american journal of economics and finance,1 +north american journal of fisheries management,1 +north american review,0 +north american spine society journal,1 +north carolina journal of law & technology,1 +north korean review,1 +north pinehurst press,0 +north star,1 +north-east asia academic forum,0 +north-west passage,1 +north-western journal of zoology,1 +northamptonshire archaeology,1 +northeast african studies,0 +northeast journal of complex systems,-1 +northeastern naturalist,0 +northern contemporary,1 +northern earth,0 +northern european journal of language technology,1 +northern history,1 +northern illinois university press,1 +northern ireland legal quarterly,1 +northern lights: film and media studies yearbook,1 +northern mariner,1 +northern review,1 +northern studies: the journal of the scottish society for northern studies,1 +northwest lichenologists,0 +northwest science,0 +northwestern journal of law and social policy,1 +northwestern university law review,2 +northwestern university libraries,0 +northwestern university press,1 +norvik press,1 +norwegian archaeological review,2 +"norwegian journal of agricultural sciences, supplement",1 +norwegian journal of entomology,1 +norwegian journal of geology,1 +norwegian petroleum society: special publications,1 +norwegian university of science and technology,0 +norwegian-american historical association,1 +noste,-1 +nosīleia kai ereuna,0 +nota,0 +nota bene yayinlari,0 +nota lepidopterologica,1 +notae praehistoricae,1 +notes,1 +notes and queries,1 +notes and records of the royal society,1 +notes on ifs,0 +notes on number theory and discrete mathematics,1 +notfall und rettungsmedizin,1 +notices of the american mathematical society,0 +notitia,0 +notizie di politeia,1 +notre dame journal of formal logic,2 +notre dame law review,1 +notre dame philosophical reviews,0 +nottingham french studies,2 +nottingham insolvency and business law e-journal,1 +nottingham trent university,0 +nottingham university press,1 +notulae botanicae horti agrobotanici cluj-napoca,0 +nous,3 +nouvelle revue d'esthetique,1 +nouvelle revue d'onomastique,1 +nouvelle revue francaise,1 +nouvelle revue theologique,1 +nouvelles de l archeologie,1 +nouvelles etudes francophones,1 +nouvelles perspectives en sciences sociales,0 +nouvelles questions feministes,1 +nova et vetera,1 +nova hedwigia,1 +nova hedwigia beihefte,1 +nova md,0 +nova religio: journal of alternative and emergent religions,2 +nova sandek,0 +nova science publishers,1 +nova srpska politicka misao,1 +nova tellus,1 +nova univerza,0 +novartis foundation symposia,1 +novaâ i novejsaâ istoriâ,1 +novejšaâ istoriâ rossii,0 +novel techniques in nutrition & food science,0 +novel: a forum on fiction,3 +novenytermeles,1 +novgorodskij gosudarstvenny`j universitet imeni yaroslava mudrogo,0 +novia publications and productions,-1 +novia publikation och produktion,-1 +novia publikation och produktion,0 +novia publikations and productions,-1 +novissima,-1 +novitas-royal (research on youth and language),1 +novitates caribaea,1 +novoe izdatel`stvo,0 +novoe literaturnoe obozrenie,1 +novoe literaturnoe obozrenie,2 +novon,1 +novos olhares,0 +novosibirskij gosudarstvenny`j pedagogicheskij universitet,0 +novosti sistematiki nizsich rastenij,0 +novum publishing,0 +novum testamentum,3 +novus forlag,1 +novus studies in literature,1 +novyi filologicheskii vestnik,1 +novyi mir,0 +nová tiskárna pelhřimov,0 +now publishers,0 +nowele: north western european language evolution,1 +noēma,-1 +npg,0 +npg asia materials,2 +npj sustainable mobility and transport,0 +npj 2d materials and applications,1 +npj aging,1 +npj antimicrobials and resistance,-1 +npj biodiversity,1 +npj biofilms and microbiomes,1 +npj breast cancer,1 +npj clean water,1 +npj climate action,1 +npj climate and atmospheric science,2 +npj computational materials,1 +npj digital medicine,2 +npj flexible electronics,3 +npj genomic medicine,1 +npj gut and liver,1 +npj materials degradation,1 +npj materials sustainability,-1 +npj mental health research,1 +npj metabolic health and disease,1 +npj microgravity,1 +npj nanophotonics,1 +npj parkinson's disease,2 +npj precision oncology,1 +npj primary care respiratory medicine,1 +npj quantum information,3 +npj quantum materials,3 +npj regenerative medicine,-1 +npj science of food,2 +npj science of learning,1 +npj systems biology and applications,0 +npj urban sustainability,1 +npj vaccines,1 +npj viruses,0 +nrc handelsblad,-1 +nrc research press,1 +nriag journal of astronomy and geophysics,0 +nss space settlement journal,0 +nsu press,0 +nt klasika,0 +ntamo,0 +"ntm journal of history of sciences, technology, and medicine",1 +nuance: the international journal of family policy and related issues,1 +nuart journal,1 +nuclear and particle physics proceedings,1 +nuclear data sheets,1 +nuclear education and training,0 +nuclear engineering and design,3 +nuclear engineering and technology,1 +nuclear engineering international,1 +nuclear fusion,2 +"nuclear instruments and methods in physics research section a: accelerators, spectrometers, detectors and associated equipment",1 +nuclear instruments and methods in physics research section b: beam interactions with materials and atoms,2 +nuclear materials and energy,1 +nuclear medicine and biology,1 +nuclear medicine and molecular imaging,1 +nuclear medicine communications,1 +nuclear physics a,1 +nuclear physics b,2 +nuclear physics news,0 +nuclear plant journal,1 +nuclear receptor research,1 +nuclear receptor signaling,1 +nuclear science and engineering,1 +nuclear science and techniques,1 +nuclear technology,1 +nuclear technology and radiation protection,1 +nucleic acid therapeutics,1 +nucleic acids research,3 +nucleosides nucleotides and nucleic acids,1 +nucleus,1 +nueva antropologia,1 +nueva revista de filologia hispanica,1 +nueva sociedad,1 +nuevo texto critico,1 +nuf-bulletinen,0 +nukketeatteri,-1 +nuklearmedizin-nuclear medicine,1 +nukleonika,1 +numen,3 +numen: revista de estudos e pesquisa da religiao,1 +"numerical algebra, control and optimization",1 +numerical algorithms,2 +numerical functional analysis and optimization,1 +numerical heat transfer part a: applications,1 +numerical heat transfer part b: fundamentals,1 +numerical linear algebra with applications,1 +numerical mathematics: theory methods and applications,1 +numerical methods for partial differential equations,1 +numerische mathematik,3 +numismaatikko,-1 +numismaattinen aikakauslehti,0 +numismatiska meddelanden,1 +numl international journal of engineering and computer sciences,0 +nuncius hamburgensis,0 +nuncius: journal of the history of science,2 +nuori lääkäri,-1 +nuori suomi ry,0 +nuori voima,-1 +nuorisopsykoterapia-säätiön julkaisuja,-1 +nuorisoseurat,-1 +nuorisotutkimus,1 +nuorisotutkimusverkoston julkaisuja,1 +nuorisotutkimusverkoston verkkojulkaisuja,1 +nuorisotyö,-1 +nuorten elinolot -vuosikirja,1 +nuova corvina,0 +nuova rivista musicale italiana,1 +nuova rivista storica,1 +nuova secondaria,0 +nuova storia contemporanea,1 +nuovi annali della scuola speciale per archivisti e bibliotecari,0 +nurmeksen kaupunki,0 +nurse author & editor,0 +nurse education in practice,1 +nurse education today,2 +nurse educator,1 +nurse researcher,1 +nursery world,-1 +nursing administration quarterly,1 +nursing and health sciences,1 +nursing and palliative care,0 +nursing children and young people,0 +nursing clinics of north america,1 +nursing economics,1 +nursing education perspectives,1 +"nursing education, research, & practice",1 +nursing ethics,3 +nursing forum,1 +nursing history review,1 +nursing in critical care,1 +nursing inquiry,1 +nursing leadership,1 +nursing management,1 +nursing older people,0 +nursing open,1 +nursing outlook,2 +nursing philosophy,1 +nursing praxis in new zealand,1 +nursing reports,0 +nursing research,3 +nursing research and practice,1 +nursing science quarterly,1 +nurture: research journal of pakistan home economics association,0 +nusa,1 +nutricion hospitalaria,1 +nutrient cycling in agroecosystems,1 +nutrients,0 +nutrire,-1 +nutrition,1 +nutrition & food science international journal,0 +nutrition and cancer: an international journal,1 +nutrition and diabetes,1 +nutrition and dietetics,1 +nutrition and food science,1 +nutrition and health,1 +nutrition and metabolic insights,1 +nutrition and metabolism,1 +nutrition bulletin,1 +nutrition clinique et metabolisme,1 +nutrition in clinical practice,1 +nutrition journal,1 +nutrition metabolism and cardiovascular diseases,1 +nutrition research,1 +nutrition research and practice,1 +nutrition research reviews,1 +nutrition reviews,1 +nutritional neuroscience,1 +nwig-new west indian guide-nieuwe west-indische gids,1 +ny tid,-1 +nya argus,0 +nya åland,-1 +nya östis,-1 +nyame akuma: bulletin of the society of african archaeologists,1 +nyckeln,-1 +nyctalus,0 +nydanske studier,1 +nyelv- es irodalomtudomanyi kozlemenyek,1 +nyelvtudomanyi kozlemenyek,1 +nyhedsbrev,0 +nykykielten laitoksen oppimateriaalia,-1 +nykykulttuurin tutkimuskeskuksen julkaisuja,1 +nykypäivä,-1 +nykytaiteen museon julkaisuja,-1 +nytt norsk tidsskrift,1 +nytt om namn,-1 +nyugat-magyarországi egyetem kiadó,0 +nyugat-magyarországi egyetem savaria egyetemi központ,0 +národní muzeum,0 +národní technická knihovna,0 +näkökulma,-1 +nätverket,0 +näyttämö ja tutkimus,2 +näyttövinkki,-1 +növényvédelem,0 +nünnerich-asmus verlag,0 +nāmah-i anjuman-i ḥasharah/shināsī-i īrān,0 +o papel,0 +o-bib,-1 +oa anaesthetics,0 +oa-natur,0 +oaj lappi,-1 +oalib,0 +oamk journal,-1 +oamk_kone with passion,-1 +oar,0 +oase: tijdschrift voor architectuur,1 +ob edinenie otechestvo,0 +ob``edinennoe gumanitarnoe izdatel`stvo,1 +obcianska spolocnost,0 +oberwolfach reports,0 +obesities,-1 +obesity,1 +obesity facts,1 +obesity medicine,1 +obesity research and clinical practice,1 +obesity reviews,1 +obesity science & practice,1 +obesity surgery,2 +obm genetics,0 +obrazovanie i nauka,0 +obrazovanie i samorazvitie,0 +observa science in society,0 +observational studies,1 +observatorio (obs*),1 +observatorio del desarrollo,0 +observatory,1 +observer research foundation,0 +"obshchestvo: filosofija, istorija, kultura",0 +obshestvennye nauki i sovremennost,0 +obstetric anesthesia digest,0 +obstetric medicine,1 +obstetrical and gynecological survey,1 +obstetrics and gynecology,3 +obstetrics and gynecology clinics of north america,1 +obstetrics and gynecology international,1 +obzornik zdravstvene nege,0 +"obŝestvo : sociologiâ, psihologiâ, pedagogika",0 +ocas,0 +occasional papers in archaeology,1 +occasional papers on religion in eastern europe,0 +occhialì,1 +occupational and environmental medicine,3 +occupational ergonomics,1 +occupational health science,1 +occupational medicine & health affairs,0 +occupational medicine: oxford,1 +occupational therapy in health care,1 +occupational therapy in mental health,1 +occupational therapy international,0 +ocean,0 +ocean and coastal management,1 +ocean and coastal research,1 +ocean and polar research,1 +ocean and society,1 +ocean development and international law,2 +ocean dynamics,1 +ocean engineering,2 +ocean modelling,1 +ocean press,0 +ocean science,1 +ocean science journal,1 +ocean yearbook,1 +oceania,2 +oceanic linguistics,2 +oceanography,2 +oceanography and marine biology,1 +oceanologia,1 +oceanological and hydrobiological studies,0 +oceanology,1 +oceanside publications,1 +oceanus,1 +ochanomizu shobo,0 +ochrona srodowiska,0 +ocl. oilseeds & fats crops and lipids,0 +oclc systems and services,1 +octares,0 +october,3 +ocula,1 +ocular immunology and inflammation,1 +ocular oncology and pathology,1 +ocular surface,3 +oculi: studies in the arts of the low countries,1 +od practitioner,0 +od teorije do prakse u jeziku struke,0 +odonatologica,1 +odontology,1 +odyssey : the speaker and language recognition workshop,1 +oebalus: studi campania antichità,0 +oecd,0 +"oecd science, technology and industry working papers",-1 +oecologia,2 +oecologia australis,1 +oeconomia,0 +oeconomia - history/methodology/philosophy,0 +oeconomia copernicana,1 +oeil,1 +oekom verlag,1 +offa,1 +offa-bucher,1 +offentlig foervaltning: scandinavian journal of public administration,1 +official publication of the european organization for experimental photogrammetric research,0 +officina di studi medievali,0 +officinaventuno,0 +officyna,0 +oficyna naukowa,0 +oficyna wydawnicza politechniki warszawskiej,0 +oficyna wydawnicza politechniki wrocławskiej,0 +ofioliti,1 +ogólnopolskie warsztaty pracy projektanta konstrukcji,0 +ohio journal of science,0 +ohio state university press,1 +ohio university press,2 +ohjaus,-1 +ohmsha,1 +ohutlevy,-1 +oida international journal of sustainable development,1 +oikeuden perusteet,-1 +oikeus,2 +oikeusministeriö,0 +oikeusministeriön julkaisuja,-1 +oikeuspoliittinen tutkimuslaitos,0 +oikeustiede : jurisprudentia,1 +oikos,2 +oil and energy trends,1 +oil and energy trends annual statistical review,1 +oil and gas journal,1 +oil and gas science and technology : revue de l'institut francais du petrole,1 +oil shale,1 +"oil, gas and energy law",1 +oj,-1 +okayama-daigaku-keizai-gakkai-zasshi,0 +okinawan journal of island studies,0 +oknytt: tidskrift for johan nordlander-sallskapet,1 +olba,0 +old english newsletter,0 +old testament essays,1 +old testament society of south africa,1 +olhares & trilhas,0 +olimpianos,0 +oliviana,0 +olutposti,-1 +olympiads in informatics,0 +olympika: the international journal of olympic studies,1 +olé,-1 +oma keel,-1 +oma polku,-1 +omakustanteet,0 +omega: international journal of management science,2 +omega: journal of death and dying,1 +omep hrvatska,0 +omics: a journal of integrative biology,1 +omnes,1 +omniascience,0 +omniscriptum,0 +omphalina,0 +omskblankizdat,0 +omskij gosudarstvenny`j universitet im. f.m.dostoevskogo,0 +omslaget,-1 +omsorg: nordisk tidsskrift for palliativ medisin,1 +on education,0 +on line förlag ab,0 +on the horizon,1 +on_culture,1 +onati socio-legal series,1 +onco,0 +oncogene,2 +oncogenesis,2 +oncoimmunology,2 +oncologie,1 +oncologist,1 +oncology,1 +oncology and therapy,1 +oncology letters,1 +oncology nursing forum,1 +oncology reports,1 +oncology research,1 +oncology research and treatment,1 +oncology: new york,1 +oncoscience,0 +oncotarget,0 +oncotargets and therapy,0 +oncurating,0 +onderstepoort journal of veterinary research,1 +one earth,2 +one ecosystem,1 +one health,1 +one health cases,0 +one in christ,0 +oneworld publications,0 +online - heidelberg journal of religions on the internet,1 +online brazilian journal of nursing,1 +online dictionary of intercultural philosophy,0 +online information review,1 +online journal of analytic combinatorics,1 +online journal of art and design,1 +online journal of communication and media technologies,0 +online journal of complementary & alternative medicine,0 +online journal of dentistry & oral health,1 +online journal of ecology & environment sciences,0 +online journal of health and allied sciences,1 +online journal of immunology,1 +online journal of issues in nursing,2 +online journal of new horizons in education,0 +online journal of nursing informatics,1 +online journal of public health informatics,1 +online journal of space communication,1 +online learning,1 +online social networks and media,1 +onnimanni,-1 +onoma: journal of the international council of onomastic sciences,2 +onomastica,1 +onomastica canadiana,1 +onomastica slavogermanica,1 +onomastica uralica,1 +onomatoloski prilozi,1 +onomazein,1 +onomástica desde américa latina,0 +ons geestelijk erf,1 +onsei gengo igaku,0 +op. cit.,1 +opas,-1 +opd restauro: rivista dell opificio delle pietre dure e laboratori di restauro di firenze,1 +ope journal,-1 +opec energy review,0 +open acces journal of forensic psychology,1 +open access government,-1 +open access journal of environmental & soil sciences,0 +open access journal of sports medicine,1 +open access macedonian journal of medical sciences,0 +open access series in informatics,0 +open agriculture,1 +open agriculture journal,0 +open archaeology,1 +open arts journal,1 +open astronomy,1 +open biology,1 +open book publishers,1 +open ceramics,1 +open chemistry,1 +open communications in nonlinear mathematical physics,1 +open complementary medicine journal,0 +open computer science,1 +open court publishing company,1 +open cultural studies,1 +open data journal for agricultural research,0 +open dentistry journal,0 +open diabetes journal,0 +open economies review,1 +open education studies,1 +open engineering,1 +open epidemiology journal,0 +open ethics journal,0 +open forest science journal,0 +open forum infectious diseases,1 +open gender journal,1 +open geosciences,1 +open heart,1 +open house international,1 +open humanities press,1 +open information science,1 +open inquiry archive,0 +open journal for sociological studies,0 +open journal of air pollution,0 +open journal of anesthesiology,0 +open journal of animal sciences,0 +open journal of astrophysics,1 +open journal of business and management,0 +open journal of clinical diagnostics,0 +open journal of databases,0 +open journal of depression,0 +open journal of discrete mathematics,0 +open journal of ecology,0 +open journal of education,1 +open journal of forestry,0 +open journal of genetics,0 +open journal of information systems,1 +open journal of leadership,0 +open journal of mathematical sciences,1 +open journal of modern hydrology,0 +open journal of modern linguistics,0 +open journal of neuroscience,0 +open journal of nursing,0 +open journal of obstetrics and gynecology,0 +open journal of pediatrics,0 +open journal of political science,0 +open journal of preventive medicine,0 +open journal of psychiatry,0 +open journal of psychiatry & allied sciences,0 +open journal of radiology,0 +open journal of safety science and technology,0 +open journal of social sciences,0 +open journal of statistics,0 +open journal of stomatology,0 +open journal of therapy and rehabilitation,0 +open journal of veterinary medicine,0 +open learning,1 +open library of humanities,1 +open life sciences,1 +open linguistics,1 +open mathematics,1 +open medical informatics journal,0 +open medicine,1 +open mind,1 +open museum journal,1 +open nuclear medicine journal,1 +open nursing journal,0 +open ophtalmology journal,0 +open philosophy,1 +open physics,1 +open political science,1 +open praxis,0 +open psychology,0 +open research europe,1 +open review of educational research,1 +open rheumatology,0 +open science journal,0 +open science publishers,0 +open screens,-1 +open society foundations,0 +open systems and information dynamics,1 +open theology,1 +open university press,1 +open up! -blogi,-1 +opendemocracy,-1 +openfoam journal,0 +opennano,1 +openphysio,1 +openword,0 +opeopiskelija,-1 +opera,0 +opera historica,0 +opera news,0 +opera quarterly,2 +operant subjectivity,0 +operating systems review,1 +operational research,1 +operations and supply chain management: an international journal,1 +operations management research,1 +operations research,3 +operations research and decisions,0 +operations research letters,1 +operations research perspectives,1 +operative dentistry,1 +operative neurosurgery,1 +operative orthopadie und traumatologie,1 +operative techniques in otolaryngology-head and neck surgery,1 +operative techniques in sports medicine,1 +operative techniques in thoracic and cardiovascular surgery,1 +operators and matrices,1 +opettaja,-1 +opetus- ja kulttuuriministeriö,0 +opetus- ja kulttuuriministeriön julkaisuja,-1 +"opetus-, kasvatus- ja koulutusalojen säätiö",0 +opetushallitus,0 +ophrys,1 +ophthalmic and physiological optics,1 +ophthalmic epidemiology,1 +ophthalmic genetics,1 +ophthalmic plastic and reconstructive surgery,1 +ophthalmic research,1 +ophthalmic surgery lasers and imaging,1 +ophthalmologe,1 +ophthalmologica,1 +ophthalmology,3 +ophthalmology @ point of care,1 +ophthalmology and therapy,1 +ophthalmology glaucoma,1 +ophthalmology retina,1 +ophthalmology science,0 +opinpaja,0 +opinto-ohjaaja,-1 +opiskelijatutkimuksen vuosikirja,1 +oplandske bokforlag,1 +opolskie studia administracyjno-prawne,1 +oppaat ja käsikirjat,-1 +oppimisen ja oppimisvaikeuksien erityislehti,1 +optica,3 +optica applicata,1 +optical and quantum electronics,1 +optical engineering,1 +optical fiber technology,1 +optical materials,1 +optical materials express,2 +optical materials x,1 +"optical molecular probes, imaging and drug delivery",0 +optical nanoscopy,1 +optical review,1 +optical society of america,1 +optical switching and networking,1 +optics,0 +optics and laser technology,1 +optics and lasers in engineering,1 +optics and photonics journal,0 +optics and photonics news,1 +optics and spectroscopy,1 +optics communications,1 +optics continuum,1 +optics express,1 +optics letters,2 +optik,1 +optik-verlag,0 +optika i spektroskopiya,0 +optimal control applications and methods,1 +optimization,1 +optimization and engineering,1 +optimization letters,1 +optimization methods and software,1 +optimum,0 +opto: electronics review,1 +optoelectronics and advanced materials: rapid communications,1 +optoelectronics and communications conference,1 +"optoelectronics, instrumentation, and data processing",0 +optometry and vision science,1 +opus et educatio,0 +opuscula,1 +opuscula historica upsaliensia,0 +opuscula mathematica,1 +opuscula philolichenum,1 +opuscula: bibliotheca arnamagnaeana,1 +or spectrum,1 +orages,0 +oral and maxillofacial surgery,1 +oral and maxillofacial surgery clinics of north america,1 +oral diseases,2 +oral health and preventive dentistry,1 +oral history,1 +oral history review,2 +oral oncology,2 +oral radiology,1 +oral surgery,1 +"oral surgery, oral medicine, oral pathology and oral radiology",1 +oral tradition,2 +oralia,1 +oras,-1 +orbis,1 +orbis biblicus et orientalis,2 +orbis books,1 +orbis litterarum,3 +orbis scholae,0 +orbis terrarum,1 +orbis tertius,1 +orbis: bulletin international de documentation linguistique,1 +orbit,-1 +orbit,1 +orbit journal,0 +ord og tunga,1 +ordena druzhby` narodov institut e`tnologii i antropologii im. n.n.mikluxo-maklaya rossijskoj akademii nauk,0 +order: a journal on the theory of ordered sets and its applications,1 +ordfront förlag,1 +ordines,1 +ore and energy resource geology,1 +ore geology reviews,1 +oregon historical quarterly,1 +oregon state university press,1 +orff-schulwerk international,0 +organic agriculture,1 +organic and biomolecular chemistry,2 +organic chemistry frontiers,1 +organic electronics,2 +organic farming,1 +organic geochemistry,2 +organic letters,2 +organic materials,1 +organic preparations and procedures international,1 +organic process research and development,1 +organic syntheses,1 +organics,0 +organisational studies and innovation review,0 +organised sound,3 +organisms diversity and evolution,1 +organist-bladet,-1 +organizacija,0 +organization,3 +organization and environment,2 +organization leadership and development quarterly,0 +organization management journal,1 +organization science,3 +organization studies,3 +organization theory,2 +"organization, technology and management in construction: an international journal",0 +organizational aesthetics,1 +organizational behavior and human decision processes,3 +organizational cultures,0 +organizational dynamics,1 +organizational psychology review,1 +organizational research methods,3 +organizatsionnaja psihologija,0 +organogenesis,0 +organometallics,1 +organon f,1 +organum,0 +orgelforum,-1 +ori press,0 +oriens,1 +oriens christianus,1 +"oriens extremus: zeitschrift fur sprache, kunst und kultur der laender des fernen ostens",1 +oriens-occidens,1 +orient blackswan,1 +"orient: deutsche zeitschrift fur politik, wirtschaft und kultur des orients",1 +orient: reports of the society for near eastern studies in japan,1 +oriental art,1 +oriental insects,1 +oriental institute of the university of chicago,1 +oriental pharmacy and experimental medicine,0 +orientalia,1 +orientalia christiana cracoviensia,0 +orientalia christiana periodica,2 +orientalia lovaniensia analecta,1 +orientalia lovaniensia periodica,1 +orientalia suecana,1 +orientaliska studier,0 +orientalistica,1 +orientalistische literaturzeitung,1 +oriente moderno: nuova series,1 +origins of life and evolution of biospheres,1 +orillas rivista d'ispanistica,1 +orimattilan aluelehti,-1 +orimattilan sanomat,-1 +orion pharma,0 +orizons,0 +orizonturi teologice,0 +orizzonte cina,1 +orizzonti: rassegna di archeologia,1 +orkana forlag,1 +orkidealehti,-1 +orl: journal for oto: rhino: laryngology and its related specialties,1 +ornis fennica,1 +ornis norvegica,1 +ornis svecica,1 +ornithological applications,2 +ornithological science,1 +ornithology,1 +ornithology research,1 +ornitologia neotropical,1 +orphanet journal of rare diseases,1 +orpheus: rivista de umanità classica e cristiana,1 +orquestra editora,0 +országház könyvkiadó,0 +országos rabbiképző : zsidó egyetem,0 +orthodontics,1 +orthodontics and craniofacial research,1 +orthopade,1 +orthopaedic journal of sports medicine,1 +orthopaedic nursing,1 +orthopaedics and trauma,1 +orthopaedics and traumatology-surgery and research,1 +orthopedic clinics of north america,1 +orthopedic research and reviews,1 +orthopedics,1 +ortnamnssällskapets i uppsala årsskrift,1 +ortodoksia,1 +ortodoksinen opettaja,-1 +"oruen, the cns journal",0 +orvas,-1 +orvosi hetilap,1 +oryx,1 +osa trends in optics and photonics,1 +osaka books,0 +osaka journal of mathematics,1 +osaka kyoiku tosho,0 +osder publications,0 +osgeo journal,0 +osgoode hall law journal,1 +osiris,3 +oslo law review,1 +oslo studies in language,1 +osloer beitrage zur germanistik,1 +osmanl? ara?t?rmalar?,0 +osmanli bilimi arastirmalari,1 +osnabrucker beitrage zur sprachtheorie,1 +osservatorio linguistico della svizzera italiana,0 +osteoarthritis and cartilage,2 +osteoarthritis and cartilage open,1 +osteoarthritis imaging,1 +osteologie,1 +osteology,0 +osteoporosis international,2 +osterreichische musikzeitschrift,1 +osterreichische namenforschung,1 +osterreichische zeitschrift fur geschichtswissenschaften,1 +osterreichische zeitschrift fur politikwissenschaft,1 +osterreichische zeitschrift fur volkskunde,1 +osterreichisches archiv fur recht und religion,1 +osteuropa,1 +osteuropa-recht,0 +ostkirchliche studien,1 +osto & logistiikka,-1 +ostomy wound management,1 +ostraka,1 +ostravská univerzita,0 +ostrich,1 +osuuskunta poesia,0 +osviitta,0 +ot,-1 +ota international,1 +otago law review,1 +otatieto,1 +otava,0 +otessa journal,0 +otetchestvennaja i zarubezhnaja pedagogika,0 +other education,0 +other voices,1 +otherness,0 +otium,1 +otjr: occupation participation and health,1 +oto open,1 +otolaryngologic clinics of north america,1 +otolaryngology: head and neck surgery,1 +otology and neurotology,1 +ottar,0 +ottawa law review,1 +otto-friedrich-universität bamberg : university of bamberg press,0 +otto-novecento,1 +otázky žurnalistiky,1 +oud holland,1 +oudtestamentische studien,1 +ought,1 +oulun ammattikorkeakoulun tekniikan ja luonnonvara-alan lehti,-1 +oulun historiaseura ry,0 +oulun kaupunkisuunnittelu,-1 +oulun seudun ammattikorkeakoulu,0 +oulun yliopisto,0 +oulun yliopiston kerttu saalasti instituutin julkaisuja,-1 +oulun yliopiston oppimateriaalia,-1 +oulun yliopiston oppimateriaalia c : tekniikka,0 +"oulun yliopiston oppimateriaalia. e, kasvatustieteet",0 +oulun yliopiston tuotantotalouden tutkimusraportteja,-1 +oulun ylioppilaslehti,-1 +outlines,1 +outlook on agriculture,1 +outokummun seutu,-1 +outras expressões,0 +outre-mers,1 +outskirts: feminisms along the edge,1 +outsourcing journal,-1 +over multatuli,1 +overland,1 +owl of minerva,1 +ox bow press,2 +oxbow books,1 +oxford art journal,3 +oxford bulletin of economics and statistics,2 +oxford development studies,1 +oxford economic papers: new series,2 +oxford german studies,3 +oxford journal of archaeology,2 +oxford journal of law and religion,1 +oxford journal of legal studies,3 +oxford literary review,1 +oxford medical case reports,1 +oxford open energy,1 +oxford research,0 +oxford review of economic policy,1 +oxford review of education,2 +oxford studies in ancient philosophy,1 +oxford studies in comparative education,1 +oxford university press,3 +oxidants and antioxidants in medical science,1 +oxidation communications,0 +oxidative medicine and cellular longevity,0 +oy turun sanomat,0 +oy valitut palat - readers digest ab,0 +oyo tokeigaku,1 +ozone-science and engineering,1 +p n a,1 +p&o,-1 +"p-adic numbers, ultrametric analysis and applications",1 +p-e-r-f-o-r-m-a-n-c-e,1 +paasilinna,0 +pabst science publishers,1 +pace international law review,1 +pace university press,1 +pace: pacing and clinical electrophysiology,1 +pachyderm,1 +pacific accounting review,1 +pacific affairs,1 +pacific asia conference language information and computation,0 +pacific asia conference on information systems,1 +pacific asia journal of the association for information systems,1 +pacific coast philology,1 +pacific conference on computer graphics and applications,1 +pacific conservation biology,1 +pacific economic bulletin,1 +pacific economic review,1 +pacific field corn association,0 +pacific focus,1 +pacific historical review,1 +pacific journal of mathematics,1 +pacific journal of optimization,1 +pacific northwest quarterly,1 +pacific philosophical quarterly,2 +pacific review,2 +pacific rim international journal of nursing research,1 +pacific rim property research journal,1 +pacific science,1 +pacific science review,0 +pacific studies,1 +pacific-basin finance journal,1 +pacifica: australasian theological studies,1 +pacini editore,0 +packaging technology and science,2 +pad,1 +padasjoen sanomat,-1 +paddy and water environment,1 +padise vallavalitsus,0 +padova university press,0 +padusa,1 +paedagogica historica,2 +paediatria croatica,1 +paediatric & neonatal pain,1 +paediatric and perinatal epidemiology,1 +paediatric drugs,1 +paediatric respiratory reviews,1 +paediatrics & child health,1 +paediatrics and international child health,1 +paesaggio urbano,0 +pagine giovani,0 +paideia,0 +paideuma,1 +paideuma: mitteilungen zur kulturkunde,1 +paidia,0 +paikallisliikenne,-1 +pain,3 +pain : clinical updates,0 +pain and therapy,1 +pain clinic,1 +pain management,1 +pain management nursing,1 +pain medicine,1 +pain physician,1 +pain practice,1 +pain reports,1 +pain research & management,1 +pain research and treatment,1 +paj : a journal of performance and art,2 +pajouhesh va sazandegi,0 +pakistan journal of agricultural sciences,1 +pakistan journal of botany,1 +pakistan journal of commerce and social sciences,0 +pakistan journal of medical sciences,1 +pakistan journal of pharmaceutical sciences,0 +pakistan journal of statistics,0 +pakistan journal of zoology,1 +pakistan veterinary journal,0 +pakkaus,-1 +paladyn,1 +palaeobiodiversity and palaeoenvironments,1 +palaeoentomology,1 +palaeogeography palaeoclimatology palaeoecology,2 +palaeohistoria,1 +palaeontographia italica,1 +palaeontographica abteilung a: palaozoologie: stratigraphie,1 +palaeontographica abteilung b: palaophytologie,1 +palaeontologia electronica,1 +palaeontologia polonica,1 +palaeontologische zeitschrift,1 +palaeontology,2 +palaeoslavica,1 +palaeoworld,1 +palaestina antiqua,1 +palaestra (macomb ill.),0 +palaios,1 +palarchs journal of archaeology of egypt/egyptology,1 +paleo,1 +paleo-aktueel,1 +paleoanthropology,1 +paleobiology,2 +paleobios,1 +paleoceanography and paleoclimatology,2 +paleontological journal,1 +paleontological research,1 +paleorient,1 +palestine exploration quarterly,1 +palet yayınları,0 +palgrave macmillan,2 +palgrave macmillan memory studies,3 +palgrave macmillan transnational history series,3 +palgrave pivot,1 +palgrave studies in cultural and intellectual history,3 +palgrave studies in economic history,3 +palgrave studies in gender and education,1 +palgrave studies in life writing,3 +palgrave studies in modern european literature,3 +palgrave studies in political history,3 +palgrave studies in the history of childhood,3 +palgrave studies in the history of emotions,3 +palgrave studies in the history of social movements,3 +palgrave studies in theatre and performance history,3 +palgrave studies in world environmental history,3 +palimpsestes: textes de reference,1 +palkansaajien tutkimuslaitoksen raportteja,0 +palladio,0 +pallas: revue d'etudes antiques,1 +palliatiivinen hoito,-1 +palliativ vård,-1 +palliative and supportive care,1 +palliative care and social practice,1 +palliative medicine,2 +palliative medicine in practice,0 +palliative medicine reports,1 +palliative-ch,-1 +palmkrons förlag,0 +palokka-lehti,-1 +palokuntalainen,-1 +palombi editori,0 +palopäällystö,-1 +"palvelualojen ammattiliitto pam ry, julkaisuja",-1 +palveluesimies,-1 +palveluskoirat,-1 +palvelututkimus,-1 +palynology,1 +pamatky archeologicke,0 +pami?? i sprawiedliwo??,0 +pamiela argitaletxea,0 +pamietnik literacki,1 +pamietnik teatralny,1 +pampaedia,0 +pan,1 +pan american health organization,1 +pan pacific microelectronics symposium,0 +pan-pacific entomologist,1 +panama-verlag,1 +pancreapedia,0 +pancreas,1 +pancreatology,1 +panellīnio synedrio didaktikīs fysikōn epistīmōn kai nees technologies stīn ekpaideusī,0 +panepistimio patron,0 +panepistimio peiraios,0 +panhellenic conference on informatics,0 +panminerva medica,1 +panoeconomicus,1 +panorama (makati city),-1 +panorama: international journal of comparative religious education and values,1 +panozzo editore,1 +panssari,-1 +pantheon,1 +paper age,-1 +paper and biomaterials,0 +paper technology,1 +"paper, film and foil converter",1 +paperbark,0 +paperi ja puu oy,0 +paperiliitto,-1 +papers and monographs of the finnish institute at athens,1 +papers and records : thunder bay historical museum society,1 +papers from the norwegian institute at athens,1 +papers in arts and humanities,0 +papers in historical phonology,0 +papers in mediaeval studies,1 +papers in palaeontology,1 +papers in regional science,1 +papers of surrealism,1 +papers of the bibliographical society of america,1 +papers of the british school at rome,3 +papers on joyce,1 +papers on labour history,0 +papers on language and literature,1 +papers on social representations : threads of discussion,1 +papers presented at the bhra fluid engineering international conference on energy storage,0 +papers: explorations into childrens literature,1 +papersiemed,-1 +papéis avulsos de zoologia,1 +parabol,-1 +parabola,0 +paradigm publishers,1 +paradigma,0 +paradigma : i̇ktisadi ve idari araştırmalar dergisi,0 +paradigma akademi yayınevi,0 +paradigmi,1 +paragone: arte,1 +paragraph,3 +parallax,1 +parallel and cloud computing research,0 +parallel computing,2 +parallel processing letters,1 +parallèles,1 +parameters,0 +paraninfo digital,1 +parasite,0 +parasite epidemiology and control,1 +parasite immunology,1 +parasites and vectors,1 +parasitology,1 +parasitology international,1 +parasitology research,1 +parekbolai,1 +parenting: science and practice,1 +parerga,0 +parergon,1 +parikanniemen kontti,-1 +parikkalan-rautjarven sanomat,-1 +paris review,0 +park & anlegg,-1 +park science,1 +parkinson's disease,1 +parkinsonism and related disorders,1 +parks,1 +parlando,0 +parliamentary affairs,1 +parliamentary history,2 +"parliaments, estates and representation",2 +parlor press,1 +parnasso,0 +parnassus: poetry in review,1 +parola del passato,1 +parole,-1 +parole de l'orient,1 +parrhesia,1 +parse journal,1 +partake,0 +partecipazione e conflitto,1 +partial answers: journal of literature and the history of ideas,3 +participations,1 +participations : journal of audience and reception studies,1 +participatory design conference,2 +particle and fibre toxicology,2 +particle and particle systems characterization,1 +particulate science and technology,1 +particuology,1 +partio,-1 +partner abuse,1 +partuuna,0 +party politics,3 +parvs publishing,0 +pasado y memoria: revista de historia contemporanea,1 +pasos,0 +passage: tidskrift for litteratur og kritik,1 +passagen verlag,1 +passato e presente,1 +passepartout,1 +passerelles entre le commerce et le developpement durable,0 +passive house +,-1 +past and present,3 +past global changes magazine,-1 +"pastoral care in education: an international journal of personal, social and emotional development",1 +pastoral psychology,1 +pastoralism,1 +pastoraltheologie: monatsschrift fur wissenschaft und praxis in kirche und gesellschaft,1 +pastoraltheologische informationen,1 +patents & licensing,-1 +paternoster press,0 +pathobiology,1 +pathogens,0 +pathogens & immunity,0 +pathogens and disease,1 +pathogens and global health,1 +pathology,1 +pathology and oncology research,0 +pathology case reviews,1 +pathology international,1 +pathology research and practice,1 +pathophysiology,0 +pathophysiology of haemostasis and thrombosis,1 +patient education and counseling,2 +patient experience journal,1 +patient preference and adherence,1 +patient safety & quality improvement journal,1 +patient safety in surgery,1 +patient-patient centered outcomes research,1 +patina,-1 +paton welding journal,0 +patrimônio e memória,1 +patristica et mediaevalia,1 +patristica nordica annuaria,1 +patron,0 +patt : proceedings,0 +patt40 liverpool 2023,0 +pattern analysis and applications,1 +pattern recognition,3 +pattern recognition and image analysis,0 +pattern recognition letters,2 +patterns,1 +patterns of prejudice,2 +paul scherrer institut,0 +paul åström forlag,1 +paulist press,1 +pax forlag,1 +payel yayinlari,0 +payot,0 +pci journal,1 +pct international applications,0 +pda journal of pharmaceutical science and technology,1 +peabody journal of education,1 +peace and change: a journal of peace research,1 +peace and conflict,1 +peace and conflict studies,1 +"peace economics, peace science, and public policy",1 +peace research: the canadian journal of peace and conflict studies,1 +peace review,1 +peace tourism journal,0 +peacebuilding,1 +pearson,0 +pearson education,1 +pearson ft press,1 +pearson higher education,1 +peatlands international,0 +pec innovation,0 +pechatny`j mir g. xanty`-mansijsk,0 +pechoro-ily`chskij gosudarstvenny`j prirodny`j biosferny`j zapovednik,0 +pedagogia oggi,0 +pedagogia più didattica,1 +pedagogical linguistics,0 +pedagogický časopis,1 +pedagogiek,0 +pedagogies,1 +pedagogika,0 +pedagogika,1 +pedagogische studiën,1 +pedagogisk forskning i sverige,1 +"pedagogy : critical approaches to teaching literature, language, composition, and culture",1 +pedagogy : theory and praxis,0 +pedagogy and the human sciences,0 +"pedagogy, culture and society",1 +pedagogía social,1 +pedagógusképzés,0 +pedanssi,-1 +pedersöre info,-1 +pediatric allergy and immunology,2 +pediatric allergy immunology and pulmonology,1 +pediatric and developmental pathology,1 +pediatric anesthesia,1 +pediatric annals,1 +pediatric blood and cancer,1 +pediatric cardiology,1 +pediatric clinics of north america,1 +pediatric critical care medicine,1 +pediatric dentistry,1 +pediatric dermatology,1 +pediatric diabetes,2 +pediatric emergency care,1 +pediatric endocrinology review,0 +pediatric exercise science,1 +"pediatric gastroenterology, hepatology & nutrition",1 +"pediatric health, medicine and therapeutics",0 +pediatric hematology and oncology,1 +pediatric infectious disease journal,1 +pediatric investigation,1 +pediatric medicine,1 +pediatric nephrology,2 +pediatric neurology,1 +pediatric neurosurgery,1 +pediatric nursing,1 +pediatric obesity,1 +pediatric physical therapy,1 +pediatric pulmonology,1 +pediatric radiology,1 +pediatric reports,0 +pediatric research,2 +pediatric rheumatology,1 +pediatric surgery international,1 +pediatric transplantation,1 +pediatrics,3 +pediatrics and neonatology,1 +pediatrics and therapeutics,0 +pediatrics in review,1 +pediatrics international,1 +pediatrics research international journal,0 +pedobiologia,1 +pedosphere,1 +peer community in evolutionary biology,0 +peer community in genomics,0 +peer community journal,1 +peer j preprints,0 +peer-reviewed c-crcs volume,0 +peer-to-peer networking and applications,1 +peerj,1 +peerj analytical chemistry,1 +peerj computer science,1 +peeters,2 +pegasus,0 +pegem akademi,0 +peking university law journal,1 +peking university press,0 +pelastus- ja turvallisuusalan tutkimus,1 +pelastusopiston julkaisu,-1 +pelastusopiston julkaisu : d-sarja,0 +pelastustieto,-1 +pelckmans pro,0 +pelitutkimuksen vuosikirja,1 +pellervon julkaisupalvelu oy,0 +peloponnīsiaka,0 +pen & sword,0 +pendragon press,2 +penerbit universiti sains malaysia,0 +penguin books,0 +peniope verlag anja urbanek,1 +penn state university press,1 +pennsylvania magazine of history and biography,1 +pennsylvania state university press,1 +pennwell books,1 +pensa multimedia,0 +pensamiento,1 +pensamiento critico: revista electrònica de historia,1 +pensar enfermagem,0 +pensee,1 +pensoft publishers,1 +pentagon press,0 +penzenskij gosudarstvenny`j universitet,1 +people : international journal of social sciences,1 +people and nature,1 +peptides,1 +per aspera ad astra,0 +per la filosofia,0 +per leggere,1 +perception,1 +perceptual and motor skills,1 +percursos linguísticos,0 +percussive notes,0 +peregrinations,0 +perfect beat: the pacific journal of research into contemporary music and popular culture,1 +perfiles latinoamericanos,1 +performance enhancement & health,1 +performance evaluation,2 +performance matters,1 +performance measurement and metrics,1 +performance paradigm,1 +performance philosophy,1 +performance research,3 +performance research books,1 +performing ethos: an international journal of ethics in theatre & performance,1 +perfusion: kreislauferkrankungen in klinik und praxis,1 +perfusion: uk,1 +pergamon press,1 +perhe- ja pariterapialehti,-1 +perhe- ja pariterapialehti,0 +perhehoito,-1 +perheyritysten liitto,0 +perhokalastus,-1 +perichoresis,1 +pericope,1 +periférica,0 +perinatal journal,1 +perinola-revista de investigacion quevediana,1 +periodica mathematica hungarica,1 +periodica polytechnica,0 +periodica polytechnica : mechanical engineering,0 +periodica polytechnica : transportation engineering,0 +periodica polytechnica electrical engineering and computer science,0 +periodica polytechnica: chemical engineering,1 +periodica polytechnica: civil engineering,1 +periodico di mineralogia,1 +periodicum biologorum,1 +periodika,0 +periodontology 2000,2 +perioperative medicine,1 +peripeti,1 +peripheral histories?,-1 +periskop,1 +peritia,1 +peritoneal dialysis international,1 +permafrost and periglacial processes,1 +person-centered & experiential psychotherapies,1 +persona grata,0 +persona studies,1 +personal and ubiquitous computing,1 +personal relationships,1 +personal- und organisationsentwicklung in einrichtungen der lehre und forschung,1 +personality and individual differences,2 +personality and mental health,1 +personality and social psychology bulletin,3 +personality and social psychology review,3 +personality disorders-theory research and treatment,1 +personality science,1 +personalized medicine,1 +personalized medicine in psychiatry,1 +personhistorisk tidskrift,1 +personnel psychology,2 +personnel review,1 +persoonia,2 +perspecta: the yale architectural journal,1 +perspectivas,0 +perspectivas contemporâneas,0 +perspectivas em ciencia da informacao,1 +perspective-la revue de l inha,0 +perspectives : policy and practice in higher education,-1 +perspectives in biology and medicine,1 +perspectives in ecology and conservation,1 +perspectives in education,1 +perspectives in plant ecology evolution and systematics,1 +perspectives in psychiatric care,1 +perspectives in public health,1 +perspectives in vascular surgery and endovascular therapy,1 +perspectives missionnaires,0 +perspectives médiévales,1 +perspectives of earth and space scientists,1 +perspectives of new music,1 +perspectives on global development and technology,1 +perspectives on history,0 +perspectives on performance,0 +perspectives on politics,3 +perspectives on psychological science,3 +perspectives on science,1 +perspectives on sexual and reproductive health,1 +perspectives on terrorism,1 +perspectives: studies in translation theory and practice,3 +perspektiv,-1 +perspektiven der wirtschaftspolitik,1 +persuasions,1 +perséides,0 +pertanika journal of science & technology,-1 +pertubuhan cired malaysia electricity distribution conference,0 +perussanoma,0 +perussuomalainen,-1 +perusta,-1 +peruste,0 +perustuslakiblogi,-1 +peruvian journal of epistemology,1 +pervasive and mobile computing,2 +perviytom,0 +pesquisa agropecuaria brasileira,1 +pesquisa veterinaria brasileira,1 +pest management science,2 +pesticide biochemistry and physiology,1 +pet clinics,1 +peter lang,1 +"peter-weiss-jahrbuch fur literatur, kunst und politik im 20. jahrhundert",1 +peterburgskij istoritsheskij zhurnal,0 +peterburgskij èkonomičeskij žurnal,0 +petra,0 +petroleum and coal,-1 +petroleum chemistry,1 +petroleum geology conference series,1 +petroleum geoscience,1 +petroleum research,0 +petroleum science,1 +petroleum science and technology,1 +petrology,1 +petrophysics,1 +petropolis,0 +petrozavodskij gosudarstvenny`j universitet,0 +petsamolaista,-1 +petäjävesi,-1 +pferdeheilkunde,1 +pflege,0 +pflege professionell,-1 +pflugers archiv: european journal of physiology,1 +ph-status,-1 +phaenex,0 +phage,0 +phaidon press,1 +phanomenologische forschungen,1 +pharmaca fennica,-1 +pharmaceutical biology,1 +pharmaceutical chemistry journal,1 +pharmaceutical development and technology,1 +pharmaceutical journal,1 +pharmaceutical medicine,1 +pharmaceutical patent analyst,0 +pharmaceutical press,1 +pharmaceutical regulatory affairs,0 +pharmaceutical research,2 +pharmaceutical statistics,1 +pharmaceutical technology,1 +pharmaceutical technology europe,1 +pharmaceutical technology in hospital pharmacy,0 +pharmaceuticals,0 +pharmaceuticals policy and law,1 +pharmaceutics,0 +pharmacoeconomics,2 +pharmacoeconomics and outcomes news,1 +pharmacoepidemiology and drug safety,1 +pharmacogenetics and genomics,1 +pharmacogenomics,1 +pharmacogenomics and personalized medicine,1 +pharmacogenomics journal,1 +pharmacognosy magazine,0 +pharmacological reports,1 +pharmacological research,3 +pharmacological research : reports,1 +pharmacological reviews,3 +pharmacology,1 +pharmacology and therapeutics,2 +pharmacology biochemistry and behavior,1 +pharmacology research & perspectives,1 +pharmacopsychiatry,1 +pharmacotherapy,1 +pharmacy,0 +pharmacy education,1 +pharmacy practice,1 +pharmanutrition,-1 +pharmazie,1 +pharos : journal of the netherlands institute at athens,1 +phase transitions,1 +phenomenological inquiry,0 +phenomenology and mind,2 +phenomenology and practice,1 +phenomenology and the cognitive sciences,3 +phenomics,-1 +phi,1 +phi delta kappan,1 +phile,-1 +philip wilson publishers,1 +philippine agricultural scientist,1 +philippine journal of crop science,1 +philippine journal of linguistics,1 +philippine journal of psychology,0 +philippine journal of veterinary medicine,1 +philippine political science journal,0 +philologia classica,1 +philologia estonica tallinnensis,1 +philologia hispalensis,1 +philologica canariensia,1 +philologica jassyensia,1 +philological encounters,0 +philological quarterly,3 +philologie im netz,1 +philologus,3 +philosophers imprint,3 +philosophia,1 +philosophia africana,1 +philosophia antiqua,1 +philosophia christi,1 +philosophia mathematica,2 +philosophia naturalis,1 +philosophia reformata,1 +philosophia scientiae: studies in history and philosophy of science,1 +philosophia verlag,0 +philosophica,1 +philosophical explorations,2 +philosophical forum,1 +philosophical inquiries,1 +philosophical inquiry in education,1 +philosophical inquiry: international quarterly,1 +philosophical investigations,1 +philosophical issues: a supplement to nous,2 +philosophical journal of conflict and violence,1 +philosophical magazine,1 +philosophical magazine letters,1 +philosophical news,1 +philosophical papers,1 +philosophical perspectives,2 +philosophical practice,1 +philosophical psychology,2 +philosophical quarterly,3 +philosophical readings,0 +philosophical review,3 +philosophical society of turkey,1 +philosophical studies,3 +philosophical topics,2 +philosophical transactions of the royal society a : mathematical physical and engineering sciences,2 +philosophical transactions of the royal society b: biological sciences,2 +philosophical writings,1 +philosophie antique,1 +philosophies,0 +philosophische rundschau,1 +philosophisches jahrbuch,1 +philosophy,2 +philosophy & technology,2 +philosophy and geography,1 +philosophy and literature,3 +philosophy and phenomenological research,3 +philosophy and politics,3 +philosophy and public affairs,3 +philosophy and rhetoric,1 +philosophy and social criticism,2 +philosophy and the mind sciences,1 +philosophy and theology,1 +philosophy and theory in biology,1 +philosophy and theory in higher education,1 +philosophy compass,2 +philosophy east and west,1 +philosophy in review,1 +philosophy of coaching,0 +philosophy of education,1 +philosophy of history and culture,1 +philosophy of humor yearbook,1 +philosophy of management,1 +philosophy of mathematics education journal,0 +philosophy of music education review,1 +philosophy of photography,1 +philosophy of physics,1 +philosophy of science,3 +philosophy of the city journal,1 +philosophy of the social sciences,2 +philosophy pathways,0 +philosophy study,0 +philosophy today,1 +"philosophy, culture & traditions",0 +"philosophy, ethics and humanities in medicine",1 +"philosophy, psychiatry, and psychology",1 +"philosophy, theology and the sciences",1 +"philosophy, theory, and practice in biology",1 +phlebologie,1 +phlebology,1 +phoenix: the journal of the classical association of canada,2 +phoibos verlag,1 +phoneix yayınevi,0 +phonetica,3 +phonetics teaching & learning conference,1 +phonology,3 +phosphorus sulfur and silicon and the related elements,1 +photoacoustics,2 +"photobiomodulation, photomedicine, and laser surgery",1 +photochem,0 +photochemical and photobiological sciences,1 +photochemistry and photobiology,1 +photodermatology photoimmunology and photomedicine,1 +photodiagnosis and photodynamic therapy,1 +photogrammetric engineering and remote sensing,1 +photogrammetric journal of finland,0 +photogrammetric record,1 +"photogrammetrie, fernerkundung, geoinformation",1 +photographies,1 +photography and culture,1 +photonic network communications,1 +photonic sensors,1 +photonics,0 +photonics & lasers in medicine,0 +photonics and nanostructures: fundamentals and applications,1 +photonics letters of poland,0 +photonics research,2 +photonics spectra,0 +photoresearcher (croydon),0 +photosynthesis research,1 +photosynthetica,1 +phrasis,1 +phronema,1 +phronesis,3 +phronésis,0 +phycologia,1 +phycological research,1 +physica a: statistical mechanics and its applications,1 +physica b: condensed matter,1 +physica c: superconductivity and its applications,1 +physica d: nonlinear phenomena,1 +physica e: low: dimensional systems and nanostructures,1 +physica medica,1 +physica scripta,1 +physica scripta: topical issues,1 +physica status solidi a: applications and materials science,1 +physica status solidi b : basic research,1 +physica status solidi c : current topics in solid state physics,1 +physica status solidi: rapid research letters,1 +physica verlag,1 +physical acoustics,1 +physical activity and health,1 +physical and engineering sciences in medicine,1 +physical and occupational therapy in geriatrics,1 +physical and occupational therapy in pediatrics,1 +physical biology,1 +physical chemistry chemical physics,3 +physical chemistry research,0 +physical communication,1 +physical culture and sport studies and research,1 +physical education and sport pedagogy,1 +physical geography,1 +physical medicine and rehabilitation clinics of north america,1 +physical mesomechanics,1 +physical review a,2 +physical review applied,2 +physical review b,2 +physical review c,2 +physical review d,2 +physical review e,2 +physical review fluids,1 +physical review letters,3 +physical review materials,2 +physical review physics education research,2 +physical review research,1 +physical review x,3 +physical review. accelerators and beams,1 +physical sciences reviews,1 +physical separation in science and engineering,1 +physical society of japan,1 +physical therapy,2 +physical therapy in sport,1 +physical therapy reviews,1 +physician and sportsmedicine,1 +physicochemical problems of mineral processing,1 +physics,0 +physics and chemistry of glasses: european journal of glass science and technology part b,1 +physics and chemistry of liquids,1 +physics and chemistry of minerals,1 +physics and chemistry of the earth,1 +physics and imaging in radiation oncology,1 +physics education,1 +physics essays,1 +physics in medicine and biology,2 +physics in perspective,1 +physics letters a,1 +physics letters b,3 +physics of atomic nuclei,1 +physics of fluids,1 +physics of life reviews,2 +physics of low-dimensional structures,1 +physics of metals and metallography,1 +physics of particles and nuclei,1 +physics of particles and nuclei letters,1 +physics of plasmas,1 +physics of the dark universe,1 +physics of the earth and planetary interiors,1 +physics of the solid state,1 +physics of wave phenomena,1 +physics open,-1 +physics procedia,1 +physics reports : review section of physics letters,3 +physics teacher,1 +physics today,1 +physics world,0 +physics-uspekhi,1 +physikalische medizin rehabilitationsmedizin kurortmedizin,1 +physio-géo,1 +physiologia,0 +physiologia plantarum,1 +physiological and biochemical zoology,1 +physiological and molecular plant pathology,1 +physiological chemistry and physics and medical nmr,1 +physiological entomology,1 +physiological genomics,1 +physiological measurement,1 +physiological reports,1 +physiological research,1 +physiological reviews,3 +physiology,1 +physiology and behavior,1 +physiology and molecular biology of plants,1 +physiology international,1 +physiotherapy,2 +physiotherapy canada,1 +physiotherapy research international,1 +physiotherapy theory and practice,1 +physis,1 +phytobiomes journal,0 +phytochemical analysis,1 +phytochemistry,1 +phytochemistry letters,1 +phytochemistry reviews,1 +phytocoenologia,1 +phytofrontiers,1 +phytokeys,1 +phytomedicine,1 +phytomedicine plus,1 +phyton: annales rei botanicae,1 +phyton: international journal of experimental botany,1 +phytoparasitica,1 +phytopathologia mediterranea,1 +phytopathology,1 +phytopathology research,1 +phytoprotection,1 +phytotaxa,1 +phytotherapie,1 +phytotherapy research,1 +pianisti,-1 +piccola impresa,0 +pickering & chatto,1 +pickwick publications,0 +pieksämäen lehti,-1 +pielavesi-keitele,-1 +pielęgniarstwo polskie,0 +pielęgniarstwo xxi wieku,0 +pieni on suurin,-1 +pietarsaaren kaupunki,0 +pietarsaaren sanomat,-1 +pig progress,0 +pigment and resin technology,1 +pigment cell and melanoma research,2 +pihvikarja,-1 +pikkutrilli,-1 +pilares d'elegância lda,0 +pilot and feasibility studies,1 +pilven veikko,-1 +pimenta cultural,0 +pimpinella,-1 +pinni,-1 +pinsetti,-1 +pioni-jäsenlehti,-1 +pipeline and gas journal,1 +piplia,-1 +pirandelliana: rivista internazionale di studi e documenti,1 +pirkanmaan alta,0 +pirkanmaan pääasiat,-1 +pirotski zbornik,0 +pirta,-1 +pisa university press,1 +pisamat,-1 +pisma v zhurnal tekhnicheskoi fiziki,0 +pitagora editrice,0 +pitchstone publishing,0 +pittsburgh journal of technology law & policy,0 +pituitary,1 +pitäjäläinen,-1 +pitäjänuutiset,-1 +pizhūhishhā-yi iqtiṣādī,0 +pizhūhish/hā-yi falsafī,1 +pizhūhish/hā-yi zabān/shināsī,0 +pk ank,-1 +pk ank : viikonvaihde ankkuri,-1 +plaani,-1 +place branding and public diplomacy,1 +placenta,2 +placenta and reproductive medicine,0 +places: forum of design for the public realm,1 +plains anthropologist,1 +plainsong and medieval music,2 +planet@risk,0 +planetary and space science,1 +planext,1 +planning and environmental law,1 +planning education,0 +planning perspectives,2 +planning practice and research,1 +planning theory,2 +planning theory and practice,2 +plant and cell physiology,2 +plant and fungal systematics,1 +plant and soil,2 +plant archives,0 +plant biology,1 +plant biosystems,1 +plant biotechnology,1 +plant biotechnology journal,3 +plant biotechnology reports,1 +plant breeding,1 +plant cell,3 +plant cell and environment,3 +plant cell biotechnology and molecular biology,0 +plant cell reports,1 +plant cell tissue and organ culture,1 +plant communications,1 +plant direct,1 +plant disease,1 +"plant diversity and evolution: phylogeny, biogeography, structure and function",1 +plant diversity of central asia,0 +plant ecology,1 +plant ecology and diversity,1 +plant ecology and evolution,1 +plant engineering,1 +plant foods for human nutrition,2 +plant genetic resources,1 +plant genome,1 +plant growth regulation,1 +plant health progress,1 +plant journal,2 +plant methods,1 +plant molecular biology,1 +plant molecular biology reporter,1 +plant omics,1 +plant pathology,2 +plant pathology journal,0 +plant perspectives,0 +plant phenomics,1 +plant physiology,3 +plant physiology and biochemistry,1 +plant production science,1 +plant science,1 +plant signaling and behavior,1 +plant soil and environment,1 +plant species biology,1 +plant stress,1 +plant systematics and evolution,1 +plant-environment interactions,1 +planta,1 +planta medica,1 +plants,0 +"plants, people, planet",1 +plari,-1 +plasma,0 +plasma and fusion research,1 +plasma chemistry and plasma processing,1 +plasma devices and operations,1 +plasma physics and controlled fusion,2 +plasma physics reports,1 +plasma processes and polymers,1 +plasma research express,1 +plasma science & technology,1 +plasma sources science and technology,1 +plasmid,1 +plasmonics,1 +plastic and aesthetic research,0 +plastic and reconstructive surgery,2 +plastic and reconstructive surgery : global open,1 +plastic surgery international,0 +plastic surgery: an international journal,0 +plastic surgical nursing,1 +plastics engineering,1 +plastics research online,0 +plastics rubber and composites,1 +plastičeskaâ hirurgiâ i èstetičeskaâ medicina,0 +platelets,1 +platforma obwatelska,0 +platforms & society,0 +plating and surface finishing,1 +plaza y valdes,1 +plos biology,3 +plos climate,1 +plos computational biology,3 +plos digital health,0 +plos genetics,2 +plos global public health,0 +plos medicine,3 +plos mental health,-1 +plos neglected tropical diseases,2 +plos one,1 +plos pathogens,3 +plos sustainability and transformation,1 +plos water,1 +ploughshares,0 +plural editores,1 +plural publishing,1 +pluralist,1 +pluteus,0 +pluto press,1 +plys,1 +pm press,0 +pm&r,0 +pmla: publications of the modern language association of america,3 +pmm journal of applied mathematics and mechanics,1 +pmsa publishing,0 +pnas,3 +pnas nexus,1 +pneuma: the journal of the society for pentecostal studies,1 +pneumologie,1 +pneumonia,1 +po&sie,0 +podoprintti,-1 +poe studies,1 +poesiavihkot,-1 +poetica: zeitschrift fur sprach: und literaturwissenschaft,3 +poetiche: letteratura e altro,1 +poetics,3 +poetics today,3 +poetique,3 +poetry,1 +poetry review,1 +poetry wales,0 +pohjalainen yrittäjä,-1 +pohjankyrö-lehti,-1 +pohjanmaan opettaja,-1 +pohjanmaan terveystieteiden päivät,0 +pohjois-karjala,-1 +pohjois-karjalan ammattikorkeakoulu,0 +pohjois-karjalan historiallinen yhdistys ry,0 +pohjois-karjalan historiallisen yhdistyksen vuosikirja,1 +pohjois-savon sairaanhoitopiirin julkaisuja,-1 +pohjois-savon sotaveteraanipiirin jouluviesti,-1 +pohjois-suomen historiallinen yhdistys,0 +pohjois-suomen sosiaalialan osaamiskeskuksen julkaisusarja,-1 +pohjoisen tekijät : lapin amkin asiantuntijablogi,-1 +pohjoisen tekijät : lapin ammattikorkeakoulun julkaisuja,-1 +pohjola-norden,-1 +pohjolan historiankirjoitus,-1 +pohto oy,0 +poiesis und praxis,1 +point of care,0 +pokroky matematiky : fyziky a astronomie,-1 +polanyiana,1 +polar biology,1 +polar geography,1 +polar libraries bulletin,-1 +polar record,1 +polar research,1 +polar science,1 +poleemi,-1 +polemos,0 +polhem,1 +police practice and research,1 +police quarterly,1 +policing,1 +policing and society,2 +policing: an international journal of police strategies and management,1 +policy & practice,0 +policy and internet,1 +policy and politics,2 +policy and practice in health and safety,1 +policy and society,1 +policy brief,-1 +policy brief,1 +policy brief (unesco institute for information technologies in education),0 +policy design and practice,1 +policy futures in education,1 +policy options,-1 +policy press,1 +policy reviews in higher education,1 +policy sciences,2 +policy studies,1 +policy studies journal,3 +"policy, politics, and nursing practice",1 +polifonia,1 +poligrafi,0 +poliisiammattikorkeakoulu,0 +poliisiammattikorkeakoulun katsauksia,-1 +poliisiammattikorkeakoulun oppikirjat,-1 +poliisiammattikorkeakoulun raportteja,-1 +poliisiammattikorkeakoulun tutkimuksia,1 +poliisikoira,-1 +poliittinen talous,1 +poliittisen historian julkaisuja,-1 +poliittiset kuplat,-1 +poliklinikka,-1 +polilingvialʹnostʹ i transkulʹturnye praktiki,1 +polimax,0 +polimeros: ciencia e tecnologia,0 +polimery,0 +poliolehti,-1 +polis,1 +polis: politicheskie issledovaniya,1 +polish botanical journal,1 +polish botanical society,0 +polish cartographical review,0 +polish journal for american studies,1 +polish journal of chemical technology,1 +polish journal of ecology,1 +polish journal of english studies,1 +polish journal of environmental studies,1 +polish journal of food and nutrition sciences,1 +polish journal of microbiology,1 +polish journal of natural sciences. supplement,0 +polish journal of pathology,0 +polish journal of sport and tourism,0 +polish journal of veterinary sciences,1 +polish maritime research,1 +polish music journal,1 +polish polar research,1 +polish political science,1 +polish review,1 +polish sociological review,1 +polish yearbook of international law,1 +polistampa,0 +politechnika gdanska wydawnictwo,0 +politechnika lubelska,0 +politecnico di milano,0 +politeija,0 +politeja,1 +politex: political expertise journal,1 +politica,0 +politica antica,1 +politica del diritto,1 +politica y cultura,1 +politica y gobierno,0 +politica: tidsskrift for politisk videnskab,1 +political analysis,3 +political and legal anthropology review,1 +political behavior,3 +political communication,3 +political geography,3 +political philosophy,1 +political psychology,2 +political quarterly,1 +political research exchange,1 +political research quarterly,3 +political science,1 +political science quarterly,1 +political science research and methods,2 +political studies,3 +political studies review,1 +political theology,1 +political theory,3 +politicheskaja lingvistika,1 +politicka ekonomie,1 +politicka misao,1 +politické vedy,1 +politics,1 +politics & policy,1 +politics and animals,0 +politics and gender,2 +politics and governance,1 +politics and religion,1 +politics and society,3 +politics and the life sciences,1 +politics in central europe,1 +politics of the low countries,1 +politics philosophy and economics,2 +"politics, groups, and identities",1 +"politics, religion & ideology",1 +politiikan ja talouden tutkimuksen laitoksen julkaisuja,0 +politiikasta.fi,0 +politiikka,2 +politiken,-1 +politikon,1 +politique africaine,1 +politique etrangere,1 +politique europeenne,1 +politische vierteljahresschrift,1 +politisches lernen,-1 +politisk revy,1 +politix,1 +političeskaâ nauka,0 +političke analize,0 +politologický časopis,1 +polity,1 +polity press,3 +poljarnyj vestnik,1 +poljin,-1 +pollack periodica,1 +pollution engineering,1 +polonica,1 +polska akademia nauk,0 +polski proces cywilny,0 +polski przeglad dyplomatyczny-polish diplomatic review,1 +polskie archiwum medycyny wewnetrznej,1 +polskie towarzystwo bezpieczeństwa i niezawodności,0 +polskie towarzystwo informatyczne,0 +polycyclic aromatic compounds,1 +polyhedron,1 +polymer,1 +polymer bulletin,1 +polymer chemistry,2 +polymer composites,1 +polymer degradation and stability,1 +polymer engineering and science,1 +polymer international,1 +polymer journal,1 +polymer reviews,1 +polymer science series a,1 +polymer science series b,1 +polymer science series c,1 +polymer testing,1 +polymer-plastics technology and engineering,1 +polymer: korea,0 +polymers,0 +polymers and polymer composites,1 +polymers for advanced technologies,1 +polymers from renewable resources,1 +polymorfi,0 +polyolefins journal,0 +polyphenols communication,0 +polyteknisk forlag,1 +política común,1 +pomegranate,1 +pomorania antiqua,0 +ponta de lança,1 +ponte,1 +pontes,0 +pontifical institute of mediaeval studies,0 +"pontificia universidad católica del perú, fondo editorial",0 +pontificia università gregoriana editrice,0 +pontificium institutum biblicum,1 +ponto-baltica,1 +poppis,-1 +popular communication,1 +popular culture review,1 +popular inquiry,1 +popular music,3 +popular music and society,3 +popular music history,1 +popular musicology online,1 +population,1 +population & sociétés,0 +population and development review,3 +population and environment,1 +population bulletin,1 +population ecology,1 +population health management,1 +population health metrics,1 +population medicine,1 +population research and policy review,1 +population space and place,1 +population studies,1 +population studies : a journal of demography,2 +populism,1 +populär arkeologi,-1 +poradnik jezykowy,1 +poratek uutiset,-1 +porcine health management,1 +porilaine,-1 +porin kirkkosanomat,-1 +porin taidemuseo,0 +porin taidemuseon julkaisuja,0 +porn studies,1 +poromies,-1 +porras,-1 +porrassalmi. etelä-savon kulttuurin vuosikirja,0 +port technology international,-1 +porta linguarum,1 +porta linguarum orientalium,1 +portal forlag,1 +portal: journal of multidisciplinary international studies,1 +portal: libraries and the academy,1 +portland international conference on management of engineering and technology,0 +portland press,1 +porto biomedical journal,0 +portti,-1 +portugalia,1 +portugaliae mathematica,1 +portugese journal of sport sciences-revista portuguesa de ciências do desporto,1 +portugese studies review,1 +portuguese economic journal,1 +portuguese literary and cultural studies,1 +portuguese studies,1 +pos proceedings of science,0 +poseidon förlag,0 +positif,1 +positio,-1 +positioning,0 +positions: east asia cultures critique,2 +positivity,1 +posiva oy,0 +possibility studies and society,1 +post classical archaeologies,1 +post script,1 +post-communist economies,1 +post-medieval archaeology,2 +post-soviet affairs,2 +post: a review of poetry studies,0 +postcolonial directions in education,1 +postcolonial studies,2 +postcolonial text,1 +postdigital science and education,1 +postepy w kardiologii interwencyjnej,1 +postgraduate medical journal,1 +postgraduate medicine,1 +postharvest biology and technology,2 +postimees,-1 +postmedieval-a journal of medieval cultural studies,0 +postmetropolis editorial,0 +postmodern culture,1 +postępy dermatologii i alergologii,1 +potato research,1 +potential analysis,2 +potilaan lääkärilehti,-1 +potschefstroom electronic law journal,1 +potsdam universitätsverlag,1 +poultry science,1 +poveri,-1 +poverty and development working papers,-1 +powder diffraction,1 +powder metallurgy,1 +powder metallurgy and metal ceramics,1 +powder technology,2 +powders,0 +power,1 +power and education,1 +power conversion intelligent motion europe international exhibition and conference,0 +power electronic devices and components,1 +power engineering,1 +power engineering and optimization conference,0 +power institutions in post-soviet societies,1 +power technology and engineering,1 +powerplant chemistry,0 +poznan studies in contemporary linguistics,1 +poznan studies in the philosophy of the sciences and the humanities,1 +ppar research,0 +pqr-kultur,0 +prabandhan : indian journal of management,0 +prace i materialy muzeum archeologicznego i etnograficznego w lodzi: seria archeologiczna,1 +prace naukowe - politechnika warszawska. transport,0 +prace naukowe uniwersytetu ekonomicznego we wroclawiu,0 +prace polonistyczne,1 +prace z dejin techniky a prirodnich ved,1 +practical action publishing,1 +practical assessment research and evaluation,1 +practical laboratory medicine,1 +practical matters,1 +practical neurology,1 +practical papers for the bible translator,1 +practical theology,1 +practice,1 +practice periodical on structural design and construction,1 +practicing anthropology,0 +practicus,-1 +practitioner,1 +praeger,2 +praehistorische zeitschrift,2 +praesens verlag,1 +pragmalinguistica,1 +pragmatic and observational research,1 +pragmatic case studies in psychotherapy,1 +pragmatics,2 +pragmatics and cognition,2 +pragmatics and society,2 +pragmatism today,1 +pragmática sociocultural,1 +prague economic papers,1 +prague medical report,0 +prague stringology conference,1 +prakseologia,1 +praktika tes en athenais archaiologikes etaireais,1 +praktische metallographie-practical metallography,1 +praktische theologie,1 +praktische tierarzt,1 +praktiske grunde: tidsskrift for kultur og samfunnsvitenskab,1 +praktyka teoretyczna,1 +pram?na,1 +prasad balan iyer,0 +pratique vétérinaire équine,0 +pratiques,1 +pratiques psychologiques,1 +pravda severa,1 +pravna fakulteta ljubljana,0 +pravni fakultet sveučilišta u zagrebu,0 +pravo,0 +pravo i politika,0 +pravo ta ìnnovacìĭne suspìlʹstvo,1 +pravoslavnaya e`nciklopediya,0 +pravoslavny`j svyato-tixonovskij gumanitarny`j universitet,0 +praxis,1 +praxis der kinderpsychologie und kinderpsychiatrie,0 +precambrian research,3 +precision agriculture,1 +precision chemistry,1 +precision engineering: journal of the international societies for precisionengineering and nanotechnology,1 +precision nanomedicine,0 +precollege philosophy and public practice,1 +"predpriyatie ""novaya texnika""",0 +"preferred meeting management, incorporated",0 +pregnancy hypertension,1 +prehistoire anthropologie mediterraneennes,1 +prehled vyzkumi,1 +prehospital and disaster medicine,1 +prehospital emergency care,1 +preistoria alpina,1 +premiss förlag,0 +prenatal diagnosis,1 +prensas de la universidad de zaragoza,1 +preparative biochemistry and biotechnology,1 +prescrire international,1 +presence africaine,1 +presence francophone,1 +presence: teleoperators and virtual environments,1 +present environment and sustainable development,1 +preservation,1 +presidential studies quarterly,1 +preslia,1 +press start,0 +presse medicale,1 +presses de l'ifpo,0 +presses de l'inalco,1 +presses de l`université de montréal,1 +presses de l`université du québec,1 +presses de l`université laval,1 +presses de sciences po,1 +presses des mines,0 +presses sorbonne nouvelle,1 +presses universitaires blaise pascal,1 +presses universitaires d`aix-marseille,1 +presses universitaires de bordeaux,1 +presses universitaires de caen,1 +presses universitaires de france,2 +presses universitaires de franche-comté,1 +presses universitaires de grenoble,0 +presses universitaires de liège,1 +presses universitaires de louvain,1 +presses universitaires de lyon,1 +presses universitaires de paris ouest,0 +presses universitaires de reims,1 +presses universitaires de rennes,1 +presses universitaires de sainte gemme,0 +presses universitaires de strasbourg,1 +presses universitaires du mirail,1 +presses universitaires du septentrion,1 +presses universitaires paris sorbonne,1 +preternature,0 +preventing chronic disease,1 +preventing school failure,1 +prevention science,1 +preventive cardiology,1 +preventive medicine,2 +preventive medicine reports,1 +preventive veterinary medicine,3 +prezidentskaya biblioteka imeni b.n.el`cina,0 +prešovská univerzita,0 +prilozi instituta za arheologiju,1 +prilozi povijesti umjetnosti u dalmaciji,1 +prilozi: instituta za istoriju,1 +primary care,1 +primary care diabetes,1 +primary care psychiatry,1 +primary dental journal,0 +primary health care research and development,1 +primary health care: open access,0 +primates,1 +prime research on education,0 +primenjena psihologija,0 +primer: peer-review reports in medical education research,0 +primerjalna knjizevnost,1 +primitive tider,1 +primum verbum,0 +primus,1 +prince of songkla university,0 +princeton architectural press,1 +princeton university press,3 +principia: revista internacional de epistemologia,1 +"principles, systems and applications of ip telecommunications conference",0 +principy èkologii,0 +print pro,0 +print quarterly,2 +print&media,-1 +printing media technology,0 +prion,1 +priroda,-1 +priscilla papers,0 +prism,0 +prism,1 +prison journal,1 +prispevki za novejso zgodovino,1 +privacy studies journal,-1 +privatrettsfondet,0 +prm+,0 +pro civitate austriae,1 +pro ecclesia,1 +pro et contra,0 +pro et contra,1 +pro houtskär,-1 +pro interior,-1 +pro ligno,1 +pro publico bono – magyar közigazgatás,0 +pro resto,-1 +pro terra,0 +pro terveys,-1 +pro universitaria,0 +pro-ed,1 +proagria itä-suomi,-1 +proagria keski-pohjanmaa,-1 +proagria keskusten liiton julkaisuja,-1 +proagrian hankejulkaisut,-1 +probabilistic engineering mechanics,1 +probability and mathematical physics,1 +probability and mathematical statistics,1 +probability in the engineering and informational sciences,1 +probability surveys,1 +probability theory and related fields,3 +"probability, uncertainty and quantitative risk",1 +probation journal: the journal of community and criminal justice,1 +probiotics and antimicrobial proteins,1 +problema: anuario de filosofía y teoría del derecho,1 +probleme der aegyptologie,1 +problemi di critica goldoniana,1 +problemi ohoroni pracì v ukraïnì,0 +problemnyj analiz i gosudarstvenno-upravlen?eskoe proektirovanie,0 +problemos,1 +problems and perspectives in management,0 +problems in music pedagogy,1 +problems of atomic science and technology,1 +problems of economics,1 +problems of education in the 21st century,0 +problems of information transmission,1 +problems of management in the 21st century,0 +problems of nonlinear analysis in enginerring systems,1 +"problems of physics, mathematics and technics",0 +problems of post-communism,2 +problemy ekorozwoju,1 +problemy matematičeskogo analiza,0 +problemy muzykalʹnoj nauki,1 +problemy polityki społecznej,0 +problemy razvitiâ territorii,1 +problemy sovremennogo obrazovanija,0 +problemy teorii i praktiki upravleniâ,1 +problemy zarządzania,0 +probus,1 +procedia cirp,1 +procedia computer science,1 +procedia economics and finance,0 +procedia engineering,1 +"procedia environmental science, engineering and management",1 +procedia environmental sciences,0 +procedia iutam,1 +procedia manufacturing,1 +procedia materials science,0 +procedia structural integrity,1 +procedia technology,0 +procedia: social and behavioral sciences,1 +procedural aspects of international law,1 +proceeding of inss,1 +proceeding of international conference on entrepreneurship and business management,0 +proceeding of the institute of applied mathematics,0 +proceedings,0 +proceedings,1 +proceedings (conference on design and semantics of form and movement),1 +proceedings (eu pvsec),1 +proceedings (fig international congress),0 +proceedings (ieee international conference on bioinformatics and biomedicine),1 +proceedings (ieee international conference on healthcare informatics),1 +proceedings (ieee international conference on mobile data management),1 +proceedings (ieee international symposium on computer-based medical systems),1 +proceedings (ieee international symposium on service-oriented system engineering),1 +proceedings (ieee/acm international conference on mining software repositories),1 +proceedings (international conference on electrical machines),1 +proceedings (international congress on project management and engineering),0 +proceedings - air & waste management association. meeting,0 +proceedings - electrochemical society,1 +proceedings : acm ieee design automation conference,1 +proceedings : annual ias-sts conference,0 +proceedings : annual new zealand built environment research symposium,0 +proceedings : annual reliability and maintainability symposium,1 +proceedings : asia pacific software engineering conference,1 +proceedings : australasian database conference,0 +proceedings : computer graphics international,1 +"proceedings : design, automation, and test in europe conference and exhibition",1 +proceedings : euromicro conference on digital system design,1 +proceedings : euromicro conference on software engineering and advanced applications,1 +proceedings : euromicro workshop on parallel and distributed processing,0 +proceedings : european academy of sciences and arts,1 +proceedings : european conference for modelling and simulation,1 +proceedings : european conference on noise control,0 +proceedings : fig working week,0 +proceedings : genome informatics workshop,1 +proceedings : grid conference,1 +proceedings : ieee asia-pacific conference on circuits and systems,1 +proceedings : ieee computer security foundations symposium,1 +proceedings : ieee conference on computational complexity,1 +proceedings : ieee international conference on cloud computing technology and science,1 +proceedings : ieee international conference on computer design,1 +proceedings : ieee international conference on intelligent engineering systems,0 +proceedings : ieee international conference on program comprehension,1 +proceedings : ieee international conference on the properties and applications of dielectric materials,1 +proceedings : ieee international parallel and distributed processing symposium,2 +proceedings : ieee international symposium for design and technology in electronic packaging,1 +proceedings : ieee international symposium on defect and fault tolerance in vlsi systems,1 +proceedings : ieee international symposium on high-assurance systems engineering,0 +proceedings : ieee international working conference on source code analysis and manipulation,1 +proceedings : ieee international workshop on metrology for industry 4.0 and iot,1 +proceedings : ieee real-time and embedded technology and applications symposium,1 +proceedings : ieee symposium on computers and communications,1 +proceedings : ieee vlsi test symposium,1 +proceedings : ieee/acm international symposium on distributed simulation and real time applications,1 +proceedings : ifcis international conference on cooperative information systems,1 +proceedings : information theory workshop,0 +proceedings : international computer software & applications conference,1 +proceedings : international conference of the learning sciences,1 +proceedings : international conference on 3-d digital imaging and modeling,1 +proceedings : international conference on advanced technologies for communications,0 +proceedings : international conference on computer communications and networks,1 +proceedings : international conference on dependable systems and networks,1 +proceedings : international conference on image processing,1 +proceedings : international conference on industrial & mechanical engineering and operations management,0 +proceedings : international conference on industrial engineering and operations management,0 +proceedings : international conference on information visualisation,1 +proceedings : international conference on port and ocean engineering under arctic conditions,0 +proceedings : international conference on tools with artificial intelligence,1 +"proceedings : international congress of food technologists, biotechnologists and nutritionists",-1 +proceedings : international congress of meat science and technology,0 +proceedings : international congress on modelling and simulation,0 +proceedings : international coral reef symposium,0 +proceedings : international database engineering and applications symposium,1 +proceedings : international enterprise distributed object computing conference,1 +proceedings : international forum on design languages,0 +proceedings : international network for didactic research in university mathematics,0 +proceedings : international symposium on discharges and electrical insulation in vacuum,1 +proceedings : international symposium on high-performance computer architecture,1 +proceedings : international symposium on low power electronics and design,1 +proceedings : international symposium on mixed and augmented reality,1 +"proceedings : international symposium on modeling, analysis, and simulation of computer and telecommunication systems",1 +proceedings : international symposium on multiple-valued logic,1 +proceedings : international symposium on software reliability engineering,1 +proceedings : international workshop on database and expert systems applications,1 +proceedings : international workshop on temporal representation and reasoning,1 +proceedings : international workshops on parallel processing,1 +proceedings : real-time systems symposium,1 +proceedings : simulation symposium,1 +proceedings : symposium on computer arithmetic,1 +proceedings : symposium on reliable distributed systems,1 +proceedings : thermal performance of the exterior envelopes of whole buildings,0 +proceedings : winter simulation conference,0 +proceedings : workshop on hot topics in operating systems,1 +proceedings cscs,0 +proceedings elmar,1 +proceedings from the document academy,0 +proceedings gsp,0 +proceedings icil,0 +proceedings ieee international conference on emerging technologies and factory automation,1 +proceedings ifkad,0 +"proceedings in adaptation, learning and optimization",1 +proceedings in applied mathematics and mechanics : pamm,1 +proceedings in conference of informatics and management sciences,0 +proceedings in electronic international interdisciplinary conference,0 +proceedings in food system dynamics,0 +proceedings in global virtual conference,0 +proceedings in international virtual research conference in technical disciplines,0 +proceedings in radiochemistry,0 +proceedings international network on timber engineering research,0 +proceedings international radar symposium,0 +proceedings mea meeting,0 +proceedings of acm on programming languages,1 +proceedings of caol,0 +proceedings of coling,1 +proceedings of conference of open innovations association fruct,1 +proceedings of drs,1 +proceedings of ebrf,0 +proceedings of esscirc,1 +proceedings of forum acusticum,0 +proceedings of iahs,1 +proceedings of icsssm,1 +"proceedings of ieee international conference on teaching, assessment, and learning for engineering",0 +proceedings of ieee sensors,1 +proceedings of international agriculture innovation conference,0 +proceedings of international conference on asia pacific business innovation technology,0 +proceedings of international conference on computational thinking education,0 +proceedings of international conference on the advancement of steam,0 +proceedings of international conference on virtual systems and multimedia,1 +proceedings of international joint conference on neural networks,1 +proceedings of machine learning research,1 +proceedings of meetings on acoustics,0 +proceedings of peerage of science,0 +proceedings of smart learning excellence conference,0 +proceedings of spie : the international society for optical engineering,0 +proceedings of the ... annual conference on research in undergraduate mathematics education,0 +proceedings of the ... connected learning summit,0 +proceedings of the ... dmi: academic design management conference,0 +proceedings of the ... international conference on auditory display,1 +proceedings of the ... international conference on economics and social sciences.,0 +"proceedings of the ... international conference on intellectual capital, knowledge management & organisational learning",0 +proceedings of the ... international symposium on marine propulsors,0 +proceedings of the ... isarc,0 +proceedings of the ... multidisciplinary international conference on scheduling: theory and applications,1 +proceedings of the ... physics education research conference,0 +"proceedings of the ... workshop on mathematics, computer science and technical education",0 +proceedings of the aaai conference on artificial intelligence,2 +proceedings of the academy of natural sciences of philadelphia,1 +proceedings of the acm conference on electronic commerce,1 +proceedings of the acm in computer graphics and interactive techniques,1 +proceedings of the acm international symposium on mobility management and wireless access,1 +proceedings of the acm on human-computer interaction,2 +"proceedings of the acm on interactive, mobile, wearable and ubiquitous technologies",2 +proceedings of the acm sigchi symposium on engineering interactive computing systems,1 +proceedings of the acm sigcomm internet measurement conference,1 +proceedings of the acm sigplan symposium on principles & practice of parallel programming,1 +proceedings of the acm workshop on embedded sensing systems for energy-efficiency in buildings,1 +proceedings of the american catholic philosophical association,1 +proceedings of the american control conference,1 +proceedings of the american mathematical society,2 +proceedings of the american mathematical society series b,2 +proceedings of the american philosophical society,1 +proceedings of the american society of international law annual meeting,0 +proceedings of the annual boston university conference on language development,0 +proceedings of the annual cad conference,0 +proceedings of the annual conference of cais,0 +proceedings of the annual conference of the cognitive science society,1 +proceedings of the annual conference of the ieee industrial electronics society,1 +proceedings of the annual global sales science institute conference,0 +proceedings of the annual hawaii international conference on system sciences,1 +proceedings of the annual international conference on architecture and civil engineering,-1 +"proceedings of the annual international conference on control, automation and robotics",0 +proceedings of the annual macromarketing conference,0 +proceedings of the annual meeting of the academy of international business,0 +proceedings of the annual meeting of the berkeley linguistics society,1 +proceedings of the annual meeting of the isss,0 +proceedings of the annual pronunciation in second language learning and teaching conference,0 +proceedings of the aristotelian society,2 +proceedings of the asia and south pacific design automation conference,0 +proceedings of the asiacall international conference,0 +proceedings of the association for information science and technology,1 +proceedings of the association for library and information science education annual conference,0 +proceedings of the australasian language technology workshop,1 +proceedings of the australian software engineering conference,1 +proceedings of the balkan conference in informatics,0 +proceedings of the biennial baltic electronics conference,0 +proceedings of the biological society of washington,1 +proceedings of the boston area colloquium in ancient philosophy,1 +proceedings of the british academy,1 +proceedings of the cirp seminars on manufacturing systems,1 +proceedings of the combustion institute,2 +proceedings of the conference new trends in translation and technology,0 +proceedings of the custom integrated circuits conference,1 +proceedings of the danish institute of athens,1 +proceedings of the design society,1 +proceedings of the edinburgh mathematical society,1 +proceedings of the engineering education for sustainable development conference,0 +proceedings of the entomological society of washington,1 +proceedings of the estonian academy of sciences,1 +proceedings of the european conference on antennas and propagation,1 +proceedings of the european conference on cyber warfare and security,1 +proceedings of the european conference on e-government,0 +proceedings of the european conference on e-learning,0 +proceedings of the european conference on entrepreneurship and innovation,0 +proceedings of the european conference on games-based learning,0 +proceedings of the european conference on information management and evaluation,0 +proceedings of the european conference on intellectual capital,0 +proceedings of the european conference on knowledge management,0 +"proceedings of the european conference on management, leadership and governance",0 +proceedings of the european conference on research methods in business and management,0 +proceedings of the european marketing academy,0 +proceedings of the european society for aesthetics,0 +proceedings of the european solid state device research conference,1 +proceedings of the european test workshop,1 +proceedings of the european turbomachinery conference,1 +proceedings of the geologists association,1 +proceedings of the hamburg international conference of logistics,0 +proceedings of the human factors and ergonomics society annual meeting,0 +proceedings of the human factors and ergonomics society europe chapter annual conference,0 +proceedings of the iahr world congress,0 +proceedings of the iass annual symposium,0 +proceedings of the ica,0 +proceedings of the ice: urban design and planning,1 +proceedings of the ieee,3 +proceedings of the ieee international conference on intelligent transportation systems,0 +proceedings of the ieee conference on decision & control,1 +proceedings of the ieee conference on nanotechnology,1 +"proceedings of the ieee international conference on acoustics, speech, and signal processing",2 +proceedings of the ieee international conference on services computing,1 +proceedings of the ieee international symposium on consumer electronics,1 +proceedings of the ieee international symposium on hardware-oriented security and trust,1 +proceedings of the ieee international symposium on high performance distributed computing,1 +proceedings of the ieee international symposium on industrial electronics,1 +proceedings of the ieee lcn ... annual ieee conference on local computer networks,1 +proceedings of the ieee radar conference,1 +proceedings of the ieee sensor array and multichannel signal processing workshop,1 +proceedings of the ieee/ras-embs international conference on biomedical robotics and biomechatronics,1 +proceedings of the ieee/rsj international conference on intelligent robots and systems,1 +proceedings of the indian academy of sciences : mathematical sciences,1 +proceedings of the innovative applications of artificial intelligence conference,1 +proceedings of the institute of navigation : international technical meeting,1 +proceedings of the institution of civil engineers : construction materials,1 +proceedings of the institution of civil engineers : energy,1 +proceedings of the institution of civil engineers : waste and resource management,1 +"proceedings of the institution of civil engineers. management, procurement and law",1 +proceedings of the institution of civil engineers: bridge engineering,1 +proceedings of the institution of civil engineers: civil engineering,1 +proceedings of the institution of civil engineers: engineering sustainability,1 +proceedings of the institution of civil engineers: geotechnical engineering,1 +proceedings of the institution of civil engineers: ground improvement,1 +proceedings of the institution of civil engineers: maritime engineering,1 +proceedings of the institution of civil engineers: municipal engineer,1 +proceedings of the institution of civil engineers: structures and buildings,1 +proceedings of the institution of civil engineers: transport,1 +proceedings of the institution of civil engineers: water management,1 +proceedings of the institution of mechanical engineers : part p,1 +proceedings of the institution of mechanical engineers part a: journal of power and energy,1 +proceedings of the institution of mechanical engineers part b: journal of engineering manufacture,1 +proceedings of the institution of mechanical engineers part c: journal of mechanical engineering science,1 +proceedings of the institution of mechanical engineers part d: journal of automobile engineering,1 +proceedings of the institution of mechanical engineers part e: journal of process mechanical engineering,1 +proceedings of the institution of mechanical engineers part f: journal of rail and rapid transit,1 +proceedings of the institution of mechanical engineers part g: journal of aerospace engineering,1 +proceedings of the institution of mechanical engineers part h: journal of engineering in medicine,1 +proceedings of the institution of mechanical engineers part i: journal of systems and control engineering,1 +proceedings of the institution of mechanical engineers part j: journal of engineering tribology,1 +proceedings of the institution of mechanical engineers part k: journal of multi-body dynamics,1 +proceedings of the institution of mechanical engineers part l: journal of materials-design and applications,1 +proceedings of the institution of mechanical engineers part m: journal of engineering for the maritime environment,1 +proceedings of the institution of mechanical engineers part o: journal of risk and reliability,1 +proceedings of the intellectbase international consortium,0 +proceedings of the international aaai conference on weblogs and social media,1 +proceedings of the international association for business and society,0 +proceedings of the international association of maritime universities conference,0 +proceedings of the international astronautical congress,0 +proceedings of the international astronomical union,1 +proceedings of the international business information management association conference,0 +proceedings of the international cdio conference,1 +proceedings of the international colour association (aic) conference,0 +proceedings of the international conference egov-cedem-epart,1 +proceedings of the international conference of daaam baltic,0 +proceedings of the international conference on automated planning and scheduling,1 +proceedings of the international conference on business excellence,0 +proceedings of the international conference on computer-aided architectural design research in asia,1 +proceedings of the international conference on condition monitoring and asset management,0 +proceedings of the international conference on digital audio effects,1 +proceedings of the international conference on document analysis and recognition,1 +"proceedings of the international conference on e-commerce, e-administration, e-society, e-education, and e-technology",0 +"proceedings of the international conference on efficiency, cost, optimization, simulation and environmental impact of energy systems",1 +proceedings of the international conference on electronic business,0 +proceedings of the international conference on engineering design,1 +proceedings of the international conference on european association for education in elect rial and information engineering.,0 +proceedings of the international conference on gender research,-1 +proceedings of the international conference on image analysis and signal processing,1 +"proceedings of the international conference on information management, innovation management and industrial engineering",0 +proceedings of the international conference on information quality,1 +proceedings of the international conference on innovations in information technology,1 +proceedings of the international conference on innovative technologies,0 +proceedings of the international conference on knowledge capture,1 +proceedings of the international conference on logistics and transport,0 +proceedings of the international conference on networking and distributed computing,1 +proceedings of the international conference on new interfaces for musical expression,0 +proceedings of the international conference on numerical simulation of optoelectronic devices,0 +proceedings of the international conference on optimisation of electrical and electronic equipment,0 +proceedings of the international conference on parallel processing,1 +proceedings of the international conference on progress in additive manufacturing,0 +proceedings of the international conference on research challenges in information science,1 +proceedings of the international conference on scientometrics and informetrics,1 +proceedings of the international conference on solid waste technology and management,0 +proceedings of the international conference on tourism research,0 +proceedings of the international conference on web information systems engineering,1 +proceedings of the international congress of phonetic sciences,1 +proceedings of the international congress on sound and vibration,0 +proceedings of the international display workshops,0 +proceedings of the international institute of space law,0 +proceedings of the international interdisciplinary business-economics advancement conference,0 +proceedings of the international iscram conference,0 +proceedings of the international peat congress,0 +"proceedings of the international scientific conference ""economic science for rural development""",0 +"proceedings of the international scientific conference ""strategies xxi""",0 +"proceedings of the international society for magnetic resonance in medicine, scientific meeting and exhibition",0 +proceedings of the international symposium for health information management research,0 +proceedings of the international symposium on business and management,0 +proceedings of the international symposium on parallel and distributed processing with applications,1 +proceedings of the international symposium on symbolic and algebraic computation,1 +proceedings of the international symposium on technology and society,1 +proceedings of the international thermal spray conference,1 +proceedings of the international topical meeting on high temperature reactor technology,1 +proceedings of the japan academy series a: mathematical sciences,1 +proceedings of the japan academy series b: physical and biological sciences,1 +proceedings of the karlsruhe workshop on software radios,0 +"proceedings of the latvian academy of sciences : section b, natural, exact and applied sciences",0 +proceedings of the lfg conference,1 +proceedings of the linnean society of new south wales,1 +proceedings of the london mathematical society,3 +proceedings of the manitoba conference on numerical mathematics,1 +proceedings of the national academy of sciences,3 +proceedings of the national academy of sciences india section b: biologicalsciences,1 +proceedings of the national academy of sciences of the united states of america,3 +proceedings of the nordic insulation symposium,1 +proceedings of the north american academy of liturgy annual meeting,1 +proceedings of the northern lights deep learning workshop,1 +proceedings of the nutrition society,1 +proceedings of the pme conference,1 +proceedings of the prehistoric society,2 +proceedings of the risø international symposium on materials science,1 +proceedings of the royal irish academy section c : archaeology celtic studies history linguistics literature,1 +proceedings of the royal society a : mathematical physical and engineering sciences,2 +proceedings of the royal society b : biological sciences,3 +proceedings of the royal society of edinburgh section a: mathematics,1 +proceedings of the satellite division's international technical meeting,1 +proceedings of the seminar for arabian studies,1 +proceedings of the siam international conference on data mining,1 +proceedings of the society for computation in linguistics,0 +proceedings of the society of antiquaries in scotland,1 +proceedings of the sound and music computing conferences,1 +proceedings of the steklov institute of mathematics,1 +proceedings of the symposium on operating systems principles,1 +proceedings of the teaching and education conferences,-1 +proceedings of the university of vaasa. working papers,0 +proceedings of the upi international conference on technical and vocational education and training,0 +proceedings of the virgil society,1 +proceedings of the western pharmacology society,1 +proceedings of the working conference on reverse engineering,1 +proceedings of the world congress of the international association for semiotic studies,0 +"proceedings of the world congress on civil, structural, and environmental engineering",0 +proceedings of the world congress on electrical engineering and computer systems and science,0 +"proceedings of the world congress on mechanical, chemical, and material engineering",0 +"proceedings of the world congress on momentum, heat and mass transfer.",0 +proceedings of the world congress on new technologies,0 +proceedings of the yorkshire geological society,1 +proceedings of the zoological society,1 +proceedings on privacy enhancing technologies,1 +proceedings quality in research,0 +proceedings: international conference on application of concurrency to system design,1 +procesamiento del lenguaje natural,1 +process biochemistry,1 +process integration and optimization for sustainability,1 +process safety and environmental protection,1 +process safety progress,1 +process science,0 +process studies,1 +processeng engineering,0 +processes,0 +procomma academic,1 +procompal publicaciones,1 +producciones cima,0 +production,0 +production & manufacturing research,1 +production & operations management society,0 +production and inventory management journal,1 +production and operations management,3 +production engineering,1 +production engineering archives,1 +production planning and control,1 +productions animales,1 +productivity press,0 +proekt baltiâ,-1 +profese online,0 +profesional de la informacion,1 +profesorado: revista de curriculum y formacion de profesorado,0 +professional development in education,1 +professional engineering,1 +professional engineering publishing,1 +professional geographer,2 +professional psychology: research and practice,1 +professional safety,0 +professioni infermieristiche,1 +professions and professionalism,1 +professor ian clarke,0 +profi-tisk group,0 +profiitti,-1 +profil verlag,1 +profilaktičeskaâ i kliničeskaâ medicina,0 +prognostics & health management society,0 +program visualization workshop,0 +program: electronic library and information systems,1 +programa final e livro de resumos congresso brasileiro de engenharia química,0 +programme & abstract book : international conference on engineering design,0 +programming and computer software,1 +programmnye produkty i sistemy,0 +progres en urologie,1 +progress in additive manufacturing,1 +progress in aerospace sciences,1 +progress in artificial intelligence,1 +progress in biochemistry and biophysics,1 +progress in biomedical engineering,1 +progress in biomedical optics and imaging,1 +progress in biophysics and molecular biology,1 +progress in brain research,1 +progress in business innovation and technology management,0 +progress in cardiovascular diseases,1 +progress in chemistry,0 +progress in colloid and polymer science,1 +"progress in color, colorants and coatings",1 +progress in computational fluid dynamics,1 +progress in crystal growth and characterization of materials,2 +progress in development studies,1 +progress in drug research,1 +progress in earth and planetary science,1 +progress in electromagnetics research,2 +progress in electromagnetics research : letters,1 +progress in electromagnetics research b,1 +progress in electromagnetics research c,1 +progress in electromagnetics research m,1 +progress in electromagnetics research symposium,1 +progress in energy,0 +progress in energy and combustion science,2 +progress in experimental tumor research,1 +progress in health sciences,0 +progress in histochemistry and cytochemistry,1 +progress in human geography,3 +progress in industrial ecology: an international journal,1 +progress in inorganic chemistry,1 +progress in lipid research,1 +progress in materials science,2 +progress in medicinal chemistry,1 +progress in molecular biology and translational science,1 +progress in natural science-materials international,1 +progress in neuro-psychopharmacology and biological psychiatry,1 +progress in neurobiology,2 +progress in nuclear energy,1 +progress in nuclear magnetic resonance spectroscopy,1 +progress in nuclear science and technology,1 +progress in nutrition,0 +progress in oceanography,1 +progress in optics,1 +progress in organic coatings,1 +progress in orthodontics,1 +progress in palliative care,1 +progress in particle and nuclear physics,3 +progress in pediatric cardiology,1 +progress in photovoltaics,2 +progress in physical geography,1 +progress in physics,0 +progress in planning,2 +progress in polymer science,2 +progress in preventive medicine,1 +progress in quantum electronics,3 +progress in reaction kinetics and mechanism,1 +progress in responsible tourism,0 +progress in retinal and eye research,3 +progress in rubber plastics and recycling technology,1 +progress in solid state chemistry,1 +progress in surface science,1 +progress in transplantation,0 +progress of theoretical and experimental physics,1 +progressus,1 +proinflow,0 +project leadership and society,1 +project management journal,1 +project management research and practice,0 +project-based education and other activating strategies in science education,0 +projectics,0 +projections,0 +projections: the journal for movies and mind,2 +projektimaailma,-1 +projektitoiminta,0 +projektiuutiset,-1 +projektverlag,1 +prokla,1 +prolegomena,1 +prologi : viestinnän ja vuorovaikutuksen tieteellinen aikakauslehti,1 +prologos ry,0 +promaint,-1 +promet: traffic and transportation,1 +prometeica,1 +prometeo libros,0 +prometheus,0 +prometheus,1 +prooftexts: a journal of jewish literary history,1 +propagation of ornamental plants,1 +propellants explosives pyrotechnics,1 +propelli,-1 +property management,1 +propo,-1 +prora,-1 +proscholiki & scholiki ekpaideusi,0 +prose studies,2 +prospectiva,0 +prospects,1 +prospettiva: rivista di storia dell arte antica e moderna,1 +prospäkkäri,-1 +prostaglandins and other lipid mediators,1 +prostaglandins leukotrienes and essential fatty acids,1 +prostate,1 +prostate cancer and prostatic diseases,1 +prosthetics and orthotics international,1 +prostor,1 +prosveshcheniye publishing,1 +protection and control of modern power systems,2 +protection of metals and physical chemistry of surfaces,1 +"protection, automation and control world conference",0 +protecţia socială a copilului,-1 +protee: theories et pratiques semiotiques,1 +protein & cell,1 +protein and peptide letters,1 +protein engineering design and selection,1 +protein expression and purification,1 +protein journal,1 +protein science,1 +proteins: structure function and bioinformatics,1 +proteoglycan research,0 +proteome science,1 +proteomes,0 +proteomics,1 +proteomics clinical applications,1 +proteus,1 +protist,1 +proto-indo-european linguistics,0 +protoplasma,1 +protosociology: an international journal of interdisciplinary research,1 +proud pen limited,0 +proverbium,1 +proviisori,-1 +provincia,0 +proxima thule,1 +proyecciones,1 +prudentia,1 +prx energy,1 +prx quantum,2 +pryvatne bahatoprofilne pidpryyemstvo ekonomika,0 +przeglad archeologiczny,1 +przeglad elektrotechniczny,0 +przeglad epidemiologiczny,1 +przeglad humanistyczny,1 +przeglad menopauzalny,1 +przeglad orientalistyczny,1 +przeglad papierniczy,0 +przegląd historyczno-wojskowy,1 +przegląd filozoficzny,0 +przegląd gastroenterologiczny,0 +przegląd geopolityczny,1 +przegląd rusycystyczny,1 +przegląd statystyczny,0 +przemysl chemiczny,0 +przestrzen spoleczna,0 +ps: political science and politics,1 +psichologija,1 +psicologia-reflexao e critica,0 +psicologica,0 +psicología educativa,1 +psicothema,0 +psiholingvisticheskie aspekty izuchenia rechevoj deatelnosti,0 +psihologia xxi veka,0 +psihologija,0 +psihologija i ekonomika,0 +psihologiya,0 +psihologičeskaâ nauka i obrazovanie,1 +psihološka obzorja,1 +psiholìngvìstika,-1 +psike art,-1 +psikhologicheskii zhurnal,0 +pskovskii gosudarstvenny`i pedagogicheskii universitet imeni s. m. kirova,0 +pskovskij gosudarstvenny`j universitet,0 +pskovskij regionologičeskij žurnal,0 +psyart,1 +psych,0 +psyche-zeitschrift fur psychoanalyse und ihre anwendungen,0 +psyche: a journal of entomology,0 +psychiatria danubina,0 +psychiatria fennica,1 +psychiatria fennica oy,0 +psychiatria polska,0 +psychiatric annals,1 +psychiatric clinics of north america,1 +psychiatric genetics,1 +psychiatric quarterly,1 +psychiatric rehabilitation journal,1 +psychiatric services,1 +psychiatric times,1 +psychiatrie de l'enfant,1 +psychiatrikī,1 +psychiatrische praxis,1 +psychiatry and clinical neurosciences,2 +psychiatry investigation,1 +psychiatry psychology and law,1 +psychiatry research,1 +psychiatry research communications,1 +psychiatry research: neuroimaging,1 +psychiatry: interpersonal and biological processes,1 +psychnology journal,1 +psycho-educational research reviews,0 +psycho-oncologie,1 +psycho-oncology,1 +psychoanalysis and history,2 +"psychoanalysis, culture and society",1 +psychoanalytic dialogues,1 +psychoanalytic inquiry,1 +psychoanalytic psychology,1 +psychoanalytic psychotherapy,1 +psychoanalytic quarterly,1 +psychoanalytic review,1 +psychoanalytic social work,1 +psychoanalytic study of the child,1 +psychodynamic practice,1 +psychodynamic psychiatry,1 +psychogeriatrics,1 +psychologia,1 +psychologica belgica,0 +psychological assessment,3 +psychological bulletin,3 +psychological inquiry,2 +psychological medicine,3 +psychological methods,3 +psychological record,1 +psychological reports,1 +psychological research-psychologische forschung,1 +psychological review,3 +psychological science,3 +psychological science in the public interest,3 +psychological services,0 +psychological test adaptation and development,1 +psychological test and assessment modeling,1 +psychological trauma,1 +psychologie du travail et des organisations,1 +psychologie francaise,0 +psychologie in erziehung und unterricht,1 +psychologische rundschau,1 +psychologist,1 +psychology,0 +psychology & sexuality,1 +psychology and aging,3 +psychology and behavioral sciences,0 +psychology and cognitive sciences,0 +psychology and developing societies,1 +psychology and education,0 +psychology and health,2 +psychology and marketing,1 +psychology and psychotherapy,1 +psychology and society,1 +psychology crime and law,1 +psychology health and medicine,1 +psychology in russia : state of the art,1 +psychology in the schools,1 +psychology of addictive behaviors,2 +psychology of aesthetics creativity and the arts,1 +psychology of consciousness,1 +psychology of language and communication,1 +psychology of learning and motivation,2 +psychology of men and masculinity,1 +psychology of music,3 +psychology of popular media,1 +psychology of programming interest group newsletter,0 +psychology of religion and spirituality,1 +psychology of sexualities review,0 +psychology of sport and exercise,1 +psychology of violence,1 +psychology of well-being,1 +psychology of women quarterly,1 +psychology press,1 +psychology public policy and law,1 +psychology research,0 +psychology research and applications,0 +psychology research and behavior management,1 +"psychology, community and health",1 +"psychology, learning & teaching",1 +"psychology, society & education",1 +psychometrika,2 +psychomusicology,1 +psychoneuroendocrinology,2 +psychonomic bulletin and review,3 +psychopathology,1 +psychopharmacology,1 +psychopharmakotherapie,1 +psychophysiology,2 +psychosis,1 +psychosomatic medicine,2 +psychosomatics,1 +psychosozial-verlag,1 +psychotherapeut,1 +psychotherapie psychosomatik medizinische psychologie,1 +psychotherapy,2 +psychotherapy and psychosomatics,3 +psychotherapy research,2 +psychreg journal of psychology,1 +psyecology,1 +psyke and logos,1 +psykoanalyyttinen psykoterapia,1 +psykologi,-1 +psykologia,2 +psykologian opetus- ja tutkimusklinikan julkaisuja,-1 +psykoterapia,1 +pteridines,1 +ptetis publishers,0 +ptr,-1 +ptt raportteja,-1 +ptt työpapereita,-1 +pubblicazioni cassinesi,0 +pubblicazioni di lingua e cultura italiana,0 +public,1 +public administration,3 +public administration and development,1 +public administration and management,1 +public administration quarterly,1 +public administration research,0 +public administration review,3 +public affairs quarterly,1 +public and municipal finance,0 +public archaeology,2 +public budgeting and finance,1 +public choice,1 +public culture,3 +public finance review,1 +public health,1 +public health challenges,-1 +public health ethics,1 +public health frontier,0 +public health genomics,1 +public health in practice,0 +public health nursing,1 +public health nutrition,1 +public health panorama,1 +public health reports,1 +public health reviews,1 +public historian,2 +public history review,1 +public history weekly,0 +public infrastructure bulletin,0 +public integrity,1 +public law review,1 +public law: the constitutional and administrative law of the commonwealth,2 +public library quarterly,0 +public management review,3 +public money and management,1 +public opinion quarterly,3 +public organization review,1 +public performance and management review,2 +public personnel management,1 +public policy and administration,1 +public procurement law review,2 +public reason,1 +public relations inquiry,1 +public relations journal,1 +public relations review,1 +public sector economics,0 +public service review,0 +public service review: health and social care,0 +public services quarterly,1 +public understanding of science,2 +public works management and policy,1 +publicacions de la universitat de valència,1 +publicacions de l´abadia de montserrat,0 +publicacions i edicions de la universitat de barcelona,0 +publicacions institucionals ua,0 +publicacions matematiques,1 +publication,-1 +publication : tampere university of technology,0 +publication cie,1 +publication of the research institute of the lutheran church in finland,0 +publicationes mathematicae: debrecen,1 +publications,0 +publications de l institut mathematique-beograd,0 +publications de l'observatoire astronomique de belgrade,0 +publications du crahm,1 +publications du lma,0 +publications from the national museum: studies in archaeology and history,1 +publications issued by the royal swedish academy of music,1 +publications mathematiques de l ihes,3 +publications of the astronomical society of australia,1 +publications of the astronomical society of japan,1 +publications of the astronomical society of the pacific,1 +publications of the austrian ludwig wittgenstein society,1 +publications of the department of social research,0 +publications of the english goethe society,0 +publications of the finnish dendrological society,-1 +publications of the finnish exegetical society,1 +publications of the foundation for finnish assyriological research,0 +publications of the giellagas institute,-1 +publications of the ictm study group on music archaeology,1 +publications of the international society for orthodox church music,0 +publications of the research institute for mathematical sciences,1 +publications of the university of eastern finland : dissertations in social sciences and business studies,0 +publications of the university of eastern finland : general series,0 +"publications of the university of eastern finland : reports and studies in education, humanities, and theology",0 +publications of the university of eastern finland : reports and studies in forestry and natural sciences,0 +publications of the university of eastern finland : reports and studies in health sciences,0 +publications of the university of eastern finland. reports and studies in social sciences and business studies,0 +publications on ocean development,1 +publicum,0 +"publikation (arcada, nylands svenska yrkeshögskola)",0 +publikation från pedagogiska fakulteten vid åbo akademi,0 +publikon,0 +publishing history,0 +publishing house of central university of nationalitics,0 +publishing house of marine,0 +publishing research quarterly,1 +publius: the journal of federalism,1 +publizistik,1 +pudasjärveläinen,-1 +pudasjärven kaupunki,0 +puerto rico health sciences journal,1 +puhe ja kieli,2 +puheen ja kielen tutkimuksen yhdistyksen julkaisuja,1 +puheterapeutti,-1 +puhtausala,-1 +puhtaustieto,-1 +pula,0 +pulim,1 +pulloposti,-1 +pulmonary circulation,-1 +pulmonary medicine,1 +pulmonary pharmacology and therapeutics,1 +pulmonary therapy,1 +pulmonology,1 +pulmonology and respiratory research,0 +pulp & paper fundamental research society,1 +pulp and paper canada,1 +pulp and paper international,1 +pulp and paper technical association of canada,0 +puls,1 +pulse,1 +pulso: revista de educacion,0 +pulssi-portaali,-1 +pump journal of undergraduate research,0 +pun - editions universitaires de lorraine,1 +puncta,1 +punctum : international journal of semiotics,0 +punctum books,1 +punishment and society: international journal of penology,2 +punk & post-punk,1 +punkalaitumen sanomat,-1 +puntoorg,1 +puolustusministeriö,0 +puolustusministeriön julkaisuja,-1 +puolustustutkimuksen vuosikirja,0 +puolustusvoimien tutkimuslaitoksen julkaisuja,-1 +puppa,0 +purdue university press,1 +pure and applied analysis,1 +pure and applied biology,0 +pure and applied chemistry,1 +pure and applied functional analysis,1 +pure and applied geophysics,1 +pure and applied mathematics quarterly,1 +purinergic signalling,1 +purkamouutiset,-1 +purushartha,1 +puruvesi,-1 +put i saobraćaj,-1 +puti rossii,0 +putkeen!,-1 +puu,-1 +puumala,-1 +puumies,-1 +puumieskalenteri,-1 +puutarha & kauppa,-1 +puutarha-sanomat,-1 +puutarhakalenteri,-1 +puuviesti.fi,-1 +pyatigorsk state linguistic university publishing house,1 +pyhäjokiseutu,-1 +pyhäjärven sanomat,-1 +pyhäjärvi-instituutti,0 +pylon,0 +pyne,0 +pyrenae,1 +pyrex journal of african studies and development,0 +pythagoras,1 +pyöräily+triathlon,-1 +pähkylä,-1 +päihdetilastollinen vuosikirja,0 +päijät-hämeen liitto,-1 +päijät-hämeen liitto,0 +päijät-hämeen linnut,-1 +päijät-hämeen sosiaali-ja terveysyhtymän julkaisuja,0 +päijät-hämeen tutkimusseura ry,0 +päijät-hämeen tutkimusseuran vuosikirja,0 +pälstidskrift,-1 +pässinrata,-1 +pääkaupunkiseudun sosiaalialan osaamiskeskus socca,0 +päätösten tueksi,-1 +pécsi tudományegyetem,0 +pólay elemér alapítvány könyvtára,0 +pós-limiar,0 +półrocznik językoznawczy tertium,0 +pööning,-1 +pāygāh-i markaz-i iṭṭilā̒āt-i ̒ilmī-i jihād-i dānishgāhī,-1 +q open,1 +qatar medical journal,0 +qazaq historical review,-1 +qed,0 +qeios,0 +qfemzine,-1 +qinghua daxue jiaoyu yanjiu,-1 +qinghua daxue xuebao,0 +qingming,0 +qirt journal,1 +qjm: an international journal of medicine,1 +qme: quantitative marketing and economics,1 +quaderni costituzionali,1 +quaderni d italianistica,1 +"quaderni dellistituto di lingua e letteratura latina, roma",1 +quaderni di archeologia della libia,1 +quaderni di classiconorroena,1 +quaderni di comunità,0 +quaderni di lavoro asit,0 +quaderni di storia,1 +quaderni di studi arabi,1 +quaderni lupiensi di storia e diritto,1 +quaderni petrarcheschi,1 +quaderni storici,1 +quaderni urbinati di cultura classica,2 +quaderns d arquitectura i urbanisme,1 +quaderns d historia de l enginyeria,1 +quaderns de filologia,0 +quaderns de l institut catala d antropologia,1 +quae,0 +quaerendo,1 +quaestio rossica,1 +quaestio: the yearbook of the history of metaphysics,1 +quaestiones disputatae,1 +quaestiones geographicae,1 +quaestiones mathematicae,1 +quaker studies,1 +qualitative and quantitative methods in libraries,1 +qualitative communication research,1 +qualitative health communication,0 +qualitative health research,3 +qualitative inquiry,3 +qualitative market research,1 +qualitative psychology,1 +qualitative psychology nexus,0 +qualitative report,1 +qualitative research,3 +qualitative research in accounting and management,1 +qualitative research in education,1 +qualitative research in financial markets,1 +qualitative research in medicine & healthcare,1 +qualitative research in organizations and management,1 +qualitative research in psychology,2 +"qualitative research in sport, exercise and health",1 +qualitative research journal,1 +qualitative research reports in communication,1 +qualitative social work: research and practice,2 +qualitative sociology,1 +qualitative sociology review,1 +qualitative studies,1 +qualitative theory of dynamical systems,1 +quality and quantity,1 +quality and reliability engineering international,1 +quality and user experience,1 +quality assurance and safety of crops & foods,1 +quality assurance in education,1 +quality assurance journal,1 +quality assurance review,0 +quality education for all,-1 +quality engineering,1 +quality in ageing and older adults,1 +quality in higher education,1 +quality in primary care,0 +quality management in health care,1 +quality management journal,1 +quality of life research,3 +quality press,1 +quality progress,1 +quality technology and quantitative management,1 +"quality, innovation, prosperity",0 +quanqiu chengshi yanjiu,0 +quantitative and qualitative analysis in social sciences,1 +quantitative economics,3 +quantitative finance,2 +quantitative finance letters,1 +quantitative imaging in medicine and surgery,1 +quantitative methods in economics,0 +quantitative plant biology,1 +quantitative science studies,2 +quantum,2 +quantum electronics,1 +quantum information and computation,1 +quantum information processing,1 +quantum machine intelligence,1 +quantum measurements and quantum metrology,1 +quantum science and technology,2 +quantum studies,1 +quantum topology,1 +quartar,1 +quarterly journal of austrian economics,1 +quarterly journal of chinese studies,0 +quarterly journal of economics,3 +quarterly journal of education,0 +quarterly journal of engineering geology and hydrogeology,1 +quarterly journal of experimental psychology,1 +quarterly journal of experimental psychology section b: comparative and physiological psychology,1 +quarterly journal of finance and accounting,1 +quarterly journal of mathematics,1 +quarterly journal of mechanics and applied mathematics,1 +quarterly journal of nuclear medicine and molecular imaging,1 +quarterly journal of political science,2 +quarterly journal of speech,2 +quarterly journal of the royal meteorological society,2 +quarterly of applied mathematics,1 +quarterly review of biology,2 +quarterly review of economics and finance,1 +quarterly review of film and video,1 +quarterly reviews of biophysics,1 +quasar,1 +quasigroups and related systems,1 +quaternaire,1 +quaternary,0 +quaternary environments and humans,-1 +quaternary geochronology,1 +quaternary international,1 +quaternary research,1 +quaternary science advances,1 +quaternary science reviews,3 +quaternary sciences,0 +quebec studies,1 +queen mary journal of intellectual property,1 +queen's university,0 +queens law journal,1 +queens quarterly,0 +queensland review,1 +queeste,1 +quest,1 +quest : issues in contemporary jewish history,1 +questiones medii aevi novae,1 +questions and answers in linguistics,1 +questions de communication,1 +questions liturgiques-studies on liturgy,1 +questions of international law,1 +queueing systems,1 +"qui parle: literature, philosophy, visual arts, history",1 +quiedit,0 +quimica nova,0 +quinnipiac university,0 +quintessence international,1 +quintessence publishing co ltd,0 +quintú quimün,0 +quivirr,0 +qumran chronicle,1 +quodlibet,0 +quêtes littéraires,1 +qvintensen,-1 +"qwerty: rivista interdisciplinare di tecnologia, cultura e formazione",0 +r & d magazine,1 +r&d management,2 +r&e source,0 +r&t. religion & theology,1 +r-economy,1 +ra-revista de arquitectura,0 +raabe,0 +raabe-gesellschaft jahrbuch,1 +raamat õppimisest,1 +rab-rab,0 +rabel journal of comparative and international private law,2 +rabies bulletin europe,0 +race and class,2 +race equality teaching,1 +race ethnicity and education,2 +racine,0 +radcliffe publishing,1 +radiation and environmental biophysics,1 +radiation effects and defects in solids,1 +radiation measurements,1 +radiation oncology,1 +radiation physics and chemistry,1 +radiation protection dosimetry,1 +radiation research,1 +radical criminology,1 +radical history review,1 +radical housing journal,0 +radical musicology,1 +radical orthodoxy,1 +radical pedagogy,1 +radical philosophy,1 +radical philosophy review,1 +radio,0 +radio journal: international studies in broadcast and audio media,1 +radio science,1 +radio science letters,1 +radiocarbon,1 +radiochemistry,0 +radiochimica acta,1 +radioengineering,1 +radiografia,-1 +radiographics,2 +radiography,1 +radiologe,1 +radiologia medica,1 +radiologic clinics of north america,1 +radiologic technology,1 +radiology,3 +radiology : artificial intelligence,1 +radiology : cardiothoracic imaging,1 +radiology and oncology,1 +radiology case reports,0 +radiomaailma,-1 +radiophysics and quantum electronics,1 +radioprotection,1 +radiotherapy and oncology,1 +radovi zavoda za povijesne znanosti hazu u zadru,1 +raduga,-1 +rae,0 +raffles bulletin of zoology,1 +raha-automaattiyhdistys,0 +rahtarit,-1 +rahvusvaheline kaitseuuringute keskus,0 +railway engineering science,1 +rainer hampp verlag,1 +rairo: operations research,1 +rairo: theoretical informatics and applications,1 +rais conference proceedings,0 +raisio tiedottaa,-1 +raisons politiques,1 +raito,-1 +raja- ja merivartiokoulun julkaisut,0 +rajamme vartijat,-1 +rajansiirtäjä,-1 +rajapinta,-1 +rajshahi university law journal,0 +rakennusinsinööri ja -arkkitehti,-1 +rakennuslehti,-1 +rakennussanomat,-1 +rakennustaito,-1 +rakennustekniikka,0 +rakennustieto oy,0 +rakentaja,-1 +rakentajain kalenteri,-1 +rakenteiden mekaniikka,1 +ram-verlag,0 +ramanujan journal,1 +ramanujan mathematical society,1 +rambam: tidsskrift for joedisk kultur og forskning,1 +ramus virens,-1 +ramus: critical studies in greek and roman literature,2 +ranam recherches anglaises et nord-americaines,1 +rand corporation,1 +rand journal of economics,3 +random house,0 +random matrices : theory and applications,1 +random operators and stochastic equations,1 +random structures and algorithms,2 +range management and agroforestry,0 +rangeland ecology and management,1 +rangeland journal,1 +rangifer,1 +rannikkoseutu,-1 +rannikon puolustaja,0 +ranstakka,-1 +rantalakeus,-1 +rantapohja,-1 +rantasalmen lehti,-1 +rantasalmen ympäristökasvatusinstituutti,0 +rapid communications in mass spectrometry,1 +rapid prototyping journal,1 +raportit,-1 +raportit ja selvitykset,-1 +raportteja,-1 +raportteja,0 +raportteja ja selvityksiä,-1 +raportteja ja työpapereita (koulutuksen tutkimuslaitos),0 +raportti,-1 +raportti (tampereen teknillinen yliopisto. rakennustuotanto ja -talous),0 +raportti (terveyden ja hyvinvoinnin laitos),0 +rapport,-1 +rapport från fakulteten för pedagogik och välfärdsstudier,-1 +rapporter,-1 +rare metal materials and engineering,1 +rare metals,1 +raritan: a quarterly review,1 +ras techniques and instruments,1 +rasal lingüística,0 +rasananda barik,0 +rask,1 +rasprave instituta za hrvatski jezik i jezikoslovlje,1 +rassegna della letteratura italiana,1 +rassegna europea di letteratura italiana,1 +rassegna italiana di sociologia,1 +rassegna storica del risorgimento,1 +rassegna storica toscana,0 +rassegna: edizione bilingue,1 +raster förlag,1 +rastitelʹnye resursy,0 +ratio,2 +ratio juris,3 +ratio.ru,0 +rationality and society,1 +ratkes,-1 +rauhanpuolustaja,-1 +rauhanturvaaja,-1 +raumalainen,-1 +raumforschung und raumordnung,1 +rautatietekniikka,-1 +ravensbourne publications,0 +ravitsemusasiantuntija,-1 +ravitsemuskatsaus,-1 +rawat,1 +razon y palabra: revista electronica en america latina especializada en topicos de comunicacion,1 +razprave in gradivo,1 +razprave: dissertationes,1 +rb grafica,0 +rbk,-1 +rchd: creación y pensamiento,1 +rcra international workshop on experimental evaluation of algorithms for solving problems with combinatorial explosion,0 +re-thinking technology in museums,0 +re-visiones,1 +re:think,0 +"reabilitacijos mokslai : slauga, kineziterapija, ergoterapija",0 +reaction chemistry & engineering,1 +reaction kinetics mechanisms and catalysis,1 +reactions weekly,1 +reactive and functional polymers,1 +read,-1 +readerly/writerly texts,1 +reading and writing,2 +reading and writing quarterly,1 +reading in a foreign language,1 +reading matrix: an international online journal,1 +reading medieval studies,1 +reading online,1 +reading psychology,1 +reading religion,0 +reading research quarterly,3 +reading room: a journal of art and culture,1 +reading teacher,1 +readings book,0 +reaktion books,1 +real academia de ciencias,1 +real analysis exchange,1 +real estate economics,2 +real estate taxation,1 +real instituto elcano,0 +real-time systems,2 +reales sitios,1 +recall,3 +recent advances in anti-infective drug discovery,0 +recent advances in computer science and communications,1 +recent advances in dna & gene sequencing,1 +recent advances in natural language processing,1 +recent patents on anti-cancer drug discovery,1 +recent patents on cardiovascular drug discovery,1 +recent patents on nanotechnology,0 +recent progress in materials,0 +recent progress in nutrition,0 +recent researches in american music,0 +recenti progressi in medicina,0 +recercare: rivista per lo studio e la pratica della musica antica,1 +recherche et applications en marketing,1 +recherche et pratiques pédagogiques en langues de spécialité,0 +recherches augustiniennes et patristiques,1 +recherches de science religieuse,1 +recherches de theologie et philosophie medievales,2 +recherches economiques de louvain-louvain economic review,1 +recherches en communication,0 +recherches en didactique des langues et des cultures,1 +recherches en didactique des mathematiques,1 +recherches en langue francaise,0 +recherches en éducation,0 +recherches et rencontres,0 +recherches germaniques,1 +recherches husserliennes,1 +recherches linguistiques,1 +recherches linguistiques de vincennes,1 +recherches sociologiques et anthropologiques,0 +recherches sur diderot et sur lencyclopedie,1 +recherches sur la philosophie et le langage,1 +recht der internationalen wirtschaft,1 +recht der transportwirtschaft,0 +recht und psychiatrie,1 +rechtsgeschichte,2 +rechtsmedizin,1 +rechtstheorie,2 +recit,0 +reclam verlag,1 +reconceptualizing educational research methodology,1 +record of conference papers : petroleum and chemical industry conference,1 +records management journal,2 +records of natural products,1 +records of the australian museum,1 +"records of the ieee international workshop on memory technology, design, and testing",1 +records of the western australian museum,0 +recreational mathematics magazine,1 +recueil des cours - académie de droit international de la haye,1 +recycling,0 +red dot,1 +red española de filosofía - laboratorio filosófico de la pandemia y el antropoceno,0 +red globe press,0 +red sea press,1 +red. revista de educación a distancia,0 +redescriptions,1 +redia-giornale di zoologia,0 +redimat,1 +redleaf press,0 +redox biology,2 +redox report,1 +refereed proceedings : tcc worldwide online conference,0 +reference and user services quarterly,1 +reference librarian,1 +reference services review,1 +referencia pedagógica,0 +reflecting education,1 +reflections on english language teaching,0 +reflections: the sol journal,1 +reflective practice,1 +reformation and renaissance review,1 +refractories and industrial ceramics,1 +refractory,1 +refugee survey quarterly,1 +refugee watch : a south asian journal on forced migration,0 +refugees and human rights,1 +regard sur l´est,0 +regenerative biomaterials,1 +regenerative medicine,1 +regio,1 +region,1 +region: ekonomika i sotsiologija,0 +regional and federal studies,1 +regional anesthesia and pain medicine,2 +regional environmental change,1 +regional science and urban economics,2 +regional science policy & practice,1 +regional studies,3 +regional studies in marine science,1 +"regional studies, regional science",1 +regions and cohesion,1 +regionális kutatások intézete,0 +register studies,1 +regnum,0 +regnum books,1 +regular and chaotic dynamics,1 +regulation and governance,3 +regulatory toxicology and pharmacology,1 +rehabilitación,0 +rehabilitation,1 +rehabilitation counseling bulletin,1 +rehabilitation nursing,1 +rehabilitation psychology,1 +rehabilitation research and practice,0 +rehva journal,0 +reichert verlag,1 +reihe forschungen zum ostseeraum,1 +reihe germanistische linguistik,1 +reihe geschichte,1 +reihe politikwissenschaft,0 +reilua energiaa,-1 +reimagining ireland,1 +reinardus,1 +reinforced plastics,1 +reinhardt,1 +reisimaailm,-1 +reisjärvi-lehti,-1 +rejuvenation research,1 +relaciones internacionales,1 +relacult,0 +relating systems thinking and design ... symposium proceedings,0 +relational social work,1 +relations,1 +relations industrielles-industrial relations,1 +relations internationales,1 +relay journal,0 +relc journal,2 +relegere,1 +reliability engineering and system safety,3 +reliable computing,1 +relief: revue electronique de litterature francaise,1 +religio: revue pro religionistiku,1 +religiographies,1 +religiologiques: sciences humaines et religion,1 +religion,3 +religion & education,1 +religion & gesellschaft in ost und west,-1 +religion and american culture: a journal of interpretation,1 +religion and gender,1 +religion and human rights,1 +religion and literature,2 +religion and reason,1 +religion and society,1 +religion and society,2 +religion and society in central and eastern europe,0 +religion and the arts,1 +religion and the social order,1 +religion compass,1 +"religion, brain and behavior",2 +"religion, staat, gesellschaft",1 +"religion, state and society",2 +religions,0 +religions in the graeco-roman world,2 +religionspädagogische beiträge,1 +religionsvetenskapliga skrifter,1 +religionsvidenskabeligt tidsskrift,1 +religious education,2 +religious education journal of australia,0 +religious humanism,0 +religious studies,2 +religious studies and theology,1 +religious studies review,1 +religiski-filozofiski raksti,0 +religiâ cerkovʹ obŝestvo,0 +relp: a journal of renewable energy law and policy,1 +rem: research on education and media,0 +rem: revista escola de minas,1 +remark : revista brasileira de marketing,0 +remedial and special education,2 +remediation journal,1 +remetallica,0 +remittances review,0 +remote sensing,0 +remote sensing applications,1 +remote sensing in ecology and conservation,1 +remote sensing letters,1 +remote sensing of environment,3 +renaissance and reformation,1 +renaissance drama,1 +renaissance forum: an electronic journal of early modern literary and historical studies,1 +renaissance papers,1 +renaissance quarterly,2 +renaissance studies: journal of the society for renaissance studies,3 +renal failure,1 +renascence: essays on values in literature,1 +rencontres de moriond,0 +rendiconti del circolo matematico di palermo,1 +rendiconti del seminario matematico,1 +rendiconti del seminario matematico della universita di padova,1 +rendiconti dell'istituto di matematica dell'universita di trieste,1 +rendiconti della accademia di archeologia lettere e belle arti,1 +rendiconti lincei: matematica e applicazioni,1 +renewable agriculture and food systems,1 +renewable and sustainable energy,0 +renewable and sustainable energy reviews,2 +renewable and sustainable energy transition,1 +renewable energy,2 +renewable energy & power quality journal,1 +renewable energy focus,1 +"renewables : wind, water, and solar",0 +"rengas-, varaosa- ja korjaamouutiset",-1 +rengastajan vuosikirja,0 +renhetsteknik,-1 +renmin jiaoyu,0 +renome,0 +renote,0 +rent,0 +renvall-instituutin julkaisu,0 +replay,1 +replaying japan,1 +replik,-1 +replika,0 +report,-1 +report,0 +report no,-1 +report of the department of antiquities of cyprus,1 +report series in aerosol science,0 +report series in astronomy,-1 +reports from the department of philosophy,-1 +reports from the kevo subarctic research station,-1 +reports from the school of business and economics,-1 +reports in advances of physical sciences,1 +reports in mathematics,0 +reports of biochemistry and molecular biology,0 +reports of practical oncology and radiotherapy,0 +reports of the european society for socially embedded technologies,0 +reports on mathematical logic,1 +reports on mathematical physics,1 +reports on progress in physics,3 +reports on scientific computing and optimization,-1 +representation,2 +representation theory,1 +representations,3 +reproduction,1 +reproduction & fertility,0 +reproduction fertility and development,1 +reproduction in domestic animals,1 +reproductive biology,1 +reproductive biology and endocrinology,1 +reproductive biomedicine & society online,1 +reproductive biomedicine online,1 +reproductive health,1 +reproductive health matters,1 +reproductive medicine and biology,1 +reproductive sciences,1 +reproductive toxicology,1 +repronor,0 +republic of letters,1 +repères-dorif,1 +requirements engineering,2 +reric international energy,0 +res cogitans,1 +res diachronicae virtual,1 +res futurae,-1 +res humanitariae,1 +res medica: journal of the royal medical society,0 +res militaris,0 +res musica,1 +res philosophica,1 +res publica,0 +"res publica: a journal of moral, legal and social philosophy",2 +res terrae,-1 +res: anthropology and aesthetics,1 +research,0 +research,1 +research & politics,2 +research (national institute for health and welfare),0 +research about ecec,-1 +research and practice for persons with severe disabilities,1 +research and practice in technology enhanced learning,1 +research and practice in thrombosis and haemostasis,1 +research and publishing institute for security and defence studies at university of public and individual security apeiron in krakow,1 +research and reports in neonatology,0 +research and reports in urology,0 +research and reports of medicine,0 +research and review journal of nondestructive testing,0 +research and reviews : journal of material sciences,0 +research and science today supplement,0 +research and theory for nursing practice: an international journal,1 +research communications in molecular pathology and pharmacology,1 +"research conference on communication, information and internet policy",0 +research cultures,0 +research data journal for the humanities and social sciences,1 +research dialogue in learning and instruction,1 +research directions : biotechnology design,0 +research ethics review,1 +research evaluation,2 +research ideas and outcomes,0 +research in accounting regulation,1 +research in african literatures,2 +research in arts and education,1 +research in astronomy and astrophysics,1 +research in autism spectrum disorders,1 +research in comparative and international education,1 +research in consumer behavior,0 +research in corpus linguistics,1 +research in dance education,3 +research in developmental disabilities,1 +research in drama education: the journal of applied theatre and performance,3 +research in economic anthropology,2 +research in economic history,0 +research in economics,1 +research in economics and business: central and eastern europe,0 +research in education,1 +research in education and learning innovation archives,0 +research in educational administration & leadership,1 +research in endocrinology,0 +research in engineering design,3 +research in english language pedagogy,1 +research in experimental economics,1 +research in finance,0 +research in gerontological nursing,0 +research in higher education,2 +research in hospitality management,0 +research in human capital and development,1 +research in human development,1 +research in immunology,0 +research in international business and finance,1 +research in labor economics,1 +research in language,1 +research in law and economics,1 +research in learning technology,1 +research in maritime history,1 +research in mathematics,1 +research in mathematics education,1 +research in microbiology,1 +research in middle east economics,1 +research in neurology,0 +research in neuroscience,0 +research in nondestructive evaluation,1 +research in number theory,1 +research in nursing and health,2 +research in organizational behavior,1 +research in personnel and human resources management,1 +research in phenomenology,1 +research in political economy,1 +research in post-compulsory education,1 +research in public policy analysis and management,1 +research in rural sociology and development,1 +research in science & technological education,1 +research in science education,2 +research in social and administrative pharmacy,2 +"research in social movements, conflicts and change",1 +research in social stratification and mobility,2 +research in sports medicine,1 +research in the history of economic thought and methodology,1 +research in the mathematical sciences,1 +research in the social scientific study of religion,2 +research in the sociology of organizations,1 +research in the teaching of english,2 +research in transportation business & management,1 +research in transportation economics,1 +research in veterinary science,1 +research in world economy,0 +research institute for a tobacco free society (riftfs),0 +research institute for humanity and nature,0 +research institute for linguistics of the hungarian academy of sciences,0 +research institute of sweden (rise),0 +research integrity and peer review,1 +research involvement and engagement,1 +research journal in organisational psychology and educational studies,0 +"research journal of applied science, engineering and technology",0 +research journal of biotechnology,0 +research journal of chemistry and environment,0 +research journal of microbiology,0 +"research journal of pharmaceutical, biological and chemical sciences",0 +research journal of textile and apparel,1 +research letters in communications,1 +research letters in materials science,1 +research methods in applied linguistics,0 +research notes of the aas,0 +research on ageing and social policy,1 +research on aging,1 +research on biomedical engineering,0 +research on chemical intermediates,1 +research on child and adolescent psychopathology,2 +research on children and social interaction,1 +research on crops,1 +research on emotion in organizations,1 +research on engineering structures and materials,1 +research on language and social interaction,3 +research on social work practice,2 +research on steiner education,0 +"research on technological innovation, management and policy",1 +research on world agricultural economy,0 +research outreach,-1 +research papers in economic sociology,0 +research papers in education,1 +research papers in language teaching and learning,0 +research policy,3 +research policy x,0 +research publishing services,1 +research quarterly for exercise and sport,1 +research report,-1 +research report : department of chemistry,-1 +research report : winter navigation research board,-1 +research reports,-1 +research signpost,1 +research strategies,1 +research studies in music education,3 +"research, society and development",0 +research-publishing.net,0 +research-technology management,1 +researching and teaching chinese as a foreign language,0 +reseaux,1 +reseaux: french journal of communication,1 +reseptio : kirkon ulkoasiain osaston teologisten asiain tiedotuslehti,0 +residential treatment for children and youth,1 +resilience,1 +"resilience : international policies, practices and discourses",1 +resonans,-1 +resource,-1 +resource and energy economics,1 +resource development and market,0 +resource ets,0 +resource geology,1 +resources,0 +resources and technology,0 +resources conservation and recycling,2 +resources for american literary study,1 +resources for feminist research,1 +resources policy,1 +"resources, conservation & recycling advances",1 +"resources, environment and sustainability",1 +respectus philologicus,1 +respiration,1 +respiratory care,1 +respiratory medicine,1 +respiratory medicine and research,1 +respiratory medicine cme,1 +respiratory medicine x,1 +respiratory physiology and neurobiology,1 +respiratory research,2 +respirology,2 +respons,0 +respublikanskaya tipografiya krasny`j oktyabr`,0 +restaurator: international journal for the preservation of library and archival material,1 +restauratorenblatter,1 +restauro archeologico,1 +"restauro: forum fur restauratoren, konservatoren und denkmalpfleger",1 +restitution law review,1 +restoration ecology,2 +"restoration: studies in english literary culture, 1660-1700",1 +restorative neurology and neuroscience,1 +results in applied mathematics,1 +results in chemistry,1 +results in engineering,0 +results in materials,0 +results in mathematics,1 +results in optics,1 +results in physics,1 +resuscitation,3 +resuscitation plus,1 +retfaerd: nordisk juridisk tidsskrift,2 +rethinking ecology,1 +rethinking history,3 +rethinking marxism,1 +rethinking mission,0 +reti medievali rivista,1 +retina,-1 +retina: the journal of retinal and vitreous diseases,2 +retinal cases & brief reports,1 +retorik magasinet,-1 +retorika,0 +retorika a,0 +retos,0 +retrovirology,1 +reumahoitajat,-1 +revanssi,-1 +review,1 +review in business and economics,0 +review journal of autism and developmental disorders,1 +review of accounting and finance,1 +review of accounting studies,3 +review of african political economy,1 +review of agricultural economics,1 +"review of agricultural, food and environmental studies",0 +review of aromatic and medicinal plants,1 +review of asset pricing studies,2 +review of austrian economics,1 +review of behavioral economics,1 +review of behavioral finance,1 +review of biblical literature,1 +review of black political economy,1 +review of business & finance case studies,0 +review of central and east european law,2 +review of cognitive linguistics,2 +review of communication,1 +review of communication research,1 +review of contemporary business research,0 +review of corporate finance,1 +review of corporate finance studies,1 +review of derivatives research,1 +review of development economics,1 +review of economic and business studies,0 +review of economic design,1 +review of economic dynamics,3 +review of economic studies,3 +review of economic studies and research virgil madgearu,0 +review of economics,1 +review of economics & finance,0 +review of economics and statistics,3 +review of economics of the household,1 +review of ecumenical studies,1 +review of education,1 +"review of education, pedagogy, and cultural studies",1 +review of educational research,3 +review of english studies,2 +review of environmental economics and policy,1 +review of european administrative law,1 +review of european studies,0 +"review of european, comparative & international environmental law",2 +review of evolutionary political economy,1 +review of faith and international affairs,1 +review of finance,3 +review of financial economics,1 +review of financial studies,3 +review of general psychology,1 +review of higher education,2 +review of income and wealth,2 +review of industrial organization,1 +review of innovation and competitiveness,0 +review of international affairs,0 +review of international business and strategy,1 +review of international economics,1 +review of international geographical education online,1 +review of international organizations,3 +review of international political economy,3 +review of international studies,2 +review of keynesian economics,1 +review of knowledge management,0 +review of korean studies,1 +review of law and economics,1 +review of management and economic engineering,0 +review of managerial science,1 +review of market integration,1 +review of metaphysics,2 +review of middle east economics and finance,1 +review of network economics,1 +review of pacific basin financial markets and policies,1 +review of palaeobotany and palynology,1 +review of philosophy and psychology,1 +review of policy research,1 +review of political economy,1 +review of politics,2 +review of public administration and management,0 +review of public personnel administration,1 +review of quantitative finance and accounting,1 +review of rabbinic judaism,1 +review of radical political economics,1 +review of religious research,3 +review of research in education,2 +review of scientific instruments,1 +review of scottish culture,1 +review of social economy,1 +review of sociology of the hungarian sociological association,0 +review of symbolic logic,1 +review of the history of economic thought and methodology,0 +review of urban and regional development studies,1 +review of world economics,1 +review on agriculture and rural development,0 +review-literature and arts of the americas,1 +reviews in american history,0 +reviews in analytical chemistry,1 +reviews in anthropology,1 +reviews in aquaculture,2 +reviews in cardiovascular medicine,1 +reviews in chemical engineering,1 +reviews in clinical gerontology,1 +reviews in computational chemistry,1 +reviews in conservation,1 +reviews in economic geology,1 +reviews in endocrine and metabolic disorders,1 +reviews in environmental science and bio-technology,1 +reviews in fish biology and fisheries,2 +reviews in fisheries science & aquaculture,1 +reviews in fluorescence,0 +reviews in gastroenterological disorders,1 +reviews in inorganic chemistry,1 +reviews in mathematical physics,1 +reviews in medical microbiology,1 +reviews in medical virology,1 +reviews in mineralogy and geochemistry,2 +reviews in physics,1 +"reviews in science, religion and theology",0 +reviews in the neurosciences,1 +reviews of accelerator science and technology,0 +reviews of adhesion and adhesives,0 +reviews of environmental contamination and toxicology,1 +reviews of geophysics,3 +reviews of modern physics,3 +reviews of physiology biochemistry and pharmacology,1 +reviews on advanced materials science,1 +reviews on environmental health,1 +reviews on recent clinical trials,1 +revija za kriminalistiko in kriminologijo,1 +revija za socijalnu politiku,1 +revija za sociologiju,1 +revista 180,0 +revista abya yala,1 +revista alicantina de estudios ingleses,1 +revista amazonía investiga,0 +revista andina,1 +revista argentina de clinica psicologica,1 +revista arvore,1 +revista bioética,-1 +revista brasileira de botânica,0 +revista brasileira de ciencia do solo,1 +revista brasileira de cirurgia cardiovascular,1 +revista brasileira de ciências ambientais,1 +revista brasileira de direito processual penal,1 +revista brasileira de educação ambiental,0 +revista brasileira de enfermagem,0 +revista brasileira de ensino de fisica,0 +revista brasileira de entomologia,1 +revista brasileira de epidemiologia,0 +revista brasileira de farmacognosia,1 +revista brasileira de fruticultura,1 +revista brasileira de física médica,0 +revista brasileira de historia,2 +revista brasileira de informática na educação,0 +revista brasileira de lingüística aplicada,1 +revista brasileira de literatura comparada,1 +revista brasileira de medicina do esporte,0 +revista brasileira de medicina veterinaria,1 +revista brasileira de oftalmologia,1 +revista brasileira de paleontologia,1 +revista brasileira de parasitologia veterinaria,1 +revista brasileira de pesquisa (auto)biográfica,0 +revista brasileira de politica internacional,1 +revista brasileira de politicas publicas,1 +revista brasileira de psiquiatria,1 +revista brasileira de reumatologia,0 +revista brasileira de zootecnia-brazilian journal of animal science,1 +revista bíblica,1 +revista caatinga,1 +revista canadiense de estudios hispanicos,1 +revista canaria de estudios ingleses,1 +revista catalana d'ornitologia,0 +revista catalana de teologia,1 +revista chilena de cirugia,1 +revista chilena de historia natural,1 +revista chilena de literatura,1 +revista cidob d'afers internacionals,1 +revista ciencia agronomica,1 +revista ciencias de la salud,0 +revista cientifica-facultad de ciencias veterinarias,1 +revista científica de ingeniería energética,0 +revista científica general josé maría córdova,1 +revista clinica espanola,1 +"revista clínica de periodoncia, implantología y rehabilitación oral",0 +revista colombiana de antropologia,1 +revista colombiana de ciencias pecuarias,1 +revista colombiana de entomologia,1 +revista colombiana de estadistica,1 +revista colombiana de matematicas,0 +revista colombiana de quimica,0 +revista complutense de educación,0 +revista complutense de historia de america,1 +revista conhecimento online,1 +revista crítica de ciências sociais,1 +revista d,1 +revista d`estudis autonòmics i federals,1 +revista da associação médica brasileira,0 +revista da escola de enfermagem da usp,1 +revista da faculdade de direito da universidade federal de minas gerais.,0 +revista da faeeba,0 +revista da universidade de aveiro: letras,1 +revista de administracion publica,1 +revista de administração imed,0 +revista de administração pública,1 +revista de antropologia social,1 +revista de antropología,1 +revista de antropología experimental,1 +revista de aracnologia,0 +"revista de arheologie, antropologie şi studii interdisciplinare",1 +revista de artes marciales asiáticas,0 +revista de biologia marina y oceanografia,1 +revista de biologia tropical,1 +revista de calidad asistencial,1 +revista de cercetare si interventie sociala,1 +revista de chimie,1 +revista de ciencia politica,1 +revista de ciencias humanas,1 +revista de ciencias sociales,1 +revista de ciências militares,1 +revista de comunicação dialógica,1 +revista de contabilidad,1 +revista de critica literaria latinoamericana,1 +revista de demografia historica,1 +revista de derecho comunitario europeo,1 +revista de derecho concursal y paraconcursal,-1 +revista de derecho constitucional europeo,1 +revista de derecho de sociedades,0 +revista de derecho del estado,1 +revista de derecho penal y criminologia,0 +revista de derecho privado,0 +revista de derecho y nuevas tecnologias,0 +"revista de design, tecnologia e sociedade",1 +revista de direito internacional,1 +revista de economia del rosario,0 +revista de educacion,0 +revista de educacion de las ciencias,0 +revista de educación y derecho,0 +revista de educação musical,-1 +"revista de ensino em artes, moda e design",1 +revista de estudios andaluces,0 +revista de estudios clasicos,1 +revista de estudios colombianos,1 +revista de estudios hispanicos,1 +revista de estudios politicos,1 +revista de estudios sociales,1 +revista de estudos anglo-portugueses,1 +revista de estudos da linguagem,1 +revista de etnografie si folclor,1 +revista de filologia espanola,2 +revista de filologia romanica,1 +revista de filologia y linguistica,1 +revista de filología de la universidad de la laguna,1 +revista de filosofia,1 +revista de filosofia aurora,1 +revista de geografia norte grande,1 +revista de hispanismo filosofico,1 +revista de historia actual,1 +revista de historia da sociedade e da cultura,1 +revista de historia das ideias,1 +revista de historia de la lengua española,1 +revista de historia economica,1 +revista de historia economica e social,1 +revista de historia industrial,0 +revista de historia jeronimo zurita,1 +revista de historia moderna,1 +revista de indias,1 +"revista de internet, derecho y política",1 +revista de interpretación bíblica latinoamericana,1 +revista de investigacion clinica,1 +revista de investigaciones sobre fronteras,-1 +revista de investigación en educación,0 +revista de la academia puertorriqueña de jurisprudencia y legislación,0 +revista de la construccion,1 +revista de la facultad de agronomia de la universidad del zulia,1 +revista de la facultad de ciencias agrarias,1 +revista de la facultad de derecho de mexico,1 +revista de la real academia de ciencias exactas fisicas y naturales serie a: matematicas,1 +revista de la union matematica argentina,1 +revista de letras,1 +revista de lexicografia,1 +revista de linguistica y lenguas aplicadas,1 +revista de literatura,1 +revista de llengua i dret,1 +"revista de logopedia, foniatria y audiologia",1 +revista de medicina y cine,1 +revista de metalurgia,1 +revista de musicologia,1 +revista de neurologia,1 +revista de nutricao-brazilian journal of nutrition,1 +revista de occidente,0 +revista de paz y conflictos,1 +revista de psicodidactica,0 +revista de psicologia del deporte,0 +revista de psicologia social,1 +revista de psicología del trabajo y de las organizaciones,0 +revista de psicopatología y salud mental del niño y del adolescente,0 +revista de psicoterapia,0 +revista de psiquiatria y salud mental,0 +revista de salud animal,0 +revista de saude publica,1 +revista de studii financiare,0 +revista de teledetección,0 +revista de teoria da história,1 +revista de toxicología,0 +revista de turism,0 +revista del centro de investigación del flamenco telethusa,1 +revista del cesla,1 +revista del clad reforma y democracia,1 +revista del convenio andres bello,1 +revista digital de políticas lingüísticas,0 +revista direito mackenzie,0 +revista diálogos,0 +revista diálogos,1 +revista do caap,0 +revista do instituto de medicina tropical de sao paulo,0 +revista economica,0 +revista ecumenica sibiu,0 +revista electronica complutense de investigacion en educacion musical,1 +revista electrónica de lingüística aplicada,0 +revista espanola de antropologia americana,1 +revista espanola de cardiologia,1 +revista espanola de derecho constitucional,1 +revista espanola de documentacion cientifica,1 +revista espanola de enfermedades digestivas,1 +revista espanola de investigaciones sociologicas,1 +revista espanola de linguistica,2 +revista espanola de linguistica aplicada,1 +revista espanola de medicina nuclear e imagen molecular,1 +revista espanola de nutricion comunitaria-spanish journal of community nutrition,0 +revista espanola de pedagogia,0 +revista espanola de teologia,1 +revista española de cirugía oral y maxilofacial,1 +revista española de financiación y contabilidad,1 +revista española de antropología física,0 +revista española de cardiología,0 +revista española de educación comparada,1 +revista española de empresas y derechos humanos,1 +revista española de filosofía medieval,1 +revista española de geriatría y gerontología,1 +revista española de salud pública,0 +revista española de sociología,1 +revista estudio,1 +revista estudios,1 +revista europea de dirección y economía de la empresa,1 +revista facultad nacional de agronomía medellín,1 +revista filipina,0 +revista fitotecnia mexicana,1 +revista forense,0 +revista guillermo de ockham,1 +revista ibero-americana de estudos em educacao,0 +revista iberoamericana,2 +revista iberoamericana de ciencias de la actividad física y el deporte,0 +revista ingenieria de construccion,0 +revista internacional de ciencias del deporte,0 +revista internacional de contaminacion ambiental,1 +revista internacional de filosofia politica,1 +revista internacional de linguistica iberoamericana,2 +revista internacional de medicina y ciencias de la actividad fisica y del deporte,1 +revista internacional de metodos numericos para calculo y diseno en ingenieria,1 +revista internacional de organizaciones,0 +revista internacional de sociologia,1 +revista internacional dhumanitats,0 +revista internacional em lingua portuguesa,1 +revista istorica,1 +revista latina de comunicación social,1 +revista latino-americana de enfermagem,0 +revista latinoamericana de educación inclusiva,1 +revista latinoamericana de investigacion en matematica educativa-relime,0 +revista latinoamericana de psicologia,0 +revista latinoamericana de psicopatologia fundamental,0 +revista lusitana,1 +revista lusófona de educação,0 +revista matematica complutense,1 +revista matematica iberoamericana,2 +revista medica de chile,1 +revista medico-chirurgicala a societatii de medici si naturalisti din iasi,0 +revista mexicana de astronomia y astrofisica,1 +revista mexicana de biodiversidad,1 +revista mexicana de ciencias geologicas,1 +revista mexicana de ciencias pecuarias,1 +revista mexicana de fisica e,1 +revista mexicana de ingenieria quimica,1 +revista mexicana de psicologia,0 +revista musical chilena,1 +revista mvz cordoba,1 +revista nebrija,1 +revista nera,0 +revista odeere,0 +revista odisséia,0 +revista panamericana de salud publica-pan american journal of public health,1 +revista peruana de biologia,0 +revista portuguesa de arqueologia,1 +revista portuguesa de cardiologia,0 +revista portuguesa de enfermagem de reabilitação,0 +revista portuguesa de engenharia de estruturas,0 +revista portuguesa de filologia,1 +revista portuguesa de filosofia,1 +revista portuguesa de historia,1 +revista portuguesa de marketing,1 +revista portuguesa de musicologia,1 +"revista proyecto, progreso, arquitectura",1 +revista prâksis,1 +revista publicando,0 +revista romana de bioetica,1 +revista romana de jurnalism si comunicare,1 +revista romana de medicina de laborator,0 +revista româna de sociologie,1 +revista românească pentru educaţie multidimensională,0 +revista română de materiale,0 +revista română de studii baltice şi nordice,1 +revista signos,0 +revista stultifera,0 +revista teknokultura,1 +revista tempos e espaços em educação,1 +revista teologica,1 +revista tradumàtica,0 +revista turismo & desenvolvimento,1 +revista unisci,1 +revista vagalumear,0 +revista vasca de gestión de personas y organizaciones públicas,1 +revista virtual de estudos da linguagem: revel,1 +revista virtual redesma,0 +revista x,0 +revistia,0 +revolutionary russia,1 +revsalus,0 +revstat statistical journal,1 +revue africaine de theologie,1 +revue archeologique,1 +revue archeologique de l'est,1 +revue archeologique de l'ouest,1 +revue archeologique de narbonnaise,1 +revue archeologique de picardie,1 +revue archeologique du centre de la france,1 +revue belge d'archeologie et d'histoire de l'art,1 +revue belge de droit international,1 +revue belge de musicologie,1 +revue belge de philologie et d'histoire,1 +revue benedictine,1 +revue biblique,2 +revue d'archeometrie,1 +revue d'assyriologie et d'archeologie orientale,1 +revue d'ecologie: la terre et la vie,1 +revue d'economie politique,1 +revue d'epidemiologie et de sante publique,1 +revue d'ethique et de theologie morale,1 +revue d'etudes augustiniennes et patristiques,1 +revue d'histoire contemporaine de l'afrique,1 +revue d'histoire de l amerique francaise,1 +revue d'histoire de l'eglise de france,1 +revue d'histoire de la pharmacie,1 +revue d'histoire des mathematiques,1 +revue d'histoire des sciences,1 +revue d'histoire des sciences humaines,1 +revue d'histoire des textes,2 +revue d'histoire diplomatique,1 +revue d'histoire du protestantisme,0 +revue d'histoire du theatre,1 +revue d'histoire du xixe siecle,1 +revue d'histoire ecclesiastique,1 +revue d'histoire litteraire de la france,3 +revue d'histoire moderne et contemporaine,2 +revue d'histoire nordique,1 +revue d'études autochtones,1 +revue d'études comparatives est-ouest,0 +revue d'études tibétaines,1 +revue de chirurgie orthopédique et traumatologique,1 +revue de droit canonique,1 +revue de droit comparé du travail et de la sécurité sociale,1 +revue de geographie alpine,1 +revue de l'art,2 +revue de l'entrepreneuriat,1 +revue de l'histoire des religions,3 +revue de l'université de moncton,0 +revue de la pratique avancée,-1 +revue de la régulation,1 +revue de linguistique latine du centre alfred ernout,1 +revue de linguistique romane,1 +revue de litterature comparee,2 +revue de l´ofce,1 +revue de l´union européenne,0 +revue de medecine interne,1 +revue de metallurgie: cahiers d'informations techniques,1 +revue de metaphysique et de morale,1 +revue de musicologie,2 +revue de philologie de litterature et d histoire anciennes,3 +revue de philosophie ancienne,1 +revue de qumran,1 +revue de semantique et pragmatique,1 +revue de synthese,1 +revue de theologie et de philosophie,1 +revue degyptologie,1 +revue des affaires européennes,0 +revue des etudes anciennes,2 +revue des etudes armeniennes,1 +revue des etudes byzantines,2 +revue des etudes grecques,1 +revue des etudes italiennes,1 +revue des etudes juives,1 +revue des etudes latines,2 +revue des etudes slaves,1 +revue des langues romanes,1 +revue des lettres modernes : albert camus,1 +revue des litteratures de l'union europeenne,1 +revue des maladies respiratoires,1 +revue des musees de france: revue du louvre,1 +revue des nouvelles technologies de l'information,0 +revue des sciences philosophiques et theologiques,1 +revue des sciences religieuses,1 +revue du droit public et de la science politique en france et à létranger,1 +revue du monde musulman et de la mediterranee,1 +revue du nord,1 +revue du nord: archeologie,1 +revue du praticien,1 +revue du rhumatisme,0 +revue d´économie financière,1 +revue d´études françaises,0 +revue d’histoire et de philosophie religieuses,1 +revue economique,1 +revue europeenne formation professionnelle,1 +revue européenne des migrations internationales,1 +revue forestière française,0 +revue francaise d'administration publique,1 +revue francaise d'allergologie et dimmunologie clinique,1 +revue francaise d'etudes americaines,1 +revue francaise d'histoire du livre,1 +revue francaise de droit administratif,1 +revue francaise de droit constitutionnel,1 +revue francaise de linguistique appliquee,1 +revue francaise de psychanalyse,1 +revue francaise de science politique,2 +revue francaise de sociologie,2 +revue francophone des sciences de l'information et de la communication,1 +revue française d'histoire économique,0 +revue française de gestion,1 +revue française de pédagogie,1 +revue française de socio-économie,1 +revue historique,2 +revue historique de droit francais et etranger,1 +revue international de droit compare,2 +revue international du crires: innover dans la tradition de vygotsky,1 +revue internationale d'histoire militaire,1 +revue internationale de droit economique,1 +revue internationale de droit pénal,1 +revue internationale de philosophie,2 +revue internationale de politique comparée,1 +revue internationale de psychologie sociale-international review of socialpsychology,1 +revue internationale de pédagogie de l'enseignement supérieur,0 +revue internationale deducation de sevres,0 +revue internationale des droits de l'antiquite,1 +revue internationale des études du développement,1 +revue internationale des sciences administratives,0 +revue internationale des technologies en pédagogie universitaire,1 +revue japonaise de didactique du francais,0 +revue mabillon: revue internationale d'histoire et de litterature religieuses,1 +revue neurologique,1 +revue nordique des études francophones,1 +revue numismatique,1 +revue organisations et territoires,0 +revue parole,1 +revue philosophique de la france et de l'etranger,1 +revue philosophique de louvain,1 +revue quetelet : quetelet journal,0 +revue romane,3 +revue roumaine de chimie,0 +revue roumaine de linguistique,1 +revue roumaine de mathématiques pures et appliquées,1 +revue roumaine de philosophie,1 +revue roumaine de psychanalyse,0 +revue roumaine des sciences techniques-serie electrotechnique et energetique,0 +revue scientifique et technique: office international des epizooties,1 +revue suisse de zoologie,1 +revue theologique de louvain,1 +revue thomiste,1 +revue théologique des bernardins,0 +revue économique et sociale,0 +revus : journal for constitutional theory and philosophy of law,1 +reîntregirea,0 +réflexions en gynécologie-obstétrique,-1 +rfc series,1 +rff press,1 +rg - press,0 +rheinisches museum fur philologie,2 +rheologica acta,1 +rhesis,1 +rhetoric and public affairs,1 +rhetoric review,1 +rhetoric society quarterly,2 +"rhetoric, professional communication and globalization",1 +rhetorica scandinavica,1 +rhetorica: a journal of the history of rhetoric,3 +rhetorik: ein internationales jahrbuch,1 +rheumatic disease clinics of north america,1 +rheumatology,1 +rheumatology advances in practice,1 +rheumatology and therapy,1 +rheumatology international,1 +rhinology,2 +rhinology online,0 +rhizai: a journal for ancient philosophy and science,1 +rhizomata,1 +rhizomes,1 +rhizosphere,1 +rhode island school of design,0 +rhododendronlehti,-1 +rhodora,1 +rhodos,1 +"riact revista de investigação artística, criação, e tecnologia",1 +riba publishing,1 +ricardian: journal of the richard iii society,1 +rice,1 +ricerche di matematica,1 +ricerche di pedagogia e didattica,0 +ricerche di storia dell arte,1 +ricerche di storia economica e sociale,1 +ricerche di storia politica,1 +ricerche storiche,1 +richard-strauss-jahrbuch,0 +ricognizioni,1 +rie,1 +riffi,-1 +riffs,0 +riforma e movimenti religiosi,0 +rig: kulturhistorisk tidskrift,1 +rigakuryoho kagaku,1 +riggisberger berichte,1 +riha journal,0 +rihveli,-1 +riihimäen kaupunki,0 +riista- ja kalatalouden tutkimuslaitos,0 +rijksmuseum bulletin,0 +rikkyo daigaku syuppankai,0 +rikosseuraamuslaitoksen julkaisuja,0 +rikosseuraamuslaitoksen monisteita,-1 +riksantikvarieämbetet,1 +riksarkivet,0 +ril,-1 +ril editores,0 +rilce: revista de filologia hispanica,2 +rilem bookseries,0 +rilem publications,1 +rilem technical letters,1 +rima: review of indonesian and malaysian affairs,1 +rims kokyuroku bessatsu,1 +rinascimento,2 +ringing and migration,1 +rinnakkain,-1 +rinshou tetsugaku,0 +rio book´s,0 +rio kulturlandskapet,0 +riocht na midhe,1 +risk analysis,1 +risk governance & control : financial markets & institutions,1 +risk management and healthcare policy,1 +risk management and insurance review,1 +risk management: an international journal,1 +"risk, hazards and crisis in public policy",1 +riskbook,0 +risks,0 +risorgimento,1 +riss (trondheim),0 +ristal,1 +risteys,-1 +risteysasema,-1 +ristiinalainen,-1 +ristin voitto,-1 +risto ryti -seuran julkaisuja,-1 +risto willamo,0 +risus - revista de inovação e sustentabilidade,1 +rit press,1 +rita devi,0 +riti,0 +riveneuve,0 +river publishers,1 +river research and applications,1 +rivista biblica: organo dell associazione biblica italiana,1 +rivista degli studi orientali,1 +rivista del nuovo cimento,1 +rivista dell istituto nazionale d archeologia e storia dell arte,1 +rivista della stazione sperimentale del vetro,1 +rivista di analisi e teoria musicale,1 +rivista di archeologia,1 +rivista di archeologia cristiana,1 +rivista di cultura classica e medioevale,2 +rivista di digital politics,1 +rivista di diritti comparati,1 +rivista di diritto civile,1 +rivista di diritto internazionale,1 +rivista di diritto internazionale privato e processuale,1 +rivista di estetica,1 +rivista di filologia e di istruzione classica,1 +rivista di filosofia,1 +rivista di filosofia del diritto,1 +rivista di filosofia neo-scolastica,1 +rivista di grammatica generativa,1 +rivista di letteratura italiana,1 +rivista di letterature moderne e comparate,1 +rivista di linguistica,1 +rivista di psichiatria,1 +rivista di psicoanalisi,0 +rivista di scienze prehistoriche,1 +rivista di storia del cristianesimo,1 +rivista di storia della chiesa in italia,1 +rivista di storia della filosofia,1 +rivista di storia e letteratura religiosa,1 +rivista di storia economica,1 +rivista di studi bizanti e neocellini,1 +rivista di studi italiani,1 +rivista di studi liguri,1 +rivista di studi pompeiani,1 +rivista geografica italiana,0 +rivista internazionale di scienze sociali,1 +rivista italiana delle sostanze grasse,1 +rivista italiana di dialettologia,1 +rivista italiana di diritto del lavoro,1 +rivista italiana di diritto e procedura penale,1 +rivista italiana di diritto pubblico comunitario,1 +"rivista italiana di economia, demografia e statistica",-1 +rivista italiana di filosofia del linguaggio,1 +rivista italiana di musicologia,1 +rivista italiana di onomastica,1 +rivista italiana di ornitologia,1 +rivista italiana di paleontologia e stratigrafia,1 +rivista italiana di scienza política,1 +rivista penale,1 +rivista storica dell antichita,1 +rivista storica italiana,1 +rivista trimestrale di diritto pubblico,1 +rla: revista de linguistica teorica y aplicada,1 +rma research chronicle,1 +rmd open,1 +rmn newsletter,1 +rms : research in mathematics & statistics,1 +rna,2 +rna biology,1 +road materials and pavement design,2 +roadrunner,-1 +roadsides,0 +robert hamm,0 +robert schuman centre for advanced studies policy briefs,-1 +robotica,1 +robotics,0 +robotics and autonomous systems,2 +robotics and biomimetics,1 +robotics and computer-integrated manufacturing,3 +robotics reports,0 +robotics: science and systems,1 +rocambole,1 +rock art research,1 +rock mechanics and rock engineering,2 +rock mechanics bulletin,1 +rock music studies,1 +rockefeller university press,1 +rocky mountain geology,1 +rocky mountain journal of mathematics,1 +rocky mountain modern language association,1 +rocky mountain review,1 +rocznik instytutu europy ?rodkowo-wschodniej,0 +rocznik komparatystyczny,1 +rocznik ochrona srodowiska,1 +rocznik orientaliczny,1 +roczniki biblioteczne,0 +roczniki filozoficzne,1 +roczniki humanistyczne,1 +roczniki naukowe polskiego towarzystwa zootechnicznego,0 +rodnoj âzyk,0 +rodriguésia,1 +roeper review,1 +roihuvuoren kylälehti,-1 +rollespilsakademiet,0 +roma,-1 +roma nel rinascimento,0 +roma tre law review,1 +roman 20-50: revue d etude du roman du 20 siecle,1 +roman books,0 +roman legal tradition,1 +romance notes,1 +romance philology,2 +romance quarterly,2 +romance studies,1 +romani studies,1 +romania,1 +romania literara,1 +romanian agricultural research,1 +romanian astronomical journal,1 +romanian biotechnological letters,0 +romanian journal of anaesthesia and intensive care,0 +romanian journal of communication and public relations,0 +romanian journal of economic forecasting,0 +romanian journal of english studies,1 +romanian journal of information science and technology,0 +romanian journal of legal medicine,1 +romanian journal of morphology and embryology,1 +romanian journal of physics,1 +romanian journal of political science,1 +romanian journal of population studies,1 +romanian journal of regional science,0 +romanian reports in physics,1 +romanic review,1 +romanica cracoviensia,1 +romanica gothoburgensia,1 +romanica silesiana,0 +romanica stockholmiensia,1 +romanica wratislawiensia,1 +"romanica, revista de literatura",1 +romanische forschungen,3 +romanistische zeitschrift fur literaturgeschichte-cahiers d histoire des litteratures romanes,1 +romanistisches jahrbuch,1 +romano džaniben,0 +romantic circles praxis series,1 +romantic textualities,1 +romanticism,1 +romanticism on the net,1 +romantisme,2 +rombach druck- und verlagshaus,1 +rombach wissenschaft,0 +romchip,0 +romhorisont,-1 +romische historische mitteilungen,1 +romische quartalschrift fur christliche altertumskunde und kirchengeschichte,1 +romisches jahrbuch der bibliotheca hertziana,1 +rondo,-1 +rongorongo studies: a forum for polynesian philology,1 +room,-1 +rootroo oy,0 +ropecon ry,0 +rorschachiana,0 +rosa dos ventos,0 +rosebud books,0 +rosenlarv,0 +roshia touou kenkyuu,0 +roskilde universitetsforlag,1 +rossica antiqua,0 +rossiiskaya politicheskaya enciklopediya,0 +rossijskaja akademija nauk,1 +rossijskaja arheologija,1 +rossijskaja nacionalnaja biblioteka,1 +rossijskaya gosudarstvennaya biblioteka iskusstv,0 +rossijskaya pravovaya akademiya ministerstva yusticii rossijskoj federacii,0 +rossijski juriditsheskij zhjurnal,1 +rossijskij fiziologičeskij žurnal im. i.m. sečenova,0 +rossijskij gosudarstvenny`j gumanitarny`j universitet,0 +rossijskij gosudarstvennyj pedagogicheskij universitet im. a.i. gercena,0 +rossijskij nevrologičeskij žurnal,0 +rossijskij zhurnal menedzhmenta,1 +rossijskij zhurnal pravovyh issledovanij,0 +rossijskij žurnal nauk o zemle,0 +rossiya i sovremennyi mir,1 +rossiâ i amerika v xxi veke,1 +rostok,0 +rottenburger jahrbuch für kirchengeschichte,1 +rotunda,-1 +round table,1 +routledge,2 +routledge advances in feminist studies and intersectionality,3 +routledge advances in sociology,3 +routledge explorations in economic history,3 +routledge focus in tourism,1 +routledge focus on accounting and auditing,1 +routledge focus on business and management,1 +routledge focus on philosophy,1 +routledge handbooks in philosophy,3 +routledge mental health,1 +routledge open research,0 +routledge research in gender and society,3 +routledge studies in archaeology,3 +routledge studies in contemporary philosophy,3 +routledge studies in critical realism,3 +routledge studies in metaphysics,3 +routledge studies in renaissance and early modern worlds of knowledge,3 +routledge studies in seventeenth-century philosophy,3 +routledgecurzon,1 +routledgefalmer,2 +rovaniemen ammattikorkeakoulu,0 +rovaniemen ammattikorkeakoulun julkaisuja c,0 +rovaniemen kaupunki,0 +rovaniemen taidemuseo,0 +rowman & littlefield publishers,2 +royal college of art,0 +royal institute of philosophy supplement,0 +royal institution of naval architects,1 +royal meteorological society,1 +royal society of chemistry,2 +royal society of medicine press,1 +royal society open science,1 +royal studies journal,1 +rozenberg publishers,1 +rsa journal,-1 +rsa journal,1 +rsc,1 +rsc advances,1 +rsc applied interfaces,0 +rsc chemical biology,1 +rsc medicinal chemistry,1 +rsc pharmaceutics,0 +rsc sustainability,1 +rssi recherches semiotiques: semiotic inquiry,1 +rsu rivista di studi ungheresi,0 +rtr,0 +ru-science,0 +rubber chemistry and technology,1 +rubbettino,0 +ruch filozoficzny,1 +rudiae,1 +rudn university,0 +rudy i metale niezelazne,0 +rug bibliotheek,0 +ruminants,0 +run nijmegen school of management,0 +runas : journal of education and culture,0 +"rundbrief fotografie: zeitschrift fur fotografische sammlungen in archiven, bibliotheken und museen",1 +rundfunk und geschichte,1 +runrön: runologiska bidrag,1 +ruokaviraston julkaisuja,-1 +ruokaviraston tutkimuksia,-1 +ruotuväki,-1 +rural development,0 +rural history: economy society culture,1 +rural landscapes,1 +rural society,1 +rural sociology,2 +rural theology journal,1 +ruralia,-1 +ruralia,0 +ruralia,1 +ruralia-instituutti julkaisuja,0 +rusi,1 +rusistika,1 +rusistika bez granici,0 +ruslania books oy,0 +russell house publishing,0 +russell sage foundation,1 +russell: the journal of the bertrand russell studies,1 +russian agricultural sciences,0 +russian analytical digest,0 +russian and east european studies indexed journal reference guide,0 +russian chemical bulletin,1 +russian chemical reviews,0 +russian education and society,1 +russian entomological journal,1 +russian geology and geophysics,1 +russian history,2 +russian journal of applied chemistry,0 +russian journal of bioorganic chemistry,0 +russian journal of communication,1 +russian journal of comparative law,1 +russian journal of coordination chemistry,0 +russian journal of developmental biology,1 +russian journal of ecology,1 +russian journal of electrochemistry,0 +russian journal of general chemistry,0 +russian journal of genetics,0 +russian journal of genetics : applied research,0 +russian journal of inorganic chemistry,0 +russian journal of linguistics,1 +russian journal of logistics and transport management,0 +russian journal of marine biology,0 +russian journal of mathematical physics,1 +russian journal of money and finance,1 +russian journal of nematology,1 +russian journal of non-ferrous metals,1 +russian journal of nondestructive testing,1 +russian journal of numerical analysis and mathematical modelling,1 +russian journal of organic chemistry,0 +russian journal of ornithology,1 +russian journal of pacific geology,1 +russian journal of physical chemistry a,0 +russian journal of physical chemistry b,0 +russian journal of plant physiology,1 +russian language journal,1 +russian linguistic bulletin,0 +russian linguistics,3 +russian literature,3 +russian mathematical surveys,1 +russian metallurgy,1 +russian meteorology and hydrology,1 +russian microelectronics,0 +russian parasitological journal,0 +russian philology,0 +russian physics journal,1 +russian politics,1 +russian politics and law,1 +russian review,2 +russian social science review,1 +russian state university of justice,0 +russian studies in history,0 +russian studies in literature,0 +russian studies in philosophy,1 +russian summer school in information retrieval,0 +russianstudieshu,0 +russkaia literatura,1 +russkaâ filologiâ,0 +russkaâ rečʹ,0 +russkii yazyk za rubezhom,0 +russkij jazyk v naucnom osvescenii,2 +russkij jazyk v škole,1 +russkij jazyk za rubežom,1 +russkij sbornik: issledovania? po istorii rossii xix-xx vv,0 +russlandanalysen,0 +rutgers business review,0 +rutgers computer & technology law journal,0 +rutgers law review,1 +rutgers university press,1 +ruudinsavu,-1 +ruukku,1 +ruumiin kulttuuri,-1 +ruusunlehti,-1 +ry,-1 +rynek energii,1 +ryynäset,-1 +räisäläinen,-1 +rättshistoriska skrifter,1 +rättshistoriska studier,0 +rättshistoriskt bibliotek,0 +réforme,-1 +röfo : fortschritte auf dem gebiet der röntgenstrahlen und der bildgebenden verfahren,1 +röhrig universitätsverlag,0 +"röll, j.h.",0 +röstläget,-1 +rüdiger köppe verlag,1 +rāhburd-i farhangī va ijtimā̒ī.,0 +rīgas tehniskās universitātes zinātniskie raksti : vides un klimata tehnoloģijas,0 +s & f online,0 +s + f,1 +s b editori,0 +s. hirzel verlag,0 +s. karger,1 +s/n korean humanities,1 +s: i. m. o. n.,1 +sa journal of human resource management,0 +saalburg jahrbuch,1 +saaremaa ülikoolide keskus,0 +saarijärveläinen,-1 +saarijärvi-seura r.y.,0 +saariselän sanomat,-1 +saarmste,0 +sabah ülkesi,-1 +sabrao journal of breeding and genetics,1 +sacra scripta,1 +sacrasage press,0 +sacred music,1 +sacris erudiri,1 +sadhana,1 +sae international,1 +sae international journal of aerospace,1 +sae international journal of commercial vehicles,1 +sae international journal of connected and automated vehicles,1 +sae international journal of electrified vehicles,0 +sae international journal of engines,1 +sae international journal of fuels and lubricants,1 +"sae international journal of vehicle dynamics, stability, and nvh",1 +sae technical papers,1 +saeculum,1 +safer communities,1 +safety,0 +safety & reliability,1 +safety and health at work,1 +safety of technogenic environment,0 +safety science,2 +safety science monitor,0 +safundi: the journal of south african and american comparative studies,1 +saga,1 +saga och sed: kungliga gustav adolfs akadeniens aarsbok,1 +saga-book of the viking society for northern research,1 +sagamore publishing,0 +sage open,1 +sage open medical case reports,1 +sage open medicine,0 +sage open nursing,1 +sage publications,3 +saguntum,1 +sahara j: journal of social aspects of hiv: aids,1 +sahim,-1 +sahlbergia,0 +sahoegwasueobyeongu,0 +saima,-1 +saint anselm journal,1 +saint petersburg center for the history of ideas,0 +saint vladimir's seminary press,1 +sairaanhoitaja,0 +saj serbian architectural journal,0 +sajog: south african journal of obstetrics and gynaecology,1 +sakkoulas publishers,1 +sakprosa,1 +saksalainen kirjastoyhdistys ry,0 +saksanpaimenkoira,-1 +salamandra,1 +salaojituksen tutkimusyhdistys ry:n tiedote,-1 +salem press,0 +salerno editrice,1 +sales and marketing management,1 +salesianum,0 +sall data,1 +salmagundi: a quarterly of the humanities and social sciences,1 +salmand,1 +salon seudun sanomat,-1 +salon verlag,0 +salón bienal de investigación creación,0 +salt - alas,0 +salud colectiva,1 +salud i ciencia,1 +salud mental,1 +salud publica de mexico,1 +salute e societá,1 +salāmat va varzish : rūykard/hā-yi nuvīn,0 +sam magazine,-1 +samfundslitteratur,1 +samfunnsøkonomen,0 +samj south african medical journal,1 +samlaren,1 +sammakko,0 +sampe europe,0 +sampe journal,1 +sampsa,-1 +samtidshistoriska frågor,-1 +samu,-1 +samuel beckett today: aujourd hui,1 +san diego international law journal,0 +san francisco estuary and watershed science,1 +sana,-1 +sanalla sanoen,-1 +sananjalka,2 +sanansaattaja,-1 +sanasato,0 +sanat duenyamiz,0 +sanct olof,-1 +sanctorum,1 +sandalion,1 +sane journal,1 +sanelma,-1 +sangen-sha,0 +sanitation,1 +sankei-sha,0 +sankhya series b,1 +sanoma magazines,0 +sanoma pro,0 +santa barbara portuguese studies,1 +santa casa da misericórdia lisboa,0 +santa clara high technology law journal,1 +santalahti-kustannus,1 +santander art & culture law review,1 +sante publique,1 +santérus academic press,1 +sao paulo medical journal,0 +saobraćajno-tehnički fakultet,0 +saothar,0 +sapere aude,-1 +sapere aude,1 +saqi books,0 +sar and qsar in environmental research,1 +sar press,1 +sara hildénin taidemuseo,0 +sara hildénin taidemuseon julkaisuja,-1 +sarajevo journal of mathematics,1 +saratov state university,0 +sarawak museum journal,1 +sarcoidosis vasculitis and diffuse lung diseases,1 +sarcoma,1 +sardinia... international waste management and landfill symposia proceedings,0 +sargon editrice,1 +sarhad journal of agriculture,0 +sarjainfo,-1 +sartoniana,1 +sartre studies international: an interdisciplinary journal of existentialism and contemporary culture,1 +sas julkaisusarja,0 +sastamalan joulu,-1 +satakieliseminaari,-1 +satakunnan ammattikorkeakoulu,0 +satakunnan ammattikorkeakoulu : muut julkaisut,-1 +satakunnan ammattikorkeakoulu : oppimateriaalit,-1 +satakunnan ammattikorkeakoulu : raportit,-1 +satakunnan historiallinen seura ry,0 +satakunnan kauppakamari,-1 +satakunnan linnut,-1 +satakunnan museo,0 +satakunnan viikko,-1 +satakuntaliitto,0 +satama,-1 +satasarvi,0 +sateenkaarihistorian ystävien kirjoituksia,-1 +satelliitti,-1 +satellite navigation,1 +satikka,-1 +sats: northern european journal of philosophy,1 +saude e sociedade,1 +saudi commission for tourism and antiquities,0 +saudi journal of biological sciences,1 +saudi journal of ophthalmology,0 +saudi medical journal,1 +saudi pharmaceutical journal,0 +sauna,-1 +sauramps médical,0 +savaria university press,1 +saviseudun joulu,-1 +savon koulutuskuntayhtymä,0 +savon sanomat,-1 +savon sotilasperinneyhdistys porrassalmi r.y.,0 +savon yrittäjä,-1 +savonia-ammattikorkeakoulu,0 +savonia-ammattikorkeakoulun julkaisusarja,-1 +savonian sanomat,-1 +savot,-1 +savukeidas,0 +saxa verlag,0 +sayyab translation journal,0 +sbl: writings from the greco-roman world,1 +sbornik mathematics,1 +scalable computing. practice and experience,0 +scan: journal of media arts culture,1 +scandia,1 +scandia,2 +scandinavian - canadian studies,1 +scandinavian academic press,1 +scandinavian actuarial journal,1 +scandinavian cardiovascular journal,1 +"scandinavian cardiovascular journal, supplement",1 +scandinavian conference on artificial intelligence,0 +scandinavian economic history review,2 +scandinavian forest economics,1 +scandinavian journal for leadership and theology,0 +scandinavian journal of caring sciences,1 +scandinavian journal of child and adolescent psychiatry and psychology,1 +scandinavian journal of clinical and laboratory investigation,1 +scandinavian journal of comic art,1 +scandinavian journal of disability research,2 +scandinavian journal of economics,2 +scandinavian journal of educational research,2 +scandinavian journal of forensic science,1 +scandinavian journal of forest research,1 +scandinavian journal of gastroenterology,1 +"scandinavian journal of gastroenterology, supplement",1 +scandinavian journal of history,3 +scandinavian journal of hospitality and tourism,2 +scandinavian journal of immunology,1 +"scandinavian journal of infectious diseases, supplement",1 +scandinavian journal of information systems,1 +scandinavian journal of laboratory animal science,1 +scandinavian journal of management,1 +scandinavian journal of medicine and science in sports,2 +scandinavian journal of military studies,1 +scandinavian journal of occupational therapy,1 +scandinavian journal of pain,1 +scandinavian journal of primary health care,2 +scandinavian journal of psychology,1 +"scandinavian journal of psychology, supplementum",1 +scandinavian journal of public administration,1 +scandinavian journal of public health,1 +scandinavian journal of rheumatology,1 +"scandinavian journal of rheumatology, supplement",1 +scandinavian journal of sport and exercise psychology,0 +scandinavian journal of statistics,2 +scandinavian journal of surgery,1 +scandinavian journal of the old testament,3 +"scandinavian journal of trauma, resuscitation and emergency medicine",1 +scandinavian journal of urology,1 +scandinavian journal of vocations in development,-1 +scandinavian journal of work and organizational psychology,1 +scandinavian journal of work environment and health,2 +scandinavian political studies,2 +scandinavian psychoanalytic review,1 +scandinavian psychologist,0 +scandinavian sport studies forum,1 +scandinavian studies,2 +scandinavian studies in language,1 +scandinavian studies in law,2 +scandinavian veterinary press,1 +scandinavica,2 +scando-slavica,2 +scarecrow press,1 +"scars, burns & healing",1 +scenari,1 +scenario,0 +scene,1 +schattauer,1 +schede medievali,1 +schede umanistiche,0 +schelling-studien,0 +schibri-verlag,1 +schifanoia,1 +schildts & söderströms,0 +schizophrenia,1 +schizophrenia bulletin,3 +schizophrenia bulletin open,1 +schizophrenia research,2 +schizophrenia research : cognition,1 +schizophrenia research and treatment,0 +schloss dagstuhl - leibniz zentrum für informatik,0 +schmalenbach business review,1 +schmerz,1 +schneider verlag hohengehren,1 +schnittstelle germanistik,0 +scholarpedia journal,0 +scholars academic journal of pharmacy,0 +scholars journal of applied medical sciences,0 +scholars´ press,0 +scholia: studies in classical antiquity,1 +scholé,0 +school education gateway,-1 +school effectiveness and school improvement,2 +school leadership and management,1 +school libraries worldwide,1 +school library research,1 +school mental health,1 +school of oriental and african studies,1 +school psychology,1 +school psychology international,1 +school psychology review,1 +school science and mathematics: journal for all science and mathematics teachers,1 +schools,1 +schopenhauer-jahrbuch,1 +schriften der luther-agricola-gesellschaft,1 +schriften des forschungszentrums julich,1 +schriften des instituts für deutsche sprache,1 +schriften zur geistesgeschichte des östlichen europa,1 +schriftenreihe der isa lohmann-siems stiftung,0 +"schriftenreihe des instituts für landschaft und freiraum, hsr hochschule für technik rapperswil",0 +schubert: perspektiven,1 +schuman papers,-1 +schwabe verlag,0 +schweizer archiv fur tierheilkunde,1 +schweizer jahrbuch fur musikwissenschaft,1 +schweizerische zeitschrift fur forstwesen,1 +schweizerische zeitschrift fur geschichte,1 +schweizerische zeitschrift fur volkswirtschaft und statistik,1 +schweizerische zeitschrift für bildungswissenschaften,1 +schweizerische zeitschrift für religions- und kulturgeschichte,1 +schweizerische zeitschrift für soziale arbeit,0 +schweizerisches archiv fur volkskunde,1 +schüren verlag,0 +sci,0 +sciamvs: sources and commentaries in exact sciences,1 +scieconf,0 +science,3 +science & medicine in football,1 +science & technology for the built environment,1 +science advances,3 +science and children,0 +science and culture,0 +science and education,1 +science and engineering ethics,2 +science and engineering of composite materials,1 +science and global security,1 +science and justice,1 +science and public policy,2 +science and society,1 +science and sports,1 +science and technology,0 +science and technology for cultural heritage,1 +science and technology libraries,1 +science and technology of advanced materials,1 +science and technology of advanced materials : methods,1 +science and technology of energetic materials,0 +science and technology of nuclear installations,1 +science and technology of welding and joining,1 +science and technology studies,1 +science as culture,2 +science bulletin,1 +science china : information sciences,1 +science china chemistry,0 +science china materials,1 +science china: earth sciences,1 +science china: life sciences,1 +science china: mathematics,1 +science china: physics mechanics and astronomy,1 +science china: technological sciences,1 +science communication,2 +science education,3 +science education international,1 +science education review,1 +science et technique du froid,1 +science fiction film and television,1 +science immunology,3 +science in context,2 +science journal of education,0 +science journal of public health,0 +science museum group journal,1 +science of advanced materials,0 +science of computer programming,2 +science of gymnastics journal,1 +science of religion,1 +science of remote sensing,1 +science of sintering,1 +science of the total environment,2 +science press,0 +science progress,0 +science publishers inc.,1 +science robotics,3 +science signaling,2 +science talks,0 +science technology and human values,3 +science translational medicine,3 +"science, technology and innovation studies",1 +"science, technology and society",1 +science-fiction studies,3 +science-to-business marketing conference,0 +sciencerise : pharmaceutical science,0 +sciencerise. pedagogical education,1 +sciences des aliments,1 +sciences du jeu,1 +sciences et techniques en perspective,1 +sciences in cold and arid regions,1 +sciences sociales et sante,1 +sciendo,0 +scientia,0 +scientia agricola,1 +scientia agropecuaria,0 +scientia forestalis,0 +scientia horticulturae,1 +scientia in educatione,0 +scientia iranica,1 +scientia marina,1 +scientia moralitas,1 +scientia paedagogica experimentalis,1 +scientia pharmaceutica,0 +scientia socialis,1 +scientiae mathematicae japonicae,1 +scientiarum historia: tijdschrift voor de geschiedenis van de wetenschappen en de geneeskunde,1 +scientific african,1 +scientific american,-1 +scientific and academic publishing,0 +scientific annals of computer science,0 +scientific association for infocommunications,1 +scientific bulletin of the university politechnica of bucharest: series a applied mathematics and physics,1 +scientific conference on electrical engineering in aait,0 +scientific data,1 +scientific drilling,1 +scientific journal of gdynia maritime university,0 +scientific journal of riga technical university: computer sciences,0 +scientific journal of rtu: sustainable spatial development,0 +scientific journal of silesian university of technology : series transport,0 +scientific journals of the maritime university of szczecin,0 +scientific modeling and simulation,1 +"scientific papers : series management, economic, engineering in agriculture and rural development",1 +scientific papers series d : animal science,1 +scientific reports,1 +scientific research and essays,0 +scientific research publishing,0 +scientific studies of reading,3 +scientific technical report (deutsches geoforschungszentrum),0 +scientific world journal,1 +scientifica,1 +scientifur,1 +scientometrics,2 +scienza & politica,1 +"scienze dell antichita: storia, archeologia, antropologia",1 +scipost physics,1 +scipost physics codebases,0 +scipost physics core,1 +scipost physics lecture notes,1 +scipost physics proceedings,0 +scitepress science and technology publications,0 +scm press,1 +scms journal of indian management,0 +scolia,1 +scoliosis and spinal disorders,0 +scope: an on-line journal of film studies,1 +scottish affairs,0 +scottish anti-poverty review,-1 +scottish archaeological journal,1 +scottish archives,1 +scottish gaelic studies,1 +scottish geographical journal,1 +scottish historical review,2 +scottish journal of geology,1 +scottish journal of political economy,1 +scottish journal of theology,2 +scottish languages review,0 +scottish literary review,1 +scottish medical journal,1 +scottish place-name society,1 +scottish studies,0 +screen,3 +screen sound,1 +screening the past,1 +screenworks,1 +scriblerian and the kit-cats,1 +scrinium,1 +script and print: bulletin of the bibliographical society of australia and new zealand,1 +script-ed,1 +scripta,1 +scripta & e-scripta,0 +scripta abonesia,0 +scripta classica israelica,1 +scripta ethnologica,1 +scripta geologica,1 +scripta historica,1 +scripta instituti donneriani aboensis,1 +scripta islandica: islandska sallskapets årsbok,1 +scripta materialia,3 +scripta mediterranea,1 +scripta mercaturae: zeitschrift fur wirtschafts- und sozialgeschichte,1 +scripta nova: revista electronica de geografia y ciencias sociales,1 +scripta theologica,1 +scriptorium,3 +scriptum,1 +scriptum digital,1 +"scriptura: international journal of bible, religion and theology in southern africa",1 +scrivener publishing,0 +scroope,0 +scrutiny2,1 +sculpture journal,0 +sculpture review,0 +scuola democratica,0 +"scuola vaticana di paleografia, diplomatica e archivistica",0 +sdrp journal of earth sciences & environmental studies,0 +sdrp journal of food science & technology,0 +sdvig press,1 +sea technology,1 +sealing technology,1 +seamk journal,0 +seamk news,-1 +sean kingston publishing,1 +sebu forlag,1 +second language research,3 +second language teacher education,0 +"secretariat of the convention on biological diversity, implementation and outreach division",0 +secrypt,1 +secular studies,1 +secularism and nonreligion,1 +securities regulation law journal,1 +securitologia,0 +security and communication networks,0 +security and defence quarterly,1 +security and human rights,1 +security and privacy,1 +security dialogue,3 +security dimensions,1 +security informatics,1 +security journal,1 +security spectrum : journal of advanced security research,0 +security studies,1 +sederi: journal of the spanish society for english renaissance studies,1 +sedimentary geology,1 +sedimentology,2 +seed science and technology,1 +seed science research,1 +seers books,0 +sefarad,1 +sefi journal of engineering education advancement,0 +segle xx,1 +sehepunkte,0 +sehnsucht,1 +sei working paper,0 +seibutsu-kogaku kaishi,1 +seikagaku,1 +seikokai,0 +seili archipelago research institute publications,-1 +seinen shinrigaku kenkyū,0 +seinäjoen ammattikorkeakoulu,0 +seinäjoen ammattikorkeakoulun julkaisusarja,-1 +"seinäjoen ammattikorkeakoulun julkaisusarja. a, tutkimuksia",0 +seinäjoen kaupunki,0 +seishin igaku,0 +seismic instruments,1 +seismica,1 +seismograf/dmt,1 +seismological research letters,1 +seismopolite,0 +seitai ikougaku,0 +seiyo koten ronshu,1 +seizieme siecle,1 +seizure: european journal of epilepsy,1 +seksologinen aikakauskirja,1 +sekvoiya,0 +selecta mathematica: new series,2 +selected papers from uk-cla meetings,0 +selected papers of internet research,0 +self and identity,1 +selkälehti,-1 +selkäydinvamma,-1 +sellier,1 +sellier european law publishers,0 +selskabet for skole- og uddannelseshistorie,0 +selvedge,-1 +selvityksiä,-1 +selänne,-1 +selʹskohozâjstvennaâ biologiâ,0 +selʹskohozâjstvennye mašiny i tehnologii,0 +semantic fieldwork methods,1 +semantic web,2 +semantics and pragmatics,1 +semeia studies,2 +semen,1 +sementtisanomat,-1 +semico,0 +semiconductor science and technology,1 +semiconductors,1 +semiconductors and semimetals,1 +semigroup forum,1 +semina: ciencias agrarias,1 +seminaire de probabilites,1 +seminaire lotharingien de combinatoire,1 +seminar.net,1 +seminar: a journal of germanic studies,2 +seminari romani di cultura greca,1 +seminars in arthritis and rheumatism,1 +seminars in cancer biology,1 +seminars in cell and developmental biology,1 +seminars in cutaneous medicine and surgery,1 +seminars in diagnostic pathology,1 +seminars in dialysis,1 +seminars in fetal and neonatal medicine,2 +seminars in hearing,1 +seminars in hematology,1 +seminars in immunology,1 +seminars in immunopathology,2 +seminars in interventional radiology,1 +seminars in liver disease,1 +seminars in musculoskeletal radiology,1 +seminars in nephrology,1 +seminars in neurology,1 +seminars in nuclear medicine,1 +seminars in oncology,1 +seminars in oncology nursing,0 +seminars in ophthalmology,1 +seminars in orthodontics,0 +seminars in pediatric neurology.,1 +seminars in pediatric surgery,1 +seminars in perinatology,2 +seminars in plastic surgery,1 +seminars in radiation oncology,1 +seminars in reproductive medicine,1 +seminars in respiratory and critical care medicine,1 +seminars in roentgenology,1 +seminars in speech and language,1 +seminars in thoracic and cardiovascular surgery,0 +seminars in thoracic and cardiovascular surgery,1 +seminars in thrombosis and hemostasis,1 +seminars in ultrasound ct and mri,1 +seminars in vascular surgery,1 +semiotexte,1 +semiotica,3 +semiotika,1 +semiotique et bible,1 +semitica,1 +sen-i gakkaishi,1 +seniorilääkäri,-1 +senioriopettaja,-1 +seniors housing and care journal,0 +senri ethnological studies,1 +sens public,0 +sensing and bio-sensing research,1 +sensing and imaging,1 +sensor letters,1 +sensor review,1 +sensors,1 +sensors & diagnostics,0 +sensors and actuators a: physical,1 +sensors and actuators b: chemical,1 +sensors and actuators reports,1 +sensors and materials,1 +sensors and transducers,1 +sensors international,0 +sente-julkaisuja,-1 +sentio,0 +seoppi,-1 +seoul journal of korean studies,1 +separation and purification reviews,1 +separation and purification technology,2 +separation science and technology,1 +separations,0 +septentrion,1 +sequential analysis,1 +serbian journal of electrical engineering,0 +serbian journal of management,1 +serbian studies research,1 +sereco ab,0 +serials librarian,1 +serials review,1 +serie haina,0 +serie orientale roma,1 +series : international journal of tv serial narratives,1 +series on advances in bioinformatics and computational biology,1 +series: journal of the spanish economic association,1 +serlachius-museoiden julkaisuja,0 +serus oy,0 +service business: an international journal,1 +service industries journal,1 +service oriented computing and applications,1 +service science,0 +service science,1 +services marketing quarterly,1 +servizo de publicacións da universidade de vigo,-1 +ses,-1 +sesar innovation days,0 +sesko vuosikirja,-1 +sess report,1 +set-valued and variational analysis,1 +setac lca case study symposium,0 +setlementtijulkaisuja,0 +settentrione : nuova serie,0 +settler colonial studies,1 +seura,-1 +seurantauutiset,-1 +seutulehti uutisoiva,-1 +sevasmaailma,-1 +seventeenth century,2 +seventeenth-century french studies,1 +seventeenth-century news,0 +sever,0 +severnorusskie govory,0 +severny`j (arkticheskij) federal`ny`j universitet,0 +severo-zapadnaya akademiya gosudarstvennoj sluzhby`,0 +sewanee review,1 +sewanee theological review,1 +sex education,1 +sex roles,2 +sexes,0 +sexologies,1 +sexual & reproductive healthcare,1 +sexual abuse: a journal of research and treatment,2 +sexual addiction and compulsivity,1 +sexual and relationship therapy,1 +sexual development,1 +sexual health,0 +sexual medicine,1 +sexual medicine reviews,1 +sexualities,2 +sexuality and culture,1 +sexuality and disability,1 +sexuality research and social policy,1 +sexually transmitted diseases,1 +sexually transmitted infections,1 +sexuologie,0 +seychelles research journal,0 +sfinx,1 +sfk-ofis,0 +sfra review,0 +sfv magasinet,-1 +sgem international multidisciplinary scientific conferences on social sciences and arts,0 +sh traveledu,0 +shakai gengo kagaku,1 +shaker,-1 +shaker verlag,1 +shakespeare,1 +shakespeare bulletin,1 +shakespeare quarterly,3 +shakespeare studies,2 +shakespeare survey,1 +shakespeare yearbook,1 +shakespearean international yearbook,1 +shakki,-1 +shaman: journal of the international society for shamanistic research,1 +shamrock,-1 +shandean,1 +shanghai chest,0 +shanghai foreign language education press,0 +shanghai jiaotong daxue xuebao,0 +shanghai jiaotong daxue xuebao : yixue ban,0 +shanghai normal university,0 +shanghai people's publishing house,1 +shanghai scientific & technical publishers,0 +shareholder activism & engagement,-1 +shaw: the annual of bernard shaw studies,1 +she ji,1 +sheffield hallam university press,0 +sheffield phoenix press,1 +shehui gongzuo yu guanli,0 +shenandoah,0 +shengli xuebao,0 +shengxue xuebao,0 +shidai faxue,0 +shiga daigaku kyoiku gakubu kiyo,0 +shijie jianzhu,-1 +shijie linye yanjiu,0 +shijie lishi pinglun,0 +shilap: revista de lepidopterologia,1 +shima,1 +shinhyoron,0 +shinkenchiku,0 +shinpojiumu,0 +shinrin kumiai,-1 +shinyosha,0 +ship technology research,1 +shipin gongye ke-ji,0 +shipin yu fajiao gongye,0 +shipra publications,0 +ships and offshore structures,1 +shock,2 +shock and vibration,1 +shock waves,1 +shofa: an interdisciplinary journal of jewish studies,1 +shojihomu.co,0 +shonika rinsho,1 +shougai gakushuu kyaria kyouiku kenkyuu,0 +shoulder & elbow,1 +shoulei xuebao,0 +showado,0 +showing theory press,0 +shs web of conferences,1 +shu-te university,0 +shui kexue jinzhan,0 +shuili shuidian kuaibao,0 +shumpusha,0 +shuxue xuebao,0 +shy plumber,-1 +shìdnij svìt,1 +si somos americanos,0 +siam journal on applied algebra and geometry,1 +siam journal on applied dynamical systems,1 +siam journal on applied mathematics,3 +siam journal on computing,3 +siam journal on control and optimization,3 +siam journal on discrete mathematics,2 +siam journal on financial mathematics,1 +siam journal on imaging sciences,2 +siam journal on mathematical analysis,3 +siam journal on mathematics of data science,1 +siam journal on matrix analysis and applications,3 +siam journal on numerical analysis,3 +siam journal on optimization,3 +siam journal on scientific computing,3 +siam review,3 +siam/asa journal on uncertainty quantification,1 +siaures atenai,-1 +sibbaldia,0 +sibelius-akatemia,0 +sibelius-akatemian julkaisuja,-1 +sibelius-akatemian selvityksiä ja raportteja,-1 +siberian mathematical journal,1 +"sibgrapi conference on graphics, patterns and images",0 +sibirica: the journal of siberian studies,1 +sibirskie istoricheskie issledovaniya,1 +sibirskie èlektronnye matematičeskie izvestiâ,0 +sibirskii matematicheskii zhurnal,1 +sibirskij federal`ny`j universitet,0 +sibirskij filologicheskij zhurnal,1 +sibirskij filologičeskij forum,0 +sibirskij gosudarstvennyj aerokosmitsheskij universitet,0 +sibirskij lesnoj žurnal,0 +sibirskoe medicinskoe obozrenie,0 +sic,1 +sic!,-1 +sic!,0 +sichuan daxue xuebao : zhexue shehui kexue ban,0 +sichuan shifan daxue xuebao : ziran kexue ban,0 +sicilia antiqua,1 +sicilia archeologica,1 +side effects of drugs annual,1 +side view press,0 +sidestone press,0 +sidney da silva facundes,0 +siedlungsforschung: archaologie geschichte geographie,1 +sief newsletter,-1 +sielunhoidon aikakauskirja,-1 +siemenpuun teemajulkaisu,-1 +sienet ja terveys,-1 +sienilehti,-1 +sievin kunta,0 +sigact news,0 +sight and sound,1 +sigila,1 +sigillum,0 +sigir forum,1 +sigkdd explorations,0 +sigmetrics performance evaluation review,0 +sigmm records,0 +sigmod record,1 +sign language and linguistics,3 +sign language studies,1 +sign systems studies,2 +signa vitae,1 +signa: revista de la asociacion espanola de semiotica,1 +signal,-1 +signal + draht,-1 +signal processing,2 +"signal processing algorithms, architectures, arrangements, and applications conference proceedings",1 +signal processing and applied mathematics for electronics and communications workshop,0 +signal processing and communications applications conference,0 +signal processing: image communication,1 +signal transduction,1 +signal transduction and targeted therapy,1 +"signal, image and video processing",1 +signaling and communication in plants,-1 +signals,-1 +signals (english ed.),-1 +signata : annales des sémiotiques,1 +"signes, discours et sociétés",1 +significação,1 +signo et sena,1 +signs,3 +signs and society,1 +signum,-1 +signum temporis,1 +siikajokilaakso,-1 +siipirikko,-1 +siirtolaisuusinstituutti,0 +siirtolaisuustutkimuksia a,0 +siirtolapuutarha,-1 +siivet,-1 +sikh formations,1 +sileno: rivista di studi classici e cristiani,1 +silesia antiqua,1 +silicates industriels,1 +silicon,1 +silicon chemistry,1 +silmähoitaja,-1 +silniki spalinowe,0 +silta,-1 +siltala,0 +silva fennica,2 +silvae genetica,1 +sim(o) mediestudier,0 +simile,1 +simiolus: netherlands quarterly for the history of art,2 +simmel studies,1 +simone de beauvoir studies,1 +simpliciana: schriften der grimmelshausen-gesellschaft,1 +simpukka,-1 +simpósio brasileiro de telecomunicações,0 +simulation and gaming,1 +simulation in healthcare,1 +simulation modelling practice and theory,1 +simulation notes europe,1 +simulation: transactions of the society for modeling and simulation international,1 +"simultech international conference on simulation and modeling methodologies, technologies and applications",1 +sin saneop gyeongyeong jeoneol,0 +sinapinsiemen,-1 +sincronia,1 +"sincronie: rivista semestrale di letterature, teatro e sistemi di pensiero",1 +"sindikat vzgoje, izobraževanja, znanosti in kulture slovenije",0 +sinebrychoffin taidemuseon julkaisuja,-1 +sinergi : jurnal ilmiah fakultas teknik,0 +sinergia académica,1 +sinergie,0 +sinet : an ethiopian journal of science,0 +singapore architect,-1 +singapore economic review,1 +singapore journal of legal studies,1 +singapore journal of tropical geography,1 +singapore medical journal,0 +singapore nursing journal,0 +singapore university press,1 +sinn und form,2 +"sino-christian studies: an international journal of bible, theology and philosophy",1 +sino-us english teaching,0 +sintagma,1 +sintef proceedings,0 +sions missionstidning,-1 +sipoon sanomat,-1 +sir henry wellcome asian series,1 +sirp,0 +sis journal of projective psychology and mental health,1 +sisekaitseakadeemia,0 +sismel - edizioni del galluzzo,0 +sissisanomat,-1 +sistema solar,0 +sistemas & gestão,0 +sistemnyj analiz i logistika,0 +sisu idrottsböcker,0 +sisu-line,0 +sisyphus,1 +sisä-suomen lehti,-1 +sisäasiainministeriö,0 +sisäministeriön julkaisuja,-1 +sitra,-1 +sitra,0 +sitra muistio,0 +sitra työpaperi,-1 +sitran selvityksiä,-1 +siun soten julkaisuja,-1 +sivuosa,0 +sixteenth century journal,2 +siy raportti,-1 +siy sisäilmatieto oy,0 +sjuttonhundratal,1 +sjöfartstidningen,-1 +sjögrenlehti,-1 +sk24,-1 +skas,1 +skase journal of theoretical linguistics,1 +skase journal of translation and interpretation,1 +skattenytt,1 +skatterett,1 +skb rapport,-1 +skeletal muscle,1 +skeletal radiology,1 +skeptikko,-1 +skholion,0 +skifiya-print,0 +skin appendage disorders,1 +skin health and disease,1 +skin pharmacology and physiology,1 +skin research and technology,1 +skira,1 +skirnir,1 +skogs- och träforskningsinstitutet,0 +skogsbruket,-1 +skogsägaren,-1 +skolhistoriskt arkiv,-1 +skolska knjiga,1 +skootteri,-1 +skope,0 +skrifter från centrum for samisk forskning,1 +skrifter från juridiska institutionen vid umeå universitet,0 +skrifter från svensk förening för matematikdidaktisk forskning,1 +skrifter från svenska institutionen vid åbo akademi,0 +skrifter utgivna av historiska samfundet i åbo,0 +skrifter utgivna av svensk-österbottniska samfundet,0 +skrifter utgivna av svenska barnboksinstitutet,0 +skrifter utgivna av svenska folkskolans vänner,0 +"skrifter utgivna av svenska institutet i athen, 4¡",1 +"skrifter utgivna av svenska institutet i athen, 8¡",1 +skrifter utgivna av svenska institutet i rom. 4¡,1 +skrifter utgivna av svenska institutet i rom. 8¡,1 +skrifter utgivna av svenska litteratursällskapet i finland,2 +skrifter: nordisk forening for leksikografi,1 +skriveopplæring og skriveforskning,0 +skrolli,-1 +skvortsovia,1 +skyline business journal,0 +skyllis,1 +skärgård,0 +slagmark,1 +slalli,-1 +slas discovery,1 +slas technology,1 +slaskie studia historyczno-teologiczne,1 +slatkine,0 +slavery and abolition,1 +slavia,1 +slavia antiqua,1 +slavia occidentalis,1 +slavia orientalis,1 +slavic and east european information resources,1 +slavic and east european journal,3 +slavic language education,0 +slavic review,2 +slavic studies,0 +slavica,1 +slavica bergensia,1 +slavica helsingiensia,-1 +slavica helsingiensia,1 +slavica occitania,1 +slavica publishers,1 +slavica revalensia,-1 +slavica slovaca,1 +slavisticna revija,1 +slavistika,1 +slavjanovedenie,1 +slavonic and east european review,2 +slavonica,1 +släktforskarnas årsbok,-1 +släkthistoria,-1 +sleep,2 +sleep advances,1 +sleep and biological rhythms,1 +sleep and breathing,1 +sleep epidemiology,1 +sleep health,1 +sleep medicine,1 +sleep medicine and disorders : international journal,0 +sleep medicine clinics,1 +sleep medicine reviews,2 +sleep science,1 +sleep science and practice,1 +sley-media oy,0 +slezsky sbornik,1 +slf,-1 +slovak journal of civil engineering,1 +"slovansky prehled: review for central, eastern and southeastern european history",1 +slovart publishing,0 +slovene,1 +slovene linguistic studies,1 +slovene studies,1 +slovenian veterinary research,1 +slovenscina 2.0,1 +slovenska akademija znanosti in umetnosti,0 +slovenska archeologia,2 +slovenska literatura,1 +slovenska rec,1 +slovensko društvo za razsvetljavo,0 +slovensko zdravniško združenje,0 +slovensky narodopis,2 +slovenská národná knižnica,0 +slovenská politologická revue,1 +slovenská vedecká spoločnosť pre telesnú výchovu a šport,0 +slovenský archeologický a historický inštitút,0 +slovo,0 +slovo a slovesnost,1 +slovo a smysl,1 +slovo.ru: baltijskij akcent,1 +slowo / obraz terytoria,1 +sls varia,0 +släkt och hävd,-1 +släkt och hävd: tidskrift,0 +small,3 +small axe,1 +small business economics,2 +small enterprises research,1 +small group research,1 +small gtpases,1 +small methods,2 +small ruminant research,1 +small science,1 +small structures,1 +small wars and insurgencies,1 +small-scale forestry,1 +smart accessibility,0 +smart agricultural technology,1 +smart and sustainable built environment,1 +smart and sustainable manufacturing systems,1 +smart cities,0 +smart cities and regional development journal,0 +smart cities symposium prague,1 +smart energy,1 +smart grid and renewable energy,0 +smart health,0 +"smart innovation, systems and technologies",1 +smart learning environments,1 +smart materials and structures,1 +smart materials in medicine,0 +smart medicine,0 +smart structures and systems,1 +smartmat,0 +smhi oceanografi,-1 +smith college studies in social work,1 +smithsonian,0 +smithsonian institution scholarly press,1 +smpte motion imaging journal,1 +smt-v,1 +smu law review: a publication of southern methodist university school of law,1 +sn business & economics,1 +sn comprehensive clinical medicine,1 +sn computer science,1 +sn operations research forum,1 +sn partial differential equations and applications,1 +sn social sciences,1 +snippets,1 +snorrastofa,1 +snow,-1 +sns förlag,1 +sobornost,1 +sobre prácticas artísticas y políticas de la edición,1 +soccer and society,1 +social analysis,3 +social and critical theory,1 +social and cultural geography,2 +social and cultural research,0 +social and environmental accountability journal,1 +social and legal studies,2 +social and personality psychology compass,1 +social anthropology,3 +social behavior and personality,1 +social change,1 +social choice and welfare,2 +social cognition,1 +social cognitive and affective neuroscience,2 +social compass,2 +social construction,0 +social development,1 +social dynamics: a journal of the centre for african studies university of cape town,1 +social enterprise journal,1 +social entrepreneurship review,0 +social epistemology,2 +social epistemology review and reply collective,1 +social europe,-1 +social evolution and history,1 +social forces,3 +social geography discussions,0 +social history,3 +social history of medicine,3 +social identities,1 +social inclusion,1 +social indicators research,2 +social influence,1 +social inquiry into well-being,0 +social interaction,1 +social justice research,1 +"social justice: a journal of crime, conflict and world order",1 +social kritik: tidsskrift for social analyse og debat,1 +social marketing quarterly,1 +social media + society,2 +"social movement studies: journal of social, cultural and political protest",2 +social network analysis and mining,1 +social networking,0 +social networks,3 +social neuroscience,1 +social philosophy and policy,2 +social policy and administration,2 +social policy and society,1 +social politics,3 +social problems,3 +social psychiatry and psychiatric epidemiology,2 +social psychological and personality science,2 +social psychological bulletin,1 +social psychological review,0 +social psychology,1 +social psychology of education,1 +social psychology quarterly,2 +social research,1 +social responsibility journal,1 +social science and medicine,3 +social science computer review,1 +social science history,2 +social science information sur les sciences sociales,1 +social science japan journal,1 +social science journal,1 +social science protocols,0 +social science quarterly,1 +social science research,2 +social science research network,-1 +social science review,1 +social science spectrum,1 +social sciences,0 +social sciences & humanities open,1 +social sciences - socialiniai,1 +social sciences academic press,1 +social sciences and missions,1 +social sciences directory,0 +social sciences in asia,1 +social scientist,1 +social security bulletin,1 +social semiotics,1 +social service review,1 +social studies of science,3 +social studies research & practice,1 +social text,2 +social theory and health,1 +social theory and practice,2 +social welfare : interdisciplinary approach,0 +social work,2 +social work and social sciences review,1 +social work and society,1 +social work education,1 +social work in health care,1 +social work in mental health,1 +social work in public health,1 +social work research,2 +social work with groups,1 +socialiniai tyrimai,0 +socialinis darbas. patirtis ir metodai,0 +socialinis ugdymas,0 +socialism and democracy,1 +socialist studies,1 +socialmedicinsk tidskrift,1 +socialnet international,-1 +socialvetenskaplig tidskrift,1 +socialʹno-političeskie issledovaniâ,0 +social’naâ politika i social’noe partnerstvo,1 +social’naâ politika i sociologiâ,1 +social’no-gumanitarnye znaniâ,1 +social’no-èkonomi?eskie âvleniâ i processy,1 +social’nye aspekty zdorov’â naseleniâ,1 +social’nye i gumanitarnye nauki na dal’nem vostoke,1 +sociální pedagogika,0 +sociedad de etnomusicología,1 +sociedad de la información,0 +sociedad española de acústica,0 +sociedad española de ciencias forestales,1 +sociedad española de paleopatología,0 +sociedad iberoamericana de gráfica digital,0 +sociedad mexicana de entomología,1 +sociedade e cultura,1 +societas sanctae birgittae,0 +societas scientiarum olomucensis ii,0 +societes,1 +societes et representations,1 +societies,0 +society,1 +society and animals,1 +society and business review,1 +society and natural resources,2 +society antiquaries of scotland,1 +society for global business & economic development,0 +society for imaging science and technology,0 +society for industrial and applied mathematics,1 +"society for mining, metallurgy and exploration",1 +society for modeling and simulation international,0 +society for underwater technology,1 +society of automotive engineers,1 +society of biblical literature,2 +society of digital information & wireless communications,0 +society of environmental toxicology and chemistry,1 +society of mathematics education,0 +society of motion picture and television engineers,0 +society of naval architects and marine engineers,1 +society of petroleum engineers,1 +society of plastics engineers,1 +society of sedimentary geology,1 +society register,1 +"society, health and vulnerability",1 +society. integration. education,1 +società di studi geografici,0 +società italiana marketing,0 +società romana di storia patria,0 +societàmutamentopolitica,1 +socio-ecological practice research,1 +socio-economic planning sciences,1 +socio-economic review,1 +socio-environmental systems modelling,0 +socio.hu,0 +sociobiology,1 +sociocriticism,1 +sociodinamika,0 +socioeconomic challenges,0 +socioekonomické a humanitnì studie,0 +sociolinguistic studies,1 +sociolinguistica: internationales jahrbuch fur europäische soziolinguistik,1 +sociolingvistika,0 +sociologi?eskij žurnal,1 +sociologi?eskoe obozrenie,0 +sociologia,1 +sociologia del diritto,1 +sociologia del lavoro,1 +sociologia e ricerca sociale,0 +sociologia internationalis,0 +sociologia on line,0 +sociologia ruralis,2 +sociologias,0 +sociologica,1 +sociological focus,1 +sociological forum,1 +sociological inquiry,2 +sociological methodology,2 +sociological methods and research,3 +sociological perspectives,1 +sociological quarterly,2 +sociological research online,1 +sociological review,3 +sociological science,1 +sociological spectrum,1 +sociological studies of children and youth,1 +sociological theory,3 +sociological theory and methods,1 +sociologicky casopis-czech sociological review,1 +sociologie,1 +sociologie du travail,1 +sociologies pratiques,0 +sociologija,1 +sociologija i prostor,1 +sociologija: mintis ir veiksmas,1 +sociologisk forskning,1 +sociologiâ goroda,1 +sociologiâ mediciny,1 +sociologiâ nauki i tehnologij,1 +sociologiâ obrazovaniâ,1 +sociologiâ vlasti,1 +"sociologiâ: metodologiâ, metody, matemati?eskoe modelirovanie",1 +sociologus,1 +sociology compass,1 +sociology of education,3 +sociology of health and illness,3 +sociology of islam,1 +sociology of religion,3 +sociology of sport journal,2 +sociology study,0 +sociology: the journal of the british sociological association,3 +sociopedia.isa,0 +socium i vlast’,1 +socius,1 +sociální práce,1 +sociální studia,0 +"société de l`electricité, de l`electronique et des technologies de l`information et de la communication",1 +société de législation comparée,1 +société européenne pour la formation des ingénieurs,1 +société française de littérature générale et comparée,0 +société française de radioprotection,0 +société pour l`étude du proche-orient ancien,1 +société royale de numismatique de belgique,1 +socìologìčnì studìï,0 +soekelys på arbeidslivet,1 +soft computing,1 +soft materials,1 +soft matter,2 +soft power,1 +soft robotics,2 +softcom,1 +softeng ...,1 +software and systems modeling,3 +software engineering and applications,1 +software engineering notes,0 +software impacts,1 +software quality journal,2 +software quality management conference,0 +software testing verification and reliability,1 +software-intensive cyber-physical systems,1 +software: practice and experience,2 +softwarex,1 +sohag journal of sciences,0 +soil,1 +soil & environmental health,1 +soil and sediment contamination,1 +soil and tillage research,2 +soil and water research,1 +soil biology,1 +soil biology and biochemistry,3 +soil dynamics and earthquake engineering,1 +soil ecology letters,1 +soil mechanics and foundation engineering,1 +soil organisms,0 +soil research,1 +soil science,1 +soil science and plant nutrition,1 +soil science annual,1 +soil science society of america journal,2 +soil systems,0 +soil use and management,1 +soils and foundations,1 +soils for europe,0 +soinin joulu,-1 +sola,1 +solar compass,1 +solar energy,2 +solar energy materials and solar cells,2 +solar physics,2 +solar rrl,1 +solar system research,1 +solar-terrestrial physics,0 +solas news,0 +soldering and surface mount technology,1 +soletras,1 +solfanelli editore,0 +solid earth,1 +solid earth discussions,0 +solid fuel chemistry,1 +solid mechanics and its applications,1 +solid state communications,1 +solid state ionics,1 +solid state nuclear magnetic resonance,1 +solid state phenomena,1 +solid state physics,1 +solid state sciences,1 +solid-state electronics,1 +solmu,0 +solombal`skaya tipografiya,0 +solomonoff memorial conference,0 +solubiologi,-1 +solum,1 +solvent extraction and ion exchange,1 +solvent extraction research and development: japan,1 +somatechnics,1 +somatosensory and motor research,1 +somnologie,1 +somogy éditions d´art,0 +sompio,-1 +songklanakarin journal of science and technology,0 +soochow journal of mathematics,1 +soome-ugri sõlmed,0 +sophi,1 +sophia,2 +sophia centre press,0 +sophia journal of european studies,0 +sorbcionnye i hromatograficheskie processy,0 +sorbifolia,0 +sorites: digital journal of analytical philosophy,1 +sort: statistics and operations research transactions,1 +sos-lapsikylä ry,0 +sosiaali- ja kuntatalous,-1 +sosiaali- ja terveysalan tilastollinen vuosikirja,0 +sosiaali- ja terveysministeriö,0 +sosiaali- ja terveysministeriön esitteitä,-1 +sosiaali- ja terveysministeriön julkaisuja,-1 +sosiaali- ja terveysministeriön raportteja ja muistioita,-1 +sosiaali- ja terveysturvan keskusliitto,0 +sosiaali- ja terveysturvan raportteja,0 +sosiaalibarometri,-1 +sosiaalilääketieteellinen aikakauslehti,2 +sosiaalipedagogiikka,1 +sosiaalipoliittisen yhdistyksen tutkimuksia,0 +sosiaalitieteiden laitoksen julkaisuja,-1 +sosiaalitieteiden laitoksen julkaisuja,0 +sosiaalityön tutkimuksen seura,0 +sosiaalivakuutus,-1 +sosiohumanika,0 +sosiologi i dag,1 +sosiologia,2 +sosnet julkaisuja,0 +soste suomen sosiaali ja terveys ry,0 +sosten julkaisuja,-1 +sosyal bilimler,1 +sosyoloji notları,1 +sotahistoriallinen aikakauskirja,1 +sotahuuto,-1 +sotainvaliidi,-1 +sotamuseon julkaisuja,-1 +sotilasaikakauslehti,0 +sotilaskoti,-1 +sotilaslääketieteen aikakauslehti,1 +sotilasperinteen seuran julkaisusarja,0 +sotilaspoika,-1 +sotsiaaltöö,-1 +sotsialnaia psikhologiia i obshchestvo,1 +sotsiologicheski problemi,1 +sotsiologicheskie issledovaniya,1 +"sotsiologija: teorija, metody, marketing",0 +sotsyal`naya i klinicheskaya psikhyatriya,0 +soudobe dejiny,1 +souls,1 +sound and vibration,1 +sound studies,2 +soundeffects,1 +soundings,0 +soundscape: the journal of acoustic ecology,1 +source code for biology and medicine,1 +source: notes in the history of art,2 +sources and studies in the history of mathematics and physical sciences,1 +sources for african history,1 +south african archaeological bulletin,1 +south african family practice,0 +south african geographical journal,1 +south african historical journal,2 +south african institute of mining and metallurgy,1 +south african journal for research in sport physical education and recreation,1 +south african journal of african languages,1 +south african journal of animal science,1 +south african journal of botany,1 +south african journal of business management,1 +south african journal of chemistry,0 +south african journal of childhood education,1 +south african journal of economic and management sciences,1 +south african journal of economics,1 +south african journal of education,1 +south african journal of enology and viticulture,1 +south african journal of geology,1 +south african journal of industrial engineering,1 +south african journal of information management,1 +south african journal of philosophy,1 +south african journal of psychiatry,1 +south african journal of psychology,0 +south african journal of science,1 +south african journal of surgery,1 +south african journal of wildlife research,1 +south african journal on human rights,1 +south african law journal,1 +south african music studies,1 +south african statistical journal,1 +south american journal of herpetology,1 +south asia economic journal,1 +south asia multidisciplinary academic journal,-1 +south asia research,1 +south asia-journal of south asian studies,1 +south asian diaspora,1 +south asian journal of business and management cases,1 +south asian journal of business studies,1 +south asian journal of management,0 +south asian journal of tourism and heritage,0 +south asian popular culture,1 +south asian review,1 +south atlantic quarterly,3 +south atlantic review,1 +south central review,0 +south dakota review,1 +south east asia research,1 +south east european research center,0 +south european society and politics,1 +south-east european forestry,0 +southampton solent university,0 +southeast asia,0 +southeast asia early childhood journal,1 +southeast asian bulletin of mathematics,1 +southeast asian journal of stem education,0 +southeast asian journal of tropical medicine and public health,1 +southeast asian studies,0 +southeast european and black sea studies,1 +southeast university press,0 +southeastern naturalist,1 +southerly: a review of australian literature,1 +southern african humanities,0 +southern african institute of mining and metallurgy,0 +southern african journal of hiv medicine,1 +southern african linguistics and applied language studies,1 +southern african public law,1 +southern african-nordic centre,0 +southern california interdisciplinary law journal,1 +southern california law review,1 +southern cultures,1 +southern economic journal,1 +southern forests,1 +southern humanities review,1 +southern illinois university press,1 +southern journal of applied forestry,1 +southern journal of philosophy,3 +southern literary journal,1 +southern medical journal,1 +southern methodist university press,1 +southern quarterly: a journal of the arts in the south,1 +southwest review of international business research,0 +southwestern entomologist,1 +southwestern historical quarterly,0 +southwestern mass communication journal,1 +southwestern naturalist,1 +soveli,-1 +soveltavan kielentutkimuksen keskus,0 +sovet rektorov,0 +soviet and post soviet review,2 +sovremennaja evropa,1 +sovremennaâ zarubežnaâ psihologiâ,1 +sovremennaâ èlektrometallurgiâ,0 +sovremennoe doškolʹnoe obrazovanie : teoriâ i praktika,0 +sovremennye issledovaniâ social?nyh problem,1 +sovremennye problemy distancionnogo zondirovaniya zemli iz kosmosa,0 +sovremennye tehnologii v medicine,1 +soziale arbeit,0 +soziale systeme: zeitschrift fur soziologische theorie,1 +soziale welt: zeitschrift fur sozialwissenschaftliche forschung und praxis,1 +sozialer fortschritt,1 +sozialpolitik.ch,0 +soziologische revue,0 +södertörn academic studies,1 +sp rapport,0 +space,0 +space and culture,2 +space and polity,1 +space communications,1 +space policy,1 +space science reviews,3 +space technology centre,0 +space weather: the international journal of research and applications,1 +spaces & flows,0 +spafa journal,1 +spal,1 +spandugino,0 +spanish in context,2 +spanish journal of agricultural research,1 +spanish journal of marketing - esic,1 +spanish journal of psychology,1 +spartacus,1 +spatia,-1 +spatial and spatio-temporal epidemiology,1 +spatial cognition and computation,1 +spatial economic analysis,1 +spatial statistics,1 +spazio filosofico,0 +spck publishing,0 +spe drilling & completion,1 +spe journal,2 +spe polymers,1 +spe production and operations,1 +spe reservoir evaluation and engineering,1 +speak out!,-1 +special care in dentistry,1 +special conference series : academy of marketing science,0 +special matrices,1 +special papers in palaeontology series,1 +special papers of the geological society of america,1 +special publication: royal numismatic society,1 +special workshop of stochastic programming community,0 +specializzazione,-1 +specialpedagogiska skolmyndigheten,0 +specialusis ugdymas,0 +specimina fennica,-1 +spector books,0 +spectral analysis review,0 +spectrochimica acta part a: molecular and biomolecular spectroscopy,1 +spectrochimica acta part b: atomic spectroscopy,1 +spectroscopy,1 +spectroscopy and spectral analysis,1 +spectroscopy europe,0 +spectroscopy journal,0 +spectroscopy letters,1 +spectroscopy: an international journal,1 +spectrum hungarologicum,1 +speculum: a journal of medieval studies,3 +speech communication,2 +speech prosody,1 +"speech, language and hearing",1 +speedway-sanomat,-1 +spek tutkii,-1 +speki : nordic philosophy and education review,0 +spektrum der augenheilkunde,1 +spell : swiss papers in english language and literature,1 +spenser studies,1 +spermatogenesis,1 +sphera pública,0 +sphinx,0 +spie,1 +spiegel der letteren,2 +spiel: siegener periodicum zur internationalen empirischen literaturwissenschaft,1 +spill science and technology bulletin,1 +spin,-1 +spin,0 +spinal cord,1 +spinal cord series and cases,1 +spine,3 +spine deformity,1 +spine journal,2 +spinifex press,0 +spirale,0 +spirit,-1 +spiritus: a journal of christian spirituality,1 +spirium,-1 +spisanie na bʺlgarskoto geologičesko družestvo,0 +spixiana,1 +spon press,1 +spor bilimleri dergisi,0 +spor hekimliği dergisi,0 +sport education and society,2 +sport history review,1 +sport in history,2 +sport in society,1 +sport management review,1 +sport marketing quarterly,1 +sport psychologist,1 +sport sciences for health,1 +sport supplement,-1 +"sport und gesellschaft: zeitschrift fur sportsoziologie, sportphilosophie, sportokonomie, sportgeschichte",1 +"sport, business and management",1 +"sport, ethics and philosophy",1 +"sport, exercise, and performance psychology",1 +sporto mokslas,0 +sportpadagogik,1 +sports,0 +sports biomechanics,1 +sports coaching review,1 +sports engineering,1 +sports health,1 +"sports law, policy & diplomacy journal",1 +sports medicine,3 +sports medicine - open,1 +sports medicine and arthroscopy review,1 +sports medicine and health science,0 +sports medicine bulletin,-1 +sports medicine standards and malpractice reporter,1 +sportscience,1 +sportunterricht,1 +sportverletzung-sportschaden,1 +sportwissenschaft,1 +sportzeit,1 +sprache im technischen zeitalter,1 +sprache-stimme-gehor,1 +sprache: zeitschrift fur sprachwissenschaft,1 +sprachkunst: beitrage zur literaturwissenschaft,1 +sprachreport,-1 +sprachtheorie und germanistische linguistik,1 +sprachwissenschaft,1 +sprawozdania archeologiczne,1 +språktidningen,-1 +spreadsheets in education,1 +spring,0 +spring : tidskrift for moderne dansk litteratur,1 +spring university: changing education in a changing society,1 +springer,2 +springer gabler,1 +springer monographs in mathematics,1 +springer proceedings in advanced robotics,1 +springer proceedings in business and economics,0 +springer proceedings in complexity,0 +springer proceedings in earth and environmental sciences,1 +springer proceedings in materials,0 +springer proceedings in mathematics & statistics,1 +springer proceedings in physics,0 +springer publishing company,1 +springer science+business media,2 +springer series in materials science,1 +springer series in optical sciences,1 +springer spektrum,1 +springer tracts in advanced robotics,1 +springer tracts in modern physics,1 +springer vs,1 +springerbriefs in applied sciences and technology,1 +springerbriefs in archaeology,1 +springerbriefs in astronomy,1 +springerbriefs in business,1 +springerbriefs in complexity,1 +springerbriefs in computer science,1 +springerbriefs in criminology,1 +springerbriefs in economics,1 +springerbriefs in education,1 +springerbriefs in electrical and computer engineering,1 +springerbriefs in mathematical physics,1 +springerbriefs in molecular science,1 +springerbriefs in philosophy,1 +springerbriefs in physics,1 +springerbriefs in political science,1 +springerbriefs in religious studies,1 +springerbriefs in statistics,1 +springerbriefs in well-being and quality of life research,1 +springerbriefs on pdes and data science,1 +springerplus,1 +sprogforum,1 +språk i norden,1 +språk och interaktion,1 +språk och stil: tidskrift för svensk språkforskning,2 +språkbruk,-1 +spurbuchverlag,0 +spurensuche,0 +sqs : suomen queer-tutkimuksen seuran lehti,1 +sravnitel'naya politika,0 +sredneje professionalnoe obrazovanie,0 +srpska revija za evropske studije,1 +sskh meddelanden,-1 +sskh notat,0 +sskh skrifter,0 +ssm : mental health,1 +ssm : population health,1 +ssm : qualitative research in health,0 +st andrews encyclopaedia of theology,1 +st petersburg mathematical journal,1 +st!chwort,-1 +st. antony's international review,1 +st. jerome publishing,1 +st. martins press,1 +st. nersess theological review,1 +st. petersburg center for the history of ideas,0 +st. petersburg state university of economics,0 +st. petersburg university press,1 +st. petersburgskij gosudarstvenny`j politexnicheskij universitet,0 +st. petersburgskij gosudarstvenny`j universitet,0 +st. petersburgskij gumanitarny`j universitet profsoyuzov,0 +st. sunniva,0 +stability,1 +stadion,1 +stadsgeschiedenis,1 +stahl und eisen,1 +stal: sciences et techniques de lanimal de laboratoire,1 +stand,1 +standort,1 +standpunkt : sozial,0 +stanford encyclopedia of philosophy,2 +stanford journal of international law,1 +stanford law review,3 +stanford slavic studies,0 +stanford university press,3 +stapp car crash journal,1 +staps : sciences et techniques des activités physiques et sportives,1 +star protocols,1 +star-dundee,0 +starch-starke,1 +starickaya tipografiya,0 +staryj sad,0 +stasis,1 +stat,1 +stata journal,1 +state archives of assyria bulletin,1 +state crime,1 +state of the planet,0 +state politics and policy quarterly,1 +state research center of the russian federation,0 +state university of new york press,2 +statelessness & citizenship review,1 +statens offentliga utredningar,-1 +statens offentliga utredningar,0 +statistica,1 +statistica applicata,1 +statistica e applicazioni,1 +statistica neerlandica,1 +statistica sinica,2 +statistical analysis and data mining,1 +statistical applications in genetics and molecular biology,1 +statistical inference for stochastic processes,1 +statistical journal of the iaos,1 +statistical methodology,1 +statistical methods and applications,1 +statistical methods in medical research,3 +statistical modelling,1 +statistical papers,1 +statistical science,2 +statistics,1 +statistics and applications,1 +statistics and computing,2 +statistics and its interface,1 +statistics and probability letters,1 +statistics and public policy,1 +statistics and risk modeling,1 +statistics education research journal,1 +statistics in biopharmaceutical research,1 +statistics in biosciences,1 +statistics in medicine,2 +statistics in transition new series,1 +statistics lithuania,0 +statistics surveys,1 +"statistics, optimization & information computing",0 +stato e mercato,1 +stats,1 +statsbiblioteket,0 +statsvetenskaplig tidskrift,1 +statute law review,1 +stauffenburg verlag,0 +steel and composite structures,1 +steel construction - design and research,1 +steel grips journal of steel and related materials,1 +steel in translation,1 +steel research international,1 +stefania guerra,0 +steiner schools fellowship publications,0 +steinerkasvatus,-1 +stellenbosch papers in linguistics,1 +stellenbosch papers in linguistics plus,1 +stem cell discovery,0 +stem cell reports,2 +stem cell research,1 +stem cell research & therapy,1 +stem cell reviews and reports,1 +stem cell studies,1 +stem cells,3 +stem cells and development,1 +stem cells international,1 +stem cells translational medicine,2 +stem education,0 +stemma: sciences techniques et methodologies modernes appliquees à lantiquite,1 +"stepp: socialinė teorija, empirija, politika ir praktika",1 +stereotactic and functional neurosurgery,1 +sternberg press,0 +steroids,1 +steuer und wirtschaft,1 +stewart postharvest review,0 +sti policy review,0 +stichting lezen reeks,0 +stichting werkgroep adelsgeschiednis,0 +stiftelsen marknadstekniskt centrum,0 +stiftelsen pro artibus,0 +stigma and health,1 +stiiknafuulia,-1 +stochastic analysis and applications,1 +stochastic environmental research and risk assessment,1 +stochastic modelling and applications,1 +stochastic models,1 +stochastic processes and their applications,2 +stochastic systems,1 +stochastics and dynamics,1 +stochastics and partial differential equations,1 +stochastics: an international journal of probability and stochastic processes,1 +stockholm centre for commercial law: skriftserien,0 +stockholm contributions in military-technology,0 +stockholm institute for scandinavian law,0 +stockholm slavic studies,1 +stockholm university press,1 +stockholmer germanistische forschungen,0 +stockholmia förlag,0 +stockholms konstnärliga högskola,0 +stockholms universitet,0 +stofnun árna magnússonar í íslenskum fræðum,0 +stomatologija,1 +stoori,-1 +storia del pensiero politico,1 +storia dell arte,1 +storia della storiografia,1 +storica,1 +storicamente,1 +storyworlds,2 +stowarzyszenie pro cultura litteraria,0 +stowarzyszenie techniczne odlewnikow polskich,0 +strabismus,1 +strad,0 +strahlentherapie und onkologie,1 +strain,1 +strandberg publishing,0 +strani jezici,1 +strani pravni život,1 +strata,1 +strategic analysis of the institute for defence studies and analysis,2 +strategic behavior and the environment,1 +strategic change,1 +strategic design research journal,1 +strategic direction,0 +strategic entrepreneurship journal,3 +strategic management journal,3 +strategic management review,1 +strategic organization,2 +strategic survey,1 +strategy and leadership,1 +strategy science,1 +strathmore law journal,1 +stratigraphy,1 +stratigraphy and geological correlation,1 +stratum plus,1 +street art & urban creativity,1 +strength and conditioning journal,1 +strength of materials,1 +"strength, fracture and complexity",1 +stress and health,1 +stress: the international journal on the biology of stress,1 +streven,0 +strides in development of medical education,0 +stridon,1 +stroemfeld verlag,1 +stroitel´stvo unikalnyh zdanij i sooruženij,0 +strojarstvo,1 +strojniski vestnik-journal of mechanical engineering,1 +stroke,3 +stroke : vascular and interventional neurology,1 +stroke and vascular neurology,1 +stroke research and treatment,1 +strokovna in znanstvena dela,0 +structural and multidisciplinary optimization,2 +structural change and economic dynamics,1 +structural chemistry,1 +structural concrete,1 +structural control and health monitoring,1 +structural design of tall and special buildings,1 +structural dynamics,2 +structural engineer,1 +structural engineering and mechanics,1 +structural engineering international: journal of the international association for bridge and structural engineering,1 +structural equation modeling: a multidisciplinary journal,1 +structural health monitoring: an international journal,1 +structural heart,1 +structural safety,3 +structure,2 +structure and bonding,1 +structure and infrastructure engineering,1 +structures,1 +structures and functions,-1 +strumenti critici,1 +strzemiński academy of art,0 +strålsäkerhetsmyndigheten,0 +sts encounters,1 +student engagement in higher education journal,1 +studentlitteratur,1 +studera press,0 +studi cassinati,0 +studi classici e orientali,1 +studi culturali,0 +studi danteschi,1 +studi di erudizione e di filologia italiana,1 +studi di filologia italiana,1 +studi di grammatica italiana,1 +studi di lessicografia italiana,1 +studi di sociologia,1 +studi di storia medioevale e di diplomatica,1 +studi e materiali di storia delle religioni,1 +studi e problemi di critica testuale,1 +studi e saggi linguistici,1 +studi ecumenici,0 +studi emigrazione,1 +studi epigrafici e linguistici sul vicino oriente antico,1 +studi etruschi,1 +studi finno-ugrici,1 +studi francesi,1 +studi italiani,0 +studi italiani di filologia classica,1 +studi italiani di linguistica teorica e applicata,1 +studi kantiani,1 +studi linguistici italiani,1 +studi medievali,2 +studi medievali e umanistici,1 +studi melitensi,0 +studi micenei ed egeo anatolici,1 +studi musicali,1 +studi novecenteschi: rivista semestrale di storia della letteratura italiana contemporanea,1 +studi petrarcheschi,1 +studi piemontesi,1 +studi rinascimentali,1 +studi romani,1 +studi secenteschi,1 +studi storici,1 +studi sul boccaccio,1 +studi sul settecento e lottocento,1 +studi sull'aristotelismo medievale (secoli vi-xvi),1 +studi sulla questione criminale,1 +studi tassiani,1 +studi verdiani,1 +studia academica slovaca,0 +studia anglica posnaniensia: an international review of english studies,1 +studia antiqua et archeologica,1 +studia archaeologica brunensia,1 +studia archaeologica ostrobotniensia,1 +studia biographica,1 +studia canonica,1 +studia celtica,1 +studia celtica fennica,1 +studia ceranea,0 +studia classica et neolatina,0 +studia comeniana et historica,1 +studia diplomatica,0 +studia dipterologica,1 +studia et documenta historiae et iuris,1 +studia etymologica cracoviensia,1 +studia europejskie,1 +studia fennica anthropologica,2 +studia fennica ethnologica,2 +studia fennica folkloristica,2 +studia fennica historica,2 +studia fennica linguistica,2 +studia fennica litteraria,2 +studia geophysica et geodaetica,1 +studia geotechnica et mechanica,0 +studia grammatica,1 +studia hegeliana,-1 +studia heideggeriana,-1 +studia hibernica,1 +studia historica lundensia,1 +studia historica septentrionalia,1 +studia historica slovenica,1 +"studia historica, historia medieval",1 +"studia historica, historia moderna",1 +studia humana,1 +studia humaniora ouluensia,1 +studia humanitatis borealis,1 +studia in veteris testamenti pseudepigrapha,1 +studia iranica,1 +studia islamica,3 +studia islandica,1 +studia judaica,1 +studia leibnitiana,1 +studia linguistica,2 +studia linguistica germanica,1 +studia linguistica romanica,1 +studia litteraria et historica,1 +studia litterarum,1 +studia liturgica,2 +studia logica,1 +studia lusitanica,1 +studia mathematica,1 +studia metrica et poetica,1 +studia migracyjne przegląd polonijny,1 +studia missiologica et oecumenica fennica,1 +studia missionalia,1 +studia monastica,1 +studia moralia,1 +studia multiethnica upsaliensia,1 +studia musica,0 +studia musicologica,1 +studia musicologica norvegica,1 +studia neoaristotelica,1 +studia neophilologica,1 +studia nordica,1 +studia oeconomica posnaniensia,0 +studia oecumenica,1 +studia orientalia,1 +studia orientalia electronica,1 +studia paedagogica,1 +studia patristica,2 +studia patristica fennica,1 +studia periegetica,0 +studia phaenomenologica,1 +studia philonica annual,1 +studia philosophiae christianae,1 +studia philosophica estonica,1 +studia poradoznawcze,0 +studia prawa publicznego,-1 +studia psychologica,1 +studia quaternaria,0 +studia regionalne i lokalne,0 +studia religiosa rossica: naučnyj žurnal o religii,0 +studia rhetorica lundensia,0 +studia romanica et anglica zagrabiensia,1 +studia romanica posnaniensia,1 +studia romanica upsaliensia,1 +studia rosenthaliana,1 +studia russica helsingiensia et tartuensia,1 +studia scandinavica,1 +studia scientiarum mathematicarum hungarica,1 +studia semiotica: series practica,1 +studia semiotyczne,1 +studia slavica,1 +studia slavica et balcanica petropolitana,1 +studia socjologiczne,1 +studia spinozana,1 +studia theologica,1 +studia theologica : nordic journal of theology,3 +studia translatorica,0 +studia turcologica cracoviensia,1 +studia turistica,0 +"studia universitatis ""babeş-bolyai"" : digitalia",1 +studia universitatis babeş-bolyai : bioethica,0 +studia universitatis babeş-bolyai : chemia,0 +studia universitatis babeş-bolyai : mathematica,0 +studia universitatis babeş-bolyai : philologia,1 +studia universitatis babeş-bolyai : philosophia,0 +studia universitatis babeş-bolyai : theologia catholica latina,1 +studia universitatis babeş-bolyai historia,0 +studia uralica upsaliensia,1 +studia uralo-altaica,1 +studia vernacula,0 +studia z filologii polskiej i slowiaoskiej,1 +studia z historii filozofii,1 +studia z polityki publicznej,1 +studia z prawa wyznaniowego,1 +studia zródłoznawcze,1 +studica historica upsaliensis: underserie av: acta universitatis upsaliensis,1 +studie z aplikované lingvistiky,1 +studiecentrum voor kernenergie,0 +studiehäfte till årsboken horisont,-1 +studien und texte zu antike und christentum,2 +studien zur altagyptischen kultur,1 +studien zur aussereuropaischen christentumsgeschichte,1 +studien zur deutschen grammatik,1 +studien zur osterreichischen philosophie,1 +studien zur sachsenforschung,1 +studientexte zur sprachkommunikation,0 +studienverlag,1 +studier fra sprog- og oldtidsforskning,1 +studier i de samhällsvetenskapliga ämnenas didaktik,0 +studier i nordisk filologi,1 +studies for the learning society,1 +studies in 20th and 21th century,1 +studies in african languages and cultures,1 +studies in african linguistics,2 +studies in agricultural economics,1 +studies in american fiction,2 +studies in american indian literatures,2 +studies in american jewish literature,1 +studies in american naturalism,1 +studies in american political development,1 +studies in ancient magic and divination,2 +studies in applied mathematics,1 +studies in art education,2 +studies in asian art and archaeology,1 +studies in bibliography,1 +studies in bilingualism,1 +studies in canadian literature-etudes en litterature canadienne,1 +studies in central european histories,1 +studies in chinese learning and teaching,0 +studies in chinese linguistics,1 +studies in christian ethics,2 +studies in christian mission,1 +studies in church history,1 +studies in comics,1 +studies in communication sciences,1 +studies in comparative and international education,1 +studies in comparative international development,2 +studies in conflict and terrorism,1 +studies in conservation,2 +studies in contemporary islam,1 +studies in contemporary phenomenology,1 +studies in continuing education,1 +studies in corpus linguistics,1 +studies in costume & performance,2 +studies in critical social sciences,1 +studies in documentary film,2 +studies in east european thought,1 +studies in eastern european cinema,1 +studies in economics and finance,0 +studies in educational evaluation,1 +studies in eighteenth century culture,1 +studies in english literature 1500-1900,2 +studies in ethics,3 +"studies in ethics, law, and technology",1 +studies in ethnicity and nationalism,1 +studies in eu external relations,1 +studies in european cinema,2 +studies in family planning,1 +studies in french cinema,1 +studies in functional and structural linguistics,1 +studies in gender and sexuality,1 +studies in generative grammar,1 +studies in gothic fiction,1 +studies in graduate and postdoctoral education,1 +studies in health technology and informatics,1 +studies in higher education,3 +studies in hispanic and lusophone linguistics,2 +studies in history,1 +studies in history and philosophy of biological and biomedical sciences,2 +studies in history and philosophy of modern physics,2 +studies in history and philosophy of science part a,3 +studies in hogg and his world,1 +studies in iconography,1 +studies in informatics and control,1 +studies in interactional sociolinguistics,1 +studies in international institutional dynamics,1 +studies in interreligious dialogue,1 +studies in jewish history and culture,1 +studies in language,3 +studies in language assessment,1 +studies in language variation,1 +studies in late antiquity,1 +studies in latin american popular culture,1 +"studies in law, politics, and society",1 +studies in linguistics of the volga region,1 +"studies in logic, grammar and rhetoric",1 +studies in material thinking,0 +studies in media and communication,0 +studies in musical theatre,1 +studies in mycology,3 +studies in nonlinear dynamics and econometrics,1 +studies in philology,2 +studies in philosophy,3 +studies in philosophy and education,2 +studies in popular culture,1 +studies in qing history,1 +studies in reformed theology,2 +"studies in religion, secular beliefs and human rights",1 +studies in religion-sciences religieuses,1 +studies in romanticism,3 +studies in russian and soviet cinema,1 +studies in science education,3 +studies in second language acquisition,3 +studies in second language learning and teaching,1 +studies in semitic languages and linguistics,1 +studies in short fiction,1 +studies in slavic and general linguistics,1 +studies in social and political thought,0 +studies in social justice,1 +studies in south asian film and media,1 +studies in spanish & latin-american cinemas,1 +studies in spirituality,1 +studies in surface science and catalysis,1 +studies in symbolic interaction,1 +studies in textile and costume history,1 +studies in the age of chaucer,2 +studies in the aramaic interpretation of scripture,1 +studies in the education of adults,1 +studies in the history of art,1 +studies in the history of christian traditions,2 +studies in the history of gardens and designed landscapes,1 +studies in the history of the language sciences,1 +studies in the humanities,1 +studies in the literary imagination,2 +studies in the maternal,1 +studies in the novel,3 +studies in the reception history of the bible,1 +studies in theatre and performance,2 +studies in travel writing,2 +"studies in variation, contacts and change in english",1 +studies in visual arts and communication,1 +studies in world christianity,1 +studies in world language problems,1 +studies of psychology and behavior,0 +studies of religion in africa,1 +studies of the netherlands institute for war documentation,1 +studies of transition states and societies,1 +studies on contemporary asia,0 +studies on ethno-medicine,0 +studies on language acquisition,1 +studies on national movements,1 +studies on neotropical fauna and environment,1 +studies on religion and memory,0 +studies on russian economic development,1 +studies on the children of abraham,1 +studies on the inner asian languages,1 +studies on the law of treaties,1 +studies on the texts of the desert of juda,1 +"studii de limbă, literatură şi metodică",0 +studii de lingvistica,1 +studii si cercetari de istorie veche si arheologie,1 +studii si cercetari de onomastica si lexicologie,0 +studii si cercetari filologice: seria limbi romanice,0 +studii si cercetari lingvistice,1 +studii şi cercetări ştiinţifice,1 +studio publication,-1 +studium,0 +studium educationis,0 +studium: tijdschrift voor wetenschaps- en universiteitsgeschiedenis,1 +study abroad research in second language acquisition and international education,1 +studying teacher education,1 +stuk-a,-1 +style,2 +stylus,-1 +styria multi media men gmbh & co kg thomas findler,0 +stämpfli verlag,0 +su ürünleri dergisi,0 +"sub lupa, wydawnictwo naukowe",0 +sub-saharan publishers,1 +subaru,-1 +subjectivity: international journal of critical psychology,1 +substance,3 +substance abuse,1 +"substance abuse treatment, prevention, and policy",1 +substance use and misuse,1 +subterranean biology,1 +suchttherapie,0 +sud-ouest europeen,1 +sudan journal of agricultural research,0 +sudhoffs archiv,1 +sudura,0 +sued management oy,0 +suek ry,-1 +suffolk institute of archaeology and history,1 +sugar tech,1 +sugia sprache und geschichte in afrika,1 +suhayl,1 +suhrkamp,2 +suicide and life-threatening behavior,1 +suicidology online,1 +sukeltaja,-1 +sukujotos,-1 +sukupuolentutkimus,1 +sukuri,-1 +sukuset,-1 +sukuside,-1 +sulasol,-1 +sulkava,-1 +sumer,1 +summa,0 +summary of proceedings,-1 +summary of the bulletin of the international seismological centre,0 +sumo conference proceedings,0 +sun and geosphere,0 +sungkyun journal of east asian studies,1 +suo,0 +suojärven pitäjäseura,0 +suomalainen espanjassa,-1 +suomalainen kivi,-1 +suomalainen lakimiesyhdistys,1 +suomalainen metodologiayhdistys,0 +suomalainen tiedeakatemia,2 +suomalais-ugrilainen seura,1 +suomalais-ugrilaisen seuran aikakauskirja,1 +suomalais-ugrilaisen seuran kansatieteellisiä julkaisuja,0 +suomalais-ugrilaisen seuran toimituksia,2 +suomalaisen elokuvan festivaali,-1 +suomalaisen kirjallisuuden seura,2 +suomalaisen kirjallisuuden seuran toimituksia,2 +suomalaisen lakimiesyhdistyksen julkaisuja : b-sarja,-1 +suomalaisen lakimiesyhdistyksen julkaisuja : c-sarja,-1 +suomalaisen lakimiesyhdistyksen julkaisuja a-sarja,1 +suomalaisen lakimiesyhdistyksen julkaisuja. e-sarja,0 +suomalaisen lasin vuosikirja,-1 +suomalaisen teologisen kirjallisuusseuran julkaisuja,1 +suomalaisen tiedeakatemian vuosikirja,0 +suomalaisen työn liitto,0 +suomalaiset euroopassa,-1 +suomen ainedidaktinen tutkimusseura,0 +suomen akatemia,0 +suomen antropologi,2 +suomen antropologinen seura,0 +suomen apteekkarilehti,-1 +suomen arkeoastronomisen seuran julkaisuja,-1 +suomen arkeologinen seura,0 +suomen arvostelijain liitto ry,0 +suomen asiakkuusmarkkinointiliitto,0 +suomen audiologian yhdistys ry,0 +suomen autolehti,-1 +suomen automaatioseura,0 +suomen avantgarden ja modernismin seuran julkaisuja,0 +suomen bioenergiayhdistys ry,0 +suomen biologian seura vanamo ry,0 +suomen briard,-1 +suomen bysanttikomitea ry,0 +suomen egyptologinen seura ry,0 +suomen eläinlääkärilehti,1 +suomen eläinlääkäriliiton luentokokoelma,-1 +suomen etnomusikologisen seuran julkaisuja,0 +suomen ev.-lut. kirkon julkaisuja : kirkko ja toiminta,-1 +suomen ev.-lut. kirkon tutkimusjulkaisuja,1 +suomen filosofinen yhdistys ry,1 +suomen geoteknillinen yhdistys ry,0 +suomen haavanhoitoyhdistys ry,0 +suomen hammaslääkärilehti,1 +suomen harjoittelukoulujen julkaisu,0 +suomen historiallinen seura ry,0 +suomen humanistiliitto,0 +suomen ilmastopaneelin julkaisuja,-1 +suomen itämaisen seuran suomenkielisiä julkaisuja,1 +suomen jazz & pop arkisto,0 +suomen joogalehti,-1 +suomen kalastuslehti,-1 +suomen kansantietouden tutkijain seura ry,0 +suomen kasvatuksen ja koulutuksen historian seura,0 +suomen kasvatus- ja perheneuvontaliitto,0 +suomen keskiajan arkeologian seura ry,0 +suomen kielen seura,0 +suomen kiinteistölehti,-1 +suomen kilpailuoikeudellinen yhdistys,0 +suomen kirkkohistoriallisen seuran toimituksia,1 +suomen kirkkohistoriallisen seuran vuosikirja,1 +suomen kotiseutuliiton julkaisusarja,-1 +suomen kulttuuriperintökasvatuksen seura,0 +suomen kuntaliitto,0 +suomen kuvalehti,-1 +suomen käsityön museo,0 +suomen käyttäytymistieteellinen tutkimuslaitos,0 +suomen kääntäjien ja tulkkien liitto ry,0 +suomen lastenneurologinen yhdistys ry,0 +suomen lehdistö,-1 +suomen luonto,-1 +suomen luontopaneelin julkaisuja,0 +suomen lähetysseura ry,0 +suomen lääketilasto,-1 +suomen lääkärilehti. eripainos,1 +suomen lääkäriliitto,0 +suomen maantieteellinen seura,0 +suomen maatalousmuseo sarka,0 +suomen maataloustieteellinen seura,0 +suomen maataloustieteellisen seuran tiedote,0 +suomen metsästysmuseon julkaisuja,-1 +suomen muinaismuistoyhdistyksen aikakauskirja,1 +suomen muinaismuistoyhdistys,1 +suomen museo - finskt museum,1 +suomen museoliiton julkaisuja,-1 +suomen museoliitto ry,0 +suomen musiikkikirjastoyhdistyksen julkaisusarja,-1 +suomen oppihistoriallinen seura,1 +suomen ortodoksisen kulttuurikeskuksen säätiö,0 +suomen ortopedia ja traumatologia,-1 +suomen pankin keskustelualoitteita,-1 +suomen pankki,0 +suomen patristinen seura,0 +suomen pelastusalan keskusjärjestö ry,0 +suomen perusta,0 +suomen pipliaseura ry.,0 +suomen poliisilehti & poliisiurheilu,-1 +suomen rahahistoria,-1 +suomen rakennusinsinöörien liitto ry.,0 +suomen rakennusmedia oy,0 +suomen rakennustaiteen museo,0 +suomen rauhantutkimusyhdistys ry,0 +suomen riista,1 +suomen sahayrittäjät,-1 +suomen sairaanhoitajaliitto ry,0 +suomen sammalseura ry,0 +suomen siipikarja,-1 +suomen silta,-1 +suomen sotatieteellinen seura ry,0 +suomen sotilas,-1 +suomen sukututkimusseuran julkaisuja,-1 +suomen sukututkimusseuran vuosikirja,1 +suomen syöpäyhdistys ry,0 +suomen taideyhdistys,0 +suomen tekniikan historia,1 +suomen telelääketieteen ja e-health seura ry,0 +suomen teologinen instituutti,0 +suomen tiedeseura,1 +suomen tieteellisen kirjastoseuran julkaisuja,-1 +suomen tietokirjailijat ry,0 +suomen tilastoseura ry,0 +suomen tilastoseuran julkaisuja,-1 +suomen tilastoseuran vuosikirja,0 +suomen toimikunta euroopan turvallisuuden edistämiseksi,0 +suomen toivo -ajatuspaja,0 +suomen turku,-1 +suomen urheiluhistoriallisen seuran julkaisusarja,0 +suomen urheiluhistoriallisen seuran vuosikirja,1 +suomen urheilumuseosäätiön tutkimuksia,-1 +suomen valokuvataiteen museon julkaisuja,-1 +suomen valokuvataiteen museon säätiö,0 +suomen valtio,0 +suomen vanhan kirjallisuuden päivät,0 +suomen varhaiskasvatus,0 +suomen vesilaitosyhdistyksen monistesarja,-1 +suomen virallinen tilasto,-1 +suomen yk-liitto ry,0 +suomen ylioppilaskuntien liitto ry,0 +suomen ympäristökeskuksen raportteja,-1 +suomen ympäristökeskus,0 +suomen ympäristöoikeustieteen seura ry,0 +suomen ympäristöoikeustieteen seuran julkaisuja,0 +suomenhevonen,-1 +suomenmaa,-1 +suomenopettajat,-1 +suomenselän sanomat,-1 +suomi,1 +suomi merellä,-1 +suomi-mongolia-seuran jäsenlehti,0 +suomi-puola,-1 +suomi-ranska yhdistysten liiton nuorisotoimikunta ry,0 +suomi-unkari,-1 +suomi-venäjä-seura,0 +suoseura ry,0 +super,-1 +superconductivity,1 +superconductor science and technology,1 +superlattices and microstructures,1 +supplementary volume - aristotelian society,1 +supplements to novum testamentum,2 +supplements to the journal for the study of judaism,3 +supply chain analytics,1 +supply chain effect,0 +supply chain forum: an international journal,1 +supply chain management: an international journal,2 +support for learning,1 +supportive care in cancer,1 +supra arcadiam aurora,0 +supramolecular chemistry,1 +suprema gráfica e editora,0 +supreme court economic review,1 +supreme court review,1 +supsi scuola universitaria professionale,0 +sur le journalisme,1 +surdus historicus,-1 +surface and coatings technology,2 +surface and interface analysis,1 +surface engineering,1 +surface engineering and applied electrochemistry,1 +surface innovations,1 +"surface investigation : x-ray, synchrotron and neutron techniques",1 +surface review and letters,1 +surface science,1 +surface science reports,3 +surface science spectra,1 +surface topography,1 +surfaces,0 +surfaces and interfaces,1 +surgeon: journal of the royal colleges of surgeons of edinburgh and ireland,1 +surgeries,0 +surgery,0 +surgery,2 +surgery for obesity and related diseases,2 +surgery in practice and science,1 +surgery journal,1 +surgery today,1 +surgery: current research,0 +surgical and radiologic anatomy,1 +surgical case reports,0 +surgical clinics of north america,1 +surgical endoscopy and other interventional techniques,2 +surgical infections,1 +surgical innovation,1 +surgical laparoscopy endoscopy and percutaneous techniques,1 +surgical neurology international,1 +surgical oncology,1 +surgical oncology clinics of north america,1 +surgical practice,1 +surrey archaeological collections,1 +surveillance and society,2 +survey methodology,1 +survey of ophthalmology,1 +survey practice,-1 +survey research methods,1 +survey review,1 +surveying and built environment,0 +surveys in geophysics,2 +surveys in operations research and management science,1 +survival,1 +survive & thrive,0 +susikko,-1 +susj,-1 +susmat,1 +sussex academic press,1 +sussex archaeological collections,1 +sustainability,0 +sustainability : the journal of record,0 +"sustainability accounting, management and policy",1 +sustainability analytics and modeling,1 +sustainability and climate change,0 +sustainability of water quality and ecology,1 +sustainability science,1 +"sustainability: science, practice, and policy",1 +sustainable agriculture research,0 +sustainable agriculture reviews,1 +sustainable chemical processes,0 +sustainable chemistry,0 +sustainable chemistry and pharmacy,1 +sustainable cities and society,1 +sustainable computing,1 +sustainable construction materials and technologies,0 +sustainable development,2 +sustainable development law and policy,0 +sustainable earth,1 +sustainable energy & fuels,1 +sustainable energy technologies and assessments,1 +"sustainable energy, grids and networks",1 +sustainable environment,1 +sustainable environment research,0 +sustainable food technology,1 +sustainable futures,1 +sustainable horizons,1 +sustainable manufacturing and service economics,0 +sustainable materials and technologies,1 +sustainable production and consumption,2 +sustainable technology and entrepreneurship,-1 +sustainable water resources management,1 +sutisanomat,-1 +suuhygienisti,-1 +suun terveydeksi,-1 +suur-jyväskylän lehti,-1 +suur-keuruu,-1 +suvremena lingvistika,1 +suvustaja,-1 +svarka i diagnostika,0 +svarochnoe proizvodstvo,0 +sveikatos mokslai,0 +svensk botanisk tidskrift,1 +svensk exegetisk aarsbok,1 +svensk förening för matematikdidaktisk forskning,0 +svensk idrottsforskning,1 +svensk juristtidning,1 +svensk kyrkotidning,-1 +svensk missionstidskrift,1 +svensk mykologisk tidskrift,-1 +svensk pastoraltidskrift,0 +svensk religionshistorisk arsskrift,1 +svensk teologisk kvartalskrift,1 +svensk tidskrift för musikforskning,2 +svensk-österbottniska samfundet r.f.,0 +svenska bildningsförbundet r.f.,0 +svenska dagbladet,-1 +svenska folkskolans vänner,0 +svenska folkskolans vänners kalender,-1 +svenska fornskriftsällskapet,1 +svenska handelshögskolan,0 +svenska institutet för europapolitiska studier,0 +svenska kulturfonden,0 +svenska kyrkan,0 +svenska kyrkohistoriska föreningen,0 +svenska landsmål och svenskt folkliv,1 +svenska linnesallskapets årsskrift,1 +svenska litteratursällskapet i finland,2 +svenska missionsrådet,0 +svenskan i finland,1 +svenskans beskrivning,1 +svenska skolhistoriska föreningen i finland rf.,0 +svenskt gudstjänstliv,1 +svenskt kvinnobiografiskt lexikon,-1 +sveriges lantbruksuniversitet,0 +svetovi,1 +sveučilište u zagrebu,0 +sviluppo e organizzazione,0 +svmma,1 +svoe izdatel`stvo,0 +svu-international journal of agricultural sciences,0 +svu-international journal of engineering sciences and applications,0 +svängrum,-1 +svētdienas rīts,-1 +swara,-1 +swarm and evolutionary computation,2 +swarm intelligence,1 +swedenborg foundation press,1 +swedish book review,-1 +swedish communication technologies workshop,0 +swedish dental journal,1 +swedish design research journal,0 +swedish national computer networking workshop,0 +swedish radio and microwave days,0 +swedish science press,1 +swedish workshop on multicore computing,0 +sweet & maxwell,1 +swets & zeitlinger,1 +swi. steuer & wirtschaft international,0 +swift studies,1 +swiss journal of geosciences,1 +swiss journal of palaeontology,1 +swiss medical weekly,1 +swiss political science review,1 +swp comment,0 +sws-rundschau,1 +syddansk universitet,0 +syddansk universitetsforlag,1 +sydney law review,1 +sydney series in celtic studies,0 +sydowia,1 +sydsvenska medicinhistoriska sallskapets arsskrift,1 +sydsvenskan,-1 +sydän,-1 +sydän-hämeen lehti,-1 +sydän-satakunta,-1 +sydänääni,0 +syken julkaisuja,0 +sykepleien forskning,1 +syllecta classica,1 +syllogos,1 +sylva,-1 +sylva ry,0 +sylvi,-1 +sylwan,1 +symbiosis,1 +symbiosis: a journal of anglo-american literary relations,1 +symbolae botanicae upsalienses,1 +symbolae osloenses,1 +symbolic interaction,2 +symbolism: an international annual of critical aesthetics,1 +symmetry,0 +symmetry : art and science,0 +symmetry : culture and science,0 +symmetry integrability and geometry: methods and applications,1 +symphonya,0 +symploke,1 +symposium,1 +symposium books,0 +"symposium of image, signal processing, and artificial vision",0 +symposium of the international astronomical union,1 +symposium on advanced space technologies in robotics and automation,0 +"symposium on design, test, integration and packaging of mems/moems",0 +symposium on embedded systems for real-time multimedia,0 +symposium on lift and escalator technologies,0 +symposium on theoretical aspects of computer science,2 +symposium on vlsi circuits,1 +symposium: a quarterly journal in modern literatures,1 +syn-thèses,0 +synapse,1 +synapsi,-1 +synchron,1 +synchrotron radiation news,1 +synergies europe,0 +synergies france,0 +synergies pays riverains de la baltique,1 +synergies pays scandinaves,1 +synergies pologne,0 +synkooppi,0 +synlett,1 +synopen,1 +synsygus,-1 +syntactic theory and research,-1 +syntax,2 +syntax and semantics,1 +syntaxe & sémantique,1 +synteesi,1 +synthese,3 +synthesis,0 +synthesis,1 +synthesis and reactivity in inorganic metal-organic and nano-metal chemistry,1 +synthesis lectures on the semantic web: theory and technology,0 +synthesis philosophica,1 +synthesis: la plata,1 +synthesis: stuttgart,1 +synthetic and systems biotechnology,0 +synthetic biology,1 +synthetic communications,1 +synthetic metals,1 +sypress forlag,1 +syracuse journal of international law and commerce,1 +syracuse university press,2 +syria,1 +system,2 +system dynamics review,1 +system dynamics society,1 +systema,0 +systematic and applied microbiology,1 +systematic biology,3 +systematic botany,1 +systematic entomology,2 +systematic parasitology,1 +systematic reviews,1 +systematics and biodiversity,1 +systemes de pensee en afrique noire,1 +systemic practice and action research,1 +systems,0 +systems and control letters,2 +systems biology in reproductive medicine,1 +systems biomedicine,1 +systems engineering,1 +systems research and behavioral science,1 +"systems, signs and actions",1 +systime academic,1 +sytyke,-1 +syöpäsairaanhoitaja,-1 +szazadveg,1 +szczecin university press,1 +szent istván university,0 +szkola glowna turystyki i rekreacji,0 +"szkoła główna handlowa, oficyna wydawnicza",0 +szociologiai szemle,1 +szombat,-1 +sámi dieđalaš áigečála,1 +sámis,0 +sächsischen akademie der wissenschaften zu leipzig,1 +sähkö-tele,-1 +sähkömaailma,-1 +sähkömaailma extra,-1 +sällskapet moas vänner,0 +sällskapet runica et mediaevalia,0 +sändebudet,-1 +särö,-1 +säteilyturvakeskus,0 +sårjournalen,-1 +sílex ediciones,0 +södertörns högskola,0 +súmula,0 +südosteuropa mitteilungen,0 +südosteuropäische hefte,0 +südostservice gmbh,0 +"sša-èkonomika, politika, ideologiâ",1 +t + d,1 +t&t clark,1 +t.a.s.k. quarterly,0 +ta istorika,1 +ta plats i raseborg,-1 +taal- en tongval,1 +taapeli,-1 +taboo,1 +tabularia,1 +tadrīs/pizhūhī,0 +tafter journal,0 +tahiti,1 +taide,-1 +taidehistoria,-1 +taidehistoriallisia tutkimuksia,2 +taidehistorian seura,1 +taideteoreettisia kirjoituksia kuvataideakatemiasta,0 +taidetutka,-1 +taikomoji kalbotyra,1 +taiteiden tiedekunnan julkaisuja b : tutkimusraportteja,0 +taito,-1 +taiwan gongshang guanli xuebao,0 +taiwan journal of democracy,0 +taiwan journal of linguistics,1 +taiwan journal of tesol,1 +taiwan xuezhi,1 +taiwanese journal of mathematics,1 +taiwanese journal of obstetrics and gynecology,1 +taiwania,0 +taiyangneng xuebao,0 +takoja,-1 +taksvärkki ry,0 +taku-tiedote,-1 +talanta,1 +talanta open,1 +talent development and excellence,1 +talentia,-1 +talk,-1 +talk by students,-1 +talk magazine,-1 +taller de letras,0 +tallinn creative hub,0 +tallinna tehnikakõrgkool,0 +tallinna tehnikaülikool,0 +tallinna tehnikaülikooli kirjastus,0 +tallinna tervishoiu kõrgkooli väljaanded,-1 +tallinna ülikool,0 +tallinna ülikooli kirjastus,1 +talotekniikka,-1 +taloudellinen tiedotustoimisto,0 +talous & yhteiskunta,-1 +talouselämä,-1 +talouselämän raportti suuryrityksistä,-1 +taloustaito,-1 +taloustieto oy,0 +taltech journal of european studies,1 +talvikukkia,-1 +tamara journal for critical organization inquiry,1 +tambovskij gosudarstvennyj universitet im. g.r.derzhavina,0 +tamga-türkiye göstergebilim araştırmaları dergisi,0 +tamk.nyt,-1 +tamk.today,-1 +tamkang journal of mathematics,1 +tamkang university,0 +tamkjournal,-1 +tamkjournal (english ed.),-1 +tammenlastuja,-1 +tammerkoski,-1 +tammi,0 +tampere economic working papers net series,-1 +"tampere studies in language, translation and literature",-1 +"tampere studies in language, translation and literature",0 +tampere university press,1 +tampereen ammattikorkeakoulu,0 +"tampereen ammattikorkeakoulun julkaisuja : sarja a, tutkimuksia",-1 +"tampereen ammattikorkeakoulun julkaisuja : sarja b, raportteja",-1 +"tampereen ammattikorkeakoulun julkaisuja : sarja c, oppimateriaaleja",-1 +tampereen dosenttiyhdistyksen julkaisuja,-1 +tampereen dosenttiyhdistys,0 +tampereen historiallisen seuran julkaisuja,0 +tampereen kaupungin julkaisuja,-1 +tampereen kaupunki,0 +tampereen museoiden julkaisuja,-1 +tampereen rakennusmestari,-1 +tampereen taidemuseon julkaisuja,-1 +tampereen teknillinen yliopisto,0 +tampereen teknillinen yliopisto. rakennustekniikan laboratorio. rakennustuotanto ja -talous. raportti.,0 +tampereen yliopisto,0 +"tampereen yliopisto, rakennustekniikka",-1 +tampereen yliopiston porin yksikön julkaisuja,-1 +tamperelainen,-1 +tanap monographs on the history of asian-european interaction,1 +tandlaegebladet,1 +tandläkartidningen,1 +tane-julkaisuja,0 +tangence,1 +tanger,0 +tanhuviesti,-1 +tankesmedjan magma,0 +tannlæknablaðið,0 +tansuo yu zhengming,0 +tanz,0 +tanzania journal of forestry and nature conservation,0 +tanzania journal of health research,1 +tanzanian journal of agricultural sciences,1 +tapaturmavakuutuskeskuksen julkaisuja,-1 +tapion raportteja,-1 +tapir akademisk forlag,1 +tappi journal,1 +tappi press,0 +tapri studies in peace and conflict research,0 +tapuya,1 +tarbiyat badanī va ̒ulūm-i varzishī,0 +tarbiyat modarres university,0 +tarbiz,1 +target: international journal of translation studies,3 +targeted oncology,1 +targum,0 +tarim bilimleri dergisi-journal of agricultural sciences,1 +tartu historical studies,0 +tartu tervishoiu kõrgkooli uurimistööde kogumik,-1 +tartu ülikool,0 +tartu ülikooli kirjastus,1 +tartu ülikooli raamatukogu,0 +taschen,1 +task,0 +tatarskaia arkheologiia,1 +tate papers,1 +tatra mountains mathematical publications,1 +tautosakos darbai-folklore studies,1 +tavričeskij vestnik informatiki i matematiki,0 +tax law review,1 +tax notes international,1 +tax policy and the economy,1 +taxon,2 +taxonomic databases working group annual conference,0 +taxonomy,0 +taylor & francis,2 +taylor's university,0 +tbilisi mathematical journal,1 +tbs research centre,0 +tc: a journal of biblical textual criticism,1 +tce,1 +tcworld,-1 +td & t,0 +tdr,3 +te reo,1 +teacher development,1 +teacher education and special education,1 +teacher education quarterly,1 +teacher training and education newsletter,0 +teachers and teaching: theory and practice,3 +teachers college press,1 +teachers college record,1 +teaching and learning,1 +teaching and learning in medicine,1 +teaching and learning in nursing,1 +teaching and teacher education,1 +teaching and teacher education,3 +teaching anthropology,1 +teaching artist journal,1 +teaching education,1 +teaching english language,1 +teaching english with technology,1 +teaching ethics,1 +teaching exceptional children,0 +teaching history,1 +teaching in higher education,3 +teaching in life sciences,-1 +teaching journalism and mass communication,0 +teaching mathematics and computer science,1 +teaching mathematics and its applications,1 +teaching of psychology,1 +teaching philosophy,1 +teaching public administration,1 +teaching sociology,1 +teaching statistics,1 +teaching theology and religion,1 +teagasc,0 +team journal of hospitality and tourism,0 +team performance management,0 +teanga: journal of the irish association,1 +teatteri&tanssi+sirkus,-1 +teatterikorkeakoulu,0 +teatterikorkeakoulun julkaisusarja,0 +teatterimuseo,0 +teatterintutkimuksen seura ry,0 +teca,0 +teccogs : revista digital de tecnologias cognitivas,0 +techconnect,0 +technai,1 +techne,1 +techne press,1 +techne series,1 +techne: la science au service de lhistoire de lart et des civilisations,1 +techne: research in philosophy and technology,1 +technical analysis of stocks and commodities,-1 +technical annals,-1 +technical bulletin: canadian conservation institute,1 +technical communication,1 +technical communication quarterly,1 +technical digest - international electron devices meeting,0 +technical innovations & patient support in radiation oncology,0 +technical physics,1 +technical physics letters,1 +technical program and proceedings,0 +technical program expanded abstracts,0 +technical report,-1 +technical reports in language technology,0 +technická univerzita v liberci,0 +technikatorteneti szemle,1 +technikgeschichte,1 +techniques and culture,1 +techniques in coloproctology,1 +techniques in foot and ankle surgery,1 +techniques in hand and upper extremity surgery,1 +techniques in knee surgery,1 +techniques in orthopaedics,1 +techniques in shoulder and elbow surgery,1 +technische akademie esslingen,0 +technische mechanik,1 +technische universitaet wien universitaetsbibliothek,0 +technische universität bergakademie freiberg,0 +technische universität dresden. slub,0 +technische universität hamburg-harburg,0 +technische universität wien,0 +technisches messen,0 +technium biochemmed,0 +technium social sciences journal,0 +technoetic arts,1 +technological and economic development of economy,1 +technological forecasting and social change,3 +technologies,0 +technology analysis and strategic management,1 +technology and change in history,1 +technology and conservation,1 +technology and culture,3 +technology and disability,1 +technology and economics of smart grids and sustainable energy,1 +technology and health care,1 +technology and investment,0 +technology and language,1 +technology and regulation,1 +technology architecture + design,1 +technology audit and production reserves,0 +technology in cancer research and treatment,1 +technology in society,1 +technology innovation management review,1 +"technology, innovation, entrepreneurship and competitive strategy",1 +"technology, instruction, cognition and learning",1 +"technology, knowledge and learning",1 +"technology, mind, and behavior",1 +"technology, pedagogy and education",1 +technometrics,2 +technopharm,0 +technovation,3 +techtrends,1 +tecnica molitoria,-1 +tecnoscienza,1 +tectonics,2 +tectonophysics,1 +teema,-1 +teema,0 +teemakirjoja,1 +teflin journal,1 +tehnicki vjesnik,0 +tehnika,0 +tehnički glasnik,1 +tehnologii i tehničeskie sredstva mehanizirovannogo proizvodstva produkcii rastenievodstva i životnovodstva,0 +teho,-1 +tehohoito,-1 +tehy,-1 +tehy ry,0 +teis,1 +teisės apžvalga,0 +tejuka,-1 +tek - tekniikan akateemiset,-1 +tekes,0 +tekes programme report,-1 +tekesin katsaus,-1 +tekhne: revista de estudos politécnicos,0 +tekijä,-1 +tekniikan historian seura ths ry,0 +tekniikan museon julkaisuja,-1 +tekniikan waiheita: teknik i tiden,1 +tekniikka & talous,-1 +tekninen opettaja,-1 +tekninen tiedote,-1 +teknologiainfo teknova oy,0 +teknologiateollisuus ry,0 +tekst i dyskurs,0 +tekstiilikulttuuriseura ry,0 +tekstiilikulttuuriseuran julkaisuja,0 +tekstiililehti,-1 +tekstiiliopettaja,-1 +tekstil,1 +tekstil ve konfeksiyon,1 +tekstualia,1 +teksty drugie,2 +tektonika,1 +tel aviv university,1 +tel aviv: journal of the institute of archaeology of tel aviv,2 +telecom,0 +telecom business review,0 +telecommunication systems,1 +telecommunications and radio engineering,1 +telecommunications forum,0 +telecommunications policy,2 +telekinet,0 +telematics and informatics,2 +telematics and informatics reports,1 +telemedicine and e-health,1 +teletraffic science and engineering,1 +television and new media,3 +television quarterly,1 +tellus series a: dynamic meteorology and oceanography,1 +tellus series b: chemical and physical meteorology,1 +telma,-1 +telma,1 +telopea,1 +telos,1 +telos: revista iberoamericana de estudios utilitaristas,0 +tem oppaat ja muut julkaisut,-1 +tem toimialaraportit,-1 +tema,-1 +temanord,0 +temas americanistas,1 +temat monográficos,0 +teme,0 +temenos,3 +temes de disseny,1 +temperature,1 +temple international and comparative law journal,1 +temple university press,1 +templeton press,0 +tempo,1 +tempo social,1 +tempo-niteroi,0 +temps modernes,1 +tempus,-1 +tencon ieee region ten conference,0 +tenen,-1 +tenside surfactants detergents,1 +tenzone,1 +teollisuuden näytelehti,-1 +teollisuus-suomi,-1 +teologia y vida,1 +teologia.fi,0 +teologinen aikakauskirja,2 +teologisk tidsskrift,1 +teologiska fakulteten vid åbo akademi,0 +teološki pogledi,1 +teorema,1 +teoretičeskaâ i prikladnaâ ûrisprudenciâ,1 +teoretičeskaâ i èksperimentalʹnaâ himiâ,0 +teoria de la educacion,0 +teoria e prática em administração,0 +teoria muzyki,1 +teoria politica,1 +teoria polityki,1 +teoria u’vikoret,0 +teoria: rivista di filosofia,1 +teorie vedy,1 +teorija in praksa,1 +teoriya i praktika fizicheskoy kultury,1 +teoriâ i praktika ob?estvennogo razvitiâ,1 +teoriâ mody,1 +teoros: revue de recherche en tourisme,1 +teos,1 +terapevticheskii arkhiv,1 +terapia psicologica,0 +terceira margem,1 +terminologie et traduction,1 +terminologija,1 +terminology,2 +terminology and lexicography research and practice,1 +terminology science & research,1 +természet világa,-1 +terra,0 +terra aestheticae,0 +terra economicus,0 +terra nova,1 +terra: maantieteellinen aikakauskirja,2 +terrain,1 +terrestres,0 +terrestrial arthropod reviews,0 +terrestrial atmospheric and oceanic sciences,1 +territorios : revista de estudios regionales y urbanos,1 +"territory, politics, governance",2 +terrorism and political violence,2 +tertiary education and management,1 +tertium comparationis,1 +tervareitti,-1 +terveyden ja hyvinvoinnin laitos,0 +terveydenhoitaja,-1 +terveydenhoitoviesti,0 +terveys ja talous,-1 +terveysliikuntauutiset,-1 +teräsrakenne,-1 +tesela,0 +tesl-ej,1 +tesol in context,-1 +tesol journal,1 +tesol quarterly,2 +tessellations,0 +test,1 +"testing, evaluation and assessment today",-1 +testo a fronte,1 +testo: studi di teoria della letteratura e della critica,1 +tetrahedron,1 +tetrahedron : asymmetry,1 +tetrahedron green chem,-1 +tetrahedron letters,1 +tetsu to hagane: journal of the iron and steel institute of japan,1 +texas a&m university press,1 +texas christian university press,1 +texas education review,0 +texas heart institute journal,1 +texas international law journal,1 +texas journal of science,1 +texas law review,2 +texas studies in literature and language,1 +texas tech university press,1 +texas western press,1 +texmat,0 +text,1 +text and performance quarterly,1 +text and talk,3 +text matters,1 +text technology: a journal of computer text processing,1 +text und kontext,1 +text und kontext: sonderreihe,1 +text und kritik,1 +text: kritische beitrage,1 +texte und untersuchungen zur geschichte der altchristlichen literatur,1 +texte zur kunst,1 +texte: revue de critique et de theorie litteraire,1 +texter om våld,-1 +textile history,2 +textile research journal,1 +textile: the journal of cloth and culture,1 +textiles,0 +textiles and clothing sustainability,0 +texto digital,0 +texto y contexto enfermagem,1 +texto!: textes et cultures,1 +textual & visual media,1 +textual cultures,1 +textual practice,3 +textus,0 +textus,1 +tfms: tidskrift for mellanosternstudier,1 +th open,1 +thai journal of mathematics,1 +thai journal of veterinary medicine,1 +thaiszia,0 +thalamus and related systems,1 +thalassas,1 +thales,1 +thames & hudson,1 +thammasat university,0 +"thamyris/intersecting: place, sex and race",1 +thanatos,1 +the academy of global business research and practice,0 +the adam smith review,1 +the adhd report,1 +the adriatic report,-1 +the agenda setting journal,1 +the american banker,-1 +the american economic review : insights,3 +the american journal of case reports,0 +the american journal of chinese medicine,1 +the american sociologist,1 +the american surveyor,-1 +the anatolian journal of cardiology,0 +the anatolian journal of family medicine,0 +the anthropocene review,1 +the appea journal and conference proceedings,1 +the arab economics and business journal,1 +the arabic language academy,0 +the arabidopsis book,1 +the arabist,1 +the architecture observer,0 +the arkansas international,-1 +the art of discrete and applied mathematics,1 +"the art, science, and engineering of programming",1 +the asian journal of applied linguistics,1 +the asian journal of shipping and logistics,1 +the astronomer's telegram,-1 +the ata journal of legal tax research,1 +the atlantic world,1 +the australian journal of indigenous education,1 +the avery review,-1 +the aviation & space journal,1 +the baltic journal of road and bridge engineering,1 +the beethoven journal,0 +the berlin journal,-1 +the berlin review of books,0 +the bible and interpretation,-1 +the bible in ancient christianity,2 +the bible translator,1 +the bone and joint journal,3 +the bottom line,1 +the brill reference library of judaism,2 +the british council,0 +the bryggen papers,1 +the bryological times,0 +the built and human environment review,1 +the bulletin of bismis,0 +the bulletin of the international association of forensic toxicologists,-1 +the business & management review,0 +the business review : cambridge,0 +"the cambridge journal of law, politics, and art",0 +the canadian journal of infection control,0 +the case journal,1 +the catholic social science review,0 +the centre for sustainable design,0 +the changing face of music and art education,1 +the china monitor,0 +the chinese journal of comparative law,1 +the choir press,0 +the circle,-1 +the classical outlook: journal of the american classical league,1 +the clinical teacher,1 +the cochrane library,1 +the cognitive behaviour therapist,1 +the columbia journal of european law,2 +the comics grid,1 +the commens encyclopedia,1 +the commens working papers,0 +the communication review,1 +the communicator,-1 +the computer games journal,1 +the conversation,-1 +the crop journal,1 +the cryosphere discussions,0 +the daily star,0 +the defence horizon journal,-1 +the denning law journal,1 +the dhaka university journal of earth and environmental sciences,0 +the digital press at the university of north dakota,0 +the diplomat,-1 +the double reed,-1 +the economist,-1 +the economists' voice,0 +the edgar allan poe review,1 +"the education review, usa",0 +the education university of hong kong,0 +the egyptian journal of medical human genetics,1 +the egyptian journal of neurosurgery,0 +the egyptian journal of radiology and nuclear medicine,0 +the eighteenth-century novel,1 +the electronic british library journal,1 +the encyclopedia of china publishing house,0 +the eriskay connection,0 +the esse messenger,1 +the eurasia proceedings of educational & social sciences,0 +"the eurasia proceedings of science, technology, engineering & mathematics",0 +the european archaeologist,-1 +the european business review,-1 +the european journal of applied linguistics and tefl,0 +the european journal of philosophy in arts education,1 +the european research journal,0 +the european union review,1 +the evolutionary review,0 +the evolving scholar,0 +the extractive industries and society,2 +the finnish american reporter,-1 +the florida communication journal,1 +the forensic examiner,1 +the forensic of pi kappa delta,1 +the funambulist,-1 +the gaskell society journal,1 +the georgia journal of international and comparative law,0 +the gissing journal,0 +the global journal of health and physical education pedagogy,0 +the global south,0 +the gradient,-1 +the greek orthodox theological review,0 +the gstf business review,0 +the hague journal of diplomacy,1 +the harry s. truman research institute for the advancement of peace,0 +the harvard review of philosophy,0 +the health care manager,1 +"the heppsinki working papers on emotions, populism and polarisation",-1 +"the heppsinki working papers on emotions, populism and polarisation",0 +the highlander,1 +the history of christian-muslim relations,2 +the hong kong university of science and technology,0 +the horticulture journal,1 +the humanistic psychologist,1 +the huntington library quarterly,2 +the iafor journal of education,1 +the icfai journal of derivatives markets,1 +the ifcolog journal of logics and their applications,1 +the imp journal,1 +the indexer: journal of the society of indexers,1 +the indian forester,0 +the industrial geographer,1 +the information management journal,0 +the innovation,0 +the innovation geoscience,1 +the innovation medicine,0 +the institute of electrical engineers of japan,0 +the integrated review in context,-1 +the international conference of applied research in textile,0 +the international conference on information networking,1 +the international journal for the history of engineering & technology,1 +the international journal of aerospace psychology,1 +the international journal of community and social development,1 +the international journal of critical pedagogy,1 +the international journal of cuban studies,1 +the international journal of cultural policy,3 +the international journal of design education,1 +the international journal of design in society,1 +the international journal of environmental sustainability,0 +the international journal of gastroenterology and hepatology diseases,0 +the international journal of information and learning technology,1 +"the international journal of intelligence, security, and public affairs",1 +the international journal of interdisciplinary social and community studies,0 +the international journal of james bond studies,1 +the international journal of management education,1 +the international journal of management science and information technology,0 +the international journal of railway technology,1 +"the international journal of social, political and community agendas in the arts",1 +the international journal of spine surgery,-1 +the international journal of sport and society,1 +the international journal of the academic business world,0 +the international journal of the commons,1 +the international journal of the image,0 +the international journal of the inclusive museum,1 +the international journal of training research,1 +the international journal of transpersonal studies,0 +the international journal of virtual reality,1 +the international society for orthodox church music,0 +the international spectator,1 +the international sports law journal,1 +the international year book and statesmens whos who,1 +the iranian yearbook of phenomenology,0 +the irish journal of management,1 +the italian american review,-1 +the iucn red list of threatened species,0 +the iup journal of supply chain management,0 +the jalt call journal,1 +the japanese political economy,1 +the jordan journal of earth and environmental sciences,1 +the journal for history of analytical philosophy,1 +the journal for transdisciplinary research in southern africa,1 +the journal of advanced prosthodontics,0 +the journal of aging and social change,1 +the journal of altmetrics,1 +"the journal of american business review, cambridge",0 +the journal of applied business and economics,0 +the journal of applied laboratory medicine,1 +"the journal of asian finance, economics and business",0 +the journal of astronomical data,0 +the journal of aviation/aerospace education & research,0 +the journal of business and retail management research,0 +the journal of chinese sociology,1 +the journal of climate change and health,0 +the journal of comparative economic studies,0 +the journal of continental philosophy,1 +the journal of cross border studies in ireland,-1 +the journal of cross-disciplinary research in computational law,1 +"the journal of digital forensics, security and law",1 +the journal of drama and theatre education in asia,1 +the journal of dress history,1 +the journal of ecocriticism,1 +the journal of economic concern,0 +the journal of educators online,0 +the journal of engineering,1 +the journal of engineering research,0 +the journal of entrepreneurial finance,1 +the journal of ethnology and folkloristics,2 +the journal of experiential education,1 +the journal of financial data science,1 +the journal of fintech,1 +the journal of gambling business and economics,0 +the journal of global business issues,0 +the journal of hand surgery : asian-pacific volume,1 +the journal of happiness and well-being,1 +the journal of hip hop studies,1 +the journal of historical fictions,1 +the journal of holocaust research,1 +the journal of humanities in rehabilitation,1 +the journal of inclusive practice in further and higher education,0 +the journal of international advanced otology,1 +the journal of law enforcement,0 +the journal of law teaching and learning,-1 +the journal of literacy and technology,1 +the journal of literary onomastics,0 +the journal of machine learning for biomedical imaging,1 +the journal of manual & manipulative therapy,1 +the journal of media innovations,1 +the journal of media law,1 +the journal of media literacy education,1 +the journal of medical practice management,0 +the journal of medieval military history,0 +the journal of medieval monastic studies,1 +"the journal of mental health training, education and practice",1 +the journal of network theory in finance,1 +the journal of oromo studies,1 +the journal of pan african studies,1 +the journal of pathology : clinical research,1 +the journal of peer production,1 +the journal of pharmacy technology,1 +the journal of philosophical economics,1 +the journal of philosophy of disability,1 +the journal of physical fitness and sports medicine,0 +the journal of play in adulthood,0 +the journal of prevention of alzheimer's disease,1 +the journal of problem solving,1 +the journal of risk finance,1 +the journal of social media in society,1 +the journal of social theory in art education,0 +"the journal of social, evolutionary, and cultural psychology",1 +the journal of software for algebra and geometry,0 +the journal of the american taxation association,1 +the journal of the european pentecostal theological association,1 +the journal of the intensive care society,1 +the journal of web science,1 +the journal of world christianity,1 +the journal of writing research,1 +the journal of zoo and aquarium research,0 +the kapralova society,0 +the kathmandu post,-1 +the kemco review,0 +the kodály envoy,-1 +the korean journal of internal medicine,0 +the lancet,3 +the lancet : digital health,3 +the lancet : rheumatology,1 +the lancet diabetes & endocrinology,3 +the lancet gastroenterology & hepatology,2 +the lancet global health,3 +the lancet haematology,3 +the lancet healthy longevity,1 +the lancet hiv,2 +the lancet infectious diseases,3 +the lancet neurology,3 +the lancet oncology,3 +the lancet psychiatry,3 +the lancet regional health : americas,1 +the lancet regional health : europe,1 +the lancet regional health : southeast asia,0 +the lancet regional health : western pacific,1 +the lancet respiratory medicine,3 +the lancet. planetary health,3 +the lancet. public health,3 +the latin american journal of aquatic mammals,1 +the law teacher,1 +the learning teacher journal,0 +the lichenologist,1 +the literary encyclopedia,-1 +the liverpool law review,1 +the london journal of canadian studies,1 +the lsp magazine,-1 +the malaysian journal of nursing,0 +the mathematica journal,1 +the mathematical gazette,0 +the mathematical scientist,1 +the mayanist,0 +the mcneese review,1 +the medieval and early modern iberian world,1 +the medieval franciscans,1 +the medieval mediterranean,1 +the mena journal of business case studies,0 +the merlin press ltd,0 +the messenger,0 +the michigan historical review,1 +"the minerals, metals & materials series",0 +the modern higher education review,1 +the modern law review,3 +the museum review,0 +the musical times,1 +the naar proceedings series,1 +the national interest,-1 +the natural products journal,-1 +the nephron journals,1 +the neurodiagnostic journal,1 +the neuroradiology journal,1 +the new bioethics,1 +the new educator,1 +the new england journal of medicine,3 +the new international relations,0 +the new rambler,-1 +the newsletter,-1 +the nordic africa days biennial conference,0 +the nordic atlas of language structures journal,0 +the nordic journal of language teaching and learning,1 +the nordic psychiatrist,0 +the nordic textile journal,1 +the northern world,1 +the online journal of distance education and e-learning,1 +the online journal of quality in higher education,0 +the open allergy journal,0 +the open astronomy journal,0 +the open atmospheric science journal,0 +the open chemical engineering journal,0 +the open clinical trials journal,0 +the open construction and building technology journal,0 +the open education journal,0 +the open environmental pollution and toxicology journal,0 +the open fish science journal,0 +the open industrial and manufacturing engineering journal,0 +the open information science journal,0 +the open management journal,0 +the open medical imaging journal,0 +the open neuroimaging journal,0 +the open neurology journal,0 +the open occupational health and safety journal,0 +the open petroleum engineering journal,0 +the open psychology journal,0 +the open public health journal,0 +the open renewable energy journal,0 +the open respiratory medicine journal,0 +the open software engineering journal,0 +the open source business resource,0 +the open tissue engineering and regenerative medicine journal,0 +the open waste management journal,0 +the ottoman empire and its heritage,1 +the pan african medical journal,0 +the parliament magazine,-1 +the pastoral review,0 +the philosophers' web magazine,-1 +the philosophical age,0 +the philosophical society review,0 +the phonetician,1 +the physical educator,0 +the plan journal,1 +the planetary science journal,1 +the polar journal,1 +the police journal,1 +the polish journal of aesthetics,1 +the poznań university of economics review,0 +the prague bulletin of mathematical linguistics,1 +the primary care companion for cns disorders,0 +the princeton theological review,0 +the proceedings of the ... international conference on cyber warfare and security,1 +"the proceedings of the international academic conference on teaching, learning and education",0 +"the proceedings of the international conference ""marketing - from information to decision""",0 +"the proceedings of the international conference on research in business, management and finance",0 +the proceedings of the international offshore and polar engineering conference,1 +the progressive post,-1 +the provincial institute for the protection of cultural monuments,0 +the psychiatrist,1 +the public journal of semiotics,1 +the publication serie of lahti university of applied sciences,0 +the quarterly,-1 +the quarterly journal of finance,1 +the r journal,1 +the radio science bulletin,1 +the readers designist magazine,1 +the rescience journal,1 +the rest,1 +the review of business information systems,0 +the review of diabetic studies,1 +the review of disability studies,1 +the review of socionetwork strategies,0 +the sais review of international affairs,1 +the sankalpa: international journal of management decisions,0 +the saudi dental journal,1 +the science of nature,1 +the scientific press,0 +the semiotic review of books,1 +the senses and society,1 +the silesian university of technology,0 +"the sixties: a journal of history, politics, and culture",1 +the smai journal of computational mathematics,1 +the social history of alcohol and drugs,1 +the society for east sea,0 +the society for geology applied to mineral deposits,0 +the society of naval architects of korea,0 +the soundtrack,1 +the south african journal of clinical nutrition,0 +the south asianist,1 +the southern communication journal,1 +the space between,1 +the spaces of creation,0 +the sport journal,1 +the state hermitage museum,1 +the steam journal,0 +the systematist,0 +the teacher educator,1 +the teaching of mathematics,0 +the theory and practice of legislation,2 +the times higher education supplement,-1 +the times higher education supplement,0 +the tqm journal,1 +the transactions of the korean institute of electrical engineers,0 +the transportation law journal,0 +the turkish online journal of educational technology,1 +the ulkopolitist,-1 +the ultrasound journal,1 +the unfamiliar,0 +the upstart crow: a shakespeare journal,1 +the urban review,1 +the velvet light trap,1 +the versatile image: photography in the era of web 2.0,0 +the wac clearinghouse,0 +the wall street journal : eastern edition,-1 +the washington post,-1 +the water wheel,0 +the westermarck society ry,0 +the wipo journal,1 +the world allergy organization journal,1 +the world journal of men's health,1 +the year's work in modern language studies,0 +the yearbook of polar law,1 +the yearbook of south asian languages and linguistics,0 +the yearbook of the national society for the study of education,1 +the yearbook of the sief working group on the ritual year,0 +the yearbook on history and interpretation of phenomenology,1 +theater,0 +theater der zeit,-1 +theater heute,0 +theatralia,1 +theatre and performance design,2 +theatre arts journal: studies in scenography and performance,2 +theatre forum,1 +theatre history studies,1 +theatre journal,3 +theatre notebook,1 +theatre research international,3 +theatre survey,3 +theatre symposium,0 +theatre topics,1 +"theatre, dance and performance training",1 +thelem,0 +thematicon: wissenschaftliche reihe des collegium polonicum,0 +themes in biblical narrative,1 +themes in islamic studies,2 +theo-web,1 +theofilos,0 +theologia,0 +theologia viatorum,1 +theologica,1 +theological research,0 +theological studies,2 +theologie und philosophie,1 +theologisch-praktische quartalschrift,1 +theologische beitrage,1 +theologische literaturzeitung,1 +theologische quartalschrift,1 +theologische revue,1 +theologische rundschau,1 +theologische zeitschrift,1 +theology,1 +theology and science,1 +theology and sexuality,1 +theology today,1 +theoretical and applied climatology,1 +theoretical and applied fracture mechanics,1 +theoretical and applied genetics,2 +theoretical and applied mechanics,0 +theoretical and computational fluid dynamics,1 +theoretical and empirical researches in urban management,1 +theoretical and experimental chemistry,1 +theoretical and experimental plant physiology,1 +theoretical and mathematical physics,1 +theoretical and practical research in economic fields,0 +theoretical aspects of rationality and knowledge,1 +theoretical biology and medical modelling,1 +theoretical biology forum,1 +theoretical chemistry accounts,1 +theoretical computer science,2 +theoretical criminology,3 +theoretical ecology,1 +theoretical economics,3 +theoretical economics letters,0 +theoretical foundations of chemical engineering,1 +theoretical inquiries in law,2 +theoretical issues in ergonomics science,1 +theoretical issues in sign language research conference,0 +theoretical linguistics,2 +theoretical medicine and bioethics,1 +theoretical population biology,1 +theoretical roman archaeology journal,1 +theoria et historia scientiarum,1 +theoria: a journal of social and political theory,1 +theoria: a swedish journal of philosophy,2 +theoria: historical aspects of music theory,1 +theoria: revista de teoria historia y fundamentos de la ciencia,1 +theory and applications of categories,1 +theory and decision,1 +theory and event: an online journal of political theory,1 +theory and practice in language studies,0 +theory and practice of logic programming,2 +theory and practice: journal of the music theory society of new york state,1 +theory and psychology,2 +theory and research in education,1 +theory and research in social education,1 +theory and society,3 +theory culture and society,2 +theory in biosciences,1 +theory into practice,1 +theory of computing,2 +theory of computing systems,2 +theory of probability and its applications,1 +theory of probability and mathematical statistics,1 +theory of stochastic processes,1 +theranostics,2 +therapeia-säätiö,0 +therapeutic advances in cardiovascular disease,1 +therapeutic advances in chronic disease,1 +therapeutic advances in drug safety,1 +therapeutic advances in gastroenterology,1 +therapeutic advances in hematology,1 +therapeutic advances in medical oncology,1 +therapeutic advances in musculoskeletal disease,1 +therapeutic advances in neurological disorders,1 +therapeutic advances in ophthalmology,1 +therapeutic advances in psychopharmacology,1 +therapeutic advances in urology,1 +therapeutic apheresis and dialysis,1 +therapeutic communities: the international journal for therapeutic and supportive organizations,1 +therapeutic delivery,1 +therapeutic drug monitoring,1 +therapeutic hypothermia and temperature management,1 +therapeutic innovation & regulatory science,1 +therapeutic recreation journal,1 +therapeutics and clinical risk management,1 +therapeutische umschau: revue therapeutique,1 +therapeutisches reiten,-1 +therapie,1 +therapie familiale,1 +theriogenology,2 +theriogenology wild,1 +thermal and fluids engineering summer conference,0 +thermal science,1 +thermal science and engineering progress,1 +thermal spray bulletin,1 +thermochimica acta,1 +thermology international,1 +thermophysics and aeromechanics,1 +therya,1 +thesaurismata,1 +"thesaurus: boletin del instituto caro y cuervo, bogota",1 +thesis eleven,1 +thesis: teorija i istorija ekonomitsheskih i sotsialnyh institutov i sistem,0 +thieme medical publishers,1 +thin solid films,1 +thin-walled structures,2 +thinking and reasoning,1 +thinking highways,-1 +thinking skills and creativity,1 +third text,2 +third world approaches to international law review,1 +third world quarterly,2 +third world thematics,1 +thl2,0 +thomas hardy journal,1 +thomas mann jahrbuch,1 +thomas telford,1 +thomas wolfe review,1 +thomist,1 +thompson educational publishing,0 +thomson reuters,0 +thomé-kozmiensky verlag,1 +thoracic and cardiovascular surgeon,1 +thoracic cancer,0 +thorax,2 +thought: a journal of philosophy,2 +thresholds,1 +thrombosis and haemostasis,2 +thrombosis journal,1 +thrombosis research,1 +thule,-1 +thunderbird international business review,1 +thyroid,1 +thélème,0 +thông báo khoa học,0 +tianjin ifengspace,0 +tianjin journal of nursing,0 +tianjin keji daxue xuebao,0 +tianjin shi jiao-ke-yuan xuebao,0 +ticks and tick-borne diseases,1 +tidningen skogsteknik,-1 +tidningen utemiljö,-1 +tidningen åland,-1 +tidskrift for politisk filosofi,1 +tidskrift för genusvetenskap,1 +tidskrift för litteraturvetenskap,1 +tidskrift utgiven av juridiska föreningen finland,1 +tidskriften stad,-1 +tidskriftet antropologi,1 +tidsskrift for arbejdsliv,1 +tidsskrift for boligforskning,0 +tidsskrift for børne- & ungdomskultur,-1 +tidsskrift for den norske legeforening,1 +tidsskrift for eiendomsrett,1 +"tidsskrift for erstatningsrett, forsikringsrett og trygderett",1 +"tidsskrift for familierett, arverett og barnevernrettslige spoersmål",1 +tidsskrift for forretningsjus,0 +tidsskrift for forskning i sygdom og samfund,1 +tidsskrift for islamforskning,1 +tidsskrift for kjonnsforskning,1 +tidsskrift for kulturforskning,1 +tidsskrift for omsorgsforskning,1 +tidsskrift for praktisk teologi,1 +tidsskrift for professionsstudier,0 +tidsskrift for psykisk helsearbeid,1 +tidsskrift for rettsvitenskap,2 +tidsskrift for samfunnsforskning,1 +tidsskrift for sjelesorg,1 +tidsskrift for strafferett,1 +tidsskrift for velferdsforskning,1 +tidsskriftet arkiv,1 +tidsskriftet politik,1 +tie & liikenne,-1 +tiede,-1 +tiede ja ase,1 +tiede ja edistys,1 +tiedebarometri,-1 +tiedeblogi,-1 +tiedepolitiikka,1 +tiedetoimittaja,-1 +tiedonantaja,-1 +tiedonjyvä,-1 +tiedosta,-1 +tiems workshop on smart environments and ict system living lab for societal security,0 +tieraerztliche praxis ausgabe grosstiere nutztiere,1 +tieraerztliche praxis ausgabe kleintiere heimtiere,1 +tieraerztliche umschau,1 +tierra firme,0 +tieteellinen tutkimus ortonin julkaisusarja a,0 +tieteellisten seurain valtuuskunnan verkkojulkaisuja,-1 +tieteen termipankki,0 +tieteentekijöiden liitto,0 +tieteessä tapahtuu,0 +tieto & trendit,-1 +tieto tuottamaan,-1 +tieto- ja viestintätekniikan ammattilaiset ry,0 +tietoa,-1 +tietoasiantuntija,-1 +tietoisku,-1 +tietolinja,-1 +tietolipas,1 +tietopuu,0 +tietosanoma,0 +tiimalasi,-1 +tiimi,-1 +tiivistelmät : kansallinen koulutuksen arviointikeskus,-1 +tijd-schrift,-1 +tijdschrift van de koninklijke vereniging voor nederlandse muziekgeschiedenis,1 +tijdschrift voor bedrijfs- en verzekeringsgeneeskunde,0 +tijdschrift voor communicatiewetenschap,1 +tijdschrift voor diergeneeskunde,1 +tijdschrift voor economische en sociale geografie,2 +tijdschrift voor filosofie,1 +tijdschrift voor genderstudies,1 +tijdschrift voor geschiedenis,2 +tijdschrift voor hoger onderwijs,0 +tijdschrift voor nederlandse taal-en letterkunde,2 +tijdschrift voor onderwijsrecht en onderwijsbeleid,1 +tijdschrift voor rechtsgeschiedenis,2 +tijdschrift voor skandinavistiek,1 +tijdschrift voor sociale en economische geschiedenis,1 +tijdschrift voor sociologie,1 +tijdschrift voor taalbeheersing,1 +tijdschrift voor tijdschriftstudies,1 +tijdschrift voor verslaving,0 +tijdschrift voor waterstaatsgeschiedenis,1 +tijdschrift voor zeegeschiedenis,1 +tilastokatsaus,-1 +tilastokeskus,0 +tilastoraportti,0 +tilburg law review,1 +tilde university press,0 +tilde-skriftserie,0 +tiliposti & palkka,-1 +tilisanomat,0 +tilitoimistossa,-1 +till liv,-1 +tiltai,0 +"time and mind: the journal of archaeology, consciousness and culture:",1 +time and society,2 +timing & time perception,0 +timisoara medical journal,1 +timss & pirls international study center,0 +tinta könyvkiadó,0 +tip.le.co,0 +tipiti,1 +tipograf,0 +tirant humanidades,0 +tire science and technology,1 +tissue and cell,1 +tissue barriers,1 +tissue engineering and regenerative medicine,1 +tissue engineering part a,1 +tissue engineering part b: reviews,1 +tissue engineering part c: methods,1 +titanik-gallerian julkaisu,-1 +tivi,-1 +tivit,0 +tizard learning disability review,1 +tímarit um uppeldi og menntun,-1 +tjs opintokeskus,0 +tkh. teorija koja hoda,0 +tlalocan: revista de fuentes para el conocimiento de las culturas indígenas de méxico,1 +tls : the times literary supplement,0 +tm : tekniikan maailma,-1 +tm rakennusmaailma,-1 +tmg tijdschrift voor mediageschiedenis,1 +tobacco control,3 +tobacco induced diseases,1 +tobacco prevention and cessation,1 +tocher: scottish and celtic studies,1 +todomodo,0 +tohoku journal of experimental medicine,1 +tohoku mathematical journal,1 +toiminta soi,-1 +toimintaterapeutti,-1 +toinen näytös,-1 +toivo,-1 +tokai university press,0 +token,1 +tolle lege,-1 +tolstoy studies journal,0 +tomo,-1 +tomorrow people,0 +tomskij žurnal lingvističeskih i antropologičeskih issledovanij,1 +tongxin xuebao,0 +tonos digital: revista electronica de estudios filologicos,1 +toolilainen,-1 +top,1 +topia-canadian journal of cultural studies,0 +topical meeting on silicon monolithic integrated circuits in rf systems,0 +topics in advanced practice nursing,1 +topics in applied physics,1 +topics in catalysis,1 +topics in clinical nutrition,1 +topics in cognitive science,1 +topics in companion animal medicine,1 +topics in current chemistry,1 +topics in current genetics,1 +topics in early childhood special education,3 +topics in geriatric rehabilitation,1 +topics in language disorders,1 +topics in linguistics,1 +topics in magnetic resonance imaging,1 +topics in organometallic chemistry,1 +topics in spinal cord injury rehabilitation,1 +topics in stereochemistry,1 +topics in stroke rehabilitation,1 +topoi orient occident,1 +topoi: an international review of philosophy,1 +topological methods in nonlinear analysis,1 +topologik,0 +topology,1 +topology and its applications,1 +topology proceedings,1 +topos,1 +toraks dergisi,0 +tored,1 +torkel opsahl academic epublisher,0 +torniolaakson neuvosto,0 +tornionlaakson maakuntamuseo,0 +tornionlaakson vuosikirja,-1 +toronto journal of theology,1 +tos forum,0 +toshi jōhōgaku kenkyū,0 +total art,1 +total quality management and business excellence,1 +totto,-1 +touchpoint: the journal of service design,0 +toung pao,2 +tourism,1 +tourism & travelling,0 +tourism analysis,1 +tourism and hospitality industry,0 +tourism and hospitality management,0 +tourism and hospitality research,1 +tourism and management studies,0 +tourism cases,0 +tourism economics,1 +tourism geographies,2 +tourism in marine environments,1 +tourism management,3 +tourism management perspectives,1 +tourism planning and development,1 +tourism recreation research,1 +tourism review,1 +tourism review international: an international journal,1 +tourism today,1 +"tourism, culture and communication",1 +tourisme et territoires,1 +tourismos: an international multidisciplinary journal of tourism,1 +tourismus journal,0 +tourist studies,1 +"tovarystvo z obmezhenoiu vidpovidalnistiu ""try k""",0 +toward a science of consciousness,0 +town and country planning,1 +town planning review,1 +toxichem krimtech,0 +toxicologic pathology,1 +toxicological and environmental chemistry,1 +toxicological sciences,2 +toxicology,1 +toxicology and applied pharmacology,3 +toxicology and environmental health sciences,1 +toxicology and industrial health,1 +toxicology in vitro,1 +toxicology letters,1 +toxicology mechanisms and methods,1 +toxicology reports,1 +toxicon,1 +toxicon x,1 +toxics,0 +toxin reviews,1 +toxins,0 +trabajos de prehistoria,1 +trac-trends in analytical chemistry,2 +trace,1 +trace elements and electrolytes,1 +"trade, law and development",0 +traditio: studies in ancient and medieval history thought and religion,2 +tradition: a journal of orthodox jewish thought,1 +traditional dwellings and settlements review,1 +traditional south asian medicine,1 +"traditiones, slovenian journal of ethnography and folklore",1 +tradterm,1 +tradulex,-1 +traektorija nauki,0 +traffic,1 +traffic injury prevention,1 +traffic safety research,-1 +traficomin tutkimuksia ja selvityksiä,0 +training and education in professional psychology,1 +"training, language and culture",1 +traitement automatique des langues,1 +traitement du signal,1 +trakl-studien,1 +trakya university journal of natural sciences,0 +trames: journal of the humanities and social sciences,1 +tranel,0 +trans tech publications,1 +trans-form-acao,1 +trans-kom: journal of translation and technical communication,1 +trans: revista de traductologia,1 +trans: transcultural music review,1 +transaction publishers,1 +transactional analysis journal,1 +transactions : geothermal resources council,0 +transactions historic society of lancashire and cheshire,1 +transactions in gis,1 +transactions of famena,1 +transactions of mathematics and its applications,1 +transactions of nonferrous metals society of china,1 +transactions of s.h.a.s.e.,0 +transactions of the american entomological society,1 +transactions of the american fisheries society,1 +transactions of the american mathematical society,3 +transactions of the american mathematical society : series b,3 +transactions of the american nuclear society,1 +transactions of the american ophthalmological society,0 +transactions of the american philological association,3 +transactions of the american philosophical society,1 +transactions of the american society of agricultural and biological engineers,1 +transactions of the annual meeting of the orthopaedic research society,0 +transactions of the association for computational linguistics,1 +transactions of the association of european schools of planning,1 +transactions of the cambridge bibliographical society,1 +transactions of the canadian society for mechanical engineering,1 +transactions of the charles s peirce society,1 +transactions of the digital games research association,1 +transactions of the historical society of ghana,0 +transactions of the historical society of ghana,1 +transactions of the indian ceramic society,1 +transactions of the indian institute of metals,1 +transactions of the institute of british geographers,3 +transactions of the institute of mathematics of the national academy of sciences of ukraine,0 +transactions of the institute of measurement and control,1 +transactions of the institute of metal finishing,1 +"transactions of the institution of mining and metallurgy, section a: mining technology",1 +"transactions of the institutions of mining and metallurgy, section b: applied earth science",1 +"transactions of the institutions of mining and metallurgy, section c: mineral processing and extractive metallurgy",1 +transactions of the international conference on structural mechanics in reactor technology,0 +transactions of the international society for music information retrieval,1 +transactions of the japan society for aeronautical and space sciences,1 +transactions of the london and middlesex archaeological society,1 +transactions of the london mathematical society,2 +transactions of the oriental ceramic society,1 +transactions of the philological society,3 +transactions of the royal historical society,3 +transactions of the royal institution of naval architects part b: internationaljournal of small craft technology,1 +transactions of the royal society of south australia,1 +transactions of the royal society of tropical medicine and hygiene,1 +transactions on advanced research,1 +transactions on computational collective intelligence,1 +transactions on computational systems biology,1 +transactions on data privacy,1 +transactions on emerging telecommunications technologies,1 +transactions on high-performance embedded architectures and compilers,0 +transactions on internet research,1 +transactions on large-scale data- and knowledge-centered systems,1 +transactions on machine learning and data mining,0 +transactions on machine learning research,1 +transactions on pattern languages of programming,1 +transactions: society of naval architects and marine engineers,1 +transatlantica,1 +transboundary and emerging diseases,3 +transcience,0 +transcript verlag,1 +transcription,1 +transcultural psychiatry,1 +transcultural studies,1 +transeuphratene,1 +transfer: european review of labour and research,1 +transfers,1 +transfiguration: nordisk tidsskrift for kunst og kristendom,1 +transformacje,0 +transformation,1 +transformation groups,1 +transformation: critical perspectives on southern africa,1 +transformations,1 +transformations in business and economics,1 +transformative works and cultures,1 +transforming anthropology,2 +"transforming government: people, process and policy",1 +transfusion,1 +transfusion and apheresis science,1 +transfusion clinique et biologique,1 +transfusion medicine,1 +transfusion medicine and hemotherapy,1 +transfusion medicine reviews,1 +transgender health,1 +transgender studies quarterly,1 +transgenic research,1 +transgenics,1 +transinformacao,1 +transit,0 +transit : europäische revue,0 +transition,1 +transition metal chemistry,1 +translatio,1 +translation and interpreting,1 +translation and interpreting studies,1 +translation and literature,1 +translation and translanguaging in multilingual contexts,1 +translation in society,0 +translation journal,0 +translation matters,0 +translation review,1 +translation spaces,1 +translation studies,2 +"translation, cognition & behavior",1 +translational andrology and urology,1 +translational animal science,0 +translational behavioral medicine,1 +translational cancer research,0 +translational exercise biomedicine,0 +translational gastroenterology and hepatology,1 +translational journal of the american college of sports medicine,1 +translational lung cancer research,1 +translational medicine @ unisa,0 +translational medicine communications,0 +translational neurodegeneration,2 +translational neuroscience,1 +translational oncology,1 +translational pediatrics,1 +translational proteomics,1 +translational psychiatry,1 +translational research,2 +translational sports medicine,1 +translational stroke research,1 +translational vision science & technology,1 +translator,2 +transletters,0 +translit,0 +translocal,0 +translogos translation studies journal,1 +transnational cinemas,1 +transnational corporations,1 +transnational curriculum inquiry,1 +transnational dispute management,0 +transnational education review,0 +transnational environmental law,3 +transnational law & contemporary problems,0 +transnational legal theory,1 +transnational literature,1 +transnational marketing journal,0 +transnational press london,0 +transnational publishers,1 +transnav,0 +transplant immunology,1 +transplant infectious disease,1 +transplant international,1 +transplantation,1 +transplantation and cellular therapy,1 +transplantation direct,1 +transplantation proceedings,1 +transplantation reviews,1 +transport,1 +transport & logistics,0 +transport and telecommunication,1 +transport and telecommunication institute,0 +transport in porous media,1 +transport manager,-1 +transport policy,2 +transport problems,0 +transport reviews,2 +transportation,2 +transportation engineering,1 +transportation geotechnics,1 +transportation infrastructure geotechnology,1 +transportation journal,1 +transportation letters-the international journal of transportation research,1 +transportation planning and technology,1 +transportation research interdisciplinary perspectives,1 +transportation research part a: policy and practice,2 +transportation research part b: methodological,3 +transportation research part c: emerging technologies,3 +transportation research part d: transport and environment,1 +transportation research part e: logistics and transportation review,2 +transportation research part f: traffic psychology and behaviour,1 +transportation research procedia,1 +transportation research record,1 +transportation science,2 +transportmetrica,1 +"transportmetrica : b, transport dynamics",1 +"transportmetrica. a, transport science",1 +transportrecht,1 +transposition,1 +transtext(e)s transcultures,1 +transworld research network,1 +transylvanian review,1 +transylvanian review of administrative sciences,0 +trash culture journal,0 +trauma,1 +trauma case reports,0 +trauma monthly,0 +trauma violence and abuse,2 +traumatology,1 +trauner verlag,1 +travail genre et societes,1 +travail humain,1 +travaux de la renaissance et de lhumanisme,1 +travaux de linguistique: revue internationale de linguistique francaise,1 +travaux de litterature,1 +"travaux du muséum national d'histoire naturelle ""grigore antipa""",0 +travaux et memoires,1 +travaux interdisciplinaires du laboratoire parole et langage d aix-en-provence,1 +travel and tourism research association annual international conference,0 +travel behaviour & society,1 +travel medicine and infectious disease,1 +"traverse: zeitschrift fur geschichte, zurich",1 +treballs de la societat catalana de geografia,0 +treballs de sociolinguistica catalana,1 +tredition,0 +tree genetics and genomes,1 +tree physiology,2 +tree-ring research,1 +"trees, forests and people",1 +trees-structure and function,1 +tremor and other hyperkinetic movements,1 +trends in amplification,0 +trends in anaesthesia and critical care,1 +trends in applied sciences research,0 +trends in applied spectroscopy,0 +trends in biochemical sciences,2 +trends in biomaterials and artificial organs,1 +trends in biotechnology,2 +trends in cancer,1 +trends in cardiovascular medicine,1 +trends in cell biology,2 +trends in chemical engineering,0 +trends in chemistry,1 +trends in cognitive sciences,3 +trends in ecology and evolution,3 +trends in endocrinology and metabolism,2 +trends in food science and technology,2 +trends in genetics,2 +trends in glycoscience and glycotechnology,1 +trends in hearing,1 +trends in immunology,2 +trends in language acquisition research,1 +trends in linguistics : studies and monographs,1 +trends in mathematics,1 +trends in microbiology,2 +trends in molecular medicine,2 +trends in neuroscience and education,1 +trends in neurosciences,3 +trends in organized crime,1 +trends in parasitology,2 +trends in pharmacological sciences,3 +trends in plant science,2 +trends in psychology,1 +trends in sport science,0 +trends of recent researches on the history of china,1 +trentham books,1 +tresearch,-1 +treća,0 +tria,0 +trialba ediciones,0 +trials,1 +trials in vaccinology,0 +"triangulum : germanistisches jahrbuch für estland, lettland und litauen",0 +triarchy press,0 +tribologia,1 +tribologie und schmierungstechnik,0 +tribology and interface engineering series,1 +tribology and lubrication technology,1 +tribology international,2 +tribology letters,1 +tribology online,1 +tribology transactions,1 +"tribology: materials, surfaces and interfaces",1 +triennial conference of the dlm forum,0 +trierer theologische zeitschrift,1 +trierer zeitschrift fur geschichte und kunst des trierer landes und seiner nachbargebiete,1 +trim research notes,0 +trim research reports,0 +tringa,0 +trinity college law review,0 +trio,1 +trioli,-1 +triple helix,1 +triplec,1 +trita-ark. forskningspublikation,0 +tritoniana,-1 +tritonic books,0 +trivent publishing,1 +trivium,-1 +trivium,1 +trondheim studies on eastern european cultures and societies,1 +tropenbos,0 +tropical agriculture,1 +tropical and subtropical agroecosystems,0 +tropical animal health and production,1 +tropical biomedicine,0 +tropical conservation science,1 +tropical doctor,1 +tropical ecology,1 +tropical grasslands,1 +tropical journal of pharmaceutical research,1 +tropical medicine and health,0 +tropical medicine and infectious disease,0 +tropical medicine and international health,1 +tropical plant pathology,1 +tropical zoology,1 +tropicultura,1 +troubador publishing,1 +trovant,0 +trudy akademenergo,0 +trudy instituta matematiki,0 +trudy instituta matematiki i mekhaniki uro ran,1 +trudy instituta russkogo âzyka im. v.v. vinogradova,0 +trudy kafedry istorii novogo i novejshego vremeni sankt-peterburgskogo gosdarstvennogo universiteta,0 +trudy karelʹskogo naučnogo centra rossijskoj akademii nauk,0 +"trudy meždunarodnoj konferencii ""korpusnaâ lingvistika-..."".",0 +trudy otdela drevnerusskoj literatury,1 +truman state university press,1 +trust quarterly review,-1 +trädgårdsnytt,-1 +tròpos,1 +tržište,0 +tsantsa,1 +tsilari,-1 +tsinghua science and technology,-1 +tsukuba daigaku kyōikugaku-kei ronshū,0 +"ttr: traduction, terminologie et redaction",1 +tts:n julkaisuja,0 +ttt-digi,-1 +tu delft open,0 +tuba-ar-turkish academy of sciences journal of archaeology,0 +tuba-ked: turkiye bilimler akademisi kultur envanteri dergisi,1 +tuberculosis,1 +tubinger beitrage zur linguistik,1 +tucs general publications,0 +tucs lecture notes,0 +tucs publication series,0 +tudpress,0 +tufnell press,1 +tugboat,0 +tuiran suuralueen kuohut,-1 +tukiviesti,-1 +tulane law review,1 +tulevaisuussarja,0 +tuli&savu,-1 +tullis journal - the journal of turkic language and literature surveys,0 +tuloskalvosarja,-1 +tulsa studies in womens literature,2 +tulva,-1 +tulʹskij naučnyj vestnik,0 +tumor biology,1 +tumordiagnostik und therapie,1 +tumori,1 +tumour virus research,1 +tuna-ajalookultuuri ajakiri,1 +tunguso sibirica,1 +tuning journal for higher education,0 +tunnelling and underground space technology,1 +tunnuslukuja ja tutkimuksia,-1 +tuottava peruna,-1 +"turcica: revue detudes turques: peuples, langues, cultures, etats",1 +turcologica,1 +turczaninowia,1 +turgut ozal education,0 +turia + kant,1 +turizam,0 +turjuman,0 +turk arkeoloji ve etnografya dergisi,1 +turk dili arastirmalari yillgi: belleten,1 +turk dilleri arastirmalari,1 +turk kulturu ve haci bektas veli-arastirma dergisi,0 +turk pediatri arsivi-turkish archives of pediatrics,1 +turk psikiyatri dergisi,0 +turk psikoloji dergisi,0 +turkbilig: turkoloji arastirmalari,1 +turkic languages,1 +turkish journal of agriculture and forestry,1 +turkish journal of biology,1 +turkish journal of botany,1 +turkish journal of business ethics,1 +turkish journal of chemistry,1 +turkish journal of earth sciences,1 +turkish journal of education,0 +turkish journal of electrical engineering and computer sciences,0 +turkish journal of field crops,1 +turkish journal of fisheries and aquatic sciences,1 +turkish journal of gastroenterology,1 +turkish journal of geriatrics-turk geriatri dergisi,1 +turkish journal of hematology,0 +turkish journal of mathematics,1 +turkish journal of medical sciences,0 +turkish journal of pediatrics,1 +turkish journal of politics,0 +turkish journal of veterinary and animal sciences,1 +turkish journal of zoology,1 +turkish neurosurgery,1 +turkish online journal of english language teaching,1 +turkish studies,1 +turkistalous,-1 +turkiye entomoloji dergisi-turkish journal of entomology,1 +turkiye fiziksel tip ve rehabilitasyon dergisi-turkish journal of physicalmedicine and rehabilitation,1 +turku 2011 -säätiö,0 +turku centre for computer science,0 +turku medieval and early modern studies,0 +turkuposti,-1 +turkuseuran julkaisuja,0 +turun a-kilta,0 +turun ammattikorkeakoulu,0 +turun ammattikorkeakoulun oppimateriaaleja,-1 +turun ammattikorkeakoulun puheenvuoroja,-1 +turun ammattikorkeakoulun raportteja,0 +turun ammattikorkeakoulun tutkimuksia,0 +turun historiallinen arkisto,1 +turun historiallinen yhdistys ry,1 +turun kauppakorkeakoulu,0 +turun kauppakorkeakoulun julkaisuja,-1 +turun kauppakorkeakoulun julkaisuja. sarja c,0 +turun kauppakorkeakoulun julkaisujasarja ae,0 +turun kauppakorkeakoulun julkaisusarja: keskustelua ja raportteja,0 +turun kaupungin ympäristöjulkaisuja,-1 +turun kaupunki,0 +turun lapsi- ja nuorisotutkimuskeskuksen julkaisuja,0 +turun museokeskuksen julkaisuja,0 +turun museokeskuksen raportteja,-1 +turun museokeskus,0 +turun normaalikoulun julkaisuja,0 +turun sanomat,-1 +turun sanomat : makasiini,-1 +turun seudun ekonomit,-1 +turun taidemuseo,0 +turun yliopisto,0 +turun yliopiston brahea-keskuksen julkaisuja,-1 +turun yliopiston dosenttiyhdistyksen julkaisuja,-1 +"turun yliopiston julkaisuja : sarja b, humaniora",0 +turun yliopiston julkaisuja sarja c : scripta lingua fennica edita,0 +"turun yliopiston julkaisuja. sarja d, medica-odontologica",0 +turun yliopiston kasvatustieteiden tiedekunta: julkaisusarja a tutkimuksia,0 +turun yliopiston maantieteen ja geologian laitoksen julkaisuja,-1 +"turun yliopiston oikeustieteellisen tiedekunnan julkaisuja. a, yksityisoikeuden sarja",0 +turun yliopiston oikeustieteellisen tiedekunnan julkaisuja: a juhlajulkaisut,0 +turun yliopiston poliittisen historian raportteja,0 +turun yliopiston suomen kielen ja suomalais-ugrilaisen kielentutkimuksen oppiaineen julkaisuja,0 +turun ylioppilaslehti,-1 +turvallisuus & riskienhallinta,-1 +turvallisuustieteellinen yhdistys,0 +turāṯ,0 +turība university,0 +tushuguanxue yu zixun kexue,0 +tutkijaliiton julkaisusarja,-1 +tutkijaliitto,1 +tutkimuksesta tiiviisti,-1 +tutkimukset,-1 +tutkimuksia,-1 +tutkimuksia,1 +tutkimuksia (helsingin kaupungin tietokeskus),0 +tutkimuksia - eläketurvakeskus,0 +tutkimuksia - jyväskylän yliopisto. opettajankoulutuslaitos,0 +tutkimuksia - kuntoutussäätiö,0 +tutkimuksia : koulutuksen tutkimuslaitos,-1 +tutkimuksia ja raportteja - mikkelin ammattikorkeakoulu. a,0 +tutkimuksia ja selvityksiä,-1 +tutkimus & kritiikki,1 +tutkimus (siirtolaisuusinstituutti),1 +tutkimuseettisen neuvottelukunnan julkaisuja,-1 +tutkimuskatsauksia,-1 +tutkimusraportteja,-1 +tutkimusraportti (lappeenrannan teknillinen yliopisto. tuotantotalouden laitos),0 +tutkimusraportti. lappeenrannan teknillinen yliopisto: lut energia,0 +tutkimusselosteita,-1 +tutkittua varhaiskasvatuksesta,-1 +tutkiva hoitotyö,1 +tutkiva sosiaalityö,0 +tutu e-julkaisuja,0 +tutu-julkaisuja,-1 +tutulus,-1 +tuuletus,-1 +tuuli jylhä,0 +tuulilasi,-1 +tuulivoima,-1 +tuuloksen joulu,-1 +tuuma,-1 +tva-julkaisuja,0 +tvcr,0 +tvergastein,0 +tverskoj gosudarstvenny`j universitet,0 +tvz theologischer verlag,0 +twentieth century architecture,1 +twentieth century british history,2 +twentieth century communism: a journal of international history,1 +twentieth century literature,2 +twentieth-century china,1 +twentieth-century literary criticism,0 +twentieth-century music,1 +twi,0 +twin research and human genetics,1 +"tyche : beitrage zur alten geschichte, papyrologie und epigraphik",2 +tydskrif vir geesteswetenskappe,1 +tydskrif vir letterkunde,1 +tyndale bulletin,1 +tyrrhenian international workshop on digital communications,0 +tyumen state university herald,0 +työ ja ihminen. tutkimusraportti,0 +työ- ja elinkeinoministeriö,0 +työ- ja elinkeinoministeriön julkaisuja,-1 +työelämän tutkimus,1 +työelämän tutkimuspäivien konferenssijulkaisuja,0 +työn tuuli,0 +työoikeudellinen yhdistys ry,0 +työoikeudellisen yhdistyksen vuosikirja,1 +työpapereita,-1 +työpaperi,-1 +työpoliittinen aikakauskirja,0 +työraportteja,-1 +työtehoseura ry,0 +työterveyshoitaja,-1 +työterveyslaitos,0 +työterveyslääkäri,-1 +työväen historian ja perinteen tutkimuksen seura,1 +työväenperinne - arbetartradition ry,0 +työväentutkimus,1 +tzintzun : revista de estudios históricos,1 +tájökológiai lapok,0 +társadalmi nemek tudománya interdiszciplináris efolyóirat,0 +társadalomtudományi kutatóközpont,0 +tähdet ja avaruus,-1 +tähdistö,-1 +tähtivaeltaja,-1 +tärppi,-1 +täydellinen ympyrä,-1 +témoigner : entre histoire et mémoire,0 +tér és társadalom,1 +történelmi szemle,1 +töölöläinen,-1 +tûrkologičeskie issledovaniâ,0 +türk mühendys ve mymar odalari byrlydy,0 +türkiye klinikleri diş hekimliği bilimleri,0 +türkiye klinikleri tıp bilimleri dergisi,0 +türük uluslararası dil edebiyat halkbilimi araştırmaları dergisi,1 +tāyvīṭu,0 +tạp chí giáo dục kỹ thuật,0 +tạp chí khoa học pháp lý,0 +tạp chí luật học,-1 +t’inkazos,0 +u press,1 +u.porto journal of engineering,0 +ua editora,0 +ubc press,1 +ubiquitous learning,1 +"ubiquitous positioning, indoor navigation and location-based services",1 +ubiquity press,0 +ubiquity proceedings,-1 +uc irvine law review,0 +ucjc business and society review,1 +ucl press,1 +ucla encyclopedia of egyptology,1 +ucla law review,2 +ucopress,0 +ucs,-1 +uddannelsehistorie,1 +udenrigs,-1 +udmurtskij gosudarstvenny`j universitet,0 +udruženje hrvatskih arhitekata,0 +udruženje za pravo osiguranja srbije,0 +uefdsa newspaper,-1 +uga éditions,1 +ugarit-forschungen: internationales jahrbuch fur die altertumskunde syrien-palaestinas,1 +ugarit-verlag,0 +ugent,0 +ugeskrift for laeger,1 +ugeskrift for retsvaesen,1 +ugglan,1 +ugo mursia editore,1 +uhod-uluslararasi hematoloji-onkoloji dergisi,0 +uitgeverij boom,1 +ukk-seuran vuosikirja,0 +uknowledge,0 +ukraine-analysen,-1 +ukrainian biochemical journal,0 +ukrainian journal of ecology,1 +ukrainian journal of physical optics,0 +ukrainian journal of physics,0 +ukrainian mathematical bulletin,1 +ukrainian mathematical journal,1 +ukraïnsʹkij botanìčnij žurnal,1 +ukraì̈nsʹkiĭ antarktičniĭ žurnal,1 +ukraïnsʹka akademìâ mistectva,0 +ukraïnsʹkij matematičnij žurnal,1 +ukuli,0 +ulevaade haridussusteemi valishindamisest,-1 +ulkoasiainministeriö,0 +ulkomaanlehtoriyhdistys ry,0 +ulkoministeriön julkaisuja,-1 +ulkopoliittinen instituutti,0 +ulkopolitiikka,-1 +ulmus,0 +ulrike helmer verlag,0 +ulster folklife,1 +ulster institute for social research,0 +ultimate reality and meaning,1 +ultramicroscopy,1 +ultraschall in der medizin,1 +ultrasonic imaging,1 +ultrasonics,1 +ultrasonics sonochemistry,1 +ultrasound in medicine and biology,1 +ultrasound in obstetrics and gynecology,2 +ultrasound quarterly,1 +ultrastructural pathology,1 +ulusal travma ve acil cerrahi dergisi-turkish journal of trauma and emergency surgery,1 +uluslararasi iliskiler-international relations,1 +uluslararası tarım araştırmalarında yenilikçi yaklaşımlar dergisi,0 +umanistica digitale,1 +umeni-art,1 +umeå universitet,0 +umeå universitet. institutionen för nordiska språk,0 +umjetnost rijeci,1 +umweltpsychologie,0 +uncertain supply chain management,0 +unconventional resources,-1 +underground space,1 +undersea and hyperbaric medicine,1 +underwater acoustics conference and exhibition,0 +underwater technology,1 +unep course series,1 +unesco,0 +unesco chair on gender equality and women's empowerment - university of cyprus,0 +unfallchirurg,1 +unge pædagoger,0 +unholan aitta,-1 +uni-med verlag ag,0 +uni-press graz verlag,0 +unifepress,0 +uniform distribution theory,1 +uniform law review,1 +unigrafia oy,0 +union académique internationale,1 +union of scientists in bulgaria,0 +union of the baltic cities commission on environment,0 +union seminary quarterly review,1 +unipa press,0 +uniped,0 +unipress,0 +unisa press,1 +unisono,-1 +unit,-1 +unitas fratrum,0 +united academics journal of social sciences,0 +united european gastroenterology journal,1 +united nations,0 +united nations environment programme and the world health organization,0 +united nations university press,1 +united press global,0 +united states department of agriculture forest service,0 +united states institute of peace press,1 +uniuutiset,-1 +univers enciclopedic,1 +universal access in the information society,1 +universal journal of accounting and finance,1 +universal journal of agricultural research,0 +universal journal of applied science,0 +universal journal of educational research,1 +universal journal of management,0 +universal journal of psychology,0 +universal journal of public health,1 +universe,0 +universidad autónoma de barcelona,0 +universidad católica andrés bello,0 +universidad complutense de madrid,0 +universidad de buenos aires,1 +universidad de burgos,0 +universidad de cantabria,0 +universidad de deusto,0 +universidad de guadalajara,0 +universidad de las artes,0 +universidad de las palmas de gran canaria,0 +universidad de los andes,0 +universidad de nariño,0 +universidad de tarapacá,0 +universidad de valladolid,0 +universidad del azuay,0 +universidad externado de colombia,0 +universidad iberoamericana,0 +universidad jorge tadeo lozano,0 +universidad nacional autónoma de méxico,0 +universidad sergio arboleda,0 +universidad y empresa,0 +universidade catolica portuguesa do porto,0 +universidade da coruña,0 +universidade de brasília,0 +universidade de coimbra,0 +universidade de lisboa,0 +universidade de passo fundo,0 +universidade de santiago de compostela,0 +universidade do minho,0 +universidade do porto - reitoria,0 +universidade federal de santa catarina editora,1 +universidade federal do amazonas,0 +universidade trás-os-montes e alto douro,0 +universita degli studi di salerno,0 +universita degli studi di torino,0 +universitas,1 +universitas malikussaleh press,0 +universitas psychologica,0 +universitas studiorum,1 +universitas: monthly review of philosophy and culture,1 +universitat politècnica de catalunya,0 +universitatea babes-bolyai,1 +universitatsverlag ilmenau,0 +universite de lorraine,0 +universiteit antwerpen,0 +universiteit utrecht,0 +universitetet i tromsø,0 +"universiteti ""polis""",0 +universitetsforlaget,1 +universitetskoe upravlenie: praktika i analiz,0 +universiti putra malaysia press,0 +university college cork,0 +university college dublin,0 +university for peace,0 +university industry innovation network,0 +university museums and collections journal,1 +university of akron press,1 +university of alabama press,1 +university of alaska press,1 +university of alberta press,1 +university of algarve,0 +university of arizona press,1 +university of arkansas press,1 +university of asia pacific journal of law & policy,1 +university of aston,0 +university of bath,0 +university of belgrade,0 +university of birmingham press,1 +university of bologna law review,0 +university of british columbia law review,1 +university of british columbia press,1 +university of calgary,0 +university of calgary press,1 +university of california press,2 +university of cambridge,0 +university of campinas,0 +university of cape town,0 +university of central lancashire,0 +university of chicago law review,2 +university of chicago press,3 +university of cincinnati law review,1 +university of delaware press,1 +university of dubrovnic,0 +university of exeter press,1 +university of georgia press,1 +university of glasgow,0 +university of greenwich department of architecture and landscape,0 +university of hawaii press,1 +university of helsinki department of computer science: series of publications c,0 +university of hong kong,0 +university of hong kong : comparative education research centre,1 +university of huddersfield,0 +university of iceland,0 +university of iceland press,1 +university of illinois law review,1 +university of illinois press,1 +university of iowa press,1 +university of kragujevac,0 +university of latvia press,1 +university of ljubljana,0 +university of london press,1 +university of macedonia,0 +university of madeira,0 +university of maine press,1 +university of malta,0 +university of massachusetts press,1 +university of michigan journal of law reform,1 +university of michigan press,2 +university of minnesota press,2 +university of miskolc,0 +university of missouri press,1 +university of namibia press,1 +university of nebraska press,1 +university of nevada press,1 +university of new mexico press,1 +university of new south wales law journal,1 +university of new south wales press,1 +university of newcastle upon tyne,0 +university of north carolina press,2 +university of north texas press,1 +university of notre dame press,1 +university of nottingham,0 +university of novi sad,0 +university of oklahoma press,1 +university of ottawa press,1 +university of pennsylvania journal of international law,1 +university of pennsylvania law review,2 +university of pennsylvania press,2 +university of pittsburgh law review,1 +university of pittsburgh press,1 +university of plymouth press,1 +university of portsmouth,0 +university of pretoria,0 +university of primorska press,0 +university of puerto rico press,1 +university of reading,0 +university of regina press,1 +university of rochester press,1 +university of salford,1 +university of saskatchewan,0 +university of skövde,0 +"university of south australia - faculty of art, architecture & design",0 +university of south carolina press,1 +university of split,0 +university of strathclyde publishing,0 +university of surrey : surrey business school,0 +university of szeged,0 +university of technology sydney,0 +university of tennessee press,1 +university of texas press,1 +university of the free state,0 +university of the west indies press,1 +university of thessaly,0 +university of tokyo,0 +university of toronto law journal,1 +university of toronto press,1 +university of toronto quarterly,1 +university of turku technical reports,-1 +university of tyumen,0 +university of utah press,1 +university of virginia press,1 +university of wales press,1 +university of warsaw journal of comparative law,0 +university of warsaw press,1 +university of warwick,0 +university of washington press,1 +university of waterloo,0 +university of western ontario,0 +university of western sydney,0 +university of westminster press,0 +university of wisconsin press,1 +university of wollongong,0 +university of wolverhampton,0 +university of zadar,0 +university press bologna,0 +university press of america,1 +university press of colorado,1 +university press of eastern finland,0 +university press of florida,1 +university press of kansas,1 +university press of kentucky,1 +university press of maryland,1 +university press of mississippi,1 +university press of new england,1 +università degli studi di bergamo,0 +università degli studi di firenze,0 +università degli studi di messina,0 +università degli studi di modena e reggio emilia,0 +università degli studi di napoli l´orientale,0 +università degli studi roma tre,0 +università degli studi suor orsola benincasa,0 +università del salento,0 +università della svizzera italiana,0 +università di bologna,0 +universität flensburg,0 +universität für bodenkultur wien universitätsbibliothek,0 +universität greifswald,0 +universität hamburg,0 +universität innsbruck,0 +universität osnabrück,0 +universität rostock,0 +universitäts-verlag webler,0 +universitätsbibliothek paderborn,0 +universitätsverlag der tu berlin,1 +universitätsverlag göttingen,0 +universitätsverlag winter,2 +université de liège,0 +université de nantes,0 +université des sciences et de la technologie houari boumedienne,0 +université du québec à montréal,0 +universum,0 +universus academic press,1 +univerza na primorskem,0 +univerza v mariboru,0 +univerzita karlova,0 +univerzita konštantína filozofa,0 +univerzita mateja bela v banskej bystrici,0 +univerzita palackého v olomouci,0 +univerzitet u banjoj luci,0 +univerzitetni rehabilitacijski inštitut republike slovenije - soča,0 +"uniwersytet technologiczno-humanistyczny im. kazimierza pulaskiego w radomiu, wydawnictwo",0 +uniwersytet warmińsko-mazurski w olsztynie,0 +uniwersytet warszwski,0 +uniwersytet śląski,0 +uniwersytetu im. adama mickiewicza w poznaniu,0 +uniwersytetu mikolaja kopernika,1 +unlikely,0 +unlv gaming research and review journal,1 +unmanned systems,1 +unterrichtswissenschaft,1 +update: applications of research in music education,1 +updates in surgery,0 +upes law review,0 +upgrade: the european journal for the informatics professional,1 +upi briefing paper,0 +upi working papers,-1 +upphandlingsrättslig tidskrift,0 +uppsala universitet,0 +upptecknaren,-1 +upravlenec,0 +upravlenie zdravoohraneniem,1 +upsala journal of medical sciences,1 +upsala nya tidning,-1 +ura,-1 +ural'skii filologicheskii vestnik,0 +ural-altaische jahrbücher,2 +ural`skij gosudarstvenny`j pedagogicheskij universitet,0 +uralica helsingiensia,1 +uralisztikai tanulmányok,1 +uralo-altajskie issledovanija,1 +uralʹskij istoričeskij vestnik,1 +urban & fischer,1 +urban affairs review,2 +urban anthropology and studies of cultural systems and world economic development,1 +urban climate,1 +urban design international,2 +urban development issues,1 +urban ecosystems,1 +urban education,1 +urban forestry and urban greening,2 +urban forum,1 +urban geography,2 +urban history,3 +urban history review-revue d histoire urbaine,1 +urban informatics,1 +urban lawyer,1 +urban morphology,1 +urban planning,1 +urban planning and design research,1 +urban policy and research,1 +urban rail transit,1 +urban research and practice,2 +urban science,0 +urban studies,3 +urban transcripts,1 +urban transformations,1 +urban water journal,1 +"urban, planning and transport research",1 +urbani izziv,1 +urbanismisäätiö,0 +urbanistica,1 +urbanities,1 +urbanomic media,0 +urbaria summaries series,-1 +urbe: brazilian journal of urban management,1 +urheilu ja oikeus : urheiluoikeuden yhdistyksen jäsenlehti,0 +urisa journal,1 +urjalan sanomat,-1 +urogynecology,1 +urolithiasis,1 +urologe: ausgabe a,1 +urologia fennica,-1 +urologia internationalis,1 +urologic clinics of north america,1 +urologic oncology: seminars and original investigations,1 +urologiia,0 +urology,1 +urology annals,0 +urology journal,1 +ursa,0 +ursan julkaisuja,-1 +ursi general assembly and scientific symposium,1 +ursi international symposium on electromagnetic theory,1 +ursus,1 +us wurk,1 +us-china education review. a,0 +"us-china education review. b, education theory",0 +us-china foreign language,0 +us-china law review,0 +usa-china business review,0 +usage-based linguistic informatics,1 +usda forest service: research papers pnw-rp,1 +usenix : the advanced computing systems association,1 +usenix security symposium,2 +user experience & urban creativity,0 +user modeling and user-adapted interaction,3 +ushus journal of business management,0 +uskonnontutkija,1 +"uskonto, katsomus ja kasvatus",1 +uskontotiede,-1 +uspehi gerontologii,0 +uspìhi ì dosâgnennâ u naucì,0 +ustav pro ceskou literaturu,1 +usuteaduslik ajakiri,1 +utah state university press,1 +utajärven kunta,0 +utb verlag,1 +utbildning & lärande,1 +utbildning och demokrati,1 +utciencia,0 +utet,0 +utet libreria,0 +utilitas,2 +utilitas mathematica,1 +utilities law review,1 +utilities policy,1 +utopian studies,1 +utrecht law review,1 +utrip,-1 +utukirjat,1 +utzverlag gmbh,0 +uudenkaupungin merihistoriallisen yhdistyksen vuosikirja,-1 +uudenmaan liiton julkaisuja,-1 +uudenmaan liitto,0 +uusi lahti,-1 +uusi rovaniemi,-1 +uusi suomi,-1 +uusi teknologia,-1 +uusi tie,-1 +uusikirkko kanneljärvi,-1 +uusimetsä,-1 +uusio-uutiset,-1 +uutis-jousi,-1 +uutis-urho,-1 +uutiset,-1 +uutisjyvät,-1 +uutisluotsi,-1 +uutismedia verkossa,-1 +uutisvuoksi,-1 +uutta kunnista,-1 +uutta vanhaa kulttuuriperinnöstä,-1 +uv4plants bulletin,1 +uvk verlagsgesellschaft,1 +uvp-report,0 +uvsor,-1 +uwm law review,1 +uzbekistan journal of polymers,0 +učenye zapiski rossijskogo gosudarstvennogo socialʹnogo universiteta,1 +učënye zapiski kazanskogo universiteta : seriâ estestvennye nauki,0 +učënye zapiski petrozavodskogo gosudarstvennogo universiteta,1 +v & r unipress,1 +v8-magazine,-1 +vaarojen sanomat,-1 +vaasan ammattikorkeakoulu,0 +"vaasan ammattikorkeakoulu, university of applied sciences publications : research reports",-1 +"vaasan ammattikorkeakoulu, university of applied sciences publications c : other publications",0 +vaasan tiedekirjasto,0 +vaasan yliopisto,0 +vaasan yliopiston raportteja,-1 +vaasan yliopiston tutkimuksia,0 +vaasan yritysinformaatio oy,0 +vaccimonitor,0 +vaccine,1 +vaccine x,1 +vaccines,0 +vacuum,1 +vadose zone journal,1 +vaikutuksessa-media,-1 +vajra books,0 +vakgr maatsch gezondh,0 +vakki publications,1 +valahian journal of historical studies,1 +valamon luostari,0 +valamon luostarin julkaisuja,-1 +valdaj,0 +valiz,0 +valkeakosken sanomat,-1 +valkonauha,-1 +valmentaja,-1 +valo,-1 +valoda: nozīme un forma,0 +valodas prakse: verojumi un ieteikumi,1 +valokuvakeskus peri,0 +valokynä,-1 +valtakunnallisen ohjausalan osaamiskeskuksen työpapereita,-1 +valterin julkaisusarja,-1 +valtion liikuntaneuvoston julkaisuja,-1 +valtion nuorisoneuvoston julkaisuja,-1 +valtion taloudellinen tutkimuskeskus,0 +valtioneuvoston julkaisuja,-1 +valtioneuvoston kanslia,0 +valtioneuvoston kanslian julkaisuja,-1 +valtioneuvoston selvitys- ja tutkimustoiminnan julkaisusarja,-1 +valtiontalouden tarkastusviraston selvitykset,-1 +valtiotieteellinen yhdistys,1 +valtiotieteellisen tiedekunnan julkaisuja,-1 +valtiovarainministeriö,0 +valtiovarainministeriön julkaisuja,-1 +valtra team,-1 +valuation studies,1 +value in health,2 +value in health regional issues,0 +van schaik publishers,0 +van schools tot scriptie,0 +vanavaravedaja,0 +vanden broele,1 +vandenhoeck & ruprecht,2 +vanderbilt journal of transnational law,2 +vanderbilt law review,2 +vanderbilt university press,1 +vanhustyö,-1 +vanhustyön keskusliitto,0 +vann,1 +vantaa-seura : vandasällskapet ry,0 +vantaan kaupunki,0 +vapaa ajattelija,-1 +vapaa-ajan kalastaja,-1 +vapaan sivistystyön yhteisjärjestö,0 +vapaasanakirja,-1 +vapaussoturi,-1 +varhaiskasvatuksen erityisopettaja,-1 +varia história,1 +variaciones borges,1 +variants: the journal of the european society for textual scholarship,1 +varrak as,0 +varsinais-suomen sotaveteraanin joulu,-1 +varsinais-suomen yrittäjä,-1 +vartija-aikakauslehden kannatusyhdistys r.y.,0 +varðin,-1 +vasa: european journal of vascular medicine,1 +vascular,1 +vascular and endovascular surgery,1 +vascular biology,0 +vascular cell,1 +vascular health and risk management,1 +vascular medicine,1 +vascular pharmacology,1 +vasi szemle,0 +vasomed,0 +vastapaino,2 +vasto,0 +vastuullinen tiede,-1 +vastuullisen tieteen julkaisusarja,-1 +vatt muistiot,-1 +vatt working papers,-1 +vatt-tutkimuksia,-1 +vavilovskoe obsestvo genetikov i selekcionerov,0 +värmland förr och nu,-1 +vcot open,0 +vde verlag,1 +vdf hochschulverlag ag an der eth zürich,1 +vdi verlag gmbh,0 +vdi-berichte,0 +vdm verlag dr. müller,0 +vdr beitrage zur erhaltung von kunst- und kulturgut,1 +vecchiarelli,0 +vector,0 +vector-borne and zoonotic diseases,1 +veda,0 +vedams books,1 +vegetation history and archaeobotany,2 +vegetos,0 +vehicle system dynamics,1 +vehicles,0 +vehicular communications,1 +vehits,0 +veikko,-1 +veins and lymphatics,0 +veleia,1 +veleučilište velika gorica,0 +vellikuppi,-1 +vene,-1 +venngeist,0 +"ventil - journal for hydraulics, automation and mechatronics",0 +ventspils augstskola,0 +venture capital,1 +ventus publishing,0 +verba: anuario galega de filoloxia,2 +verbrecher verlag,0 +verbum,1 +verbum et ecclesia,1 +verbum vitae,1 +verde,-1 +verdier,0 +verein für betriebswirtschaftlichen wissenstransfer des fachbereichs betriebswirtschaft e.v.,0 +verfassung und recht in übersee,0 +verfassungsblog,0 +vergentis,0 +vergilius,1 +verhaltenstherapie,1 +verifiche,1 +veritas,0 +verkkari,-1 +verkkolehti lahtinen,-1 +verkkouutiset,-1 +verkundigung und forschung,1 +verlag anton saurwein,1 +verlag barbara budrich,1 +verlag bauer & raspe,0 +verlag bertelsmann stiftung,0 +verlag der carl friedrich von wiezsäcker stiftung,0 +verlag der technischen universität graz universitätsbibliothek,0 +verlag der österreichischen akademie der wissenschaften,1 +verlag des römisch-germanischen zentralmuseums,1 +verlag dr. köster,1 +verlag empirische pädagogik,1 +verlag fassbaender,1 +verlag für geschichte und kultur,0 +verlag für gesprächsforschung,0 +verlag für polizeiwissenschaft,1 +verlag hans huber,1 +verlag holler,0 +verlag julius klinkhardt,1 +verlag karl alber,1 +verlag marie leidorf,1 +verlag otto sagner,1 +verlag philipp von zabern,1 +verlag rüegger zürich,1 +verlag schnell und steiner,1 +verlag vorwerk 8,1 +verlag wissenschaftliche scripten,0 +verlagsgruppe beltz,1 +vernacular architecture,1 +vernon press,1 +vero?ffentlichungen des instituts fu?r europa?ische geschichte mainz : abteilung universalgeschichte : beiheft,1 +veroffentlichungen des instituts fur europaische geschichte mainz: abteilung universalgeschichte und abteilung für abendlaendische religionsgeschichte,1 +verotus,1 +versants: revue suisse des littératures romanes,1 +verslagen en mededelingen van de koninklije academie voor nederlandse taal- en letterkunde,1 +verslagen van het centrum voor genderstudies - u gent,0 +verso,0 +verso,2 +versus,0 +vertebrate zoology,1 +vertice,1 +vertimo studijos,1 +vervuert verlag,1 +veröffentlichungen der universität duisburg-essen,1 +vesi- ja viemärilaitosyhdistyksen monistesarja,-1 +vesi- ja viemärilaitosyhdistys ry,0 +vesilaitosyhdistys ry.,0 +vesiposti,-1 +vesitalous,0 +vesnik grodzenskaga dzâržaǔnaga unìversìtèta ìmâ ânkì kupaly,0 +vest-agder-museet kristiansand,0 +vestnik ?elâbinskogo gosudarstvennogo universiteta. seriâ filosofiâ. sociologiâ. kul’turologiâ,1 +vestnik arhivista,0 +vestnik burâtskogo gosudarstvennogo universiteta,0 +vestnik drevnij istorii,1 +vestnik evropy,-1 +vestnik mezhdunarodnih organizatsii,1 +vestnik moskovskogo gosudarstvennogo lingvisticheskogo universiteta serija jazykoznanie,1 +vestnik moskovskogo gosudarstvennogo tehničeskogo universiteta imeni n.è. baumana. seriâ estestvennye nauki,0 +vestnik moskovskogo universiteta : seria 22 : teorija perevoda,1 +vestnik moskovskogo universiteta : seriâ 2 himiâ,0 +vestnik moskovskogo universiteta : seriâ 5 geografiâ,0 +vestnik moskovskogo universiteta. serija 10 zhurnalistika,1 +vestnik moskovskogo universiteta. serija 9. filologija,1 +vestnik moskovskogo universiteta. seriâ 19. lingvistika i mežkulʹturnaâ kommunikaciâ,1 +"vestnik moskovskogo universiteta: seriâ, filosofiâ",0 +vestnik moskovskovo universiteta. serija 21. upravlenija,1 +vestnik novosibirskogo gosudarstvennogo pedagogi?eskogo universiteta,0 +vestnik novosibirskogo gosudarstvennogo universiteta,1 +vestnik obshestvennogo mnenija,0 +vestnik ohotovedeniâ,0 +vestnik omskogo gosudarstvennogo pedagogičeskogo universiteta.,0 +vestnik permskogo universiteta : politologiâ,0 +vestnik permskogo universiteta. istoriâ,1 +vestnik permskogo universiteta. rossijskaâ i zarubežnaâ filologiâ,1 +vestnik polesskogo gosudarstvennogo universiteta : seriâ prirodovedčeskih nauk,0 +vestnik pravoslavnogo svâto-tihonovskogo gumanitarnogo universiteta. seriâ v. voprosy istorii i teorii hristianskogo iskusstva,1 +vestnik rggu,1 +vestnik rossiiskoi akademii nauk,1 +vestnik rossijskij fond fundamentalnyh issledovanij,0 +vestnik rossijskogo universiteta družby narodov,0 +vestnik rossijskogo universiteta družby narodov,1 +vestnik rossijskogo universiteta družby narodov. seriâ èkonomika,1 +vestnik rudn,0 +vestnik samarskogo gosudarstvennogo tehničeskogo universiteta. seriâ: fiziko-matematičeskie nauki,0 +vestnik sankt-peterburgskogo universiteta : meždunarodnye otnošeniâ,1 +vestnik sankt-peterburgskogo universiteta : seriâ 8 : menedzment,0 +vestnik sankt-peterburgskogo universiteta : seriâ istoriâ,1 +vestnik sankt-peterburgskogo universiteta : vostokovedenie i afrikanistika,0 +vestnik sankt-peterburgskogo universiteta kulʹtury i iskusstv,0 +"vestnik sankt-peterburgskogo universiteta. seriâ 5, èkonomika",1 +"vestnik sankt-peterburgskogo universiteta. seriâ 6. filosofiâ, kulturologiâ, politologiâ, pravo, meždunarodnye otnošeniâ",0 +"vestnik sankt-peterburgskogo universiteta. seriâ 7, geologiâ, geografiâ",0 +vestnik sankt-peterburgskogo universiteta. âzyk i literatura,1 +vestnik saratovskoj gosudarstvennoj ûridi?eskoj akademii,0 +"vestnik severo-vostočnogo federalʹnogo universiteta imeni m.k. ammosova seriâ ""nauki o zemle""",0 +vestnik slavânskih kulʹtur,1 +vestnik st. petersburg university: mathematics,0 +vestnik syktyvkarskogo universiteta : seriâ gumanitarnyh nauk,0 +vestnik tomskogo gosudarstvennogo universiteta,0 +vestnik tomskogo gosudarstvennogo universiteta : filologija,1 +"vestnik tomskogo gosudarstvennogo universiteta. filosofiâ, sociologiâ, politologiâ",1 +vestnik tverskogo gosudarstvenngo universiteta. seriia: istoriia,0 +"vestnik tverskogo gosudarstvennogo universiteta. seriâ, pedagogika i psihologiâ",0 +"vestnik udmurtskogo universiteta : sociologiâ, politologiâ, meždunarodnye otnošeniâ",1 +vestnik volgogradskogo gosudarstvennogo universiteta,0 +"vestnik volgogradskogo gosudarstvennogo universiteta. seriâ 4. istoriâ, regionovedenie, meždunarodnye otnošeniâ",1 +vestnik vâtskogo gosudarstvennogo universiteta,0 +vestnik èkonomičeskoj teorii,0 +vestnik ûžno-uralʹskogo gosudarstvennogo universiteta : seriâ pravo,0 +vestnik čerepoveckogo gosudarstvennogo universiteta,0 +vesuviana,1 +vetenskapssocieteten i lund,0 +veterinaria,0 +veterinaria,1 +veterinaria italiana,1 +veterinarija ir zootechnika,1 +veterinariâ segodnâ,0 +veterinarni medicina,1 +veterinarska stanica,0 +veterinarski arhiv,1 +veterinary anaesthesia and analgesia,2 +veterinary and animal science,1 +veterinary and comparative oncology,1 +veterinary and comparative orthopaedics and traumatology,1 +veterinary clinical pathology,1 +veterinary clinics of north america: equine practice,1 +veterinary clinics of north america: food animal practice,1 +veterinary clinics of north america: small animal practice,1 +veterinary dermatology,1 +veterinary economics,1 +veterinary immunology and immunopathology,2 +veterinary journal,3 +veterinary medicine,0 +veterinary medicine,1 +veterinary medicine and science,1 +veterinary microbiology,3 +veterinary ophthalmology,1 +veterinary parasitology,2 +veterinary parasitology x,1 +veterinary parasitology. regional studies and reports,1 +veterinary pathology,2 +veterinary practitioner,1 +veterinary quarterly,2 +veterinary radiology and ultrasound,1 +veterinary record,1 +veterinary record case reports,1 +veterinary record open,1 +veterinary research,3 +veterinary research communications,1 +veterinary sciences,0 +veterinary sciences tomorrow,1 +veterinary surgery,1 +vetus testamentum,3 +vetus testamentum et hellas,1 +vgb powertech,0 +vi hörs,-1 +via latgalica,1 +via university college,0 +via@,0 +viaggiatori,0 +vial: vigo international journal of applied linguistics,1 +viator : medieval and renaissance studies,3 +vibration,0 +vibrational spectroscopy,1 +vibroengineering procedia,1 +viceversa,0 +vichiana,1 +victims and offenders,1 +victoria business school,0 +victorian journal of home economics,0 +victorian literature and culture,2 +victorian periodicals review,1 +victorian poetry,3 +victorian review,1 +victorian studies,1 +victorians,1 +victorians institute journal,1 +victorina press,0 +vidarforlaget as,1 +vide. tehnoloģija. resursi,0 +video journal of education and pedagogy,0 +videosurgery and other miniinvasive techniques,1 +vidyodaya journal of management,0 +vidzemes augstskola,0 +vie et milieu-life and environment,1 +viella,1 +vienna academic press,0 +vienna circle institute yearbook,1 +vienna online journal on international constitutional law,1 +vienna university press,1 +vienna yearbook of population research,0 +viento sur,-1 +vierteljahresschrift fur sozial und wirtschaftsgeschichte,1 +vierteljahresschrift für heilpädagogik und ihre nachbargebiete,1 +vierteljahrshefte fur zeitgeschichte,3 +vierteljahrsschrift für wissenschaftliche pädagogik,1 +viesoji politika ir administravimas,1 +viesti,-1 +viesti-vesti,-1 +viestimies : viestiupseeriyhdistyksen julkaisu,-1 +viestin,0 +viestinnän tutkimusraportteja,-1 +viestintätoimisto kirjokansi,0 +vietnam journal of computer science,1 +vietnam journal of earth sciences,1 +vietnam journal of mathematics,1 +vietnam journal of science and technology,0 +vietnamese journal of legal sciences,1 +view,0 +viewz,0 +vigiliae christianae,3 +viherpiha,-1 +viherympäristö,-1 +vihreä lanka,-1 +vihreä sivistysliitto ry,0 +viinikkala,-1 +viinilehti,-1 +viipurin pitäjäläinen,-1 +viipurin suomalaisen kirjallisuusseuran toimitteita,1 +viisari,-1 +viisas raha,-1 +viiskunta,-1 +viispiikkinen,-1 +viitasaaren joulu,-1 +viitasaaren seutu,-1 +vikalpa,0 +vikerkaar,-1 +viking,1 +viking and medieval scandinavia,1 +vikingeskibsmuseet,0 +villa lanten ystävät ry,0 +villi,-1 +vilniaus dailės akademijos leidykla,0 +vilniaus kolegija,0 +vilnius university,0 +vimpelin joulu,-1 +vindobona journal of international commercial law and arbitration,1 +vindögat,-1 +vine journal of information and knowledge management systems,1 +vingtieme siecle-revue d'histoire,1 +vinnova,0 +violence against women,2 +violence and victims,1 +viral immunology,1 +virchows archiv,1 +virginia journal of international law,1 +virginia journal of law and technology,0 +virginia law review,2 +virginia quarterly review,1 +virginia tax review,1 +virginia tech publishing,0 +virikkeitä,-1 +virittäjä,2 +virke,-1 +viro,-1 +virologica sinica,1 +virologie,1 +virology,1 +virology journal,1 +virtain joulu,-1 +virtual and physical prototyping,1 +virtual conference human and social sciences at the common conference,0 +virtual creativity,1 +virtual reality,2 +virtual worlds,0 +virtus,1 +virtus interpress,1 +virulence,1 +virus evolution,1 +virus genes,1 +virus research,1 +viruses,0 +vis,1 +visceral medicine,1 +visible language,1 +visigrapp,1 +visio: la revue de l association internationale de semiotique visuelle,1 +vision,1 +vision research,1 +vision tecnologica,1 +visions for sustainability,1 +visions of research in music education,1 +visionääri,-1 +visitor studies,1 +visnik dnipropetrovskogo universitetu : seria menedzment innovacij,0 +visoka šola za zdravstvene vede slovenj gradec,0 +visor,0 +visual anthropology,2 +visual anthropology review,1 +visual arts research,1 +visual cognition,1 +visual communication,2 +visual communication quarterly,1 +visual communications and image processing,1 +visual computer,1 +"visual computing for industry, biomedicine, and art",1 +visual culture and gender,1 +visual culture in britain,1 +visual ethnography,1 +visual impairment research,1 +visual informatics,1 +visual inquiry,0 +visual intelligence,-1 +visual methodologies,1 +visual neuroscience,1 +visual resources: an international journal of documentation,1 +visual studies,2 +visual:design:scholarship,1 +viszeralmedizin,1 +vita e pensiero,1 +vita traductiva,1 +vitamins and hormones series,1 +vitark: acta archaeologica nidrosiensia,1 +vitis,1 +vitriini,-1 +vittorio klostermann,2 +vivarium: an international journal for the philosophy and intellectual life of the middle ages and renaissance,2 +vivlīoḟika,1 +vizantiski vremennik,1 +vjesnik za arheologiju i povijest dalmatinsku,1 +vk-kustannus oy,0 +vlaams diergeneeskundig tijdschrift,1 +vladimirskij gosudarstvenny`j universitet,0 +vlast,1 +vlc arquitectura,1 +vldb journal,3 +vlsi design,1 +vocations and learning,2 +vocifuoriscena,0 +vodenje v vzgoji in izobraževanju,0 +voenno-istoricheskii zhurnal,1 +voices,1 +voima,-1 +voima ja käyttö,-1 +voimaa ruuasta,-1 +voimistelu,-1 +voix et images,1 +vojenské rozhledy,-1 +volcanica,1 +volgogradskij gosudarstvenny`j universitet,0 +volkskunde,1 +volta review,1 +voltaire foundation,1 +volumina.pl daniel krzanowski,0 +voluntary sector review,1 +voluntas,1 +volupté,1 +von gunten & co. ag buch & netz,0 +voprosy ekonomiki i prava,0 +voprosy filologii,1 +voprosy filologii i mežkulʹturnoj kommunikacii: naučnye issledovaniâ i praktičeskie rešeniâ,0 +voprosy filosofii,1 +voprosy istorii,2 +voprosy kognitivnoj lingvistiki,1 +voprosy kul?turologii,1 +voprosy literatury,2 +voprosy materialovedeniâ,0 +voprosy obrazovanija,0 +voprosy onomastiki,1 +voprosy psikholingvistiki,1 +voprosy psikhologii,1 +voprosy shkolnoj i universitetskoj mediciny i zdorovja,0 +voprosy teatra,0 +voprosy yazykoznaniya,3 +voprosy âzykovogo rodstva,1 +vorgange,1 +voronezh state university,0 +vostochnaja literatura,0 +vostochnaya literatura,1 +vox,1 +vox latina,-1 +vox patrum,1 +vox romanica,1 +vox sanguinis,1 +völkerrechtsblog,0 +vrin,1 +vs,1 +vsb - technical university of ostrava,0 +vsp international science publishers,1 +vtt,0 +vtt research highlights,-1 +vtt science,0 +vtt technology,-1 +vtt visions,-1 +vu uitgeverij,0 +vulkan,0 +vulnerable children and youth studies,1 +vulnerable groups and inclusion,1 +vuorimiesyhdistys ry,0 +vuosi,-1 +vuosikirja,-1 +vuosilusto,1 +vuzf review,0 +vvm,0 +vvs : värme- och sanitetsteknikern,-1 +vysoká škola ekonomická - nakladatelství oeconomica,0 +vysoká škola výtvarných umení,0 +vytauto didžiojo universitetas,0 +vzdělávání dospělých ....,0 +väestöliitto,0 +väestöntutkimuslaitoksen julkaisusarja d,-1 +vähähaaran vuosikirja,-1 +vähäisiä lisiä,0 +väkevä,-1 +väki voimakas,1 +värillä,-1 +västra nyland,-1 +väyläkirjat,0 +väyläviraston julkaisuja,-1 +väyläviraston tutkimuksia,-1 +vård i fokus,0 +vårt försvar,-1 +vårt riddarhus,-1 +vìsnik dnìpropetrovsʹkogo unìversitetu. serìâ socìalʹnì komunìkacìï,0 +"vìsnik harkìvs?kogo nacìonal?nogo unìversitetu ìmenì v.n. karazìna. serìâ fìzi?na âdra, ?astinki, polâ",0 +vìsnik lvìvskogo unìversitetu : serìâ mìžnarodnì vìdnosini,0 +vìsnik lʹvìvsʹkogo unìversitetu : serìâ ekonomična,0 +vìsnik unìversitetu ìm. a. nobelâ. serìâ fìlologìčnì nauki,1 +võro instituudi toimõtisõq,1 +võru instituut,0 +w-album,-1 +w. bertelsmann verlag,0 +w.w. norton,1 +waanders,1 +wacana,1 +wachholtz verlag,0 +wader study,1 +waffen-und kostumkunde,1 +wagadu: a journal of transnational womens and gender studies,1 +wageningen academic publishers,1 +wageningen university,0 +wagneriaani,-1 +wagnerspectrum,1 +waikato law review,1 +wakayama tourism review,-1 +wallflower press,1 +wallstein verlag,2 +walt whitman quarterly review,1 +walter & duncan gordon foundation,0 +war and society,1 +war in history,2 +warasan phasa lae wattanatam kaoli sueksa,0 +warasan prachakron lae sangkhom,0 +warasan technology suranaree,0 +warasan wichai sahawitthayakan thai,0 +"warasan witsawakammasat, chulalongkorn university",0 +warburg institute,0 +warelia,0 +warkauden lehti,-1 +wasabladet,-1 +wasafiri,0 +waseda working papers in elf,0 +washington law review,1 +washington quarterly,1 +washington state university press,1 +wasmuth,1 +wasserwirtschaft,1 +waste and biomass valorization,1 +waste management,3 +waste management and research,1 +waste management bulletin,1 +water,0 +water air and soil pollution,1 +water alternatives,1 +water and environment journal,1 +water asset management international,0 +water biology and security,-1 +water economics and policy,1 +water emerging contaminants & nanoplastics,1 +water environment research,1 +water history,1 +water international,1 +water policy,1 +water practice and technology,1 +water quality research journal of canada,1 +water research,3 +water research x,1 +water resources,1 +water resources and economics,1 +water resources and industry,1 +water resources management,1 +water resources research,3 +water reuse,1 +water sa,1 +water science,1 +water science and engineering,1 +water science and technology,1 +water science and technology: water supply,1 +water security,1 +waterbirds,1 +waterhill publishing,0 +waterlat-gobacit network working papers,0 +waterlines,1 +watershed ecology and the environment,1 +watson publishing international,1 +wave motion,1 +wavelets and sparsity conference,0 +waves in random and complex media,1 +waxmann,1 +wayeb,0 +wayne state university press,1 +wear,3 +wearable technologies,1 +weather,1 +weather and climate dynamics,1 +weather and climate extremes,1 +weather and forecasting,1 +"weather, climate, and society",1 +weaver press,1 +web ecology,1 +web intelligence,1 +weblaw,0 +webology,1 +wedge entomological research foundation,0 +weed biology and management,1 +weed research,1 +weed science,1 +weed technology,1 +weekendavisen,-1 +weekly epidemiological record,-1 +wehrhahn verlag,1 +weidler buchverlag,1 +weimarer beitrage,2 +welding and cutting,1 +welding in the world,2 +welding international,1 +welding journal,1 +welhoja verkossa,-1 +well played,0 +"wellbeing, space and society",1 +wellcome open research,0 +welsh academic press,1 +welsh history review,1 +welsh writing in english: a yearbook of critical essays,1 +welttrends,-1 +welttrends,0 +wenyi lilun yanjiu,0 +werkstatt geschichte,0 +werkstattreihe deutsch als fremdsprache,1 +werner hülsbusch,0 +wesleyan university presss,1 +wessmans musikförlag,0 +west 86th,2 +west africa review,1 +west asian journal of speech and language pathology,0 +west european politics,3 +west indian medical journal,1 +west virginia university press,1 +westarp verlagsservicegesellschaft,1 +westburn publishers,1 +westend,0 +westensee-verlag,0 +westerly,0 +western american literature,1 +western europe,-1 +western folklore,2 +western historical quarterly,1 +western humanities review,1 +western journal of communication,1 +western journal of emergency medicine,1 +western journal of nursing research,1 +western north american naturalist,1 +western pacific surveillance response journal,1 +westfälisches dampfboot,1 +westminster john knox press,1 +westminster papers in communication and culture,1 +westphalia press,1 +westview press,1 +wetlands,1 +wetlands ecology and management,1 +wfb wirtschaftsförderung bremen gmbh,0 +wgn,0 +whatever,1 +white horse press,1 +whiteness and education,1 +whiting & birch,0 +whittles publishing,1 +who regional office for europe,0 +who south-east asia journal of public health,0 +who technical report series,1 +wi: journal of mobile media,0 +wiadomo?ci konserwatorskie,0 +wiadomosci archeologiczne,1 +wiadomosci chemiczne,0 +wiborgs nyheter,-1 +wicazo sa review: a journal of native american studies,1 +widening participation and lifelong learning,1 +widerscreen,1 +widmaier verlag,0 +widok,1 +wiener beiträge zur alten geschichte online,0 +wiener humanistische blätter,1 +wiener jahrbuch fur philosophie,1 +wiener klinische wochenschrift,1 +wiener medizinische wochenschrift,0 +wiener slawistischer almanach,1 +wiener studien,3 +wiener studien zur skandinavistik,1 +wiener zeitschrift fur die kunde des morgenlandes,1 +wiener zeitschrift zur geschichte der neuzeit,1 +wies i rolnictwo,0 +wilderness and environmental medicine,1 +wildfowl,1 +wildlife biology,1 +wildlife monographs,2 +wildlife research,1 +wildlife society bulletin,1 +wiley interdisciplinary reviews : data mining and knowledge discovery,1 +wiley interdisciplinary reviews-computational molecular science,1 +wiley interdisciplinary reviews. developmental biology,1 +wiley interdisciplinary reviews. membrane transport and signaling,0 +wiley interdisciplinary reviews. rna,1 +wiley interdisciplinary reviews: climate change,1 +wiley interdisciplinary reviews: cognitive science,1 +wiley interdisciplinary reviews: energy and environment,1 +wiley interdisciplinary reviews: nanomedicine and nanobiotechnology,1 +wiley-blackwell,2 +wiley-ieee press,1 +wiley-iste,2 +wiley-vch verlag,2 +wilfrid laurier university press,1 +wilhelm fink verlag,2 +wilkie collins society journal,1 +"will-zocholl, mascha, prof. und annette kämpf-dern",0 +willan publishing,1 +willdenowia,1 +william & mary policy review,0 +william and mary quarterly,2 +william carey library,1 +william james studies,1 +wilson journal of ornithology,1 +wiltshire archaeological and narural history magazine,1 +wind and structures,1 +wind energy,2 +wind energy science,1 +wind engineering,1 +windsor review of legal and social issues,1 +winterblommor,-1 +winterthur portfolio : a journal of american material culture,2 +wip wirtschaft und infrastruktur gmbh & co. planungs kg,0 +wipf & stock publishers,0 +wire journal international,-1 +wired,-1 +wireless advanced,0 +wireless communication and applications,0 +wireless engineering and technology,0 +wireless innovation forum european conference on communications technologies and software defined radio,0 +wireless networks,1 +wireless personal communications,1 +wireless sensor network,0 +wireless telecommunications symposium,0 +wireless world research forum meeting,0 +wires : forensic science,0 +wires computational statistics,1 +wires. water,1 +wirkendes wort,2 +wirtschaft und management,0 +wirtschaft und wettbewerb,1 +wisconsin international law journal,1 +wisconsin law review,1 +wisdom letters,1 +wissenschaftliche buchgesellschaft,1 +wissenschaftliche untersuchungen zum neuen testament,3 +wissenschaftliche untersuchungen zum neuen testament : reihe 2,3 +wissenschaftlicher kommissionsverlag,0 +wissenschaftlicher verlag trier,1 +wissenschaftsverlag vauk kiel,1 +wit press,1 +wit transactions on ecology and the environment,0 +wit transactions on engineering sciences,1 +wit transactions on the built environment,0 +witherby publishing group,1 +wits university press,1 +wittgenstein-studien,1 +witwatersrand university press,1 +więź,0 +wmu journal of maritime affairs,1 +wochenblatt fur papierfabrikation,1 +wochenschau,0 +wohlers associates,0 +wolfenbuetteler abhandlungen zur renaissanceforschung,1 +wolfenbutteler barock-nachrichten,1 +wolfenbutteler renaissance mitteilungen,1 +"wolkersdorfer, karoline : wolke events",0 +wolkowicz editores,0 +wolters kluwer,1 +wolters kluwer čr,0 +womans art journal,1 +women and birth,1 +women and children nursing,0 +women and criminal justice,1 +women and health,1 +women and language,1 +women and music: a journal of gender and culture,1 +women and performance: a journal of feminist theory,1 +women and therapy,1 +women in french studies,1 +women in judaism: a multidisciplinary journal,1 +women in sport and physical activity journal,1 +women's health,1 +women's history review,2 +women's midlife health,1 +women's reproductive health,1 +women's studies in communication,1 +women: a cultural review,1 +women`s history magazine,1 +womens health issues,1 +womens philosophy review,1 +womens rights law reporter,1 +womens studies,1 +womens studies international forum,1 +womens studies quarterly,1 +womens writing,1 +wonca europe,0 +wood and fiber science,1 +wood flooring asia,-1 +wood material science and engineering,1 +wood research,1 +wood science and technology,1 +woodema,0 +woodhead publishing,1 +word,1 +word and image,2 +word and music studies,1 +word structure,2 +wordsworth circle,1 +work and occupations,3 +work and stress,3 +work based learning in primary care,1 +work employment and society,3 +work in the global economy,1 +"work organisation, labour and globalisation",1 +"work, aging and retirement",2 +work: a journal of prevention assessment and rehabilitation,1 +workforce education forum,0 +working conference on human work interaction design,0 +working paper,-1 +working paper series,-1 +working paper series,0 +working papers,-1 +"working papers : lund university, department of linguistics",-1 +working papers in european language diversity,-1 +working papers in language pedagogy,0 +working with older people,0 +workplace,1 +workplace health and safety,1 +"workshop on bytecode semantics, verification, analysis and transformation",0 +workshop on circuits and systems for medical and environmental applications,0 +workshop on corporate governance : eiasm,0 +workshop on cyclostationary systems and their applications,0 +workshop on detection and classification of acoustic scenes and events,1 +workshop on eye tracking and visualization,0 +workshop on field-coupled nanocomputing,0 +workshop on geographic information observatories,0 +"workshop on hyperspectral image and signal processing, evolution in remote sensing",0 +workshop on information processing and control,0 +workshop on information theoretic methods in science and engineering,0 +workshop on mobile software engineering,0 +workshop on non-classical models of automata and applications,1 +workshop on planning and robotics,0 +"workshop on positioning, navigation, and communication",1 +workshop on power-aware computing and systems,0 +workshop on privacy enhancing tools,0 +workshop on research in the large,0 +workshop on securing and trusting internet names,0 +workshop on strategic human resource management,0 +workshop on the experience of and advances in developing dependable systems in event-b,0 +world,0 +"world academy of science, engineering and technology",0 +"world academy of science, engineering and technology proceedings",0 +world affairs,1 +world affairs press,0 +world animal review,1 +world applied sciences journal,0 +world archaeology,3 +world art,1 +world bank economic review,1 +world bank research observer,1 +world competition: law and economics review,1 +world congress in industrial process tomography,0 +world congress on computer applications and information systems,0 +world congress on engineering and computer science,0 +world congress on information and communication technologies,0 +world congress on intelligent control and automation,0 +world congress on internet security,0 +world congress on medical and health informatics,1 +world congress on multimedia and computer science,0 +world congress on nature and biologically inspired computing,1 +world council of churches publications,0 +world development,3 +world development perspectives,1 +world development sustainability,1 +world economic review,1 +world economics: the journal of current economic analysis and policy,1 +world economy,1 +world electric vehicle journal,0 +world engineering education flash week,0 +world englishes,2 +world federation of occupational therapists bulletin,1 +world film locations,0 +world financial review,0 +world forestry congress,0 +world futures review,1 +world futures: the journal of general evolution,1 +world health,0 +world health organization,0 +world history connected,1 +world journal for pediatric and congenital heart surgery,0 +world journal of biological psychiatry,1 +world journal of cardiology,0 +world journal of cardiovascular diseases,0 +world journal of clinical cases,0 +world journal of clinical oncology,0 +world journal of computer application and technology,0 +world journal of diabetes,1 +world journal of education,0 +world journal of emergency surgery,2 +world journal of engineering,1 +world journal of engineering and technology,0 +world journal of english language,0 +"world journal of entrepreneurship, management and sustainable development",1 +world journal of environmental research,0 +world journal of experimental medicine,1 +world journal of gastroenterology,0 +world journal of gastrointestinal surgery,0 +world journal of mechanics,0 +world journal of methodology,0 +world journal of microbiology and biotechnology,1 +world journal of neuroscience,0 +world journal of nuclear medicine,1 +world journal of nuclear science and technology,0 +world journal of ophthalmology,0 +world journal of orthopedics,1 +world journal of otorhinolaryngology,0 +world journal of otorhinolaryngology-head and neck surgery,0 +world journal of pediatric surgery,1 +world journal of pediatrics,1 +world journal of pharmacology,1 +world journal of psychiatry,0 +world journal of radiology,0 +world journal of social sciences,0 +world journal of surgery,1 +world journal of surgical oncology,1 +world journal of urology,2 +world journal of vat/gst law,1 +world journal on educational technology,0 +world leisure journal,1 +world literature studies,0 +world literature today,2 +world medical & health policy,1 +world mycotoxin journal,1 +world neurosurgery,1 +world neurosurgery x,0 +world of media,0 +"world of metallurgy, erzmetall",0 +"world of mining, surface, underground",0 +world of music,2 +world of the news,0 +world oil,0 +world oil trade,1 +world patent information,1 +world pipelines,-1 +world policy journal,1 +world political science review,1 +world politics,3 +world psychiatry,3 +world publishing audio-video & electronic press,1 +world publishing corporation,0 +world rabbit science,1 +world resources,1 +"world review of entrepreneurship, management and sustainable development",1 +world review of intermodal transportation research,1 +world review of political economy,1 +world science,0 +world scientific,1 +world scientific proceedings series on computer engingeering and information science,1 +world social psychiatry,1 +world social sciences exchange,0 +world studies in education,1 +world sustainable energy days,-1 +world symposium on computer networks and information security,0 +world tax journal,3 +world today,1 +world trade and arbitration materials,1 +world trade review,1 +world transactions on engineering and technology education,1 +world transport policy and practice,1 +world water policy,1 +world wide web-internet and web information systems,1 +world yearbook of education,1 +worlds poultry science journal,1 +worldviews on evidence-based nursing,2 +"worldviews: environment, culture, religion",1 +worldwide hospitality and tourism themes,1 +worldwide microsoft dynamics academic preconference,0 +worms verlag,0 +worship,1 +wound management & prevention,1 +wound repair and regeneration,1 +wounds: a compendium of clinical research and practice,1 +wörterbücher zur sprach- und kommunikationswissenschaft online,0 +writing & pedagogy,1 +writing in education,0 +writing systems research,1 +writing technologies,1 +writingplace,1 +writings from the finnish academy of fine arts,0 +writings on dance,1 +written communication,3 +written language and literacy,1 +"wroclaw review of law, administration & economics",0 +wseas international conference on computer engineering and applications,0 +wseas press,0 +wseas transactions on advances in engineering education,0 +wseas transactions on biology and biomedicine,1 +wseas transactions on communications,0 +wseas transactions on computer research,0 +wseas transactions on computers,0 +wseas transactions on environment and development,1 +wseas transactions on heat and mass transfer,0 +wseas transactions on information science and applications,0 +wseas transactions on mathematics,0 +wseas transactions on signal processing,0 +wseas transactions on systems,0 +wseas transactions on systems and control,0 +wsi-mitteilungen,1 +wsoy,0 +wspolczesna onkologia-contemporary oncology,1 +wtm-verlag,1 +wuhan university press,0 +wulfenia,0 +wunderkammer press,0 +wurzburger jahrbucher fur die altertumswissenschaft,1 +wydawnictwa uniwersytetu warszawskiego,0 +wydawnictwo attyka,0 +wydawnictwo c.h.beck spółka z o.o.,0 +wydawnictwo diecezjalne i drukarnia sandomierz,0 +wydawnictwo dig,0 +wydawnictwo libron,0 +wydawnictwo naukowe akapit,0 +wydawnictwo naukowe pwn,0 +wydawnictwo naukowe scholar,0 +wydawnictwo naukowe uniwersytetu im. adama mickiewicza,1 +wydawnictwo naukowe uniwersytetu pedagogicznego im. komisji edukacji narodowej,0 +wydawnictwo politechniki poznańskiej,0 +wydawnictwo politechniki łódzkiej,0 +wydawnictwo politechniki śląskiej,0 +wydawnictwo sejmowe,0 +wydawnictwo universytetu wroclawskiego,1 +wydawnictwo uniwersytetu ekonomicznego w katowicach,0 +wydawnictwo uniwersytetu gdańskiego,0 +wydawnictwo uniwersytetu lodzkiego,0 +wydawnictwo uniwersytetu rzeszowskiego,0 +wydawnictwo uniwersytetu w białymstoku,1 +wydawnictwo via nova,1 +wydawnictwo werset,0 +wydawnictwu adam marszalek,1 +wydawnnictwo poznanskiego towarzystwa przyjaciol nauk,0 +wyższa szkoła ekonomiczna w białymstoku,0 +wékwos,0 +x-ray spectrometry,1 +xamk inspiroi,-1 +xamk kehittää,-1 +xamk oppimateriaalit,-1 +xamk tutkii,-1 +"xcoax proceedings of the conference on computation, communication, aesthetics & x",1 +xenobiotica,1 +xenotransplantation,1 +xiandai chuanbo,0 +xiandai tushu qingbao jishu,0 +xiandai yuancheng jiaoyu yanjiu,0 +xiandai zhexue,0 +xiangtan daxue xuebao : ziran kexue ban,0 +xibei mingzu,1 +xin li xue jin zhan,0 +xitong gongcheng lilun yu shijian,0 +xitong gongcheng yu dianzi jishu,0 +xrds: crossroads,0 +xuewei yu yanjiusheng jiaoyu,0 +xviie siecle,1 +"y?xué g?ngchéng. applications, basis, communications",1 +yad vashem studies,1 +yakugaku zasshi,0 +yale classical studies,1 +yale french studies,2 +"yale journal of health policy, law, and ethics",1 +yale journal of international law,2 +yale journal of law & the humanities,0 +yale journal of law and feminism,1 +yale journal of music & religion,1 +yale journal on regulation,1 +yale law and policy review,1 +yale law journal,3 +yale review,0 +yale university press,3 +yanshi lixue yu gongcheng xuebao,0 +yantu lixue,0 +yaogan xuebao,0 +yapı,0 +yazy`ki slavyanskoj kul`tury`,0 +yazyki slavyanskoj kultury,1 +ydin,-1 +year book of the leo baeck institute,1 +yearbook for traditional music,3 +yearbook of antitrust and regulatory studies,1 +yearbook of balkan and baltic studies,1 +yearbook of english studies,1 +yearbook of european law,2 +yearbook of international disaster law,1 +yearbook of international environmental law,1 +yearbook of international humanitarian law,1 +yearbook of medical informatics,1 +yearbook of muslims in europe,0 +yearbook of phraseology,1 +yearbook of physical anthropology,1 +yearbook of the german cognitive linguistics association,1 +yearbook of the international society for the didactics of history,1 +yearbook of the international tribunal for the law of the sea,1 +yearbook of the research centre for german and austrian exile studies,1 +"yearbook of the unesco international clearinghouse on children, youth and media",1 +years work in english studies,1 +yeast,1 +yeditepe university,0 +yejing yu xianshi,0 +yeol-sang journal of classical studies,1 +yerevan state university of architecture and construction,0 +yesterday and today,0 +yfi julkaisuja,-1 +yhdyskuntasuunnittelu,1 +yhteiset lapsemme,-1 +yhteiset lapsemme ry,0 +yhteiskuntapolitiikka,2 +yhteiskuntatieteellisen tietoarkiston julkaisuja,0 +yhteiskuntatieteellisen ympäristötutkimuksen seura,0 +yhys tiedotuslehti,-1 +yiddish: modern jewish studies,1 +yingyong xinlixue,0 +ykköslohja,-1 +yksityistieuutiset : yksityistieasioiden tiedotuslehti,-1 +yle,-1 +yleinen teollisuusliitto ry,0 +yleislääkäri,1 +yleisradio,0 +yleistajuiset selvitykset,-1 +yliopisto,-1 +yliopiston nimipäiväalmanakka,-1 +yliopistopedagogiikka,1 +ylioppilaslehti,-1 +ylä-kainuu,-1 +ylä-satakunta,-1 +ympyriäinen,-1 +ympäristö & yritys tänään,-1 +ympäristö ja terveys,0 +ympäristöhistoria: finnish journal of environmental history,0 +ympäristöjuridiikka,1 +ympäristökasvatus,-1 +ympäristökustannus oy,0 +ympäristöministeriö,0 +ympäristöministeriön julkaisuja,-1 +ympäristöpolitiikan ja -oikeuden vuosikirja,1 +yokohama publishers,1 +yonago acta medica,0 +yonsei medical journal,1 +york papers in linguistics,0 +yorkshire archaeological journal,1 +yorkshire sculpture park,0 +young,2 +young children,1 +young consumers,1 +yours truly,-1 +youth,0 +youth and globalization,1 +youth and society,2 +youth justice,1 +youth studies australia,1 +youth theatre journal,1 +youth violence and juvenile justice,2 +"youth, young adulthood and society",3 +yōroppa nihongo kyōiku,0 +yritteliäs auranmaa,-1 +yrittäjyyskasvatuksen aikakauskirja,0 +yrittäjä,-1 +yrittäjän lappi,-1 +yrittävä lakeus,-1 +yritysetiikka,1 +ysec yearbook of socio-economic constitutions,1 +yuanzihe wuli pinglun,0 +yuanzineng kexue jishu,0 +yuhang xuebao,0 +yunghapgyoyuk yeon-gu,0 +yükseköğretim dergisi,0 +yíqì yíbi?o xuébào,0 +yıldız teknik üniversitesi,0 +z dejin hutnictvi,1 +zacht lawijd,1 +zagadnienia ekonomiki rolnej,0 +zagadnienia naukoznawstwa,0 +zagadnienia rodzajow literackich,1 +zaglossus,0 +zakład wydawniczy nomos,0 +zamm: zeitschrift fur angewandte mathematik und mechanik,1 +zaozhi kexue yu jishu,0 +zaphon,1 +zapiski gornogo instituta,1 +zapiski historyczne,1 +zapiski instituta istorii materialʹnoj kulʹtury ran,0 +zapiski nauchnyh seminarov pomi,1 +zarch,1 +zarzdadzanie przedsiebiorstwem,0 +zavarivanje i zavarene konstrukcije,0 +zbornik matice srpske za filologiju i lingvistiku,1 +"zbornik radova - geografski institut ""jovan cvijić""",1 +zbornik radova ekonomskog fakulteta u rijeci-proceedings of rijeka facultyof economics,0 +zdm,1 +"zdorov'â, sport, reabìlìtacìâ",0 +zdravniski vestnik,1 +zdravotnícke listy,0 +zdravstveno varstvo,1 +zebrafish,1 +zed books,2 +zef discussion papers on development policy,-1 +zei discussion paper,-1 +zeit germany : study & research,-1 +zeit germany : work & start up,-1 +zeit-magazin,-1 +zeitgeschichte,1 +zeithistorische forschungen,2 +zeitmagazin,-1 +zeitschrift der deutschen gesellschaft fur geowissenschaften,1 +zeitschrift der deutschen morgenlandischen gesellschaft,1 +zeitschrift der gesellschaft für musiktheorie,1 +zeitschrift der savigny-stiftung fur rechtsgeschichte: germanistische abteilung,2 +zeitschrift der savigny-stiftung fur rechtsgeschichte: kanonistische abteilung,1 +zeitschrift der savigny-stiftung fur rechtsgeschichte: romanistische abteilung,2 +zeitschrift des deutschen palastina-vereins,1 +zeitschrift des deutschen vereins fur kunstwissenschaft,1 +zeitschrift des verbandes polnischer germanisten,1 +zeitschrift fuer kritische musikpaedagogik,1 +zeitschrift fur agrargeschichte und agrarsoziologie,1 +zeitschrift fur agyptische sprache und altertumskunde,2 +zeitschrift fur althebraistik,1 +zeitschrift fur altorientalische und biblische rechtsgeschichte,1 +zeitschrift fur analysis und ihre anwendungen,1 +zeitschrift fur angewandte linguistik,2 +zeitschrift fur angewandte mathematik und physik,1 +zeitschrift fur anglistik und amerikanistik,2 +zeitschrift fur anorganische und allgemeine chemie,1 +zeitschrift fur antikes christentum,2 +zeitschrift fur arabische linguistik,1 +zeitschrift fur arbeits-und organisationspsychologie,1 +zeitschrift fur arznei- und gewurzpflanzen,1 +zeitschrift fur assyriologie und vorderasiatische archaologie,2 +zeitschrift fur asthetik und allgemeine kunstwissenschaft,2 +zeitschrift fur auslaendisches oeffentliches recht und voelkerrecht,1 +zeitschrift fur auslandische und internationales arbeits- und sozialrecht,1 +zeitschrift fur balkanologie,1 +zeitschrift fur bayerische landesgeschichte,1 +zeitschrift fur bibliothekswesen und bibliographie,1 +zeitschrift fur celtische philologie,2 +zeitschrift fur deutsche philologie,3 +zeitschrift fur deutsches altertum und deutsche literatur,2 +zeitschrift fur dialektische theologie,1 +zeitschrift fur dialektologie und linguistik,2 +zeitschrift fur dialektologie und linguistik: beihefte,1 +zeitschrift fur didaktik der philosophie und ethik,1 +zeitschrift fur die alttestamentliche wissenschaft,3 +zeitschrift fur die gesamte strafrechtswissenschaft,1 +zeitschrift fur die neutestamentliche wissenschaft und die kunde der alteren kirche,3 +zeitschrift fur erziehungswissenschaft,1 +zeitschrift fur ethnologie,1 +zeitschrift fur europaeisches privatrecht,2 +"zeitschrift fur europarecht, internationales privatrecht und rechtsvergleichung",1 +zeitschrift fur evaluation,1 +zeitschrift fur evangelische ethik,2 +zeitschrift fur evangelisches kirchenrecht,1 +zeitschrift fur franzosische sprache und literatur,2 +zeitschrift fur fremdsprachenforschung,1 +zeitschrift fur gastroenterologie,1 +zeitschrift fur geburtshilfe und neonatologie,1 +zeitschrift fur geomorphologie,1 +zeitschrift fur germanistik,2 +zeitschrift fur germanistische linguistik,2 +zeitschrift fur gerontologie und geriatrie,1 +zeitschrift fur geschichte der arabisch-islamischen wissenschaften,1 +zeitschrift fur geschichtswissenschaft,1 +zeitschrift fur gesundheitspsychologie,0 +zeitschrift fur heilpadagogik,1 +zeitschrift fur historische forschung,2 +zeitschrift fur interkulturelle germanistik,1 +zeitschrift fur internationale beziehungen,1 +zeitschrift fur kanada-studien,1 +zeitschrift fur katalanistik,1 +zeitschrift fur katholische theologie,1 +zeitschrift fur kinder-und jugendpsychiatrie und psychotherapie,0 +zeitschrift fur kirchengeschichte,2 +zeitschrift fur klinische psychologie und psychotherapie,0 +zeitschrift fur kmu und entrepreneurship,1 +zeitschrift fur kristallographie,1 +zeitschrift fur kristallographie supplements,0 +zeitschrift fur kritische theorie,1 +zeitschrift fur kunstgeschichte,3 +zeitschrift fur kunsttechnologie und konservierung,1 +zeitschrift fur medizinische physik,1 +zeitschrift fur missionswissenschaft und religionswissenschaft,1 +zeitschrift fur naturforschung section a: a journal of physical sciences,1 +zeitschrift fur naturforschung section b: a journal of chemical sciences,1 +zeitschrift fur naturforschung section c: a journal of biosciences,1 +zeitschrift fur neuere rechtsgeschichte,1 +zeitschrift fur neuere theologiegeschichte,1 +zeitschrift fur orthopadie und unfallchirurgie,1 +zeitschrift fur ostmitteleuropa-forschung,2 +zeitschrift fur padagogik,1 +zeitschrift fur padagogik und theologie,1 +zeitschrift fur papyrologie und epigraphik,2 +zeitschrift fur parlamentsfragen,1 +zeitschrift fur philosophische forschung,2 +zeitschrift fur physikalische chemie-international journal of research in physical chemistry and chemical physics,1 +zeitschrift fur phytotherapie: offizielles organ der ges. f. phytotherapie e.v,1 +zeitschrift fur politik,1 +zeitschrift fur politikwissenschaft,1 +zeitschrift fur politische theorie,0 +zeitschrift fur psychiatrie psychologie und psychotherapie,1 +zeitschrift fur psychologie-journal of psychology,1 +zeitschrift fur psychosomatische medizin und psychotherapie,1 +zeitschrift fur rechtssoziologie,1 +zeitschrift fur religions-und geistesgeschichte,1 +zeitschrift fur religionswissenschaft,2 +zeitschrift fur rheumatologie,1 +zeitschrift fur romanische philologie,3 +zeitschrift fur schweizerische archaologie und kunstgeschichte,1 +zeitschrift fur semiotik,1 +zeitschrift fur sexualforschung,1 +zeitschrift fur slavische philologie,1 +zeitschrift fur slawistik,3 +zeitschrift fur soziologie,2 +zeitschrift fur soziologie der erziehung und sozialisation,1 +zeitschrift fur sportpsychologie,1 +zeitschrift fur sprachwissenschaft,1 +zeitschrift fur theologie und kirche,3 +zeitschrift fur unternehmensgeschichte,1 +zeitschrift fur volkskunde,1 +zeitschrift fur weltgeschichte,1 +zeitschrift für digitale geisteswissenschaften,1 +zeitschrift für hochschulentwicklung,0 +zeitschrift für interaktionsforschung in dafz,0 +zeitschrift für kristallographie : crystalline materials,1 +"zeitschrift für religion, gesellschaft und politik",1 +zeitschrift für sozialreform,1 +zeitschrift für archäologie des mittelalters,2 +zeitschrift für aussen- und sicherheitspolitik,1 +zeitschrift für diskursforschung,1 +zeitschrift für entwicklungspsychologie und pädagogische psychologie,1 +zeitschrift für epileptologie,0 +zeitschrift für erziehungswissenschaftliche migrationsforschung,0 +zeitschrift für ethik und moralphilosophie,1 +"zeitschrift für evidenz, fortbildung und qualität im gesundheitswesen",1 +zeitschrift für geographiedidaktik,1 +zeitschrift für interkulturellen fremdsprachenunterricht,2 +zeitschrift für japanisches recht,1 +zeitschrift für kristallographie : proceedings,0 +zeitschrift für kulturphilosophie,1 +zeitschrift für lebensrecht,1 +zeitschrift für literaturwissenschaft und linguistik,2 +zeitschrift für luft- und weltraumrecht,0 +zeitschrift für mykologie,0 +zeitschrift für orient-archaologie,1 +zeitschrift für praktische philosophie,1 +zeitschrift für religion und gesellschaft,1 +zeitschrift für sozialpädagogik,1 +zeitschrift für technikfolgenabschätzung in theorie und praxis,1 +zeitschrift für tourismuswissenschaft,0 +zeitschrift für vergleichende politikwissenschaft,1 +zeitschrift für öffentliches recht,1 +zeitschrift korpora deutsch als fremdsprache,0 +zeitsprunge: forschungen zur freuhen neuzeit,1 +zeitzeichen,-1 +zeki sistemler teori ve uygulamaları dergisi,0 +zemdirbyste-agriculture,1 +zenetudomanyi dolgozatok,1 +zenith,-1 +zentralasiatische studien,1 +zentralblatt fur chirurgie,1 +zep,1 +zephyrus,1 +zeszyty naukowe politechnika slaska : organizacja i zarzadzanie,0 +zeszyty naukowe politechniki poznańskiej. organizacja i zarza̧dz anie,0 +zeszyty naukowe uniwersytetu gdańskiego. ekonomika transportu i logistyka,0 +zeszyty teoretyczne rachunkowosci,0 +zeta books,1 +zeventiende eeuw,1 +zfo : zeitschrift führung + organisation,0 +"zfv: zeitschrift fur geodasie, geoinformation und landmanagement",1 +zfw - advances in economic geography,1 +zgodovinski casopis-historical review,1 +zhaoming gongcheng xuebao,0 +zhejiang shuren daxue xuebao,0 +zhendong yu chongji,0 +zhexue fenxi,0 +zhishi wenku,-1 +zhongcaoyao,0 +zhongguo anquan kexue xuebao,0 +zhongguo dianhua jiaoyu,0 +zhongguo gaodeng yixue jiaoyu,0 +zhongguo gonglu xuebao,0 +zhongguo jiaoshi,0 +zhongguo kexueyuan daxue xuebao.,0 +zhongguo liang-you xuebao,0 +zhongguo quanke yixue,0 +zhongguo shiyong huli zazhi,0 +zhongguo tuxiang tuxing xuebao,0 +zhongguo weisheng zhiliang guanli,0 +zhongguo xueshu qikan,0 +zhongguo yuwen,1 +zhongguo zhongyao zazhi,0 +zhonghua erkexue zazhi,0 +zhonghua weichan yixue zazhi,0 +zhonghua weishengwuxue he mianyixue zazhi,0 +zhongnan daxue xuebao. ziran kexue ban,0 +zhongyang yinyue xueyuan xuebao,0 +zhuangshi,0 +zhurnal institutsionalnyh issledovanij,0 +zhurnal issledovanij sotsialnoj politiki,1 +zhurnal nauchnoi i prikladnoi fotografii,1 +zhurnal nevrologii i psikhiatrii imeni s s korsakova,1 +zhurnal novoj ekonomitsheskoj assotsiatsii,0 +zhurnal obshchei biologii,1 +zhurnal voprosy neirokhirurgii im. nn burdenko,0 +zhurnalist sotsialjnye kommunikatsii,0 +zhōnghuá mínguó xīnzàngxué huì zázhì,0 +zidonghua xuebao,0 +zielsprache deutsch,1 +zimbabwe veterinary journal,0 +zinatnes vestnesis,1 +ziran bianzhengfa yanjiu,0 +zitteliana reihe a: mitteilungen der bayerischen staatssammlung fur palaontologie und geologie,1 +zitteliana reihe b: abhandlungen der bayerischen staatssammlung fur palaontologie und geologie,1 +zivot umjetnosti,1 +zkg international,1 +zlatoust,0 +znanstvena založba filozofske fakultete univerze v ljubljani,0 +znanstvenoraziskovalni center sazu,0 +zograf,1 +zolotoordynskaâ civilizaciâ,0 +zolotoordynskoe obozrenie,0 +zondervan,0 +zonemoda journal,1 +zoo biology,1 +zoodiversity,1 +zookeys,1 +zoologica scripta,1 +zoological journal of the linnean society,1 +zoological letters,1 +zoological science,1 +zoological studies,1 +zoological systematics,0 +zoologichesky zhurnal,1 +zoologischer anzeiger,1 +zoology,1 +zoology and ecology,1 +zoology in the middle east,1 +zoomorphology,1 +zoonoses and public health,2 +zoonotic diseases,0 +zoosystema,1 +zoosystematica rossica,1 +zoosystematics and evolution,1 +zootaxa,1 +zootecnia tropical,1 +zouhdi,1 +zprávy lesnického výzkumu,0 +zte communications,0 +zu guo,-1 +zuchtungskunde,1 +zuckerindustrie,1 +zunamen: zeitschrift für namenforschung,1 +zutot,1 +zwingliana,1 +zygon,1 +zygote,1 +zywnosc-nauka technologia jakosc,1 +zürcher beiträge zur sicherheitspolitik,1 +ágora,0 +"ámbar diseño, s.c.",0 +ámbitos,1 +ápeiron,0 +âderna ta radìacìjna bezpeka,0 +âzyk i social?naâ dinamika,0 +"âzyk, kommunikaciâ i social?naâ sreda",1 +ägypten und levante: internationale zeitschrift für ägyptische archäologie,1 +ähtärinjärven uutisnuotta,-1 +äidinkielen opettajain liiton vuosikirja,0 +äidinkielen opettajain liitto ry,0 +äidinkielen opetustieteen seura,0 +äldre i centrum,-1 +äripäev,0 +ääretön,-1 +åbo akademi,0 +åbo akademis förlag,1 +ålands fredsinstitut,0 +ålands landskapsregering,0 +ålands sjöfart,-1 +åländsk odling,0 +årbok (norsk maritimt museum),1 +årbok: fortidsminneforeningen,1 +årsbok,-1 +çanakkale kitaplığı,0 +çukurova araştırmaları.,0 +èkologiâ âzyka i kommunikativnaâ praktika,0 +èkonomika i upravlenie,0 +èkonomika regiona,0 +èkonomičeskaâ istoriâ,1 +èkonomičeskaâ politika,0 +èkonomičeskij žurnal vysšej školy èkonomiki,0 +ètnografiâ (sankt-peterburg),1 +échanges linguistiques en sorbonne,0 +écho des études romanes,0 +éditions de la société internationale d’études yourcenariennes,0 +éditions de la sorbonne,0 +éditions de linguistique et de philologie,1 +éditions de l´université de savoie,1 +éditions du seuil,1 +éditions ifrikiya,0 +éditions kimé,1 +éditions klincksieck,1 +éditions la découverte,0 +éditions nouvelles cécile defaut,0 +éditions passage(s),0 +éditions québécoises de l´oeuvre,0 +éditions yvon blais,0 +éditions érès,0 +égalité,0 +élet és irodalom,-1 +études de communication,0 +études en didactique des langues,0 +études et documents berbères,1 +études finno-ougriennes,1 +études kurdes,0 +études littéraires africaines,0 +études romanes de brno,1 +ìnformacìjnì tehnologìï ì zasobi navčannâ,0 +ìnozemnì movi,0 +óbudai egyetem,0 +õpetatud eesti seltsi aastaraamat,0 +ökumenische rundschau,1 +örebro universitet,0 +östbulletinen,-1 +österbottens tidning,-1 +österreichische computer gesellschaft,0 +österreichische computer-gesellschaft,0 +österreichische gesellschaft für geomechanik,0 +österreichische zeitschrift für südostasienwissenschaften,0 +östlings bokförlag symposion,1 +öt kontinens,0 +økonomi & politik,1 +ýawpa pacha,1 +časopis za kritiko znanosti,0 +"čelovek, kulʹtura i obrazovanie",1 +čelâbinskij fiziko-matematičeskij žurnal,0 +česká andragogická společnost,0 +česká zemědělská univerzita v praze,0 +čornomorsʹkij botanìčnij žurnal,0 +šagi,1 +žanry reči,1 +železnodorožnyj transport,0 +žurnal nano- ta elektronnoï fìziki,1 +žurnal novoj èkonomičeskoj associacii,0 +žurnal organìčnoï ta farmacevtičnoï hìmìï,0 +žurnal sibirskogo federalʹnogo universiteta : himiâ,0 +žurnal sociologii i socialnoj antropologii,0 +žurnal zarubežnogo zakonodatelʹstva i sravnitelʹnogo pravovedeniâ,0 +известия санкт-петербургского государственного экономического университета,-1 +невский альманах,-1 +социодиггер,-1 +тomsk state university,0 diff --git a/src/paperqa/clients/client_models.py b/src/paperqa/clients/client_models.py index 5049f4d09..2c875653b 100644 --- a/src/paperqa/clients/client_models.py +++ b/src/paperqa/clients/client_models.py @@ -88,25 +88,28 @@ class JournalQuery(ClientQuery): class MetadataProvider(ABC, Generic[ClientQueryType]): - """Provide metadata from a query by any means necessary.""" + """Provide metadata from a query by any means necessary. + + An example is going from a DOI to full paper metadata using Semantic Scholar. + """ async def query(self, query: dict) -> DocDetails | None: - return await self._query(self.query_transformer(query)) + return await self._query(self.query_factory(query)) @abstractmethod async def _query(self, query: ClientQueryType) -> DocDetails | None: - pass + """Run a query against the provider.""" @abstractmethod - def query_transformer(self, query: dict) -> ClientQueryType: - pass + def query_factory(self, query: dict) -> ClientQueryType: + """Create a query object from unstructured query data.""" class DOIOrTitleBasedProvider(MetadataProvider[DOIQuery | TitleAuthorQuery]): async def query(self, query: dict) -> DocDetails | None: try: - client_query = self.query_transformer(query) + client_query = self.query_factory(query) return await self._query(client_query) # We allow graceful failures, i.e. return "None" for both DOI errors and timeout errors # DOINotFoundError means the paper doesn't exist in the source, the timeout is to prevent @@ -150,7 +153,7 @@ async def _query(self, query: DOIQuery | TitleAuthorQuery) -> DocDetails | None: TimeoutError: When the request takes too long on the client side """ - def query_transformer(self, query: dict) -> DOIQuery | TitleAuthorQuery: + def query_factory(self, query: dict) -> DOIQuery | TitleAuthorQuery: try: if "doi" in query: return DOIQuery(**query) @@ -169,7 +172,6 @@ class MetadataPostProcessor(ABC, Generic[ClientQueryType]): MetadataPostProcessor should be idempotent and not order-dependent, i.e. all MetadataPostProcessor instances should be able to run in parallel. - """ async def process(self, doc_details: DocDetails, **kwargs) -> DocDetails: diff --git a/src/paperqa/clients/journal_quality.py b/src/paperqa/clients/journal_quality.py index 978d4b80c..7e1ed60d7 100644 --- a/src/paperqa/clients/journal_quality.py +++ b/src/paperqa/clients/journal_quality.py @@ -1,11 +1,24 @@ from __future__ import annotations +import asyncio import csv import logging import os +import tempfile +from collections.abc import Awaitable, Callable, Sequence +from pathlib import Path from typing import Any, ClassVar +import anyio +import httpx from pydantic import ValidationError +from rich.progress import ( + BarColumn, + MofNCompleteColumn, + Progress, + TextColumn, + TimeElapsedColumn, +) from paperqa.types import DocDetails @@ -13,6 +26,9 @@ logger = logging.getLogger(__name__) +DEFAULT_JOURNAL_QUALITY_CSV_PATH = ( + Path(__file__).parent / "client_data" / "journal_quality.csv" +) # TODO: refresh script for journal quality data @@ -25,13 +41,11 @@ class JournalQualityPostProcessor(MetadataPostProcessor[JournalQuery]): def __init__(self, journal_quality_path: os.PathLike | str | None = None) -> None: if journal_quality_path is None: # Construct the path relative to module - self.journal_quality_path = str( - os.path.join( - os.path.dirname(__file__), "client_data", "journal_quality.csv" - ) + self.journal_quality_path: str | os.PathLike = ( + DEFAULT_JOURNAL_QUALITY_CSV_PATH ) else: - self.journal_quality_path = str(journal_quality_path) + self.journal_quality_path = journal_quality_path self.data: dict[str, Any] | None = None def load_data(self) -> None: @@ -72,3 +86,131 @@ def query_creator(self, doc_details: DocDetails, **kwargs) -> JournalQuery | Non "Must have a valid journal name to query journal quality data." ) return None + + +# SEE: https://en.wikipedia.org/wiki/JUFO +JUFO_PORTAL_DOWNLOAD_QUALITY_URL = ( + "https://jfp.csc.fi/jufoportal_base/api/download?query=&isActive=true&col=Jufo_ID" + "&col=Name&col=Abbreviation&col=Level&col=ISSNL&col=ISSN1&col=ISSN2&col=ISBN" + "&col=Other_Title&col=Title_details&col=Continues&col=Continued_by&col=Website" + "&col=Country&col=country_code&col=Publisher&col=Language&col=lang_code3" + "&col=lang_code2&col=Year_Start&col=Year_End&col=isScientific&col=isProfessional" + "&col=isGeneral&col=Type_fi&col=Type_sv&col=Type_en&col=Jufo_History" +) + + +async def download_file( + dest_path: str | os.PathLike, + url: str = JUFO_PORTAL_DOWNLOAD_QUALITY_URL, + client: httpx.AsyncClient | None = None, +) -> Path: + dest_path = Path(dest_path) + + async def download(client_: httpx.AsyncClient) -> None: + progress = Progress( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + TimeElapsedColumn(), + ) + + async with client_.stream("GET", url, timeout=60) as response: + response.raise_for_status() + task_id = progress.add_task( + f"Downloading {dest_path.name}", + total=int(response.headers.get("Content-Length", 0)) or None, + ) + with progress: + async with await anyio.open_file(dest_path, "wb") as f: + async for chunk in response.aiter_bytes(chunk_size=2048): + if not chunk: + continue + await f.write(chunk) + progress.update(task_id, advance=len(chunk)) + + if client is None: + async with httpx.AsyncClient() as client: # noqa: PLR1704 + await download(client) + else: + await download(client) + return dest_path + + +async def process_csv( + file_path: str | os.PathLike, + override_allowlist: Sequence[tuple[str, int]] | None = ( + ("annual review of pathology", 2), + ("annual review of pathology: mechanisms of disease", 2), + ("biochimica et biophysica acta (bba) - bioenergetics", 1), + ("biochimica et biophysica acta (bba) - biomembranes", 1), + ("biochimica et biophysica acta (bba) - gene regulatory mechanisms", 1), + ("biochimica et biophysica acta (bba) - general subjects", 1), + ( + "biochimica et biophysica acta (bba) - molecular and cell biology of lipids", + 1, + ), + ("biochimica et biophysica acta (bba) - molecular basis of disease", 1), + ("biochimica et biophysica acta (bba) - molecular cell research", 1), + ("biochimica et biophysica acta (bba) - proteins and proteomics", 1), + ("biochimica et biophysica acta (bba) - reviews on cancer", 1), + ("bmc evolutionary biology", 2), + ("pnas", 3), + ("proceedings of the national academy of sciences", 3), + ), + override_blocklist: Sequence[tuple[str, int]] | None = (("scientific reports", 0),), + records_callback: Callable[[Sequence[tuple[str, int]]], Awaitable] | None = None, +) -> list[tuple[str, int]]: + async with await anyio.open_file(file_path, encoding="utf-8") as f: + content = await f.read() + + lines = content.splitlines() + progress = Progress( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + TimeElapsedColumn(), + MofNCompleteColumn(), + ) + + task_id = progress.add_task("Processing", total=len(lines) - 1) + # Keys are case-insensitive, values are case-sensitive + records: dict[tuple[str, int], tuple[str, int]] = {} + with progress: + for row in csv.DictReader(lines): + data = ( + row["Name"], + ( + int(row["Level"]) + if str(row.get("Level", "")).isdigit() + else DocDetails.UNDEFINED_JOURNAL_QUALITY + ), + ) + records[data[0].lower(), data[1]] = data + progress.update(task_id, advance=1) + for row_override in override_allowlist or []: + records[row_override[0].lower(), row_override[1]] = row_override + for row_override in override_blocklist or []: + records.pop((row_override[0].lower(), row_override[1]), None) + records_list = [records[key] for key in sorted(records)] + + if records_callback is not None: + await records_callback(records_list) + return records_list + + +async def main() -> None: + with tempfile.TemporaryDirectory() as tmpdir: + downloaded_path = await download_file( + dest_path=Path(tmpdir) / "journal_quality.csv" + ) + records = await process_csv(downloaded_path) + + with open( # noqa: ASYNC230 + DEFAULT_JOURNAL_QUALITY_CSV_PATH, "w", encoding="utf-8" + ) as csvfile: + writer = csv.writer(csvfile) + writer.writerow(["clean_name", "quality"]) + for name, quality in records: + writer.writerow([name.lower(), quality]) + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/src/paperqa/clients/unpaywall.py b/src/paperqa/clients/unpaywall.py index c22ba5308..e3dbe3460 100644 --- a/src/paperqa/clients/unpaywall.py +++ b/src/paperqa/clients/unpaywall.py @@ -3,6 +3,7 @@ import os from datetime import datetime from http import HTTPStatus +from typing import Literal from urllib.parse import quote import aiohttp @@ -30,11 +31,11 @@ class Author(BaseModel): class BestOaLocation(BaseModel): model_config = ConfigDict(extra="allow") - updated: datetime | None = None + updated: datetime | Literal["deprecated"] | None = None url: str | None = None url_for_pdf: str | None = None url_for_landing_page: str | None = None - evidence: str | None = None + evidence: str | Literal["deprecated"] | None = None # noqa: PYI051 license: str | None = None version: str | None = None host_type: str | None = None diff --git a/src/paperqa/core.py b/src/paperqa/core.py index c654fb371..450d739da 100644 --- a/src/paperqa/core.py +++ b/src/paperqa/core.py @@ -2,16 +2,21 @@ import contextlib import json +import logging import re from collections.abc import Callable, Sequence from typing import Any, cast +import litellm from aviary.core import Message from lmi import LLMModel +from paperqa.prompts import text_with_tables_prompt_template from paperqa.types import Context, LLMResult, Text from paperqa.utils import extract_score, strip_citations +logger = logging.getLogger(__name__) + def llm_parse_json(text: str) -> dict: """Read LLM output and extract JSON data from it.""" @@ -136,6 +141,7 @@ async def map_fxn_summary( parser: Callable[[str], dict[str, Any]] | None = None, callbacks: Sequence[Callable[[str], None]] | None = None, skip_citation_strip: bool = False, + evidence_text_only_fallback: bool = False, ) -> tuple[Context, LLMResult]: """Parses the given text and returns a context object with the parser and prompt runner. @@ -154,6 +160,8 @@ async def map_fxn_summary( Should return dict with at least 'summary' field. callbacks: Optional sequence of callback functions to execute during LLM calls. skip_citation_strip: Optional skipping of citation stripping, if you want to keep in the context. + evidence_text_only_fallback: Opt-in flag to allow retrying context creation + without media in the completion. Returns: The context object and LLMResult to get info about the LLM execution. @@ -163,25 +171,61 @@ async def map_fxn_summary( extras: dict[str, Any] = {} citation = text.name + ": " + text.doc.formatted_citation success = False + used_text_only_fallback = False + # Strip newlines in case chunking led to blank lines, + # but not spaces, to preserve text alignment + cleaned_text = text.text.strip("\n") if summary_llm_model and prompt_templates: + media_text: list[str] = [m.text for m in text.media if m.text] data = { "question": question, "citation": citation, - # Strip newlines in case chunking led to blank lines, - # but not spaces, to preserve text alignment - "text": text.text.strip("\n"), + "text": ( + text_with_tables_prompt_template.format( + text=cleaned_text, + citation=citation, + tables="\n\n----\n\n".join(media_text), + ) + if media_text + else cleaned_text + ), } | (extra_prompt_data or {}) - message_prompt, system_prompt = prompt_templates - messages = [ - Message(role="system", content=system_prompt.format(**data)), - Message(role="user", content=message_prompt.format(**data)), - ] - llm_result = await summary_llm_model.call_single( - messages=messages, - callbacks=callbacks, - name="evidence:" + text.name, - ) + message_prompt, system_prompt = (pt.format(**data) for pt in prompt_templates) + try: + llm_result = await summary_llm_model.call_single( + messages=[ + Message(role="system", content=system_prompt), + Message.create_message( + text=message_prompt, + images=( + [i.to_image_url() for i in text.media] + if text.media + else None + ), + ), + ], + callbacks=callbacks, + name="evidence:" + text.name, + ) + except litellm.BadRequestError as exc: + if not evidence_text_only_fallback: + raise + logger.warning( + f"LLM call to create a context failed with exception {exc!r}" + f" on text named {text.name!r}" + f" with doc name {text.doc.docname!r} and doc key {text.doc.dockey!r}." + f" Retrying without media." + ) + llm_result = await summary_llm_model.call_single( + messages=[ + Message(role="system", content=system_prompt), + Message(content=message_prompt), + ], + callbacks=callbacks, + name="evidence:" + text.name, + ) + used_text_only_fallback = True context = cast("str", llm_result.text) result_data = parser(context) if parser else {} success = bool(result_data) @@ -199,9 +243,7 @@ async def map_fxn_summary( except KeyError: success = False else: - # Strip newlines in case chunking led to blank lines, - # but not spaces, to preserve text alignment - context = text.text.strip("\n") + context = cleaned_text # If we don't assign scores, just default to 5. # why 5? Because we filter out 0s in another place # and 5/10 is the other default I could come up with @@ -213,6 +255,8 @@ async def map_fxn_summary( if not success: score = extract_score(context) + if used_text_only_fallback: + extras["used_images"] = False return ( Context( diff --git a/src/paperqa/docs.py b/src/paperqa/docs.py index bc62fada5..37a1bbb54 100644 --- a/src/paperqa/docs.py +++ b/src/paperqa/docs.py @@ -281,6 +281,7 @@ async def aadd( # noqa: PLR0912 overlap=parse_config.overlap, page_size_limit=parse_config.page_size_limit, use_block_parsing=parse_config.pdfs_use_block_parsing, + parse_images=parse_config.multimodal, parse_pdf=parse_config.parse_pdf, ) if not texts or not texts[0].text.strip(): @@ -380,17 +381,19 @@ async def aadd( # noqa: PLR0912 doc, **(query_kwargs | kwargs) ) - texts = await read_doc( + texts, metadata = await read_doc( path, doc, chunk_chars=parse_config.chunk_size, overlap=parse_config.overlap, page_size_limit=parse_config.page_size_limit, use_block_parsing=parse_config.pdfs_use_block_parsing, + parse_images=parse_config.multimodal, parse_pdf=parse_config.parse_pdf, + include_metadata=True, ) # loose check to see if document was loaded - if ( + if metadata.parse_type != "image" and ( not texts or len(texts[0].text) < 10 # noqa: PLR2004 or ( @@ -669,6 +672,7 @@ async def aget_evidence( parser=llm_parse_json if prompt_config.use_json else None, callbacks=callbacks, skip_citation_strip=answer_config.skip_evidence_citation_strip, + evidence_text_only_fallback=answer_config.evidence_text_only_fallback, ) for m in matches ], diff --git a/src/paperqa/prompts.py b/src/paperqa/prompts.py index 5786d04c8..b9028b963 100644 --- a/src/paperqa/prompts.py +++ b/src/paperqa/prompts.py @@ -1,10 +1,9 @@ from datetime import datetime -# ruff: noqa: E501 - summary_prompt = ( "Summarize the excerpt below to help answer a question.\n\nExcerpt from" - " {citation}\n\n----\n\n{text}\n\n----\n\nQuestion: {question}\n\nDo not directly" + " {citation}\n\n------------\n\n{text}\n\n------------" + "\n\nQuestion: {question}\n\nDo not directly" " answer the question, instead summarize to give evidence to help answer the" " question. Stay detailed; report specific numbers, equations, or direct quotes" ' (marked with quotation marks). Reply "Not applicable" if the excerpt is' @@ -12,9 +11,16 @@ " newline indicating relevance to question. Do not explain your score.\n\nRelevant" " Information Summary ({summary_length}):" ) +# This prompt template integrates with `text` variable of the above `summary_prompt` +text_with_tables_prompt_template = ( + "{text}\n\n------------\n\nMarkdown tables from {citation}." + " If the markdown is poorly formatted, defer to the images" + "\n\n------------\n\n{tables}" +) summary_json_prompt = ( - "Excerpt from {citation}\n\n----\n\n{text}\n\n----\n\nQuestion: {question}\n\n" + "Excerpt from {citation}\n\n------------\n\n{text}\n\n------------" + "\n\nQuestion: {question}\n\n" ) # The below "cannot answer" sentinel phrase should: @@ -45,7 +51,7 @@ qa_prompt = ( "Answer the question below with the context.\n\n" - "Context:\n\n{context}\n\n----\n\n" + "Context:\n\n{context}\n\n------------\n\n" "Question: {question}\n\n" "Write an answer based on the context. " "If the context provides insufficient information reply " @@ -99,15 +105,19 @@ ) # NOTE: we use double curly braces here so it's not considered an f-string template -summary_json_system_prompt = """\ -Provide a summary of the relevant information that could help answer the question based on the excerpt. Respond with the following JSON format: - -{{ - "summary": "...", - "relevance_score": "..." -}} - -where `summary` is relevant information from the text - {summary_length} words. `relevance_score` is an integer 1-10 for the relevance of `summary` to the question.""" +summary_json_system_prompt = ( + "Provide a summary of the relevant information" + " that could help answer the question based on the excerpt." + " Your summary, combined with many others," + " will be given to the model to generate an answer." + " Respond with the following JSON format:" + '\n\n{{\n "summary": "...",\n "relevance_score": "..."\n "used_images"\n}}' + "\n\nwhere `summary` is relevant information from the text - {summary_length} words." + " `relevance_score` is an integer 1-10 for the relevance of `summary` to the question." + " `used_images` is a boolean flag indicating" + " if any images present in a multimodal message were used," + " and if no images were present it should be false." +) env_system_prompt = ( # Matching https://github.com/langchain-ai/langchain/blob/langchain%3D%3D0.2.3/libs/langchain/langchain/agents/openai_functions_agent/base.py#L213-L215 diff --git a/src/paperqa/readers.py b/src/paperqa/readers.py index 1f7b787e3..e0c060902 100644 --- a/src/paperqa/readers.py +++ b/src/paperqa/readers.py @@ -2,10 +2,12 @@ import asyncio import os +from collections.abc import Awaitable, Callable from math import ceil from pathlib import Path from typing import Literal, Protocol, cast, overload, runtime_checkable +import anyio import tiktoken from html2text import __version__ as html2text_version from html2text import html2text @@ -13,6 +15,7 @@ from paperqa.types import ( ChunkMetadata, Doc, + ParsedMedia, ParsedMetadata, ParsedText, Text, @@ -30,6 +33,42 @@ def __call__( ) -> ParsedText: ... +async def parse_image( + path: str | os.PathLike, validator: Callable[[bytes], Awaitable] | None = None, **_ +) -> ParsedText: + apath = anyio.Path(path) + image_data = await anyio.Path(path).read_bytes() + if validator: + try: + await validator(image_data) + except Exception as exc: + raise ImpossibleParsingError( + f"Image validation failed for the image at path {path}." + ) from exc + parsed_media = ParsedMedia(index=0, data=image_data, info={"suffix": apath.suffix}) + metadata = ParsedMetadata( + parsing_libraries=[], + paperqa_version=pqa_version, + total_parsed_text_length=0, # No text, just an image + count_parsed_media=1, + parse_type="image", + ) + return ParsedText(content={"1": ("", [parsed_media])}, metadata=metadata) + + +def _make_chunk( + parsed_text: ParsedText, doc: Doc, text: str, lower_page: str, upper_page: str +) -> Text: + media: list[ParsedMedia] = [] + for pg_num in range(int(lower_page), int(upper_page) + 1): + pg_contents = cast(dict, parsed_text.content)[str(pg_num)] + if isinstance(pg_contents, tuple): + media.extend(pg_contents[1]) + # pretty formatting of pages (e.g. 1-3, 4, 5-7) + name = "-".join([lower_page, upper_page]) + return Text(text=text, name=f"{doc.docname} pages {name}", media=media, doc=doc) + + def chunk_pdf( parsed_text: ParsedText, doc: Doc, chunk_chars: int, overlap: int ) -> list[Text]: @@ -48,27 +87,25 @@ def chunk_pdf( f" {doc.dockey}, either empty or corrupted." ) - for page_num, page_text in parsed_text.content.items(): + for page_num, page_contents in parsed_text.content.items(): + page_text = ( + page_contents if isinstance(page_contents, str) else page_contents[0] + ) split += page_text pages.append(page_num) # split could be so long it needs to be split # into multiple chunks. Or it could be so short # that it needs to be combined with the next chunk. while len(split) > chunk_chars: - # pretty formatting of pages (e.g. 1-3, 4, 5-7) - pg = "-".join([pages[0], pages[-1]]) texts.append( - Text( - text=split[:chunk_chars], name=f"{doc.docname} pages {pg}", doc=doc - ) + _make_chunk(parsed_text, doc, split[:chunk_chars], pages[0], pages[-1]) ) split = split[chunk_chars - overlap :] pages = [page_num] if len(split) > overlap or not texts: - pg = "-".join([pages[0], pages[-1]]) texts.append( - Text(text=split[:chunk_chars], name=f"{doc.docname} pages {pg}", doc=doc) + _make_chunk(parsed_text, doc, split[:chunk_chars], pages[0], pages[-1]) ) return texts @@ -232,6 +269,9 @@ def chunk_code_text( return texts +IMAGE_EXTENSIONS = tuple({".png", ".jpg", ".jpeg"}) + + @overload async def read_doc( path: str | os.PathLike, @@ -287,7 +327,7 @@ async def read_doc( parse_pdf: PDFParserFn | None = ..., **parser_kwargs, ) -> tuple[list[Text], ParsedMetadata]: ... -async def read_doc( +async def read_doc( # noqa: PLR0912 path: str | os.PathLike, doc: Doc, parsed_text_only: bool = False, @@ -326,6 +366,8 @@ async def read_doc( parsed_text = await asyncio.to_thread( parse_text, path, html=True, **parser_kwargs ) + elif str_path.endswith(IMAGE_EXTENSIONS): + parsed_text = await parse_image(path, **parser_kwargs) else: parsed_text = await asyncio.to_thread( parse_text, path, split_lines=True, use_tiktoken=False, **parser_kwargs @@ -351,6 +393,11 @@ async def read_doc( overlap=overlap, chunk_type="overlap_pdf_by_page", ) + elif str_path.endswith(IMAGE_EXTENSIONS): + chunked_text = chunk_pdf( + parsed_text, doc, chunk_chars=chunk_chars, overlap=overlap + ) + chunk_metadata = ChunkMetadata(chunk_chars=0, overlap=0, chunk_type="no_chunk") elif str_path.endswith((".txt", ".html")): chunked_text = chunk_text( parsed_text, doc, chunk_chars=chunk_chars, overlap=overlap diff --git a/src/paperqa/settings.py b/src/paperqa/settings.py index 5e42ae330..ca077fa66 100644 --- a/src/paperqa/settings.py +++ b/src/paperqa/settings.py @@ -37,6 +37,7 @@ from pydantic.fields import FieldInfo from pydantic_settings import BaseSettings, CliSettingsSource, SettingsConfigDict +import paperqa.configs from paperqa._ldp_shims import ( HAS_LDP_INSTALLED, Agent, @@ -116,6 +117,13 @@ class AnswerSettings(BaseModel): evidence_skip_summary: bool = Field( default=False, description="Whether to summarization." ) + evidence_text_only_fallback: bool = Field( + default=False, + description=( + "Opt-in flag to allow creating contexts without media (just text)," + " if the media is problematic for the LLM provider or network." + ), + ) answer_max_sources: int = Field( default=5, description="Max number of sources to use for an answer." ) @@ -248,6 +256,13 @@ class ParsingSettings(BaseModel): overlap: int = Field( default=250, description="Number of characters to overlap chunks." ) + multimodal: bool = Field( + default=True, + description=( + "Parse both text and images (if applicable to a given document)," + " or disable to parse just text." + ), + ) citation_prompt: str = Field( default=citation_prompt, description="Prompt that tries to create citation from peeking one page.", @@ -523,7 +538,11 @@ class IndexSettings(BaseModel): ), ) files_filter: Callable[[anyio.Path | pathlib.Path], bool] = Field( - default=lambda f: f.suffix in {".txt", ".pdf", ".html", ".md"}, + default=lambda f: ( + f.suffix + # TODO: add images after embeddings are supported + in {".txt", ".pdf", ".html", ".md"} + ), exclude=True, description=( "Filter function to apply to files in the paper directory." @@ -909,24 +928,25 @@ def from_name( ) return Settings(_cli_settings_source=cli_source(args=True)) - # First, try to find the config file in the user's .config directory user_config_path = pqa_directory("settings") / f"{config_name}.json" - + pkg_config_path = ( + # Use importlib.resources.files() which is recommended for Python 3.9+ + importlib.resources.files(paperqa.configs) + / f"{config_name}.json" + ) if user_config_path.exists(): + # First, try to find the config file in the user's .config directory json_path = user_config_path - - # If not found, fall back to the package's default config - try: - # Use importlib.resources.files() which is recommended for Python 3.9+ - pkg_config_path = ( - importlib.resources.files("paperqa.configs") / f"{config_name}.json" - ) - if pkg_config_path.is_file(): - json_path = cast("pathlib.Path", pkg_config_path) - except FileNotFoundError as e: - raise FileNotFoundError( - f"No configuration file found for {config_name}" - ) from e + else: + # If not found, fall back to the package's default config + try: + if pkg_config_path.is_file(): + json_path = cast("pathlib.Path", pkg_config_path) + except FileNotFoundError as e: + raise FileNotFoundError( + f"No configuration file {config_name!r} found at user config path" + f" {user_config_path} or bundled config path {pkg_config_path}." + ) from e if json_path: # we do the ole switcheroo @@ -938,8 +958,10 @@ def from_name( **(tmp.model_dump()), _cli_settings_source=cli_source(args=True) if cli_source else None, ) - - raise FileNotFoundError(f"No configuration file found for {config_name}") + raise FileNotFoundError( + f"No configuration file {config_name!r} found at user config path" + f" {user_config_path} or bundled config path {pkg_config_path}." + ) def get_llm(self) -> LiteLLMModel: return LiteLLMModel( diff --git a/src/paperqa/types.py b/src/paperqa/types.py index 3cd876ae2..80e478c81 100644 --- a/src/paperqa/types.py +++ b/src/paperqa/types.py @@ -2,6 +2,8 @@ import ast import csv +import hashlib +import json import logging import os import re @@ -10,19 +12,23 @@ from copy import deepcopy from datetime import datetime from enum import StrEnum +from pathlib import Path +from random import Random from typing import Annotated, Any, ClassVar, Self, cast from uuid import UUID, uuid4 import tiktoken from aviary.core import Message from lmi import Embeddable, LLMResult -from pybtex.database import BibliographyData, Entry, Person +from pybtex.database import BibliographyData, Entry, InvalidNameString, Person from pybtex.database.input.bibtex import Parser from pybtex.scanner import PybtexSyntaxError from pydantic import ( BaseModel, + BeforeValidator, ConfigDict, Field, + JsonValue, PlainSerializer, computed_field, field_validator, @@ -30,11 +36,13 @@ ) from paperqa.utils import ( + bytes_to_string, create_bibtex_key, encode_id, format_bibtex, get_citation_ids, maybe_get_date, + string_to_bytes, ) from paperqa.version import __version__ as pqa_version @@ -139,6 +147,9 @@ class Text(Embeddable): " (e.g., 'Wiki2023 chunk 1', 'sentence1')." ) ) + media: list[ParsedMedia] = Field( + default_factory=list, description="Optional list of associated media." + ) doc: Doc | DocDetails = Field( union_mode="left_to_right", description="Source document this text chunk originates from.", @@ -167,6 +178,9 @@ def __hash__(self) -> int: class Context(BaseModel): """A class to hold the context of a question.""" + # We allow extras so one can extend the summary JSON prompt + # to have the LLM answer with more conclusions such as alternate scores + # or useful excerpts of text model_config = ConfigDict(extra="allow") id: str = Field( @@ -344,7 +358,8 @@ def filter_content_for_user(self) -> None: # on why we drop embeddings, drop embeddings here too because # embeddings aren't displayed to front end users doc=c.text.doc.model_dump(exclude={"embedding"}), - **c.text.model_dump(exclude={"text", "embedding", "doc"}), + # We drop media since images can be quite large + **c.text.model_dump(exclude={"text", "embedding", "doc", "media"}), ), ) for c in self.contexts @@ -421,8 +436,8 @@ def __init__(self, *args, **kwargs): class ChunkMetadata(BaseModel): """Metadata for chunking algorithm.""" - chunk_chars: int - overlap: int + chunk_chars: int = Field(description="Chunk size (chars), or 0 for no chunking.") + overlap: int = Field(description="Chunk overlap (chars), or 0 for no overlap.") chunk_type: str @@ -431,15 +446,86 @@ class ParsedMetadata(BaseModel): parsing_libraries: list[str] total_parsed_text_length: int + count_parsed_media: int = Field(default=0, ge=0) paperqa_version: str = pqa_version parse_type: str | None = None chunk_metadata: ChunkMetadata | None = None +class ParsedMedia(BaseModel): + """Raw image or table parsed from a document's page.""" + + index: int = Field( + description="Index of the image in a given page, or 0 if solely an image." + ) + data: Annotated[ + bytes, + PlainSerializer(bytes_to_string), + BeforeValidator(lambda x: x if isinstance(x, bytes) else string_to_bytes(x)), + ] = Field(description="Raw image, ideally directly savable to a PNG image.") + text: str | None = Field( + default=None, + description="Optional associated text content (e.g. markdown export of a table).", + ) + info: dict[str, JsonValue | tuple[float, ...] | bytes] = Field( + default_factory=dict, + description=( + "Optional image metadata. This may come from image definitions sourced from" + " the PDF, or attributes of custom pixel maps." + ), + ) + + def __hash__(self) -> int: + return hash( + (self.index, self.data, self.text, json.dumps(self.info, sort_keys=True)) + ) + + def to_id(self) -> UUID: + """Convert this media to a UUID4 suitable for a database ID.""" + # We only hash the image and text content, since we don't want + # minor parsing details (e.g. inconsequentially-small decimal values + # in bounding boxes) to change the resultant ID + to_hash: bytes = ( + self.data if not self.text else self.data + self.text.encode("utf-8") + ) + seed_hash = hashlib.sha256(to_hash).hexdigest() + seed_uint32 = int(seed_hash, 16) % (2**32) + + # Convert uint32 to UUID4 + uuid_int = Random(seed_uint32).getrandbits(128) + uuid_int &= ~(0xF << 76) # Clear version bits + uuid_int |= 0x4 << 76 # Then set version to 4 + uuid_int &= ~(0x3 << 62) # Clear variant bits + uuid_int |= 0x2 << 62 # Then set variant to 10 for RFC 4122 + return UUID(int=uuid_int) + + def __eq__(self, other) -> bool: + if not isinstance(other, ParsedMedia): + return NotImplemented + return ( + self.index == other.index + and self.data == other.data + and self.text == other.text + and json.dumps(self.info, sort_keys=True) + == json.dumps(other.info, sort_keys=True) + ) + + def to_image_url(self, image_type: str = "png") -> str: + """Convert the image data to an RFC 2397 data URL format.""" + return f"data:image/{image_type};base64,{bytes_to_string(self.data)}" + + def save(self, path: str | os.PathLike) -> None: + """Save the image to the input file path.""" + with Path(path).open("wb") as f: + f.write(self.data) + + class ParsedText(BaseModel): """All text from a document read, before chunking.""" - content: dict[str, str] | str | list[str] = Field( + content: ( + dict[str, str] | str | list[str] | dict[str, tuple[str, list[ParsedMedia]]] + ) = Field( description=( "All parsed but not further processed (e.g. not chunked) contents from a" " document. It may be structured, depending on the parser's implementation." @@ -448,6 +534,8 @@ class ParsedText(BaseModel): "\n- `dict[str, str]` (e.g. page number -> page text) for PDFs." "\n- `str` for text files." "\n- `list[str]` for line-by-line parsings." + "\n- `dict[str, tuple[str, list[ParsedMedia]]]` (e.g. page number" + " -> (page text, page images)) for PDFs." ) ) metadata: ParsedMetadata = Field( @@ -473,7 +561,9 @@ def reduce_content(self) -> str: return self.content if isinstance(self.content, list): return "\n\n".join(self.content) - return "\n\n".join(self.content.values()) + return "\n\n".join( + x[0] if not isinstance(x, str) else x for x in self.content.values() + ) class BibTeXSource(StrEnum): @@ -769,8 +859,13 @@ def populate_bibtex_key_citation(cls, data: dict[str, Any]) -> dict[str, Any]: existing_entry = next( iter(Parser().parse_string(data["bibtex"]).entries.values()) ) - except PybtexSyntaxError: - logger.warning(f"Failed to parse bibtex for {data['bibtex']}.") + except (PybtexSyntaxError, InvalidNameString) as exc: + # InvalidNameString: names like "Kyriacos, Κυριάκος, Athanasiou, Αθανασίου" + logger.warning( + f"Failed to parse bibtex for DOI {data.get('doi')}," + f" title {data.get('title')!r}, and bibtex {data['bibtex']}." + f" Failure message: {exc!r}" + ) existing_entry = None entry_data = { @@ -820,7 +915,7 @@ def populate_bibtex_key_citation(cls, data: dict[str, Any]) -> dict[str, Any]: ): data["citation"] = None except Exception: - logger.warning( + logger.debug( "Failed to generate bibtex for" f" {data.get('docname') or data.get('citation')}" ) diff --git a/src/paperqa/utils.py b/src/paperqa/utils.py index 82c70cfe7..a4240c805 100644 --- a/src/paperqa/utils.py +++ b/src/paperqa/utils.py @@ -1,6 +1,7 @@ from __future__ import annotations import asyncio +import base64 import contextlib import hashlib import logging @@ -15,7 +16,7 @@ from functools import reduce from http import HTTPStatus from pathlib import Path -from typing import Any, BinaryIO, ClassVar, TypeVar +from typing import TYPE_CHECKING, Any, BinaryIO, ClassVar, TypeVar from uuid import UUID import aiohttp @@ -33,6 +34,12 @@ wait_incrementing, ) +if TYPE_CHECKING: + from typing import IO + + from PIL._typing import StrOrBytesPath + + logger = logging.getLogger(__name__) T = TypeVar("T") @@ -97,7 +104,13 @@ def strings_similarity(s1: str, s2: str, case_insensitive: bool = True) -> float def hexdigest(data: str | bytes) -> str: if isinstance(data, str): - return hashlib.md5(data.encode("utf-8")).hexdigest() # noqa: S324 + # Using 'replace' to handle invalid UTF-8 chars and preserve data structure, + # important for papers with special characters/units we cannot parse but want to keep. + # Chosen over 'strict', which throws errors stopping processing, and + # 'ignore', which causes silent data loss by dropping important units before hashing. + return hashlib.md5( + data.encode("utf-8", errors="replace") + ).hexdigest() # noqa: S324 return hashlib.md5(data).hexdigest() # noqa: S324 @@ -616,3 +629,37 @@ def clean_possessives(text: str) -> str: # Remove standalone apostrophes text = re.sub(r"\s+'\s+", " ", text) return re.sub(r"(? str: + """Convert bytes to a base64-encoded string.""" + # 1. Convert bytes to base64 bytes + # 2. Convert base64 bytes to base64 string, + # using UTF-8 since base64 produces ASCII characters + return base64.b64encode(value).decode("utf-8") + + +def string_to_bytes(value: str) -> bytes: + """Convert a base64-encoded string to bytes.""" + # 1. Convert base64 string to base64 bytes + # 2. Convert base64 bytes to original bytes + return base64.b64decode(value.encode("utf-8")) + + +def validate_image(path: StrOrBytesPath | IO[bytes]) -> None: + """ + Validate that the file at the given path is a valid image. + + Raises: + OSError: If the image file is truncated. + """ # noqa: DOC502 + try: + from PIL import Image + except ImportError as exc: + raise ImportError( + "Image validation requires the 'image' extra for 'pillow'. Please:" + " `pip install paper-qa[image]`." + ) from exc + + with Image.open(path) as img: + img.load() diff --git a/tests/cassettes/test_crossref_journalquality_fields_filtering.yaml b/tests/cassettes/test_crossref_journalquality_fields_filtering.yaml index 5dd996d40..1861e986d 100644 --- a/tests/cassettes/test_crossref_journalquality_fields_filtering.yaml +++ b/tests/cassettes/test_crossref_journalquality_fields_filtering.yaml @@ -7,9 +7,9 @@ interactions: response: body: string: - '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":2349040,"items":[{"DOI":"10.1038\/s42256-024-00832-8","author":[{"given":"Andres","family":"M. - Bran","sequence":"first","affiliation":[]},{"given":"Sam","family":"Cox","sequence":"additional","affiliation":[]},{"ORCID":"http:\/\/orcid.org\/0000-0003-0310-0851","authenticated-orcid":false,"given":"Oliver","family":"Schilter","sequence":"additional","affiliation":[]},{"given":"Carlo","family":"Baldassari","sequence":"additional","affiliation":[]},{"ORCID":"http:\/\/orcid.org\/0000-0002-6647-3965","authenticated-orcid":false,"given":"Andrew - D.","family":"White","sequence":"additional","affiliation":[]},{"ORCID":"http:\/\/orcid.org\/0000-0003-3046-6576","authenticated-orcid":false,"given":"Philippe","family":"Schwaller","sequence":"additional","affiliation":[]}],"container-title":["Nature + '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":2509115,"items":[{"DOI":"10.1038\/s42256-024-00832-8","author":[{"given":"Andres","family":"M. + Bran","sequence":"first","affiliation":[]},{"given":"Sam","family":"Cox","sequence":"additional","affiliation":[]},{"ORCID":"https:\/\/orcid.org\/0000-0003-0310-0851","authenticated-orcid":false,"given":"Oliver","family":"Schilter","sequence":"additional","affiliation":[]},{"given":"Carlo","family":"Baldassari","sequence":"additional","affiliation":[]},{"ORCID":"https:\/\/orcid.org\/0000-0002-6647-3965","authenticated-orcid":false,"given":"Andrew + D.","family":"White","sequence":"additional","affiliation":[]},{"ORCID":"https:\/\/orcid.org\/0000-0003-3046-6576","authenticated-orcid":false,"given":"Philippe","family":"Schwaller","sequence":"additional","affiliation":[]}],"container-title":["Nature Machine Intelligence"],"title":["Augmenting large language models with chemistry tools"]}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' headers: @@ -21,7 +21,7 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Content-Encoding: - gzip Content-Length: @@ -29,7 +29,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:29 GMT + - Mon, 11 Aug 2025 20:26:46 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -42,10 +42,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" status: code: 200 message: OK @@ -53,11 +49,11 @@ interactions: body: null headers: {} method: GET - uri: https://api.crossref.org/works?mailto=example@papercrow.ai&query.title=Beta-Blocker+Interruption+or+Continuation+after+Myocardial+Infarction&rows=1&select=DOI,author,container-title,title + uri: https://api.crossref.org/works?mailto=example@papercrow.ai&query.title=Beta-Blocker+Interruption+or+Continuation+after+Myocardial+Infarction&rows=1&query.author=Johanne+Silvain&select=DOI,author,container-title,title response: body: string: - '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":1806840,"items":[{"DOI":"10.1056\/nejmoa2404204","author":[{"ORCID":"http:\/\/orcid.org\/0000-0002-1901-2808","authenticated-orcid":false,"given":"Johanne","family":"Silvain","sequence":"first","affiliation":[{"name":"From + '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":417,"items":[{"DOI":"10.1056\/nejmoa2404204","author":[{"ORCID":"https:\/\/orcid.org\/0000-0002-1901-2808","authenticated-orcid":false,"given":"Johanne","family":"Silvain","sequence":"first","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -65,7 +61,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Guillaume","family":"Cayla","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Guillaume","family":"Cayla","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -73,7 +76,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Emile","family":"Ferrari","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Emile","family":"Ferrari","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -81,7 +91,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Gr\u00e9goire","family":"Range","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Gr\u00e9goire","family":"Range","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -89,7 +106,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Etienne","family":"Puymirat","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Etienne","family":"Puymirat","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -97,7 +121,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Nicolas","family":"Delarche","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Nicolas","family":"Delarche","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -105,7 +136,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Paul","family":"Guedeney","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Paul","family":"Guedeney","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -113,7 +151,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Thomas","family":"Cuisset","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Thomas","family":"Cuisset","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -121,7 +166,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Fabrice","family":"Ivanes","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Fabrice","family":"Ivanes","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -129,7 +181,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Thibault","family":"Lhermusier","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Thibault","family":"Lhermusier","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -137,7 +196,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Thibault","family":"Petroni","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Thibault","family":"Petroni","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -145,7 +211,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Gilles","family":"Lemesle","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Gilles","family":"Lemesle","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -153,7 +226,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Fran\u00e7ois","family":"Bresoles","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Fran\u00e7ois","family":"Bresoles","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -161,7 +241,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Jean-No\u00ebl","family":"Labeque","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Jean-No\u00ebl","family":"Labeque","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -169,7 +256,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Thibaut","family":"Pommier","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Thibaut","family":"Pommier","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -177,7 +271,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Jean-Guillaume","family":"Dillinger","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Jean-Guillaume","family":"Dillinger","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -185,7 +286,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Florence","family":"Leclercq","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Florence","family":"Leclercq","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -193,7 +301,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Franck","family":"Boccara","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Franck","family":"Boccara","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -201,7 +316,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Pascal","family":"Lim","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Pascal","family":"Lim","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -209,7 +331,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Timoth\u00e9e","family":"Besseyre + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Timoth\u00e9e","family":"Besseyre des Horts","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux @@ -218,7 +347,14 @@ interactions: Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the Cardiology - Department, H\u00f4pital Saint..."}]},{"given":"Thierry","family":"Fourme","sequence":"additional","affiliation":[{"name":"From + Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne Universit\u00e9, + INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital Bichat, + AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Thierry","family":"Fourme","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -226,7 +362,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Fran\u00e7ois","family":"Jourda","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Fran\u00e7ois","family":"Jourda","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -234,7 +377,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Alain","family":"Furber","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Alain","family":"Furber","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -242,7 +392,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Benoit","family":"Lattuca","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Benoit","family":"Lattuca","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -250,7 +407,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Nassim","family":"Redjimi","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Nassim","family":"Redjimi","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -258,7 +422,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"ORCID":"http:\/\/orcid.org\/0000-0003-3134-6875","authenticated-orcid":false,"given":"Christophe","family":"Thuaire","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"ORCID":"https:\/\/orcid.org\/0000-0003-3134-6875","authenticated-orcid":false,"given":"Christophe","family":"Thuaire","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -266,7 +437,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"ORCID":"http:\/\/orcid.org\/0000-0001-5910-3002","authenticated-orcid":false,"given":"Pierre","family":"Deharo","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"ORCID":"https:\/\/orcid.org\/0000-0001-5910-3002","authenticated-orcid":false,"given":"Pierre","family":"Deharo","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -274,7 +452,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Niki","family":"Procopi","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Niki","family":"Procopi","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -282,7 +467,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Raphaelle","family":"Dumaine","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Raphaelle","family":"Dumaine","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -290,7 +482,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Michel","family":"Slama","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Michel","family":"Slama","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -298,7 +497,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Laurent","family":"Payot","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Laurent","family":"Payot","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -306,16 +512,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Mohamad","family":"El - Kasty","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, - ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital - Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux - de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), the Department of Cardiology, - H\u00f4pital Europ\u00e9en Georges Pompidou, AP-HP, Universit\u00e9 Paris - Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), - the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital - Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the Cardiology - Department, H\u00f4pital Saint..."}]},{"given":"Karim","family":"Aacha","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Mohamad","family":"El Kasty","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -323,7 +527,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Abdourahmane","family":"Diallo","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Karim","family":"Aacha","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -331,7 +542,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Eric","family":"Vicaut","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Abdourahmane","family":"Diallo","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -339,7 +557,14 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]},{"given":"Gilles","family":"Montalescot","sequence":"additional","affiliation":[{"name":"From + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Eric","family":"Vicaut","sequence":"additional","affiliation":[{"name":"From Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), @@ -347,9 +572,31 @@ interactions: AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the - Cardiology Department, H\u00f4pital Saint..."}]}],"container-title":["New - England Journal of Medicine"],"title":["Beta-Blocker Interruption or Continuation - after Myocardial Infarction"]}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]},{"given":"Gilles","family":"Montalescot","sequence":"additional","affiliation":[{"name":"From + Sorbonne Universit\u00e9, ACTION Group, INSERM Unit\u00e9 Mixte de Recherche + (UMRS) 1166, H\u00f4pital Piti\u00e9\u2013Salp\u00eatri\u00e8re Assistance + Publique\u2013H\u00f4pitaux de Paris (AP-HP) (J.S., P.G., N.P., K.A., G.M.), + the Department of Cardiology, H\u00f4pital Europ\u00e9en Georges Pompidou, + AP-HP, Universit\u00e9 Paris Cit\u00e9 (E.P.), FACT (French Alliance for Cardiovascular + Trials) (G.L.), the Department of Cardiology, Universit\u00e9 Paris Cit\u00e9, + H\u00f4pital Lariboisi\u00e8re, AP-HP, INSERM Unit\u00e9 942 (J.-G.D.), the + Cardiology Department, H\u00f4pital Saint-Antoine, ACTION Group, Sorbonne + Universit\u00e9, INSERM UMRS 938 (F. Boccara), the Cardiology Department H\u00f4pital + Bichat, AP-HP (M.S.), Unit\u00e9 de Recherche Clinique, ACTION Group, H\u00f4pital + Fernand Widal (AP-HP) (A.D., E.V.), and SAMM (Statistique, Analyse et Mod\u00e9lisation + Multidisciplinaire) EA 4543, Universit\u00e9 Paris 1 Panth\u00e9on Sorbonne + (A.D., E.V.), Paris, the Cardiology Department, Nimes University Hospital, + Montpellier University, ACTION Group, Nimes (G.C., B.L.), the Cardiology Department, + Pasteur University Hospital, Nic..."}]}],"container-title":["New England Journal + of Medicine"],"title":["Beta-Blocker Interruption or Continuation after Myocardial + Infarction"]}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' headers: Access-Control-Allow-Headers: - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, @@ -359,15 +606,15 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Content-Encoding: - gzip Content-Length: - - "1356" + - "1691" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:30 GMT + - Mon, 11 Aug 2025 20:26:48 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -380,10 +627,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" status: code: 200 message: OK diff --git a/tests/cassettes/test_doi_search[paper_attributes0].yaml b/tests/cassettes/test_doi_search[paper_attributes0].yaml index 73dd75451..b989944e1 100644 --- a/tests/cassettes/test_doi_search[paper_attributes0].yaml +++ b/tests/cassettes/test_doi_search[paper_attributes0].yaml @@ -3,25 +3,28 @@ interactions: body: null headers: {} method: GET - uri: https://api.semanticscholar.org/graph/v1/paper/DOI:10.1101/2024.04.01.587366?fields=authors,citationCount,citationStyles,externalIds,influentialCitationCount,isOpenAccess,journal,openAccessPdf,publicationDate,publicationTypes,title,url,venue,year + uri: https://api.semanticscholar.org/graph/v1/paper/DOI:10.1016/j.xgen.2025.100814?fields=authors,citationCount,citationStyles,externalIds,influentialCitationCount,isOpenAccess,journal,openAccessPdf,publicationDate,publicationTypes,title,url,venue,year response: body: string: '{"paperId": "7e5d4466c8b85f93775fe183e1a318a3e65ac8e4", "externalIds": - {"DOI": "10.1101/2024.04.01.587366", "CorpusId": 268890006}, "url": "https://www.semanticscholar.org/paper/7e5d4466c8b85f93775fe183e1a318a3e65ac8e4", + {"PubMedCentral": "12008803", "DOI": "10.1016/j.xgen.2025.100814", "CorpusId": + 268890006, "PubMed": "40120586"}, "url": "https://www.semanticscholar.org/paper/7e5d4466c8b85f93775fe183e1a318a3e65ac8e4", "title": "High-throughput screening of human genetic variants by pooled prime - editing", "venue": "bioRxiv", "year": 2024, "citationCount": 1, "influentialCitationCount": - 0, "isOpenAccess": true, "openAccessPdf": {"url": "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "status": "GREEN"}, "publicationTypes": null, "publicationDate": "2024-04-01", - "journal": {"name": "bioRxiv"}, "citationStyles": {"bibtex": "@Article{Herger2024HighthroughputSO,\n + editing", "venue": "bioRxiv", "year": 2024, "citationCount": 5, "influentialCitationCount": + 0, "isOpenAccess": true, "openAccessPdf": {"url": "https://doi.org/10.1016/j.xgen.2025.100814", + "status": "GOLD", "license": "CCBY"}, "publicationTypes": ["JournalArticle"], + "publicationDate": "2024-04-01", "journal": {"name": "Cell Genomics", "volume": + "5"}, "citationStyles": {"bibtex": "@Article{Herger2024HighthroughputSO,\n author = {Michael Herger and Christina M. Kajba and Megan Buckley and Ana Cunha and Molly Strom and Gregory M. Findlay},\n booktitle = {bioRxiv},\n - journal = {bioRxiv},\n title = {High-throughput screening of human genetic - variants by pooled prime editing},\n year = {2024}\n}\n"}, "authors": [{"authorId": - "2294884120", "name": "Michael Herger"}, {"authorId": "2163800172", "name": - "Christina M. Kajba"}, {"authorId": "2120283350", "name": "Megan Buckley"}, - {"authorId": "2294861709", "name": "Ana Cunha"}, {"authorId": "2294881320", - "name": "Molly Strom"}, {"authorId": "145686550", "name": "Gregory M. Findlay"}]} + journal = {Cell Genomics},\n title = {High-throughput screening of human genetic + variants by pooled prime editing},\n volume = {5},\n year = {2024}\n}\n"}, + "authors": [{"authorId": "2294884120", "name": "Michael Herger"}, {"authorId": + "2163800172", "name": "Christina M. Kajba"}, {"authorId": "2120283350", "name": + "Megan Buckley"}, {"authorId": "2294861709", "name": "Ana Cunha"}, {"authorId": + "2294881320", "name": "Molly Strom"}, {"authorId": "145686550", "name": "Gregory + M. Findlay"}]} ' headers: @@ -30,31 +33,31 @@ interactions: Connection: - keep-alive Content-Length: - - "1325" + - "1411" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:27 GMT + - Mon, 11 Aug 2025 17:20:14 GMT Via: - - 1.1 29474fd3a24c6552dfdc04ee03c03aa2.cloudfront.net (CloudFront) + - 1.1 68914922a694954838e87fc9b0aa10fe.cloudfront.net (CloudFront) X-Amz-Cf-Id: - - ubfBzmq7YHSX38Ewnwgg5G36wmzFJA_LhR-X2rkHiaKO_C93_6NK3Q== + - tVw7vgS7R3PEwQH_eKtGv7cnerORHKVBiGVGOz3Ro9bRQZSejPIxAA== X-Amz-Cf-Pop: - - SFO53-P7 + - SFO53-C1 X-Cache: - Miss from cloudfront x-amz-apigw-id: - - CLbZTGsbvHcEXDg= + - PJrsWF5_PHcEJpQ= x-amzn-Remapped-Connection: - keep-alive x-amzn-Remapped-Content-Length: - - "1325" + - "1411" x-amzn-Remapped-Date: - - Mon, 02 Dec 2024 19:36:27 GMT + - Mon, 11 Aug 2025 17:20:14 GMT x-amzn-Remapped-Server: - gunicorn x-amzn-RequestId: - - 72d3483b-4629-4199-8766-c1f40565fcba + - 6961f7c9-83ac-4dec-8d61-9bc7badb7479 status: code: 200 message: OK @@ -62,72 +65,137 @@ interactions: body: null headers: {} method: GET - uri: https://api.openalex.org/works/https://doi.org/10.1101%2F2024.04.01.587366 + uri: https://api.unpaywall.org/v2/10.1016/j.xgen.2025.100814?email=example@papercrow.ai response: body: string: - '{"id":"https://openalex.org/W4393448183","doi":"https://doi.org/10.1101/2024.04.01.587366","title":"High-throughput + '{"doi":"10.1016/j.xgen.2025.100814","doi_url":"https://doi.org/10.1016/j.xgen.2025.100814","title":"High-throughput + screening of human genetic variants by pooled prime editing","genre":"journal-article","is_paratext":false,"published_date":"2025-03-22","year":2025,"journal_name":"Cell + Genomics","journal_issns":"2666-979X","journal_issn_l":"2666-979X","journal_is_oa":true,"journal_is_in_doaj":true,"publisher":"Elsevier + BV","is_oa":true,"oa_status":"gold","has_repository_copy":true,"best_oa_location":{"url":"https://doi.org/10.1016/j.xgen.2025.100814","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.xgen.2025.100814","evidence":"deprecated","license":"cc-by","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2025-03-22","updated":"deprecated"},"first_oa_location":{"url":"https://doi.org/10.1016/j.xgen.2025.100814","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.xgen.2025.100814","evidence":"deprecated","license":"cc-by","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2025-03-22","updated":"deprecated"},"oa_locations":[{"url":"https://doi.org/10.1016/j.xgen.2025.100814","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.xgen.2025.100814","evidence":"deprecated","license":"cc-by","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2025-03-22","updated":"deprecated"},{"url":"https://www.ncbi.nlm.nih.gov/pmc/articles/12008803","url_for_pdf":null,"url_for_landing_page":"https://www.ncbi.nlm.nih.gov/pmc/articles/12008803","evidence":"deprecated","license":"other-oa","version":"submittedVersion","host_type":"repository","is_best":false,"pmh_id":"oai:pubmedcentral.nih.gov:12008803","endpoint_id":"daaf77eacc58eec31bb","repository_institution":"PubMed + Central","oa_date":"2025-03-22","updated":"deprecated"}],"oa_locations_embargoed":[],"data_standard":2,"z_authors":[{"author_position":"first","raw_author_name":"Michael + Herger","is_corresponding":true,"raw_affiliation_strings":["The Genome Function + Laboratory, The Francis Crick Institute, London NW1 1AT, UK."]},{"author_position":"additional","raw_author_name":"Christina + M. Kajba","is_corresponding":false,"raw_affiliation_strings":["The Genome + Function Laboratory, The Francis Crick Institute, London NW1 1AT, UK."]},{"author_position":"additional","raw_author_name":"Megan + Buckley","is_corresponding":false,"raw_affiliation_strings":["The Genome Function + Laboratory, The Francis Crick Institute, London NW1 1AT, UK."]},{"author_position":"additional","raw_author_name":"Ana + Cunha","is_corresponding":false,"raw_affiliation_strings":["Viral Vector Core, + Human Biology Facility, The Francis Crick Institute, London NW1 1AT, UK."]},{"author_position":"additional","raw_author_name":"Molly + Strom","is_corresponding":false,"raw_affiliation_strings":["Viral Vector Core, + Human Biology Facility, The Francis Crick Institute, London NW1 1AT, UK."]},{"author_position":"last","raw_author_name":"Gregory + M. Findlay","is_corresponding":false,"raw_affiliation_strings":["The Genome + Function Laboratory, The Francis Crick Institute, London NW1 1AT, UK. Electronic + address: greg.findlay@crick.ac.uk."]}],"updated":"2025-08-04T14:10:34Z"} + + ' + headers: + Access-Control-Allow-Headers: + - origin, content-type, accept, x-requested-with + Access-Control-Allow-Methods: + - POST, GET, OPTIONS, PUT, DELETE, PATCH + Access-Control-Allow-Origin: + - "*" + Content-Encoding: + - gzip + Content-Length: + - "880" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:20:14 GMT + Nel: + - '{"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}' + Report-To: + - '{"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=K7NfgoDk%2Bl4wWbOkE8K619kkd6qUuxc75pRXmOS7Dkw%3D\u0026sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add\u0026ts=1754932814"}],"max_age":3600}' + Reporting-Endpoints: + - heroku-nel="https://nel.heroku.com/reports?s=K7NfgoDk%2Bl4wWbOkE8K619kkd6qUuxc75pRXmOS7Dkw%3D&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&ts=1754932814" + Server: + - Heroku + Vary: + - Accept-Encoding + Via: + - 1.1 heroku-router + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.openalex.org/works/https://doi.org/10.1016%2Fj.xgen.2025.100814 + response: + body: + string: + '{"id":"https://openalex.org/W4408732759","doi":"https://doi.org/10.1016/j.xgen.2025.100814","title":"High-throughput screening of human genetic variants by pooled prime editing","display_name":"High-throughput - screening of human genetic variants by pooled prime editing","publication_year":2024,"publication_date":"2024-04-01","ids":{"openalex":"https://openalex.org/W4393448183","doi":"https://doi.org/10.1101/2024.04.01.587366"},"language":"en","primary_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1101/2024.04.01.587366","pdf_url":"https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf","source":{"id":"https://openalex.org/S4306402567","display_name":"bioRxiv - (Cold Spring Harbor Laboratory)","issn_l":null,"issn":null,"is_oa":true,"is_in_doaj":false,"is_core":false,"host_organization":"https://openalex.org/I2750212522","host_organization_name":"Cold - Spring Harbor Laboratory","host_organization_lineage":["https://openalex.org/I2750212522"],"host_organization_lineage_names":["Cold - Spring Harbor Laboratory"],"type":"repository"},"license":"cc-by","license_id":"https://openalex.org/licenses/cc-by","version":"submittedVersion","is_accepted":false,"is_published":false},"type":"preprint","type_crossref":"posted-content","indexed_in":["crossref"],"open_access":{"is_oa":true,"oa_status":"green","oa_url":"https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf","any_repository_has_fulltext":true},"authorships":[{"author_position":"first","author":{"id":"https://openalex.org/A5067011895","display_name":"Michael + screening of human genetic variants by pooled prime editing","publication_year":2025,"publication_date":"2025-03-01","ids":{"openalex":"https://openalex.org/W4408732759","doi":"https://doi.org/10.1016/j.xgen.2025.100814","pmid":"https://pubmed.ncbi.nlm.nih.gov/40120586"},"language":"en","primary_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1016/j.xgen.2025.100814","pdf_url":null,"source":{"id":"https://openalex.org/S4210194377","display_name":"Cell + Genomics","issn_l":"2666-979X","issn":["2666-979X"],"is_oa":true,"is_in_doaj":true,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320990","host_organization_name":"Elsevier + BV","host_organization_lineage":["https://openalex.org/P4310320990"],"host_organization_lineage_names":["Elsevier + BV"],"type":"journal"},"license":"cc-by","license_id":"https://openalex.org/licenses/cc-by","version":"publishedVersion","is_accepted":true,"is_published":true},"type":"article","type_crossref":"journal-article","indexed_in":["crossref","pubmed"],"open_access":{"is_oa":true,"oa_status":"gold","oa_url":"https://doi.org/10.1016/j.xgen.2025.100814","any_repository_has_fulltext":false},"authorships":[{"author_position":"first","author":{"id":"https://openalex.org/A5067011895","display_name":"Michael Herger","orcid":"https://orcid.org/0000-0002-5390-2695"},"institutions":[{"id":"https://openalex.org/I2801081054","display_name":"The - Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"facility","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Michael - Herger","raw_affiliation_strings":["The Francis Crick Institute"],"affiliations":[{"raw_affiliation_string":"The - Francis Crick Institute","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5003387836","display_name":"Christina + Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"funder","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Michael + Herger","raw_affiliation_strings":["The Genome Function Laboratory, The Francis + Crick Institute, London NW1 1AT, UK."],"affiliations":[{"raw_affiliation_string":"The + Genome Function Laboratory, The Francis Crick Institute, London NW1 1AT, UK.","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5003387836","display_name":"Christina M. Kajba","orcid":"https://orcid.org/0000-0002-7896-0744"},"institutions":[{"id":"https://openalex.org/I2801081054","display_name":"The - Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"facility","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Christina - M. Kajba","raw_affiliation_strings":["The Francis Crick Institute"],"affiliations":[{"raw_affiliation_string":"The - Francis Crick Institute","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5054087528","display_name":"Megan + Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"funder","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Christina + M Kajba","raw_affiliation_strings":["The Genome Function Laboratory, The Francis + Crick Institute, London NW1 1AT, UK."],"affiliations":[{"raw_affiliation_string":"The + Genome Function Laboratory, The Francis Crick Institute, London NW1 1AT, UK.","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5054087528","display_name":"Megan Buckley","orcid":"https://orcid.org/0000-0003-4450-8474"},"institutions":[{"id":"https://openalex.org/I2801081054","display_name":"The - Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"facility","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Megan - Buckley","raw_affiliation_strings":["The Francis Crick Institute"],"affiliations":[{"raw_affiliation_string":"The - Francis Crick Institute","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5061084011","display_name":"Ana + Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"funder","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Megan + Buckley","raw_affiliation_strings":["The Genome Function Laboratory, The Francis + Crick Institute, London NW1 1AT, UK."],"affiliations":[{"raw_affiliation_string":"The + Genome Function Laboratory, The Francis Crick Institute, London NW1 1AT, UK.","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5061084011","display_name":"Ana Cunha","orcid":"https://orcid.org/0000-0002-7651-5858"},"institutions":[{"id":"https://openalex.org/I2801081054","display_name":"The - Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"facility","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Ana - Cunha","raw_affiliation_strings":["The Francis Crick Institute"],"affiliations":[{"raw_affiliation_string":"The - Francis Crick Institute","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5109336004","display_name":"Molly + Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"funder","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Ana + Cunha","raw_affiliation_strings":["Viral Vector Core, Human Biology Facility, + The Francis Crick Institute, London NW1 1AT, UK."],"affiliations":[{"raw_affiliation_string":"Viral + Vector Core, Human Biology Facility, The Francis Crick Institute, London NW1 + 1AT, UK.","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5109336004","display_name":"Molly Strom","orcid":null},"institutions":[{"id":"https://openalex.org/I2801081054","display_name":"The - Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"facility","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Molly - Strom","raw_affiliation_strings":["The Francis Crick Institute"],"affiliations":[{"raw_affiliation_string":"The - Francis Crick Institute","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"last","author":{"id":"https://openalex.org/A5084597634","display_name":"Gregory + Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"funder","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Molly + Strom","raw_affiliation_strings":["Viral Vector Core, Human Biology Facility, + The Francis Crick Institute, London NW1 1AT, UK."],"affiliations":[{"raw_affiliation_string":"Viral + Vector Core, Human Biology Facility, The Francis Crick Institute, London NW1 + 1AT, UK.","institution_ids":["https://openalex.org/I2801081054"]}]},{"author_position":"last","author":{"id":"https://openalex.org/A5084597634","display_name":"Gregory M. Findlay","orcid":"https://orcid.org/0000-0002-7767-8608"},"institutions":[{"id":"https://openalex.org/I2801081054","display_name":"The - Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"facility","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Gregory - M. Findlay","raw_affiliation_strings":["The Francis Crick Institute"],"affiliations":[{"raw_affiliation_string":"The - Francis Crick Institute","institution_ids":["https://openalex.org/I2801081054"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":null,"apc_paid":null,"fwci":null,"has_fulltext":true,"fulltext_origin":"pdf","cited_by_count":2,"citation_normalized_percentile":{"value":0.999923,"is_in_top_1_percent":true,"is_in_top_10_percent":true},"cited_by_percentile_year":{"min":94,"max":96},"biblio":{"volume":null,"issue":null,"first_page":null,"last_page":null},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T10878","display_name":"Clustered - Regularly Interspaced Short Palindromic Repeats and CRISPR-associated proteins","score":0.9999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular + Francis Crick Institute","ror":"https://ror.org/04tnbqb63","country_code":"GB","type":"funder","lineage":["https://openalex.org/I2801081054"]}],"countries":["GB"],"is_corresponding":false,"raw_author_name":"Gregory + M Findlay","raw_affiliation_strings":["The Genome Function Laboratory, The + Francis Crick Institute, London NW1 1AT, UK. Electronic address: greg.findlay@crick.ac.uk."],"affiliations":[{"raw_affiliation_string":"The + Genome Function Laboratory, The Francis Crick Institute, London NW1 1AT, UK. + Electronic address: greg.findlay@crick.ac.uk.","institution_ids":["https://openalex.org/I2801081054"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":{"value":8900,"currency":"USD","value_usd":8900},"apc_paid":{"value":8900,"currency":"USD","value_usd":8900},"fwci":10.785,"has_fulltext":false,"cited_by_count":3,"citation_normalized_percentile":{"value":0.999969,"is_in_top_1_percent":true,"is_in_top_10_percent":true},"cited_by_percentile_year":{"min":98,"max":99},"biblio":{"volume":null,"issue":null,"first_page":"100814","last_page":"100814"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T10878","display_name":"CRISPR + and Genetic Engineering","score":0.9999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life - Sciences"}},"topics":[{"id":"https://openalex.org/T10878","display_name":"Clustered - Regularly Interspaced Short Palindromic Repeats and CRISPR-associated proteins","score":0.9999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular + Sciences"}},"topics":[{"id":"https://openalex.org/T10878","display_name":"CRISPR + and Genetic Engineering","score":0.9999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life - Sciences"}},{"id":"https://openalex.org/T10207","display_name":"DNA Nanotechnology - and Bioanalytical Applications","score":0.9972,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular - Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, - Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life - Sciences"}},{"id":"https://openalex.org/T10521","display_name":"Ribosome Structure - and Translation Mechanisms","score":0.9943,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular - Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, + Sciences"}},{"id":"https://openalex.org/T10981","display_name":"Cytomegalovirus + and herpesvirus research","score":0.9912,"subfield":{"id":"https://openalex.org/subfields/2713","display_name":"Epidemiology"},"field":{"id":"https://openalex.org/fields/27","display_name":"Medicine"},"domain":{"id":"https://openalex.org/domains/4","display_name":"Health + Sciences"}},{"id":"https://openalex.org/T10613","display_name":"Virus-based + gene therapy research","score":0.9814,"subfield":{"id":"https://openalex.org/subfields/1311","display_name":"Genetics"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life - Sciences"}}],"keywords":[{"id":"https://openalex.org/keywords/multiplex-genome-editing","display_name":"Multiplex - Genome Editing","score":0.568746},{"id":"https://openalex.org/keywords/gene-editing","display_name":"Gene - Editing","score":0.531232},{"id":"https://openalex.org/keywords/negative-selection","display_name":"Negative - selection","score":0.48653165}],"concepts":[{"id":"https://openalex.org/C70721500","wikidata":"https://www.wikidata.org/wiki/Q177005","display_name":"Computational - biology","level":1,"score":0.6271358},{"id":"https://openalex.org/C86803240","wikidata":"https://www.wikidata.org/wiki/Q420","display_name":"Biology","level":0,"score":0.5850787},{"id":"https://openalex.org/C81917197","wikidata":"https://www.wikidata.org/wiki/Q628760","display_name":"Selection - (genetic algorithm)","level":2,"score":0.52266854},{"id":"https://openalex.org/C2779343474","wikidata":"https://www.wikidata.org/wiki/Q3109175","display_name":"Context - (archaeology)","level":2,"score":0.5084159},{"id":"https://openalex.org/C7386963","wikidata":"https://www.wikidata.org/wiki/Q3954859","display_name":"Negative - selection","level":4,"score":0.48653165},{"id":"https://openalex.org/C54355233","wikidata":"https://www.wikidata.org/wiki/Q7162","display_name":"Genetics","level":1,"score":0.44161588},{"id":"https://openalex.org/C144501496","wikidata":"https://www.wikidata.org/wiki/Q5533489","display_name":"Genome - editing","level":4,"score":0.41460347},{"id":"https://openalex.org/C141231307","wikidata":"https://www.wikidata.org/wiki/Q7020","display_name":"Genome","level":3,"score":0.39861494},{"id":"https://openalex.org/C104317684","wikidata":"https://www.wikidata.org/wiki/Q7187","display_name":"Gene","level":2,"score":0.3876987},{"id":"https://openalex.org/C41008148","wikidata":"https://www.wikidata.org/wiki/Q21198","display_name":"Computer - science","level":0,"score":0.33935452},{"id":"https://openalex.org/C119857082","wikidata":"https://www.wikidata.org/wiki/Q2539","display_name":"Machine - learning","level":1,"score":0.101546764},{"id":"https://openalex.org/C151730666","wikidata":"https://www.wikidata.org/wiki/Q7205","display_name":"Paleontology","level":1,"score":0.0}],"mesh":[],"locations_count":1,"locations":[{"is_oa":true,"landing_page_url":"https://doi.org/10.1101/2024.04.01.587366","pdf_url":"https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf","source":{"id":"https://openalex.org/S4306402567","display_name":"bioRxiv - (Cold Spring Harbor Laboratory)","issn_l":null,"issn":null,"is_oa":true,"is_in_doaj":false,"is_core":false,"host_organization":"https://openalex.org/I2750212522","host_organization_name":"Cold - Spring Harbor Laboratory","host_organization_lineage":["https://openalex.org/I2750212522"],"host_organization_lineage_names":["Cold - Spring Harbor Laboratory"],"type":"repository"},"license":"cc-by","license_id":"https://openalex.org/licenses/cc-by","version":"submittedVersion","is_accepted":false,"is_published":false}],"best_oa_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1101/2024.04.01.587366","pdf_url":"https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf","source":{"id":"https://openalex.org/S4306402567","display_name":"bioRxiv - (Cold Spring Harbor Laboratory)","issn_l":null,"issn":null,"is_oa":true,"is_in_doaj":false,"is_core":false,"host_organization":"https://openalex.org/I2750212522","host_organization_name":"Cold - Spring Harbor Laboratory","host_organization_lineage":["https://openalex.org/I2750212522"],"host_organization_lineage_names":["Cold - Spring Harbor Laboratory"],"type":"repository"},"license":"cc-by","license_id":"https://openalex.org/licenses/cc-by","version":"submittedVersion","is_accepted":false,"is_published":false},"sustainable_development_goals":[],"grants":[],"datasets":[],"versions":[],"referenced_works_count":50,"referenced_works":["https://openalex.org/W1973260880","https://openalex.org/W2014747507","https://openalex.org/W2031211461","https://openalex.org/W2045435533","https://openalex.org/W2051978340","https://openalex.org/W2068427957","https://openalex.org/W2101868032","https://openalex.org/W2110951885","https://openalex.org/W2174602966","https://openalex.org/W2174686320","https://openalex.org/W2252568502","https://openalex.org/W2512645103","https://openalex.org/W2774216375","https://openalex.org/W2788593837","https://openalex.org/W2791921618","https://openalex.org/W2887461405","https://openalex.org/W2889874867","https://openalex.org/W2909194804","https://openalex.org/W2915459742","https://openalex.org/W2954501063","https://openalex.org/W2967059818","https://openalex.org/W2981137429","https://openalex.org/W3062028978","https://openalex.org/W3087701445","https://openalex.org/W3098409330","https://openalex.org/W3115988811","https://openalex.org/W3121904305","https://openalex.org/W3129351841","https://openalex.org/W3131839988","https://openalex.org/W3132864675","https://openalex.org/W3161833585","https://openalex.org/W3192108213","https://openalex.org/W3199622685","https://openalex.org/W3202931255","https://openalex.org/W3206354438","https://openalex.org/W3213536168","https://openalex.org/W4213232054","https://openalex.org/W4220887281","https://openalex.org/W4226280654","https://openalex.org/W4288060326","https://openalex.org/W4303199315","https://openalex.org/W4307446592","https://openalex.org/W4312190539","https://openalex.org/W4316507374","https://openalex.org/W4317689970","https://openalex.org/W4367311810","https://openalex.org/W4378976943","https://openalex.org/W4386861232","https://openalex.org/W4389398607","https://openalex.org/W4390063959"],"related_works":["https://openalex.org/W4388142354","https://openalex.org/W4377564400","https://openalex.org/W4366822718","https://openalex.org/W4365811064","https://openalex.org/W4320032841","https://openalex.org/W4280502984","https://openalex.org/W2998674376","https://openalex.org/W2770215042","https://openalex.org/W2607137613","https://openalex.org/W2580221256"],"abstract_inverted_index":{"ABSTRACT":[0],"Understanding":[1],"the":[2,92],"effects":[3],"of":[4,19,28,38,42,70,94,110,128,199],"rare":[5],"genetic":[6],"variants":[7,39,61,71,120,142,152,164],"remains":[8],"challenging,":[9],"both":[10,183],"in":[11,54,62,91,121,132,158],"coding":[12],"and":[13,79,107,139,185],"non-coding":[14,150],"regions.":[15],"While":[16],"multiplexed":[17],"assays":[18],"variant":[20],"effect":[21],"(MAVEs)":[22],"have":[23],"enabled":[24],"scalable":[25,196],"functional":[26,197],"assessment":[27,198],"variants,":[29],"established":[30],"MAVEs":[31],"are":[32],"limited":[33],"by":[34,97],"either":[35],"exogenous":[36],"expression":[37],"or":[40],"constraints":[41],"genome":[43],"editing.":[44],"Here,":[45],"we":[46,147],"introduce":[47],"a":[48,81,133,154,159],"pooled":[49],"prime":[50],"editing":[51,105],"(PE)":[52],"platform":[53,90,191],"haploid":[55],"human":[56,200],"cells":[57],"to":[58,72,193],"scalably":[59],"assay":[60,148],"their":[63],"endogenous":[64],"context.":[65],"We":[66,87,117],"first":[67],"optimized":[68],"delivery":[69],"HAP1":[73],"cells,":[74],"defining":[75],"optimal":[76],"pegRNA":[77],"designs":[78],"establishing":[80],"co-selection":[82],"strategy":[83],"for":[84,104,177],"improved":[85],"efficiency.":[86],"characterize":[88],"our":[89,190],"context":[93],"negative":[95,186],"selection":[96,187],"testing":[98],"over":[99],"7,500":[100],"pegRNAs":[101,113,180],"targeting":[102],"SMARCB1":[103],"activity":[106],"observing":[108],"depletion":[109],"highly":[111,178,195],"active":[112,179],"installing":[114],"loss-of-function":[115],"variants.":[116,201],"next":[118],"assess":[119],"MLH1":[122,151],"via":[123,166],"6-thioguanine":[124],"selection,":[125],"assaying":[126],"65.3%":[127],"all":[129],"possible":[130],"SNVs":[131],"200-bp":[134],"region":[135,157],"spanning":[136],"exon":[137],"10":[138],"distinguishing":[140],"LoF":[141],"with":[143,169],"high":[144,170],"accuracy.":[145],"Lastly,":[146],"362":[149],"across":[153],"60":[155],"kb":[156],"single":[160],"experiment,":[161],"identifying":[162],"pathogenic":[163],"acting":[165],"multiple":[167],"mechanisms":[168],"specificity.":[171],"Our":[172],"analyses":[173],"detail":[174],"how":[175],"filtering":[176],"can":[181],"facilitate":[182],"positive":[184],"screens.":[188],"Accordingly,":[189],"promises":[192],"enable":[194]},"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W4393448183","counts_by_year":[{"year":2024,"cited_by_count":1}],"updated_date":"2024-11-26T12:01:03.811397","created_date":"2024-04-03"} + Sciences"}}],"keywords":[{"id":"https://openalex.org/keywords/high-throughput-screening","display_name":"High-Throughput + Screening","score":0.4500898}],"concepts":[{"id":"https://openalex.org/C157764524","wikidata":"https://www.wikidata.org/wiki/Q1383412","display_name":"Throughput","level":3,"score":0.71118003},{"id":"https://openalex.org/C184992742","wikidata":"https://www.wikidata.org/wiki/Q7243229","display_name":"Prime + (order theory)","level":2,"score":0.6881021},{"id":"https://openalex.org/C41008148","wikidata":"https://www.wikidata.org/wiki/Q21198","display_name":"Computer + science","level":0,"score":0.4874816},{"id":"https://openalex.org/C51323132","wikidata":"https://www.wikidata.org/wiki/Q626251","display_name":"High-throughput + screening","level":2,"score":0.4500898},{"id":"https://openalex.org/C70721500","wikidata":"https://www.wikidata.org/wiki/Q177005","display_name":"Computational + biology","level":1,"score":0.44712314},{"id":"https://openalex.org/C86803240","wikidata":"https://www.wikidata.org/wiki/Q420","display_name":"Biology","level":0,"score":0.38793534},{"id":"https://openalex.org/C54355233","wikidata":"https://www.wikidata.org/wiki/Q7162","display_name":"Genetics","level":1,"score":0.3834316},{"id":"https://openalex.org/C33923547","wikidata":"https://www.wikidata.org/wiki/Q395","display_name":"Mathematics","level":0,"score":0.1075789},{"id":"https://openalex.org/C76155785","wikidata":"https://www.wikidata.org/wiki/Q418","display_name":"Telecommunications","level":1,"score":0.08276713},{"id":"https://openalex.org/C114614502","wikidata":"https://www.wikidata.org/wiki/Q76592","display_name":"Combinatorics","level":1,"score":0.054814756},{"id":"https://openalex.org/C555944384","wikidata":"https://www.wikidata.org/wiki/Q249","display_name":"Wireless","level":2,"score":0.0}],"mesh":[],"locations_count":2,"locations":[{"is_oa":true,"landing_page_url":"https://doi.org/10.1016/j.xgen.2025.100814","pdf_url":null,"source":{"id":"https://openalex.org/S4210194377","display_name":"Cell + Genomics","issn_l":"2666-979X","issn":["2666-979X"],"is_oa":true,"is_in_doaj":true,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320990","host_organization_name":"Elsevier + BV","host_organization_lineage":["https://openalex.org/P4310320990"],"host_organization_lineage_names":["Elsevier + BV"],"type":"journal"},"license":"cc-by","license_id":"https://openalex.org/licenses/cc-by","version":"publishedVersion","is_accepted":true,"is_published":true},{"is_oa":false,"landing_page_url":"https://pubmed.ncbi.nlm.nih.gov/40120586","pdf_url":null,"source":{"id":"https://openalex.org/S4306525036","display_name":"PubMed","issn_l":null,"issn":null,"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":false,"host_organization":"https://openalex.org/I1299303238","host_organization_name":"National + Institutes of Health","host_organization_lineage":["https://openalex.org/I1299303238"],"host_organization_lineage_names":["National + Institutes of Health"],"type":"repository"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1016/j.xgen.2025.100814","pdf_url":null,"source":{"id":"https://openalex.org/S4210194377","display_name":"Cell + Genomics","issn_l":"2666-979X","issn":["2666-979X"],"is_oa":true,"is_in_doaj":true,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320990","host_organization_name":"Elsevier + BV","host_organization_lineage":["https://openalex.org/P4310320990"],"host_organization_lineage_names":["Elsevier + BV"],"type":"journal"},"license":"cc-by","license_id":"https://openalex.org/licenses/cc-by","version":"publishedVersion","is_accepted":true,"is_published":true},"sustainable_development_goals":[],"grants":[{"funder":"https://openalex.org/F4320311904","funder_display_name":"Wellcome + Trust","award_id":null},{"funder":"https://openalex.org/F4320312060","funder_display_name":"Francis + Crick Institute","award_id":null},{"funder":"https://openalex.org/F4320319985","funder_display_name":"Cancer + Research UK","award_id":"CC2190"},{"funder":"https://openalex.org/F4320334626","funder_display_name":"Medical + Research Council","award_id":null}],"datasets":[],"versions":[],"referenced_works_count":59,"referenced_works":["https://openalex.org/W1973260880","https://openalex.org/W1999256488","https://openalex.org/W2014747507","https://openalex.org/W2031211461","https://openalex.org/W2045435533","https://openalex.org/W2051978340","https://openalex.org/W2068427957","https://openalex.org/W2101868032","https://openalex.org/W2110951885","https://openalex.org/W2174602966","https://openalex.org/W2174686320","https://openalex.org/W2252568502","https://openalex.org/W2512645103","https://openalex.org/W2774216375","https://openalex.org/W2887461405","https://openalex.org/W2889874867","https://openalex.org/W2904226822","https://openalex.org/W2909194804","https://openalex.org/W2915459742","https://openalex.org/W2954501063","https://openalex.org/W2967059818","https://openalex.org/W2981137429","https://openalex.org/W3006887898","https://openalex.org/W3062028978","https://openalex.org/W3087701445","https://openalex.org/W3098409330","https://openalex.org/W3115988811","https://openalex.org/W3121904305","https://openalex.org/W3129351841","https://openalex.org/W3131839988","https://openalex.org/W3132864675","https://openalex.org/W3161833585","https://openalex.org/W3192108213","https://openalex.org/W3199622685","https://openalex.org/W3202931255","https://openalex.org/W3206354438","https://openalex.org/W3213536168","https://openalex.org/W4210558208","https://openalex.org/W4213232054","https://openalex.org/W4226280654","https://openalex.org/W4288060326","https://openalex.org/W4303199315","https://openalex.org/W4312190539","https://openalex.org/W4316507374","https://openalex.org/W4317689970","https://openalex.org/W4367311810","https://openalex.org/W4378976943","https://openalex.org/W4385403239","https://openalex.org/W4386334048","https://openalex.org/W4386861232","https://openalex.org/W4389398607","https://openalex.org/W4390052751","https://openalex.org/W4390063959","https://openalex.org/W4392705635","https://openalex.org/W4393902863","https://openalex.org/W4399741690","https://openalex.org/W4399893117","https://openalex.org/W4404252802","https://openalex.org/W4404497408"],"related_works":["https://openalex.org/W580487332","https://openalex.org/W4391375266","https://openalex.org/W3150498631","https://openalex.org/W2768489290","https://openalex.org/W2371195977","https://openalex.org/W2354872674","https://openalex.org/W2136583354","https://openalex.org/W2097654801","https://openalex.org/W2012910004","https://openalex.org/W1519879345"],"abstract_inverted_index":null,"abstract_inverted_index_v3":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W4408732759","counts_by_year":[{"year":2025,"cited_by_count":3}],"updated_date":"2025-07-18T01:03:41.562229","created_date":"2025-03-22"} ' headers: @@ -147,21 +215,21 @@ interactions: Content-Encoding: - gzip Content-Length: - - "3766" + - "2958" Content-Security-Policy: - default-src 'self'; object-src 'none' Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:27 GMT + - Mon, 11 Aug 2025 17:20:14 GMT Nel: - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' Referrer-Policy: - strict-origin-when-cross-origin Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1733168187&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=At1PRdLamgIs29FO04hd83SDefX37E5N0UGszOtQgBI%3D"}]}' + - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1754932814&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=JdBZN8CKZIppQCrDM%2FmADpXCGE1Lf4ugodDgOaKf2Sw%3D"}]}' Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1733168187&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=At1PRdLamgIs29FO04hd83SDefX37E5N0UGszOtQgBI%3D + - heroku-nel=https://nel.heroku.com/reports?ts=1754932814&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=JdBZN8CKZIppQCrDM%2FmADpXCGE1Lf4ugodDgOaKf2Sw%3D Server: - gunicorn Strict-Transport-Security: @@ -185,57 +253,140 @@ interactions: body: null headers: {} method: GET - uri: https://api.crossref.org/works/10.1101%2F2024.04.01.587366?mailto=example@papercrow.ai + uri: https://api.crossref.org/works/10.1016%2Fj.xgen.2025.100814?mailto=example@papercrow.ai response: body: string: - '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"institution":[{"name":"bioRxiv"}],"indexed":{"date-parts":[[2024,11,19]],"date-time":"2024-11-19T19:09:55Z","timestamp":1732043395754},"posted":{"date-parts":[[2024,4,1]]},"group-title":"Genomics","reference-count":50,"publisher":"Cold - Spring Harbor Laboratory","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":[],"accepted":{"date-parts":[[2024,4,1]]},"abstract":"ABSTRACT<\/jats:title>Understanding - the effects of rare genetic variants remains challenging, both in coding and - non-coding regions. While multiplexed assays of variant effect (MAVEs) have - enabled scalable functional assessment of variants, established MAVEs are - limited by either exogenous expression of variants or constraints of genome - editing. Here, we introduce a pooled prime editing (PE) platform in haploid - human cells to scalably assay variants in their endogenous context. We first - optimized delivery of variants to HAP1 cells, defining optimal pegRNA designs - and establishing a co-selection strategy for improved efficiency. We characterize - our platform in the context of negative selection by testing over 7,500 pegRNAs - targetingSMARCB1<\/jats:italic>for editing activity and observing - depletion of highly active pegRNAs installing loss-of-function variants. We - next assess variants inMLH1<\/jats:italic>via 6-thioguanine selection, - assaying 65.3% of all possible SNVs in a 200-bp region spanning exon 10 and - distinguishing LoF variants with high accuracy. Lastly, we assay 362 non-codingMLH1<\/jats:italic>variants - across a 60 kb region in a single experiment, identifying pathogenic variants - acting via multiple mechanisms with high specificity. Our analyses detail - how filtering for highly active pegRNAs can facilitate both positive and negative - selection screens. Accordingly, our platform promises to enable highly scalable - functional assessment of human variants.<\/jats:p>","DOI":"10.1101\/2024.04.01.587366","type":"posted-content","created":{"date-parts":[[2024,4,2]],"date-time":"2024-04-02T02:05:17Z","timestamp":1712023517000},"source":"Crossref","is-referenced-by-count":1,"title":["High-throughput - screening of human genetic variants by pooled prime editing"],"prefix":"10.1101","author":[{"given":"Michael","family":"Herger","sequence":"first","affiliation":[]},{"given":"Christina - M.","family":"Kajba","sequence":"additional","affiliation":[]},{"given":"Megan","family":"Buckley","sequence":"additional","affiliation":[]},{"given":"Ana","family":"Cunha","sequence":"additional","affiliation":[]},{"given":"Molly","family":"Strom","sequence":"additional","affiliation":[]},{"ORCID":"http:\/\/orcid.org\/0000-0002-7767-8608","authenticated-orcid":false,"given":"Gregory - M.","family":"Findlay","sequence":"additional","affiliation":[]}],"member":"246","reference":[{"key":"2024040415500652000_2024.04.01.587366v1.1","doi-asserted-by":"publisher","DOI":"10.1038\/gim.2015.30"},{"key":"2024040415500652000_2024.04.01.587366v1.2","doi-asserted-by":"crossref","first-page":"116","DOI":"10.1016\/j.cels.2017.11.003","article-title":"Quantitative - Missense Variant Effect Prediction Using Large-Scale Mutagenesis Data","volume":"6","year":"2018","journal-title":"Cell - Syst"},{"key":"2024040415500652000_2024.04.01.587366v1.3","doi-asserted-by":"publisher","DOI":"10.1126\/science.abi8207"},{"key":"2024040415500652000_2024.04.01.587366v1.4","doi-asserted-by":"publisher","DOI":"10.1016\/J.CELL.2018.12.015"},{"key":"2024040415500652000_2024.04.01.587366v1.5","doi-asserted-by":"crossref","first-page":"eabn8153","DOI":"10.1126\/science.abn8197","article-title":"The - landscape of tolerated genetic variation in humans and primates","volume":"380","year":"2023","journal-title":"Science"},{"key":"2024040415500652000_2024.04.01.587366v1.6","doi-asserted-by":"crossref","first-page":"eadg7492","DOI":"10.1126\/science.adg7492","article-title":"Accurate - proteome-wide missense variant effect prediction with AlphaMissense","volume":"381","year":"2023","journal-title":"Science"},{"key":"2024040415500652000_2024.04.01.587366v1.7","doi-asserted-by":"publisher","DOI":"10.1093\/nar\/gkv1222"},{"key":"2024040415500652000_2024.04.01.587366v1.8","doi-asserted-by":"crossref","first-page":"1381","DOI":"10.1038\/s41436-021-01172-3","article-title":"ACMG + '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,8,7]],"date-time":"2025-08-07T16:10:01Z","timestamp":1754583001165,"version":"3.41.3"},"reference-count":60,"publisher":"Elsevier + BV","issue":"4","license":[{"start":{"date-parts":[[2025,4,1]],"date-time":"2025-04-01T00:00:00Z","timestamp":1743465600000},"content-version":"tdm","delay-in-days":0,"URL":"https:\/\/www.elsevier.com\/tdm\/userlicense\/1.0\/"},{"start":{"date-parts":[[2025,4,1]],"date-time":"2025-04-01T00:00:00Z","timestamp":1743465600000},"content-version":"tdm","delay-in-days":0,"URL":"https:\/\/www.elsevier.com\/legal\/tdmrep-license"},{"start":{"date-parts":[[2025,2,20]],"date-time":"2025-02-20T00:00:00Z","timestamp":1740009600000},"content-version":"vor","delay-in-days":0,"URL":"http:\/\/creativecommons.org\/licenses\/by\/4.0\/"}],"funder":[{"DOI":"10.13039\/501100000289","name":"Cancer + Research UK","doi-asserted-by":"publisher","award":["CC2190"],"id":[{"id":"10.13039\/501100000289","id-type":"DOI","asserted-by":"publisher"}]},{"DOI":"10.13039\/100010438","name":"The + Francis Crick Institute","doi-asserted-by":"publisher","id":[{"id":"10.13039\/100010438","id-type":"DOI","asserted-by":"publisher"}]},{"DOI":"10.13039\/100010269","name":"Wellcome + Trust","doi-asserted-by":"publisher","id":[{"id":"10.13039\/100010269","id-type":"DOI","asserted-by":"publisher"}]},{"DOI":"10.13039\/501100000265","name":"Medical + Research Council","doi-asserted-by":"publisher","id":[{"id":"10.13039\/501100000265","id-type":"DOI","asserted-by":"publisher"}]}],"content-domain":{"domain":["cell.com","elsevier.com","sciencedirect.com"],"crossmark-restriction":true},"short-container-title":["Cell + Genomics"],"published-print":{"date-parts":[[2025,4]]},"DOI":"10.1016\/j.xgen.2025.100814","type":"journal-article","created":{"date-parts":[[2025,3,22]],"date-time":"2025-03-22T09:21:41Z","timestamp":1742635301000},"page":"100814","update-policy":"https:\/\/doi.org\/10.1016\/elsevier_cm_policy","source":"Crossref","is-referenced-by-count":2,"title":["High-throughput + screening of human genetic variants by pooled prime editing"],"prefix":"10.1016","volume":"5","author":[{"given":"Michael","family":"Herger","sequence":"first","affiliation":[]},{"given":"Christina + M.","family":"Kajba","sequence":"additional","affiliation":[]},{"given":"Megan","family":"Buckley","sequence":"additional","affiliation":[]},{"given":"Ana","family":"Cunha","sequence":"additional","affiliation":[]},{"given":"Molly","family":"Strom","sequence":"additional","affiliation":[]},{"ORCID":"https:\/\/orcid.org\/0000-0002-7767-8608","authenticated-orcid":false,"given":"Gregory + M.","family":"Findlay","sequence":"additional","affiliation":[]}],"member":"78","reference":[{"key":"10.1016\/j.xgen.2025.100814_bib1","doi-asserted-by":"crossref","first-page":"405","DOI":"10.1038\/gim.2015.30","article-title":"Standards + and guidelines for the interpretation of sequence variants: a joint consensus + recommendation of the American College of Medical Genetics and Genomics and + the Association for Molecular Pathology","volume":"17","author":"Richards","year":"2015","journal-title":"Genet. + Med."},{"key":"10.1016\/j.xgen.2025.100814_bib2","doi-asserted-by":"crossref","first-page":"116","DOI":"10.1016\/j.cels.2017.11.003","article-title":"Quantitative + Missense Variant Effect Prediction Using Large-Scale Mutagenesis Data","volume":"6","author":"Gray","year":"2018","journal-title":"Cell + Syst."},{"key":"10.1016\/j.xgen.2025.100814_bib3","doi-asserted-by":"crossref","first-page":"1464","DOI":"10.1126\/science.abi8207","article-title":"From + variant to function in human disease genetics","volume":"373","author":"Lappalainen","year":"2021","journal-title":"Science"},{"key":"10.1016\/j.xgen.2025.100814_bib4","doi-asserted-by":"crossref","first-page":"535","DOI":"10.1016\/j.cell.2018.12.015","article-title":"Predicting + Splicing from Primary Sequence with Deep Learning","volume":"176","author":"Jaganathan","year":"2019","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib5","doi-asserted-by":"crossref","DOI":"10.1126\/science.abn8197","article-title":"The + landscape of tolerated genetic variation in humans and primates","volume":"380","author":"Gao","year":"2023","journal-title":"Science"},{"key":"10.1016\/j.xgen.2025.100814_bib6","doi-asserted-by":"crossref","DOI":"10.1126\/science.adg7492","article-title":"Accurate + proteome-wide missense variant effect prediction with AlphaMissense","volume":"381","author":"Cheng","year":"2023","journal-title":"Science"},{"key":"10.1016\/j.xgen.2025.100814_bib7","doi-asserted-by":"crossref","first-page":"D862","DOI":"10.1093\/nar\/gkv1222","article-title":"ClinVar: + public archive of interpretations of clinically relevant variants","volume":"44","author":"Landrum","year":"2016","journal-title":"Nucleic + Acids Res."},{"key":"10.1016\/j.xgen.2025.100814_bib8","doi-asserted-by":"crossref","first-page":"1381","DOI":"10.1038\/s41436-021-01172-3","article-title":"ACMG SF v3.0 list for reporting of secondary findings in clinical exome and genome sequencing: a policy statement of the American College of Medical Genetics - and Genomics (ACMG)","volume":"23","year":"2021","journal-title":"Genet. Med"},{"key":"2024040415500652000_2024.04.01.587366v1.9","doi-asserted-by":"publisher","DOI":"10.1038\/nprot.2016.135"},{"key":"2024040415500652000_2024.04.01.587366v1.10","doi-asserted-by":"publisher","DOI":"10.1093\/hmg\/ddab219"},{"key":"2024040415500652000_2024.04.01.587366v1.11","doi-asserted-by":"publisher","DOI":"10.1038\/s41467-019-11526-w"},{"key":"2024040415500652000_2024.04.01.587366v1.12","doi-asserted-by":"publisher","DOI":"10.1186\/s13059-022-02839-z"},{"key":"2024040415500652000_2024.04.01.587366v1.13","doi-asserted-by":"crossref","first-page":"2248","DOI":"10.1016\/j.ajhg.2021.11.001","article-title":"Closing + and Genomics (ACMG)","volume":"23","author":"Miller","year":"2021","journal-title":"Genet. + Med."},{"key":"10.1016\/j.xgen.2025.100814_bib9","doi-asserted-by":"crossref","first-page":"1782","DOI":"10.1038\/nprot.2016.135","article-title":"The + power of multiplexed functional analysis of genetic variants","volume":"11","author":"Gasperini","year":"2016","journal-title":"Nat. + Protoc."},{"key":"10.1016\/j.xgen.2025.100814_bib10","doi-asserted-by":"crossref","first-page":"R187","DOI":"10.1093\/hmg\/ddab219","article-title":"Linking + genome variants to disease: scalable approaches to test the functional impact + of human mutations","volume":"30","author":"Findlay","year":"2021","journal-title":"Hum. + Mol. Genet."},{"key":"10.1016\/j.xgen.2025.100814_bib11","doi-asserted-by":"crossref","first-page":"3583","DOI":"10.1038\/s41467-019-11526-w","article-title":"Saturation + mutagenesis of twenty disease-associated regulatory elements at single base-pair + resolution","volume":"10","author":"Kircher","year":"2019","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib12","doi-asserted-by":"crossref","first-page":"266","DOI":"10.1186\/s13059-022-02839-z","article-title":"Saturation-scale + functional evidence supports clinical variant interpretation in Lynch syndrome","volume":"23","author":"Scott","year":"2022","journal-title":"Genome + Biol."},{"key":"10.1016\/j.xgen.2025.100814_bib13","doi-asserted-by":"crossref","first-page":"2248","DOI":"10.1016\/j.ajhg.2021.11.001","article-title":"Closing the gap: Systematic integration of multiplexed functional data resolves variants - of uncertain significance in BRCA1, TP53, and PTEN","volume":"108","year":"2021","journal-title":"Am. - J. Hum. Genet."},{"key":"2024040415500652000_2024.04.01.587366v1.14","doi-asserted-by":"publisher","DOI":"10.1038\/s41586-018-0461-z"},{"key":"2024040415500652000_2024.04.01.587366v1.15","doi-asserted-by":"publisher","DOI":"10.1016\/j.ajhg.2020.10.015"},{"key":"2024040415500652000_2024.04.01.587366v1.16","doi-asserted-by":"crossref","first-page":"7702","DOI":"10.1038\/s41467-023-43041-4","article-title":"Saturation - genome editing of DDX3X clarifies pathogenicity of germline and somatic variation","volume":"14","year":"2023","journal-title":"Nat. - Commun"},{"key":"2024040415500652000_2024.04.01.587366v1.17","doi-asserted-by":"publisher","DOI":"10.1038\/nature13695"},{"key":"2024040415500652000_2024.04.01.587366v1.18","doi-asserted-by":"publisher","DOI":"10.1016\/j.cell.2021.01.012"},{"key":"2024040415500652000_2024.04.01.587366v1.19","doi-asserted-by":"publisher","DOI":"10.1016\/j.cell.2021.01.041"},{"key":"2024040415500652000_2024.04.01.587366v1.20","doi-asserted-by":"publisher","DOI":"10.1038\/s41586-019-1711-4"},{"key":"2024040415500652000_2024.04.01.587366v1.21","doi-asserted-by":"crossref","first-page":"288","DOI":"10.1016\/j.ccell.2022.12.009","article-title":"Base - editing screens map mutations affecting interferon-\u03b3 signaling in cancer","volume":"41","year":"2023","journal-title":"Cancer - Cell"},{"key":"2024040415500652000_2024.04.01.587366v1.22","doi-asserted-by":"publisher","DOI":"10.1016\/j.cell.2021.09.018"},{"key":"2024040415500652000_2024.04.01.587366v1.23","doi-asserted-by":"crossref","first-page":"402","DOI":"10.1038\/s41587-021-01039-7","article-title":"Engineered - pegRNAs improve prime editing efficiency","volume":"40","year":"2022","journal-title":"Nat. - Biotechnol"},{"key":"2024040415500652000_2024.04.01.587366v1.24","doi-asserted-by":"publisher","DOI":"10.1038\/s41587-021-01201-1"},{"key":"2024040415500652000_2024.04.01.587366v1.25","doi-asserted-by":"publisher","DOI":"10.1016\/j.molcel.2023.11.021"},{"key":"2024040415500652000_2024.04.01.587366v1.26","doi-asserted-by":"publisher","DOI":"10.1038\/nature10348"},{"key":"2024040415500652000_2024.04.01.587366v1.27","doi-asserted-by":"publisher","DOI":"10.1126\/science.1247005"},{"key":"2024040415500652000_2024.04.01.587366v1.28","doi-asserted-by":"crossref","first-page":"1151","DOI":"10.1038\/s41587-022-01613-7","article-title":"Predicting - prime editing efficiency and product purity by deep learning","volume":"41","year":"2023","journal-title":"Nat. - Biotechnol"},{"key":"2024040415500652000_2024.04.01.587366v1.29","doi-asserted-by":"crossref","first-page":"2256","DOI":"10.1016\/j.cell.2023.03.034","article-title":"Prediction - of efficiencies for diverse prime editing systems in multiple cell types","volume":"186","year":"2023","journal-title":"Cell"},{"key":"2024040415500652000_2024.04.01.587366v1.30","doi-asserted-by":"publisher","DOI":"10.1101\/2022.10.26.513842"},{"key":"2024040415500652000_2024.04.01.587366v1.31","doi-asserted-by":"publisher","DOI":"10.1038\/s41587-021-01172-3"},{"key":"2024040415500652000_2024.04.01.587366v1.32","doi-asserted-by":"publisher","DOI":"10.1038\/s41587-020-0677-y"},{"key":"2024040415500652000_2024.04.01.587366v1.33","doi-asserted-by":"publisher","DOI":"10.1016\/j.tibtech.2018.07.017"},{"key":"2024040415500652000_2024.04.01.587366v1.34","doi-asserted-by":"publisher","DOI":"10.1038\/s41467-020-20810-z"},{"key":"2024040415500652000_2024.04.01.587366v1.35","doi-asserted-by":"crossref","first-page":"5909","DOI":"10.1038\/s41467-022-33669-z","article-title":"Marker-free - co-selection for successive rounds of prime editing in human cells","volume":"13","year":"2022","journal-title":"Nat. - Commun"},{"key":"2024040415500652000_2024.04.01.587366v1.36","doi-asserted-by":"publisher","DOI":"10.1016\/j.cell.2013.12.001"},{"key":"2024040415500652000_2024.04.01.587366v1.37","doi-asserted-by":"publisher","DOI":"10.1038\/s41467-018-02974-x"},{"key":"2024040415500652000_2024.04.01.587366v1.38","doi-asserted-by":"publisher","DOI":"10.1038\/s41467-021-27838-9"},{"key":"2024040415500652000_2024.04.01.587366v1.39","doi-asserted-by":"publisher","DOI":"10.1126\/science.1225829"},{"key":"2024040415500652000_2024.04.01.587366v1.40","doi-asserted-by":"publisher","DOI":"10.3390\/cancers14153645"},{"key":"2024040415500652000_2024.04.01.587366v1.41","doi-asserted-by":"publisher","DOI":"10.1126\/science.aac7557"},{"key":"2024040415500652000_2024.04.01.587366v1.42","doi-asserted-by":"publisher","DOI":"10.1038\/s41467-019-10849-y"},{"key":"2024040415500652000_2024.04.01.587366v1.43","doi-asserted-by":"publisher","DOI":"10.1038\/nbt.3437"},{"key":"2024040415500652000_2024.04.01.587366v1.44","doi-asserted-by":"publisher","DOI":"10.1136\/jmg.2007.056499"},{"key":"2024040415500652000_2024.04.01.587366v1.45","doi-asserted-by":"publisher","DOI":"10.1016\/j.ajhg.2020.12.003"},{"key":"2024040415500652000_2024.04.01.587366v1.46","doi-asserted-by":"publisher","DOI":"10.1038\/s41587-019-0032-3"},{"key":"2024040415500652000_2024.04.01.587366v1.47","doi-asserted-by":"publisher","DOI":"10.1038\/nmeth.3047"},{"key":"2024040415500652000_2024.04.01.587366v1.48","doi-asserted-by":"crossref","first-page":"96","DOI":"10.1089\/hgtb.2017.198","article-title":"Determination - of Lentiviral Infectious Titer by a Novel Droplet Digital PCR Method","volume":"29","year":"2018","journal-title":"Hum. - Gene Ther. Methods"},{"key":"2024040415500652000_2024.04.01.587366v1.49","doi-asserted-by":"publisher","DOI":"10.1186\/s13059-020-02091-3"},{"key":"2024040415500652000_2024.04.01.587366v1.50","doi-asserted-by":"publisher","DOI":"10.1186\/s13073-021-00835-9"}],"container-title":[],"original-title":[],"link":[{"URL":"https:\/\/syndication.highwire.org\/content\/doi\/10.1101\/2024.04.01.587366","content-type":"unspecified","content-version":"vor","intended-application":"similarity-checking"}],"deposited":{"date-parts":[[2024,4,4]],"date-time":"2024-04-04T22:50:19Z","timestamp":1712271019000},"score":1,"resource":{"primary":{"URL":"http:\/\/biorxiv.org\/lookup\/doi\/10.1101\/2024.04.01.587366"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2024,4,1]]},"references-count":50,"URL":"http:\/\/dx.doi.org\/10.1101\/2024.04.01.587366","relation":{},"subject":[],"published":{"date-parts":[[2024,4,1]]},"subtype":"preprint"}}' + of uncertain significance in BRCA1, TP53, and PTEN","volume":"108","author":"Fayer","year":"2021","journal-title":"Am. + J. Hum. Genet."},{"key":"10.1016\/j.xgen.2025.100814_bib14","doi-asserted-by":"crossref","first-page":"217","DOI":"10.1038\/s41586-018-0461-z","article-title":"Accurate + classification of BRCA1 variants with saturation genome editing","volume":"562","author":"Findlay","year":"2018","journal-title":"Nature"},{"key":"10.1016\/j.xgen.2025.100814_bib15","doi-asserted-by":"crossref","first-page":"1029","DOI":"10.1016\/j.ajhg.2020.10.015","article-title":"Multiplexed + Functional Assessment of Genetic Variants in CARD11","volume":"107","author":"Meitlis","year":"2020","journal-title":"Am. + J. Hum. Genet."},{"key":"10.1016\/j.xgen.2025.100814_bib16","doi-asserted-by":"crossref","first-page":"7702","DOI":"10.1038\/s41467-023-43041-4","article-title":"Saturation + genome editing of DDX3X clarifies pathogenicity of germline and somatic variation","volume":"14","author":"Radford","year":"2023","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib17","doi-asserted-by":"crossref","first-page":"120","DOI":"10.1038\/nature13695","article-title":"Saturation + editing of genomic regions by multiplex homology-directed repair","volume":"513","author":"Findlay","year":"2014","journal-title":"Nature"},{"key":"10.1016\/j.xgen.2025.100814_bib18","doi-asserted-by":"crossref","first-page":"1064","DOI":"10.1016\/j.cell.2021.01.012","article-title":"Massively + parallel assessment of human variants with base editor screens","volume":"184","author":"Hanna","year":"2021","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib19","doi-asserted-by":"crossref","first-page":"1081","DOI":"10.1016\/j.cell.2021.01.041","article-title":"Functional + interrogation of DNA damage response variants with base editing screens","volume":"184","author":"Cuella-Martin","year":"2021","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib20","doi-asserted-by":"crossref","first-page":"149","DOI":"10.1038\/s41586-019-1711-4","article-title":"Search-and-replace + genome editing without double-strand breaks or donor DNA","volume":"576","author":"Anzalone","year":"2019","journal-title":"Nature"},{"key":"10.1016\/j.xgen.2025.100814_bib21","doi-asserted-by":"crossref","first-page":"288","DOI":"10.1016\/j.ccell.2022.12.009","article-title":"Base + editing screens map mutations affecting interferon-\u03b3 signaling in cancer","volume":"41","author":"Coelho","year":"2023","journal-title":"Cancer + Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib22","doi-asserted-by":"crossref","first-page":"5635","DOI":"10.1016\/j.cell.2021.09.018","article-title":"Enhanced + prime editing systems by manipulating cellular determinants of editing outcomes","volume":"184","author":"Chen","year":"2021","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib23","doi-asserted-by":"crossref","first-page":"3983","DOI":"10.1016\/j.cell.2023.07.039","article-title":"Phage-assisted + evolution and protein engineering yield compact, efficient prime editors","volume":"186","author":"Doman","year":"2023","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib24","doi-asserted-by":"crossref","first-page":"639","DOI":"10.1038\/s41586-024-07259-6","article-title":"Improving + prime editing with an endogenous small RNA-binding protein","volume":"628","author":"Yan","year":"2024","journal-title":"Nature"},{"key":"10.1016\/j.xgen.2025.100814_bib25","doi-asserted-by":"crossref","first-page":"402","DOI":"10.1038\/s41587-021-01039-7","article-title":"Engineered + pegRNAs improve prime editing efficiency","volume":"40","author":"Nelson","year":"2022","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib26","doi-asserted-by":"crossref","first-page":"885","DOI":"10.1038\/s41587-021-01201-1","article-title":"Saturation + variant interpretation using CRISPR prime editing","volume":"40","author":"Erwood","year":"2022","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib27","doi-asserted-by":"crossref","first-page":"4633","DOI":"10.1016\/j.molcel.2023.11.021","article-title":"High-throughput + PRIME-editing screens identify functional DNA variants in the human genome","volume":"83","author":"Ren","year":"2023","journal-title":"Mol. + Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib28","first-page":"1","article-title":"High-throughput + evaluation of genetic variants with prime editing sensor libraries","author":"Gould","year":"2024","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib29","doi-asserted-by":"crossref","first-page":"92","DOI":"10.1038\/s41592-024-02502-4","article-title":"A + benchmarked, high-efficiency prime editing platform for multiplexed dropout + screening","volume":"22","author":"Cirincione","year":"2025","journal-title":"Nat. + Methods"},{"key":"10.1016\/j.xgen.2025.100814_bib30","first-page":"1","article-title":"Saturation + profiling of drug-resistant genetic variants using prime editing","author":"Kim","year":"2024","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib31","article-title":"A + multiplex, prime editing framework for identifying drug resistance variants + at scale","author":"Chardon","year":"2023","journal-title":"bioRxiv"},{"key":"10.1016\/j.xgen.2025.100814_bib32","article-title":"Rewriting + regulatory DNA to dissect and reprogram gene expression","author":"Martyn","year":"2023","journal-title":"bioRxiv"},{"key":"10.1016\/j.xgen.2025.100814_bib33","article-title":"Prime + editor-based high-throughput screening reveals functional synonymous mutations + in the human genome","author":"Niu","year":"2024","journal-title":"bioRxiv"},{"key":"10.1016\/j.xgen.2025.100814_bib34","doi-asserted-by":"crossref","first-page":"340","DOI":"10.1038\/nature10348","article-title":"Ebola + virus entry requires the cholesterol transporter Niemann-Pick C1","volume":"477","author":"Carette","year":"2011","journal-title":"Nature"},{"key":"10.1016\/j.xgen.2025.100814_bib35","doi-asserted-by":"crossref","first-page":"84","DOI":"10.1126\/science.1247005","article-title":"Genome-scale + CRISPR-Cas9 knockout screening in human cells","volume":"343","author":"Shalem","year":"2014","journal-title":"Science"},{"key":"10.1016\/j.xgen.2025.100814_bib36","doi-asserted-by":"crossref","first-page":"1151","DOI":"10.1038\/s41587-022-01613-7","article-title":"Predicting + prime editing efficiency and product purity by deep learning","volume":"41","author":"Mathis","year":"2023","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib37","doi-asserted-by":"crossref","first-page":"2256","DOI":"10.1016\/j.cell.2023.03.034","article-title":"Prediction + of efficiencies for diverse prime editing systems in multiple cell types","volume":"186","author":"Yu","year":"2023","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib38","doi-asserted-by":"crossref","first-page":"862","DOI":"10.1038\/s41587-021-01172-3","article-title":"Base + editing sensor libraries for high-throughput engineering and functional analysis + of cancer-associated single nucleotide variants","volume":"40","author":"S\u00e1nchez-Rivera","year":"2022","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib39","doi-asserted-by":"crossref","first-page":"198","DOI":"10.1038\/s41587-020-0677-y","article-title":"Predicting + the efficiency of prime editing guide RNAs in human cells","volume":"39","author":"Kim","year":"2021","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib40","first-page":"1","article-title":"Machine + learning prediction of prime editing efficiency across diverse chromatin contexts","author":"Mathis","year":"2024","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib41","doi-asserted-by":"crossref","first-page":"56","DOI":"10.1016\/j.tibtech.2018.07.017","article-title":"Strategies + for the Enrichment and Selection of Genetically Modified Cells","volume":"37","author":"Ren","year":"2019","journal-title":"Trends + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib42","doi-asserted-by":"crossref","first-page":"497","DOI":"10.1038\/s41467-020-20810-z","article-title":"Universal + toxin-based selection for precise genome engineering in human cells","volume":"12","author":"Li","year":"2021","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib43","doi-asserted-by":"crossref","first-page":"5909","DOI":"10.1038\/s41467-022-33669-z","article-title":"Marker-free + co-selection for successive rounds of prime editing in human cells","volume":"13","author":"Levesque","year":"2022","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib44","doi-asserted-by":"crossref","first-page":"1479","DOI":"10.1016\/j.cell.2013.12.001","article-title":"Dynamic + imaging of genomic loci in living human cells by an optimized CRISPR\/Cas + system","volume":"155","author":"Chen","year":"2013","journal-title":"Cell"},{"key":"10.1016\/j.xgen.2025.100814_bib45","doi-asserted-by":"crossref","first-page":"5416","DOI":"10.1038\/s41467-018-07901-8","article-title":"Optimized + libraries for CRISPR-Cas9 genetic screens with multiple modalities","volume":"9","author":"Sanson","year":"2018","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib46","doi-asserted-by":"crossref","first-page":"489","DOI":"10.1038\/s41467-022-28137-7","article-title":"Improved + gRNA secondary structures allow editing of target sites resistant to CRISPR-Cas9 + cleavage","volume":"13","author":"Riesenberg","year":"2022","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib47","doi-asserted-by":"crossref","first-page":"816","DOI":"10.1126\/science.1225829","article-title":"A + Programmable Dual-RNA\u2013Guided DNA Endonuclease in Adaptive Bacterial Immunity","volume":"337","author":"Jinek","year":"2012","journal-title":"Science"},{"key":"10.1016\/j.xgen.2025.100814_bib48","doi-asserted-by":"crossref","DOI":"10.3390\/cancers14153645","article-title":"SMARCB1-Deficient + Cancers: Novel Molecular Insights and Therapeutic Vulnerabilities","volume":"14","author":"Cooper","year":"2022","journal-title":"Cancers"},{"key":"10.1016\/j.xgen.2025.100814_bib49","doi-asserted-by":"crossref","first-page":"1092","DOI":"10.1126\/science.aac7557","article-title":"Gene + essentiality and synthetic lethality in haploid human cells","volume":"350","author":"Blomen","year":"2015","journal-title":"Science"},{"key":"10.1016\/j.xgen.2025.100814_bib50","doi-asserted-by":"crossref","first-page":"2966","DOI":"10.1038\/s41467-019-10849-y","article-title":"Mutations + in SMARCB1 and in other Coffin-Siris syndrome genes lead to various brain + midline defects","volume":"10","author":"Filatova","year":"2019","journal-title":"Nat. + Commun."},{"key":"10.1016\/j.xgen.2025.100814_bib51","doi-asserted-by":"crossref","first-page":"184","DOI":"10.1038\/nbt.3437","article-title":"Optimized + sgRNA design to maximize activity and minimize off-target effects of CRISPR-Cas9","volume":"34","author":"Doench","year":"2016","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib52","doi-asserted-by":"crossref","first-page":"332","DOI":"10.1136\/jmg.2007.056499","article-title":"Molecular + characterisation of SMARCB1 and NF2 in familial and sporadic schwannomatosis","volume":"45","author":"Hadfield","year":"2008","journal-title":"J.\u00a0Med. + Genet."},{"key":"10.1016\/j.xgen.2025.100814_bib53","doi-asserted-by":"crossref","first-page":"373","DOI":"10.1016\/j.cancergen.2014.04.001","article-title":"SMARCB1 + mutations in schwannomatosis and genotype correlations with rhabdoid tumors","volume":"207","author":"Smith","year":"2014","journal-title":"Cancer + Genet."},{"key":"10.1016\/j.xgen.2025.100814_bib54","doi-asserted-by":"crossref","first-page":"163","DOI":"10.1016\/j.ajhg.2020.12.003","article-title":"Massively + parallel functional testing of MSH2 missense variants conferring Lynch syndrome + risk","volume":"108","author":"Jia","year":"2021","journal-title":"Am. J. + Hum. Genet."},{"key":"10.1016\/j.xgen.2025.100814_bib55","doi-asserted-by":"crossref","first-page":"4","DOI":"10.1038\/s41698-020-0109-y","article-title":"Splicing + profile by capture RNA-seq identifies pathogenic germline variants in tumor + suppressor genes","volume":"4","author":"Landrith","year":"2020","journal-title":"npj + Precis. Oncol."},{"key":"10.1016\/j.xgen.2025.100814_bib56","doi-asserted-by":"crossref","first-page":"224","DOI":"10.1038\/s41587-019-0032-3","article-title":"CRISPResso2 + provides accurate and rapid genome editing sequence analysis","volume":"37","author":"Clement","year":"2019","journal-title":"Nat. + Biotechnol."},{"key":"10.1016\/j.xgen.2025.100814_bib59","doi-asserted-by":"crossref","first-page":"207","DOI":"10.1186\/s13059-020-02091-3","article-title":"DiMSum: + an error model and pipeline for analyzing deep mutational scanning data and + diagnosing common experimental pathologies","volume":"21","author":"Faure","year":"2020","journal-title":"Genome + Biol."},{"key":"10.1016\/j.xgen.2025.100814_bib57","doi-asserted-by":"crossref","first-page":"783","DOI":"10.1038\/nmeth.3047","article-title":"Improved + vectors and genome-wide libraries for CRISPR screening","volume":"11","author":"Sanjana","year":"2014","journal-title":"Nat. + Methods"},{"key":"10.1016\/j.xgen.2025.100814_bib58","first-page":"96","article-title":"Determination + of Lentiviral Infectious Titer by a Novel Droplet Digital PCR Method. Hum. + Gene Ther","volume":"29","author":"Wang","year":"2018","journal-title":"Methods"},{"key":"10.1016\/j.xgen.2025.100814_bib60","doi-asserted-by":"crossref","first-page":"31","DOI":"10.1186\/s13073-021-00835-9","article-title":"CADD-Splice-improving + genome-wide variant effect prediction using deep learning-derived splice scores","volume":"13","author":"Rentzsch","year":"2021","journal-title":"Genome + Med."}],"container-title":["Cell Genomics"],"original-title":[],"language":"en","link":[{"URL":"https:\/\/api.elsevier.com\/content\/article\/PII:S2666979X25000709?httpAccept=text\/xml","content-type":"text\/xml","content-version":"vor","intended-application":"text-mining"},{"URL":"https:\/\/api.elsevier.com\/content\/article\/PII:S2666979X25000709?httpAccept=text\/plain","content-type":"text\/plain","content-version":"vor","intended-application":"text-mining"}],"deposited":{"date-parts":[[2025,8,7]],"date-time":"2025-08-07T15:33:07Z","timestamp":1754580787000},"score":1,"resource":{"primary":{"URL":"https:\/\/linkinghub.elsevier.com\/retrieve\/pii\/S2666979X25000709"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2025,4]]},"references-count":60,"journal-issue":{"issue":"4","published-print":{"date-parts":[[2025,4]]}},"alternative-id":["S2666979X25000709"],"URL":"https:\/\/doi.org\/10.1016\/j.xgen.2025.100814","relation":{},"ISSN":["2666-979X"],"issn-type":[{"type":"print","value":"2666-979X"}],"subject":[],"published":{"date-parts":[[2025,4]]},"assertion":[{"value":"Elsevier","name":"publisher","label":"This + article is maintained by"},{"value":"High-throughput screening of human genetic + variants by pooled prime editing","name":"articletitle","label":"Article Title"},{"value":"Cell + Genomics","name":"journaltitle","label":"Journal Title"},{"value":"https:\/\/doi.org\/10.1016\/j.xgen.2025.100814","name":"articlelink","label":"CrossRef + DOI link to publisher maintained version"},{"value":"article","name":"content_type","label":"Content + Type"},{"value":"\u00a9 2025 The Author(s). Published by Elsevier Inc.","name":"copyright","label":"Copyright"}],"article-number":"100814"}}' headers: Access-Control-Allow-Headers: - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, @@ -245,15 +396,15 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Content-Encoding: - gzip Content-Length: - - "3221" + - "5787" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:27 GMT + - Mon, 11 Aug 2025 17:20:14 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -266,10 +417,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" status: code: 200 message: OK @@ -277,88 +424,16 @@ interactions: body: null headers: {} method: GET - uri: https://api.unpaywall.org/v2/10.1101/2024.04.01.587366?email=example@papercrow.ai + uri: https://api.crossref.org/works/10.1016%2Fj.xgen.2025.100814/transform/application/x-bibtex response: body: string: - '{"doi": "10.1101/2024.04.01.587366", "doi_url": "https://doi.org/10.1101/2024.04.01.587366", - "title": "High-throughput screening of human genetic variants by pooled prime - editing", "genre": "posted-content", "is_paratext": false, "published_date": - "2024-04-01", "year": 2024, "journal_name": null, "journal_issns": null, "journal_issn_l": - null, "journal_is_oa": false, "journal_is_in_doaj": false, "publisher": "Cold - Spring Harbor Laboratory", "is_oa": true, "oa_status": "green", "has_repository_copy": - true, "best_oa_location": {"updated": "2024-04-03T02:38:26.107690", "url": - "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "url_for_pdf": "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "url_for_landing_page": "https://doi.org/10.1101/2024.04.01.587366", "evidence": - "oa repository (via page says license)", "license": "cc-by", "version": "submittedVersion", - "host_type": "repository", "is_best": true, "pmh_id": null, "endpoint_id": - null, "repository_institution": null, "oa_date": "2024-04-01"}, "first_oa_location": - {"updated": "2024-04-03T02:38:26.107690", "url": "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "url_for_pdf": "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "url_for_landing_page": "https://doi.org/10.1101/2024.04.01.587366", "evidence": - "oa repository (via page says license)", "license": "cc-by", "version": "submittedVersion", - "host_type": "repository", "is_best": true, "pmh_id": null, "endpoint_id": - null, "repository_institution": null, "oa_date": "2024-04-01"}, "oa_locations": - [{"updated": "2024-04-03T02:38:26.107690", "url": "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "url_for_pdf": "https://www.biorxiv.org/content/biorxiv/early/2024/04/01/2024.04.01.587366.full.pdf", - "url_for_landing_page": "https://doi.org/10.1101/2024.04.01.587366", "evidence": - "oa repository (via page says license)", "license": "cc-by", "version": "submittedVersion", - "host_type": "repository", "is_best": true, "pmh_id": null, "endpoint_id": - null, "repository_institution": null, "oa_date": "2024-04-01"}], "oa_locations_embargoed": - [], "updated": "2024-04-03T02:38:52.695109", "data_standard": 2, "z_authors": - [{"given": "Michael", "family": "Herger", "sequence": "first"}, {"given": - "Christina M.", "family": "Kajba", "sequence": "additional"}, {"given": "Megan", - "family": "Buckley", "sequence": "additional"}, {"given": "Ana", "family": - "Cunha", "sequence": "additional"}, {"given": "Molly", "family": "Strom", - "sequence": "additional"}, {"ORCID": "http://orcid.org/0000-0002-7767-8608", - "given": "Gregory M.", "family": "Findlay", "sequence": "additional", "authenticated-orcid": - false}]}' - headers: - Access-Control-Allow-Headers: - - origin, content-type, accept, x-requested-with - Access-Control-Allow-Methods: - - POST, GET, OPTIONS, PUT, DELETE, PATCH - Access-Control-Allow-Origin: - - "*" - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Length: - - "736" - Content-Type: - - application/json - Date: - - Mon, 02 Dec 2024 19:36:27 GMT - Nel: - - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' - Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1733168187&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&s=Pg5In04%2BFl1685SdKPTmADxGRdq4WLJvgzxuv39xX8E%3D"}]}' - Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1733168187&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&s=Pg5In04%2BFl1685SdKPTmADxGRdq4WLJvgzxuv39xX8E%3D - Server: - - gunicorn - Vary: - - Accept-Encoding - Via: - - 1.1 vegur - status: - code: 200 - message: OK - - request: - body: null - headers: {} - method: GET - uri: https://api.crossref.org/works/10.1101%2F2024.04.01.587366/transform/application/x-bibtex - response: - body: - string: - " @article{Herger_2024, title={High-throughput screening of human genetic - variants by pooled prime editing}, url={http://dx.doi.org/10.1101/2024.04.01.587366}, - DOI={10.1101/2024.04.01.587366}, publisher={Cold Spring Harbor Laboratory}, - author={Herger, Michael and Kajba, Christina M. and Buckley, Megan and Cunha, - Ana and Strom, Molly and Findlay, Gregory M.}, year={2024}, month=apr } + " @article{Herger_2025, title={High-throughput screening of human genetic + variants by pooled prime editing}, volume={5}, ISSN={2666-979X}, url={http://dx.doi.org/10.1016/j.xgen.2025.100814}, + DOI={10.1016/j.xgen.2025.100814}, number={4}, journal={Cell Genomics}, publisher={Elsevier + BV}, author={Herger, Michael and Kajba, Christina M. and Buckley, Megan and + Cunha, Ana and Strom, Molly and Findlay, Gregory M.}, year={2025}, month=apr, + pages={100814} } " headers: @@ -370,9 +445,9 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Date: - - Mon, 02 Dec 2024 19:36:28 GMT + - Mon, 11 Aug 2025 17:20:15 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -385,10 +460,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" status: code: 200 message: OK diff --git a/tests/cassettes/test_doi_search[paper_attributes1].yaml b/tests/cassettes/test_doi_search[paper_attributes1].yaml index d634bd934..7826b06f2 100644 --- a/tests/cassettes/test_doi_search[paper_attributes1].yaml +++ b/tests/cassettes/test_doi_search[paper_attributes1].yaml @@ -14,18 +14,18 @@ interactions: and histidine residue in electron transfer for iodide oxidation by horseradish peroxidase", "venue": "Molecular and Cellular Biochemistry", "year": 2001, "citationCount": 7, "influentialCitationCount": 0, "isOpenAccess": false, - "openAccessPdf": null, "publicationTypes": ["JournalArticle", "Study"], "publicationDate": - "2001-02-01", "journal": {"name": "Molecular and Cellular Biochemistry", "pages": - "1-11", "volume": "218"}, "citationStyles": {"bibtex": "@Article{Adak2001AnER,\n - author = {S. Adak and D. Bandyopadhyay and U. Bandyopadhyay and R. Banerjee},\n - booktitle = {Molecular and Cellular Biochemistry},\n journal = {Molecular - and Cellular Biochemistry},\n pages = {1-11},\n title = {An essential role - of active site arginine residue in iodide binding and histidine residue in - electron transfer for iodide oxidation by horseradish peroxidase},\n volume - = {218},\n year = {2001}\n}\n"}, "authors": [{"authorId": "1940081", "name": - "S. Adak"}, {"authorId": "1701389", "name": "D. Bandyopadhyay"}, {"authorId": - "5343877", "name": "U. Bandyopadhyay"}, {"authorId": "32656528", "name": "R. - Banerjee"}]} + "openAccessPdf": {"url": "", "status": "CLOSED", "license": null}, "publicationTypes": + ["JournalArticle", "Study"], "publicationDate": "2001-02-01", "journal": {"name": + "Molecular and Cellular Biochemistry", "pages": "1-11", "volume": "218"}, + "citationStyles": {"bibtex": "@Article{Adak2001AnER,\n author = {S. Adak and + D. Bandyopadhyay and U. Bandyopadhyay and R. Banerjee},\n booktitle = {Molecular + and Cellular Biochemistry},\n journal = {Molecular and Cellular Biochemistry},\n + pages = {1-11},\n title = {An essential role of active site arginine residue + in iodide binding and histidine residue in electron transfer for iodide oxidation + by horseradish peroxidase},\n volume = {218},\n year = {2001}\n}\n"}, "authors": + [{"authorId": "1940081", "name": "S. Adak"}, {"authorId": "1701389", "name": + "D. Bandyopadhyay"}, {"authorId": "5343877", "name": "U. Bandyopadhyay"}, + {"authorId": "32656528", "name": "R. Banerjee"}]} ' headers: @@ -34,31 +34,31 @@ interactions: Connection: - keep-alive Content-Length: - - "1446" + - "1490" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:28 GMT + - Mon, 11 Aug 2025 17:19:27 GMT Via: - - 1.1 fe4ffdbe245129b7503870df74adcb46.cloudfront.net (CloudFront) + - 1.1 01dbe7e23991a177a7cdfba5803db41c.cloudfront.net (CloudFront) X-Amz-Cf-Id: - - OhnynmwOGmRMGIeORgcMem7RrBNgBKtVwoV5QLn60XvnqfhjMIAr1g== + - pAsyQ43-pw_g9hNshUEaW669Aaoer7Xr3rE7t-LjI7JUJPzvvOm83g== X-Amz-Cf-Pop: - - SFO53-P7 + - SFO53-C1 X-Cache: - Miss from cloudfront x-amz-apigw-id: - - CLbZfFGXvHcEQGw= + - PJrk_F14PHcELwQ= x-amzn-Remapped-Connection: - keep-alive x-amzn-Remapped-Content-Length: - - "1446" + - "1490" x-amzn-Remapped-Date: - - Mon, 02 Dec 2024 19:36:28 GMT + - Mon, 11 Aug 2025 17:19:27 GMT x-amzn-Remapped-Server: - gunicorn x-amzn-RequestId: - - 0e07ad61-bdfb-47eb-92e8-24f5193c0fdc + - cd94f62f-190c-4719-bbb6-9b1fc14aaf2b status: code: 200 message: OK @@ -75,48 +75,47 @@ interactions: residue in electron transfer for iodide oxidation by horseradish peroxidase.","display_name":"An essential role of active site arginine residue in iodide binding and histidine residue in electron transfer for iodide oxidation by horseradish peroxidase.","publication_year":2001,"publication_date":"2001-01-01","ids":{"openalex":"https://openalex.org/W1554322594","doi":"https://doi.org/10.1023/a:1007154515475","mag":"1554322594","pmid":"https://pubmed.ncbi.nlm.nih.gov/11330823"},"language":"en","primary_location":{"is_oa":false,"landing_page_url":"https://doi.org/10.1023/a:1007154515475","pdf_url":null,"source":{"id":"https://openalex.org/S11742566","display_name":"Molecular - and Cellular Biochemistry","issn_l":"0300-8177","issn":["0300-8177","1573-4919"],"is_oa":false,"is_in_doaj":false,"is_core":true,"host_organization":"https://openalex.org/P4310319900","host_organization_name":"Springer + and Cellular Biochemistry","issn_l":"0300-8177","issn":["0300-8177","1573-4919"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310319900","host_organization_name":"Springer Science+Business Media","host_organization_lineage":["https://openalex.org/P4310319965","https://openalex.org/P4310319900"],"host_organization_lineage_names":["Springer Nature","Springer Science+Business Media"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false},"type":"article","type_crossref":"journal-article","indexed_in":["crossref","pubmed"],"open_access":{"is_oa":false,"oa_status":"closed","oa_url":null,"any_repository_has_fulltext":false},"authorships":[{"author_position":"first","author":{"id":"https://openalex.org/A5007713390","display_name":"Subrata Adak","orcid":"https://orcid.org/0000-0001-7376-4755"},"institutions":[{"id":"https://openalex.org/I160344538","display_name":"Indian - Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"facility","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Subrata + Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"funder","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Subrata Adak","raw_affiliation_strings":["Department of Physiology, Indian Institute of Chemical Biology, Calcutta."],"affiliations":[{"raw_affiliation_string":"Department of Physiology, Indian Institute of Chemical Biology, Calcutta.","institution_ids":["https://openalex.org/I160344538"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5053039237","display_name":"Debasish Bandyopadhyay","orcid":"https://orcid.org/0000-0001-7993-0777"},"institutions":[{"id":"https://openalex.org/I160344538","display_name":"Indian - Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"facility","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Debashis + Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"funder","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Debashis Bandyopadhyay","raw_affiliation_strings":["Department of Physiology, Indian Institute of Chemical Biology, Calcutta, India"],"affiliations":[{"raw_affiliation_string":"Department of Physiology, Indian Institute of Chemical Biology, Calcutta, India","institution_ids":["https://openalex.org/I160344538"]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5012898753","display_name":"Uday Bandyopadhyay","orcid":"https://orcid.org/0000-0002-5928-6790"},"institutions":[{"id":"https://openalex.org/I160344538","display_name":"Indian - Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"facility","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Uday + Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"funder","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Uday Bandyopadhyay","raw_affiliation_strings":["Department of Physiology, Indian Institute of Chemical Biology, Calcutta, India"],"affiliations":[{"raw_affiliation_string":"Department of Physiology, Indian Institute of Chemical Biology, Calcutta, India","institution_ids":["https://openalex.org/I160344538"]}]},{"author_position":"last","author":{"id":"https://openalex.org/A5110419549","display_name":"Ranajit K. Banerjee","orcid":null},"institutions":[{"id":"https://openalex.org/I160344538","display_name":"Indian - Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"facility","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Ranajit + Institute of Chemical Biology","ror":"https://ror.org/01kh0x418","country_code":"IN","type":"funder","lineage":["https://openalex.org/I160344538","https://openalex.org/I2799351866","https://openalex.org/I4210134808","https://openalex.org/I66760702"]}],"countries":["IN"],"is_corresponding":false,"raw_author_name":"Ranajit K. Banerjee","raw_affiliation_strings":["Department of Physiology, Indian Institute of Chemical Biology, Calcutta, India"],"affiliations":[{"raw_affiliation_string":"Department - of Physiology, Indian Institute of Chemical Biology, Calcutta, India","institution_ids":["https://openalex.org/I160344538"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":null,"apc_paid":null,"fwci":0.345,"has_fulltext":true,"fulltext_origin":"ngrams","cited_by_count":7,"citation_normalized_percentile":{"value":0.499122,"is_in_top_1_percent":false,"is_in_top_10_percent":false},"cited_by_percentile_year":{"min":77,"max":78},"biblio":{"volume":"218","issue":"1/2","first_page":"1","last_page":"11"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T11848","display_name":"Heme - Oxygenase and Carbon Monoxide Research","score":0.9979,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular + of Physiology, Indian Institute of Chemical Biology, Calcutta, India","institution_ids":["https://openalex.org/I160344538"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":null,"apc_paid":null,"fwci":0.344,"has_fulltext":true,"fulltext_origin":"ngrams","cited_by_count":7,"citation_normalized_percentile":{"value":0.492128,"is_in_top_1_percent":false,"is_in_top_10_percent":false},"cited_by_percentile_year":{"min":77,"max":78},"biblio":{"volume":"218","issue":"1/2","first_page":"1","last_page":"11"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T11848","display_name":"Heme + Oxygenase-1 and Carbon Monoxide","score":0.9979,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life Sciences"}},"topics":[{"id":"https://openalex.org/T11848","display_name":"Heme - Oxygenase and Carbon Monoxide Research","score":0.9979,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular + Oxygenase-1 and Carbon Monoxide","score":0.9979,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life - Sciences"}},{"id":"https://openalex.org/T10903","display_name":"Role of Porphyrins - and Phthalocyanines in Materials Chemistry","score":0.9928,"subfield":{"id":"https://openalex.org/subfields/2505","display_name":"Materials + Sciences"}},{"id":"https://openalex.org/T10903","display_name":"Porphyrin + and Phthalocyanine Chemistry","score":0.9928,"subfield":{"id":"https://openalex.org/subfields/2505","display_name":"Materials Chemistry"},"field":{"id":"https://openalex.org/fields/25","display_name":"Materials Science"},"domain":{"id":"https://openalex.org/domains/3","display_name":"Physical Sciences"}},{"id":"https://openalex.org/T12094","display_name":"Hemoglobin - Function and Regulation in Vertebrates","score":0.9913,"subfield":{"id":"https://openalex.org/subfields/1307","display_name":"Cell + structure and function","score":0.9913,"subfield":{"id":"https://openalex.org/subfields/1307","display_name":"Cell Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life Sciences"}}],"keywords":[{"id":"https://openalex.org/keywords/horseradish-peroxidase","display_name":"Horseradish peroxidase","score":0.8032125},{"id":"https://openalex.org/keywords/residue","display_name":"Residue - (chemistry)","score":0.6542269},{"id":"https://openalex.org/keywords/myoglobin-function","display_name":"Myoglobin - Function","score":0.414969}],"concepts":[{"id":"https://openalex.org/C2777676563","wikidata":"https://www.wikidata.org/wiki/Q413665","display_name":"Horseradish + (chemistry)","score":0.6542269}],"concepts":[{"id":"https://openalex.org/C2777676563","wikidata":"https://www.wikidata.org/wiki/Q413665","display_name":"Horseradish peroxidase","level":3,"score":0.8032125},{"id":"https://openalex.org/C185592680","wikidata":"https://www.wikidata.org/wiki/Q2329","display_name":"Chemistry","level":0,"score":0.6674619},{"id":"https://openalex.org/C2778460671","wikidata":"https://www.wikidata.org/wiki/Q485277","display_name":"Histidine","level":3,"score":0.65546286},{"id":"https://openalex.org/C2781338088","wikidata":"https://www.wikidata.org/wiki/Q903495","display_name":"Residue (chemistry)","level":2,"score":0.6542269},{"id":"https://openalex.org/C2778870691","wikidata":"https://www.wikidata.org/wiki/Q44794658","display_name":"Iodide","level":2,"score":0.64176863},{"id":"https://openalex.org/C2777468819","wikidata":"https://www.wikidata.org/wiki/Q173670","display_name":"Arginine","level":3,"score":0.62104857},{"id":"https://openalex.org/C162008176","wikidata":"https://www.wikidata.org/wiki/Q419305","display_name":"Peroxidase","level":3,"score":0.563822},{"id":"https://openalex.org/C123669783","wikidata":"https://www.wikidata.org/wiki/Q902898","display_name":"Electron transfer","level":2,"score":0.5258432},{"id":"https://openalex.org/C41183919","wikidata":"https://www.wikidata.org/wiki/Q423026","display_name":"Active @@ -135,12 +134,12 @@ interactions: Acids","qualifier_ui":"Q000494","qualifier_name":"pharmacology","is_major_topic":false},{"descriptor_ui":"D006877","descriptor_name":"Hydroxamic Acids","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":false},{"descriptor_ui":"D006877","descriptor_name":"Hydroxamic Acids","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D007454","descriptor_name":"Iodides","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D007700","descriptor_name":"Kinetics","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D010084","descriptor_name":"Oxidation-Reduction","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D010658","descriptor_name":"Phenylglyoxal","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D010658","descriptor_name":"Phenylglyoxal","qualifier_ui":"Q000494","qualifier_name":"pharmacology","is_major_topic":false},{"descriptor_ui":"D010658","descriptor_name":"Phenylglyoxal","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":false},{"descriptor_ui":"D013053","descriptor_name":"Spectrophotometry","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D013816","descriptor_name":"Thermodynamics","qualifier_ui":"","qualifier_name":null,"is_major_topic":false}],"locations_count":2,"locations":[{"is_oa":false,"landing_page_url":"https://doi.org/10.1023/a:1007154515475","pdf_url":null,"source":{"id":"https://openalex.org/S11742566","display_name":"Molecular - and Cellular Biochemistry","issn_l":"0300-8177","issn":["0300-8177","1573-4919"],"is_oa":false,"is_in_doaj":false,"is_core":true,"host_organization":"https://openalex.org/P4310319900","host_organization_name":"Springer + and Cellular Biochemistry","issn_l":"0300-8177","issn":["0300-8177","1573-4919"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310319900","host_organization_name":"Springer Science+Business Media","host_organization_lineage":["https://openalex.org/P4310319965","https://openalex.org/P4310319900"],"host_organization_lineage_names":["Springer - Nature","Springer Science+Business Media"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false},{"is_oa":false,"landing_page_url":"https://pubmed.ncbi.nlm.nih.gov/11330823","pdf_url":null,"source":{"id":"https://openalex.org/S4306525036","display_name":"PubMed","issn_l":null,"issn":null,"is_oa":false,"is_in_doaj":false,"is_core":false,"host_organization":"https://openalex.org/I1299303238","host_organization_name":"National + Nature","Springer Science+Business Media"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false},{"is_oa":false,"landing_page_url":"https://pubmed.ncbi.nlm.nih.gov/11330823","pdf_url":null,"source":{"id":"https://openalex.org/S4306525036","display_name":"PubMed","issn_l":null,"issn":null,"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":false,"host_organization":"https://openalex.org/I1299303238","host_organization_name":"National Institutes of Health","host_organization_lineage":["https://openalex.org/I1299303238"],"host_organization_lineage_names":["National - Institutes of Health"],"type":"repository"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":null,"sustainable_development_goals":[{"score":0.74,"display_name":"Clean - water and sanitation","id":"https://metadata.un.org/sdg/6"}],"grants":[],"datasets":[],"versions":[],"referenced_works_count":36,"referenced_works":["https://openalex.org/W105515906","https://openalex.org/W1515075543","https://openalex.org/W1565240752","https://openalex.org/W1565691495","https://openalex.org/W1571455001","https://openalex.org/W1578742674","https://openalex.org/W1581359855","https://openalex.org/W1587806072","https://openalex.org/W1589479912","https://openalex.org/W1590103084","https://openalex.org/W1799674254","https://openalex.org/W1849424407","https://openalex.org/W1967044424","https://openalex.org/W1971827843","https://openalex.org/W1986659402","https://openalex.org/W1989790643","https://openalex.org/W1990052170","https://openalex.org/W1998706402","https://openalex.org/W1999881926","https://openalex.org/W2002978594","https://openalex.org/W2003479580","https://openalex.org/W2005601978","https://openalex.org/W2006822851","https://openalex.org/W2017379977","https://openalex.org/W2023180351","https://openalex.org/W2024117678","https://openalex.org/W2055799504","https://openalex.org/W2095100183","https://openalex.org/W2095873332","https://openalex.org/W2154061135","https://openalex.org/W2165898505","https://openalex.org/W2179092050","https://openalex.org/W2411439573","https://openalex.org/W2418888804","https://openalex.org/W91326892","https://openalex.org/W955725593"],"related_works":["https://openalex.org/W2327133413","https://openalex.org/W2122752058","https://openalex.org/W2072464466","https://openalex.org/W2062221185","https://openalex.org/W2044979688","https://openalex.org/W1996602571","https://openalex.org/W1991900549","https://openalex.org/W1978474786","https://openalex.org/W1975984439","https://openalex.org/W1530487393"],"abstract_inverted_index":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W1554322594","counts_by_year":[{"year":2023,"cited_by_count":1}],"updated_date":"2024-11-30T23:11:19.324656","created_date":"2016-06-24"} + Institutes of Health"],"type":"repository"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":null,"sustainable_development_goals":[{"id":"https://metadata.un.org/sdg/6","score":0.74,"display_name":"Clean + water and sanitation"}],"grants":[],"datasets":[],"versions":[],"referenced_works_count":36,"referenced_works":["https://openalex.org/W105515906","https://openalex.org/W1515075543","https://openalex.org/W1565240752","https://openalex.org/W1565691495","https://openalex.org/W1571455001","https://openalex.org/W1578742674","https://openalex.org/W1581359855","https://openalex.org/W1587806072","https://openalex.org/W1589479912","https://openalex.org/W1590103084","https://openalex.org/W1799674254","https://openalex.org/W1849424407","https://openalex.org/W1967044424","https://openalex.org/W1971827843","https://openalex.org/W1986659402","https://openalex.org/W1989790643","https://openalex.org/W1990052170","https://openalex.org/W1998706402","https://openalex.org/W1999881926","https://openalex.org/W2002978594","https://openalex.org/W2003479580","https://openalex.org/W2005601978","https://openalex.org/W2006822851","https://openalex.org/W2017379977","https://openalex.org/W2023180351","https://openalex.org/W2024117678","https://openalex.org/W2055799504","https://openalex.org/W2095100183","https://openalex.org/W2095873332","https://openalex.org/W2154061135","https://openalex.org/W2165898505","https://openalex.org/W2179092050","https://openalex.org/W2411439573","https://openalex.org/W2418888804","https://openalex.org/W91326892","https://openalex.org/W955725593"],"related_works":["https://openalex.org/W2327133413","https://openalex.org/W2122752058","https://openalex.org/W2072464466","https://openalex.org/W2062221185","https://openalex.org/W2044979688","https://openalex.org/W1996602571","https://openalex.org/W1991900549","https://openalex.org/W1978474786","https://openalex.org/W1975984439","https://openalex.org/W1530487393"],"abstract_inverted_index":null,"abstract_inverted_index_v3":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W1554322594","counts_by_year":[{"year":2023,"cited_by_count":1}],"updated_date":"2025-07-20T21:07:59.552616","created_date":"2016-06-24"} ' headers: @@ -160,21 +159,21 @@ interactions: Content-Encoding: - gzip Content-Length: - - "3192" + - "3157" Content-Security-Policy: - default-src 'self'; object-src 'none' Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:28 GMT + - Mon, 11 Aug 2025 17:19:27 GMT Nel: - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' Referrer-Policy: - strict-origin-when-cross-origin Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1733168188&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=%2Fn6z%2F81qLDUQjrRv90qOIcddDEtGM24evga%2FzNg%2Bk%2Bg%3D"}]}' + - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1754932767&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=TV2Vf8cFqNfx5lxIQzYbd01GS656BDKw3oBLxrHHxlA%3D"}]}' Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1733168188&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=%2Fn6z%2F81qLDUQjrRv90qOIcddDEtGM24evga%2FzNg%2Bk%2Bg%3D + - heroku-nel=https://nel.heroku.com/reports?ts=1754932767&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=TV2Vf8cFqNfx5lxIQzYbd01GS656BDKw3oBLxrHHxlA%3D Server: - gunicorn Strict-Transport-Security: @@ -194,6 +193,63 @@ interactions: status: code: 200 message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.unpaywall.org/v2/10.1023/a:1007154515475?email=example@papercrow.ai + response: + body: + string: + '{"doi":"10.1023/a:1007154515475","doi_url":"https://doi.org/10.1023/a:1007154515475","title":"An + essential role of active site arginine residue in iodide binding and histidine + residue in electron transfer for iodide oxidation by horseradish peroxidase","genre":"journal-article","is_paratext":false,"published_date":"2001-02-01","year":2001,"journal_name":"Molecular + and Cellular Biochemistry","journal_issns":"0300-8177,1573-4919","journal_issn_l":"0300-8177","journal_is_oa":false,"journal_is_in_doaj":false,"publisher":"Springer + Science and Business Media LLC","is_oa":false,"oa_status":"closed","has_repository_copy":false,"best_oa_location":null,"first_oa_location":null,"oa_locations":[],"oa_locations_embargoed":[],"data_standard":2,"z_authors":[{"author_position":"first","raw_author_name":"Subrata + Adak","is_corresponding":true,"raw_affiliation_strings":["Department of Physiology, + Indian Institute of Chemical Biology, 4 Raja S.C. Mullick Road, Calcutta, + 700 032, India"]},{"author_position":"additional","raw_author_name":"Debashis + Bandyopadhyay","is_corresponding":false,"raw_affiliation_strings":["Department + of Physiology, Indian Institute of Chemical Biology, 4 Raja S.C. Mullick Road, + Calcutta, 700 032, India"]},{"author_position":"additional","raw_author_name":"Uday + Bandyopadhyay","is_corresponding":false,"raw_affiliation_strings":["Department + of Physiology, Indian Institute of Chemical Biology, 4 Raja S.C. Mullick Road, + Calcutta, 700 032, India"]},{"author_position":"last","raw_author_name":"Ranajit + K. Banerjee","is_corresponding":false,"raw_affiliation_strings":["Department + of Physiology, Indian Institute of Chemical Biology, 4 Raja S.C. Mullick Road, + Calcutta, 700 032, India"]}],"updated":"2025-05-24T02:33:38Z"} + + ' + headers: + Access-Control-Allow-Headers: + - origin, content-type, accept, x-requested-with + Access-Control-Allow-Methods: + - POST, GET, OPTIONS, PUT, DELETE, PATCH + Access-Control-Allow-Origin: + - "*" + Content-Encoding: + - gzip + Content-Length: + - "653" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:27 GMT + Nel: + - '{"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}' + Report-To: + - '{"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=9SdM082hIAucRk7r5%2F1sOXzOeh9c%2BzeVzzusOXN3hNc%3D\u0026sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add\u0026ts=1754932767"}],"max_age":3600}' + Reporting-Endpoints: + - heroku-nel="https://nel.heroku.com/reports?s=9SdM082hIAucRk7r5%2F1sOXzOeh9c%2BzeVzzusOXN3hNc%3D&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&ts=1754932767" + Server: + - Heroku + Vary: + - Accept-Encoding + Via: + - 1.1 heroku-router + status: + code: 200 + message: OK - request: body: null headers: {} @@ -202,10 +258,155 @@ interactions: response: body: string: - '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2024,1,21]],"date-time":"2024-01-21T17:53:48Z","timestamp":1705859628791},"reference-count":0,"publisher":"Springer - Science and Business Media LLC","issue":"1\/2","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":[],"published-print":{"date-parts":[[2001]]},"DOI":"10.1023\/a:1007154515475","type":"journal-article","created":{"date-parts":[[2002,12,22]],"date-time":"2002-12-22T09:07:15Z","timestamp":1040548035000},"page":"1-11","source":"Crossref","is-referenced-by-count":6,"title":[],"prefix":"10.1007","volume":"218","author":[{"given":"Subrata","family":"Adak","sequence":"first","affiliation":[]},{"given":"Debashis","family":"Bandyopadhyay","sequence":"additional","affiliation":[]},{"given":"Uday","family":"Bandyopadhyay","sequence":"additional","affiliation":[]},{"given":"Ranajit - K.","family":"Banerjee","sequence":"additional","affiliation":[]}],"member":"297","container-title":["Molecular - and Cellular Biochemistry"],"original-title":[],"deposited":{"date-parts":[[2012,12,27]],"date-time":"2012-12-27T23:10:34Z","timestamp":1356649834000},"score":1,"resource":{"primary":{"URL":"http:\/\/link.springer.com\/10.1023\/A:1007154515475"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2001]]},"references-count":0,"journal-issue":{"issue":"1\/2"},"alternative-id":["271450"],"URL":"http:\/\/dx.doi.org\/10.1023\/a:1007154515475","relation":{},"ISSN":["0300-8177"],"issn-type":[{"value":"0300-8177","type":"print"}],"subject":[],"published":{"date-parts":[[2001]]}}}' + '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,5,21]],"date-time":"2025-05-21T04:29:13Z","timestamp":1747801753621,"version":"3.41.0"},"reference-count":38,"publisher":"Springer + Science and Business Media LLC","issue":"1-2","license":[{"start":{"date-parts":[[2001,2,1]],"date-time":"2001-02-01T00:00:00Z","timestamp":980985600000},"content-version":"tdm","delay-in-days":0,"URL":"https:\/\/www.springernature.com\/gp\/researchers\/text-and-data-mining"},{"start":{"date-parts":[[2001,2,1]],"date-time":"2001-02-01T00:00:00Z","timestamp":980985600000},"content-version":"vor","delay-in-days":0,"URL":"https:\/\/www.springernature.com\/gp\/researchers\/text-and-data-mining"}],"content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":["Mol + Cell Biochem"],"published-print":{"date-parts":[[2001,2]]},"DOI":"10.1023\/a:1007154515475","type":"journal-article","created":{"date-parts":[[2002,12,22]],"date-time":"2002-12-22T09:07:15Z","timestamp":1040548035000},"page":"1-11","source":"Crossref","is-referenced-by-count":7,"title":["An + essential role of active site arginine residue in iodide binding and histidine + residue in electron transfer for iodide oxidation by horseradish peroxidase"],"prefix":"10.1007","volume":"218","author":[{"given":"Subrata","family":"Adak","sequence":"first","affiliation":[]},{"given":"Debashis","family":"Bandyopadhyay","sequence":"additional","affiliation":[]},{"given":"Uday","family":"Bandyopadhyay","sequence":"additional","affiliation":[]},{"given":"Ranajit + K.","family":"Banerjee","sequence":"additional","affiliation":[]}],"member":"297","reference":[{"key":"271450_CR1","doi-asserted-by":"crossref","first-page":"187","DOI":"10.1016\/S0010-8545(00)80316-1","volume":"19","author":"HB + Dunford","year":"1976","unstructured":"Dunford HB, Stillman JS: On the function + and mechanism of action of peroxidases. Coord Chem Rev 19: 187\u2013251, 1976","journal-title":"Coord + Chem Rev"},{"key":"271450_CR2","first-page":"1","volume-title":"Peroxidases + in Chemistry and Biology","author":"HB Dunford","year":"1991","unstructured":"Dunford + HB: Horseradish peroxidase: Structure and kinetic properties. In J. Everse, + K.E. Everse, M.B. Gresham (eds). Peroxidases in Chemistry and Biology, vol. + II. CRC Press, Boca Raton, FL, 1991, pp 1\u201324"},{"key":"271450_CR3","doi-asserted-by":"crossref","first-page":"861","DOI":"10.1146\/annurev.bi.45.070176.004241","volume":"45","author":"M + Morrison","year":"1976","unstructured":"Morrison M, Schonbaum GR: Peroxide-catalyzed + halogenation. Ann Rev Biochem 45: 861\u2013888, 1976","journal-title":"Ann + Rev Biochem"},{"key":"271450_CR4","doi-asserted-by":"crossref","first-page":"2076","DOI":"10.1021\/bi00761a013","volume":"11","author":"R + Roman","year":"1972","unstructured":"Roman R, Dunford HB: pH dependence of + the oxidation of iodide by compound I of horseradish peroxidase. Biochemistry + 11: 2076\u20132082, 1972","journal-title":"Biochemistry"},{"key":"271450_CR5","doi-asserted-by":"crossref","first-page":"13783","DOI":"10.1016\/S0021-9258(18)89814-3","volume":"259","author":"RP + Magnusson","year":"1984","unstructured":"Magnusson RP, Taurog A, Dorris ML: + Mechanisms of thyroid peroxidase and lactoperoxidase-catalyzed reactions involving + iodide. J Biol Chem 259: 13783\u201313790, 1984","journal-title":"J Biol Chem"},{"key":"271450_CR6","doi-asserted-by":"crossref","first-page":"502","DOI":"10.1016\/S0021-9258(19)44403-7","volume":"248","author":"GR + Schonbaum","year":"1973","unstructured":"Schonbaum GR: New complexes of peroxidases + with hydroxamic acids, hydrazides, and amides. J Biol Chem 248: 502\u2013511, + 1973","journal-title":"J Biol Chem"},{"key":"271450_CR7","doi-asserted-by":"crossref","first-page":"9657","DOI":"10.1016\/S0021-9258(18)67564-7","volume":"261","author":"J + Sakurada","year":"1986","unstructured":"Sakurada J, Takahashi S, Hosoya TJ: + Nuclear magnetic resonance studies on the spatial relationship of aromatic + donor molecules to the heme iron of horseradish peroxidase. Biol Chem 261: + 9657\u20139662, 1986","journal-title":"Biol Chem"},{"key":"271450_CR8","doi-asserted-by":"crossref","first-page":"3027","DOI":"10.1021\/ja00218a005","volume":"110","author":"V + Thanabal","year":"1988","unstructured":"Thanabal V, De Ropp JS, La Mar GN: + Proton NMR characterization of the catalytically relevant proximal and distal + hydrogen-bonding networks in ligated resting state horseradish peroxidase. + J Am Chem Soc 110: 3027\u20133035, 1988","journal-title":"J Am Chem Soc"},{"key":"271450_CR9","doi-asserted-by":"crossref","first-page":"88","DOI":"10.1021\/ar00140a004","volume":"20","author":"PR + Ortiz de Montellano","year":"1987","unstructured":"Ortiz de Montellano PR: + Catalytic sites of hemoprotein peroxidases. Acc Chem Res 20: 88\u2013104, + 1987","journal-title":"Acc Chem Res"},{"key":"271450_CR10","doi-asserted-by":"crossref","first-page":"19430","DOI":"10.1074\/jbc.270.33.19430","volume":"270","author":"S + Newmyer","year":"1995","unstructured":"Newmyer S, Ortiz de Montellano PR: + Horseradish peroxidase His 42\u2192Ala, His-42\u2192Val, and Phe-41\u2192Ala + mutants: Histidine catalysis and control of substrate access to the heme iron. + J Biol Chem 270: 19430\u201319438, 1995","journal-title":"J Biol Chem"},{"key":"271450_CR11","doi-asserted-by":"crossref","first-page":"232","DOI":"10.1042\/bst0230232","volume":"23","author":"NC + Veitch","year":"1995","unstructured":"Veitch NC: Aromatic donor molecule binding + sites of heme peroxidases. Biochem Soc Trans 23: 232\u2013240, 1995","journal-title":"Biochem + Soc Trans"},{"key":"271450_CR12","doi-asserted-by":"crossref","first-page":"250","DOI":"10.1042\/bst0230250","volume":"23","author":"GH + Loew","year":"1995","unstructured":"Loew GH, Du P, Smith AT: Homology modelling + of horseradish peroxidase coupled to two-dimensional NMR spectral assignments. + Biochem Soc Trans 23: 250\u2013256, 1995","journal-title":"Biochem Soc Trans"},{"key":"271450_CR13","doi-asserted-by":"crossref","first-page":"136","DOI":"10.1007\/s007750050032","volume":"1","author":"JN + Rodriguez-Lopez","year":"1996","unstructured":"Rodriguez-Lopez JN, Smith AT, + Thorneley RNF: Recombinant horseradish isoenzyme C: The effect of distal haem + cavity mutations (His42\u2192Leu and Arg38\u2192Leu) on compound I formation + and substratebinding. J Biol Inorg Chem 1: 136\u2013142, 1996","journal-title":"J + Biol Inorg Chem"},{"key":"271450_CR14","doi-asserted-by":"crossref","first-page":"4023","DOI":"10.1074\/jbc.271.8.4023","volume":"271","author":"JN + Rodriguez-Lopez","year":"1996","unstructured":"Rodriguez-Lopez JN, Smith AT, + Thorneley NF: Role of arginine 38 in horseradish peroxidase: A critical residue + for substrate binding and catalysis. J Biol Chem 271: 4023\u20134030, 1996","journal-title":"J + Biol Chem"},{"key":"271450_CR15","doi-asserted-by":"crossref","first-page":"1532","DOI":"10.1021\/bi962502o","volume":"36","author":"BD + Howes","year":"1997","unstructured":"Howes BD, Rodriguez-Lopez JN, Smith AT, + Smulevich G: Mutation of distal residues of horseradish peroxidase: Influence + on substrate binding and cavity properties. Biochemistry 36: 1532\u20131543, + 1997","journal-title":"Biochemistry"},{"key":"271450_CR16","doi-asserted-by":"crossref","first-page":"14751","DOI":"10.1021\/bi9718402","volume":"36","author":"NC + Veitch","year":"1997","unstructured":"Veitch NC, Gao Y, Smith AT, White CG: + Identification of a critical phenylalanine residue in horseradish peroxidase, + Phe-179, by sitedirected mutagenesis and 1H-NMR: Implications for complex + formation with aromatic donor molecules. Biochemistry 36: 14751-14761, 1997","journal-title":"Biochemistry"},{"key":"271450_CR17","doi-asserted-by":"crossref","first-page":"1032","DOI":"10.1038\/nsb1297-1032","volume":"4","author":"M + Gajhede","year":"1997","unstructured":"Gajhede M, Schuller DJ, Henriksen A, + Smith AT, Poulos TL: Crystal structure of horseradish peroxidase C at 2.15 + A resolution. Nature Struct Biol 4: 1032\u20131038, 1997","journal-title":"Nature + Struct Biol"},{"key":"271450_CR18","doi-asserted-by":"crossref","first-page":"4007","DOI":"10.1016\/S0021-9258(18)61303-1","volume":"262","author":"J + Sakurada","year":"1987","unstructured":"Sakurada J, Takahashi S, Hosoya T: + Proton nuclear magnetic resonance studies on the iodide binding by horseradish + peroxidase. J Biol Chem 262: 4007\u20134010, 1987","journal-title":"J Biol + Chem"},{"key":"271450_CR19","doi-asserted-by":"crossref","first-page":"6478","DOI":"10.1021\/bi00394a028","volume":"26","author":"J + Sakurada","year":"1987","unstructured":"Sakurada J, Takahashi S, Shimizu T, + Hatano M, Nakamura S, Hosoya T: Proton and iodine-127 nuclear magnetic resonance + studies on the binding of iodide by lactoperoxidase. Biochemistry 26: 6478\u20136483, + 1987","journal-title":"Biochemistry"},{"key":"271450_CR20","doi-asserted-by":"crossref","first-page":"1637","DOI":"10.1016\/S0021-9258(18)53900-4","volume":"268","author":"RZ + Harris","year":"1993","unstructured":"Harris RZ, Newmyer SL, Ortiz de Montellano + PR: Horseradish peroxidase-catalyzed two-electron oxidations: Oxidation of + iodide, thioanisoles, and phenols at distinct sites. J Biol Chem 268: 1637\u20131645, + 1993","journal-title":"J Biol Chem"},{"key":"271450_CR21","doi-asserted-by":"crossref","first-page":"7516","DOI":"10.1021\/ja00258a043","volume":"109","author":"V + Thanabal","year":"1987","unstructured":"Thanabal V, De Ropp JS, La Mar GN: + Identification of the catalytically important amino acid residue resonances + in ferric low-spin horseradish peroxidase with nuclear overhauser effect measurements. + J Am Chem Soc 109: 7516\u20137525, 1987","journal-title":"J Am Chem Soc"},{"key":"271450_CR22","doi-asserted-by":"crossref","unstructured":"Modi + S, Behere DV, Mitra S: Interaction of thiocyanate with horseradish peroxidase. + 1H and 15N nuclear magnetic resonance studies. J Biol Chem 264: 19677\u201319684, + 1989","DOI":"10.1016\/S0021-9258(19)47166-4"},{"key":"271450_CR23","doi-asserted-by":"crossref","first-page":"83","DOI":"10.1016\/0167-4838(90)90126-Z","volume":"1041","author":"A + Saxena","year":"1990","unstructured":"Saxena A, Modi S, Behere DV, Mitra S: + Interaction of aromatic donor molecules with manganese (III) reconstituted + horseradish peroxidase: Proton nuclear magnetic resonance optical difference + spectroscopic studies. Biochim Biophys Acta 1041: 83\u201393, 1990","journal-title":"Biochim + Biophys Acta"},{"key":"271450_CR24","doi-asserted-by":"crossref","first-page":"8199","DOI":"10.1016\/S0021-9258(19)70630-9","volume":"255","author":"TL + Poulos","year":"1980","unstructured":"Poulos TL, Kraut J: The stereochemistry + of peroxidase catalysis. J Biol Chem 255: 8199\u20138205, 1980","journal-title":"J + Biol Chem"},{"key":"271450_CR25","doi-asserted-by":"crossref","first-page":"9800","DOI":"10.1016\/S0021-9258(19)50164-8","volume":"267","author":"DK + Bhattacharyya","year":"1992","unstructured":"Bhattacharyya DK, Bandyopadhyay + U, Banerjee RK: Chemical and kinetic evidence for an essential histidine in + horseradish peroxidase for iodide oxidation. J Biol Chem 267: 9800\u20139804, + 1992","journal-title":"J Biol Chem"},{"key":"271450_CR26","doi-asserted-by":"crossref","first-page":"22292","DOI":"10.1016\/S0021-9258(18)41527-X","volume":"268","author":"DK + Bhattacharyya","year":"1993","unstructured":"Bhattacharyya DK, Bandyopadhyay + U, Banerjee RK: Chemical and kinetic evidence for an essential histidine residue + in the electron transfer from aromatic donor to horseradish peroxidase compound + I. J Biol Chem 268: 22292\u201322298, 1993","journal-title":"J Biol Chem"},{"key":"271450_CR27","doi-asserted-by":"crossref","first-page":"985","DOI":"10.1042\/bj3140985","volume":"314","author":"S + Adak","year":"1996","unstructured":"Adak S, Mazumdar A, Banerjee RK: Probing + the active site residues in aromatic donor oxidation in horseradish peroxidase: + Involvement of an arginine and a tyrosine residue in aromatic donor binding. + Biochem J 314: 985\u2013991, 1996","journal-title":"Biochem J"},{"key":"271450_CR28","doi-asserted-by":"crossref","first-page":"251","DOI":"10.1021\/bi00804a010","volume":"9","author":"WB + Melchior Jr","year":"1970","unstructured":"Melchior WB Jr, Fahrney D: Ethoxyformylation + of proteins. Reaction of ethoxyformic anhydride with a-chymotrypsin, pepsin, + and pancreatic ribonuclease at pH-4. Biochemistry 9: 251\u2013252, 1970","journal-title":"Biochemistry"},{"key":"271450_CR29","doi-asserted-by":"crossref","first-page":"431","DOI":"10.1016\/0076-6879(77)47043-5","volume":"47","author":"EW + Miles","year":"1977","unstructured":"Miles EW: Modification of histidyl residues + in proteins by diethylpyrocarbonate. Meth Enzymol 47: 431\u2013442, 1977","journal-title":"Meth + Enzymol"},{"key":"271450_CR30","doi-asserted-by":"crossref","first-page":"2639","DOI":"10.1021\/bi00432a042","volume":"28","author":"T + Hosoya","year":"1989","unstructured":"Hosoya T, Sakurada J, Kurokawa C, Toyoda + R, Nakamura S: Interaction of aromatic donor molecules with lactoperoxidase + probed by optical difference spectra. Biochemistry 28: 2639\u20132644, 1989","journal-title":"Biochemistry"},{"key":"271450_CR31","doi-asserted-by":"crossref","first-page":"12998","DOI":"10.1021\/bi00040a010","volume":"34","author":"S + Adak","year":"1995","unstructured":"Adak S, Bhattacharyya DK, Mazumdar A, + Bandyopadhyay U, Banerjee RK: Concurrent reduction of iodine and oxidation + of EDTA at the active site of horseradish peroxidase: Probing the iodine binding + site by optical difference spectroscopy and steady state kinetic analysis + for the formation of active enzyme-I+-EDTA ternary complex for iodine reductase + activity. Biochemistry 34: 12998\u201313006, 1995","journal-title":"Biochemistry"},{"key":"271450_CR32","doi-asserted-by":"crossref","first-page":"11049","DOI":"10.1074\/jbc.272.17.11049","volume":"272","author":"S + Adak","year":"1997","unstructured":"Adak S, Mazumdar A, Banerjee RK: Low catalytic + turnover of horseradish peroxidase in thiocyanate oxidation: Evidence for + concurrent inactivation by cyanide generated through one-electron oxidation + of thiocyanate. J Biol Chem 272: 11049\u201311056, 1997","journal-title":"J + Biol Chem"},{"key":"271450_CR33","doi-asserted-by":"crossref","first-page":"6171","DOI":"10.1016\/S0021-9258(18)94475-3","volume":"243","author":"K + Takahashi","year":"1968","unstructured":"Takahashi K: The reaction of phenylglyoxal + with arginine residues in proteins. J Biol Chem 243: 6171\u20136179, 1968","journal-title":"J + Biol Chem"},{"key":"271450_CR34","doi-asserted-by":"crossref","first-page":"3714","DOI":"10.1016\/S0021-9258(18)97101-2","volume":"240","author":"MC + Scrutton","year":"1965","unstructured":"Scrutton MC, Utter MF: Pyruvate carboxylase + V. Interaction of the enzyme with adenosine triphosphate. J Biol Chem 240: + 3714\u20133723, 1965","journal-title":"J Biol Chem"},{"key":"271450_CR35","doi-asserted-by":"crossref","first-page":"483","DOI":"10.1111\/j.1432-1033.1979.tb13061.x","volume":"96","author":"KG + Welinder","year":"1979","unstructured":"Welinder KG: Amino acid sequence studies + of horseradish peroxidase. Amino and carboxyl termini, cyanogen bromide and + tryptic fragments, the complete sequence and some structural characteristics + of horseradish peroxide C. Eur J Biochem 96: 483\u2013502, 1979","journal-title":"Eur + J Biochem"},{"key":"271450_CR36","doi-asserted-by":"crossref","first-page":"9158","DOI":"10.1021\/bi00153a007","volume":"31","author":"GN + La Mar","year":"1992","unstructured":"La Mar GN, Hernandez G, De Ropp JS: + 1H NMR investigation of the influence of interacting sites on the dynamics + and thermodynamics of substrate and ligand binding to horseradish peroxidase. + Biochemistry 31: 9158\u20139168, 1992","journal-title":"Biochemistry"},{"key":"271450_CR37","doi-asserted-by":"crossref","first-page":"3331","DOI":"10.1021\/bi00409a032","volume":"27","author":"WA + Oertling","year":"1988","unstructured":"Oertling WA, Babcock GA: Time-resolved + and static resonance Raman spectroscopy of horseradish peroxidase intermediates. + Biochemistry 27: 3331\u20133338, 1988","journal-title":"Biochemistry"},{"key":"271450_CR38","doi-asserted-by":"crossref","first-page":"5752","DOI":"10.1074\/jbc.272.9.5752","volume":"272","author":"K + Fukuyama","year":"1997","unstructured":"Fukuyama K, Sato K, Itakura H, Takahashi + S, Hosoya T: Binding of iodide to Arthromyces ramosus peroxidase investigated + with X-ray crystallographic analysis, 1H and 127I NMR spectroscopy, and steadystate + kinetics. J Biol Chem 272: 5752\u20135756, 1997","journal-title":"J Biol Chem"}],"container-title":["Molecular + and Cellular Biochemistry"],"original-title":[],"language":"en","link":[{"URL":"https:\/\/link.springer.com\/content\/pdf\/10.1023\/A:1007154515475.pdf","content-type":"application\/pdf","content-version":"vor","intended-application":"text-mining"},{"URL":"https:\/\/link.springer.com\/article\/10.1023\/A:1007154515475\/fulltext.html","content-type":"text\/html","content-version":"vor","intended-application":"text-mining"},{"URL":"https:\/\/link.springer.com\/content\/pdf\/10.1023\/A:1007154515475.pdf","content-type":"application\/pdf","content-version":"vor","intended-application":"similarity-checking"}],"deposited":{"date-parts":[[2025,5,20]],"date-time":"2025-05-20T12:57:39Z","timestamp":1747745859000},"score":1,"resource":{"primary":{"URL":"https:\/\/link.springer.com\/10.1023\/A:1007154515475"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2001,2]]},"references-count":38,"journal-issue":{"issue":"1-2","published-print":{"date-parts":[[2001,2]]}},"alternative-id":["271450"],"URL":"https:\/\/doi.org\/10.1023\/a:1007154515475","relation":{},"ISSN":["0300-8177","1573-4919"],"issn-type":[{"type":"print","value":"0300-8177"},{"type":"electronic","value":"1573-4919"}],"subject":[],"published":{"date-parts":[[2001,2]]}}}' headers: Access-Control-Allow-Headers: - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, @@ -215,15 +416,15 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Content-Encoding: - gzip Content-Length: - - "762" + - "5257" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:28 GMT + - Mon, 11 Aug 2025 17:19:27 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -236,10 +437,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" status: code: 200 message: OK @@ -251,11 +448,13 @@ interactions: response: body: string: - " @article{Adak_2001, volume={218}, ISSN={0300-8177}, url={http://dx.doi.org/10.1023/a:1007154515475}, - DOI={10.1023/a:1007154515475}, number={1/2}, journal={Molecular and Cellular + " @article{Adak_2001, title={An essential role of active site arginine + residue in iodide binding and histidine residue in electron transfer for iodide + oxidation by horseradish peroxidase}, volume={218}, ISSN={1573-4919}, url={http://dx.doi.org/10.1023/a:1007154515475}, + DOI={10.1023/a:1007154515475}, number={1\u20132}, journal={Molecular and Cellular Biochemistry}, publisher={Springer Science and Business Media LLC}, author={Adak, Subrata and Bandyopadhyay, Debashis and Bandyopadhyay, Uday and Banerjee, - Ranajit K.}, year={2001}, pages={1\u201311} }\n" + Ranajit K.}, year={2001}, month=feb, pages={1\u201311} }\n" headers: Access-Control-Allow-Headers: - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, @@ -265,9 +464,9 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Date: - - Mon, 02 Dec 2024 19:36:29 GMT + - Mon, 11 Aug 2025 17:19:28 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -280,62 +479,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" - status: - code: 200 - message: OK - - request: - body: null - headers: {} - method: GET - uri: https://api.unpaywall.org/v2/10.1023/a:1007154515475?email=example@papercrow.ai - response: - body: - string: - '{"doi": "10.1023/a:1007154515475", "doi_url": "https://doi.org/10.1023/a:1007154515475", - "title": null, "genre": "journal-article", "is_paratext": false, "published_date": - "2001-01-01", "year": 2001, "journal_name": "Molecular and Cellular Biochemistry", - "journal_issns": "0300-8177", "journal_issn_l": "0300-8177", "journal_is_oa": - false, "journal_is_in_doaj": false, "publisher": "Springer Science and Business - Media LLC", "is_oa": false, "oa_status": "closed", "has_repository_copy": - false, "best_oa_location": null, "first_oa_location": null, "oa_locations": - [], "oa_locations_embargoed": [], "updated": "2021-01-15T22:46:04.723698", - "data_standard": 2, "z_authors": [{"given": "Subrata", "family": "Adak", "sequence": - "first"}, {"given": "Debashis", "family": "Bandyopadhyay", "sequence": "additional"}, - {"given": "Uday", "family": "Bandyopadhyay", "sequence": "additional"}, {"given": - "Ranajit K.", "family": "Banerjee", "sequence": "additional"}]}' - headers: - Access-Control-Allow-Headers: - - origin, content-type, accept, x-requested-with - Access-Control-Allow-Methods: - - POST, GET, OPTIONS, PUT, DELETE, PATCH - Access-Control-Allow-Origin: - - "*" - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Length: - - "453" - Content-Type: - - application/json - Date: - - Mon, 02 Dec 2024 19:36:32 GMT - Nel: - - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' - Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1733168188&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&s=NFjez%2F60EtbxhurHvF9P2WUSxXGEWAMrN9YVU9nnw8M%3D"}]}' - Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1733168188&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&s=NFjez%2F60EtbxhurHvF9P2WUSxXGEWAMrN9YVU9nnw8M%3D - Server: - - gunicorn - Vary: - - Accept-Encoding - Via: - - 1.1 vegur status: code: 200 message: OK diff --git a/tests/cassettes/test_doi_search[paper_attributes2].yaml b/tests/cassettes/test_doi_search[paper_attributes2].yaml index bf52e2211..46acf8241 100644 --- a/tests/cassettes/test_doi_search[paper_attributes2].yaml +++ b/tests/cassettes/test_doi_search[paper_attributes2].yaml @@ -11,11 +11,11 @@ interactions: {"DOI": "10.1007/s40278-023-41815-2", "CorpusId": 259225376}, "url": "https://www.semanticscholar.org/paper/e0d2719e49ad216f98ed640864cdacd1c20f53e6", "title": "Convalescent-anti-sars-cov-2-plasma/immune-globulin", "venue": "Reactions weekly", "year": 2023, "citationCount": 0, "influentialCitationCount": 0, - "isOpenAccess": false, "openAccessPdf": null, "publicationTypes": ["JournalArticle"], - "publicationDate": "2023-06-01", "journal": {"name": "Reactions Weekly", "pages": - "145 - 145", "volume": "1962"}, "citationStyles": {"bibtex": "@Article{None,\n - booktitle = {Reactions weekly},\n journal = {Reactions Weekly},\n pages = - {145 - 145},\n title = {Convalescent-anti-sars-cov-2-plasma/immune-globulin},\n + "isOpenAccess": false, "openAccessPdf": {"url": "", "status": null, "license": + null}, "publicationTypes": ["JournalArticle"], "publicationDate": "2023-06-01", + "journal": {"name": "Reactions Weekly", "pages": "145 - 145", "volume": "1962"}, + "citationStyles": {"bibtex": "@Article{None,\n booktitle = {Reactions weekly},\n + journal = {Reactions Weekly},\n pages = {145 - 145},\n title = {Convalescent-anti-sars-cov-2-plasma/immune-globulin},\n volume = {1962},\n year = {2023}\n}\n"}, "authors": []} ' @@ -25,31 +25,74 @@ interactions: Connection: - keep-alive Content-Length: - - "837" + - "877" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:32 GMT + - Mon, 11 Aug 2025 17:19:28 GMT Via: - - 1.1 dad2c265b31314a82611ea10bc334572.cloudfront.net (CloudFront) + - 1.1 ac3f0425be668a2439884bb8cbd3ccd8.cloudfront.net (CloudFront) X-Amz-Cf-Id: - - EzwPbRLkMV19FuinANI8QLBY_hiykiUBPEwcJnjTx6OR5nl3TWFh4Q== + - Xw-IO_bsBSgDZuwLJpAG4Ci-orE9gGXD2TiQ7vvGuMEGX0owSx5Hvg== X-Amz-Cf-Pop: - - SFO53-P7 + - SFO53-C1 X-Cache: - Miss from cloudfront x-amz-apigw-id: - - CLbaKEedPHcEdsg= + - PJrlHGZVPHcEFQA= x-amzn-Remapped-Connection: - keep-alive x-amzn-Remapped-Content-Length: - - "837" + - "877" x-amzn-Remapped-Date: - - Mon, 02 Dec 2024 19:36:32 GMT + - Mon, 11 Aug 2025 17:19:28 GMT x-amzn-Remapped-Server: - gunicorn x-amzn-RequestId: - - 2c66b7de-afe9-4aa5-9d00-a9e4e429292b + - f6ffa2a4-df40-4eb9-b02f-eeeb085d2264 + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.unpaywall.org/v2/10.1007/s40278-023-41815-2?email=example@papercrow.ai + response: + body: + string: + '{"doi":"10.1007/s40278-023-41815-2","doi_url":"https://doi.org/10.1007/s40278-023-41815-2","title":"Convalescent-anti-sars-cov-2-plasma/immune-globulin","genre":"journal-article","is_paratext":false,"published_date":"2023-06-23","year":2023,"journal_name":"Reactions + Weekly","journal_issns":"0114-9954,1179-2051","journal_issn_l":"0114-9954","journal_is_oa":false,"journal_is_in_doaj":false,"publisher":"Springer + Science and Business Media LLC","is_oa":false,"oa_status":"closed","has_repository_copy":false,"best_oa_location":null,"first_oa_location":null,"oa_locations":[],"oa_locations_embargoed":[],"data_standard":2,"z_authors":null,"updated":"2025-05-22T18:42:22Z"} + + ' + headers: + Access-Control-Allow-Headers: + - origin, content-type, accept, x-requested-with + Access-Control-Allow-Methods: + - POST, GET, OPTIONS, PUT, DELETE, PATCH + Access-Control-Allow-Origin: + - "*" + Content-Encoding: + - gzip + Content-Length: + - "398" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:28 GMT + Nel: + - '{"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}' + Report-To: + - '{"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=62vb7Iw%2FBH6YdQBONLMW94YTXVAPlUvNLbiKzyNS83k%3D\u0026sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add\u0026ts=1754932768"}],"max_age":3600}' + Reporting-Endpoints: + - heroku-nel="https://nel.heroku.com/reports?s=62vb7Iw%2FBH6YdQBONLMW94YTXVAPlUvNLbiKzyNS83k%3D&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&ts=1754932768" + Server: + - Heroku + Vary: + - Accept-Encoding + Via: + - 1.1 heroku-router status: code: 200 message: OK @@ -62,16 +105,15 @@ interactions: body: string: '{"id":"https://openalex.org/W4381738344","doi":"https://doi.org/10.1007/s40278-023-41815-2","title":"Convalescent-anti-sars-cov-2-plasma/immune-globulin","display_name":"Convalescent-anti-sars-cov-2-plasma/immune-globulin","publication_year":2023,"publication_date":"2023-06-23","ids":{"openalex":"https://openalex.org/W4381738344","doi":"https://doi.org/10.1007/s40278-023-41815-2"},"language":"en","primary_location":{"is_oa":false,"landing_page_url":"https://doi.org/10.1007/s40278-023-41815-2","pdf_url":null,"source":{"id":"https://openalex.org/S14436165","display_name":"Reactions - Weekly","issn_l":"0114-9954","issn":["0114-9954","1179-2051"],"is_oa":false,"is_in_doaj":false,"is_core":true,"host_organization":"https://openalex.org/P4310320330","host_organization_name":"Adis, + Weekly","issn_l":"0114-9954","issn":["0114-9954","1179-2051"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":true,"host_organization":"https://openalex.org/P4310320330","host_organization_name":"Adis, Springer Healthcare","host_organization_lineage":["https://openalex.org/P4310319965","https://openalex.org/P4310320330"],"host_organization_lineage_names":["Springer - Nature","Adis, Springer Healthcare"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false},"type":"article","type_crossref":"journal-article","indexed_in":["crossref"],"open_access":{"is_oa":false,"oa_status":"closed","oa_url":null,"any_repository_has_fulltext":false},"authorships":[],"institution_assertions":[],"countries_distinct_count":0,"institutions_distinct_count":0,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":null,"apc_paid":null,"fwci":0.0,"has_fulltext":false,"cited_by_count":0,"citation_normalized_percentile":{"value":0.0,"is_in_top_1_percent":false,"is_in_top_10_percent":false},"cited_by_percentile_year":{"min":0,"max":69},"biblio":{"volume":"1962","issue":"1","first_page":"145","last_page":"145"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T12796","display_name":"Cutaneous - Manifestations of COVID-19: A Comprehensive Review","score":0.9358,"subfield":{"id":"https://openalex.org/subfields/2708","display_name":"Dermatology"},"field":{"id":"https://openalex.org/fields/27","display_name":"Medicine"},"domain":{"id":"https://openalex.org/domains/4","display_name":"Health - Sciences"}},"topics":[{"id":"https://openalex.org/T12796","display_name":"Cutaneous - Manifestations of COVID-19: A Comprehensive Review","score":0.9358,"subfield":{"id":"https://openalex.org/subfields/2708","display_name":"Dermatology"},"field":{"id":"https://openalex.org/fields/27","display_name":"Medicine"},"domain":{"id":"https://openalex.org/domains/4","display_name":"Health + Nature","Adis, Springer Healthcare"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false},"type":"article","type_crossref":"journal-article","indexed_in":["crossref"],"open_access":{"is_oa":false,"oa_status":"closed","oa_url":null,"any_repository_has_fulltext":false},"authorships":[],"institution_assertions":[],"countries_distinct_count":0,"institutions_distinct_count":0,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":null,"apc_paid":null,"fwci":0.0,"has_fulltext":false,"cited_by_count":0,"citation_normalized_percentile":{"value":0.0,"is_in_top_1_percent":false,"is_in_top_10_percent":false},"cited_by_percentile_year":{"min":0,"max":64},"biblio":{"volume":"1962","issue":"1","first_page":"145","last_page":"145"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T12796","display_name":"Dermatological + and COVID-19 studies","score":0.9358,"subfield":{"id":"https://openalex.org/subfields/2708","display_name":"Dermatology"},"field":{"id":"https://openalex.org/fields/27","display_name":"Medicine"},"domain":{"id":"https://openalex.org/domains/4","display_name":"Health + Sciences"}},"topics":[{"id":"https://openalex.org/T12796","display_name":"Dermatological + and COVID-19 studies","score":0.9358,"subfield":{"id":"https://openalex.org/subfields/2708","display_name":"Dermatology"},"field":{"id":"https://openalex.org/fields/27","display_name":"Medicine"},"domain":{"id":"https://openalex.org/domains/4","display_name":"Health Sciences"}}],"keywords":[{"id":"https://openalex.org/keywords/convalescent-plasma","display_name":"Convalescent plasma","score":0.9101845},{"id":"https://openalex.org/keywords/2019-20-coronavirus-outbreak","display_name":"2019-20 - coronavirus outbreak","score":0.52068794},{"id":"https://openalex.org/keywords/cutaneous-signs","display_name":"Cutaneous - Signs","score":0.434629}],"concepts":[{"id":"https://openalex.org/C3018027319","wikidata":"https://www.wikidata.org/wiki/Q420496","display_name":"Convalescent + coronavirus outbreak","score":0.52068794}],"concepts":[{"id":"https://openalex.org/C3018027319","wikidata":"https://www.wikidata.org/wiki/Q420496","display_name":"Convalescent plasma","level":5,"score":0.9101845},{"id":"https://openalex.org/C3007834351","wikidata":"https://www.wikidata.org/wiki/Q82069695","display_name":"Severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2)","level":5,"score":0.6916741},{"id":"https://openalex.org/C3008058167","wikidata":"https://www.wikidata.org/wiki/Q84263196","display_name":"Coronavirus disease 2019 (COVID-19)","level":4,"score":0.660023},{"id":"https://openalex.org/C159047783","wikidata":"https://www.wikidata.org/wiki/Q7215","display_name":"Virology","level":1,"score":0.65177965},{"id":"https://openalex.org/C203014093","wikidata":"https://www.wikidata.org/wiki/Q101929","display_name":"Immunology","level":1,"score":0.52446485},{"id":"https://openalex.org/C3006700255","wikidata":"https://www.wikidata.org/wiki/Q81068910","display_name":"2019-20 @@ -79,10 +121,10 @@ interactions: system","level":2,"score":0.43136406},{"id":"https://openalex.org/C126322002","wikidata":"https://www.wikidata.org/wiki/Q11180","display_name":"Internal medicine","level":1,"score":0.082360655},{"id":"https://openalex.org/C524204448","wikidata":"https://www.wikidata.org/wiki/Q788926","display_name":"Infectious disease (medical specialty)","level":3,"score":0.07111758},{"id":"https://openalex.org/C116675565","wikidata":"https://www.wikidata.org/wiki/Q3241045","display_name":"Outbreak","level":2,"score":0.059273064},{"id":"https://openalex.org/C2779134260","wikidata":"https://www.wikidata.org/wiki/Q12136","display_name":"Disease","level":2,"score":0.041250974}],"mesh":[],"locations_count":1,"locations":[{"is_oa":false,"landing_page_url":"https://doi.org/10.1007/s40278-023-41815-2","pdf_url":null,"source":{"id":"https://openalex.org/S14436165","display_name":"Reactions - Weekly","issn_l":"0114-9954","issn":["0114-9954","1179-2051"],"is_oa":false,"is_in_doaj":false,"is_core":true,"host_organization":"https://openalex.org/P4310320330","host_organization_name":"Adis, + Weekly","issn_l":"0114-9954","issn":["0114-9954","1179-2051"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":true,"host_organization":"https://openalex.org/P4310320330","host_organization_name":"Adis, Springer Healthcare","host_organization_lineage":["https://openalex.org/P4310319965","https://openalex.org/P4310320330"],"host_organization_lineage_names":["Springer - Nature","Adis, Springer Healthcare"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":null,"sustainable_development_goals":[{"display_name":"Good - health and well-being","score":0.4,"id":"https://metadata.un.org/sdg/3"}],"grants":[],"datasets":[],"versions":[],"referenced_works_count":1,"referenced_works":["https://openalex.org/W4308075214"],"related_works":["https://openalex.org/W4206669628","https://openalex.org/W4205317059","https://openalex.org/W4200329650","https://openalex.org/W3127156785","https://openalex.org/W3113664224","https://openalex.org/W3084498529","https://openalex.org/W3018906908","https://openalex.org/W3009669391","https://openalex.org/W3007868867","https://openalex.org/W3005417802"],"abstract_inverted_index":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W4381738344","counts_by_year":[],"updated_date":"2024-11-12T04:32:55.600912","created_date":"2023-06-24"} + Nature","Adis, Springer Healthcare"],"type":"journal"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":null,"sustainable_development_goals":[{"score":0.4,"display_name":"Good + health and well-being","id":"https://metadata.un.org/sdg/3"}],"grants":[],"datasets":[],"versions":[],"referenced_works_count":1,"referenced_works":["https://openalex.org/W4308075214"],"related_works":["https://openalex.org/W4206669628","https://openalex.org/W4205317059","https://openalex.org/W4200329650","https://openalex.org/W3127156785","https://openalex.org/W3113664224","https://openalex.org/W3084498529","https://openalex.org/W3018906908","https://openalex.org/W3009669391","https://openalex.org/W3007868867","https://openalex.org/W3005417802"],"abstract_inverted_index":null,"abstract_inverted_index_v3":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W4381738344","counts_by_year":[],"updated_date":"2025-06-13T14:03:52.178024","created_date":"2023-06-24"} ' headers: @@ -102,21 +144,21 @@ interactions: Content-Encoding: - gzip Content-Length: - - "1774" + - "1739" Content-Security-Policy: - default-src 'self'; object-src 'none' Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:32 GMT + - Mon, 11 Aug 2025 17:19:28 GMT Nel: - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' Referrer-Policy: - strict-origin-when-cross-origin Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1733168192&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=WzrrO0uMYZrwdXF6nTj390M%2F%2BiRzDIOCZJwZqsf96HM%3D"}]}' + - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1754932768&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=15QWER%2FZkHDeXmHagjekz2f9UeD3JK0If4iughdUvMo%3D"}]}' Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1733168192&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=WzrrO0uMYZrwdXF6nTj390M%2F%2BiRzDIOCZJwZqsf96HM%3D + - heroku-nel=https://nel.heroku.com/reports?ts=1754932768&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=15QWER%2FZkHDeXmHagjekz2f9UeD3JK0If4iughdUvMo%3D Server: - gunicorn Strict-Transport-Security: @@ -153,7 +195,7 @@ interactions: 2022. Available from: URL: \nhttps:\/\/seimc.org\/","DOI":"10.1016\/j.eimce.2021.01.009"}],"container-title":["Reactions Weekly"],"original-title":[],"language":"en","link":[{"URL":"https:\/\/link.springer.com\/content\/pdf\/10.1007\/s40278-023-41815-2.pdf","content-type":"application\/pdf","content-version":"vor","intended-application":"text-mining"},{"URL":"https:\/\/link.springer.com\/article\/10.1007\/s40278-023-41815-2\/fulltext.html","content-type":"text\/html","content-version":"vor","intended-application":"text-mining"},{"URL":"https:\/\/link.springer.com\/content\/pdf\/10.1007\/s40278-023-41815-2.pdf","content-type":"application\/pdf","content-version":"vor","intended-application":"similarity-checking"}],"deposited":{"date-parts":[[2023,6,23]],"date-time":"2023-06-23T19:23:18Z","timestamp":1687548198000},"score":1,"resource":{"primary":{"URL":"https:\/\/link.springer.com\/10.1007\/s40278-023-41815-2"}},"subtitle":["Fever and mild decrease in baseline oxygen saturation following off-label use: 3 - case reports"],"short-title":[],"issued":{"date-parts":[[2023,6,24]]},"references-count":1,"journal-issue":{"issue":"1","published-online":{"date-parts":[[2023,6]]}},"alternative-id":["41815"],"URL":"http:\/\/dx.doi.org\/10.1007\/s40278-023-41815-2","relation":{},"ISSN":["1179-2051"],"issn-type":[{"value":"1179-2051","type":"electronic"}],"subject":[],"published":{"date-parts":[[2023,6,24]]}}}' + case reports"],"short-title":[],"issued":{"date-parts":[[2023,6,24]]},"references-count":1,"journal-issue":{"issue":"1","published-online":{"date-parts":[[2023,6]]}},"alternative-id":["41815"],"URL":"https:\/\/doi.org\/10.1007\/s40278-023-41815-2","relation":{},"ISSN":["1179-2051"],"issn-type":[{"value":"1179-2051","type":"electronic"}],"subject":[],"published":{"date-parts":[[2023,6,24]]}}}' headers: Access-Control-Allow-Headers: - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, @@ -163,15 +205,15 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Content-Encoding: - gzip Content-Length: - - "1163" + - "1159" Content-Type: - application/json Date: - - Mon, 02 Dec 2024 19:36:32 GMT + - Mon, 11 Aug 2025 17:19:28 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -184,59 +226,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" - status: - code: 200 - message: OK - - request: - body: null - headers: {} - method: GET - uri: https://api.unpaywall.org/v2/10.1007/s40278-023-41815-2?email=example@papercrow.ai - response: - body: - string: - '{"doi": "10.1007/s40278-023-41815-2", "doi_url": "https://doi.org/10.1007/s40278-023-41815-2", - "title": "Convalescent-anti-sars-cov-2-plasma/immune-globulin", "genre": "journal-article", - "is_paratext": false, "published_date": "2023-06-24", "year": 2023, "journal_name": - "Reactions Weekly", "journal_issns": "1179-2051", "journal_issn_l": "0114-9954", - "journal_is_oa": false, "journal_is_in_doaj": false, "publisher": "Springer - Science and Business Media LLC", "is_oa": false, "oa_status": "closed", "has_repository_copy": - false, "best_oa_location": null, "first_oa_location": null, "oa_locations": - [], "oa_locations_embargoed": [], "updated": "2023-06-24T05:46:22.445497", - "data_standard": 2, "z_authors": null}' - headers: - Access-Control-Allow-Headers: - - origin, content-type, accept, x-requested-with - Access-Control-Allow-Methods: - - POST, GET, OPTIONS, PUT, DELETE, PATCH - Access-Control-Allow-Origin: - - "*" - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Length: - - "396" - Content-Type: - - application/json - Date: - - Mon, 02 Dec 2024 19:36:33 GMT - Nel: - - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' - Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1733168192&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&s=LqmqL4E3lYtXOy34G1aDK6FyQcvHdt1Jyr1ojaUWRDc%3D"}]}' - Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1733168192&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&s=LqmqL4E3lYtXOy34G1aDK6FyQcvHdt1Jyr1ojaUWRDc%3D - Server: - - gunicorn - Vary: - - Accept-Encoding - Via: - - 1.1 vegur status: code: 200 message: OK @@ -261,9 +250,9 @@ interactions: Access-Control-Expose-Headers: - Link Connection: - - close + - keep-alive Date: - - Mon, 02 Dec 2024 19:36:33 GMT + - Mon, 11 Aug 2025 17:19:28 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -276,10 +265,6 @@ interactions: - 1s x-rate-limit-limit: - "150" - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" status: code: 200 message: OK diff --git a/tests/cassettes/test_doi_search[paper_attributes3].yaml b/tests/cassettes/test_doi_search[paper_attributes3].yaml index a9b924811..3ae10df3d 100644 --- a/tests/cassettes/test_doi_search[paper_attributes3].yaml +++ b/tests/cassettes/test_doi_search[paper_attributes3].yaml @@ -12,7 +12,7 @@ interactions: "PubMed": "25666165"}, "url": "https://www.semanticscholar.org/paper/b6c4e9f285bd1b0b69b98daa47fea3d29d50c658", "title": "Pharmacokinetics, biodistribution and cell uptake of antisense oligonucleotides.", "venue": "Advanced Drug Delivery Reviews", "year": 2015, "citationCount": - 684, "influentialCitationCount": 28, "isOpenAccess": true, "openAccessPdf": + 689, "influentialCitationCount": 29, "isOpenAccess": true, "openAccessPdf": {"url": "https://doi.org/10.1016/j.addr.2015.01.008", "status": "HYBRID", "license": "CCBYNCND"}, "publicationTypes": ["Review", "JournalArticle"], "publicationDate": "2015-06-29", "journal": {"name": "Advanced drug delivery @@ -36,27 +36,79 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Jul 2025 20:55:53 GMT + - Mon, 11 Aug 2025 17:19:29 GMT Via: - - 1.1 44933b72098305e9c31fc50b2e6554a0.cloudfront.net (CloudFront) + - 1.1 62c71b579b931f194fbc7abcc843d132.cloudfront.net (CloudFront) X-Amz-Cf-Id: - - jb3T4ezJWsJ7qs6erKscjmsiAhbzwpndLFwb4dTLD8qWd8wKaGbkKg== + - zdnZUBS1IfFG7e5NKyYFNX-Rt-5iw5xMogWrKB18yQMgzXFDyzAxbw== X-Amz-Cf-Pop: - SFO53-C1 X-Cache: - Miss from cloudfront x-amz-apigw-id: - - Nt5CGFJ1PHcEelg= + - PJrlREf7vHcEsIA= x-amzn-Remapped-Connection: - keep-alive x-amzn-Remapped-Content-Length: - "1395" x-amzn-Remapped-Date: - - Mon, 14 Jul 2025 20:55:53 GMT + - Mon, 11 Aug 2025 17:19:29 GMT x-amzn-Remapped-Server: - gunicorn x-amzn-RequestId: - - 2c72ede8-09f2-4336-9843-c67240949327 + - 9a237738-16b9-4dc9-8fb0-eb9cbda7f47a + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.unpaywall.org/v2/10.1016/j.addr.2015.01.008?email=example@papercrow.ai + response: + body: + string: + '{"doi":"10.1016/j.addr.2015.01.008","doi_url":"https://doi.org/10.1016/j.addr.2015.01.008","title":"Pharmacokinetics, + biodistribution and cell uptake of antisense oligonucleotides","genre":"journal-article","is_paratext":false,"published_date":"2015-02-07","year":2015,"journal_name":"Advanced + Drug Delivery Reviews","journal_issns":"0169-409X,1872-8294","journal_issn_l":"0169-409X","journal_is_oa":false,"journal_is_in_doaj":false,"publisher":"Elsevier + BV","is_oa":true,"oa_status":"hybrid","has_repository_copy":false,"best_oa_location":{"url":"https://doi.org/10.1016/j.addr.2015.01.008","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.addr.2015.01.008","evidence":"deprecated","license":"cc-by-nc-nd","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2015-02-07","updated":"deprecated"},"first_oa_location":{"url":"https://doi.org/10.1016/j.addr.2015.01.008","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.addr.2015.01.008","evidence":"deprecated","license":"cc-by-nc-nd","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2015-02-07","updated":"deprecated"},"oa_locations":[{"url":"https://doi.org/10.1016/j.addr.2015.01.008","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.addr.2015.01.008","evidence":"deprecated","license":"cc-by-nc-nd","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2015-02-07","updated":"deprecated"}],"oa_locations_embargoed":[],"data_standard":2,"z_authors":[{"author_position":"first","raw_author_name":"Richard + S. Geary","is_corresponding":true,"raw_affiliation_strings":["Isis Pharmaceuticals, + Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]},{"author_position":"additional","raw_author_name":"Daniel + Norris","is_corresponding":false,"raw_affiliation_strings":["Isis Pharmaceuticals, + Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]},{"author_position":"additional","raw_author_name":"Rosie + Yu","is_corresponding":false,"raw_affiliation_strings":["Isis Pharmaceuticals, + Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]},{"author_position":"last","raw_author_name":"C. + Frank Bennett","is_corresponding":false,"raw_affiliation_strings":["Isis Pharmaceuticals, + Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]}],"updated":"2025-05-22T18:42:22Z"} + + ' + headers: + Access-Control-Allow-Headers: + - origin, content-type, accept, x-requested-with + Access-Control-Allow-Methods: + - POST, GET, OPTIONS, PUT, DELETE, PATCH + Access-Control-Allow-Origin: + - "*" + Content-Encoding: + - gzip + Content-Length: + - "710" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:29 GMT + Nel: + - '{"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}' + Report-To: + - '{"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=p2zumZtb6atBFBa6s%2F3eLjzx3a4bWquEJZf0iL3f3Nw%3D\u0026sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add\u0026ts=1754932769"}],"max_age":3600}' + Reporting-Endpoints: + - heroku-nel="https://nel.heroku.com/reports?s=p2zumZtb6atBFBa6s%2F3eLjzx3a4bWquEJZf0iL3f3Nw%3D&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&ts=1754932769" + Server: + - Heroku + Vary: + - Accept-Encoding + Via: + - 1.1 heroku-router status: code: 200 message: OK @@ -68,9 +120,9 @@ interactions: response: body: string: - '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,7,14]],"date-time":"2025-07-14T20:34:28Z","timestamp":1752525268401},"reference-count":43,"publisher":"Elsevier + '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,8,6]],"date-time":"2025-08-06T12:45:34Z","timestamp":1754484334089},"reference-count":43,"publisher":"Elsevier BV","license":[{"start":{"date-parts":[[2015,6,1]],"date-time":"2015-06-01T00:00:00Z","timestamp":1433116800000},"content-version":"tdm","delay-in-days":0,"URL":"https:\/\/www.elsevier.com\/tdm\/userlicense\/1.0\/"},{"start":{"date-parts":[[2015,2,6]],"date-time":"2015-02-06T00:00:00Z","timestamp":1423180800000},"content-version":"vor","delay-in-days":0,"URL":"http:\/\/creativecommons.org\/licenses\/by-nc-nd\/4.0\/"}],"content-domain":{"domain":["elsevier.com","sciencedirect.com"],"crossmark-restriction":true},"short-container-title":["Advanced - Drug Delivery Reviews"],"published-print":{"date-parts":[[2015,6]]},"DOI":"10.1016\/j.addr.2015.01.008","type":"journal-article","created":{"date-parts":[[2015,2,7]],"date-time":"2015-02-07T16:40:26Z","timestamp":1423327226000},"page":"46-51","update-policy":"http:\/\/dx.doi.org\/10.1016\/elsevier_cm_policy","source":"Crossref","is-referenced-by-count":716,"special_numbering":"C","title":["Pharmacokinetics, + Drug Delivery Reviews"],"published-print":{"date-parts":[[2015,6]]},"DOI":"10.1016\/j.addr.2015.01.008","type":"journal-article","created":{"date-parts":[[2015,2,7]],"date-time":"2015-02-07T16:40:26Z","timestamp":1423327226000},"page":"46-51","update-policy":"http:\/\/dx.doi.org\/10.1016\/elsevier_cm_policy","source":"Crossref","is-referenced-by-count":724,"special_numbering":"C","title":["Pharmacokinetics, biodistribution and cell uptake of antisense oligonucleotides"],"prefix":"10.1016","volume":"87","author":[{"given":"Richard S.","family":"Geary","sequence":"first","affiliation":[]},{"given":"Daniel","family":"Norris","sequence":"additional","affiliation":[]},{"given":"Rosie","family":"Yu","sequence":"additional","affiliation":[]},{"given":"C. Frank","family":"Bennett","sequence":"additional","affiliation":[]}],"member":"78","reference":[{"key":"10.1016\/j.addr.2015.01.008_bb0005","series-title":"Antisense @@ -205,11 +257,11 @@ interactions: Content-Encoding: - gzip Content-Length: - - "5116" + - "5118" Content-Type: - application/json Date: - - Mon, 14 Jul 2025 20:55:54 GMT + - Mon, 11 Aug 2025 17:19:29 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -218,9 +270,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -258,7 +310,7 @@ interactions: Pharmaceuticals (United States)","ror":"https://ror.org/00t8bew53","country_code":"US","type":"funder","lineage":["https://openalex.org/I2800035258"]}],"countries":["US"],"is_corresponding":false,"raw_author_name":"C. Frank Bennett","raw_affiliation_strings":["Isis Pharmaceuticals Inc, 2855 Gazelle Court, Carlsbad, CA 92010, USA."],"affiliations":[{"raw_affiliation_string":"Isis - Pharmaceuticals Inc, 2855 Gazelle Court, Carlsbad, CA 92010, USA.","institution_ids":["https://openalex.org/I2800035258"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":{"value":5150,"currency":"USD","value_usd":5150},"apc_paid":{"value":5150,"currency":"USD","value_usd":5150},"fwci":7.511,"has_fulltext":false,"cited_by_count":740,"citation_normalized_percentile":{"value":0.999763,"is_in_top_1_percent":true,"is_in_top_10_percent":true},"cited_by_percentile_year":{"min":99,"max":100},"biblio":{"volume":"87","issue":null,"first_page":"46","last_page":"51"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T10725","display_name":"RNA + Pharmaceuticals Inc, 2855 Gazelle Court, Carlsbad, CA 92010, USA.","institution_ids":["https://openalex.org/I2800035258"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":{"value":5150,"currency":"USD","value_usd":5150},"apc_paid":{"value":5150,"currency":"USD","value_usd":5150},"fwci":7.509,"has_fulltext":false,"cited_by_count":750,"citation_normalized_percentile":{"value":0.999758,"is_in_top_1_percent":true,"is_in_top_10_percent":true},"cited_by_percentile_year":{"min":99,"max":100},"biblio":{"volume":"87","issue":null,"first_page":"46","last_page":"51"},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T10725","display_name":"RNA Interference and Gene Delivery","score":0.9999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life @@ -300,7 +352,7 @@ interactions: Institutes of Health"],"type":"repository"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1016/j.addr.2015.01.008","pdf_url":null,"source":{"id":"https://openalex.org/S114437232","display_name":"Advanced Drug Delivery Reviews","issn_l":"0169-409X","issn":["0169-409X","1872-8294"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320990","host_organization_name":"Elsevier BV","host_organization_lineage":["https://openalex.org/P4310320990"],"host_organization_lineage_names":["Elsevier - BV"],"type":"journal"},"license":"cc-by-nc-nd","license_id":"https://openalex.org/licenses/cc-by-nc-nd","version":"publishedVersion","is_accepted":true,"is_published":true},"sustainable_development_goals":[],"grants":[],"datasets":[],"versions":[],"referenced_works_count":42,"referenced_works":["https://openalex.org/W1533447420","https://openalex.org/W1600624961","https://openalex.org/W1677186713","https://openalex.org/W1738068946","https://openalex.org/W1972326561","https://openalex.org/W1988582067","https://openalex.org/W1995770815","https://openalex.org/W1997188614","https://openalex.org/W2010757394","https://openalex.org/W2018328995","https://openalex.org/W2019957038","https://openalex.org/W2026934511","https://openalex.org/W2032426626","https://openalex.org/W2044204671","https://openalex.org/W2044851147","https://openalex.org/W2050679356","https://openalex.org/W2052322311","https://openalex.org/W2061092005","https://openalex.org/W2069146205","https://openalex.org/W2081746459","https://openalex.org/W2090804804","https://openalex.org/W2095509700","https://openalex.org/W2095949497","https://openalex.org/W2112909190","https://openalex.org/W2115222513","https://openalex.org/W2116500202","https://openalex.org/W2117701024","https://openalex.org/W2120682296","https://openalex.org/W2128768698","https://openalex.org/W2130886644","https://openalex.org/W2131447660","https://openalex.org/W2149414920","https://openalex.org/W2157668743","https://openalex.org/W2167400349","https://openalex.org/W2169218609","https://openalex.org/W2171234404","https://openalex.org/W2174292614","https://openalex.org/W2497851393","https://openalex.org/W2497937268","https://openalex.org/W2504686134","https://openalex.org/W2517077698","https://openalex.org/W84014429"],"related_works":["https://openalex.org/W3148766288","https://openalex.org/W3095294796","https://openalex.org/W3032237923","https://openalex.org/W3030179994","https://openalex.org/W2385718423","https://openalex.org/W2359190752","https://openalex.org/W2046280088","https://openalex.org/W1969303838","https://openalex.org/W16113689","https://openalex.org/W1505739641"],"abstract_inverted_index":{"Pharmacokinetic":[0],"properties":[1],"of":[2,9,24,41,45,71,166,194,198,209],"oligonucleotides":[3,140,151,199,211],"are":[4,14,115],"largely":[5],"driven":[6],"by":[7,29,120,132,153,187],"chemistry":[8],"the":[10,50,72,75,100,144,157,162,195,213],"backbone":[11],"and":[12,37,60,64,82,88,109,117,124,136,184,206],"thus":[13],"sequence":[15],"independent":[16],"within":[17],"a":[18,179],"chemical":[19],"class.":[20],"Tissue":[21],"bioavailability":[22,103],"(%":[23],"administered":[25,152],"dose)":[26],"is":[27,107,129,185],"assisted":[28],"plasma":[30,58,61],"protein":[31,62],"binding":[32,63,80],"that":[33],"limits":[34],"glomerular":[35],"filtration":[36],"ultimate":[38,207],"urinary":[39],"excretion":[40],"oligonucleotides.":[42],"The":[43,164],"substitution":[44],"one":[46],"non-bridging":[47],"oxygen":[48],"with":[49,112],"more":[51],"hydrophobic":[52],"sulfur":[53],"atom":[54],"(phosphorothioate)":[55],"increases":[56],"both":[57],"stability":[59],"thus,":[65],"ultimately,":[66],"tissue":[67,86,102],"bioavailability.":[68],"Additional":[69],"modifications":[70],"sugar":[73],"at":[74],"2''":[76],"position,":[77],"increase":[78,84],"RNA":[79,90],"affinity":[81],"significantly":[83],"potency,":[85],"half-life":[87],"prolong":[89],"inhibitory":[91],"activity.":[92],"Oligonucleotides":[93],"modified":[94,149],"in":[95,161,177,204,212],"this":[96],"manner":[97],"consistently":[98],"exhibit":[99],"highest":[101,113],"(>90%).":[104],"Systemic":[105],"biodistribution":[106],"broad,":[108],"organs":[110],"typically":[111],"concentrations":[114],"liver":[116],"kidney":[118],"followed":[119],"bone":[121],"marrow,":[122],"adipocytes,":[123],"lymph":[125],"nodes.":[126],"Cell":[127],"uptake":[128,190],"predominantly":[130],"mediated":[131],"endocytosis.":[133],"Both":[134],"size":[135],"charge":[137],"for":[138],"most":[139],"prevents":[141],"distribution":[142,169],"across":[143],"blood":[145],"brain":[146],"barrier.":[147],"However,":[148],"single-strand":[150],"intrathecal":[154],"injection":[155],"into":[156],"CSF":[158],"distribute":[159],"broadly":[160],"CNS.":[163],"majority":[165],"intracellular":[167,196],"oligonucleotide":[168],"following":[170,182],"systemic":[171],"or":[172],"local":[173],"administration":[174,183],"occurs":[175],"rapidly":[176],"just":[178],"few":[180],"hours":[181],"facilitated":[186],"rapid":[188],"endocytotic":[189],"mechanisms.":[191],"Further":[192],"understanding":[193],"trafficking":[197],"may":[200],"provide":[201],"further":[202],"enhancements":[203],"design":[205],"potency":[208],"antisense":[210],"future.":[214]},"abstract_inverted_index_v3":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W2033425827","counts_by_year":[{"year":2025,"cited_by_count":29},{"year":2024,"cited_by_count":80},{"year":2023,"cited_by_count":76},{"year":2022,"cited_by_count":79},{"year":2021,"cited_by_count":94},{"year":2020,"cited_by_count":93},{"year":2019,"cited_by_count":95},{"year":2018,"cited_by_count":72},{"year":2017,"cited_by_count":63},{"year":2016,"cited_by_count":45},{"year":2015,"cited_by_count":13}],"updated_date":"2025-06-15T22:17:21.455414","created_date":"2016-06-24"} + BV"],"type":"journal"},"license":"cc-by-nc-nd","license_id":"https://openalex.org/licenses/cc-by-nc-nd","version":"publishedVersion","is_accepted":true,"is_published":true},"sustainable_development_goals":[],"grants":[],"datasets":[],"versions":[],"referenced_works_count":42,"referenced_works":["https://openalex.org/W1533447420","https://openalex.org/W1600624961","https://openalex.org/W1677186713","https://openalex.org/W1738068946","https://openalex.org/W1972326561","https://openalex.org/W1988582067","https://openalex.org/W1995770815","https://openalex.org/W1997188614","https://openalex.org/W2010757394","https://openalex.org/W2018328995","https://openalex.org/W2019957038","https://openalex.org/W2026934511","https://openalex.org/W2032426626","https://openalex.org/W2044204671","https://openalex.org/W2044851147","https://openalex.org/W2050679356","https://openalex.org/W2052322311","https://openalex.org/W2061092005","https://openalex.org/W2069146205","https://openalex.org/W2081746459","https://openalex.org/W2090804804","https://openalex.org/W2095509700","https://openalex.org/W2095949497","https://openalex.org/W2112909190","https://openalex.org/W2115222513","https://openalex.org/W2116500202","https://openalex.org/W2117701024","https://openalex.org/W2120682296","https://openalex.org/W2128768698","https://openalex.org/W2130886644","https://openalex.org/W2131447660","https://openalex.org/W2149414920","https://openalex.org/W2157668743","https://openalex.org/W2167400349","https://openalex.org/W2169218609","https://openalex.org/W2171234404","https://openalex.org/W2174292614","https://openalex.org/W2497851393","https://openalex.org/W2497937268","https://openalex.org/W2504686134","https://openalex.org/W2517077698","https://openalex.org/W84014429"],"related_works":["https://openalex.org/W3148766288","https://openalex.org/W3095294796","https://openalex.org/W3032237923","https://openalex.org/W3030179994","https://openalex.org/W2385718423","https://openalex.org/W2359190752","https://openalex.org/W2046280088","https://openalex.org/W1969303838","https://openalex.org/W16113689","https://openalex.org/W1505739641"],"abstract_inverted_index":{"Pharmacokinetic":[0],"properties":[1],"of":[2,9,24,41,45,71,166,194,198,209],"oligonucleotides":[3,140,151,199,211],"are":[4,14,115],"largely":[5],"driven":[6],"by":[7,29,120,132,153,187],"chemistry":[8],"the":[10,50,72,75,100,144,157,162,195,213],"backbone":[11],"and":[12,37,60,64,82,88,109,117,124,136,184,206],"thus":[13],"sequence":[15],"independent":[16],"within":[17],"a":[18,179],"chemical":[19],"class.":[20],"Tissue":[21],"bioavailability":[22,103],"(%":[23],"administered":[25,152],"dose)":[26],"is":[27,107,129,185],"assisted":[28],"plasma":[30,58,61],"protein":[31,62],"binding":[32,63,80],"that":[33],"limits":[34],"glomerular":[35],"filtration":[36],"ultimate":[38,207],"urinary":[39],"excretion":[40],"oligonucleotides.":[42],"The":[43,164],"substitution":[44],"one":[46],"non-bridging":[47],"oxygen":[48],"with":[49,112],"more":[51],"hydrophobic":[52],"sulfur":[53],"atom":[54],"(phosphorothioate)":[55],"increases":[56],"both":[57],"stability":[59],"thus,":[65],"ultimately,":[66],"tissue":[67,86,102],"bioavailability.":[68],"Additional":[69],"modifications":[70],"sugar":[73],"at":[74],"2''":[76],"position,":[77],"increase":[78,84],"RNA":[79,90],"affinity":[81],"significantly":[83],"potency,":[85],"half-life":[87],"prolong":[89],"inhibitory":[91],"activity.":[92],"Oligonucleotides":[93],"modified":[94,149],"in":[95,161,177,204,212],"this":[96],"manner":[97],"consistently":[98],"exhibit":[99],"highest":[101,113],"(>90%).":[104],"Systemic":[105],"biodistribution":[106],"broad,":[108],"organs":[110],"typically":[111],"concentrations":[114],"liver":[116],"kidney":[118],"followed":[119],"bone":[121],"marrow,":[122],"adipocytes,":[123],"lymph":[125],"nodes.":[126],"Cell":[127],"uptake":[128,190],"predominantly":[130],"mediated":[131],"endocytosis.":[133],"Both":[134],"size":[135],"charge":[137],"for":[138],"most":[139],"prevents":[141],"distribution":[142,169],"across":[143],"blood":[145],"brain":[146],"barrier.":[147],"However,":[148],"single-strand":[150],"intrathecal":[154],"injection":[155],"into":[156],"CSF":[158],"distribute":[159],"broadly":[160],"CNS.":[163],"majority":[165],"intracellular":[167,196],"oligonucleotide":[168],"following":[170,182],"systemic":[171],"or":[172],"local":[173],"administration":[174,183],"occurs":[175],"rapidly":[176],"just":[178],"few":[180],"hours":[181],"facilitated":[186],"rapid":[188],"endocytotic":[189],"mechanisms.":[191],"Further":[192],"understanding":[193],"trafficking":[197],"may":[200],"provide":[201],"further":[202],"enhancements":[203],"design":[205],"potency":[208],"antisense":[210],"future.":[214]},"abstract_inverted_index_v3":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W2033425827","counts_by_year":[{"year":2025,"cited_by_count":40},{"year":2024,"cited_by_count":80},{"year":2023,"cited_by_count":76},{"year":2022,"cited_by_count":79},{"year":2021,"cited_by_count":94},{"year":2020,"cited_by_count":93},{"year":2019,"cited_by_count":95},{"year":2018,"cited_by_count":72},{"year":2017,"cited_by_count":63},{"year":2016,"cited_by_count":45},{"year":2015,"cited_by_count":13}],"updated_date":"2025-08-05T21:18:48.446178","created_date":"2016-06-24"} ' headers: @@ -320,21 +372,21 @@ interactions: Content-Encoding: - gzip Content-Length: - - "4321" + - "4325" Content-Security-Policy: - default-src 'self'; object-src 'none' Content-Type: - application/json Date: - - Mon, 14 Jul 2025 20:55:54 GMT + - Mon, 11 Aug 2025 17:19:29 GMT Nel: - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' Referrer-Policy: - strict-origin-when-cross-origin Report-To: - - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1752526554&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=hm2tkU1ZrBzPQs33UeWRXwEw9ERXaDFyHBRGBdQfhJY%3D"}]}' + - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1754932769&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=sD3bKQN6asGgidblvjWIJHj1XLNt1QAJAuWDu3ySc2A%3D"}]}' Reporting-Endpoints: - - heroku-nel=https://nel.heroku.com/reports?ts=1752526554&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=hm2tkU1ZrBzPQs33UeWRXwEw9ERXaDFyHBRGBdQfhJY%3D + - heroku-nel=https://nel.heroku.com/reports?ts=1754932769&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=sD3bKQN6asGgidblvjWIJHj1XLNt1QAJAuWDu3ySc2A%3D Server: - gunicorn Strict-Transport-Security: @@ -354,58 +406,6 @@ interactions: status: code: 200 message: OK - - request: - body: null - headers: {} - method: GET - uri: https://api.unpaywall.org/v2/10.1016/j.addr.2015.01.008?email=example@papercrow.ai - response: - body: - string: - '{"doi":"10.1016/j.addr.2015.01.008","doi_url":"https://doi.org/10.1016/j.addr.2015.01.008","title":"Pharmacokinetics, - biodistribution and cell uptake of antisense oligonucleotides","genre":"journal-article","is_paratext":false,"published_date":"2015-02-07","year":2015,"journal_name":"Advanced - Drug Delivery Reviews","journal_issns":"0169-409X,1872-8294","journal_issn_l":"0169-409X","journal_is_oa":false,"journal_is_in_doaj":false,"publisher":"Elsevier - BV","is_oa":true,"oa_status":"hybrid","has_repository_copy":false,"best_oa_location":{"url":"https://doi.org/10.1016/j.addr.2015.01.008","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.addr.2015.01.008","evidence":"deprecated","license":"cc-by-nc-nd","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2015-02-07","updated":"deprecated"},"first_oa_location":{"url":"https://doi.org/10.1016/j.addr.2015.01.008","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.addr.2015.01.008","evidence":"deprecated","license":"cc-by-nc-nd","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2015-02-07","updated":"deprecated"},"oa_locations":[{"url":"https://doi.org/10.1016/j.addr.2015.01.008","url_for_pdf":null,"url_for_landing_page":"https://doi.org/10.1016/j.addr.2015.01.008","evidence":"deprecated","license":"cc-by-nc-nd","version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2015-02-07","updated":"deprecated"}],"oa_locations_embargoed":[],"data_standard":2,"z_authors":[{"author_position":"first","raw_author_name":"Richard - S. Geary","is_corresponding":true,"raw_affiliation_strings":["Isis Pharmaceuticals, - Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]},{"author_position":"additional","raw_author_name":"Daniel - Norris","is_corresponding":false,"raw_affiliation_strings":["Isis Pharmaceuticals, - Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]},{"author_position":"additional","raw_author_name":"Rosie - Yu","is_corresponding":false,"raw_affiliation_strings":["Isis Pharmaceuticals, - Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]},{"author_position":"last","raw_author_name":"C. - Frank Bennett","is_corresponding":false,"raw_affiliation_strings":["Isis Pharmaceuticals, - Inc., 2855 Gazelle Court, Carlsbad, CA 92010, USA"]}],"updated":"2025-05-22T18:42:22Z"} - - ' - headers: - Access-Control-Allow-Headers: - - origin, content-type, accept, x-requested-with - Access-Control-Allow-Methods: - - POST, GET, OPTIONS, PUT, DELETE, PATCH - Access-Control-Allow-Origin: - - "*" - Content-Encoding: - - gzip - Content-Length: - - "710" - Content-Type: - - application/json - Date: - - Mon, 14 Jul 2025 20:55:54 GMT - Nel: - - '{"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}' - Report-To: - - '{"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=CtklN17S3kQDxKZbOxZ1nTjzIJsmcIkxKCcCR%2FFDwoM%3D\u0026sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add\u0026ts=1752526554"}],"max_age":3600}' - Reporting-Endpoints: - - heroku-nel="https://nel.heroku.com/reports?s=CtklN17S3kQDxKZbOxZ1nTjzIJsmcIkxKCcCR%2FFDwoM%3D&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&ts=1752526554" - Server: - - Heroku - Vary: - - Accept-Encoding - Via: - - 1.1 heroku-router - status: - code: 200 - message: OK - request: body: null headers: {} @@ -431,7 +431,7 @@ interactions: Connection: - keep-alive Date: - - Mon, 14 Jul 2025 20:55:54 GMT + - Mon, 11 Aug 2025 17:19:29 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -440,9 +440,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/cassettes/test_doi_search[paper_attributes4].yaml b/tests/cassettes/test_doi_search[paper_attributes4].yaml new file mode 100644 index 000000000..29ce6bd7d --- /dev/null +++ b/tests/cassettes/test_doi_search[paper_attributes4].yaml @@ -0,0 +1,404 @@ +interactions: + - request: + body: null + headers: {} + method: GET + uri: https://api.semanticscholar.org/graph/v1/paper/DOI:10.1073/pnas.1414271111?fields=authors,citationCount,citationStyles,externalIds,influentialCitationCount,isOpenAccess,journal,openAccessPdf,publicationDate,publicationTypes,title,url,venue,year + response: + body: + string: + '{"paperId": "db3720c812a462ef955d5654b65ca9189d4b8372", "externalIds": + {"MAG": "2109415576", "DOI": "10.1073/pnas.1414271111", "CorpusId": 10888161, + "PubMed": "25349395"}, "url": "https://www.semanticscholar.org/paper/db3720c812a462ef955d5654b65ca9189d4b8372", + "title": "Developing functional musculoskeletal tissues through hypoxia and + lysyl oxidase-induced collagen cross-linking", "venue": "Proceedings of the + National Academy of Sciences of the United States of America", "year": 2014, + "citationCount": 136, "influentialCitationCount": 4, "isOpenAccess": true, + "openAccessPdf": {"url": "https://www.pnas.org/content/pnas/111/45/E4832.full.pdf", + "status": "BRONZE", "license": null}, "publicationTypes": ["JournalArticle"], + "publicationDate": "2014-10-27", "journal": {"name": "Proceedings of the National + Academy of Sciences", "pages": "E4832 - E4841", "volume": "111"}, "citationStyles": + {"bibtex": "@Article{Makris2014DevelopingFM,\n author = {Eleftherios Makris + and D. Responte and N. Paschos and Jerry C. Hu and Kyriacos, \u039a\u03c5\u03c1\u03b9\u03ac\u03ba\u03bf\u03c2, + Athanasiou, \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5},\n booktitle + = {Proceedings of the National Academy of Sciences of the United States of + America},\n journal = {Proceedings of the National Academy of Sciences},\n + pages = {E4832 - E4841},\n title = {Developing functional musculoskeletal + tissues through hypoxia and lysyl oxidase-induced collagen cross-linking},\n + volume = {111},\n year = {2014}\n}\n"}, "authors": [{"authorId": "50040319", + "name": "Eleftherios Makris"}, {"authorId": "5165779", "name": "D. Responte"}, + {"authorId": "3776061", "name": "N. Paschos"}, {"authorId": "32210454", "name": + "Jerry C. Hu"}, {"authorId": "2541052", "name": "Kyriacos, \u039a\u03c5\u03c1\u03b9\u03ac\u03ba\u03bf\u03c2, + Athanasiou, \u0391\u03b8\u03b1\u03bd\u03b1\u03c3\u03af\u03bf\u03c5"}]} + + ' + headers: + Access-Control-Allow-Origin: + - "*" + Connection: + - keep-alive + Content-Length: + - "1878" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:30 GMT + Via: + - 1.1 62c71b579b931f194fbc7abcc843d132.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - cumqESI1FbwB9N55xIjRnvCnz9aSvtsDAEwpmh-VDH3Q1mJo5hI5cQ== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + x-amz-apigw-id: + - PJrlZG3FvHcEpTw= + x-amzn-Remapped-Connection: + - keep-alive + x-amzn-Remapped-Content-Length: + - "1878" + x-amzn-Remapped-Date: + - Mon, 11 Aug 2025 17:19:30 GMT + x-amzn-Remapped-Server: + - gunicorn + x-amzn-RequestId: + - 79505a96-b797-4069-8883-8b15e539a63e + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.unpaywall.org/v2/10.1073/pnas.1414271111?email=example@papercrow.ai + response: + body: + string: + '{"doi":"10.1073/pnas.1414271111","doi_url":"https://doi.org/10.1073/pnas.1414271111","title":"Developing + functional musculoskeletal tissues through hypoxia and lysyl oxidase-induced + collagen cross-linking","genre":"journal-article","is_paratext":false,"published_date":"2014-10-27","year":2014,"journal_name":"Proceedings + of the National Academy of Sciences","journal_issns":"0027-8424,1091-6490","journal_issn_l":"0027-8424","journal_is_oa":false,"journal_is_in_doaj":false,"publisher":"Proceedings + of the National Academy of Sciences","is_oa":true,"oa_status":"bronze","has_repository_copy":true,"best_oa_location":{"url":"https://www.pnas.org/content/pnas/111/45/E4832.full.pdf","url_for_pdf":"https://www.pnas.org/content/pnas/111/45/E4832.full.pdf","url_for_landing_page":"https://doi.org/10.1073/pnas.1414271111","evidence":"deprecated","license":null,"version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2014-10-27","updated":"deprecated"},"first_oa_location":{"url":"https://www.pnas.org/content/pnas/111/45/E4832.full.pdf","url_for_pdf":"https://www.pnas.org/content/pnas/111/45/E4832.full.pdf","url_for_landing_page":"https://doi.org/10.1073/pnas.1414271111","evidence":"deprecated","license":null,"version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2014-10-27","updated":"deprecated"},"oa_locations":[{"url":"https://www.pnas.org/content/pnas/111/45/E4832.full.pdf","url_for_pdf":"https://www.pnas.org/content/pnas/111/45/E4832.full.pdf","url_for_landing_page":"https://doi.org/10.1073/pnas.1414271111","evidence":"deprecated","license":null,"version":"publishedVersion","host_type":"publisher","is_best":true,"pmh_id":null,"endpoint_id":null,"repository_institution":null,"oa_date":"2014-10-27","updated":"deprecated"},{"url":"http://doi.org/10.1073/pnas.1414271111","url_for_pdf":null,"url_for_landing_page":"http://doi.org/10.1073/pnas.1414271111","evidence":"deprecated","license":null,"version":"submittedVersion","host_type":"repository","is_best":false,"pmh_id":"oai:pubmedcentral.nih.gov:4234579","endpoint_id":"daaf77eacc58eec31bb","repository_institution":"PubMed + Central","oa_date":"2014-10-27","updated":"deprecated"}],"oa_locations_embargoed":[],"data_standard":2,"z_authors":[{"author_position":"first","raw_author_name":"Eleftherios + A. Makris","is_corresponding":true,"raw_affiliation_strings":["Departments + of aBiomedical Engineering and"]},{"author_position":"additional","raw_author_name":"Donald + J. Responte","is_corresponding":false,"raw_affiliation_strings":["Departments + of aBiomedical Engineering and"]},{"author_position":"additional","raw_author_name":"Nikolaos + K. Paschos","is_corresponding":false,"raw_affiliation_strings":["Departments + of aBiomedical Engineering and"]},{"author_position":"additional","raw_author_name":"Jerry + C. Hu","is_corresponding":false,"raw_affiliation_strings":["Departments of + aBiomedical Engineering and"]},{"author_position":"last","raw_author_name":"Kyriacos + A. Athanasiou","is_corresponding":false,"raw_affiliation_strings":["Departments + of aBiomedical Engineering and","Orthopedic Surgery, University of California, + Davis, CA 95616"]}],"updated":"2025-07-30T14:23:20Z"} + + ' + headers: + Access-Control-Allow-Headers: + - origin, content-type, accept, x-requested-with + Access-Control-Allow-Methods: + - POST, GET, OPTIONS, PUT, DELETE, PATCH + Access-Control-Allow-Origin: + - "*" + Content-Encoding: + - gzip + Content-Length: + - "893" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:30 GMT + Nel: + - '{"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}' + Report-To: + - '{"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=Isjho8%2FN2SI2ew95JtnBJUvdXq32anr4OEHS3Qz6uBo%3D\u0026sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add\u0026ts=1754932770"}],"max_age":3600}' + Reporting-Endpoints: + - heroku-nel="https://nel.heroku.com/reports?s=Isjho8%2FN2SI2ew95JtnBJUvdXq32anr4OEHS3Qz6uBo%3D&sid=c46efe9b-d3d2-4a0c-8c76-bfafa16c5add&ts=1754932770" + Server: + - Heroku + Vary: + - Accept-Encoding + Via: + - 1.1 heroku-router + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.openalex.org/works/https://doi.org/10.1073%2Fpnas.1414271111 + response: + body: + string: + '{"id":"https://openalex.org/W2109415576","doi":"https://doi.org/10.1073/pnas.1414271111","title":"Developing + functional musculoskeletal tissues through hypoxia and lysyl oxidase-induced + collagen cross-linking","display_name":"Developing functional musculoskeletal + tissues through hypoxia and lysyl oxidase-induced collagen cross-linking","publication_year":2014,"publication_date":"2014-10-27","ids":{"openalex":"https://openalex.org/W2109415576","doi":"https://doi.org/10.1073/pnas.1414271111","mag":"2109415576","pmid":"https://pubmed.ncbi.nlm.nih.gov/25349395","pmcid":"https://www.ncbi.nlm.nih.gov/pmc/articles/4234579"},"language":"en","primary_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1073/pnas.1414271111","pdf_url":null,"source":{"id":"https://openalex.org/S125754415","display_name":"Proceedings + of the National Academy of Sciences","issn_l":"0027-8424","issn":["0027-8424","1091-6490"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320052","host_organization_name":"National + Academy of Sciences","host_organization_lineage":["https://openalex.org/P4310320052"],"host_organization_lineage_names":["National + Academy of Sciences"],"type":"journal"},"license":null,"license_id":null,"version":"publishedVersion","is_accepted":true,"is_published":true},"type":"article","type_crossref":"journal-article","indexed_in":["crossref","pubmed"],"open_access":{"is_oa":true,"oa_status":"bronze","oa_url":"https://doi.org/10.1073/pnas.1414271111","any_repository_has_fulltext":true},"authorships":[{"author_position":"first","author":{"id":"https://openalex.org/A5004589339","display_name":"Eleftherios + Makris","orcid":"https://orcid.org/0000-0003-4136-4620"},"institutions":[],"countries":[],"is_corresponding":false,"raw_author_name":"Eleftherios + A. Makris","raw_affiliation_strings":["Departments of Biomedical Engineering + and."],"affiliations":[{"raw_affiliation_string":"Departments of Biomedical + Engineering and.","institution_ids":[]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5043066789","display_name":"Donald + J. Responte","orcid":null},"institutions":[],"countries":[],"is_corresponding":false,"raw_author_name":"Donald + J. Responte","raw_affiliation_strings":["Departments of Biomedical Engineering + and."],"affiliations":[{"raw_affiliation_string":"Departments of Biomedical + Engineering and.","institution_ids":[]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5002193027","display_name":"Nikolaos + K. Paschos","orcid":"https://orcid.org/0000-0002-1689-6636"},"institutions":[],"countries":[],"is_corresponding":false,"raw_author_name":"Nikolaos + K. Paschos","raw_affiliation_strings":["Departments of Biomedical Engineering + and."],"affiliations":[{"raw_affiliation_string":"Departments of Biomedical + Engineering and.","institution_ids":[]}]},{"author_position":"middle","author":{"id":"https://openalex.org/A5082324061","display_name":"Jerry + C. Hu","orcid":"https://orcid.org/0000-0003-0651-1461"},"institutions":[],"countries":[],"is_corresponding":false,"raw_author_name":"Jerry + C. Hu","raw_affiliation_strings":["Departments of Biomedical Engineering and."],"affiliations":[{"raw_affiliation_string":"Departments + of Biomedical Engineering and.","institution_ids":[]}]},{"author_position":"last","author":{"id":"https://openalex.org/A5001646095","display_name":"Kyriacos + A. Athanasiou","orcid":"https://orcid.org/0000-0001-5387-8405"},"institutions":[{"id":"https://openalex.org/I84218800","display_name":"University + of California, Davis","ror":"https://ror.org/05rrcem69","country_code":"US","type":"funder","lineage":["https://openalex.org/I84218800"]}],"countries":["US"],"is_corresponding":false,"raw_author_name":"Kyriacos + A. Athanasiou","raw_affiliation_strings":["Departments of aBiomedical Engineering + and","bOrthopedic Surgery, University of California, Davis, CA 95616"],"affiliations":[{"raw_affiliation_string":"Departments + of aBiomedical Engineering and","institution_ids":[]},{"raw_affiliation_string":"bOrthopedic + Surgery, University of California, Davis, CA 95616","institution_ids":["https://openalex.org/I84218800"]}]}],"institution_assertions":[],"countries_distinct_count":1,"institutions_distinct_count":1,"corresponding_author_ids":[],"corresponding_institution_ids":[],"apc_list":null,"apc_paid":null,"fwci":4.312,"has_fulltext":true,"fulltext_origin":"pdf","cited_by_count":138,"citation_normalized_percentile":{"value":0.999986,"is_in_top_1_percent":true,"is_in_top_10_percent":true},"cited_by_percentile_year":{"min":98,"max":99},"biblio":{"volume":"111","issue":"45","first_page":null,"last_page":null},"is_retracted":false,"is_paratext":false,"primary_topic":{"id":"https://openalex.org/T12688","display_name":"Microbial + metabolism and enzyme function","score":0.999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular + Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, + Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life + Sciences"}},"topics":[{"id":"https://openalex.org/T12688","display_name":"Microbial + metabolism and enzyme function","score":0.999,"subfield":{"id":"https://openalex.org/subfields/1312","display_name":"Molecular + Biology"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, + Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life + Sciences"}},{"id":"https://openalex.org/T12264","display_name":"Tissue Engineering + and Regenerative Medicine","score":0.9891,"subfield":{"id":"https://openalex.org/subfields/2746","display_name":"Surgery"},"field":{"id":"https://openalex.org/fields/27","display_name":"Medicine"},"domain":{"id":"https://openalex.org/domains/4","display_name":"Health + Sciences"}},{"id":"https://openalex.org/T11310","display_name":"Connective + tissue disorders research","score":0.9869,"subfield":{"id":"https://openalex.org/subfields/1311","display_name":"Genetics"},"field":{"id":"https://openalex.org/fields/13","display_name":"Biochemistry, + Genetics and Molecular Biology"},"domain":{"id":"https://openalex.org/domains/1","display_name":"Life + Sciences"}}],"keywords":[{"id":"https://openalex.org/keywords/lysyl-oxidase","display_name":"Lysyl + Oxidase","score":0.97150385},{"id":"https://openalex.org/keywords/hypoxia","display_name":"Hypoxia","score":0.5409639},{"id":"https://openalex.org/keywords/regenerative-medicine","display_name":"Regenerative + Medicine","score":0.4419176}],"concepts":[{"id":"https://openalex.org/C193143273","wikidata":"https://www.wikidata.org/wiki/Q419389","display_name":"Lysyl + oxidase","level":3,"score":0.97150385},{"id":"https://openalex.org/C207001950","wikidata":"https://www.wikidata.org/wiki/Q141124","display_name":"In + vivo","level":2,"score":0.56339604},{"id":"https://openalex.org/C7836513","wikidata":"https://www.wikidata.org/wiki/Q1641506","display_name":"Hypoxia + (environmental)","level":3,"score":0.5409639},{"id":"https://openalex.org/C202751555","wikidata":"https://www.wikidata.org/wiki/Q221681","display_name":"In + vitro","level":2,"score":0.5332244},{"id":"https://openalex.org/C49892992","wikidata":"https://www.wikidata.org/wiki/Q1540285","display_name":"Tissue + engineering","level":2,"score":0.49198553},{"id":"https://openalex.org/C185592680","wikidata":"https://www.wikidata.org/wiki/Q2329","display_name":"Chemistry","level":0,"score":0.47413397},{"id":"https://openalex.org/C10854531","wikidata":"https://www.wikidata.org/wiki/Q1061415","display_name":"Regenerative + medicine","level":3,"score":0.4419176},{"id":"https://openalex.org/C55493867","wikidata":"https://www.wikidata.org/wiki/Q7094","display_name":"Biochemistry","level":1,"score":0.41435188},{"id":"https://openalex.org/C95444343","wikidata":"https://www.wikidata.org/wiki/Q7141","display_name":"Cell + biology","level":1,"score":0.40249854},{"id":"https://openalex.org/C12554922","wikidata":"https://www.wikidata.org/wiki/Q7100","display_name":"Biophysics","level":1,"score":0.33397317},{"id":"https://openalex.org/C181199279","wikidata":"https://www.wikidata.org/wiki/Q8047","display_name":"Enzyme","level":2,"score":0.32982543},{"id":"https://openalex.org/C136229726","wikidata":"https://www.wikidata.org/wiki/Q327092","display_name":"Biomedical + engineering","level":1,"score":0.3287788},{"id":"https://openalex.org/C71924100","wikidata":"https://www.wikidata.org/wiki/Q11190","display_name":"Medicine","level":0,"score":0.24969122},{"id":"https://openalex.org/C86803240","wikidata":"https://www.wikidata.org/wiki/Q420","display_name":"Biology","level":0,"score":0.18288979},{"id":"https://openalex.org/C150903083","wikidata":"https://www.wikidata.org/wiki/Q7108","display_name":"Biotechnology","level":1,"score":0.13141873},{"id":"https://openalex.org/C540031477","wikidata":"https://www.wikidata.org/wiki/Q629","display_name":"Oxygen","level":2,"score":0.08565441},{"id":"https://openalex.org/C178790620","wikidata":"https://www.wikidata.org/wiki/Q11351","display_name":"Organic + chemistry","level":1,"score":0.0},{"id":"https://openalex.org/C1491633281","wikidata":"https://www.wikidata.org/wiki/Q7868","display_name":"Cell","level":2,"score":0.0}],"mesh":[{"descriptor_ui":"D019902","descriptor_name":"Chondrocytes","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":true},{"descriptor_ui":"D003094","descriptor_name":"Collagen","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":true},{"descriptor_ui":"D008022","descriptor_name":"Ligaments","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":true},{"descriptor_ui":"D008592","descriptor_name":"Menisci, + Tibial","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":true},{"descriptor_ui":"D008249","descriptor_name":"Protein-Lysine + 6-Oxidase","qualifier_ui":"Q000494","qualifier_name":"pharmacology","is_major_topic":true},{"descriptor_ui":"D013710","descriptor_name":"Tendons","qualifier_ui":"Q000378","qualifier_name":"metabolism","is_major_topic":true},{"descriptor_ui":"D000818","descriptor_name":"Animals","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D002417","descriptor_name":"Cattle","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D015687","descriptor_name":"Cell + Hypoxia","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D002478","descriptor_name":"Cells, + Cultured","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D019902","descriptor_name":"Chondrocytes","qualifier_ui":"Q000166","qualifier_name":"cytology","is_major_topic":false},{"descriptor_ui":"D019902","descriptor_name":"Chondrocytes","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D003094","descriptor_name":"Collagen","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D003094","descriptor_name":"Collagen","qualifier_ui":"Q000737","qualifier_name":"chemistry","is_major_topic":false},{"descriptor_ui":"D008022","descriptor_name":"Ligaments","qualifier_ui":"Q000166","qualifier_name":"cytology","is_major_topic":false},{"descriptor_ui":"D008022","descriptor_name":"Ligaments","qualifier_ui":"Q000737","qualifier_name":"chemistry","is_major_topic":false},{"descriptor_ui":"D008022","descriptor_name":"Ligaments","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D008297","descriptor_name":"Male","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D008592","descriptor_name":"Menisci, + Tibial","qualifier_ui":"Q000166","qualifier_name":"cytology","is_major_topic":false},{"descriptor_ui":"D008592","descriptor_name":"Menisci, + Tibial","qualifier_ui":"Q000737","qualifier_name":"chemistry","is_major_topic":false},{"descriptor_ui":"D008592","descriptor_name":"Menisci, + Tibial","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D051379","descriptor_name":"Mice","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D008819","descriptor_name":"Mice, + Nude","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D008249","descriptor_name":"Protein-Lysine + 6-Oxidase","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D013710","descriptor_name":"Tendons","qualifier_ui":"Q000166","qualifier_name":"cytology","is_major_topic":false},{"descriptor_ui":"D013710","descriptor_name":"Tendons","qualifier_ui":"Q000737","qualifier_name":"chemistry","is_major_topic":false},{"descriptor_ui":"D013710","descriptor_name":"Tendons","qualifier_ui":"","qualifier_name":null,"is_major_topic":false},{"descriptor_ui":"D023822","descriptor_name":"Tissue + Engineering","qualifier_ui":"Q000379","qualifier_name":"methods","is_major_topic":false},{"descriptor_ui":"D023822","descriptor_name":"Tissue + Engineering","qualifier_ui":"","qualifier_name":null,"is_major_topic":false}],"locations_count":5,"locations":[{"is_oa":true,"landing_page_url":"https://doi.org/10.1073/pnas.1414271111","pdf_url":null,"source":{"id":"https://openalex.org/S125754415","display_name":"Proceedings + of the National Academy of Sciences","issn_l":"0027-8424","issn":["0027-8424","1091-6490"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320052","host_organization_name":"National + Academy of Sciences","host_organization_lineage":["https://openalex.org/P4310320052"],"host_organization_lineage_names":["National + Academy of Sciences"],"type":"journal"},"license":null,"license_id":null,"version":"publishedVersion","is_accepted":true,"is_published":true},{"is_oa":true,"landing_page_url":"https://europepmc.org/articles/pmc4234579","pdf_url":"https://europepmc.org/articles/pmc4234579?pdf=render","source":{"id":"https://openalex.org/S4306400806","display_name":"Europe + PMC (PubMed Central)","issn_l":null,"issn":null,"is_oa":true,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":false,"host_organization":"https://openalex.org/I1303153112","host_organization_name":"European + Bioinformatics Institute","host_organization_lineage":["https://openalex.org/I1303153112"],"host_organization_lineage_names":["European + Bioinformatics Institute"],"type":"repository"},"license":null,"license_id":null,"version":"publishedVersion","is_accepted":true,"is_published":true},{"is_oa":true,"landing_page_url":"https://escholarship.org/uc/item/4ws805f2","pdf_url":"https://escholarship.org/content/qt4ws805f2/qt4ws805f2.pdf?t=rt3n16","source":{"id":"https://openalex.org/S4306400115","display_name":"eScholarship + (California Digital Library)","issn_l":null,"issn":null,"is_oa":true,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":false,"host_organization":"https://openalex.org/I2801248553","host_organization_name":"California + Digital Library","host_organization_lineage":["https://openalex.org/I2801248553"],"host_organization_lineage_names":["California + Digital Library"],"type":"repository"},"license":null,"license_id":null,"version":"publishedVersion","is_accepted":true,"is_published":true},{"is_oa":true,"landing_page_url":"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4234579","pdf_url":null,"source":{"id":"https://openalex.org/S2764455111","display_name":"PubMed + Central","issn_l":null,"issn":null,"is_oa":true,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":false,"host_organization":"https://openalex.org/I1299303238","host_organization_name":"National + Institutes of Health","host_organization_lineage":["https://openalex.org/I1299303238"],"host_organization_lineage_names":["National + Institutes of Health"],"type":"repository"},"license":null,"license_id":null,"version":"publishedVersion","is_accepted":true,"is_published":true},{"is_oa":false,"landing_page_url":"https://pubmed.ncbi.nlm.nih.gov/25349395","pdf_url":null,"source":{"id":"https://openalex.org/S4306525036","display_name":"PubMed","issn_l":null,"issn":null,"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":false,"is_core":false,"host_organization":"https://openalex.org/I1299303238","host_organization_name":"National + Institutes of Health","host_organization_lineage":["https://openalex.org/I1299303238"],"host_organization_lineage_names":["National + Institutes of Health"],"type":"repository"},"license":null,"license_id":null,"version":null,"is_accepted":false,"is_published":false}],"best_oa_location":{"is_oa":true,"landing_page_url":"https://doi.org/10.1073/pnas.1414271111","pdf_url":null,"source":{"id":"https://openalex.org/S125754415","display_name":"Proceedings + of the National Academy of Sciences","issn_l":"0027-8424","issn":["0027-8424","1091-6490"],"is_oa":false,"is_in_doaj":false,"is_indexed_in_scopus":true,"is_core":true,"host_organization":"https://openalex.org/P4310320052","host_organization_name":"National + Academy of Sciences","host_organization_lineage":["https://openalex.org/P4310320052"],"host_organization_lineage_names":["National + Academy of Sciences"],"type":"journal"},"license":null,"license_id":null,"version":"publishedVersion","is_accepted":true,"is_published":true},"sustainable_development_goals":[],"grants":[],"datasets":[],"versions":[],"referenced_works_count":73,"referenced_works":["https://openalex.org/W1490897467","https://openalex.org/W1498435248","https://openalex.org/W1549576586","https://openalex.org/W1584548942","https://openalex.org/W1599095320","https://openalex.org/W1613619455","https://openalex.org/W1965335428","https://openalex.org/W1966260681","https://openalex.org/W1969172986","https://openalex.org/W1970656189","https://openalex.org/W1970692048","https://openalex.org/W1976175714","https://openalex.org/W1990320378","https://openalex.org/W1994730360","https://openalex.org/W1995171880","https://openalex.org/W1996504953","https://openalex.org/W2001782747","https://openalex.org/W2003328208","https://openalex.org/W2004505453","https://openalex.org/W2006818360","https://openalex.org/W2007600252","https://openalex.org/W2008511520","https://openalex.org/W2012884980","https://openalex.org/W2015694728","https://openalex.org/W2017528738","https://openalex.org/W2018658387","https://openalex.org/W2020342708","https://openalex.org/W2026220322","https://openalex.org/W2026605921","https://openalex.org/W2027604608","https://openalex.org/W2031287613","https://openalex.org/W2033363278","https://openalex.org/W2052620919","https://openalex.org/W2053251151","https://openalex.org/W2054250836","https://openalex.org/W2054782893","https://openalex.org/W2063125290","https://openalex.org/W2071571100","https://openalex.org/W2072296234","https://openalex.org/W2072504158","https://openalex.org/W2074121232","https://openalex.org/W2076936741","https://openalex.org/W2079291436","https://openalex.org/W2085609942","https://openalex.org/W2090563588","https://openalex.org/W2091040318","https://openalex.org/W2092771822","https://openalex.org/W2094567382","https://openalex.org/W2099397203","https://openalex.org/W2099685657","https://openalex.org/W2103645671","https://openalex.org/W2108927236","https://openalex.org/W2113117448","https://openalex.org/W2115465747","https://openalex.org/W2116130840","https://openalex.org/W2116516144","https://openalex.org/W2118172082","https://openalex.org/W2125994830","https://openalex.org/W2130545847","https://openalex.org/W2137129933","https://openalex.org/W2147003578","https://openalex.org/W2158510407","https://openalex.org/W2161031052","https://openalex.org/W2168222597","https://openalex.org/W2170777004","https://openalex.org/W2173021779","https://openalex.org/W2173528967","https://openalex.org/W2173962683","https://openalex.org/W2993782230","https://openalex.org/W3030569103","https://openalex.org/W4210957139","https://openalex.org/W4211222927","https://openalex.org/W4236194206"],"related_works":["https://openalex.org/W3215530055","https://openalex.org/W3171090766","https://openalex.org/W3112371506","https://openalex.org/W3014163099","https://openalex.org/W2889165517","https://openalex.org/W2801660533","https://openalex.org/W2545305293","https://openalex.org/W2467205692","https://openalex.org/W2435286860","https://openalex.org/W2287501499"],"abstract_inverted_index":{"Significance":[0],"The":[1,41,111],"inadequate":[2],"mechanical":[3,20,55,101],"properties":[4,56],"of":[5,22,28,57,73,119],"engineered":[6,60],"tissues":[7,61,121],"have":[8],"prevented":[9],"related":[10],"therapies":[11],"from":[12],"clinical":[13],"translation.":[14],"Collagen":[15],"cross-links":[16,33],"correlate":[17],"with":[18],"the":[19,26,37,54,99],"integrity":[21],"tissues;":[23],"however,":[24],"addressing":[25],"weakness":[27],"neotissues":[29],"through":[30],"enhancing":[31],"collagen":[32,82,90],"has":[34],"not":[35],"received":[36],"attention":[38],"it":[39],"deserves.":[40],"present":[42],"study":[43],"demonstrates,":[44],"both":[45],"in":[46,49,53,89,98],"vitro":[47],"and":[48,59,70,122],"vivo,":[50],"that":[51],"improvements":[52],"native":[58],"can":[62],"be":[63],"attained":[64],"using":[65],"endogenous":[66],"(hypoxia-mediated)":[67],"lysyl":[68,74],"oxidase":[69],"exogenous":[71],"application":[72],"oxidase-like":[75],"2,":[76],"which":[77],"are":[78,123],"enzymes":[79],"responsible":[80],"for":[81,108],"cross-linking.":[83],"By":[84],"promoting":[85],"an":[86,94],"\u223c16-fold":[87],"increase":[88],"cross-linking":[91],"and,":[92],"concomitantly,":[93],"approximately":[95],"fivefold":[96],"enhancement":[97],"neotissue\u2019s":[100],"properties,":[102],"this":[103],"work":[104,115],"creates":[105],"new":[106],"prospects":[107],"regenerative":[109],"medicine.":[110],"methods":[112],"developed":[113],"here":[114],"across":[116],"a":[117],"spectrum":[118],"collagen-rich":[120],"clinically":[124],"applicable.":[125]},"abstract_inverted_index_v3":null,"cited_by_api_url":"https://api.openalex.org/works?filter=cites:W2109415576","counts_by_year":[{"year":2025,"cited_by_count":6},{"year":2024,"cited_by_count":13},{"year":2023,"cited_by_count":13},{"year":2022,"cited_by_count":12},{"year":2021,"cited_by_count":15},{"year":2020,"cited_by_count":18},{"year":2019,"cited_by_count":13},{"year":2018,"cited_by_count":15},{"year":2017,"cited_by_count":16},{"year":2016,"cited_by_count":12},{"year":2015,"cited_by_count":4},{"year":2014,"cited_by_count":1}],"updated_date":"2025-07-31T20:13:18.930560","created_date":"2016-06-24"} + + ' + headers: + Access-Control-Allow-Credentials: + - "true" + Access-Control-Allow-Headers: + - Origin, X-Requested-With, Content-Type, Accept, Accept-Encoding, Authorization, + Cache-Control + Access-Control-Allow-Methods: + - POST, GET, OPTIONS, PUT, DELETE, PATCH + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Authorization, Cache-Control + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - "4564" + Content-Security-Policy: + - default-src 'self'; object-src 'none' + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:30 GMT + Nel: + - '{"report_to":"heroku-nel","max_age":3600,"success_fraction":0.005,"failure_fraction":0.05,"response_headers":["Via"]}' + Referrer-Policy: + - strict-origin-when-cross-origin + Report-To: + - '{"group":"heroku-nel","max_age":3600,"endpoints":[{"url":"https://nel.heroku.com/reports?ts=1754932770&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=pbA0GQ449lD2TGwgwUBYDZVGHkZVMcmtUik7g0N%2BMAA%3D"}]}' + Reporting-Endpoints: + - heroku-nel=https://nel.heroku.com/reports?ts=1754932770&sid=1b10b0ff-8a76-4548-befa-353fc6c6c045&s=pbA0GQ449lD2TGwgwUBYDZVGHkZVMcmtUik7g0N%2BMAA%3D + Server: + - gunicorn + Strict-Transport-Security: + - max-age=31556926; includeSubDomains + Vary: + - Accept-Encoding + Via: + - 1.1 vegur + X-Api-Pool: + - common + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.crossref.org/works/10.1073%2Fpnas.1414271111?mailto=example@papercrow.ai + response: + body: + string: + '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,8,2]],"date-time":"2025-08-02T05:06:43Z","timestamp":1754111203328,"version":"3.40.5"},"reference-count":69,"publisher":"Proceedings + of the National Academy of Sciences","issue":"45","content-domain":{"domain":["www.pnas.org"],"crossmark-restriction":true},"short-container-title":["Proc. + Natl. Acad. Sci. U.S.A."],"published-print":{"date-parts":[[2014,11,11]]},"abstract":"Significance<\/jats:title>\n The + inadequate mechanical properties of engineered tissues have prevented related + therapies from clinical translation. Collagen cross-links correlate with the + mechanical integrity of tissues; however, addressing the weakness of neotissues + through enhancing collagen cross-links has not received the attention it deserves. + The present study demonstrates, both in vitro and in vivo, that improvements + in the mechanical properties of native and engineered tissues can be attained + using endogenous (hypoxia-mediated) lysyl oxidase and exogenous application + of lysyl oxidase-like 2, which are enzymes responsible for collagen cross-linking. + By promoting an \u223c16-fold increase in collagen cross-linking and, concomitantly, + an approximately fivefold enhancement in the neotissue\u2019s mechanical properties, + this work creates new prospects for regenerative medicine. The methods developed + here work across a spectrum of collagen-rich tissues and are clinically applicable.<\/jats:p>","DOI":"10.1073\/pnas.1414271111","type":"journal-article","created":{"date-parts":[[2014,10,28]],"date-time":"2014-10-28T07:24:15Z","timestamp":1414481055000},"update-policy":"https:\/\/doi.org\/10.1073\/pnas.cm10313","source":"Crossref","is-referenced-by-count":129,"title":["Developing + functional musculoskeletal tissues through hypoxia and lysyl oxidase-induced + collagen cross-linking"],"prefix":"10.1073","volume":"111","author":[{"given":"Eleftherios + A.","family":"Makris","sequence":"first","affiliation":[{"name":"Departments + of aBiomedical Engineering and"}]},{"given":"Donald J.","family":"Responte","sequence":"additional","affiliation":[{"name":"Departments + of aBiomedical Engineering and"}]},{"ORCID":"https:\/\/orcid.org\/0000-0002-1689-6636","authenticated-orcid":false,"given":"Nikolaos + K.","family":"Paschos","sequence":"additional","affiliation":[{"name":"Departments + of aBiomedical Engineering and"}]},{"given":"Jerry C.","family":"Hu","sequence":"additional","affiliation":[{"name":"Departments + of aBiomedical Engineering and"}]},{"given":"Kyriacos A.","family":"Athanasiou","sequence":"additional","affiliation":[{"name":"Departments + of aBiomedical Engineering and"},{"name":"Orthopedic Surgery, University of + California, Davis, CA 95616"}]}],"member":"341","published-online":{"date-parts":[[2014,10,27]]},"reference":[{"key":"e_1_3_3_1_2","doi-asserted-by":"publisher","DOI":"10.1089\/ten.2006.12.969"},{"key":"e_1_3_3_2_2","doi-asserted-by":"publisher","DOI":"10.1126\/science.1222454"},{"key":"e_1_3_3_3_2","doi-asserted-by":"publisher","DOI":"10.1371\/journal.pone.0002341"},{"key":"e_1_3_3_4_2","doi-asserted-by":"publisher","DOI":"10.1089\/ten.2006.12.469"},{"key":"e_1_3_3_5_2","doi-asserted-by":"publisher","DOI":"10.1089\/ten.tea.2008.0478"},{"key":"e_1_3_3_6_2","doi-asserted-by":"publisher","DOI":"10.2200\/S00212ED1V01Y200910TIS003"},{"key":"e_1_3_3_7_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.tvjl.2014.01.010"},{"key":"e_1_3_3_8_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.actbio.2012.09.037"},{"key":"e_1_3_3_9_2","doi-asserted-by":"publisher","DOI":"10.1002\/1097-4636(200110)57:1<25::AID-JBM1137>3.0.CO;2-H"},{"key":"e_1_3_3_10_2","doi-asserted-by":"publisher","DOI":"10.2200\/S00186ED1V01Y200903TIS001"},{"key":"e_1_3_3_11_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.joca.2007.07.003"},{"key":"e_1_3_3_12_2","doi-asserted-by":"publisher","DOI":"10.2519\/jospt.2006.2175"},{"key":"e_1_3_3_13_2","doi-asserted-by":"publisher","DOI":"10.1016\/S0021-9258(17)33124-1"},{"key":"e_1_3_3_14_2","doi-asserted-by":"publisher","DOI":"10.1038\/251105a0"},{"key":"e_1_3_3_15_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.ymeth.2008.01.002"},{"key":"e_1_3_3_16_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.joca.2005.03.005"},{"key":"e_1_3_3_17_2","doi-asserted-by":"publisher","DOI":"10.1089\/ten.tea.2010.0177"},{"key":"e_1_3_3_18_2","first-page":"477","article-title":"Articular + cartilage: Tissue design and chondrocyte-matrix interactions","volume":"47","author":"Buckwalter + JA","year":"1998","unstructured":"JA Buckwalter, HJ Mankin, Articular cartilage: + Tissue design and chondrocyte-matrix interactions. Instr Course Lect 47, 477\u2013486 + (1998).","journal-title":"Instr Course Lect"},{"key":"e_1_3_3_19_2","doi-asserted-by":"publisher","DOI":"10.1007\/s10856-006-0689-2"},{"key":"e_1_3_3_20_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.biomaterials.2006.08.040"},{"key":"e_1_3_3_21_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.joca.2003.08.009"},{"key":"e_1_3_3_22_2","doi-asserted-by":"publisher","DOI":"10.1114\/1.1512676"},{"key":"e_1_3_3_23_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.biomaterials.2012.01.028"},{"key":"e_1_3_3_24_2","first-page":"113","volume-title":"Basic + Orthopaedic Biomechanics","author":"Mow VC","year":"1991","unstructured":", + eds VC Mow, WC Hayes (Raven, New York) Basic Orthopaedic Biomechanics, pp. + 113\u2013178 (1991)."},{"key":"e_1_3_3_25_2","doi-asserted-by":"publisher","DOI":"10.1016\/S0736-0266(01)00052-3"},{"key":"e_1_3_3_26_2","doi-asserted-by":"publisher","DOI":"10.1016\/S0021-9290(97)84508-3"},{"key":"e_1_3_3_27_2","doi-asserted-by":"publisher","DOI":"10.1053\/joca.2001.0424"},{"key":"e_1_3_3_28_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.jbiomech.2007.06.005"},{"key":"e_1_3_3_29_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.orthres.2005.05.009.1100230617"},{"key":"e_1_3_3_30_2","doi-asserted-by":"publisher","DOI":"10.1038\/nature10602"},{"key":"e_1_3_3_31_2","doi-asserted-by":"publisher","DOI":"10.1038\/nature07019"},{"key":"e_1_3_3_32_2","doi-asserted-by":"publisher","DOI":"10.1073\/pnas.92.12.5510"},{"key":"e_1_3_3_33_2","doi-asserted-by":"publisher","DOI":"10.1073\/pnas.1208314109"},{"key":"e_1_3_3_34_2","doi-asserted-by":"publisher","DOI":"10.1038\/nature09141"},{"key":"e_1_3_3_35_2","doi-asserted-by":"publisher","DOI":"10.1038\/35091000"},{"key":"e_1_3_3_36_2","doi-asserted-by":"publisher","DOI":"10.1089\/ten.tea.2011.0088"},{"key":"e_1_3_3_37_2","doi-asserted-by":"publisher","DOI":"10.1196\/annals.1402.076"},{"key":"e_1_3_3_38_2","doi-asserted-by":"publisher","DOI":"10.1053\/joca.2001.0477"},{"key":"e_1_3_3_39_2","doi-asserted-by":"publisher","DOI":"10.1089\/107632701753337735"},{"key":"e_1_3_3_40_2","doi-asserted-by":"publisher","DOI":"10.1002\/jcp.10481"},{"key":"e_1_3_3_41_2","doi-asserted-by":"publisher","DOI":"10.1002\/art.22878"},{"key":"e_1_3_3_42_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.bone.2005.04.040"},{"key":"e_1_3_3_43_2","doi-asserted-by":"publisher","DOI":"10.1101\/gad.934301"},{"key":"e_1_3_3_44_2","doi-asserted-by":"publisher","DOI":"10.1002\/jcp.21446"},{"key":"e_1_3_3_45_2","doi-asserted-by":"publisher","DOI":"10.1002\/jcp.1081"},{"key":"e_1_3_3_46_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.joca.2008.04.007"},{"key":"e_1_3_3_47_2","doi-asserted-by":"publisher","DOI":"10.1038\/nature04695"},{"key":"e_1_3_3_48_2","doi-asserted-by":"publisher","DOI":"10.1152\/japplphysiol.00571.2010"},{"key":"e_1_3_3_49_2","doi-asserted-by":"crossref","first-page":"3038","DOI":"10.1002\/art.24851","article-title":"Hypoxia-inducible + factor 1alpha inhibits the fibroblast-like markers type I and type III collagen + during hypoxia-induced chondrocyte redifferentiation: Hypoxia not only induces + type II collagen and aggrecan, but it also inhibits type I and type III collagen + in the hypoxia-inducible factor 1alpha-dependent redifferentiation of chondrocytes","volume":"60","author":"Duval + E","year":"2009","unstructured":"E Duval, , Hypoxia-inducible factor 1alpha + inhibits the fibroblast-like markers type I and type III collagen during hypoxia-induced + chondrocyte redifferentiation: Hypoxia not only induces type II collagen and + aggrecan, but it also inhibits type I and type III collagen in the hypoxia-inducible + factor 1alpha-dependent redifferentiation of chondrocytes. Arthritis Rheum + 60, 3038\u20133048 (2009).","journal-title":"Arthritis Rheum"},{"key":"e_1_3_3_50_2","doi-asserted-by":"publisher","DOI":"10.1074\/jbc.M109.042424"},{"key":"e_1_3_3_51_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.biomaterials.2011.06.037"},{"key":"e_1_3_3_52_2","doi-asserted-by":"publisher","DOI":"10.1007\/s004290050283"},{"key":"e_1_3_3_53_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.joca.2003.08.006"},{"key":"e_1_3_3_54_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.joca.2003.08.005"},{"key":"e_1_3_3_55_2","doi-asserted-by":"publisher","DOI":"10.1089\/107632704322791790"},{"key":"e_1_3_3_56_2","doi-asserted-by":"publisher","DOI":"10.1089\/107632703768247322"},{"key":"e_1_3_3_57_2","doi-asserted-by":"publisher","DOI":"10.1016\/S0736-0266(03)00009-3"},{"key":"e_1_3_3_58_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.bbadis.2005.02.007"},{"key":"e_1_3_3_59_2","first-page":"1778","article-title":"Surgical + management of articular cartilage defects in the knee","volume":"91","author":"Cole + BJ","year":"2009","unstructured":"BJ Cole, C Pascual-Garrido, RC Grumet, Surgical + management of articular cartilage defects in the knee. J Bone Joint Surg Am + 91, 1778\u20131790 (2009).","journal-title":"J Bone Joint Surg Am"},{"key":"e_1_3_3_60_2","unstructured":"; + US Food and Drug Administration\/Center for Biologics Evaluation and Research\/Center + for Devices and Radiological Health Preparation of IDEs and INDs for products + intended to repair or replace knee cartilage. FDA Guidance for Industry (Office + of Communication Outreach and Development Rockville MD). (2011)."},{"key":"e_1_3_3_61_2","doi-asserted-by":"publisher","DOI":"10.1016\/j.cell.2012.01.051"},{"key":"e_1_3_3_62_2","doi-asserted-by":"publisher","DOI":"10.1096\/fj.12-224030"},{"key":"e_1_3_3_63_2","doi-asserted-by":"publisher","DOI":"10.1002\/jor.20821"},{"key":"e_1_3_3_64_2","doi-asserted-by":"publisher","DOI":"10.1016\/S0378-4347(97)00391-5"},{"key":"e_1_3_3_65_2","doi-asserted-by":"publisher","DOI":"10.1097\/00003086-199507000-00035"},{"key":"e_1_3_3_66_2","doi-asserted-by":"publisher","DOI":"10.1002\/(SICI)1097-4644(19981201)71:3<313::AID-JCB1>3.0.CO;2-C"},{"key":"e_1_3_3_67_2","doi-asserted-by":"publisher","DOI":"10.1002\/ar.1092340405"},{"key":"e_1_3_3_68_2","doi-asserted-by":"publisher","DOI":"10.1016\/0076-6879(87)44176-1"},{"key":"e_1_3_3_69_2","doi-asserted-by":"publisher","DOI":"10.1371\/journal.pone.0026178"}],"updated-by":[{"updated":{"date-parts":[[2015,5,4]],"date-time":"2015-05-04T00:00:00Z","timestamp":1430697600000},"DOI":"10.1073\/pnas.1507001112","type":"correction","source":"publisher","label":"Correction"}],"container-title":["Proceedings + of the National Academy of Sciences"],"original-title":[],"language":"en","link":[{"URL":"https:\/\/pnas.org\/doi\/pdf\/10.1073\/pnas.1414271111","content-type":"unspecified","content-version":"vor","intended-application":"similarity-checking"}],"deposited":{"date-parts":[[2022,4,13]],"date-time":"2022-04-13T04:27:43Z","timestamp":1649824063000},"score":1,"resource":{"primary":{"URL":"https:\/\/pnas.org\/doi\/full\/10.1073\/pnas.1414271111"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2014,10,27]]},"references-count":69,"journal-issue":{"issue":"45","published-print":{"date-parts":[[2014,11,11]]}},"alternative-id":["10.1073\/pnas.1414271111"],"URL":"https:\/\/doi.org\/10.1073\/pnas.1414271111","relation":{},"ISSN":["0027-8424","1091-6490"],"issn-type":[{"type":"print","value":"0027-8424"},{"type":"electronic","value":"1091-6490"}],"subject":[],"published":{"date-parts":[[2014,10,27]]},"assertion":[{"value":"2014-10-27","order":2,"name":"published","label":"Published","group":{"name":"publication_history","label":"Publication + History"}}]}}' + headers: + Access-Control-Allow-Headers: + - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, + Accept-Ranges, Cache-Control + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Link + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - "3604" + Content-Type: + - application/json + Date: + - Mon, 11 Aug 2025 17:19:30 GMT + Server: + - Jetty(9.4.40.v20210413) + Vary: + - Accept-Encoding + permissions-policy: + - interest-cohort=() + x-api-pool: + - plus + x-rate-limit-interval: + - 1s + x-rate-limit-limit: + - "150" + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.crossref.org/works/10.1073%2Fpnas.1414271111/transform/application/x-bibtex + response: + body: + string: + " @article{Makris_2014, title={Developing functional musculoskeletal + tissues through hypoxia and lysyl oxidase-induced collagen cross-linking}, + volume={111}, ISSN={1091-6490}, url={http://dx.doi.org/10.1073/pnas.1414271111}, + DOI={10.1073/pnas.1414271111}, number={45}, journal={Proceedings of the National + Academy of Sciences}, publisher={Proceedings of the National Academy of Sciences}, + author={Makris, Eleftherios A. and Responte, Donald J. and Paschos, Nikolaos + K. and Hu, Jerry C. and Athanasiou, Kyriacos A.}, year={2014}, month=oct } + + " + headers: + Access-Control-Allow-Headers: + - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, + Accept-Ranges, Cache-Control + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Link + Connection: + - keep-alive + Date: + - Mon, 11 Aug 2025 17:19:30 GMT + Server: + - Jetty(9.4.40.v20210413) + Transfer-Encoding: + - chunked + permissions-policy: + - interest-cohort=() + x-api-pool: + - plus + x-rate-limit-interval: + - 1s + x-rate-limit-limit: + - "150" + status: + code: 200 + message: OK +version: 1 diff --git a/tests/cassettes/test_get_reasoning[deepseek-reasoner].yaml b/tests/cassettes/test_get_reasoning[deepseek-reasoner].yaml index a0b6bb85d..679da4afb 100644 --- a/tests/cassettes/test_get_reasoning[deepseek-reasoner].yaml +++ b/tests/cassettes/test_get_reasoning[deepseek-reasoner].yaml @@ -19,7 +19,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -29,7 +29,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -45,18 +45,18 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jJJNb9swDIbv/hUCz8kQJ6kT5NYCPexQYB8Y2q4ObEWiHWWyJEh0uyLI - fx9kJ3G6dUAvOvDhS/EluU8YAyVhxUBsOYnG6fHN6131w3zfyMd69qXd3WaP5la6h/ufX9PlHYyi - wm52KOik+iRs4zSSsqbHwiMnjFXTxdVsMc2u0qwDjZWoo6x2NJ7b8XQynY/TdDydHIVbqwQGWLGn - hDHG9t0bWzQSf8OKTUanSIMh8BphdU5iDLzVMQI8BBWIG4LRAIU1hKbruizLXbAmN/vcMJYDKdKY - w4rl8HD9mX3DZ4UvOYx6ylvaWh8if8rhHrXmL5wIGRLjOof1MU9aFXNMq3VuDrkpy/Lyf49VG7g+ - ZlwAbowlHsfXOV8fyeHsVdvaebsJf0mhUkaFbeGRB2uir0DWQUcPCWPrbqbtmzGB87ZxVJD9hd13 - i2lfDoYlDnB2gmSJ6yGeTuajd8oVEokrHS6WAoKLLcpBOmyQt1LZC5BcmP63m/dq98aVqT9SfgBC - oCOUhfMolXjreEjzGG/8f2nnIXcNQ0D/rAQWpNDHRUiseKv784PwGgibolKmRu+86m+wcoXIFots - WWXLCSSH5A8AAAD//wMAmWDqAYwDAAA= + H4sIAAAAAAAAAwAAAP//jJLBbtswDIbvfgqBZ2eIE3cBcus6FGg3bEAvW1AHtiLRjjpZEiS66RDk + 3QfZSZxuLbCLDvz4U/xJ7hPGQElYMhBbTqJ1enKTfZG7h0+ftbGz7Lv/dn+bdy+r6dfV7f3qDtKo + sJsnFHRSfRC2dRpJWTNg4ZETxqrZ4irP5/NF9rEHrZWoo6xxNMntZDad5ZMsm8ymR+HWKoEBluwx + YYyxff/GFo3EF1iyaXqKtBgCbxCW5yTGwFsdI8BDUIG4IUhHKKwhNH3XVVU9BWsKsy8MYwWQIo0F + LFkBP6/v2AM+K9wVkA6Ud7S1PkT+WMAP1JrvOBEyJMZ1AetjnrQq5phO68IcClNV1eX/HusucH3M + uADcGEs8jq93vj6Sw9mrto3zdhP+kkKtjArb0iMP1kRfgayDnh4Sxtb9TLtXYwLnbeuoJPsL++8W + s6EcjEsc4fwEyRLXYzyb5ukb5UqJxJUOF0sBwcUW5SgdN8g7qewFSC5M/9vNW7UH48o0/1N+BEKg + I5Sl8yiVeO14TPMYb/y9tPOQ+4YhoH9WAktS6OMiJNa808P5QfgdCNuyVqZB77wabrB25dWmns9F + hiKH5JD8AQAA//8DAG04TViMAwAA headers: CF-RAY: - - 96665c683b2d9e5c-SJC + - 96a9ce063bb3fab2-SJC Connection: - keep-alive Content-Encoding: @@ -64,15 +64,17 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:17 GMT + - Tue, 05 Aug 2025 22:41:56 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=fbASGENIWM6WUGwxO83qItf.23NH2kgQXfA1uog0cXQ-1753726517-1.0.1.1-eDkiJARyv_9PqM1Pl2o3eQhT1GkFHGV0jsXiE66uNNNZBmkJZ_snWvlCtJI46rb_sRKoyGSgNxWfDzLOwdVP6PHoVtA1veHO0kOHW1XSed4; - path=/; expires=Mon, 28-Jul-25 18:45:17 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=jlNMObEBzdgbyUvjA0nfj4QrAabc.yrnmkrz43n.MiI-1754433716-1.0.1.1-s7S5lk0GqSklfFBQNoOREKKgQ59DguUULl.lbG7BvsevQ_QO_cbEoHzVHXbG7EiZeAy4mc2Eo_9h8SD3lo5j__1D2BE1VeB.DFVw8XIyzo4; + path=/; expires=Tue, 05-Aug-25 23:11:56 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=PFYGlZsoULP.UNmLeJtCVev9sdnHPwvrB2YHWJTmvcM-1753726517464-0.0.1.1-604800000; + - _cfuvid=HWlwayLjmokXp9uFIjzGerWKOSpocDCP4Va8Y8Q7BlA-1754433716628-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -86,15 +88,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "825" + - "349" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "831" + - "354" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -102,13 +102,59 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29999934" + - "29999935" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 0s x-request-id: - - req_cc7bf4e1090cda31bc9f3e39c4b115de + - req_5eb0c64064c9492fa054e10b10042c7c + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.crossref.org/works?mailto=example@papercrow.ai&query.title=XAI+Review&rows=1&query.author=Wellawatte+et+al + response: + body: + string: + '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":22876,"items":[{"indexed":{"date-parts":[[2024,8,7]],"date-time":"2024-08-07T06:45:10Z","timestamp":1723013110666},"reference-count":0,"publisher":"Transstellar + Journal Publications and Research Consultancy Private Limited","issue":"6","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":["IJASR"],"published-print":{"date-parts":[[2017]]},"DOI":"10.24247\/ijasrdec201724","type":"journal-article","created":{"date-parts":[[2017,11,9]],"date-time":"2017-11-09T01:18:32Z","timestamp":1510190312000},"page":"173-180","source":"Crossref","is-referenced-by-count":0,"title":["Bovine + Mastitis, Global Quandary \\\"A Review\\\""],"prefix":"10.24247","volume":"7","author":[{"given":"Kamaldeep + et al.,","family":"Kamaldeep et al.,","sequence":"first","affiliation":[]},{"name":"TJPRC","sequence":"additional","affiliation":[]}],"member":"10346","container-title":["International + Journal of Agricultural Science and Research"],"language":"en","deposited":{"date-parts":[[2017,11,9]],"date-time":"2017-11-09T01:24:49Z","timestamp":1510190689000},"score":24.77646,"resource":{"primary":{"URL":"http:\/\/tjprc.org\/publishpapers\/2-50-1510208310-24.IJASRDEC201724.pdf"}},"issued":{"date-parts":[[2017]]},"references-count":0,"journal-issue":{"issue":"6","published-print":{"date-parts":[[2017]]}},"alternative-id":["Arch-9275"],"URL":"https:\/\/doi.org\/10.24247\/ijasrdec201724","ISSN":["2250-0057"],"issn-type":[{"type":"print","value":"2250-0057"}],"published":{"date-parts":[[2017]]}}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' + headers: + Access-Control-Allow-Headers: + - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, + Accept-Ranges, Cache-Control + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Link + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - "849" + Content-Type: + - application/json + Date: + - Tue, 05 Aug 2025 22:41:57 GMT + Server: + - Jetty(9.4.40.v20210413) + Vary: + - Accept-Encoding + permissions-policy: + - interest-cohort=() + x-api-pool: + - plus + x-rate-limit-interval: + - 1s + x-rate-limit-limit: + - "150" status: code: 200 message: OK @@ -130,14 +176,14 @@ interactions: null}, "publicationTypes": ["JournalArticle", "Conference", "Review"], "publicationDate": "2024-11-20", "journal": {"name": "2024 8th International Conference on System Reliability and Safety (ICSRS)", "pages": "511-517"}, "citationStyles": {"bibtex": - "@Article{Nguyen2024EnhancingPW,\n author = {Duc An Nguyen and Khanh T. P. - Nguyen and Kamal Medjaher},\n booktitle = {International Conference on System - Reliability and Safety},\n journal = {2024 8th International Conference on - System Reliability and Safety (ICSRS)},\n pages = {511-517},\n title = {Enhancing - PHM with XAI: Review and Dataset for System Health Indicator Construction},\n - year = {2024}\n}\n"}, "authors": [{"authorId": "2167438752", "name": "Duc - An Nguyen"}, {"authorId": "2184162840", "name": "Khanh T. P. Nguyen"}, {"authorId": - "2267984723", "name": "Kamal Medjaher"}], "matchScore": 57.629684}]} + "@Article{Nguyen2024EnhancingPW,\n author = {D. Nguyen and Khanh T. P. Nguyen + and Kamal Medjaher},\n booktitle = {International Conference on System Reliability + and Safety},\n journal = {2024 8th International Conference on System Reliability + and Safety (ICSRS)},\n pages = {511-517},\n title = {Enhancing PHM with XAI: + Review and Dataset for System Health Indicator Construction},\n year = {2024}\n}\n"}, + "authors": [{"authorId": "2167438752", "name": "D. Nguyen"}, {"authorId": + "2184162840", "name": "Khanh T. P. Nguyen"}, {"authorId": "2267984723", "name": + "Kamal Medjaher"}], "matchScore": 59.21923}]} ' headers: @@ -146,77 +192,31 @@ interactions: Connection: - keep-alive Content-Length: - - "1448" + - "1439" Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:18 GMT + - Tue, 05 Aug 2025 22:41:57 GMT Via: - - 1.1 fb1699c4cb8ff04b39762e99ca06e3d2.cloudfront.net (CloudFront) + - 1.1 97354ec70bdda7ac06cc29aed9bfdb3c.cloudfront.net (CloudFront) X-Amz-Cf-Id: - - dSWAvGeb0-zvFa4P0Cai61BW4J375nDq7uscBWhrJICNqC3O9bo5Fw== + - 1j4yZu0_7r1d8h-IlCFffJj0weDylTw85A2ASH_6S49oXkAW0t07gw== X-Amz-Cf-Pop: - SFO53-P7 X-Cache: - Miss from cloudfront x-amz-apigw-id: - - ObqocGZiPHcEOrQ= + - O2pMUEmNvHcEecQ= x-amzn-Remapped-Connection: - keep-alive x-amzn-Remapped-Content-Length: - - "1448" + - "1439" x-amzn-Remapped-Date: - - Mon, 28 Jul 2025 18:15:18 GMT + - Tue, 05 Aug 2025 22:41:57 GMT x-amzn-Remapped-Server: - gunicorn x-amzn-RequestId: - - 99bca4a5-a373-4270-9eb2-e361ea2a53f6 - status: - code: 200 - message: OK - - request: - body: null - headers: {} - method: GET - uri: https://api.crossref.org/works?mailto=example@papercrow.ai&query.title=XAI+Review&rows=1&query.author=Wellawatte+et+al - response: - body: - string: - '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":22730,"items":[{"indexed":{"date-parts":[[2024,8,7]],"date-time":"2024-08-07T06:47:19Z","timestamp":1723013239657},"reference-count":0,"publisher":"Transstellar - Journal Publications and Research Consultancy Private Limited","issue":"3","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":["IJMPERD"],"published-print":{"date-parts":[[2020]]},"DOI":"10.24247\/ijmperdjun2020913","type":"journal-article","created":{"date-parts":[[2020,8,27]],"date-time":"2020-08-27T00:33:19Z","timestamp":1598488399000},"page":"9575-9582","source":"Crossref","is-referenced-by-count":0,"title":["A - Review Paper on Food Security"],"prefix":"10.24247","volume":"10","author":[{"given":"Ansumansamal - et al.,","family":"Ansumansamal et al.,","sequence":"first","affiliation":[]},{"name":"TJPRC","sequence":"additional","affiliation":[]}],"member":"10346","container-title":["International - Journal of Mechanical and Production Engineering Research and Development"],"language":"en","deposited":{"date-parts":[[2020,8,27]],"date-time":"2020-08-27T00:33:19Z","timestamp":1598488399000},"score":24.880903,"resource":{"primary":{"URL":"http:\/\/tjprc.org\/publishpapers\/2-67-1598502792-913IJMPERDJUN2020913.pdf"}},"issued":{"date-parts":[[2020]]},"references-count":0,"journal-issue":{"issue":"3","published-print":{"date-parts":[[2020]]}},"alternative-id":["Arch-13770"],"URL":"https:\/\/doi.org\/10.24247\/ijmperdjun2020913","ISSN":["2249-6890"],"issn-type":[{"type":"print","value":"2249-6890"}],"published":{"date-parts":[[2020]]}}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' - headers: - Access-Control-Allow-Headers: - - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, - Accept-Ranges, Cache-Control - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Link - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Length: - - "850" - Content-Type: - - application/json - Date: - - Mon, 28 Jul 2025 18:15:20 GMT - Server: - - Jetty(9.4.40.v20210413) - Vary: - - Accept-Encoding - permissions-policy: - - interest-cohort=() - x-api-pool: - - plus - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" + - a261921c-c75e-41c0-96a7-8cea1b1ca435 status: code: 200 message: OK @@ -1283,7 +1283,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -1293,7 +1293,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -1309,1692 +1309,1691 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA1RWSa+zOhLdv19xdbdpKUzB9rcjTCEYMAESSK8gDAEyMdnA+/Ote5/Urd5Ycvks - rKo6w99/fX19v7OmuI3ff76+H/Uwfv/rp5anY/r95+vff319fX39/Xv+H7J4ZkWe16/qF/77WL/y - Yv7+88X9t/I/0J+vb+7dKN4amQ+wus3JBNNFuBN1c7RCgb+4NXxvhxNNDcMN190WpzD2xh1xbcvX - Zgkda4TCqKDxKVqyJczqAEIR7al+Ns7aYi5yC9/CvCFu/MIaF2pzAovPPiO6zj21zh2cAR7aLJ42 - ZbjvxbWEOjxuDudplS7NSn1rH4DHqeCIFugRXu5sI8NeGezf/2SzQHoGgfCRPPa0P3g48E4B9U93 - I8TZxD3z8eTB9K4AajaPnTaDmZiw/kBCzvi99nMoMhkNYDlPrYIEjY2vRUZ4JDox27zGi4qgA8Lx - FtDkU/R4fJZhDRVv8/CAxE39st/vTXS4iofpaapqxreGvwDnMEckPh+2mLWMW1BDPhM1/dN2ZbzX - CVDR1CNVIHA0zhh7Gfq7VScHk9uEM89XG3Te7m0aUOHQjMXVUtAurRlVjnHUU2lRVcgjsyT4Lkjh - 3PJqjfYbPaLXKHbxxB0dW64SbBPLr81e8N6ijPCQidTUuUvGroFcg587Meu31ohEJgqE6v5MXD2c - 15mtHwe6W/VInDgpMPd+rDY6NSwiZ2VLANtLYwUThfMJ9miA1/5atVAOh3XqwyZu1oHfXuA1eRu0 - jF9ZJvJp5sPWUDKaJE6TiWDXPVHCQ0qcR78Bq6qqCirnd0FPRf3E/Yl7OnAtd2ha8FUIWS7WHSq4 - RCKZLFSYr8rXAqfJSom+OUrN3EaTBcpnuKd6Tx49ZxnBhHjsXGgqICEcZb22oJSfbJqeLzBbiqGx - 0LWXM+oIrp7N2/PWh7/9LtEO4xFujz60QQSICsITXnZZoCPRbTMa9yfST3v/UshVZLzoUSGeNsiV - tCBuaBtS7qd7KD46rMBN/GFU12Cuzf3J0NEgDgvV2+vUL0leq+hzUDDxy7uBxf4YpAizMqOHZ25j - bqfdPYQctZ2gEfhgntF52c3ECqii0WM4tkbCgPmCG5qPrdX/s6+fvBaploySNl9N2QQs94801fJa - W97uEqDNcnNpQiYFDLHlWuCn38S0hQNgB+nko0BNDuS0M/mVOYe0gPXDKKmmsrQR1SBxwFoCRA5X - rGbLLagStJSdR5zt+6atyen+RKckFam57IJGkPvKR0JnSNTCog84MztO6EyF2GN8ofYcep8itPDn - idg3remFYjfUUPNanyofRQm5T5hAaDw/PCnrSO0Zo9kN6oW/JZcuUDLxvJMXtNMccRJXaGji2OQ2 - RCSQiadWLl7Cnt3QD/8noc1VzHG+ICDbrc9kD49VJhx82wPzyAyCXTA0S88JKWTDDRLF9fSGK1Xf - RE9yupKoet7XNZUeA3SInE7ztcszntQXC9DXJSe6gi4aN8bDBPFwFYkSSfts5d2TDPM8ITQ01gdm - lurK0KoLmzqW9daYc3kJKGO0o64LbqC9WyIHm917M70OvKjNyae7ATgmM7GL/QyWQZU6FDmmQYJQ - W/F8w4YAH7YtT5L0mDPxxbEUwXPYe0K5OCFXREuA4jEeiJVuYm2IlOEJYtKYxN/pELOUPCaYShFH - biwxsYAUNUDAh1dqixuChZ7bJKB33k8ao6wKx/DgXaAvbUVvQ3DdL6U5QrjNlRsJSebjdevpT8ja - ViMpw2ozt7xdgR/9pI5S4GxYrsNNrqaPQM0wsvFivxhEDt539NCfSDOP2VL8+geJfvmhS2GKYNVb - 9PAq1JUny3ABKXc6UX0dX2BRC79DP/pL971ihYxt7x3SobTQC0zcdeGvQQSiEC9E+/GPYTonEzyI - /eg9z8d3syItdmBtloOHbkEF2CpwKlLleqT2o5+a1Sr0Gpp+b5C9NpaAx2O8wG4+2TTi7m7DZGZa - ELgl/7O/Wr9c5V0Ll4Lfk7N0iTRBs/kOQG/ZTOx+afp5tMoC+oqiElvLVU28PbUa+QcZUFNgak/X - RpHkU7NEVNvgWhse4wtCH8OCxAtwsvmQIA7wSC+nVoM5Zg13bOHbVQBRn/Yuo6SbO9kN3yMNfH3A - bDLUGrWvvJ1k9jOvD/AVlLfTkXp3S9GEJiMS7J/Zx4MlmfDqko0JB8DO9JAhQVtevucDe5sW9Mhv - XngdtV0LZ2IH1IVSjcWbcJ1g80zf5IAyJRMnX4bQ2i2ahyz7vjIBXxQUzfODuM7mkPFddJJR6sWt - Nwv5DOiP3wA1ebfk+ql0wCT+CaFWFSklt2DW1iOIdMSpSkTjNpOaefaZgLhr5HocyT9goR/IoFny - Iolh+mq4+9VU0K8fqnpTZosf7Sf4YPqLnuTovg4zjDh0uxkmyfv6AjiuvQrw3oMbTagpYHa6vhNk - 1TebFPoZ96Ia+B4Y6KOn0SmwQl6PavMfvlqvj9OLcYha4PppTH/5znfNK/hH3/OfPLSsxWqjyvdP - 9ArWR8i6Krgg28gIcd7TJ3xbwU2HzztkpITSkq3P+C385iVyMwIGmNvWCjKsgBArvLvNfM8zJrvT - DL0uV67aGt0aDyljmxCckydeDTNfgCBHBvXAPsWL8dg5cOQ2CY229hyyHn1kxJbthx5ztW7WT7lP - kGQrHHVu2rqyUdrryA+DhDripgznML7VMFbXfJq1sVxZuRw5+KNHE0sKee1PZ7uDAYihx513adM9 - HnyAilzCJGPHK2aP6b3AeFdfiCUtbdN/ymOy00QWUseBbsNPb8BBbA4JsUArZWwb1BH60W9qM1w3 - a4kWH12B4Xl3eFTC8VzvJbjbWQ21d880Ww2BVHDibxFR8VXIFjHcVfBi3EWijpygDY1WKoC54nF6 - GCsfzoeb2sFKFqqJvfB+5Wele0NFU47EunNT9psPweNcxTRGMcIrx2wfat7TJx4+bMNBr+oKAXdS - qbskHuYSY7YQ8SaJqh+F9Wyn3R142C4rOWaujsfj5cNBwnUPYrWd0c9Beo/AHoUHaul6m63dYDPY - KlAiBRLncK5TbwOnThcn6CIzE6vDJEP9fr8Q7wGNXshO9Ak2vR1O3H4zgZVl7wt8LcVAvY712sop - SQ1+9Hna5uFxpek7rnb8nWrUlBuajULAWih0B4l6lpVk891PU6gEDqRYFhRN3LdyCk+i2k1cEN4x - e3h6CnMjPHq7iqfZ6JN1s/tAq6OnrfUK58DObDjP6o3oP/NnZfEU5OrmjdQtfKKta8npMMGopAVL - LhkX8FtbWv8DAAD//6R7ybKyQJvmvfTWjpBJMnPJPEsiIOIOFBEQkSmBjKh7r+B8f+1q1b005Hjg - nZ7hTXY+B+farKm5zCNcmitHdr6b93y0lmgSvHlmnjWfk1lqFhjeR4n89UMvdvkD3vDbmA9mvNX0 - 8gk4aJ0WldjSQ87po3Ur2IjQ9Fm71/OVXywH/vWbRjgejPdamiH3enc4ieLeXcdDz/zpG2Id8y7a - CrgmSFNONU45ZKjjzh/BE3gsuRxA7FJ70AUoOJw8sxmc3P6eXT2YJ/CLHX8SonXuKAOLj68Tz4h+ - w4CiTwbj2/lKtMbLoxWH+ABGW/Dw9fOQXfa6pRpExWvyefFjq9OnKmPIH4Yb0V9LOKx9UxqQZdCd - ONrFpLydHUd4IePiM3T60k0cuhAQ6dNgN6wOdFZEkgJDjzridi+Y//Fv8JdvuTskYJG7Wwx/1/uK - ncVVhjWX7wE0aJzj22MFYOcDI/zjD8xVZ9V1nOMOTqqGyStmvzV1T5YBF1mciDYJds2qNV/A7qyA - meXe7LDa7aKgYjIO/mZsmsv95WvHZ4xj9jsshtmO4JFfTj7aXBF0gs56p7HMTnt8QL6ExjmDH3Dm - /NND/oGOWXMfItb/krjNJZcLZ+8BEuF8noUoFiNyUoIQMYoS++ItncCCfSqJk38u8EvQPMDuehQW - 11Wff7PJu11l1Azq0bkl3lesh5V/nSCs1tDGnmsSdS3VuwL/+EOhXYd6PfHdjI58MxLj+/ipNF3P - DozzUCAKXzbR5jJiAlU6Lz7zqA4D2fFTLMlTxTZowz98HKGlMjeCMSqGZTgvjhiofEqs84hzaiT1 - AbAL4Ig+qzSiD+4yQoaHEo7W36Oejsmiwe0QyDjzJyFf3ndDgXXOpcToAp9ui8q3UCQaJjfQvumk - muUIwUNgseUN3B9fLgDvUR9LtXkYZkczFzhHjfuf+Zr/0hjeMjMhiv8o6V4fCawuvP0X33xlP9kG - d72AvTlhogb7VAF85ww+fAuhuu38EN5l/YiVkS+HNb5KFaDR8T0Ty9nUMcPTDG6V/yTWZksD/cvX - nZCVeGZc5dNlUqs/vkqM97cH1FzaEar6gIhqtxcwvk9VCp/AZ7Fn2yWgz+BRoXYCHpGx79WsRFYB - rknhYVlZ+nwG+mCI+/zEt6D06Hq2ogzt+fAXrSYuPSlpAKVfyeJCmcpoTY73Ap4+4pmYmuIMi70t - D1E8XBSsXXXWpUgLFPSXPwvPJdhqdyuh2kTLv/vvDjEXw12fYVv1r+rKVucDHGo38ikR3vnanYoA - 6Jo3kkzTmJrY4KEBexYrrJyuCqDgbvhitIw/HMTCO9/EVA/QzezOM98HHKUR0TMUSIpCvDNqIzrR - OoFbthbEd5wfWITETeGuR/HjLYTuOp8UBb4VJ8Om+Pm522EqJbTc/Rabs9nS9X0+t7DOVZeYoH2D - lbDIg4IMZmLkAEbrzwwq9HbUCFsLiAf+iA4JoKXlEkmrsbraqs/BITqU2E1zqeZ3vIFrmP2wNrNH - ddmSVw9f7ChjaWI+dCtOYwkH8eURu32K0bKMfg+oOGdY41453fXyAqui2YiMRBBtuK0FtFV6iq3M - Wevt5Acz9L/oSNTbaYto44EH+PMb4r/51MStBfAUDzgiwjvaruxHgayqB0Q+Qg8wOXIfcLRFj/zp - Vb5tOR9UYZfgyxch+k8fCkBExH7IP7pYK9/B1kxL7FW6ntM//f7HJ+UvQmDVi6SDq6l6WN169s8/ - KUFtNco82jqqF+jKC0S3TJ6HWrDB7qco8DStBlHVQzuMxRt0onocPP/gmse8H3St/+eH6UQbVarf - hQ3oFfPy09X60vm79B3880f89U7cFStiA970nGCTJxe6vIqZg8OhJNjY9c4aLGkMevXR7P7NhS4k - VAWEoqSYvxsYo6X7AAv64FGRwjVfEVVflwZl/rXBNvwOKulhcEDKYE7YR/wl2vlGA/b68MU50dzN - lekGRenxxG4/v91d31XgddN8LJsNAbOY6iH8jFyAw5GXhhXOQIPcrSMzqUwSbcJz1mD9MmaMmYvk - jrxAFwgdkmNdkbph5b0EormYspk/NUG0TaXkQeEIS5zXmpYv71/swbyKNaJHYRBtl/USgD3evqiH - Us2d8tAQAf/Sib068sDk58sI+oKR5hGDeNjYX1lByzQmrM68VXO3xfOheNsS/3OJK3VrUir+zafp - wJ2Zej0aPwE90/qFlXUwXPKNYwXOZv7Gnsgkw3aTsgL2xZfO/LeoANfW7xCej5KNL+QrDrQoqxmO - ZXryASu/6aIty4ggMw/7/FXqLY9hCoacvfvL2W/q7cOpjz+9R7QU6uoW1DcDVB9xxFYUZ3l3PQQl - 2vUYdvf6Wm5pnsDHwzSI/lOyehMmJkDWwi//vmcqe+mR9useRLme+nx6iMcGxujgY+MSCvU6nxwF - ohVe8GPnY2zfdBq8xgWYm+fS1+vp5sV//TDzOz8gWDQluGzoR2Lkqe6y3w9M15NHnJfS18ufPzi8 - BIhvJntTp7NwtuBdd6t5edtBxFn3wwZvBTTIq979j/VxCkF4zF++6IjD8PlUZYKURpJxLm6QEkVx - FKjfXgox/LIZ1vczWtB+PVGMTVNpclNS9PWq4wxq4UcJrzUhioRv5Yvf3wOM5SPjgNB8NeLb9sVd - e4oesK6tEKu/4xGsNy8U/vTfP/28vbjbDNGPd4g9GUW+4qqwgBVi9OffuRu4ngK4+18+/Ip1var1 - sYAn5BvEGuMq3y4BFP76e/dzIJ35YBzhjpdYG5Twn38Jr2lV+Ict+9K/+jpFBrn7jLHF0QhFUIFW - eD2w+mg6d/sYlxGWG8mI0st2xN8PfgU/5e/7z78db2kUQ3XyVXxWCpqvoegJEE3iRPRl5KPRMOcZ - atjwiFxUhsvK46SBr9YZ2DXDruZfvlTB9zn67Xp2rOcP5z5EO8+Pf/N94JXLLYN/ftD9ljDqqJV9 - BW+zdcIh/THR/OJeI0RJyxDjEqYDO7yjEDTeKSZWHwbDpnW6B3Pz/SVKoI3qMq/fAuhWgMnryN+j - WV5EDiw2bbH/it7Drn8ZeLxoEr7kow82qBTBiR993++/k6QyjaxKUGKEkGjbSNQtoRcJ9mwyEdm+ - +znlmUSC96OzziBYazrs+kj8q3fb1HWV/cLBAHs/+4yPEVj/9JBzTAuy67t8Gt55AHf9Mu/8Ll9+ - qrMBhcDn/Md3/vQ+nL3ggm1yVV3mfOu6f3528YGfese/DvJ2KRCLQ4ZLe7dN4eMERuJvmUmXD+Kc - v78nZpOn9YJMCOHO3/01ULZoOcc5B39FrOH7Nf3QrR4KQ5yS5DPP5lsHvDi+fbjXB5EEsx0mNLQh - TCUu8OEZtTm9RaiFdvQ2sEFFd/e3Bwv+4UHhOD+6HSDKhN21J26w1oBUYRxCizlFONv1xb/5GCXO - 3WeUozlsuz8KkSc1WP2eBzofzmqPOCnmyEsZODB0F9ODel59sG4wszuanauJ7y972vFBVsd8RAH8 - KKGM/ZM6AOqkwww3s7b25xeG31Lnyl/+iWn316Ha/Rpka0mEzX3ejAp3KeEtE2oi9SuIRrl7JZDv - rAGfH2FJl2962kABLyv+42eTanYj/C2eT5K9P9ZQ1AR4fTQyxo9XEy2nWttgIx0Ecp4a65+f9G8f - JOU9q05//l7y7BH+y/8WqLREo7waRKnTTzTbzi8Fezzmefz8hvXiEQf88TNjwCz42yfAnc/7s1Tk - w+bcqgV0Z8bCN3ZV601Srwba91VYVtfaHcGzPsA/P0RtfA2w1wsdkTA+EVYI9x0WbRFmGBnT/R+f - W1j59wBRKKjYcHmpZs0UcZDjggonwbV2/+23Ps882PchaU3xcwnBPe114l8k2WWga2/gZAYZ0W+2 - lNOfDzwwpJKKi9qYoz/+It7Ygs4HQYnUFUfSgna+8Y//rpIkWXB/HvKEg08X6NoLfJ3eNyJFagUW - r+Uk0HVp6q9/evlc3zVR5bcIO47o1vPO5wB0pnwWd/+m9w6tAM2n/px/u//HZsHcgyeUFKJLRwJm - /+RrYJSp4YtqMNM1OV4e4Pn4Knt95HQV4yWGf/HyBEWhq3uxJbBePg+sljeGjkneWeBvX6LfdOQu - HDAX+KdPjq+L4K7pr3qgU/I6z2D3/2lU8D6UhKnDCbq39eIlhINj/cPY2E7bQA6XSwZ3/YptOTDA - qEY/B77H+TczB1sYVuU0F1AcpJEYk8ZEy+jUMfzDA/czddHwt88s7lznw2628+1PH3NcWO3Xx9G4 - +yfwstki8X5EcZmP76Wwe5xnrDKvCBCu/z3gjkfY42Wb8pu+JrC4Ut1vQdOpJFS6Au5+ry+EJUPX - bZYyJB+MmNizeXO7vswSWCgVwfbffKnmSkBbe7Cw+ZKkmtn1OPpKTT0DObip272vU+SDosKG3QHa - 6WjT4IudZfzHJ2gzvhRAD/Xi55YxR5Nt5B1c7LXFEbSXmt5UksIrNWZiVV1EN7MMUiS+BrznF4Nu - 989gCK7Q73c9Ou31D/NQ5zFmfbam4iOSxHRIX1hCsAG7/yJC+/WqiGbSSeXm+9zCw2vj5qP+ntU1 - X10JYmG2iKM87IiOxrkB+z4UX07Rz52mXHyAT7dNxArLGKx28maQeYE+vt3dKiImpRU82ouBzat5 - VH/6euqhIscDUXw8DVNtNgsS4Oxg1e3UfLGunQBf2anB+nPTotXAcgghPRVEs7uhHqWhceD/3L8G - 2NtweAD/WOlYqVM9575lXMCOowf/FdIr7XKkPtCuz3Ekxpu7vS9RgsCxccmrsd/uiiNrgRfb1/7t - 29bTTYuh/D4NPhA3CNbz93CAu1+FDW6phlmWbUNMo8sde3Hr5Lyy0gUZpaYT63fh6XR5oAQ80/eL - 2BRe8y3jxwX+n79TAf/1f/8fThSw//uJgt4aFSxVgkpZSrwQXrljga3nSVP5TSQFeHnfJ3GEHoLl - ddgWGGzZYW78U0VXoP5mxM9pTLLOknJef0oteg/PmDhPcK75L9wYiE9fOld5IKsM4e8cGD6KT1Sq - a/n6jWOIJhlMRL9tN8DdxzmAOjeHfmRrNCKb+H1Al/kFOA/XedjM4qKcuNt7JJqeD2ATr2IA6Tlm - ibpsq7smDOBAZxWQ4F/+cOeL1XSwE7QTCU3DB9TOywzNq/vFpijKgEZ9x0GhkC4kk06DOgpfJ4Nn - KbXxNea/OXHEJQSXKHNm1h7VYaZnd4Md9X9EWiQzpxf5GMLX1PxIcX5qLtNdpxTY27PDV+Yauuxy - ayt4UHxC/FesUL7MjQzOZROTkD0GEZ+jpIMz/prYBNVR3ebYEiE7eiO5h9JvWA/Cd0HBtG+8juMw - EDk8iXCKAws/2qSgNBR1A1U/hxBF6ltALu1owF4M3gS77jVnnHIVUbTxMZFeHEMXeFI9GPAXH3sm - UiPeJnIKfdIpvjioCxj8U6ChzOcJdplqBOvSbQnyBvOIlRSd6bZmIYOUzi/8LUUToO3vwsDh7GGf - e14obcM4qlCoKibxcqXN+Ve6euj3+6Uk3O+PMavMQJeOn/zvBGi+eh56wLZKA/90ecsqI32yBzwW - pYjNZ5jW9CLzIfIeTx+H74QdFu1hOdBoY+zTlS8jKsutBu9+/yJazFUD00WBjxZ5W4j5+gzgr75g - W2UBSc/BL6dnWQlgzgc8ccTCrCdOPlvwEqUOyfbPSxDfGOj6fomVG/kNq1fIAVpvoU38X3bL5zUs - x1M0qFdyjoRvvjFmyyE2MFds/rwb5YbrW0PnN+xILngndcZKOKIi9jwid0fkjoUxHmBymVx8u6T3 - nP+rx+JQH4nT0idgn/qjgj/4McgzvZB8i32uheKZL7ATwKO6+fPaQY52HbnZ8+SS2w1y8J0JMrm2 - s6Ey1ehvUFYmfe+vJurqJu6RI70Nch2HD92Gn6PBLzYKIhV2l//YN+uhvMq+2A6lX02nB7/Bx9OK - yI0XQsq6ThnAsx7esTIz40CjN7YgJ74yrMe8GfHue0vQ11nfRH8GWGVCDTRw/hQNMeS4HHj5mHJo - FPWZnLHtAt46fDqYLw8dB185HTjzNFrg+5wwxrIuq7y0K7rh7GN8V4w+3/tdgv5jjPElPNo5U34g - h36GdcMx95VqVj93PbTR54a1MxMNPDDDDTqb+cHqIbBczmhVB523N5i3768DnNCDBzTfP0zs6tdE - yzC5Dny0AoMdS5spDY6VgkAdC9iYxLlehkm1YPTTKFbG9z3nU94bxZP2kn0Y8VXNGL3mIyEUqhkK - ZwS227nI4F++i3MrABpUJBGTC3GJOwplvby9gwgnONznXD2r6rq+JQ8mJuxnTNK83uJSyU6h9BuJ - wTnyQPn05iNFSkt8u9s1XTfLCf+ux1L0nFwu8n4ZtBV2wOrKSxFzbBQFFYf3cRbi/OxSeuczmMt5 - joMUaBFnj08Dskcnw76RX91FJ28HPfX3x2+ecwh4L5M8dM6cHzHlQlTJInkFPNZ3lxipiunEx7MF - BduRZ8hxGpiKi5qBkv0K2PfSmHZnVxhh5rOEuEEBom8Psh7Oct3PSz5JLvO1DyX8vJgGm7erQDfp - xs8oNIWb/wXVy11unBaizyQo5MlGF8ooUPDg5WV65AyvEtjKN93QgJ2VyCteVDqXTIX+7u/1XjGd - 35ncwdgkDT77vZqvj6SLoTPh2OcZVEXbamMJfodtmrkyqsDKx60Dq1k5Erc+XcDKZq4BDLuTcKjF - kcv4RrTB+tBZJKK6FjE/MfPgMXg+sf5QXHU718qCfs1q4dvwclX2Y6QCNOxemo+35umuufzaIAkt - ij3n7tabwpstAm55IjfEhgN7GlUBSo/gSkw3vw/TVJUpEq2jj61klnKW+5wgXPJ3QM6XT+wSm9ip - +IdPRtR/waKkaoqC03khryjv8i18nHswvY4ONm5x7G46S1KIUFyQqxiuw/R6bAE6L5KB46/3A0t/ - ryywvJgzvjCLOSy/n58Cw20qon9KxWU1zYf/8EYaLsPAHhe2R4JBW+JwPlNPZ3R3QJdnPbY/+ljT - ebNi1Gn2ERtfP8pZU7q0SAzo2W8z1h02+yIf4PFYGn/xcrm8EwTIG20yA4/BKm/hU4nUui6I5vKU - rs5hTWCfYx5rQQDAmkzyiNrcbnD28N8q/yteENI5lnHUfop84fOoAnv+iXXU8nzTaOghM5KKv/rP - Of6WFdAA/ovcO5LScXoxGkqfhoQjo3Pd/fjfBvKDuTsunFrzkukqUBOPd+ImYeuuzKuToFGUAbn/ - GMtdzbyZ0Xw8a+TaWsdoeOmBj4wMR8Quk4u7qLUYQjbQ1xmGG40+pQpjmKhahsMqb8By2k4hvOvP - EF+P8tn9h78rLhzitkCimyL9Yth8DAF7F72lVDlR8S+/s5Cl47B1fR+CMH31MxjDO9iOPrKgbhpX - UpilFnGK9EuQtQUpif7wsr63HuLXWCX3Q3urV0m9Q3juaEb8W53mNPuWBVLB7eHPUVbXy9IaEjpe - rxM2r50XUa/BFTig94yly1LWo6BcW1Q09IUVZ8ndv/wClpEGomuoc5c9ntDOtIQY5Jur/FW6aZDQ - KcTqvi1Y1OASIN5oEpL24UBX/hRCZHg2iz3NEHLa8VcRmjYfkLOyNO56PZ8YOByW2f8In4+7ZPcU - QvstXLE29m+VKkW5QOva2v7dUnt1dT80g09/3rDGxOeIhm4K4edCzfl4DEWwMYy+obOnu+Tpa3Cg - dHB9gAkbYgnD60BugTKi5cWdCSbYAPzhPI7Qu3YP4lbDGWyfY/0An2Zmfep9HLDw0S+FL6cH/nU9 - 2XRbaLBA2ssa0ZoTV4/jd/bgnl8sXZw7WLe8Dv/xBWsoMWCz7DnD9e4N2GfpyyXtqkKor4xC9Htb - gbVvpBadwurlC3xG1ClV+AMEbnXyV+CRYa4Iz0C+Dj/zSZdzdfMdjYGpHigkMrrBJRZeKzgZXu/P - ZWWqfP9de/iabeiX3SHNlyv4+ZC9h4d5pNdzTnn2LogmuBMSJVUf0UukGsjeXt3MPsmt3k5cH4N8 - qhK/vS8w+sMrMUyfPQlu5infwC8P4HUI993fb8h/30+5QFFxHvOq84b6K7ufBf/4spoetoH8ihuE - 4angZmgiNd8UHjdg5+cz3IJCXdiubwHLKAPBJAV1d3oFIcqztsP6evqB0fBPBoQUyjhZkgQQ/Wm1 - kD1aGb7M1AT88Z63UMwFSGzls1GKKXBgZkkIv1bPqLckpAk8d2tGQiFPB1qAwwNGvHMh+qYcht/l - plkwPD04fJ4tX+VaN0wR5SzpX/0uzPIYTwcIc2y+Pi6dovktQD+7nvAff98a3XpAXSPiDG7HrW4y - fAyAkZ0jIjVsvdef6sMTbpZ//JRPflYHbdPqsLvhUz72994CW/i1sZcGfT0j6WTAINrOxL2eEzB+ - uWdx+sl8RpRCPOeU3o8pVN8txMaAfLBV8TjCIlcO2OscGzCLIwriGF4WIs/UpDsfsJDO3Hjidc6P - 0neLQsjE20r0P37ZPPoKOKc42Pm1C9hkkmfQCcaJyGqzDQv88imEX17HssvowwI+lQ+jVP/+my/j - +G19uAj49Ze/YYkG1P7hqc+k5QxokLE+FIy1JfHxtQD6bK0AqpKyb6iHaNgAhCEMyXwlO18d6A3+ - OthCa8G3j6q6/C8OevTm28BnwOEejTHfPNCDgSG5Ou6orrL+tUBbHWvsCbSptwg8K6g/aoGYZ9wM - G9XvPUr5O/Ovf3Z9UkA5F0MiaeumTmpzVGA76yGWo2IF284vAdRiDV+OD2Vgr++Qge/XciGy9Kvc - RTyUFtR0E82Vacy0s2YLwi48P33hcmzoKh4bAf5UCrH0138KTSpx1xP/vv9d3yEHxeMdzcdhxtHW - tlMFvZP7JEYlkWi6SdUCi0XMsXSMX8Oa80EG71919bdLJA/sb9jGv/nrH3a+N/8+egx2/CfJclZU - Lpn9Appoc7A0vjCgYygUEH2qEhtH5UIX8U4TqI7zgDWebeoprKiE/MoV/FMbBQNNXu0BNqXfEeUS - vYfldwYhuJ9Sj8iPpzSsQDQP8Jd/RaK/j0693od3hc6Z9SNRd7fzdeMOKbyRo0CcB1fk+3w+AFqy - PDa3fgYU0NOMVBQd5v4UqDXbacIMR/iw8Qt95pzu8xlE6vmGXwIXgnnQriFCx4vkb1shgI29SCUS - P8MT20/RAvOnCRJ0u9wsgnu5AqvaHCXwM5ybL37vzUCLsxOD6UcG4hy+j3z7XZpE3PWwP32E3F2J - LCQidB0O28ehpfQjcAbskjKbmXKRAUUyYkAFtSfJBJfJl218HQDiTIrdLM/oIq9yAgWWC/7xqUUL - 2we6tpn7D0/59MBxyNviwQctKCmdrnr/xw+xbOqOu5zdZYT9Pbpi9YPe6vyZbz3c1rOILYd57yeG - jwHc9bp/NJVyWFB5DuER2QNRj4WnkmC0JcjNy42kdKnoH97B09sNsJR1C9j1iQD++KX8Sle1n6xM - +dMb/jIssbrERIyBSGeAla9TRsvvTEOkn4GJXcG7q0sx3Dfg3xiNOLVwVpltvB3g5Goi9opxq+eX - eBohd17dv36uF/lZxmg6yw//+/N4unztQwXEM1uQcw3yaGncZIRF4sxYH2Cvro8ie8Cw53TspYSq - lB5GH76HV0yMcnNz9sPqEmD7wCFeLSbDelTkCkSNX+PCwqW6vTO7A6M8P/1VbbZ63fm1WMcv4jPG - D9PVzMcRfk+Mi6/kKQ/8InkPqPkXB59fWzv806NxNy5YupmnaNvkWICscQ0IjnIr50ZGOEBa8jz+ - q5+hOP12/meuM8qaatic6OUA+rEYfLHfWz5/RqVAh05zifr09Xq906iDd9bE2M4LaVhQGjnQWVz1 - j//t9cVyaEhPoS+29EkndH+J4Pgufli/JJiuw4lbENuHDvY/l6pe+JkpISN2Z3IVPh91GwPNQl5z - OfszTPR6sc+p+C//ODxrEbOujAjUELozPdwhmOQ+P5wQSgosM8t3WJgHnSEK+sAvkmucr7PdP0DY - vi2cWzqt93qHkNxUdWakcYl2vG7AFIeWz6UqBpQ9mSHY/Sb8er4hWLr25KFJPk1EC8yv+2MzVYOf - SVSwpHPvaGrEHwRTJZ7+8IaSR3ZPAQkdip2XvdbEJnIG72kuzXfFcHJ+adYQWig19+dp8gVpmwMZ - VwmwVV69iHknQQtTxwr9g1SwQ3d6TwV8/ooXsdqViabEigWUJIqFXd1RAPta8vDPf9nnSQq2ujvP - cLvnYD6+Vwz4MVwKFG+vC1YeX9FdxUiH8KZ3OrYeTEy/OO0keDPbrz9WZ8f985PgM31GxNG7tl78 - QWqQqSEJaz2XuFQOVwFIt0zf51VH11NaCYjmWeSPcr+4K1isHrq+V5JoshpKrkIjIFH4uDg9TdWw - 0a4QIQ3CZj78Mj6ancfCIAaLJfFnO6SU4TYDgtsZYgvaDuUe8CJATigF7LMxV89oCiS48zu/2p9n - CopDAP3lnJB41MScrEIWwJf3efpH9Jl3PW0qf/MWp78zrLefLXqQmevLLA5qQJnmUVVI4PKayH4w - 0bH8MAy4f+V1RukFR9vpgipYWkmCNels0nlr7RmmT00it/XRAzpdz92/+Hc7/lNVrxi0JaJB/GeZ - uovDZCKEBnvCStucBvLHV5P0jfxjB6NhbadMAL69tFijn3WgrfZRoNanxt/9DvPnOBQQaXVMtCDI - ASX6L4UfemvJHx5TR+kfol0cWqwe7pCuSycmsHz6LdH8CLrbd4szIL2tluCjINfsuSwe4FYl8R8f - pUvDsz08vh8/onHfsqaVWISQco40q/jWDtMtZ0XotsoLS6XRuetBIAvAjRWQyA/5aGliIYMcJhMx - AmF0+1tR+TD7KbZ/Wo4DWMMKSHD3K8hf/Ec1uPxn3vTH0R0Y+Fy0f/NMdeyqZu/DrwSWWQ5EK2BC - V+w+Q9A6zQXHq6C7/HbrfTFTrYnE1XOO5sIplH/+VxqIbD02sZBCFzFPkv39fteuHuRu9ejfpCBx - yb0wFrjj2dzKz2u0Tnd/hEoN3sSmqzl8+2TiQDubIZYfz3Kg39SQ4DdUzliLOaXenpbEQalVuJnZ - 9dKW2W8FCK5R++TWIHVdmbcHwfmZEzM4LWDiPSjBd9NVez8SOubW2QGXzIMYs1ewv6GX+HDvH+zZ - ouou/AxLIKNiJeolNqJOeaH9vZIrnrmjcgF0kpv+7359aIuqylhyJcFcvud49yMALQD3AMz6lEgx - PtqIdtZvgTuf/Kcnh/zHdoANHx72wXKo//Q5lE1FwZ7umjUd0JeBxvWmYmPNW3UUD6WDHtPUYiV5 - 6zVv7BaEfaV3/zZOOGdOv1sLF2OQiH6UJ3duzGsHeza94Ce2BzDdhKVF/Jqo2Inwlk+WCBsQR0yJ - w15f1YUcXQjKp9cSTUsew2pTpYDe5frCweq7ERUTXoHNRxN88HKSqJu07gB3/8OH4+mTTwUr+PDP - v5Sf+pNS99c8AL2ZCfa++ewO5K5k4M+P0SXfG+ifHzM/+w82E5MBdDDlFsG3FJF7JtzBuvNZ0Kjl - nTxvFR1GB+oKSjIhxY9d71HjawrA1I4SsZ4RiugMcQ+rBc5YEoRbvb0txIFEIkd/vax6Th+23sAF - lo/dn2vyzWl6CH+LoJEdP2sWXT4bXAsNkLv/ClXix3XwT79j3WfpZNQFJ455gbBeukcwyMeAQe9n - zvlcGSn7fuWsgffhrsx05aWcTRUeQnQe38S82zUY9/n2zw/l5Fiq1w4UENwvjY9fXNbXc9t+KrQe - NROHTKjS7TfyBRTpCGaBNXPAzd+fAM3PwcN/+7VVqd4c7GuV+/NzczZ3TgXc/Vhf/LEe3RTyLOCM - PybOdacCmz50BvzJofnPj99E5RLC20FOZoaJp5zK81kCL/7mEBPc+3xhrnYDVXQ54L95xbNP6MCC - J+fdv2XocnqlAdz3MzMvim+wvX6TyKdgXEnBf22wwJPrAUmys/0EkQuW8sNw4lZ2X2y3292dgIgP - YPgJBXa26enSwHz4IIeu6dNBLIfRvqqS+DcvlX2fQ8sj8GF46QX/K3zner4Oa4hA8fj6+zmxaNcP - EHZlCPztOdoRcZSqgIm/Pvbfk4YtLp0MKJMx+7u/EK2ubDQwXb4KMYcDHdadD8JtHjUsn161u3gz - grBsj+a8pKDJF0G5NuJ1sUYcBwGg9NQ5HLj6jYe9XDFy/k9f3lkdY5NBVb46h1MCs9PnMQs2WcHe - PxIUTWX82yfklWAYHVy+nUeKte+jfV8nAHz60JkZgJ6PwcnrYLhEv/kkwiGagoILIbHQh/j+YLn8 - 3z4r9Ik9g3D165HPoxL1Tt/s/R1G3EH1Q3DkkpMvpEPpzp2OCsji6oldKf9G9KdqHLzIMpkVcR7A - vIbd/gYY4+Aoxry61k8SgP3/+5STWHWd+rD884/nW5x10SIaYYy6AaGZ2fF+5T1GgnPZxj4QDwzY - MvfgAzYsvPkSjIlKpsdx+ff7r7J2wfL0XxqsXplPdj1JCboWDCRQeJGrZ7lgsl7vQvzT02bkNeoP - u9dQ+L1EHp8/pI2oIFscVPvFxm4uy8OyJr8NyrkQEvvHdCo/nbYC6ueT6Yvd8qxXYe0YWOpHQAwx - SnY9AgLoSYuHs3T6DVN48J1//uP1VVf5YiS1hwrLDLDfHojaSdKnP106dppP8WOlvUYzH9bDnBFl - VALw2fsdJYlk4Zvw9et535+cqFGp2JkSLWL2/RGwFX4g1jgz6pD7ffXnT+Lz7ieuh7krgIeKDBvX - rznwS35r4b30jth/xRVdzuLI/NuH3G/IdvlglCUhS4ycnG9VNGyb/BDgEuRvbAdAjLbAl1uYTcJ9 - 5ne/Y6s+SwW/KiQkVo71sKL7TQQtfryx8k6uA1+c3gFKO6r6kzXVYKR2OMPdr5uh+8X1cn7dx/+f - EwXc/36i4DDb3/1M2Dda6VXzYN21xD9dRaFerdor4JK6E1Hax9cdS785wOQT+8TKqqu6kQn3UOpi - cz6Ozw1sAyYFvIpRQ3BT+TXbgXQD4HHNCVZAoPIXxjNgRMsjsc7fSV3MYmsQ4tYG28bRAlxm/zh4 - CB3RB/d8HUb7Wfeguntn/LpwR7D9jlUPpPgYkDO3icP4PJQOlK1hmQUScfn0ZFwOskHG+SiTe3dK - bC2Duf/OyAWnbzAywcGBJ/ZDMUYRAWuz3BR0HkBM3FtuU6Ya7QRGpCQ+d+NtMMkG8EGL1Q/xF0mq - ucJUD+LjCaD/0zQeLB/73aJXranEr7AzMMNN62DEexUO4XnMN1h7M3zCwSBadKnURY6QAqOHKxBj - nhBdCA01UFbrBT9cwaOUeVw92KhQJxlHmnxR5SxFwgETYnftN/9J7RogLi8eGJuA7tc/feg92ILY - gRiDtQipgryuLonsVjfA+sfrjOa3eZ9P9P2t176XBJiFzAM75DTTxcttCENrNYk5S1z+9z2a2DQj - WqOoA9sPUY/u6tLikIaaOgF/FVBnP1ZyVq78sK32PQFKPrFYuuuwXkI+9+GYHKG/0Rt2mUnrJcha - 6Y0kh/vbZawZVIg/lG98d8X3QMNtjRHrZe1+wmCIPsnJTSEYRhXb8KZRDr7XAzqezj5WircC+HX6 - BXD0j0+igl6sx/f00IC0xC1JdPmTc1FRJehyMqmvvNrLMLmvQEK5473I5SRa0extgQZM9SCTM5py - dwsPXQqBNQjErS+qylcWY8HGiiSsLj3JqQqXB3JtSybJqaY5OVl1DyPqR/PBruOcgafUQKqyBDh8 - vY2ax8l3hM33eCFyFl3qzY1KiEKekYgcPoWcpmWRQO3HNDjZug2w9KM7SFOsjSQ3/ge49RQkSBmM - J7nwR3egny8xYA9CCSef7UpZW+pE4BjaieSjWeaz4p4NOC/LRBLdCKJFoQcRXJXQxv6q42gZdWaD - UtBfiW/XTLRMV3ZE1jZaxI1Lga7nV8Sg8mVO2Fa0RV0/aCtQ3DYmSZs0UTmxtgT4Tp7rv3rY6D3R - 4M2+Zf5qfI/qhpbSQfJD+pInDo711vuBgFzbkQleU3fgiFOG6PBhnj64lQygf/HRPz6P5SSqcuby - 4xdg3SRjnkJDp6wQzjF01gfGd3hr6GC4fQVQtnHYz+I2ny3DnlEPAgmn5+9ZZQzJLWARK2fsA8kF - fC0cINzrFz+fMjssg74ckD1PG1HureMy12Zp4PvHdPgMJhot59/ioJ5+XZ++Tme6uQ3sYaa+mJkr - eDaa8y6AqNKr3n9TLQRrHVwduNzKq4+YLVIZ+zn0ohlHPXGt/jWsYPEryN/cnEgXSclXGq0PUHeh - io1hQ/kYt24MVrHJiH+Q+Hzc+x/G6hvOB6PuAPWS0oB3s7Bn1v7JgPVwKEKcDTn2Z8cHU3JSM7Qe - wHVmt2syMO+HlAIte0EfbZMUcd0CC/C0Du0Mb3PrEtSsBto/40vrs3R5vNZ93jXdjFr+606qcZTA - +8d1PpIC3eUgPXdgU5oTyeMypcs+f1G2+fKM0ATUtZQHSwytIp9jUejUZWR+CgTNTcTKmQVgWer4 - ACdEGmJ6uHKJf707sEivFnHi82Pf0MQMLJUlJoVUy/l6escVYgSi+keT6+jPnx0FkuZ19vmX3tb8 - Or0D+Fx+CbH3+bX3r4G80k9IASSXcvReGNCF3JvgP3wIsJDAoY4e2DysVr69bp4Anet2JrpCveiH - 5zMDaq+Vsb3Pn5V8awXd7spMfKPu6MDnRghnObfmOjx8AL9NHwM9dFCQ87jVYB3TkwRrGIQ4FxSt - ZkbTLBGXPx44lceOrtef8oDu9ZXPJ1+c3OlZCY7I5dTCOudKw/jAi4G+xv1HbrHT5mvg4wW0nCGR - cwn7mqre+kD2wciI9Y1Md9X0MYDzORWw7xbyMD/ubSOGjfX0ef9+HChOyAjx/OvJXT5+3KUa5QTx - 2IFYYUJLpZX5TtHrq4XklY+XaGuiOEBoLu5+10Z1vr2uogPtIrNxPppSzimurqG6C1Ry7uAJ0Hjt - U2hIwslvYV0A9i9fxxP2/TKR2h2/xQaWVfHBuKpaSutbFSMLxxFOf9EMeNBKChrnmzIj19Vz/hgD - CPf5i+/MQ/rDlw5lPuNh8+44KlOiu4fS45KQ3PmMlLzcJwc3v/0RfFljsG2nhwXBcQ5xvCpJzb/c - K4O26sthbTSfgLYfuUFWfpVJtp6SYZ1vvfbXrziae3NgL+AXQpTrFcl+hzDa6yVGrasmf/Mgp8UQ - CeiduDrxz8UvYoqi1+BjChvi9p468NrBlKC7cCtxX/ndZR+araCFlJQE67oBOsqZCK9vmJGrNws5 - jSrogQlNjc89t7betG4/c7yNFn7QBoHl2wUz+irajKOlJxG9E638+0xctfci7vgKApQX3oxV9mO5 - Cy1BCEuuYPZ5cxzWSdhEZMTNAzsrMwwjj6wR1vpZIK/mWdfLobN89GAjlfhfp44GCUcWmi/ag0Se - daSrKx8LcPhwT//ASZ1LHrDekC8ih3gqsmoi4dz6yweO+/0ETdWMFtz5mi/UT+SSn24mCMTSBQd3 - /THQxsgK6OfhibjTRXSJ+A036F4tQly9j1XaskqJ+J47ECPlz4Cd+NJCcLhfiP55nWp6MgPhD5/+ - 4pGv15/zL17kfhZ/+cZ0WggH85vNy7gSd7ncLgnojyEmrlPKO184QRi8U5OYDOeCzfiGJVSzbfaZ - yrvQrWzKGDwWaJFr/VrBdjkCB3XndSSv7FsN3EXWD/B8DNydHwB3BnFRwuCUfsht5cp8i6eghH/x - 1IOmyjcugSmA0fTy+Riv+XIeHBF8L4uCY0aQBvpp4wS8IpLPqIAV2By1k2DjfcFfvbubyVkzwtvV - x/IjOuV09dEBvtws8OHzVwHifekCkb9Z86la2GGv7xYW/Dz5TOYpA32ObQ+TK2qJPb1LdZF0n4Fq - pJ+IdxaYenuakvMvHva3VaM1MdcezudMIObDYesty1ApsotpYll7vgc6rHcRlMZWE89CAFA2dx7w - w8smCQYuUZezd2th3TWEyDsebkvfWwAI8vOvHms6vFMIk1/8JI/j1XNXUJ4bCGLlMrPh/KLj+2Gl - ojEGPpF6bsvpY6wY5FyX81yc9GKY0Lk6gMPKukS1z8doQPFiITbQnHkRRhpNr/fPhz39uMR2tFfU - m2ZcILWlD//kHwV3xa9bLwYrWTDGXOqSP75V0LHAjwu1B7aHJAEVwnd/PYqE0ncn+vBpwfYfv1r8 - XF+AUPgbOedGSuc0O40navcBkQu/rUmv/Bh4uRpfrPfZFtGlABr8ToVKzrAb8+lUygvqPWzO2711 - 1D9+DfA89D7/k7ZhwWkX/MuPsfO/VZDDDjy741+8c7DJPyGDS84GRPk81IjN2XCB1eWdEjf6HEG/ - iIMG/+aBZYxePe36CsqplJJ88Myc535CD3e+vuPrOyddLXbwctYsrIDbIZo2o5BguNgu1vLLJWfy - 8NrAzi5WYg5ArXlLDBv4FGKXXErfjyhvby06LdAj92q51gy6hxJsXodtZmakAuZ1qA/QDC450fHv - l29seyrFedLtedPZsV6JdRxFP4pSYmY4pVuWsRU8GJZHAvDVci7v0gMoi1XGBunMfaPOidDCSUTs - 4PgCG7WfFqwEoSDP0NDBUvhvB+38dj5szsFds2sgoMC5jviq0xvgamYyoPLVfCKfq2O9Fo0/QsmD - K4mf3qwucaJkUFOeBZbvqUC3sXj20GCCiUSmNdbzWbkbqEilB7bcrx4tS/MdxcCQVhKqrAboITFm - uOPzrlc7sHi5fIAtp0k4S63LMIeYcSAYZnVm+YDkRB+6Ft70m4vdIunzramvHrT4KyHKrqf+6gfs - +u6v/6MlSr+i+C30HCtxa+TbzRE2aB/uBvHKnx/Rqzyk8CbMR18sVZaS7Tx4gHutN+wfgTYwSyiH - UJsYivf6yRnvEY/g9rz9sCXaLvjjY2C+GA+inJeAMuLTL6Bul6x/4h6duj7ZogV54c/EbPQTpaGm - awDPyQFbO78ZGr7x0DkSOf8IfdllB2vRoNPqnL86z5+7ouLQQ309f4h8jyYw/fUb/SQhOd9lIydF - Zvn/6vPOvSN14td7D+izf+0vZf9y+lWFBUa38oKTkn+6aw8eLXI7Lvzjz9HyyVAIVc7S8KW063zQ - wbsEHxzfsH5tWncyaqlH9RJUxF7e7vBPv12u2heHzqL/6VsRHQqnJ1aZGruf0PdwM06MDy/0N9Cn - mykw9bKKOKjXAPewQhFlCTdg729+TBluoVF+HOy2yb1e25fpwJPcfv3TY6jVUTjbI9AFMSOmf3/V - 63NbDTjf7+2OZzhaLr/jBn66vcyMnQcDx3+qBl1kLcV/+o3b+wN9voqz47lbT+H+zovACh+sKZ9c - XR5YMKAoJHjv3/W/STmTtWVhJApfkAuZJGHJPEMUEHEHiAzKhwIJkKvvB/9e9q73DlGTqnPeUybe - 4uqbAI66iMiaqxSreBAEsNdXpAWH1sNpaX/h7aOMeOcZdD2PQwKu1V9Lgsh805nptvz3eVGoD8W4 - 9vvNaXzFnZEhC0dtyrSuh25u2KHUw80jc5NsMJtMinxdaLpPBHlOqlt6QXu/oEv3qA7/6qkx5qm2 - +7ED9PU6Qb5wrenWMJ8IHN/dSIJWucdsDN66FPNdiJlZqrVf/Ya5yPNh90f+PBoa5xDs/RAFytmm - TBE9XrDzhRkpm0609bkxopQxRkSQDm6AvxhPDjiYbFgoWwjw4+aYPx6FjPBjdJxjGi2AR5PBp8+Y - ajNDQQr4m1OEK3ZEry6fqyyh8DsjO24/I61y24efOsyRy5J6JDuvgILZyeFcQ7fjq7EQICPMGpYS - pR0p74g9lIfUCk/3pR2XWrqEv3odLjf5A1a7OU0QcbcH8i6FWqw7n5IGgUvD01/fxXNh9jV80mL6 - 1euCPCb8hedUw0iX6DBuLLdV0mXa7sh5jVuMyciI4ovfExyrenrLft4l170zyLkvasc8lGCCovAF - xKifLF3utM8kGJMn0asLpLTwhwP46UevSt2YxVZjQ1YmbbjO+lhQ63sZoFLLfBjs+p1Z4kSV7r61 - hO/bR+j+8QUtr9QQJpTVJgfzCRw+T4xX5ki6+Si9Fzh9E0p8Uy2K4XnkMO/LrYGQDniwxmDW4f1Z - /ZEwrAJvuVjnDJbBK0aWfLcplcndh2bSlyicXO6//TM5vN4EpWs2bt/qzsELswnI/R5Sj935F7RA - oqO816SC5pKI4TdDLDJTvvcW7tj7oBXEChk6/ngf/TqHcI60LuRMk/FmfntlEmU/AHmb9Qf+8ayf - X5U9dxk3SQsH0ToeRyJLbePxGz5y8EsBHwZ0I978e72OidbwkN4vxYJZ/gW5bv1DwZvXCiYAHgPI - y27Iv/Ow8xO49xfkhsF7pMIHVqJKigxZldFSbPPPM7xr2w5kjWokQ3zC8PWEGymCt1AQP93vGDhB - AZ1bEHoLfdYt9B0HEHWL6njtA1r+40v3qyiMw0e4VlBohBT9eM0/P7up5wBdee9VTLFV+qLj4v53 - XgG5HZ0BovTjk0sTRt63o1EKtMMjJMol+3QLdDtO2v0+0nn1oC1DVrzgGgcJUs9LGXN26n5/6yO5 - E00Ah1ssiBFgEHKfdgkWlNXRP/1rafcXmNs6j2B5iqN9wu8NNrdHGSzeYoPQeV09+hRd/Z9/QjY3 - gVWSmgMsHoJK3ItteuvdbPGP/+LTa4yKjb82A1RvmUiUA9t4eC4WVxKdOEU7v+yGAHgc1NVnRVwU - OAVdHkMKDhcuJFbi9jEeDwWGUmG1v/PX0dv5mokxYQsiv7lwZNx56uH3KX7xIzadbt33D9z9BJLl - BMQLulMVHBkhJsZ6/qOEA3oqHUzXxxwZ/uKxcUMRfuTaQRU2NIrXU5bCbNIpycKpoKtNgxxmcrYR - c388PcZNCPnC+yIH9yGgaTOfYXbWTVJ9XM/DzOCfT85Bz8m1zTvv179h8/WSff91MRuLUQp+/s6L - 30+w8uqci6N4DJGa9zPYjiuH4bHpSuKlhalxjcGqP77/45WU2MVf9M9vKLWjFVt0qDMocfQVbmw0 - gvH+EBi48yh8mI1ao2PbTfB0jVxi7vxgC6Jc5j8ywyJz19s0UQ+7n5+ikII3GqfPzebgojFbuPRA - iik7VS7czLeNrASt8do0swx2Pkvk4x8dsWWTUIyWB4+0n37jOe4MuJ3das/TTDFn1BjYxU1Bwbz9 - dft+gTDROrj3C55+fv37+cyfxJDMRsOuNqjAZalL7L9s09Y64jjgXdwaA94aR/rqsxYuHhOT9FgR - upa6IkuAUUJi7Odn94v7xH2NkEwmWWNzbm4hgfYxFJ6ZCnY/ZkuSZujIM8hT25zXwkm3ixbs/cGh - /Mkev//0hfV0LyO3uX8i+Pn5wDz74/Lrx7s/QW5z6LSd36nw6WVnvHLHP7A1hiTDpBISdIsTIR5L - iat/eQoJrPMSf45Bv0D2pd9R1sddvJ7WawkZ44pw7SEwYj/hW4Cn7YGPQuxri1E7LRzbw/LPby3m - YflCdtJ5lK7dy5vqIPLh08oVzKYfBqwX0Jwl4q858qJ61QhbuBXkK+ZMHnv/Xvd8BkjfyiVBYLbe - No8nE7JJYez69dVNAEgvuOuPf/pk49/fHj7KwUEpgka380sZKvZnwWzxCrplYsECDCh+sLDzrNWm - RiZN3K0J8St5xGveTz2kH+lErt/rXzzsehfI9qFFho+F+CPKHgb6Wt8wT2RRG7b4yUC3t7hdX1/p - 9tMPqxX2IZTyA1jFwyJA6kC45yVpPBmLW8LWYNNwXY51/K9/vSyY/PRmPJ6ssyj5MNBIqA+gm/sn - cv+tR43HoOBjBglgkT2EXY7oBTfIUgXvne2h9A7LcRk+JAKaZ+TIPFS+Nt7ksoJ87PhIk+2moMkm - uT89GMLms2nrYX4xYO8/eOfT3mbYXQb/muVIkofVedNkoRpM2y0K1ygLYgYB9BXvRZmhX32iyz7h - +cvPKPN+FQtdGF/ceTHJjvpr3JTPkoHyut8xtecZ80lJKyhPo7rX54u3PJQAi5hZIArEGXXboZEW - 0QKpjozl/NJmIcKpmPQiDfkrYr3tkRUcEIUEIatx7wXNA4DBwbULfDS5t7YJTLbAnUdjDs8POhVt - 2sLnbf7iwyLLI0O0WIf+0NTIF3Ma7/oT/tPvyj1sweKWZwGQ2o2QiyKm2HThm8FV7HOiNYzbbXcX - 9lCYBRNdf3rGPAiDqMXWCVmn9TWuqjGUUJUVBqm3Xi34sckOcOdH4SL82cVG3PosGU04hKfdzyyY - Pb6gX7Yb0RYixkPwEWwIrWnFgFfrcV6sCUI1zkciewh0S3g6mTAgoCOKnxmAdc8fBuznh/i+sNDV - btZJ+vETxMZ1tw6wq6F6NCfyyxPwFCgHmCWFgmRkvDsqy68DnL6qhbz+grtpk085kJPhhdKU77U5 - gkcGfsqaQ+7rEHbcPK66NIfXIzFdxfGoUvcMrDVLJlacZMU684MNX2BgkHH5XLxtDEsMeZdTkHLJ - nO7Hv2AtUoI09ku98XZ+ZPDClD6xfudp11vSxh5mYrJDVWzHfWJFwuWd2OEEwOofLwJwRN0LT0Ij - UqxldSs1EscjvbO+44qtjw2K00v/5Ukdd36ukfTLT/c8Wls09W1D/9VdSJgnZrH5CV/DHNkCuv14 - wy+PrnF1JVpzunYTdDtGuqpnB6X1tnnTzjPEhW8iFMReMuL6DUyYE4/F886DJ5mCnR/zyo/neDPD - mjqMfJri+exl3S//hanz9YllVUcNP4Zk+eVb4ZGN63HR1NkGO+/DXc/gYvVRLsJocKfw6IJnvEWN - xcA1FxzkhGLgMcvrD8M93yH7fi7Wq1jZcCn4M5IzOaDsQ/cZSAR7IbpS+zvPLyNoa0lHYvimHTmY - wfZvvW0xliM9Ce0XmMJ7INYErI4ctTqSKjKF5NxynbadkmgC/8dEAf+/JwrU+58THldD1NbV70t4 - srY1ZNj8SzfIhCb8y7SRyP138SYSN6Zkj88Ysxyr0gWEWyu5UDoTtfsQQL/5y4SvekhJGQy9thz8 - ToVbkq4hlHqn44dN3uDgEYSBbITxxim6LLFpOmM62WfA6Po5gpnVY2Rd5whQcY10qOoxh+z2OAEa - D9kXaqfmTNzzpy/o9Z4zUOmPJQkcP6D05FkuzFqaI/v27YuhT2UbergxyaMp53i9XxhXYv5gGfJH - 5+PR66ONpGl6F0QpJDvmVXkS4WyYCbLxe/XWd2D0QO/5Lwl9A2qruZBI3J9P9NNojwuLVBOuL/FD - FLemgOJ19aWQPDzkZbxTMB/vvkG1XDBJUlPtmFiKXNjjw0ysIn7HdE4CG3Dk9EHJCfbFegI2hkcV - icSc5APAiyOW0rbNKnlYfAaW+5KcJUVKezytxOrYI1Y5Ccy1S6L1phas0QxfeJkchtgw7kbuqjep - dJPJO1wRO3SjrU8bTBQQIoXCr7bclUiXPhMJkBH5BuBtaDBwUwMNyWqHx0VczVxyk4OL/O2ieTyu - aSkVD8Yk1mLII5v8ZSIAc+tifi44uoLCcGE+JxaJWi4duT//UkvxR7SIPB5fgC+/jirZ2QUj+wFY - sPX4nUlCGgLiFh6Nt3P9ZmDmMW54ZIU4Zi/v80HS/YlF2X4H8PqG1gLWwQyJ0ki5h/VSasX759th - xpjfHgv+QAWn6+Bj8PiqIxf++Qs8p9yeYIaiNomrmcENKQ9iHQQvnq4NlmFV9D2Rc4q1tb9O1ckd - CIMUkbDe+vg4Z9hT3yUXf1C1rVLdCMjnl0EuxzYs2Mc6uFKohR/knkVd42uAXtCbioy4j7jpaPle - XxLRsgnZ8t+x+NRXqMLncXPQrWBlIPDfowr1tbyQqoAPwDcPzZXKIArJNcPUW54QqDBPoYTKg21o - TB3ZETzx/onc7anR6IFvKglX45nImvHV6E052GKdvEek8cdopH4cq/BVtX8k/NgJXcN8s6XGuZlh - HZP3njBcE0n4ZDXKUn7WtsN66KG1nAdyB/yocWI5vKBdb3/IO4p0pCM5nSFcKYM8+c+hnBKlWGJ6 - 4U2ypVQ65lUdMygeTJUgWTuOW+V+XMh7LwvZ7OcO6PW8J4r9LISr4T09DsqwBJ2ymcTGCY2XUdBL - yAtCg6IpHostJ3777/1U8SV2szz95RK3KRlyrMGhXA42Tno9qgWZt+Xo0SKhjJTcE4TOjS6NNIuA - COc2w5hv1HvBzcC3AaxkJ1yYTO0YXvb3/7yxGXLnook3plxc+ATtjE9fJ6OrPJEMtsjNSNDMnreg - R+/CQDpdkSacl27RZZmDZHruN7WwZbE156WV5O4iEGuemHEBqu7DzP6+kXZ6G8U3c4UJcoxjhtQK - WYC/ripLXC5fyH4eKOFJ7kL+eVvDg6HQ4lfvgLtPAGWVTzusGWdVimzRISH2PcDNWmdC85w0Ie9a - YcdUXZqD0MxCzJ8YJqavMEhhlbcEJY/JpMvfO9zg+1Bi5Ey07T6/erNg5UlMu8gAy0YSB5w2fRDv - Jgt0Gji9lVhFyZFWyqs31+03AYfr8YYcpS4orVK6QcpXDyRLycPjs+c3hLpmykQudA9Qb32W4FXm - p2CrSyfekL4IUBmUmISdrXnURLEr/dZnVJzi0fEvyiV1Zt5ITZJPx2htOYkJfeh7PdO6IXblVrLJ - RPb96WmsosAvPOUwJbff9z1weg2vQvhEevESxqnKjzXc+wsKL2PYLeOYuuIAgxDpWnL31kF9hvBX - n7x2nwNgknsE47iV9t/rXTCfePlKMOdeBAU1o2H9XWbwVMoBun5nTWNL9BokfTRMdBdsR1uud8uF - 5PB3I9ozuI305bACuP/VLLoc5Y2uSSWq8KIqMnm0qO8GF3w2YBCmIdFtC8Cm5NILrucxCD9Vx4zf - ryH24v2L8xCzTRTTA1gE+Az9GJn52I+rg58LdE6XiVzcdR1XyDSbdECyheKDJVMa2tMAE7bfiOVm - U7z9nWsoBQmX4bdymcDGBWIKn4Fdonschh6D8ChAK4LhfApuEliF5qVL79fpSLSGbwrOEJte6tL3 - HzHkinajWTqV2PwHAAD//6Rdy7aqPLN9IBpykyRNBETuQUDEnqAiIIJAAuTpz2Dtr/n3TnMN11BI - 6jLnrKRKXgIcD+3FXdxPWaJ3UQ74lkSfnDdHViFDhVGQbPuxPJo9D8NzfcAePT7AXJ3OMvLVBmJ9 - 2R10wdldStSYB0rt3z2tv/ixiAhSU6U40uiw3CCRoRmmb5xIfKZLn9nikbe3FbzFQ3dNC5OHjv+2 - aFQWfc70+6FE1eew4KsRcvkc8yyS5fky03RUn2CO99qIhjYwsGOsRs6f0D6EF9HYKlBjy8S9eGng - dDQSen03CRAPd6GBJ3TU6PF649z16bwdVJfWld5kq3dXbQAp/L6bnKZ+sLrsqI0i3NY7kI9DGi/J - N5SRsZYWPquL6koHSk34pcWIQzu91awilow04yzSQ2rK+pyKzEMr9/jQk7Hu2XDxmgqOAXYIL9wd - sKL72UT97/vaunA5+nxDTgPvU3qiZweLbvvbGwHa4id12nLPyJ3FEL2Up0hPX6TW/MkMPejVUUWD - LT/+nuaZoOJ70wmnfPqYVZ+fimaheOP8+0v+8E+ouL/zj7z1YnC/gXEJ0G+7I6c/h8KdbeYokNgX - RJ0X5w1roPZP2OLyQ0/s0MfL+hg9+Ba+PdmP55MrOPqkwkgK7zioDM9l6S9sUFmGNr5ZzmeY10uv - QuueF6Q97N1BQj9mQVfgrGC/fT4SxcvgFv//4m29xhepgH/5zLkrl3rh3kUJc8XoCfdgQTwL8bmC - 9wswqcvWGCzcwzf/fo8m5+brCtepC2E7KSI9PsW3y7I8mhFNipo+uJfpCs2SNaCpZoOGTPcHtsJQ - hYkqXPGJHex8/sChAFo+Sjh8td+cluDUwpI4d2wUJp+ztLUtmFy9N74IiwvGqBYqtPkbPn9rb+CV - jlZQNMUR23tPdYVD8IPQMiqDmq3quwJerz9Yp98veRbPff17LN4Tlim9kX0SfeI1MmceEWXPqLZ0 - qjvatzYCXpPcsMqdxJzOqiSDmmgdtdTvK17PDYoAsa/ov/fV1FEGdKYmVflezUWnmDhwG+bztj4n - naGnJ8LRaC4Ug+cHLMLVD8GI4wM9HN2dvibtpp+g/YUWn9RxRVe5q9A8CR158uTmsruER7DFN7r5 - uyvIN9+D5NmH1D0zdZiPcarAP3vH9Kuz2QD7BF6Lu0b25aCx+aMqHITH+kxWy+vBpxwOATofg08g - XaYVrGkRiPB7BAgfSCoNo/0bNdh3jwVfDpUz8Dd75uA9U3nyC/s2ZvcdaaG63fGLlmsVb/gmAn98 - YnsflyXWw4Sh8uGCfWmfcqr5uQefe07C9skk8fqXz52dwdFXbJr1fLlhC6pQ/NJD2sX10v6WDnyw - 2tKAPOyB92aQQY57YrKXby2YB0PhlVMntQTtc+zO7XkmcMeWOahfdDuxeCMhTAdFp24fmmD9w0u9 - 4JlEvM4vffYPSwDLHxRo2Fr8sLxZZ0Kp/gbUSK9lPp80dUZ70daw+pKO+rjhnf1hCGR8cMoYzH/4 - 91irJ+wUpRWL/nnXgqcZx1t8KIeFNrqD0uiaUPvJRzFfKMCA5j5/Bugi2q4AkdWBytd+JNTqYFix - rSaoQlUfbO/H1pMvERAmpKX4iax6KasqBXa49WyjoQb4VAQBfPlOgbWUiGx9G852Qnp/pfHkfcEs - X84FMvx5pHnzmAb2ft9baD4csOGHTTF/LTNaohngcMMfgvWdNbTX3xcCN/65kmwOkWQXN5p0r4Ux - VhQFFK5ZE3Bk99HnYudU0JTOMz1XM4tJE8lPRLGNKW5GOIwpcH7/4ldRz9e4cwyVQKj6XDDeo3c+ - 14nqgZYPDzjkFDpQ3IYEXk6kDOYNf06V6//gLl/7ja8o7hoMhbe/DeuZuo2HwdhpqwwtQdOx6ssX - fYHy4kHqH95bRTDPZ/wWWpA/RJMa4eKzOT4uBuzVYsAHdic13eGTCpv36GPNepwG8b1TRnm9VinG - h5M4/D0fzI4PFRuGMjCqlmWhuJkL6WnPJzHbXScFmnVl4kMWmDE9I87b58Apqd8ums6bubCCPzxx - 9q5NPjbfNEQflEmbP3zzmbPiBhoBX2P8zCd3XtRYhO+iGogwTzwYHSuzwFTGKtXl1dOJEeIAVoHx - ppcfp4K1cW4N2GdiR73l2QOmXxQDIL8441z5PMF4uWEH9Vpz257fZWI/TykYXvw2dTE02PIo7pxS - gN/Wpdw0avFUGwpS9mJLVS0KgcRJfQGfedPiu4SCeOrHpUX//JGGFVh2Yk+geZK6YH8LthsL8ycF - kqy8fZYMziBy/ZXA7zMTKL52lbtel0KDfgpNnLNQjpe6+UV/8ZSg3eEwrPdtBtcSrYDq0kPSt3hH - lBcOHZwLJ4vNjhVayrf6RQG/GxR3VpeoRNneabBnNVjnQxAF6ITnDmvR4+aOJzPzwH2MQrLf8Pp4 - 42sCzuKa480+63/7eyTz7x/+/7d+Oc/SYAVXxpbTYTJhwK+vST4z0aUyVJ/QXeeaRrIz5dRdroUS - aM6KT3g6uNJffrh8NMVH+3Fk9KwdCURedsdO11k6A/sZwuKs74NFXVR9vVjziu4afWMs+ZY+h7v+ - Bw++8iS1VTtMPLyOGuw5EWz8uNFXtvNUZVeIJT18a68WDvk5RD3O2IbPSf3HT8CG/wjnpJYr/dn3 - qp4u2JZ/Ri20NyBDBakujvd6z6hanLV/fMC5n2A+R3Mtwi99jtQMot5dof9bgf1yJGxqqKpXWtMC - bPoVNduzA6j9tO9Qld4JNeNU1deehzOMk5bHqsaPObvuXx7cES4gaL22Mc3fPwu+OBJh/bSd0D5w - Fg9BvMuDQU09dz0vQwtd2qBNLypcxmKhhcdpZAG3/b1qct9Br32egiIZCet3u62HziUS//H1H0rt - 7fPihJ9bvtjiV/Snp2Fsci2Yw5WlaPt+wudNNrBFthr4Zg+A3awdhn59sw6Fl/VBqDn1+nq77RJY - fd0Xtbf8Kez0zED+RcbUt0CoM7MMFWSNb4cM6rdnzD7nBpR/xZUM+J4MbJAzS/nRVMHmofOBINSs - Rc5sifiwq4JY8q6/J6gHWcHP8CvV2xiWDAYCn258Po7HilshdAVoYetoK4Bu9oO+OQ7xFl9c4U5L - D+ny60Z9YloDVcuuAB9ncf75zzKRfQk3+wo4RffZT57EER5U1aced6sYJSV4wudL1LD+bvVB9E5q - Bjd+gp3OHIfZAe8VXW/eA8enFxvo5JJwf5grD9vl/eOSr+WYEET75o9P1ZMtih3yofTEhpHNOQm+ - xgo2vB0IG19iRAlN2OqrttlbkYt9Zz5h9p5qrK7v1e1fKhHhq7tYhJVnsv1/ZsC2+9T4oC6lu9yO - Rx5wvQOpeqOSPptN8QNS/QmoVb+tfG1QHcB6DY/4j18xpRnmf/t3jB71QBKamH/5kij8fAKrCGEJ - 07aZ8es5OmBuntL9T1+h6un7qedCYQa6nd2B4izeub8tfoEKWxnOzipkbL4XJUTKOmDtDFBN4y7r - wCHgLthsmZnzxeldoM0e6Bkajv7rX98W7IT9k/rBqsb8+x0oUDRGDj/a0ohnep1L9JboNZg/UsqE - pLafsADd648f6f213EMAcyUPFO2W5eSinhWkPp9psAeS664a3JtwRENEvVvg5HTTR2EuQbDpP/eB - EiU00AAOn0AJezMXHM9V4M3PVHzAse8SCBsO3D75KeC7mQ6bXhdCu3m65M4FCPzCchLhVN0Jdhvi - 5qt3su5QNPmR5tllAuu9/fxALnGAWrOrs+W63UF2VEKwbeV1vOrHTIX9oazoVf8cctGiIPj7Puro - DxyvfNaNUJwYCET5BmOGqiICv8K+UG+8R4zh2+8O8722blNd55hs8UahK8/jK/TVXKDjTwMbfqW2 - NR508ZvMd/THN/TkPrJxMYYIiuyEsT81kz7N81JA3vlpG1/MXDYMbxHop92d/vEHnnt0M5wNWP17 - fvFepR5Mk4dG9qPa5+PreOOg8vk4OOQzbRA3/QoyIaVUk50pZmqsOBDJHcIJdoE+Qb5f4f7OpcEr - NtthpnFv/Om92MCTOHwG9TTCLnbOhOe/Sz0PsldABXAJ1X8V505ChHjZ6SYeOzg5xwyenyXc8Bl2 - 7r0EFj/KI/jQPpQ85O7C+C3/gy3eYdf55vEqzKYHtTRvqBH0r2EpadaBbG819PhdQT1t/BREH2fE - mrfT3SGLmAKuh6XAnrXd8c5VLQFxL5/o7fUd6hU9u1Ixj1ShDssjxozp1UpsYLstvmiMn1vJAhse - o0auIXctpViEfDXY1NCTvT5L7CHDTR/f7pw/c/LbGx4EpDkQtbiVjEWv/QpJOO+wUyyty7b4Aytb - OgY7H6cx+bPHwxjRf/lTgEj9IWv6HKi53pxBmlPfVHb3caXm53keFvkDKojeGAYAw9Cd1/O5Rd+y - aggrmZMzzYDJHz/Ep0tx0ZnddiGYbnthw5uUUU1tZIg/4XObCi3XxP14IohqjSP0dzjH9FPfK5hG - l2Sz32LrSRhu+X16U4uIBIzN9xn+rT/2w3cSz/HeGeEgAyngehC4//LlVr8J5twY2Np3wRMyfd7T - /HsT48lJfjOcHsd78MPJko/r+dbCDEQRPjaJlE+/5aABrjsdN7w46ostir8/PQMf4OXLCNe/CNj0 - +mDv7/f57x3KJbRtqaHmKVBzadO/oZwlPT1dXCmeZSMnEN75hhYH3NWzbA0W+Ksn4Of4YzRPmAgp - 97lideNP63ysVfTHR463kNRb/nOg16S3QNQcO18D9V385Qd6sj/MpSnpVBhzU0cNFsF6vQr18w+P - 4SglKWNLxe4IxCgP+D4adPKLSgWdzbCgR+8iDBsfSuDvfvgSGcb6sPHhAAqxa2HLu6juhk/HPzxM - Wnf/0Oeo8zg4tJ6Bsy2f/vE/BNKTTQShJPoSZlWnnFSxpMH5HgKmyUf4D2//6V9THLkjECnoA4UP - vFg81MkTgvRoY30EP31JhjJBqpd0f+vvskAiPIh9d6VawzWAUP7jQcl+3ujpvvSA5V7BgebVPLEr - nCyw8U9DieT0HAgzF9WL/Eh+0NWTPFBOZHJnaq4zNHZp9S9fLvdqr4DOF1HAb3osbYJjCpXvKNOA - vst6vtkyhOu1TMm/9T8LTIXLeTJIbaeNyz6zKkLcJhdSZeJH3+olKtTPpUOfx2hx58tHeIJt/3Cw - 2efaSl4Io9arqZsZoc7Omk8A9/PYn14Zz6PtRDC32x/+i6djdbopgJvuWaC8pgAs2/g7qKW3hlSg - O9f1X/wCIRODpZPf9fKSsQyTo8HoOb1eQF31S/Ev/xmK37jsr3621dfouUlbfa5W7wefL16jydHt - h6UyOQ9ob9Wlh+1z2sMd/KufYhybbU2jvEqBt3cV8uOCB1gK9+IpmSs6+LSv05r91Q9myzphq15N - /U+PBL5C53/xdbyQIoGnJX1hi/aWLvTj0qAYfhVqBnUL1rJ9GtDOUfQPH63XJVHhx5UO+LTlp1Et - jimQ9lyGsWgvOnvNWQbBWMQ4Hm9BvaSnRwJ3pWZSz2qo24WSNiManDJ6dKvCZVtDXrTlW+xs+GVe - aKrCCj5XrL+eQjwX+l2D5sPa+MLpBxaaNyH4CePx3/pKf3yV+vqb2q90Yix/3Efo6mlO1eUBdMIX - swWtVblgn3uZ+rp1PkTsfYxpcD2/9d59nw1kII/HhViVYInT3IH5+7Nggz+m7qyWxQo1ysVk6N/N - MHEeTuCmx2Jcz2/AnrkeQEE7nrHbhy0Y09NehRt/2vQeNrSR1mewTR8CEYODm69MgS1oqtWgx0aM - wHzSrBXe706FtbLoY5pd3QQWcExJu1ojmOFrjhCujD1N5RvM//GFyld/+Bg99FoI6psKj6V8o65e - r0NnLhqHEuLO9Dhza73ulY8GEm13DARPOruL9Z1VaL8sif7h77GM1AjZ+3gkiJtrtvwWW/3/9CiQ - //eJArWWKmpKrlmzMP60sDaFNpj5/V4nqusEcE65A7WWNs5/snwWEdDvIz7a2Q6MJ00U0WvGJjVr - U3X58uqF8OO7Iw2EibDZFI48dF5HNRAQutZC+C3vilwHZzKm4Y41EVlCdGWGQdUVGYA362WGTlWH - RPlcgnhZeqGA3f5aYju0X+6iv1ELT5Z6okkL7zmJTjIPz29wCcQdaNzJT8QUXMOdijU4KcPMFjMF - xbxVpJbXpDMjvWrITo9PbC3TfuiJlgQg9ouEqr9K0ZevTCLIwaanPuhywBJLEiE7tQLVxzyo2eGx - ze3eWTU2gVHG0xFMClRGrg2WQ1KD5SzcEtDuNoRW08oVo9MsQg/GH6pqTlkvpqytyOCIE3ydWx8v - lVAbMOE9HlvV2YmXzpgIhJJ7oW79PsXs+/h4CCtjQWPbOubCcFdkaJn4Ebz78RFLjSQ84bPB29QI - yg1TxfYVPHGFFyz9+Mil00/5obs4EvKZH3Bg05PjlehadPiRBF4t6vxDhTCMJLJDN92dy5bM4LVb - R+yF/meQRs4K0O8g/3BIbw+wtjszQa9yeOFAXF/u4gzDE+7pTyMsSzt95UQrAduBFHpTQZGLdWJD - uOz0gZqv6uYK1hk46HDk2gCA7JDzvjolsNGnheLzQxsm+zUaMFW7NthFVcQkUXuYkFfUGGeKZeRi - /PFCKI6KQ4DJ7Hq9VesMn+HypLkXG0CgQdwi6McqPjZMBcIteK+gp8uHXi6jkbOfUENQ3mtG/YPa - s2VHyxA9rteKqqgXayLbE4T7Ghk4Z7ySL+Vk8lBdqyu1VT51hcQPHZg80gvFn7wCsyten+hwhC2O - x4pnLN91KmSLtlCDXT/6En7LDB1ly6SxqFGw+LG3Qp/PUnwF3jQIX/MawYTNOX3c9XvOf8vVQW02 - jrSQnzJYdirMFNf4JdiRnmXNWk1P4fBOI5rKmlOvtAQqYO7rQYA08fpyuHAefDn4hp1BvzAmrmuF - iP8zqM3Zbt6sLyVSLk+kkOVy++XjfDs1SPoFBHvO5MT85i9Ik/kHPWrPdy0YRSkjSU/CQL6Ju3rO - k4OBvpdWopbKqL70B61Fo/BO6MvfTjH0X6ai06IURLp9PVe6fd8hOHbtK+jZ0LqzsP81sIBNjk9r - LeZMqDMNHvvXmTqbv0v0mxsQfDgbh9rZ3A41FBACNN3wXVepS0utjpB1TAd82H11XXy7H4Je9qJS - rJv6sLy/q4UesfrG+JNrgG+8tEJcb92xaqFskKbxu8I//wPN+aOv4Hlo0edFbbLfnYR49JHjwBui - bjA+h1/NvGecoEerXak/QyeXyHVuEcVxT3bLkauZcXQgEPyiwl6YuIDfDzcCw2Y7gVCN52HmnkoG - bif6CtjDHxjb9ekddq7j0GOp6/mK9kMBryI3/rPnkcohB6UF7bAdG8HAixejQusjOuEku2KXSmGg - QZH3NeqZ/DxI2W1OUUAmHQejHzOBnEUCcRJd8VE+1MO0o10Edy/HxOfLzcnX+ntq4SlXKD5+dlK+ - KCHHK1v8xOr5ZQ/b+zVIC6BF87s8u0T5YBG+yv4VwKPYDsv303Xw0RYz1unDiNk9uUbwFsEjPn7k - sysIj9SBaXYTg92LP+TMu8sBpPjcUxfiT76oShL+8+9GiPf5nJFbipJy/WBDrxxAmLEPIEy+MjXX - CsfSi1kE7kMUbP501Kn6ygOIh09AE1szdfFWKTNo2YvR4LhTGN31z7sSh08XHxF1dXbKMwui7fS+ - 8jm9GbWUi4UaebtzBm5d/kPSoqBOvXDUOc1eLel7t9p/4Z5gIy8Hl9cfJ/NffHU1BbM1WfQO7oyr - gm3rVcezhlMLke7mYnuUCrZ6VrjCr9xM9FhkorvWF1DBrr388Cvo9/rsq58UVcXuTDXJ3+XMDX9b - 8+7yTC2zK9g34dVWqVaOI70uumwZ7qsMLtOPUtNK0mH5i//Dx1Owdrsv+cyRQobtaAF6m/swX6/b - meh39Wuw+Uy1gdcf2IB1B39k4XUYr/73MiOzvRZkl/qqK+a+5IFcAkogbM9LyrH8wam4rVQ/NM9c - vKtBCGd0NwmUnxkQC2VfwXcVuDRwRG5Yr6dMhrLxLvCdjb7Oc881Q5f8FGFtOQ/5olrHCFH+3lCn - 9SJ3PoV0BnLtnfH1/kn1bqL8iIJfpmHDuAVM0DS5QUbxNcnexyobcapUUFaDnPCbfYgpOBfo0HEF - zoSsZfzp4IdQZTcb37b4Qv294KFI0Y7UXPPencOLCtHTvwQ4/rXqwPMgsaAZX9t/+GGa1n33F59x - 2q8LYKyYErDb733qvMoyFkViaECZ7juKW/Ia+EvSa3/5jqpbfmf+aERoz8qBZlt8JF9PSuEnzyz6 - fL8rfT6/1RQl0XHGG75wWXv+8OD98hJceHnkSm7pKXsqnFOcIo4b5t1vPyPFNCyajZTW49/+gVQE - ROp1EDfVq6zA75LusT33YcwsWyLwOF33BFyU1qXuWyyQUCsdjbd48z3ksolWNvr0xUuRPr/564he - mRJQb4tv83XWZDS63Y66qxjm62XqShAGX+OfP85FaRVoy88Elt8nmIu6boAmi49A0fYWGN/8laDW - /jyDrQ48sL61nzDbwQCrl0zPl3zfOvAjfjrq2/1BF8T+UcLLadCxDzoAluL0suDvUJypKd2Yvpbk - 7sE9MyJ8IR2pJ5sGDRyCld8UbQPwwGQddLndIeBlSc2Xz8PIoNz+SmrbjyleCv5WwNAfI3qcH0W9 - VnKpwfl3D6kuGEcmZJGnAHK5XagnVk3dAelmIjO+tP/yr4gcqYH6awSERV0Zrwnfzuj1GDqq5v7Z - FT63PgR/8cz5XEg+3Tw5UE4hXrBKo+vws+czhOQiEWwluxz0RVuWiNMtgjX1qoLp73kv6XzG12P1 - qSfG6xFSa2Fj2ObBFfeXKYWUF1GwhFU7sMthaUHK5RU9svMHsBWVEfqHP/h5YKsxL7ISJ4uHj7zV - M3Y3SQL/8K65JhVYlWi7Pfh57whIrWhYDmY+KkTLX9TD6btet/gHndf7hm3lKoFFi2ITVn7+Izte - ityFHV8ZcFfpR11+eMbr/vJJ4et9lP/lb8LMaoX2eX0QbsB9Pev+2ALleV7oKzd0MH+OYQiMTQnX - lMWMpTCeGvjJxTcpmXvOebV1Q6jXtktA/T7lBNNVBQ/cnsnsT6k7ByBskGvfyN//x8vYKhGsCnQO - lMGB7qg2NwIHR/bIN+krd4WDUsGHvo/x4akdhvF+HQOg3MorvkpxDPixFhIwLkFMdmp0j6fHcWrh - hv9xUTVGvL6ha0H2fMVU34N++MhCogDBV216cp+3Ya5eXQm/AcmwHtG2JvgQWFB00onaj17R57/3 - 6fDLpYGqm2ze8ITidRmiR20MXHGeLyXQXTGmeobfYLXnG4RbPqIbvhtmMp4bKJrPI7XecRkLTwwy - yA/XJ0F3XYlpVcQNvHF2Q6jcfwbWYhjB7FbZ1HzlEViymHuCm549afaO1VwUKq/7w5f4ijW1Zvus - ioCQsPuW/6xcSJ6jB2oAS+xu+EP8ertU/mXMosZnrtn2PC0S3773n//YNGiVDQ9Sg36WYbmFcaqc - n+CJA79+A8KdigJu8QEH2eHrrg7pMsDmNqOW2DzieTYPHNjyEU3eqpnzoj4/UcZPPbazNY1nRosV - Zm480eOpcIdpduQnyOaso/knFfKPFvYV3PAlNfKbwdbf+lUhCg4M34qHPkjz0inQ6tI3GTf/ZqU2 - hHBJwg+9tUbDNnud4bh4MY63/VsEzzEhenzvVP/z93J2V2QwwJFEz5t6ReCiQYd4Ac24XafPu14N - AH1nhIC7HLodqh4lgPVkBrwQ3/JFlasRhrKuktEEImCpP3PQjIBP9kGyuFMWi0+wfMOctP0+c5kt - WE+o+pKAT8uz1Vnh31RAnRJTfc/ruTi/DgVo9tODTOElYosxQQ7Cg9sTKekrfaxeXQWvfjlj/Zie - wYqpooETkT9Yv21zGb08zf74AvlFwcL+7AX8Lsl+8493PeV74sB3baDg+z193aX9RoGS3WBFoDvw - +fixwB0E1XfEmOfkmJLe6BAGjhCg9/ed//FBqPp5EezbaMmXVC5KYL60hqruLshJiXiiSOn62v4m - +UgBbyIpTUx6M1q7ph793sF4n32aZQuO5xoyCN9V12xddTu3P23ax3L8ztiVWp/xfpCGEPxiB2uL - c9RX1/884fKN8gANgVZLVn8wUTX8TGoEauiKOawNyITLiouL0cdrUNkm3PBFsC8e9TA/pn0G4kOC - MI7ycaAqlsf9Fr+pn0k6EN7KbgUf8dsFS/+5uizulRkaD/0VSGKg1+IwRSnc27+UMLVN8mls1xD2 - VkHoPReYzpQ29mA0XEN8ao5LPgyH4Q5w5uzwpo8A9uLXEEExrLG2WlSfuTl4Quu4GPS0fb/w820O - gGucUH1onEGSuEWGpqCecc43mb5Wt2cHhFBZscM+Jpv/6Sl2Z1Ez0p463d9zEW58mKppOsVrzhUd - FOoC07QBxB2GVRVRb+1P2Nv2m51fIwRJdJoDpeeO9SR9lDvsjcbEr3J1hy6x3h1UC+OMN35Tr5yo - pmgI0hy7/aEaxs2f4c6zQqKcejMWXrmyAn3hVazSG2IbPijgKZcp1SNq1sK438nQjJ58oJz6Nv7j - Y9DrhJRaXyvQV7V4hnCnXFscBG+XiYA+Ohj9ZAknv++3ZqI6VDCyrndqev6cszqbCwQQvVHTd+8x - C8+8CifjV+FTJxA2T8+ugy/Hv1FtTUFNDf18h+b+GgXSDg7ukPozRPDFP7D2hlr+D6/8bviNj635 - GFZYZJrCXYgbTNVniGc9f5Rws19cqDsN8O/a/QG1MM80iF8X0JVtu0IojhDrvlwBmgiKBWk07bGh - 50Yt1l/cgjO/d7H6QkG9SN8BwrGqn9h++wd3QTyEcPM3fDDdU73cvDlAj/Y5B9+LkA2M78YRHsb7 - QPg56PX+FrxnRBrDoTpQb2wZbnbyH58qI5FtfC1E1ybH1O/PD32MuXhFIHchkWP9Wy84f6towwP0 - T99hnHPLFHQLb/h+nzWw1tfJhHFYuP/w2NrU4xPoRLTx4yH4bMl/bgcC77sjLGmSeoU/lYN2M8eE - YeOWb3hMhX/5pvjmlisunFmgTW+kmLhlTqPiwMOwsTIcLWc3nif24qH35Rqs3i2VscpbDLRqD0BP - zs3OJ3df3CEJjAd13Kp0RaEyfko7fhK82b+77q9PBSo3bsa23cR193I9WdnwDAEH+GEsuocRuif2 - xkfGIl63O3lokAcb+xn3c9dxfyNge1/qbPoDu+uuB/znvSeKtlaDEKWYU8rTqdnyl5izf3x1m+rg - 3OeKLfmeWH94iezeszAsWeTJSjGDB1b5/U0fVemVAvyNfOw/mcTYcBgyoK7cjE3SC/XsXO8F3PaH - 6h+xdsfZ/pjwET8ViuOyAPPr9J7R33qmF34ZNr3pDu9ieKE5yN7xAtzKQnt/dyWwarYpj1eBg89C - 1XFUH6Ka73Y7C3bqlcPqQ9vp0ys4iJCb90PAMnwAa18bJfzjp2kZpeCfPryr2pQIf/xafRsrioF/ - xvGhecbscQszlLnnCRuig/R1BG4E3+rpRPGLP8RULo7Z/vdVUozjEoIh35Uaygtyx3hPLmz608NQ - +T1Ta37rrpAUSge3/aSuOdbxchkfFsRKqAfrpUNgsR9rhYrp4QdC6fTDb8P74DfiK3Xviw2ET37n - IenPKGi/qAbzdYHPv/fDap5ccyZ7lQIZcix6ciLdZe3Whf4Hkg89iJzLuo3fw8na1di351M8gwwT - sPkbxS/wHaa9flTgsddkelhPnTs8xqcG/t4n2L+qeMF5r/3Ta0UrEWv2+I1PGIgHQObzy65ZHk0j - iKWkx9dez/NV6y6dIiGvoaGF5HpJ/MwC82+7g77xd4qP/A8OfGrhI5+KMRHCuVFmLpIpLvYLo6kv - c1AP3Qv9izez05ESan8njvm8ZmLfcAZgLhCpYblVPF3GhwPmnOb433qfhVsKSMLBjd8/B8LXYgCb - T1b8w1fLUw0VOOvQpae1CF2W3eYEamms4lOvvNwli8VC6TP1grX4o8fLJ494RYvuWTDihrjUsncE - Lp3rY+9Iy7zN4iyUzlMb46BYjIF1OeiA/4ktao2iwP7hCayKFjbS6qAzR9sXYFH5lKavfAXrZPEh - DEQdEE5cd+6oOOkKL249YFUexno9ZbkHh/Q4Yg9dirrIL0oH/AcMaSgP40CvhJZw4yekOIrmMIkD - NpTrQVqpapgJE4YxgKDbX0qyTYcH6ymLA+jv3Zn63/oSz9GBg9Cyh5EeROk4zDV1VVjfzwLd4rcu - zA/OhOeTE1D7CtZ8bNMx+YuHOMKMMlqqC0Hj6xRgr+75enHgroJ2kPqBhDV1ECbDX6H/OVvB5XQ5 - 5muyuB3IHCnZ+KE5kH0Mtqma55IaLVRi+uwUGU6D8cXPoIt0dvv24T9+cEyXpGabvgQDQvVgr4vb - gbTG4hUNfaVAQUdNX29vO4CgzSqipOoxnofUuP/jm97FpUOHU6VUFvAp8KG7lUN3/AwJrGhFsLfp - Ayt42g0EH2iTj/GGOtn4BAxy6lNnf08Yu+a9omz5gVqN/xzY9PBDecOn/+LnZD+UEkTGc93sV2M8 - RwoFip8jj003HbcTv1m2/8rthHXb+uSj0nfWX/2FaqczB0jy7i1Y7r0OOwTSetPDA4i/oU9fn6rX - 58SJPajHnwYffX3Sp59/gPB4afugEncRmNfXGqKtHkZoXBZs/tNzxXJl5HvoB8Bukjv//T8N3jQY - Nv45AqmfL9jEO72e79ZhhJ3wlLHTc596w993NARJTo/6T9bp+8WRv3xMdr/IHITjHiaQNKaDnRzu - 8w0vBnDmQhk/hPEL3pu+AAQNo4COwX3ryu+t8P3NOey03uqOF3M2/8Ur9fzqa5L7UgDPz8cx2J3Q - KZeq59GCePcSaaBsU+lEXS6g71QHbBsTZcv2/X96GIEjqOP19j54SIKrS5SCoXy27b6Ez1WuaDTU - 9bDw+BMA71C9qMGfKjBbWycvEMGYHrRb4g5HnK3weCaHQNry82wu1QjTtov+6ls5e37t5C9/YG/S - +mGxH0oF/ZI70QP8+DFpUTGDWedcwnbSo55T4dr84zuzzxf5nx4Fr6URYO+usfjfei3JyAUCeVv5 - LzrNPERjhKmaJ1I+d3PRga0ehp8WM3KeLUEClfvNpof0ea8XcuYIvKuThp/2QuJNT7rD4TPE2DI7 - CEjOJT94Q+GKT/KZc5n84DgAD3aPD3jtwKI8vzPc8g+RNnxJ/T3yYHDiP/QeBWfGkM+Xf/ExKGuq - ueMljRrUW09C3atZ1It3Ot6RHP9+9NA/Q8Bk7yeDzV8I/yMT++NDaDyt1z99vuYtMFewSK0Ub/qy - Pr2/igWDa+Ztei0XE+U9ElitkNv0SU2nljy0YKun4uDbwJxgohbQKLeWcNlu0WdVuiZImSVM//S6 - LT8VUHQWkwBNoWDulV8B5jzWAnl5+a6w4UmQGuiLHetmuKtQxgYc5N7GR3k3DbTLwhIpjlBRD4Zj - PLr1mUf+3p7pI6xfORtxkYBN78H4aD9dQs9ZCW8/esHa4eKwZb+rRuXPv6wg/rnrp7QTsPJOS1By - ard6gEoQB9ue6tzqxyzFvxLUc1yRwaII0F2fZtD87HW85XN9Df1jBZ9FUdBsmW7D9MfPl+/I4+ut - /IDvVt8Ep0Uu6Ok+wnyKDuH6T5+x5+qnd+/4bSGJ1DTYXaMwXtjxmkFuGw8/b/XQxTvG4l9+pRY0 - snpKv1bxtz+ExQC564WDLZhX9x0o+zsPtnrQHe6USxtIm/69lrM+//ExHMLGjJf2J6RIr8Z148f9 - MHdkMGBPFIZd7z7oM/dQebjVv4hCBDsf5+tTg5K+9lTPUssdvcVZoYN3a1D0YepK38fkwVhK+60+ - X7pz44wc6JkvUG3FQj6+XEP+/5wo2P/vEwWxJGv03qpnfQIIJ1A4QzEQkz11GZ++KmjhT49d8/GN - 5zG+ptDrfxo+fpdvvF5MXkTyU3KIIE8HII4iEIH0ri16OldrvUjj4w4r1l2oEUanWLzWPw36DJ2x - H0qGvii6r8Jzpu4pvvy+2x0HsQRhbUw4/IYGm3Q9zSAf+B7O6ngYll95dlBliDI1fbWoV21YIKrP - 4xE//fI7LNz6KkECjTd+IOUBmP8K7jBroz0NyiOI6d4UKhR3qYy9dkfjcdxbnFKLlzs9nEKRzYba - PKGujX7AP6bPsFSon5XeiPNN4Tnoc83aFWGi+GS914D1tyv4wbAIQhqcpmgQhMvEw0/26XG2G3h3 - WR9PEcSSohEJJX29vNXyh4wGFoEQ9QtbNPMRAC/0O3wcDko8v4wign7KHamrUjXmhzS1kHnyBmq/ - IHXXOJoNlPDPLJBQYtfiPVsDBZ3uNmHmZQWk4soUiTy30sNUVq70g02L5ji2qF7KLZv9MoGQffU9 - dhte1XlxSQoUW4yQpB12w+T2RolqdXhjzJo8F07PLEAwiwWsLb93Pa5I6lDzqCZSaAoeeO+0ajAa - K0z943GnL9aMSphawYHGCwgG8WWeM3jst4pXat9zSeX7ba7a6mKrfplgMWonA3slQNQ+Pm23G+Nr - Auc3I9Qf3seY16zHE/b9Ltns75TzP1VRIRO/OjVqXdTXfHlYcF6ND43il6GPhXeMEOyTG/bvPj+w - 9XNuwLYf9MGZe5ccfm0FR4o8GkaJU8/fn5NBnU4ZffTf2qW75cFDe1Ue2MVMAqty0jJkQrmhYcd5 - Ln8CigenqTGpX3crmJXjMUJEQzYOjju3Fmnvb3OSpQd1+u5er8ZLHCFo7j51H3GjrxN+ipB/ljp+ - Vfufy/f6LMLWHG5UHdvLIGX56EAsqIhGuVq6fNK+DJjgysWH8qizeRI1B3H7X0avxinJ11qutjOY - hhnsiIbr2VmcDFz1COGDnWs5U1RJQV64u1DnYjcD+56SrWuSup2gUMyYusOhQx3nDPjwnXxd1Mi8 - Iu92dan3yC5M3J3FEaKXFmHds05gvnyrEsnpNrdyOV/rOcx/K+AnraeGtQzxupPKBJVGtce2w98G - vpH22t48cRl27pI7sPOlUpEpqha2GuE68KnupZCqjU4N5RjoArdeS2BBe4czp/YGSbhWEAGfawMx - 3Y3D1Fqpg5j40f/iUd6l5tbTIZNOwfrs+mGtr3oCX1xmU9zgO1i3/UZh0p6w+j4nQCr6awSiYa2o - 5737eP5+3RZ6Dv/BDsOJPotL8oQefSj0dMuPLv9+Hwr0uOQPqpnGEfB6dyjgGAVJIG7xR+Q5O4NO - 16RUc9tlmPOLTWB9JkfS99epXmdXNuGd8w+BWCVTvGpEnqF3mDQCIHgNzFSGDnL7LqO2w+9rWqXc - E9o+DKmusq/LFHWnwJ9dPnF6GHJGE/PLQc2bCuqueu2Kw26OkFQ4x2DWr2rM55GjwMeHJFuPjaM7 - k2ByoF3/HFzUZgEG/2Xe4VlqdHyZeZovp/3CwV0Lc2ysXj5ICJ0N1O/9L72J68Do1bQ0eD44D3w4 - hSmgYZI28CwaPbbMJ8f6tOtN2NT9g+y0IgbrkN9N2Mf8h7CfVuhzs7A7mgfPoqrX6sPC5aqKkksH - sMPNoSvlIUzRb+ddAyIcLgOj03bHmpKcnnaBy0QpYHd0CScp+E1TF7NiTE1YNZlGw2A86AKSHw4Y - YmGiIX86Dwuf1wVSzvcz9o9VHa/N+C2gSIwLjdu1d6fbPlZRPxQE+8rPAQsnPFNYl8EQxOOtYmvu - bWPJzZ+57fcHCD9uGeHAMomq4u2Xr9IcraC5OBLWZCWpJbg3eSTNLMfu7nmIBXd0U7j6z2uwP0Y+ - mL8/7Q6f86HGYZT8hnGt3ynqhINFze6k5eK1HAKAjl+ZaoM01uzN5QUsFxEG8JEJbLEu8Qol+dbQ - o/I1XMHXVojGgzsThWsSwM/2CtFdlXc04esqZ0MR/tCC9v52ZlQDItQyD/LHU49PN2wzltNERjf/ - 6VG94oxcCq+PO6htZuDjybqw9cPkrcs7LqiBuHKQtFMgw1uOj0SI+jMQEIg5tOVXqhWV5/LRek/g - LYcrTtlV0Jl1DWUkuKKJn1CxXOFYui2E5zGkkUz2+colqIQfKTex77W5Pl+mzkLeTjfwKebdWFgf - KY9GjTsE6Gl+XZK+rivgSp/D1kh+7uo4LwP+dpyBU6Eqawk95xLNvpXhF9FoTac48dDs/jgyO3nm - rsaLI2C8GTPWd+kIpr2tdZJ5CgaaWf0vH1PTtVA1qm4AvUvgSpJLCTi+q5Ue7fgdS+8bCuFdkFyM - N/sWH+OPg9bLYQGIx18+T9dt6tFlKug17mZ90dVXCxU00O3OA443e3yiWXnmREbLGcxZoYxQtgsr - 2GEpcplRCpHif4oB37LyrU/xeV+i+PwsiBKtD8acoChATZ+IHvRi1bv30/kpI/da8WEVo2H9w1u+ - X/+Cfe9uXT7Pq4deohbTl5EbOlNjzUGH9CzS21d41/N47zJkr/KDvhqssDHMaogc++Bhxy/8eK72 - YwZH7rHiQ49v7hJy1ogc4VsReVQ+8XfauprZ+WTTDT/lo94dnujhL3Gwl61iWINXHoJ+j7+Eae9A - X/LpuoLL7h3TtNH4es3uUwuehx3D+Hzj3KV/HUe0/R51pn1drwV9z4h9D3v8yr2IrV7jF1AoX0Ug - FEaYLxdNeipQc03C4kwZ5rdWyugkU58Gd/BhbEeuKmyGc4vt3l3jZbr0Ccw9+qXbetW8wLAIaErW - bXZdOvzZB7rebiNND9LVFefTxMMND/29v84iXmuQJ2WAXjb7l5Kt4qv9mIdNqdj86/Yl4JtbFHt8 - sNajq39nKOJIxr5rYHe98zmE9s+nAf/6ntiMVVsF1kspcVDvd4CgO3MQSCR9w1sgnyXy+ME25ULs - 7WiQj9F6T+H1V4TBZcPXPFRz8+/3qXa+tfVqpfdE+XHFDwf43rO1ln8jmCB/C8T4Wus9iaoKbvmU - Ho9aFrOj2ifw0mcNNQZLZ4IpfEf4cyIXq1cxzZfgnVdwHfyQsKu3yydTbkvgjrpF7b62GJsb09lO - tB3pUS/HfAw4VEl2fI2JUJdc/M9eqZkD6pp9Nax/+TFPLY1G+rTT54tnzdAvFoR9b03zlR3U8F9+ - c+juoNNvx0QgdFJEuOKc1kuwgwacKz6izhVX+pxnagXF1L5ge7NnepdvKeR07kX1LhHcP/8GnnQH - QflxvjlpRvoEG17Ejt11w1KWfAOxVXypfrs6gCXjrYV/fCE52m+2fuaFQDfJdv/5L0CnFFjhL6C6 - cy+3/KS1MPJ2RxxUxRu0xdq1yjTWFVXHuxIvKv00sGluDr0Dq62p670NePgmd4pvUTgs/nG/Qn6M - 4J8/5aODBxVG+Wv4w7v5ErNQgfhEFOoJ8FYLTD2Qf/FXKX/lsAb6UkKdYI6wLX7Pu8QVlQd7+YTt - Ug/MF09d4eHQvem9Mbc7ksPOgvRkd/i04UUaGLIJTdy+sergAgiZjBtgPq53avOyXQtd5VXgDz+9 - JKGJ1/FSPGF5H7pgNLqULW+167Y7EzyRX4PmCjuxn2HQ2TP+e/75OfwfaeeytCyvROELYiAHJcmQ - MyiQoCjiDFAREJFTgFz9X/h+wz3bQ8uyTEHSvdbTSXoOoO2mB7KfjQqwq6LF8KkaNlV9vWPLJnI4 - CCV+Q21tXs/kHEQNSlInjbfT0Os084UC7ZNNRr32swXzF40BfCrnhN5f41ROL62R4cc4hevvy25E - m+MZ1YOxIVfrNrhMPPd/eocqhzTWp8fhtoWCngU0S8U9WJ8XDz0toyS80Fc4tcUxQT9/EqKAhtPd - slvkFrs3UffEdpdsyWvoXIuWGiWZw8k5PhLoPypMbeN5YNMajyHq9QcWxHEuB5Xcmp/fxACCTTcH - YC/DR5PeMF9LMmsUYWvAMufikVv96uhb2wi26qEhuKvXPpcBccAar/A2CkpGk9t2gUdnqUeRlkE4 - 7/ZaC9nLU+lRLQgbOCGKgPSVOYKHWeuE2y7V4GcHvTFf5hwsunHmANaLlJgeODDpeCk0cDkVDsWC - einnuQ5PcM1/9HZ6BYwpgRuBnT5fqfLJcneGRvCA2/fwIfhqv/TJFvgK+f6r/eljfRkFJ1s30gTk - sNO++heqxxbhJJEoyZnXLfPnJsJr892sn/uy9SrzgU5l3NOwOQv6vPP2GeSmQhiBUZo6VX0jh+0G - GuTIx48uN5++hrZOnxItlotS7EXGw59f2dtV3a3PuwUCpSOWmpiGDD2mAkFJ3FAiCVU6CXIsA05f - bwlWwRxO9eRokDsOMTXfkumKZuVAyM2nAsP30UlZh7YavKjPimqxrHWCrj8SuHg3RnwzatwJVHPw - i5fjSx07fVr9zU/fUeUyxYw5M/Vg54+IYu2q6RMlUw2vTbchVnjV3f7jdBrcipNLkiL+dOynH3/5 - ToPFwx0aveTgwpwjUQCV2QI4fysbuBConXexu9zkWy0/UZsRn4clG8IhPYGbvBDMyRR2jD1DiCT9 - HuPNruzK6T3yNZRCraB2NZmMEU5OwJNUPT3R57pji0M5WN8nsbbcCKYFbRrxPhoHsvIGnTrXWIav - ayFgrshUNg3nYgHHfRGSX/wfcXGy0FM41UQtXDWUemlJ0N3aH3AUv7blEvCbBA4CDogCyk0555v7 - AYh15o3587qECw+0Cr1sn6O2dRv0ARazhh7hYlBiGffwu2EtBEIjnEjkx0xnr4w3/vzcT99PXKI+ - UK+CO7U9r3AZf88rdDONiAa/93GU9onsLu4WTzg3mXTokfLTE2uXJVy2O1/R4OKlbLwE5Tmkgqjn - aIBGP9a+J7FvFqoZUgr7SpyvlXfzq1AUYABxi/uTfnHH427fQCmcCHGOGxkw6bR2KVn1kdGInT5M - hzkHe+8hYjRJottXM4hBXlRfXOvo3BXGUxyBC6oTObr7b9iL0skC1wRYBCvHqlv0AuWgcbKFkGIY - 2bI87gnsk+pAot2hdadTOE9we+VG6qXt2A3ya6gggV9rnJa3WQo/fqZ4/fmPp4hnb8nQyfisXTLc - tz4KUZUgc/+eyTq/9KmcPhDa0+VKlTV/TkFaTPDaPgJcASa4jIsXGWV6ZhJcB3XHcEYqiPrZ/eN1 - y3YIIYx6+4v1q7cJme4kZ/nHZ7C75Cm7VmsXmIK3iUoTIxVmg23RY9JL6hzZpuynJi3kA9rExLtB - u5ti7mQgB+56YvQPvvtsu7D/G/+BRyDt/TJdIOHDgLpNUwHe3Q/JT1+Ti96vPFCIIgjazbLyh658 - fF6bFuS7p/nz6+WczYWGbqYVEas4++mqL3K05htyT/xzR8F6gmPlGyP6fnRXQDe+AisfpOHVe6ZC - Y7UL+OSvZfVnlbscr8UJrvkDv+/cqRwUOlQ/Pz6C65mBSe1ZCwzzdqK6cM3YPFxeEfj5c2vZcOWQ - hfsMKLJ2pe5xcfRZ1x/xHz9d9Vk4hX02glkor5TcLCGdgriDEHJDuvq9Yu2n2CeQKNa88rHI7fV9 - s0WTMRXj5joZ5epnR/i8YpH46v3yj1/8/FPUqkbH9svSQFR2DcHZ/cjYffjm8OT3C43XfD8h+f5v - Pf/m92ilXgGTg1KQI3fFHa0uuoFOHjKpcbZ6ffm8pPaP70TxEIIFK/IITOn7wunK14ZKmBa06g/M - l2lfDu7Xy+FFvVd0H3xwN2eB1qA13uLXPtVC8VEPZzh0s/DHW6nm3g4wb72F7OHN7MbdJ4ogcR4f - qkmenwpTH2/hhWM1FlvVKGdRuImQCjkhXvuJ2dJ8nRGa+89M99FFKAdueRbw1t5jGk9R2E3iZenB - crFeI193z5L9/q8LpYGq6ti56/haSIcPpvrVe4a9g9euYB+eJ/d3IYST18cYvD8CpKR+heV8We9Y - fI3pke71EJXD9sBpgIxOTrxx+wLD+5jUcqaNMVVSYOjSZrxqUHctndieUoMmCTYZcK55S6w8cV2K - M7v6+Z1fvgsZQjcLkDq/0rtpPt1FOekVFOZcIWZSVCGfeWYAss91oG7YtyHTv7sesMa4k/h1+6Zz - VHQPuN8tu3HmqxtY+ToHWQAOxDXKt9td6pQDhVzMGNSjls7jqS3g7CD15zfcld/UoMy9jiiXactG - cru34PJaUmr53pWNLzmywGLymMRpzadjB+cMfowgXE+EdOXPz4ENmW0arPptkc67dR/T28bcRjG7 - xbndHLh531V66+6uu0At8ODQvwrqL3Oc0rkJErTl4jPePrtCZ1uy40B2q3gMeoO5fcnGCQaTVFNt - 35NwxMrSy1/Xlcbqi9VyXnkSFHm40FV/lHzFyx7UJy0g6/jBsnX5GpRqite+2Qd9+gx775ffqXZR - A320L9YWXufzQBzVGcNZV641XAopoea50XR+qRtHhk3dE/woSbi0VyLCsxU348RZain0dNMCAE5f - vPPdPBXk17uG/PkCqVnoSjr+ePp4+JyICs0La8pb8EA/Xr3qDzDmelJBlfYBee6uQTj5BvNkcbQu - 1M6fGZs+7lcEe7NO8KZKI32a9jKEn7Co8Xblsb/6xB//wor5TUe0C0f0em47qunDU58Tdo+hfvQY - 8d/FJV35ogMqvleJdvS7dJarKoaZa2Fi8GURsunjcdBTqUYP+cNMZ21/VmBaNQ0NVr85bYQOw9r6 - 3ohh65U7Ky5JYHhb/V7+eIcjJ2YyDFxwI+rpBsOx4JoI/PTRbTYM9nDxK4IRuEKqiD7Vhx//u5+/ - 069eEPKNWWHoYAn++d8lo98JfNtBJYf4fWJDkL3OEMZHgfgP66PX/jtYuz7jYNz0jh/y2VC1UAoX - ghkoGpctxWmBaz0ED+oxSZe5jRvYRCimKsVftzv0ggKz4Hkk9nR8seXLVSISXOuG56+OWDO/sxGe - koGjXr8Y64lLLwfxR6vx9vWuOtbCvobZ5zKQNb+EC5EFDf7Fh+cjDFm76RKYe65G1nqUO5eBfUDS - 1z2ufqRlIyeeZWgfujsW4Mvq+Ld/8cCsfFyKSbJn81xmGQgp+fHht77ykQgwtZX+1dO6ndxAarvN - OLsXo3y/cTqBH5++vR7AnYpU5+H8mR5EF64QsPvUnOHOk+UR7J7HsHt7Vvt7n1hiO1fvh2MHgX6I - Imp88auckymq5J/elxrv7I5X7dDCnef6eMfnTO8LcajATvbQyK31unHlt0AVq4H+9OOYP+AZ3FJu - IToKSLjArC7ggrGBpdX/zU8z4eGS9S21n3vP5Z/GOYDaBCCxwZ5z58YqJrS5jg7VDT1xe/uaabA7 - vxNyvg/vcoqqrv/NF7z91e+ioszgSQ4dcnBlNZUGnlUwO0QvzB86v5OG4J6AwqzfuC6cxV02UnOG - zwvNqGZzjjv+5ltXyUd8mv17ynzlzaNGWARqs12nT0Xsa/BkrjWQQ7p1f/n/l49X3qCUc1MYOdot - FU/IiFs2PfygB2s9ctwwOAOahsCBSbA/4a13DNks3iYLOXFwJfrKx5bZ2Z2AP4ivtb7B60OI5R7O - gXMhxtnydLE8Gzla188ou/IrZSf+UMG9j0v64+OLvu6i69XdnagTDFJRId6yW+vFuFzn35SetC2y - oowj+3MappNWiwoK9LLEj326A71zfMRwdM8bGryO57V+QSGofCLiIlVy/U8v/vTtGl/cHljBCKXi - JFDNOJQdXf0EPBlvQvZzkOtCvrkcYOKUDlUHpytZEUoNoI8I0ENRaWzuttACynfIiSlGQB9/+mOU - wIXuccOlzcf98vJ3+5SJUaZeN+p2usBGMSAGQtd333R4LkDSnzHe2XEXMob4HFVEs4n/CbJwbGp1 - C0+eH4+USMufX5NznXmUaA3VV57Yy4L+CIh5507dtDnrPPykB4rlR7gDk4OfNax8XySH+TW45bm/ - VWCt55BzC51yfLOpQOExy+jNjt30x9PhzeR1chfFWmfzyz6D+lGtd45aajmJfHhCrBEPlChRFE6b - q9YiYS4U6n/TDxDePYxA3o3eyp+mbta8hJdTb1jv0BSVbk7YJf5/dhTI/3tHwcU3vlRXH9+S2d8p - R7yiJ+TQ+mXH7ByI4HE+CtRz2o0+9dJ0QsApD3j4tnM53sEHI3JUdjTjTjXohq2QAwl6Ns32+Mh4 - 73maILdkA3Eoj0shJscecblfEC1BpFs6Dk6Ql1a2utFfoKd46KEy+wpezp0fTu5mOIBFvdjkvLi8 - u3ye2gifO1Ecd/m2BE37lmNoXiJCcJ/o7vy5PhY4FV9IlL74dKzv9hGckaxTv8VVyLTse0BmaBok - vO9xKlj27gH1czxjtH4/Fs9Ogx83m9bx0W4O3FKEKd26oxy/PulE8TBCj6oScUnogsmr/AW2z9Gg - TuTkKT/t5R5CNiVEnzkXiG79PMFXnKv0JlcnndpSjlGI44geyXcXTiIoWmTNEyGRFQF9fl9PJzRp - DU+fdXMG7PA+KOhxg4A+2T1Pl2hMo91FHo8UK/OxFD55+ED70yhQv+BhOsbY4YAaPkO8bPXaFY0a - WKjs5YIajXcHs6MfOCiMfUUMDw/6Mtk3D8oAmfh13zXdtN80DewTmJFsPCcuf7fNB7p5Y7LeIrL2 - LZaPPHq4+4549eesL5NwXWB7nRm1u+hZjo+c8GAjopAez/PRXWKswN98omrudq44BPKIbl6fEH05 - SmDqYBmgohhF6uAxDqckqCE8c+FtzI8jKydkuDXss71HEusYu+J1L53gPd4G1Oxbj00C9hMwvEaM - t0pmuJJjnh+omRV5hH3ddsxgiQbF52TTxO6/3SxdBB4Ss6uoHxeOzm/9vELVxyL0SCI/Has536Kg - iijxPPAGyzz109/vU8vlU3be5BPEFm9gufX1bkpth0Pf/haRe9p9dT64zAEqjyWmBn8XO+rlYY4C - M79S51Y9S3p4axriFTUhjzF9dBJKpxHaTudTh72KTvw9z3TvFpQgygMmtcqIFFMsqXH8Tl1P3ycL - ctn0oFH9PnUDn/QRNO2BUvxSvvrgB6czVNBsjJ/F49mYRy8RmWMW0yDdS/rCtUILUjcZxpcg2Wkv - 7aMtGr4zJImafEL25owIDXFl0DTJnjpfI71C4TXPqZfIo97oiqqgmyD01FHopI8yEWtUapSj+o5D - jD1LZwJpdxNGlBPsCtox4WCkvgOSCQcaztJjyVHwaHJ60DeXTpKkKUE05DN6swzCpOsz2cKdLCfk - LGwbl2V9G0C5DiSSUIMP6QFfWhTBTY9336wpWXvTH2g4yRyWdjsZsGoKHNSrYoh/8YQpkBUIdT0g - 9ifyO+l75zIgg81aEZGmcLYvQwuvx7tLHMTWvV6zU8vs3CKyrudwul7uGTwzLqcH/hm7fFUnI7iN - 3IDHrf3V2byNRyBYs0uJZ9pA6rezhhzTMolO+286P7N3Dd0cx+Ok3hs2mXsNI5onL6r1Ue6yIJIV - mEmSMG4v1eqUN4YM02jRiM0d1G7+fs8tui9qQR5v6QaYHXoHWCepP8qC/O14XdlrMG4zmxCzeJTz - W3nLqMNFRpR7uit7O+IScNufniT7uDVYjmZuIb4qtkRjT9Vl6tYpQHgtcqr0hd1J500zwaYgLbUq - pUqbX3wqr/hM7GaeU0bSQZHj2INEO90OYN4eNRFqi/MgyZ7rdbbBZiF/kpNCzbOThrPiHCcw6txr - hFacdfTi35XfeiLOKe3TufhuHyjkzYEQuI3cVuu+NXxFgUhPmpPrwvWuJuhDOYw5a7LZ8qoemsyi - rUOPqc7C+Th5CZyOmUGDLcvTqXuLW8h7nwcxzz12+xq5NdwcYovqhXRns+DxDWo+24l6ljl1y3NR - MWqfvUFVa3FK4ZtWUL4d7oQEuhunwjd/ciD4LC1VvDDQ5881msB4ayjJxC3H2FsgDexfQkpiNVxv - 5eYtGV46oI6Bte3T+TDlHkTf50QUp4Z6c6jUE9rLDaZH9Wq6gjIPZ7nxypTuLYMA2ln5grTrZkfM - O2+WwvO6VPB6dY4jt79E6XKISwOehJNPbUFr3b98Xa1NXh2BLOlwiRlGZiDsiKU0bicYydlBplQX - 4yxIdih15zhDzsPD5MJyFfB7seTAeLdacvA7xWXrHfng9zwsvkpdXtm3OXTb15EekJ4BIYuvMegc - IVodjgKkJYQNlOz+S8K6mtnCdgOEUBslstcXPxVaXzihJNCOq57Qy1nZ3JXd9ykcyW3vz/rc7bUA - sTLz6T65yCVLLnOMNu3q2AeSh/PmkyYQmDbBTPd27hi25gEOl8OePB9NwURCLAOZgbQjprdp9L4/ - XHM4RNGOql8NgD6UH2e4v6sjCdPDFQghkTWYaxuFXuyqSvsz1yjIEvCB+N6RpOLTHw6Q5vGLZuns - Mf5yWfvCB3FO02ivulLfqRHUsvWM3+kTAr4haoFM0ig0u/qy3hf3YwE+5txSp7FlNvBJFSH7c3+T - w94e0uUoTRG0ekMhAYBqKoYSFOH5k6QkXPPhglnroNfoERov/wEAAP//pF1Jl4K6Ev5BLAREEpbI - PEkQEHEHigiojAmQX38P9l2+t7rLPt3amlTVN1RISYgugppb0DYvpb8rtlvadJpUcEU6QPYqT/ls - Tv0Kq8Ob9ectf9cc9CNc7PRNchQNoHcNK5Pk6jaTK0oxwJbx9iR6PinkmSZlvUjmm5UA76yYB9ms - jhf1+gGfzn8g9XK3ovWE7EbiW/FMlAuS3XXmnjPI3vjprwFziObDajsw3hiyYRblQFfDY+AleE3E - tpea9oB9OlD7jl+izB2jLrPVQXh4RCIuvX0FWq/RZyiZpwcW7Cim0/gEFsTVekCKypMB6zc3hXym - H5G+xSvHqXsID2lvYgHfJJeo/nKHox76/lxyx3oc4BCAkAtOKH6LIJqDncdCK5dU4tpHu+aXeVwh - v8o5yUp/yil3TAqJCbyMbPnprp6QtpBahoA0g3YR7utUkKLJwyTqzzpgdVkv4SmMP/jgrrt8Tswu - EDvtISE3b5phuaTUg43SLEgWqBxNfXKA8PFcfKTJL9Od0fnbwA8jDOi25ccMmwsDjEc4I8dmRnfR - L50jPq+f2pfYUthG+rAOPITSkXjRyXJ5ETEfGMXGm1j4Jqlr90Q+HCWPEHc1zxR/lik7lEUSk6PZ - fXNSXS4fUVmdgqAtfuaOVsZvfcjj8woithg+Cgw1vydudn+6S9+8evHUnRq8E47vnCoOWUWBeVTE - Qu+9StXjcZUudouRJ8haPSVCuUK9pSHxE+dFKbx+FXDpOp4U5T3J58CDDRCA+v3Dg9nmayjZr0rH - tNpLYA48toGMqQWY+wxJTrnUYcXoMFOC4m6s1+a8226VFp64n5KG4vidOZBnPk9/BwXeHe+Hmw/Y - RZOIIfJSPiVGWkGVzDoK5I/j8vv4bcDzC15R9LW0YbaXmZFeaXUkWt0KAL93DwMO512JnLoXI+rZ - xIEcCLutm5YM9MarM9yVxsVv0NV3aWvqjaibhPi87c0RjfhRA6+QB8THuyVaOHXPQOH7aYj1Ga8q - fcfCDOQFyeh4BgCss6f5UMmQhi8E5e6qKlkJ3HNuEX3tVJdnhHcMcC11xF73nsoyT3KH/ZVSvDwu - F4qt4+rB3/oBwbCiEWVjAJVOicnpC190w98S6Nz1So7xaZvyIiYxUJixQk4kKdHGb0XYLoqIrEsz - 1bSZUwdO++yO9EvtUWrfTzH81V+NO3bRylVpCLtLmZLsvekaQRtE6OwcFqlLdnDpfi9kkKWJReTl - JuRL7d802JdA8stHfhtWwF4tYGjOF0tZcB3IKax5gAhr+cHx0YJ5X7ohpGek+MwlUlW6yyUfRtYU - kPwRsjmG6X4VNL2Iicc5KJoXnIfw6ismniWDid53os6w7rsrenJu4O5VQVdgeB0mf+P/NbH2zSg9 - v99h49fKMO0LsRIj1pzQCZ4KOk/3VABbfJDIO2r0tx6S3Go82vgCmCd9rGBY0j1xi+lN593S8iDp - ys4XivGtkvV+iAGdqIH332Qa1ou9zlD5LDYxH9d9PhWCxsDlLa3EKy8Lxc/TZAHVDb/+ZU93YDKL - PoZOTUsstMNUU3q8MSDN2z06ke4LVq4KQsh0cU1Cw9qeOdvJd9HdmwmRF8lVyb6XR+i6+OAf7KUG - i8h9RVDI/Iqp8zm6bKqIM/RX//XTg+osTPsCytsJABczcz3DBIc/vueva6vkZNP7sOkrh3jEFQBO - c6GFPZdFCHGkou/f51WnSkRqIZ/c5Z4+UyjTu4tMW3Lz+WThTDQ+mUgM73Kux2uROTCQCmHb+XO9 - 1P7ZkN7dtSdyyR0H2gRfDW76l+Rb/RzxHs6//P7xwwg/APEl4SgkRM8rVWV39WIBseIhQpFv0eUa - exjEc/lG0eZfzKguGclWD29/th0f8N9RTOHCLgrKIkOt2Q2fpa9bzP5AKzXfb/kJyci8kWzEt2Ge - qR+Ci/AwMGvDflhyp/Z/9cpn2UcyUNi1KTAdMUXG2NjqftNL8E59BRlfW8/JYsh32LVSTq5padTU - wEMJr4bOI7nlono0n0DbpiZSZI7FO1+cG2WlQRjtP76wDOuDh6W9Zza86mo8BeIIXDrkW33eubOg - 1QJ8CS8bpTIJ1NlvIwaGN1HAh1WeonHQS1k6G28FOZxo12Mez/1PD5HTlbm4a8fMgSRqSkOU4/kY - LQ+43+JztyIDMArY751nCz/3PsUzgK+INgExIIu5BakPG+f4XqoJHL/Vy+ce7LtewygOpeQaFX96 - bI64IRGbV25jadvv1f1cA7AeotaHW/wv11gboWsFDPFRPNYLL96EPz/hOEVKvXiXzV11xpAUeHfO - 11G0Z+C/2zt6SiSmeykXRvhKQh7Ze3ynS/ZRPnBVm5DcDICHP73+IukOiwnSaBsWYgHA91IhJWf9 - iNspuxj++LK5XHiV8HprgfZmlnipv6naGaI9QjuxZoKOSB440tgxeAuWuNULhn4P90clPi0a4aV3 - jhHXnoT5L58CdD+7f/zxvT5Zcqy/gkoWclfEIPfeSBsf2kAPve7B9ivOSGGTVV0ri+/hl9+f0ObP - 0JnqngfPT+IiKwpddz3vhRimt3xEJlGjgb5Gm4EDe6JIL4YmX98njwXb+mOxXVe3lc40kLjVbYlT - +lO0cB7swVbPyJ0XCjo/AsWSbtx+9MXc4Oq1ydjNweQy/5V/DfX3faHAPCuy4QFoCyW8QzbPMELo - FYM5u9W9JHKaiQyBOwJej9NMrJbKQMkaCvXn8OmhuHseD0iVvz1dzDGUpR9+/PTk3B1vPNwX3+8P - b/N1Ns+e9HSVghhivUTT7laPUOUHDdnVYZeTpDkJcPPLUMidAjq/HRCDVvEron0KrNLjBzlQqS8+ - edr0nW/rA0Wnu39QwdyGfPEHxv+rTxs/rRfS2AnkH9XvtAxfL7P1YqSnf78hfU+flFrwOkq/eCv8 - +QaWn/5k1P6C9OUlDcu9T1f4hMYRl6+xzLndnBogULQ7epiTE/34kMQ/VxOdSirT5XmfGhjrlkX8 - 9N7ko7wyGujh+YzUMiT1uq/iGXofZjuh+2XV6ecXyHm1/Oo/pQThOwS6jrD0Nhjw9/6RRQL/lXls - Tc5TJUjX/h2j61Z/OeWp9FKTj1v9Vd5DG2cqlL48d0JOzNJoHetHBlBBJ6SjJol4Euw8SA9Ojk5f - vVbn72v04Ht9sH9+MFGP9ubPSoDcxndHacQ3BixG38DQAzrlePEsSjU2Q6R7lh2RgiktSe21HR5M - hao/PQAy+H0Q1YsDum5+EQC+FyCjlZMIb/xMuu7dG9Js6NRkW3/w4xPKA63u2quEheHCh3hpCaHL - w1+2+55Uz2d6Sx6oBZ8Y4qWxkUPbrzqqGlSAn51NohnUzjm+nkrozUaE58jWXbp3nj1AMD0hOzuc - 8tbJvQ/0LgAT2TlOw1xKg/inn3Qm6f74GTzg5IL5ds+5o2J/FeDp4ofY5vOVj2bCZ4At2I5cxqtM - 8WAuJZyVnkXGG1O65nZWwGuEE2TujmVEZacOYW7CFSm3inGbeyxZMDuiI7I98e0u9ncoweWiqEQl - u0vEoiVtgTuud6JnTBAt99fd+PkZyMx83l1yCO7w54c4X02JaPfg75C9uTVeziAHNKtfmnQwUoil - jR9y67m24PmShuS8/Z5Y/tk56JGpIatkvsNyOkwinDoKNz8hzEl/c+/AenUhunD+eSCzA+5A6eSY - ePPnPiyTls/gWwCKzOnSuMuNigG0Yyj7h/g7qK2StxngKqskkcC+3PE8Vg5kdsqCNFWK3b/8Pgky - u+l3yx3LOEig3Bo8BmA7kaFis4HnlD3heCUfMABqpPDEfg5/fvIcWHYjbnzFv+0sDawWeonwhMUe - IcNYInpJbqPI7OQF+flbz+cjdjWw6SH/kM+eumbbFEaJ5XRMbVJFGJDRAW1z53xu85d55XEQQH24 - f4m/nCOwN657B66mfCL3ZyH/8KeBV182SfDeFdG65ZMoXh9f4sYY1Xv2LVaQA0FHTqQzKZ0lFcOd - 2/DIBciOZmaXluB0mV/IT+9atD8SlQfULSn58SleDRwfRn6W/Na7Xs+pGYLyRVOfjUAJCNwHhvQa - dpq/Xqpxe+ICpDBZe4rkNdirq/y9CvA6stvUlGyoN784BvlBvqBA6hd3EjkiAuVeIH/Y+PbSgl0C - gqIvybGaDxE1O6GS5mqA5CS125QORgjgHU8DOm54SeLloMGjAXwkfzMEsEHYAFIlXzHr0zyi0XOP - 4ceADrnEVp7/8cXDaz0Tv8DGMKz3QwI3Pxd/OcVx1xQ/WbDpHXJiS4ES7d0nMCuPN4SOqKzntStD - QM7vM/rz83QGjvCzJluHzKsGek6Y8pcP6BnrN0oFfezhHvomURdmoLM3OXew+XUYoM+VTsaiK3C9 - qhfkb3782j1NT/Jo5RO7OjyjdTl09x9/R86SJGCquvkOv3XqbH7+blh2twGLL3GOifcsSjB/JPUD - Y/Q4ot/rZ3tX9pJf387Iynn0w3f/D69++mmBh0MDF9POMBM+JrCmuhfCdU17VFxjpsbjZcJQuUoH - 4n9wWi/VXV7h96ClKPecHqww3a3wfvlWRBZZQNfvuGawb3kfHaGdg8WZWx9sfgvR8tYAGBjbnX9X - zUdns/tGa+S/gh9fIt7X/dD5wjSltOdfR3Tq+vOwvf8MgiYmJGWhkc85o3mA9d4FQauCwczJFww9 - GZWYS2+KS5eUtEK9R3e8+iMP2gVHATiGQY35ZecNv88HbBIc/vxWstVvsPl/G74+6s1P7YFRMTvi - tP4uovGuXcV9ydOfvs7J/uVtT5SC4OcnDus38RWxeKS8v9v8LHrSoAX68iBhzpSXYQmHcwpPXn9F - hi8+wYpVVZbEhzVhZh3f0XrGoAcjkz/R6XL70Pn49lOQdFXnN3p6BVv/IYTfOnOQ03UBHT8pqWBu - 25W/K0U9Z3/6KVkKFXd8I6u/ev2rZyQv7Ej9+ePA61MNg9LqBrKQWJa2fiXRVIP7wz94CVeBKKyo - 0b/+lKbfY2Qul8Ql5eWmwZyI7o8/1uzGZ3/6wBdfuueuHskhLGpT99tNL82YHldJfw4WbgZFBkMu - nhl4b9IVeZdnX//V51/93fhMvVBvtv78PY072tFcH1dL6mvbOgGJ3YNVNo8yEF6HAimo5gaKmm7c - pvZcfv0OOrUa1KDsTS8U+xREa8GznpQns0Iu7HX95W8MGw/0mNv4FYZCyUpz/zlt/PFF17CXe3gE - 2YgUabnUdO07GQSplBE7/rru1h8Mf/oTL5/HFLEGCAtJ/ogGUbspUnkg5SysDl8Wg3JnRcveMqwf - 30Lnl9LRLojLCronRiOoFN9Rm7kUSterc0aKM2pgzmOhh1BjFH9XtApYWxF/4H7K9uRXP7GARA36 - 7mP/x/+LpeI0UCziBakH5gHwz+++BPVEzLHQI77ZBQ0coKP9/LFh758EFhy9T+zffn7tfK2yX/3w - uZxD6qrEkgc2P8Nn5OJdj7ul5KWal0fyaOlKx48hx/AYhjXSV0hc/E0MGX5gV/7ifaAQR5lUfouC - /PzGzV9XIPMWWqTuDDXnl0rSoKykLXET++VW8Tu0QPWQv8SrFwZ0mx//X04UgP99ouBw+aqYkeQv - wAAYs9SfdxC5c/IYZjWkH+Dr7w5p976li8zfHNjIJsD1Xb/QWfGPH0lpyj0JC9BEAzrtP9CydiJB - As/WiyHbLWx3Nevv6KFX6bmILOmwTot/gJENVqw8WvFaxxo6+R47tL7XxYD9uDYyG2iq+2JhZXiY - ze3M7ADzWb++G0gwS4mvYQjWhtgWjOhw9CnMjjl/C1RHagOp8Fn1pg1LJjgtoDGoiMxhiY7HB8Kw - iNa7f8gZxqXy+1JCiaw9soZnSWmsYBEy6jf2I989ustyKQupmbc5pPtCHnjmExqSCDWInlp3GmjY - UgyLGTi+cCnbnKugVwL9s0JkH5fXMB8P25wubmJ8flWbmlbXYJXY62cl+oMVVSo+CA/L7OghzZbP - EY0FP4QkCB6kiDRSb69PJZ6mOompvxsWL7M9mOm1gqFy4dUlP6m8FIOmRqitMvDhq9SHzjzlyGb7 - xuWDe5pJF5J7BGXnAbRzeMdQzIS7XzM9E81lVhqSIzMNkefsli/Nx2Ch0RWez2j4Drik4gzJKB0L - nUqODIuvuSW8X1ITBYuWD5j9SCvw2pwlxyu23PXE01a623ZHnktjq8uzOqfSKzMigvD7Pewr2ClS - axQHXwTWASzNTFL4pE1Grihu63VMoxjejVeJ/HnHq6v2mHt47mcTXQTu5XILMR3YKYWPKTgK9bTq - twTe7HrCs9kcB7YpLpVkaxIi1vQwAWe+zyL02htL1D63anpPZQHCXBDJ8/a1a/b4QCPUWrsgCdFe - 7vxOMQT3nTCgZx5a+X6PaSmxaExIsGhgoMbuoUFkhQfMqJmg0skxGKmJlBi5d9OkHPJHDe7Hh0yO - p0HKR1NIA6g01R7pinB1sRYFBhzizkMBMeKBf2rrHUqf+4c8y8PFZbs6YuCbFzQS7quPuxB9mwvK - TDqxi1TNWfNRNvD7JDxxOWKoY3q5eFChpu8HTq2r7Ok+3+HLd3Ry+tixuoxBpUjgXVjEB2Otru8u - bGAJTiNydDHJlyFJG6nzsxzlcyLVVDGsUAoM4Uri5Puge1AIrHSQk8XvVxfVxGkWVjrZQkPc4m7R - ZZeuvhQmT49o7NeK2K9d8lC1riVRuJPusjCABaxUG6Hr6If1CoA/w6MtuUibmWrYL06UwVrct8Qb - mI9Kj2LRA4pPH/SwqzCajm4YS4yYJCgrvas6w6FxpNcd3/FhkhI6gyXEkmUHDrGPy3HgH85Lls46 - eiPb1A2XU9+nAr6hlZDwXZ8G9uFoFeA+250i3v1Tj0paObAqzxJCcfRW5/HKs1Ay3zsUnhGl5Ovs - NFhRPyH62XfcfWRdClhKHEds/lKBZRGFEYYRpxL57qoDd4dsL7l5hfCC5RYsfM3fD76FVnzoGRpR - g4UVXLJmR9To+R7W5XGeJVFvHaKs/muYoyBZf/8Pc0nlD6sRRpW0Zr3hS7slzJdz+/Th4fJWsfhB - L8DXmaUA83ZSkR0dKZ3N+/UjRTfrjoow2zpWL/cDzafAoGd54Ny///+J5RUZpoEA9l5rBX/ri5wv - m690bGKpKpsTSc0Xqemp5kJJ4aYr0ZZWA3x5A42QYKVH6pn9AOprpQIF7XpHx/6qqvNYPVM4Alcn - dnXsVPou2RkEhnjFS3+t1XVdMwFyd9FFnpqsw1pbRIT3nK7IKy/lsJwfTP+rP+TB2V207/Osh/C6 - t/zRSo8qHwU0hO2O1YgHoRKxu2H+SMe9eSBqYvqAfJ29AVvlZqKkv2RgCSypgq4uTUTJzoq6PNe2 - lFyICd4H7RS1uxIpcPnUJ7xja69mNWW8g/OUBij8nBDYv42TAX/1z8zQAYxTdAthOEwFCt2zR9fv - Q7rDhXBndKnqMsLbfkj5d2djweLYfGaVUIGHlSzIP8+DOu3oS5R0+8oQA8jbfWY9q0COMQbiyfLF - XYpTEILt8yJDLgy618XaAF/n2RD1up7qda3cGWbMVyKKHn3c+VDJlmQpDSJ5bQwu6YbXKtnu4CCL - 1c8uJ/NnS6omqCJDM8d6WdFBkCgaEFJyKAO+k64OnAoJo1PMPsCYvYUVhp158eftFu49nlsPMneQ - YuDSE+CEZyDC/UIiZAEtzvdC0aTAUj4IPeR3q9K9PQQQidBGPtsCsO6/jg/tlgr4sAePmrIXOQWF - yfsoL+4t7YwgneGnO2t+GT5XSptjrkGbkxPiak4bjb/9eegOg8zbez/grp4Lyc84gK778kH3kkUt - yQltDTm1m0XdnpSyROIYkcvltboTKO4xcPMSobsVPVy+ZsxQKi1+JGe2Dd1VXw+z9DILh8ju3h7Y - 4iAlkIqFRp4WvNRTee9ZgJZeJ87yOuW8cuVa+CyZM9GKizmwdhV+pAd4zyT8CrieaTWH0r1vb5hG - z3dN45BXYEW9hNzj2Af0aXA+/Ft/gXfAessGDMzvkqEwamLQT3tJlp6FuicWM4nqnHDgDjFDR5/l - YRcRx1Ecadi5M9KrWs45LeYTKJyGEslnbh4o0I4O+OFt3k5XOte3oZKGnT0TJHhrvpr7YYbA6SIS - jbNNuZSmrXTPlxVnz4rdPr8QiOzIaUiOWVZdg3uQSq8XQ9CxHZt81U+vEkpF4yAHCQ914WumgBHt - jkjJzpVLP7nvARc1RxJt/GK0rqICk29CiHsloKYVfMmSHxcBcnYrVOmcVSWsys8JC8yUqVO47ldQ - HYQzOq/94M5ySCxAX5aMQnooc/JK0CyC0VJJbCXE7eGr1Q6B7N19ODAfd/1i7XPwpzVG5rNmohWO - VvtbH595ZUq9P0fiB3JRY5J721pDvyuHSnr5lk7QSzwPLBpVWXodOAd5W73Bs5W20tG8KOQeJl8w - 7wahgR/uFBIdP7E7cU/vDm+rcEBuO13B/CD3GWTJVOHuNJGofd6eGgy00Md0URc66usl+PFhdATf - S74aUpjA5jYilHEOVTG3JAnkn2cXU39+5vRuHlYoC/PgQ+9oAPa0Lx3YvPsHUafMU3nnaPLwfC5U - zPbnS76qIz/D9DWEyLKfSb0mnM+IKRvlxMslNp+zhsyQRTghhUZlyr+77AOTAyOQk/xu3bXHNxly - 0XmP5/RxAAM4tBUQfejjAzfINUd3FZZKa5uDJ9CULnHhGsDuDIugMWgGfCl1Hmi3t0kSn3DDtMdX - BTSzqxD3+Xjn48ZfJEbeuTg54YNLIwmy0DQ+ItbqbnTXh/NSpFKbRWLtczyssauNkqM2k8/Vp6qe - 8BN+4NRUZ2T5tgBWfzlpoKwvZ6J1gQDo+eDwsARoRMq+MlwWt2EKTJVZkMEe3WF5w5SB8UggUb2y - iqbQFyoodQZBxnRTIh4NSfXj1wTpUqhOc4M/oOLYp4/vx0xd4as1wNR+VGRUSki7k71q4KGUHDGd - 3ojonPUVeLVtT/Tm9Y3G+FMK8Be/UZ5HOeuEbgG/J3Py90qY5etRYSsxOz+DreMsDyxz2Vj3XXCR - e15ius+TnfDTQ/4sl2KO8erfYSBdbOTkB0xHGMA7RNrJJBY3I4BDsGpwh50dcculd+d+gqVY4EhG - rmu7w7L23QdW39BCR3fiozkKihnIpPigIx/NdG2KVZbw9Pb8WlvTemHjQYSKGl9J9LqJEXYeVrWN - L/r60r5w8tk6ne+idWVfSN30F3sBvQzbHa8RA/SLS9vLtYU/viU79dvd6sUdyCBlkVbsbNCZF2eF - JiWtv+v4XbTsUtGHgna5+zrQC3etm/ID3p6JCOr4Z4RfqiTC9MS2xDy2gkuKBcogX84+un0GN9/f - q66AXPQx/c913IGp5i9QKpz7lThOk9ZkETUPRnCn//CkXs/eMYR+Winkcno3Ecn2iSM5z1JEJni/ - wCy9pQ90v/cH8aRPM9CEOYZALUtvO8B5j6ZN38DiiTukNdIM6IbXcJaKM/KY78uloLul8Fd/vZOi - RuRUSyHg5pHDO+8NcnJ91Ao0xVtN/G/aRQttqAzXgf8g62b7LnsYWwzVq7/dGv0OomUtjzL8fsWK - HBtGHN5cN8kwBp8aefzhmlPR+owwHieIfvvfNgfdg/VxnfC86YMeBogBQU9khDZ9tnfjCv/4FNKj - 2lWpjWYsHfr9hZwEawRYnmj8q5fo2fHbCaohFODGb/1XQBqwCks1SxHOsL8T+HjY6mEhbvGHaZHx - ADfxrfj5BeREuaamPz617T95CCtxJ8eeWqjP+pHkZMx//L+FPEcYdLzcTHXDc4VhFjkkx3cLKSX9 - 0sNc/G5TlZ55RCfHZ2AX9RgZiaGr3HXP+yBboUz8SCPDPI07CORACNB9gpO6HoVIhL3ofNFp5I/5 - 3tJMB+RL5ONpynfDUp91DIrn2PmHpL8N9OUSH54bzUPOBx3BXNtxCsIlOKKEHU505c2yktDj5SL/ - EBbqQtD7DhMs9+QhPiY67fxbCxO1NBD6+ok7bXoXSGAUUBZ81WEfTe9REn3GJ8cwq+s5ynYJ3BlB - Q65DM6vjztjuHCyfIzE2PjuTamCB+hAUdO3FE5iXOxfCeNdeNj+jcPtU7xugUN1Hqs/V0XxUX4qU - 3lYe85Ei1YQTg1aqq93JlwIH1PhX/9neA8gnR+IuhJVG8HnEPAkefBXReryJP37q7xjn4C4ha83w - 80h4csyvJ7q4umVIbp0OeLfj9pQ+4b0Rdbv3kTXSd73uBs2Amx5HXrOrKPEFJoXS5Lz8sW3bejQf - bSPVyKmRnrlxTg70XcHXCxJS9NcRrKLMpZBi9PGZ/jrS9ZbVI4RG3yJ7u7WYbn4CqLxHRLLkvU11 - a8pGWpMmJsrmR236DMOEhhLSV4tSyl6sFJjhyyL3y+40zPYILBjxZ8dn7IeqUsdxLEgSmCKvFBkw - t6oYCLqcOOioZn60nHa34qdPsXhrTpT3XciL4ZMGyKleqcuOdZv9/CSi7+9ChPf3Vy8lQ/ZCR0e5 - 1uvG72CFzDtSNv2wkP7hQI5UMUJWGEUUx98SsiDfpkjgOJ/H6pqJw1h/kVkwssvfepEF+VeyEUJA - AItHiQhE/SLirc7TZW5wAymdbXI1PwzFlx5n8C6FFfGEE1TX60dmpVNaAMxseoRGEsvD+yu+ELXb - phJdFRr/9NjPr6mXxz1J4ab3/DUWDgOVsJpJaWQAX1gXL9/0bQEfQJRR8KHj0J8/M4RPnJhIfr5e - 6jgJXQnB8YKIdhv0nO2sJoTgeXij28/POLvjDMe2gkTp96u66PrsSX58D5BxNY/1yoDcg888x0je - +Egb6owHbfObEvdkhjVho10mnq97TPyfH2P5BIu//UsIrvPlx/9rkWuRYramuoqfUw/dcq02PqJH - a+x6GKodGxD1dcvyhWc+lnS96h9kHHZhPv3wj5+4yqcxdfIf/kN1vN+QK2B72EsWcED4cE1kzXc3 - +sxW2kPt1B+QPUk8XTxUttAD8YnoaXkZ1mRHSoC9bMTiFq+k5tdCpCU3E5fT6+2shN2AWDmlyILp - QaVXBcTw3vc3IjOzpy41f2H+/J5FOO9Bl0jjDOv3O0HxvbcAd6GeD4/tqyKOV+0G0rtqKXna1yUb - 2Ea8qXgp2OotUhX2XPPHx+hB1xIMlAZeTek7uXtw4zdk47/uJNqRB5HYHci9DGA9K2nvALS0OlEO - +280mU7l//lHVuCpdPObZCm/pSvRztEhooVXz/CWpjG5lmFDF5hOM/jpTfMgqu5i73RF2ql9jjTq - P+vFeg4JONliQ374P+JTNUpOQ0+Yr6dzzf7wTDPgNqXBK9054gUFng9J4XP4iVXylYsSXCo1Qf5R - v7q8ez1DKOmBQfw9c4vGyZox3Pxt3PeHRp2+nzyEC5O3xGUU392HafOBHlAlX9z0HufRrwA3vYnL - Kb/Q9cHsUvDzt4+J2uVU7yMGvjItIk/nG0elu0wWhKekRsdI2+6Eub0cqblhhFyOfNT5WKQYvhL5 - ta1XTSnXH0v44xNRt3zymVpyI4nnJkXy8PAp9zlnFnTrbCDH126vDpAJKyiP7IOYW/3naJYV8AyY - L5J1lgH9FDYzaFebwRyl4YCR4QcQe+lIrPOpjPbVa4mh3rOYxI0UgJ9/CZJ0TXHrstdhuu4ZT1B3 - WkUsVl/c4RO8W5C2lxO64w+JhncS+9DmlMSvMq9Qp2R69JA82ghdxByA+TC2I5SvEcDC0cP1aEaW - AjSDYYjxGS/usqJFhJHz0X3w2p4oGYNeBhjJ3C9/8uXUdKvYXtSAuE1GKM3CkwBh2PCY3/gk2VU4 - gNc60Qiih96dD8MTi35aKshi1CvAT5TL4DOAEzJPXUdnz/jE4HSvJp/PM3tYC/HGw83PQub33Kqb - 3xJI91dywQem7cH3Lt0cmEso99vM6Wua1LcGRiff//Nn+MaeRWhd/JTox5MQLVOuND99RJLrUtP1 - /BGYHx/F876Qa46/XUT4avses/FVBt2zumXQ3SWCL2poX1N066xfPBN984/mS3L7Vz+uVeO4bJYH - vnR6OjzxK62h81iXKWwPju3f2m6NNrz9QLW2LkR+8Eq+PxJGE93CSsnf93N12YCjm/lE3/QTfblf - H+iXzx3JVbl1vLRSFlVuLnzeJ5dhbumgAcmFR/I8fa6U5m2qSHJd3Yj7ITOtVe6gwf1D7H7P2EaY - W4oYaJfXBZkXeAazs89H4L3p4B924aSOWfNd4dr5D7zyQg2o3ZeplA079peP+frIBAdq/MQRndJ1 - WE7NawVNJMfk/o23/HiWEG761d+Hkh/NuXgQYPbIH3jm6IsOG58Ud9+nRlRG3yyc7BbAI6NpaItv - Olut7UDzSzO8Di82Wg7M2kAlbTrkt6OvLvX5hOG9lQN0tq4pIJ1xLn/8n6hh0amYQCKD4NSE6LQv - +nzmTU8GpgoXLIrFfqBBY49A/8yQ2O8eg3lntAnc6jdRP6tC97/8l69nsPkjirvkX7Dpp9vXJ+96 - n8+H8yJLFmJ0X1rKetj8URFSdVJQAMxPtDKJw8DYAhFxD+nwO2eCQR6O+42PP/NlL+w+EMfRdiJ9 - u0LwUFnOn/+y+QvR6J19AVw7QojlU+CuW38P/vIlzTk7Ym2zEuAuL/lNPxK6AF/3JGiHC/Es6RmR - hdQ9VOAtJM8J1BHNk70Ii07GxMwDPl+Oc9XA+irvkMEOE51p+LJgFus3YrV2Ha25qGdQOQuYIOcb - 54sRBKu4rI/cX62wq//098ZH/HXzZ9mxLjPI65JJjkWyREsWiikUP3z/698MG/5Y0OSvC/rD630s - JDChgeRL+sGr9/dUFoFh7u6Yc92nuwzilYfcjLlf/xLQx+T8208096VEF6ZoV0hTKUZ5ZpeU7lJ9 - hLyaMFhqzdylMtf0Eg9HG53sao2mnz99BvCLLKOMXNaFOobr8bgipfa9iMuVIQRrBF3yjCUzmoXF - D8G4cMdfvuRvoVvuklpWHjllp0++Fs/eAX0jXogj2Hw9d4zbQjOsLSwxRlRj+Co1KRxIgVRGvqv7 - I+EN+Iunzc8dph3tBLgSMSVqTPtodb8vQyKsaWB2jMscn+4uAxO1MjZ+zUbUjJMAKjoskTbGZTTv - j4/7n9+a1CqJpvJesVIjb08sVcfO/ePDmx7z9+ZRHvhIHrepsYeeyJqvqdOwyIHEi5qMHl92pfPF - cFooRfyDyGbzqmmfh610L27AZ06GBbb6L0DdvjCbnt9Fc4UcBrZ9VCEtG190scRchqQSPsQLhs79 - 9X+gEYEeCz7NVfanhxx6bfAaC7ea14Q2hpF3YPBKD3JEFUMO/vi1v/Yx2PxjWVjI/kycryjXY3DU - POl+8Gek7tMVUF13MZzD7Y7lAvjurFqRAnf1LSSuzpnuxt9baCQ19RdHuQ4L6vIZDtfo4i/hZTeM - +HFgoapFmJx4tlUpBtYM6vc38Xenzx6s6v6agKfh3n3p7Arual31Cl6GS4bc4RapFN6cAAqXF9zW - t6z7zd+G33dwI+d5N0YvD7Ut7Nw5RFcD3uvZrrLm11/c9k+O1oYcHWmLb6LvWC2f0asv4OFcn/35 - ZkJ34RlsgR/eu8bTjigoZh76XD8Ty+Li/I9f/ocTBfD/nCggI4NO++8UzZybVHChd5GY1qGL6G5y - DaheSplkl57Us7b7fOBSx09klCVPF4a7FdLnpVFykU7mwCb2d4XhS5hJNAEhmi/9MYBoPNbIG5WK - zif9/IEzFo7I074HsCaKOksS9hFemtXI+bQue/EYeANy4tFQV707CrCvix6dUDS4yy0oV+mVhQU5 - Wch3V8AXLGxYa/TjKDgNrCC9eLjH78AfmAYNszZ7PgiC/kvMEVUqUbJGlIzccJF8uCQDlbt3Azxm - dMnxeJ/q9UpdBc4Zznxutkx1fu7mEPr1WBLkXL1o7NjRgOryRf5rB6/DxGhUhJo93DHob+42f4OU - cO+cfVTszla+H5WDA7XHXvUPZ22hq/bleCgT6hNZukrR6vSYAUnseMRwL0fK9V31keJaKcjjW6Bh - 6ezbLL2tOCJPOznk9CjeFXhyGBnZSzJFsxPNH8k9zjpJAU9zcgrGWYgz2vvsUFY5e0osRZKB0JI7 - sIx6KesLAwe6Bz73AjBa55ltpLesl8RnAi4ac8jcoWPtMoTW6ZKzdh0ykmXJIUqGJgKTwS2WBN+N - i7xjfR8Whj2loNCCPTm5Zy0nK3cpYOYEPnmcY39ge+40w4o/NOT+4FKX84Q+lLSO7pFr2x93CfoR - wgpzCUHvD1aX+BHK0P9+DQzNblaX3VvDEnEUC5mRZOR7mIsQfLluQA4HB3WWEJfCECs20T+yN3DL - I1Ik/1kJRFtfvEsnOqcQnrOGXBZjHqZT92ok9zWJJLgq17qvbm0Jj+jQkSzt4DC/yooFzsM+ImO3 - HgGvCUojbfFIkvS2A2tpBRnchaAmar/P3WkURSxVIpyRSWymXvd6GUhpFwKipmsf4S9IUonGxYk4 - 2dTlNG6wAokYMOj2cFvAG6nkwBe+6+TOmNHAG4c5kVgIBnJs1k8+G8d7BjOmCTC1Oq/u0p0YiKi1 - JBLO91c0E+EVQj2rYjw8Yqf+7RfUjmJATPbcgnXfvBWpzayIRHu1isY7o5RQFmSFnITvg86IX7f+ - +GtGWUEClefpG0uecYTEkV+vmu8fDxmGeguQbpDGnVKistLJZz9EMz1ZZYfPyYDxLgyJF8/Xeq+A - UpPoPCp/68NRXDtSFiZ3/8UdTgPbJ0dZqnbOFclX/eVyli6FUDsKATrGjRAtYrh48DP5HsojL3Bn - fP1o0GrPFiqAJ7j06LS8JAOxxYmdvKO1Et6hNAi+5R/E/AQ41/JGeMhfV6QvRjBwZIywpJ5d6r9n - 6+uy5TNZYcfTG5G5VFbXSxhUUrc3MuSt2zNcnZ59/uJLeQZdTfi0tKQXf5mIkeQ62OveSRRHOUiQ - L+OYsvx4G8XpoR2RdnjTfAFRJsK//dvtji7bxSyEK6AS5pXTnq7n4GhI4og6coxeTE6HqgwkqzFf - PjCtql41wfnA7/nS4Vm6PvL1O7CKFCmxh87XDx5mxH0K2A+I93eP5puzPh/w0tFyHv48nW2V14Um - lD7tfuez6cXPV/OW8HDx9zx6CrRz6VC1IRRoQnwhab7DIpzVQjIMwvifuYsHTngtguSexZL4xOqH - SdcWUYr43scruX1zvOtcAXpiu0Nac9fzhS2STExG74bulXAGa/Ghd5j5Dkt0xGoDbj1NBM+32eB1 - V71dMutWA19HECB/NOIIi3vbl5RmqZG10C6np6OTwZ2zvxDlHUWUe9IKQ3nWAnIlXqvO2Nj10Mg1 - l2i74UNXgYsKSZStnJxPdTMQ+olnsNVD5JqWMizY4VmIEBMT7YScaP/oUwjv0blBpzgCw3zSiA/N - HaMRteH3dAQFr4l2A28oK+do2HdHN4Nt6L+InghHum71QowcPUWXQf1Ey3C7sBII2AklwgCiBQ+i - Au/5KUGIDgwga5JiqAg7B6kH7U1J3HwUaV8998T51ZtHkWfwl0/R4XjPaTU+x9/PKETmAIYp5Hzo - PAqF2JVfDStiZkHiefOL/OJY57NcZCmstmcibw9rl89bvYfqI/KQHh/0fC9YkgYZ5lvi3W690OX+ - EgTpnRYY+Z35zanJnH0omocvctzqok7uF/DAH54jcZvUBH94Vr6HnGjd/TKwzPlYSAkbfn3R/iju - fssP+GisO7pY87de87egSYcv9dBxZCeXcuaCpUw55r96oI7LLecB97iY6HLmWneuq6CRwm6AeOR1 - j/LSlc7Sq3C1v/1fJ59X4PA9mMi8Huth9t7yKD3PRr3dCfGkfPl9WLAt5AO6tecRzHNqztLjrvkk - lz6GS1VRGuHv+yqH1wtws+Q4EAlRSoKIyfKVVpdGglKbosJhrZwdeVrCB2JvpFDWV8134wWLxt7O - iHWtzi7b1lwLs0+pkqdED/ms4KSQ9ORhkctbqdWZ2+ZEb/mJ17OForXp517iLzsPd0OkuqytOha0 - JfmDrmug51xr6aOY+RaLcqH2IjIqxiyV0tRiYQfUmtu9vfHHF/DhZgj1Ih+LDH5u8hshdlFyzvr4 - Gsj6tEMOCwR3TaNIkEwyqFu+WOoWH5mkpCwhz7yuwcwEV026XQaXHJ/bLW8f2o7wh29nu4gjcnCO - DvQUO0FONtn5HAvPBnLTo/KF+/dMJ6DOFVCl/IvnygI1EYGVSXktY//NBK+cKtkoAGt0MXGrqxat - 13DreL/Rk5yed4ty8gIglLCHUPg5P6JxW+8/vD6tDa2XZyPH0o4mO2Rv+DgHZif/8ocY+vnirlnT - yPAaXHk8h4qZz8HnPcNr+umQo78WunjtpRTH1JZ8aI2OykE6jOJCziE5itCM9mW+QFhl/IVoVSrk - 49y1H6mAc0mej8bM2SfKRvi0lQvODrIV/eGjsctOxI+hAvYfcithdNoxuIdSAejv/Rak3JF8OcZ/ - 9Rxq3bLH4Bl93UmN1gbiWzQQ87571FP8yGSoVfKA4vza1MPlvRrSxh+RewtVwA78mZeuZb9HqGtZ - gJ/JB8OZh4j4Pk/cpeZWB6ZHIyJOw9V0nXbR5w8vZT6xh3nkaQVmo6LEFWovX3WhCcSdL7xwvzsO - w5pzWSEyftyTYMOLvdiRD0gn9+XPNBzzSX87WByggZEsZQZYrsUjA124psTrIFK5ri0qOEne3V+R - 6dLVL1oDHGZZxvMSETpn2zMSYFxKkqJcdGdesizw0w/Kxlco3zolRI2++PDBCe7kCFYDnwGQ/L3D - 3fMlOWEGlLfx67OmJ7t/ePPjr26Xvwb8hfIKpF5ukQX4KJ9Qr4bQvDY8UkMiu+xn5RO4mv1rw6d3 - jn/4h+bSQw++U8H+TE8y4M4nTAwrcuuVrV+99IjlI7o6gk7n/D61oAvnlIRs0br9xudg59xsnLpF - Xdf9zH+Aaocusoy8o798gmbeK8R9xH1NHLL6sN6NPlFr3oxoYe8LCNL1iTx/mvJ5MntFnMP+RHTO - LcHcNdcYemFxJRs+gFW5Bgbsv9cAr6nn1azDHlMJsemKlObiRIt/u7MgqoovUtGg0B+/A6zMP4gh - DHn0Fy8JGmpyUuwsp87TneGAxgJ5lXCmc2KTGbzLCiKkRsRdm03BF95Fw/AhvOrlxXop1KZdQZT1 - 0dSrj50CZn3WEQU8WLpGpe5A1Q5c4p8EfeB0djIgPqLChw/hOLAnjXgABPzkr6YcAxrFLwYag/ch - WpW/KF2ar/LHx83ROYPldHCZjWtaGPBVC+gPb+v6npHHhs8rSzUZnmqrI3nuJ3TN6icD/bwN//jI - 8k7GEcruw0M5uYF8Lp+/O+rm1hcmfFC7QTzL0ndZdJKuSwhoNV5HeD6rgg+bwyVavP1OhNoNPki6 - /T1uJ8uQuKm30JEXy5pyppnAVme2ju7HiZazI/HgplczMmMpAct89xmxq96rf0l5ANZruHric4qv - WPqHtCvZUpbn1hfEQDpJGNJLm6Ag6gwoRFBEaRLI1f8L3294ZmfoqhposvN0SXaMsAX0YNSlcuE/ - 2zvm24nD3e3RwMDjTyS4HLVifVzLCgCrk5EwmhkjO/gqYdPILbaSeBrWpydUkH5bfl7na5qsuVUg - eL7n07znz0rC4iZ7KqcXy5Agen6xXO+fCnLf2x7b2yPa7DVHJbDsVUS7Z/9s6fnG17DixXnmBlNJ - qBNzVKnieiRIQfPApJsuwkRpeDSsdRP89Bv8g+jz43NzTo9WqU4vH893ld2K5VTSbB90zmHz612w - BG44Q/2JR6KXA0nG1U98KG1plWbJYjsEWj2rSXeOSFEeKRh//u0svTNy+AQWY7cLv4JFqh38Fxyf - xXpEqqH6N1sgGo0zU1yXLIabH8ZR91cO09Ope7BzIMGFcMfmcp61Si2T0idBmenBP76JefjBxVZf - d1GWOVgOzYW4f6+i+OkTsOk/1Or1Ltj8BwLq1+iJsWvsQGB3l8LrdaeQyI4fAXNnq4SH7VWGbLfq - jP/p0eDMHPQsLtZAd8spBvWkIIL5pUnWdclO4LTqAUYvu26ZtlcyuFI/wJbn58HyzExNLWbJQTwO - 1GTJoo5T9VA3kXTc39r14SoOfF5kad61r++WBxwpnB9fBbsbvk5b/gLC+eZjJy29YuGJxateva74 - AM4vRjLH5yDQ2pGY8ZAUi4D/RnhOkm3H/VSbq+3uLfDDp0NlSAW1dnMHjp4fI6mzuKD7jrscYIqD - f/6M7T+2DP4uyhsjNSpauu6fX5VTZmVuAts2f78XcjN1sE00yNhvvGO3u+HodU/M9bTjY0j92434 - DLxbCneOrLbBIUBU339aFu7EE1TS1CD3dTondM8FNfxkPYdzsq/ZGleXK7xO6QFf5AS36zAHFZxe - Lt70mj7w81vh4TdJMUmv57mY0r+TAdN8+eIsvuzN5edvbtPmYy+EJsvdtF3of67i/OaPLqBwh2Ro - NwVEzGllQLXqdIUvKzlg37mDYlxvag228UfcQ6PJamSv8efnZ0nNvEIq9rcvbIfmTSw/mILR1UUH - Fr5oE79dPcAscM8BiZQZe+TssUU57RHU7j3Dh7f/SFjcuhCOrtlsn/Xilw8p23rD/qFGxY8f1Doq - V+xL6lysxYs60LiKBOsvShit7xlVjZKciZ0r7rD6wTcELp83Gz+AZOWNrlQ3vkJ0iF/t0jl3DmqS - VGLzPEemwAnHCuDYoTMwzVMxPk8mr6QdsPDPz4pL/RZhu5sRjo7pPJDxlDTAeHIeLoXtTvqWp0EJ - BTzqR4pbqk1w3W/zO8/6yBWrq5wMyMP9gL3+GAKB596h2rmyT9CDu7FVZNP44wesD0sS9B87f0LD - HVPEn05Pk97G67h/nPQBW7fskdCs0DqIEzUjKBQCwH9e+gyVZ/WHvZP9BPSdHEIlliWMfvhZc/Ug - gqwAW8+E1zsYN30MnXz/+ulHMI8oTdXhDQ7Yf8xqwJQ82pRklqKPcOWD+V1Ezz1/NizirWkG+F8e - uvlPXIQuC1h8gkipX6KOVGPbYafh+IT85BwJOitjQUO+deBVrRok/PwC6dMaLmZo4Z+/mKqTzcPn - 4SVihKXGXEpDp+o9VT1i75AP1sLiFWg3XUPctFYYsaBO1QzqDJcRMbfvM3ewQPNAHPJ5mtM6XSw1 - fvLon5+QfvncF9QSzq+fsuUl+EdhzyUE46QM2fg4aiWk1VtDyl7ri3U5RiXsM/tArn+9BdZ3efvu - s8O0zHx4rNm2npRfPoaP5/fJ/PEJbE7vZt7vqkMr5bLdwVKi4T8/NfYWasDP/2sa0IKlPD59FU7n - C8avDgV0uSUifPiuSW5/gQukXZRAVY1WRhxxu7pMrSqE7furz2tonwfWRjkHK56fcWA5YTI/3qII - fn53//PL9seT4YDnClte1A5094ga8Cw4E7vbeEybvoXFzj8QFxd5sJCxmEE3hSEpG3kBtIxGCPo1 - /b2UtTD6WssvrMreJnd0YwHz8SOHLr1kJGQ6aRkvBQgs4DpiY/M3xJs7H255wsw3VzlhxTWrIHq/ - HHJoDu92GYdrup/PhY0j8uoGBoe/FBhP6JEY3MxE3Ds6B7muTYj2DN2WvbbOpSt1A4y+9nafpqQp - rF+fgrjoj7bjuh+/8AUpRQ29SWDZ/CH03KJFiv8cWj4flXz/+/4neruAn57+6SFsGp1RiIKp1GAs - G5+gwcwLlvcDUr5t+cUxO43JeHrjSlHF098sp61V8JCMDQAl52AD1gjQN29cYdrt/9OTtGsLCI5T - dSLhc38u+t96GRLZwac6zgNaEY8Hl5HG2IwHlkyh3MRwe8mOuKdGYwLylBLm+aGf4cQJbNn8HNzy - beJaeTdQb1VTKGUP85cfJSMP8lxZ/F2Mw+vKJZtehPJ56Bvsi0o6rJt+gc4Ov4n+mD/Bqtl/T9iS - IkIf/pwX62Fvc9AQrCfx5NxvhS3vhJ/mvc7sT7ACnqtbHvLLIfnhh7mcxnyE8eKY6J7X32C0aBjC - X/7k0avJhFCSFLjlq0T3H7M5ISXWYLdECAdzsTCaw3KFtcCVOMoubsLD2vf/6YuI9togqWHcKRIn - H4m3qw4D3fwpqPrnHnux4/702woTsUdYS7QY0I8gu9Dft0esA4UypnkphT98jaLTG6zn07UGv/wd - 3dUsWZQm6WAtwBJrNxMES3hlPgTq9soHfbXBT6+rnCimRNvqcTkB1YI2x2f4/ulTsFTM0yCrbzqS - PGkFZPdXj9BNTwckxnnTrpcTFuHmZ4nf8HVB6Ot2BQotjkTjTxCQwuUddRs/vOm7gAZpfgKVlh+J - v/H90ghxpfJX+Yst+mrNuS/eMfygjmK7kE/m7A3HDByK3iBHjkPBVq8hNNw5xc7tbppiu3c48MOT - bEfkZJWFooRc90hw1D+8do3v+gqFW/XAbj0a5sgUJ1UFL3Nm7q6KxVQZQwV01/0jRoEawPrYcoBp - ox0J8OEO6CydQ8A1/TQLsh+B6VpJ1v6Xb2D/Mm6vJSSZuvlpJMu8ag5QkWZ4/AuOSDpzHhB+/uV5 - USQcGZ5SLLrxrSB1aoZ/+f5cvuwZtkUeop2VfUyWvuJc/eVFZTBr2/83leqNckA0+RKZJBNEH2qM - 2wR+LBTLLe6pcgguOrFY8wkWeUljWOzcA74Wbz3h5XL+At6aTOyQLm+p2yyx+sm+3G++ktFZFg7O - x/pOLjSU21Euux4oml/M0j5thpUtEoRn0rqIWe8X+/789ltvMMoluTJJH4eWUp9bDY17aw+oc3y4 - EAd7F4eq9w2os+w5+Jcav/w8KSYjuSrQS4frrCqD34qGVMtwWq4WNidw/fkvHoRNt2LtoIxszAr3 - CfaDeMX2Dn0ZKz+WLP/2kywcqMVaXW4WPLOZ4kMEzWBVMnpVf/znqOyVfB58mMPxmrbbeNbJwiNo - wF+++y+/dx5BrXyx+8Ya0uqB3ivBATl3+2IUS+vAuFA5gdAIMjQm01/LimtVKr/81Nr0yqp1MVWM - mDYEO6cy+MzDqqmB/R1meFz8dp7vz0odLus4s5S2w7L8JRqMF8ucOT4KikXC0lXdMZ3DzquNWz5T - ogwoY/TB/9bHBTED/PRCVN8NJirdaYW//YpAqk/FJNCrAp+HtcT+l6nt0rvRCMlNarDjpzNbLtX5 - qj7JziI/vTSbIlfDJwAy2ut7dZjImIzQnJ4RDprLs6ABuxuK2Fgd2vLNgoZWVEO9DCqMZeaZC494 - TT16bky0i60HS+9SSwXhxyap+s5Ntu3fQa0VCyRbedeuAXxUsLajHcZ2ehpmVNUW+Pnj8L63wHIK - PQWeLyWYIW99WumtaYZadCCdP/cwNOlt6FJ4UoUW1Zu/nJeaiIA/axbOyMcKmBO+O0gq3SN/234x - /eUp9fmh4ezTa4z5d3MFX+l7RB2+uC1J7U+83z4Tt+kFk5wtToYvfv7tXxvsl48A6KUZvqiZl7C3 - pmkQXaqB+OELm1s+PYOvqSMcfK5ysOyPk6/I4ApxdAjTgF8/dwX65wjjgHuSlohucYWbHsWes6sB - vQHm/MtLXW/rSR8UXQzLS0qxcdBStvaTa8GkinfYS02OkZAWCvy+zzFxDvHSzr98wDVVB0fK4A+i - cQhS6LwzjVgoYuzH3yDQV5tY2375etZ24//nRIH6f58oSAd4I3jaN+2qddwIG2jBWYDBh032YnGw - /xtGYsUFbnv4F1XwHTQFgta9S2hu7r9qXmdHojV5GNADvMkgeWqEOF9jZgvv1y7MX0WKYLvoLR/H - twrqnlxg+9JNxbTrb1f4FOt2PoxNEEjyH+wBeHm3+c+Xd8NQT34Nj1u7bffokIL6pdapWeX5xOQe - h0HqRfOpysGpJw40HsN0RUkHCzIpSEU7I6FVE3WwcFGBkS8YplTr2ar22xk1jTuJw+IfvS9su3FG - SmmuyUKEx3YGC4izKOufgfq0XIFqqYgcydNqWTl7CFhQ0+clPB4LmuY3BC+v5TvzrWMCKbN6HrLQ - 4nFhxjngsZ1sXdClE9GdZB56/bRsXRAtgRjPr5pMRPjIkAfQQ6LvPxOG8jWH82Ro5Mjx1PyU47tW - q3RJSF5c5GKxyobC/u8zzo9OOjEpLtxcHSNzIJFzoi0xTrKh2A9kY5S6bcA/5GulPm5KQHTz+zVH - 56SJKjBmFYf0pjHp0BU1FDXJwIGvNQGrRlhDoYtifMuBNwjwLeTwTxJtbK0ZLhbzOKZQ26UePrxC - HrC7tHKqN/0txC6jtGWE477Qdp4JiY3mMQjT91zC1ZEXUorZUIhfMXdUV6MYX/LeDPjotabQnss/ - UtxE2LK40K5q4EOfoKtxTYQTtk6quW9sfLwmj0Kqst0X6p93PI/YuLNlPV+fMBmRNa+LWgXCSZEN - +DL5klyb3A3mT+hpUINdQy5v4RYsXTZAWJzrlFxvOhxmdr5aqv+Vv6Sy/9BAPqFbQ91rKdb22zt8 - UQ6u2yGLK0nuygRoI6oUfgyBkkg7d+b0fJS5au5rGxfEPyf8hehX9X4KQ3IKiou5zNyuh6Ko2zMc - RgRWJ777QF94B/+l6isQtY6boRsNkBjpLAcseJUibLCFSPB3tAd6u/UN2O0HMPPW7d6uz4vsgrjR - PJIUiA9Y+tJ81ZvuC+L2J7GYiFbn6pkKJ+xeS3ugr6AzVHhqVqLLwQDGzJJT8CoGB+saAOba1DsZ - 6jurwn9qoycSUmxDHZQvIRYW6kQKwW2ErBs7fHp+1WL8M0YIu7Y/zvTmtsmwJrMC9QtKycFO/YSq - fSDDdfFk4m7jL8TmToRdrHzxgXu8hvUiVy5cwuiOvRO6APEmP3311L1FYl4iaBI/XnuI/owY33Rd - B0IbriFInCHbuvJeg8U+rpn6KZzXLFrOxaRN8+mgcr48cVSG8rA2YTuq+7gOiS4eqoIK7GKoH1ln - CEYLCaS7sZSAT0iKZF002Xqexxw6NZejfLj1Cf2tDz5WJ3z6KzxGEZUpbG5HgQT6zg+kKb0/ldYZ - ENa+51siSVtXuyy4tRgrtTcIpjMpUF9Eh6SfjzqsXTBpIM8Fg0Qj1lrhZNniD3+QdDseWjb6jN86 - qVbExZ7VSsvnb4Vx2SjYaa9rQl6Gu6qeVj/xpXv2yfy8bGd60bcnWHCzgHe6PwP67qElgVIHrUS+ - TaX2rQ/wth3TLueWr2BG329891KnoDK3VOrYay6utnpZv3rcqVo6X4khnY8DXxkKhOWfnZDz0H6H - 9bxvRLVFfIsdnxQFvaHGgngsFBzd33pCqSDncP/6kk0QHAq24Tfs2u+ROMIpL+axXkJ4meCOHBb0 - BOtrPKXqJf4ciN/bTUL2PXDg8qzO2Hnf/EIyy2RVLyj2SR4eIlPU3+EMv+pXJ3iubsPogQjBs3jU - ZvCSw1Z4Zwun+vZ6IJexGYKJaP0Vyq3PMHZeF5PFt2kEG1+gY4+7dknnUYajkOrEZNIQUPS8f6H6 - Xs/EjydoMqv8rOAkaTpOh/EEpNTKRXi43vczY8GSMIGzOWAN8IHvR5wMW31pKndPeOwXFzmh7WXv - 7h/7t0aQu46A4dtlhPHhesHh8j22U5SzXKWSA8nhcOQBhSufAdl96CSrRnkgSmX0UA97A8cH/pvQ - e5iN0IKGTpzaCgt6vKkhfPXcDq3TBZv0LUYWBLEmbnhWDivd2b5a+ZE+q/uCG5gPzBEW36+Encf5 - z1zxM+tVAm9fjIMjBeyMbycoZlmMzQl1rHeWpILm8RgTJBy5gv7wuS39cob7wRuEH74cQ0yw1g4Q - rG+Nf/7DjyJ9Jox9z89YLRoxQnzkHAvmLkdOPc0swGayq4feXT4lvLAS4bKgXjuf5+dVrZ+Xv41P - l4S9HslV/c1P7lXuMO5OgwF5tvIobfJvsHjUiSG9owWXoE9N4WKeXXXDG2w95rhYKY9GaN2QQg4g - PBTiOY/Df7/3tJJmEN6D48KsCnxydpJxYEyVoOq5F4R/87Uo73cOc/vCk8hP+nY1XdeBdpe4M+ue - fiFxfyaEXy3+EOtjOYNUjXyj2sUsktAWH4BIbGigPGQuoto9TNiwUzMoJt0HO443Jn15TXiV3sMF - Z4+zGlADvBUodDjG0aZ3mNBfLBUvwJu5td+zBSulBg0LG7OYO15LHpfiCwcXJdh240tBetHs4A+P - /NI8FcxZTAgd0AzkXEZ8O+/+8kr91bdeQbsV0jwe1WWhiOhzeDTXXgwt+DLFkgRvT00IeskiTBIV - Y4T8OmGhE4cwE83tDtvebYfz3MrwM90f2PnObssKk/oqfbxnbATFJfjxDaiP8DGrf88wEFiiKlB4 - uNEMNnzi9WPFQ+A/3tgK+L5YucP5CdGfFpOqvc7J2oiQwhS8540v7HZ9bGdyq8lwsZ6Bafj39+Ag - yCQSV8WcTjiMIVEshH96YeODp+KwUccH9+O24p6jFVTv7X1mYk1a+jT8E5i+jUWifVEN7IKsTv39 - fr+9xoV4vMEQbvyHHZIbiSixp6aO5/hBzr8eFVJ6vKpHvrbJ4Y7WYHk0iQXXeQUIbPW/dGPPg0vR - mVhHqGATvTMNDqdiu0/aeOZ3q3eQm9oVV/NstXwtkhVgUof4dumGYnlmfxyEhP9iX/+jwyr3oAP6 - mEozWxRtEM/WIwObPiVBwlntmlpFBnapYhLLuvsJrSS+BNevOpHj0I7DbB2HrVvhX0C8kd8Pa2ol - KXhYVxUJxdtORIn7VjDh3hrBAqrB8h4cHyIl9bAXH6OC3S/2F16uYkmwFAQJjzstU4GLAhyhXZNs - fFJCzrgeiBO7B5MXthPElyG6kvTP1Quh0dkKJwg0bG74SUrjr4Tia/ciXhUfAH1JR6pu9YHtfam0 - Y5oftxNU3TLTD20K5sdKD0/dS8TmLtKT5aURB0Yvq8PoULdg/YS6Bu1iFJFSW36xfv0uA6ZX2DiQ - pHewDGLfwYC6CF8WZAFRP6wOQLxSEATOQbv+SVMJNrzCZ94/MnZDpyeEu/uOePd3W1DxHotQ/7zi - TR8bAbnsaQrPzjNAfH5bzW39yvtb7C3/1s8gpIYM510O54VVNzYfkbBC+pw1HL2beaC+E4xw41vs - toPMRo7TKFTX9E3OKLUGXtgc+wPt0Mw3uW9KVKhlkDlZjdEtDwBLc28GP34xzPxuMkScJzzqM0dQ - Tfxgod99BYy34RGroNPAwDryMNV2Kg7O8J1M98msgVR4Pc4d4Rms6y5x4aankKqPj5byqXUFjSPv - SZUvh0QsozIHx4M/ksOmVwQlSZBiyYDM6v2tF8JHzDv45C4R1hWkB+LXn1NYCJGHPTF6BYt+Wgxo - ZfcE8ZyaFSyy1BoEsTMjFj8lQHf9UVE7LmyI3YgyGJV1zqAXOALJht2tYHu21DB96H9k03ft+hDn - Fd5zTcSuZ0vFimO/hOV1u2N0TfRCktJYBuMB9iTc9F7/yp6lmsXySu7OoLO1DfcjjATXQUAVPoz2 - dYVgX6Tx5g/2JhuGh/+vvn/6oT/Ao6I+rFwloV/GjDVhi8APb20XLgFr9XWFSp3p2OZcvljP+TWE - 6xN9kVzQ7dWhslmVH98YJN0PEybnDpqhPxJjJU27ztpRVrfx/fk1k32HxIdNB29YozsBsOCofeEy - nnbEg8GBsbzhV5j3PiBhYl4Y26v49MM7pISsA2uYPxVYj82KtY/VD+sUGCm8BIE8D5foajKf2jGY - G9si2ri9UqYVuxVcBc4n3hxOAeU4bYWydhkRl9lRyyTvVAI2sA/GkvQy17XWahUfvgYOLpEc0NsE - ZyV68xH2HG4sNj8IIXgFN7Lp14JKf5wPozW/E0855MmPr9Rt/ZDTpjfpAR5l8KquE0F0IMnrHYAa - JNxLw+Y7tgK6O4yduqeRjsgbOybfiOqqjMrNwv5w6wv2FY8diE7pDleybrfSrB1zNQ7/cnw4qPOw - 6av0pxfxRVq4ZKwvZx+mi6Vi/YnQIIW0iEFvHgqMB+EcLL4ThMrjQTMkRWApVtnrOXjfBbcN70/B - d/LePcxiZcWOd90xZpyooUoCy7F2Znaw2h3SwKGXLXKG9s6ksyd+wds8O9g36xdb24etwEPm/uEk - 6+2ASml/VZ3k+5hrt7YSwenK5h9+RmGcFGsVHkb42nqw2caJ/28+vzmvoF2g+sM3dOIROOyS4Z+e - nC7mnwsP8YCxPYfE7C/yxYcNIi2S3sAEjIPVE8pCSwhy5nvC3KJ11BPHD/i2+THBgcEVEp3tZ/7z - UdulMBdf3fzL5q+uLVuTToZPL/DxYb2f2+Xnt7f5RsvxYzGa7M887FRJmiVpqZL5KfkrVF6FhbWH - GbfTQ58ohAeunqWmpcnsvXAKnSx3sQ/fWUsPxbODpqleyMYXxbT5P+V+P+yxFq2Tubpdo8HLgK/Y - HcaYbfP/hCA2xFn4+UMiPGQ1nUeNxN/zvli7rK3g0ZMTnMlTm/z4Tx1qpyLBGzzYGNLvqhwftMLa - eOvAOoi9BW1AM3yI8GVYq4f4hDspu+PD4ioB5T2bgwJX2WTTX8mCb/MImnkxsfHLHywHKFAEFcPm - QaUtpQLN4fw93ZBw5R7BMg6yD+OPyDByPLcY9WMlwuFch9i6Tddkra49D06PmuEAhK9ifRl6DBMd - 94jUnc7IlvfA/asn2D5+DMak/uXse9MuEE9vFvvlA2rhQ4NkzUEfWG4cSpiINCN/x75jS/dormoq - 1gMOXuEJzNeGnCCXhwu6fovaXNdq4sG/evn5kzzCV2XyqycOp89toCFWSygmzw82/06PdrGXECpr - xx1xTHdntoavIQNIiiRsV7HHeL90n+DHD96+MYvVdkAONMnnsZ50ZOP3tVf7aQqJL34SRu1yiWHc - GB62iL6Y5E96QuhcyRNJeSMni3S/pgDspu8M7P0uGf8eUgctcxo3Pce103f4ukDfORX2x+FYLHf9 - vsJzhmusb/5iJZ7wX360OoJrTsa7QPAz8SE+DHETkGe4D9XH7VETLZjvA9Ug7KATKwrGF1kCS3P5 - fuGmL2YqXrxCyq6qAYuGj3COfKOQquij/PgSb3jfkk9d/stTyaHF32D8i4YchJMLcGjTi7k8msIB - fLyb0O4RXMEQ0Uf8zw9bWNCS6bCcoColGYcjWXy366c+I/jM7ua8R9GO0feDyqqyU8/YqA7mIF6e - Oqee5/JMirvi/Q8AAP//pF3LurIwEnwgFnJPWHITEZAgIOIOFBUQkUsSyNPPx/lnObtZnpsHSKe6 - qjp0A1q/HVmT6X1C+gOvCXvkRfZP38Ypzi3x8y5l2FSyhR5/+XX0YApNBqRZdITOXw9Lcf+Xfwv4 - zcYpRsEKTio6YspM3xIM56r+079Iff0auuzuLswuOwG/WaUw6i6/Cv7x5XhfBQ25ztcQ/oC3D2ld - TD4+Ib7SHHbJkL3FL8nbYwV3zyolbntdAZNjLvjHL3PurDa0f2UBzLZJNadbw/s0LA1V0z3XQY7n - 2eV6An0A9mf3Q441fI+snqOXdr6GQShA/8hYmQcpCON9GgIUe4BeybEAvzzlSHRaT9bidkMNTneB - EvvkLCWxvnEATx+nI6derZOF/63rHz8lx0eL/fV1vXtAzNKInJMOJctztmooPRSEAj4R/V+VvzM4 - Hbgei7jX2OYHDjCpZB+FwcG3/vxzeLRiH/lD2yXjdFEj8DzuMoKqOk14I15qzQzyKznd5bVcYpWa - sC+zaNOTQSk+mlsM1Fdq4C1fj7MHAvwvXyBj1/vLskv6Pz1BbPX6TXjZRZFKDuhL7DUjyfiWXQ6a - QXFFx9rTfBY4eQA2fkSKW3ECy8NsK9jK0g7p+f3XkOd134NfX1QkcG9gXFH4peDSyDbxxpubkLhV - Xfi1rk7Iwu/Jkg7lxVbQIbmS7fOt5TPFItj8YFSIvwRQ1H568DutE9r8NYtdFZrB83JjGJ6dOVl0 - +DcXWwQhPTksIUX4amGDm5wYPerGRew7G7a/YEAu+1YWTZQHD1SPxcg2KLCWFMUx1NPLHALu3Yws - yzUdPqWMEPP6+Ppr0lwhjDlxJKfe1QAJ1b0ORQpN4ujBm/H22rvwt0KKbGE8jeKm3+C238gxTutm - 2eoX4BtGJqlcJ/EZFgoZ4NhqiWc7gsWkfnagvsuOeOn5R0Od2OUhZ5MGmbUhs/XP3zJEcETeyx4S - tvwuFDzW/ErQJ6BgnY9kgLIf9cgRfwLDSXPl4PO5V5AbvPRS3D3iSlMGsmJRS+JyFZ4Gr73sREOm - lqSJoFT+dk63OuEdkp6AXRU5g69VN1DOnYtm8UGBIWfPTQgRb//x1xDeTitP0DV5seXPf39Nr5Xc - VMZbY5cN8E8vosPvNDEKV5jC+l4ckNnuuxKD6ub++bfE2O6XbH4aPLwmQh6/p5KQcyhEcIs/vDzf - 93GyO2TC9ze0Qy65//zp42MT7nH1IJY5Htjykc6x9ud3NXPYAQKqvP/jFyhcrj/r++dPoPv6IQZp - 23FVmKqruU4PyLqdj434rrceTF0F8BlK+0b8jUkP08XRtvg6lZPnWPjf9ev3hzEuh/030Jx8brd4 - fVh/9QhYPS8t2W/5u6kyqYdv5aP/80sXma0vZUZyHE6jfvGn4oQKoNf6GVXvsgEEak2sHXrVxn96 - nWX2S9TAnOHNj/mMSzHDAE7f8RHK1Y36m38gwm2/IJ1PeZ88r6dBSZxfhnlOE5NF4moO+pq15Q/R - AALHDFGj7aQjqwx5a6t3tWD7f+jYq3Yp2c6kAkn/Xolr2LtyNGNZhx/uUCPvlzGLneg7ls3bFBGn - WJuEsh+I/vwXvLRqX66MrzE8k81f3PjBEn4UHtqMn5D7I04ymd9kgnEG38jim4+/fn1gQvOrH9Eh - /vrWcojdDO7ueA4X3mMMj+OvV7lvPYTqNC4l2zurCtqE3ENpjEyLbfUd4MU/gej7PUhYgi/yX3wQ - JzVh8g3AedLSqn9t/Kdma1J4AdwpP4D05/JtFiNWdJAYp54c6iZKaKkYrhYdimso6oEB/uqT8E1M - /KfnLTEsVlXzLP2FHq0yJGsrmSv87Tkz1HrVLP/8N3CL/GXL57eRhuVRhbu0ycP5daIjDcAvVOe7 - 9MK7SzQ2DCRxoMp59yZH8bTf/OQ3hVu9i9haV4DZK5459LSkIyd6vLClNsAKp+tXI6FHpHIK22cP - 5ELRsNrNeMSv4DJBp3z6CGnH0JK8SB0gvtYr8hQu9v/h86YH8cWM+Wbzgx0oVybCbGba9nzM8I/P - IMc9EIu9gkcAXxzAyBYhl1DhmEBt6k2XWOdoaYgWn17/8tf2PMf1JR/vihW4Ezpt97vKD8GDf/Wm - 1RF6f3K7UYeStp3oHiPdEpZfRjXfXAVy5D3EVvs+RBCdpR+W/+pR+a14QVkjdihwLp/MQfHJoVi5 - KoqU6dAwIfVUkLOgQX7RG77U6dj+V7872uBqCWG0nZA2sfavHr3VN+9w4zd4SeNf8lcf+lfvOJ3r - u/+GX62ACPJ7Um34siDyaKFvUgGlxS32WZp/dXDXXEa2enSypui2QsGwZ/KnL9bh1QSaVPo9rqme - jOz0qXnQh/oVZe4BWVNretE//zRQr02yDryUw40v4++mH6kNNFW9du4FnUjjjILy82xA7eGFjpm6 - jET4LVSD88FC9t63/Y2fZLDL0pw8s+/Xp+f9W9fc19NGjh4YTPKAP8HpZIzEjHgTSPfGXLUZKvo2 - xcBohsOy9Sza2RnSzXsGxNvt9oKKFSTh2xo8azpEnQf529EkYbF8y9X6Fv/XiQKB/99HCm5v6xxO - 5lg00/G1YHDUb2EIqzlMhP3r6UE9SM7EczBtGJ57ERxz+YtO/NFnvIRzT7vVsU+sXbcv8cmoJnCr - Ix+Fas2zRThdckjdwUKGc9csyrUCr9pS5SCjvVN/bWfjtbXZaImVg/e4jFfZhed8RihQy2QkL2JT - CKzXGV1NIPsLjHIPjtrpQK634QHWUrvLcDNcibWLRbCsJVHVXXu5IMOh4zj7ZzvUrMIAeFFOWTPH - HsJQmNcSoeC+lhQrX1WLJpBiTUdgO7RdqxrjZIfsW/4H6OcdDCBouBMp38dt0OVxKODf59uzHYH+ - 0+mxhkJ9h9WGWIC9YcbD5GVzqHwnNpBEq8u00te+xGA33NDTMNfq06o+JMC/qaEhZIEmRR1B/v68 - WKyKPR64/ftM8vpn+ezSQl0r24dBHufqAITivmawG8sI2evp0KwFNUXN3wan3X98W87jJU6B+BJF - nONDOYr4E3Sw/tCBXEVd99nInT0IF3ZE9vllMv5rmREcT88QHd77Ollh0/dQOqYIZf5FLNljbUxt - vFx9ZHZeb62qrctafLQ/6AjVHjC+pI7mTW2FUNa6YyeuoNNo9euJDqvK5+NjIMPanQWiIz0eBd78 - eVriIiOEB64fl1SXRXD35xfxBB+My5Xqdy26WDmWRstI+MDfrxoy2xI9vnY28igYPWiVkUAiccgs - qQxRD01q58jcXq4V+mbiQbaz3yTHpfffn2fjqpOblX3BpF23ts+7zCf7EwiApNlWpOnfByGJkF7B - 4gjeAPAhUfE6Hg+jeLVuOiTbIU/j8VwSfHJlT13APUNu7WslXbTR0QqBM5FZnn4Jz5O8hU8WVOQ+ - XCprqdcdhd/SP4ZcaP0svJVHIGCRh+70kY6LKb9ULfVlmdyg6gLRO8odhMXrR9LgbSX0u+9t+EDl - NRw1/50s31zuoGn9dHKORcOiyUMutKHdCVhbRa3p1dIzIfdWc2IukFjTnQmiVle1h1UH0xHbzY6q - UlvPyOlfb2vJd3IK7ToJkeeKB0tKL4ELXmIkk1KPz42gGzsRekTdIZcVx5HRu/yCMnjvUUC/I1jF - lbWQaWOAOfhK/fX9C1O4ey4KOSRTNUrL9Cq0IYQIxVn4A8v6al7aPO3v6Dhxw8jzw52DtXLwiWO8 - cbMMesfD3MFXdGneYKSPaMfDi7qc0D6kF5/PP2EB+WEyQnC+Oo0ofH41vIPHDYVHoo6Llnet9mWG - g8KKR6MYJm2htTox0L59leV2Pzz8Hk4+CW30TrB3pC08tFKxrecjoUkOVxiGcoOK3ePoU2/8QBjl - WoaViU9KXhrVDOBXvqDTemmYeI/1SvP4e4nip6wmUxK6NWzC2CLp+274wtoYmbZ/ZiaWa19LtufV - aX0l6WFDfx1Yrj3R1abzdBRakdEIN9THoK/pDplv322wXf4yTfnCB7ouht5QdNjaYg7YCNdOp0Ba - YRRrRgIOIQByYgnBi3e0Z27qWxs4hZEveWN4CXcxyrL4Yq1DvnKQ/Q4LCqrbDlB7B2t47+mFFL/Z - 8sV2aCYtkdsrSU5cDVZTabBmC9+tLbSx9RsPnEDbfVqEUu74ARPcVzZI2zxG6VsrAO2jNIXJ4dOS - U72/+stPzlMYiOOZnPyg8NdiPAQa2KU+eQZUZ5TOIITRr2P/8JNHQeNpvbh/kRLgkknSBZqQuNGM - zyfJGAVpEjxt0toH8XsnSCTpwuvKs5htch0Uz187z6/VnlQPZL6NJdniR4QZgntyW9w3W4KqiqCj - Rjd0SEQBMOnCm/ASn3nc6ZOTiNl0GCD1yIC83fdVSt7DcODJ+yBynUzDGj6StgLpEZ+Qda3uPonc - 9QXflcuj9Bu5TJj41VbgIXBJXFrbIMhkl4J7v16Iq+Q9wxmeK+iTQSb7m+T7zLntZbDhHdGLQ98s - 1p7p2pZvka0fnslaawuvBZ6UkZAo7cik/MxrnNwU4RKLb39x1laEZ0f3SX7NL0BSVo2Dz2vR4N8g - pj5va9UEnepe4eq2+ybUBw8eHql/wEC/u4Ap0tJpqb+dT1qUm0VjLmrVv3yzp13E+mNVquoYSAvR - n47rC0BxVi3sjhbyx3MDmD3ddfDg3izsvu938jP7Rdd2skrDRbmeAN9H9wzGN2wir+pOFv3bH0vS - FuhW2rM/R6R5adTnWrwznknzD68XlVfIw9/anr2HXwaRwXHEyIefvzIGdbieHxCdDWAlAnps9zOJ - H3R4OTVYVfgtwHTZ2+QyrD37vfKk1w6dnaJYsz6+kOoy/4fH//anSHj+ru1OtoCuqXAZt/jHcItn - kqSPkonGD4ggu+zGUEoFYaR1fXKUwTfPITl/jr64F/fVHz8hz2vTW/Nn2WVwXxsH4uajbdEv53SQ - sKePDh+alHTHfybNY+iN3PYIR5qURQejSUlRWqbeuJx3SQ6XTgXIVcKlWeU4ycFn2l5SQC5m9Nkb - Hqz0wkfG9nyFbwI5UH/WAZmdoPhtm6gt7KbBI+Xf/lCEZNU8ktTkxJ1ri5IbmqBzBBb5w5f1eexa - sK0nscvqDSr0UR0lMtMU5TtTSZaNT8Am0tzwC380mYHiUPh1qz2yhL5Lftf+a/7l9209mpKevygC - azyJoYJix+cHAh3IPTJI9A+RE6btUKdiS7thTXHHkql7f4IdbY8kESri04sWuVo2vJ0Q74QarB9J - oDColpQEP94uNz7TwlqZeuTuzFtCrCJM//YTsoMTz6ZfXetwPD1C5Og1sshNNGKNe8Ab8q5PyVor - bo1A2mySJ1qf43pJj5mmXqQdCQd17wvttQzAknQFQngbtHtc2hxmo9uQ+O27Iysvb1urjxzB85y1 - 5WpM514bw8nFa2avzYzP0Ia1gvtQzKO0nHcHLgKX3j6SNDilYL29Cgj273JAZnnVG7EYDyGM7zcH - Ob0Jysk2iwL+qlYJC7fOG1ZGcwUH1Z2Jed4zf8Eoi8FJhR8SDTKx1h7IEDpHxSJBNYclxkWeAcvK - FeLGaGexYq8EoPC8A5b/+KQ+iAOcl+iCDOW9twRpoavWnLsPQjieAd2nvQM969mH8zf/+IvbFhkM - 7nZELicQMD5UHwXsWHJCbn69NMtPWF/woesCsfv9kjAui6DWO5pNrvB583kPWyts2uSHfHQ7JExu - HBteL3NL/HHVxnXt3lCDRf3Dat5jf1msXwfHELtkX9XQp9E9MeEEdzourpcdq87xCFWu/d5D/pyN - I5H7I4amHT0wrx+e5eKfgwCsv6scXsJ961N+SDno/qiPqr94Kk+BCE4PQIl3mKk/K2+9godAe6Cz - GogWVhawzXYcTWL4Sl0u512Z/8Ovgx12SS9eHR6ePmzGq717NGvzuPXwmes6yfSpS1Z4PwRwtkWN - hMh0G2H6eCHYtdcL0kX+VK7Kwlyoa5FNkP+Ix+VsLDEUXaiQu3V8lVS8m5VW2dmRWO2tsNYwM0N1 - +33ky6Y30r98ew9gQXSRn0uirAIHm8+rIZfdLbd+Rnp6AXIYI/LHh9dinnXYH9o3upDFTQhoxzvk - M2qhq61cS3FXOhQGUowxc8eU0adQBqB4LR4547ZLGN+1GXgAFIf8xkcF5R6If/gUKmIP/OVRKip8 - 7UGNXJ86Pl9d2F0zd5WKXGfpGsxx9gpPUm8jt00YwOe44cCGH3hFBwaoDOoAVIjOxNjy+9J35qDp - 3ych9/grgxU19whu+QcDz7klDI+WqcH9ZUHOmvYA95Nha5hPCYpCEZTr/S1nUHM4g4RUbsstfnRt - jPWBFL70LVmFZh0KN/4RLr+SjEQ1ZxVeh2hHbgtb2RKtRqaNwTY4vlJeDXtNmIM+H6bE94ovo9xP - qaAoFGesnasvoM3CQ1C/xSkUhtUFi8eJd7h/PEYsNdAvpeNeWuFxrkxMo+OxYen1zcG+fD1JRMUw - 2T4fQiUpTfwhD4XNvO5n8E9PhTeB+muTVyY4wL1C/LOVWxs+bvqXb8k1maqGTu93B96P9zXk7P3g - /9MTUtQSlH+rsVyZ1UB41T4vHIsAN2z4zT28qOz0j/+ysIMqAOswY4nOsTXuqm+hNHAxQypuR5bq - 03uFdfXyUHwPjpZEtHyC2l3rkL4PBrD8Xe/PMyq8Y2Xb9OSGMAhDtSH7Aeq+lHfnQuMLu93sLASW - 8PThwO3dY3L1TOwzPs16oF8KN8xZtJbrkt5jcJ7lQ6h9bXGcNn6qmZbVEJ/Tj424LlUAZmqV6CBM - y7iIj1ME48ego1J31WSyd3ytgctHRmELHV/KG9bCwAE58tjbA0xz3o52XHIDheCq+YsbBz388ytu - RGDN9Pd89dPLR5Yhn8pFLL4VtEx2J871nDbLyx0p1FM6ok3fNGvbn1TIfnOIuZsQ+Ws2HXqomk1F - Tnoz+JiaTge1/XxAp+xxKJeXf+zgxreQfz6hcu356+uPD+Mef94J1XXB1Cy2IuTV1C4pe77wH36E - tICUTbroTpDWn2/ImWsJVmq3BRTLn4asE++PKwc6CI301aKMdymb0r4dILuwiOwvZs1m4/1s1S8b - GqLb17qhCLkc9F6vB3r4L3fknakrgM86iehbfNKbsqiA8/QSHWhTMHYTj7FKym+IjLp3rXViVwcO - IYeI7l2MRsjlSgXySXdIZNl8QgU1EOHZZudwp+wvZf/aWx5cwtsbY4pn61++d86LjtzffWholTwG - uBe7OqQ3bUkYAq9C9axHj67pbmLsdBt4eJ7jAR31y7dZtMcQQk5Z01DOr5dRgovw0ja9gSVrKznd - TmaldtdHjIqmFBKGFK+FV7O0CNJUrRkCsc7h+/3MkHlGXtKHEARQ7/EvBJ12KbG1NSH447sooDoQ - ZaS1ShDpiBwW49WsnKXfoXbfdeHy+LkjL+HI0zZ9jnwvihp27uMYIi6/kL/8TjJDNOGqbi/Zgd+l - mRS/8P7pEzuwHuMEhkUFp4dCiWOMH/Dj1NZTJUkIQwpYACgQOg+u3/gcLnyOk5k8QxccfoWAuU3/ - Tov8vWv2AZ+ITqerte3PFPa1X5MQvlJryy93LXlNJQoa8WMRLOxi+K4dhvafp8rW1L5V8AGrACte - 4ozSwywgOJw6FdnZ0yz5Y8nZsI6+KzKUk9iwKTzagKfzF0V/8URuBwz2TWygw2S+rXUoI6rxE+tD - L+9Da+pYnILyY1fI+zUjoG2ythq4VgiT3pPGTzLtI7jE1xeyM+M+zu/PZ4IrCBH6y3ejXvfhn38X - sit8s8VI9zWU/Jv4zz+gxNd6ta7vR+L50qFkq6JW0LpyKULGz2PSKt0H2O3gSMKLfmA1/tidtn+m - 5tZ0gTbzn/7KvuEHbfhlreVuxbBwlRPyDMUthTHKMNz8OmJnBhxXXOMVqki8IcucL828JucKfl+p - SQ4fykriVMZL2zeRQeItH4+j8nipsixuL/XiXTMfxZf+d/1YMkFusaaJbPB+NFd0OKhS0/4eOIeb - 3kOO88LW4l71GHLu8sY05Ra25Veq5Sa9odRrbJ/nSdRpj7SLSBgZbslEx3a1pTtXeN0/rISH6nvV - ChecUHgMdSZwspPCDGX95t/1DcP9J/j7GvOy3wEqSESH5dl9kdynnT+dhvmlFpW9J5cfOybM0OxM - Kxup3fDtm8yD60bw1Dg/curUXULNB8f9889uunGzep7kHZSjrA9txXNKUXnOFbQOmYQ2PBrJli/g - 7tMhclw0z+fN153CQv45xDs0MniPlyKFd4gTLFHpWLIXsVdtUT475OStCdZJLjCYfsMT8/pn77Nd - M+ow9X4c8lSv9Jk/JC7onesX6R+SJ7RKLgOUo7Qnya2Lmz++o4rHLiMWvcjJ3N4WHabRPSVHzX5Z - 9O/5mpO3vYLH7Up2mJVCSYP6QvYbv9r8OgeQFz2gcxvnjH4qLKrK96rjIl8/CXUDJ4ScIGZY5q59 - stJjb0JmSDEKTOEMqK+fX2B33l7JMMY943Xu6f3zt5y8GJvfwVY7ENGTuPFvYWTe5/n640fkOEyQ - YXhH4V98EHtRFJ9l/CgLG58IlU0/SlzCPFChdSaWKwQWw4IUAymwEuQ+hmZk1+xXg+ZTNyTAzALr - /Q4xxLOD/vkdy+N2t8FOeZ02fq/4rFcvnGqtzQXv/OXtU+26NZ452QLZ8CLhBYmY6ubPkhgdEsaO - +x0Ff/n4j//iy7vM4edKbuj0cK4Nrb/6BLC1u4WtKMvNsr7G+g+fcP+7e82vVm8BbH9hQRxn+JTk - 3McR1B4fi+zDfWutJjReKm8rEwoPC0hm9AQD1H+p8+eH+otxM1wY5Vdl01OJz7gsh8B2nglGzmqM - 0uk2iOrQiQEGdz1j/KlHE9z4R6jukgXQdBsLvOEfFv1fyza/6QU/NGCk+NMvfdOK4Ne4F3SMDuE4 - acWxg/OcZXiH3ayZh/1wB9617JCx6Y0l5QoORsa+QE7Qt836O/qOuuVTvOPyplzokojqJ1lKTFH6 - 9pcw/rVgUKmHKpcCf432Z1Wb9PePBFeKxrVLdxTYIgpQIHR+IuF+DkELQIXV5jON61DmK4iyKEbR - S6XW5ndS8Cz2XyycwATW+5um8LzbYeLWzxHMjWd42tvdQeJcD49yPN3dHjby6RvuzuSVLGZXBrB+ - 8xNeNj357+stf4RUHDJ/mb69Cd+1zUhaVm/2tz6Qe0eA7CPLKmmV32JI3d5C1efxZPTAQQe+K48P - hQG+rH/616mqKpTz0fbnYqrDPzxCSdssySrHZQ4v32o7UhabI/+k107e+ElIRX5OtnhbgcdEDovf - U8yWjZ/ATT8S3fOHkuj1K/zTH2Gzu2OLpDFOoQIiLhT+9G7sDxhGv5bhnfEbGKs3irCvh5Ychm3s - hjSu2V+8oz89yeCivQDKXjeU1ofYmgdXj7U/vPvz637o8RCV5OVwWFU94OPf0bfhr/EuyO/ck48r - hRugTbojsv26GZmtYFvisVmjP/62SKTg4FbPQoH68YAU2LsMnvcFRiY6j1YvqDYP+cJp8QqJONLk - QXNQ3CWfnB6FY/39Pdj8RHTitjGwY90W8ABJFiriuibUEvRIO8ReForK+TAucriuWtLcnuRsLJPP - mI0pfAljiRfn/rAWAKZOjbAX/tX3/PUDlQIsyneHwnbFDPf88wU+PZdgPruMPn4MzgrYZYnIUd6/ - xjU1WA/+9OhBqNUSZxMa/vQp8dgJJit8b/Wwn4e39a0b+tXbCsBZ8DZ9pjf4ecQtuPTOER3f5pQs - qU5FePjcJaIDNoEtviLluX6NcLleVUAXcIrg/fmr0L7ZGQm/8VHtAOcMnfl630ixbHra+/3I0Mm5 - LoB4+b5Sdi23Igu/abl09smB6/kJQzrIxF/r02+F0GlHPMVLZDFX+8XgkXCMbPUKa938dBgT8sXd - /HyNdEUyD9WrrRBDzeZk/atfzLtSI4FAzZFf6FnXmjg0/8XDEq3HFJrXlkPlvnQT/vhSMMy+wWd7 - vltTmH3vwPLsvUK4w+/mn3/iatORWHg8jJ9aPYeaLd0dpE/1ji0bX4RwPs3oQKVjIoUjff3V8zBs - ppn9YBS5Wi9OGvJOb9knG3+Az+z4Q04dJuUiqYcQCjfx8een+fP0MQNNSW4myuan3rR3Men/+Dzx - +OHN1g3fwSNcVKRf4lfCvK+WgZ8f5QgpN4vRm40DtY4+Kzp6R1QunrV6cLxwPXKv25hVu3u0UDqH - AXEee9isjvXs4P05VuToJd0//vmn38jzTPREVI3GgSfQmqhqGPJpzosx3PgnCYV5GtlfvY/w0x6d - t3r00APKQe41ViH1Lu+GJSZX/fnNmJJZSqhzF1/azf4oIe81rcXeRvyCedFfULamPVtz/3v/qyfi - 7ntaGUsOqi3/4a/dQbWccim14b0Vr2hv8hkQdPsy/PMX/SA/+LSPVReq1ylDSb4M5VJMf3rGlUhS - fVZ/2fQavN3o8q9+vOmhXNNBOeOleUQlcyqj1uCad+SUJZHPbqy5gz98xpA3R2njO5q6Nd31Xzsx - 2a63gvfk+yAmKs1kBeeCA//PkQLhfx8pGCywJ65bvho6sbgA+6/jkWB47S1RnZQQBnsUk2Pk5Mmi - 7EYV6qy5hJDDViJMH7HTxKnFJJQKBfSX+AOBTLbILQ8Gk66yLwONVNtbV4erxZ+XPII0fR2Rm+7w - OLsnQKFwvJRY/p0mMAWX8wtu/x/D5wqs+SDcXzBrvw7y9vM8UjGWV0gI/yEXKaIjm1FB4cksLBII - dVau44JMcMvOX6RPhIzsB5UO7r+2R/bs3LL1CAwT8jqkKAmrOcHfPu80lRykMFouncW+Bb9qF2ut - kJP3bKSpmqxwHs5HcjW7gK3qPq9gVByEEET3p7+ou0qE0jmKkdGuu5FpjWcCa7z8UKQpqS9O9b7S - ENYNcj0ETbI8yqsK2aIbyJRxnFCVT+6QinyMwueJMPq8zY5SnG2OlN7lCWi8+IEWW3dIyh0U/MVc - TR28wHNCB8Hlk9VZaKVR0yNEZ2sKWh1cbZDkhhbuNHQaJffimNryO3jEyfx2pL2SV7A8Pn7IPesm - E6pWq1VuiIyQ6yKhnPSES0HtnFbkVW+z5GVr8OD7ITnI2Dd2sq6fJ4TOQneY+UUyrnmKQmjfM5sc - j/bXYm4lY22lnkv20eUOJFWCLRzueUwcU85LUTRGUfPv7BKKy90t6bvWehjuqjPmzAKV0uFS2pDb - PyBW+eiYCNc8rjT+a8UoDC2/5Fd0C+GXyxVy/uWZxaKxpPA+TTDUVv8O+N+rDeFuevbEXLuKrd6o - 5vAePTLydA5kJM+OytAW94T4/cUA/PM22/CGxT2Ja2tv0SP7TfAQ6h90CJELeKhNOmweqJp/R2sF - 2GhxAO5ZXxBDbC1fmr8Kp90wv0fVl3UJv8wogiUOHqQwB9cSNCtqtTGlXMg770dJu2uP4TuBKoq9 - 1SglUVMHqI45IdE3dICUalAF/S+MSDBpqUVOR8WBjKcFQpYlMJYEYg2Xu9CQpxi4PjXDuNCqp8ph - 9j6qIzYv00ahpxtWiX231ttjUbXB02Vy37tmOQa6k8O+eHMo8H4DmJS7kWpYyn8ouzpZI/JyEsJM - xQoxukvUSPR4xzCKIhUZtp6UY329BHD0oInirPhZbZN8Tag+gxt5js81YX3xnWD12b2x4nUWkBxf - q+AhND9If7ZZs7S38gXv2VDgHzNfpTB2fq8Kl69JwmCzBKqeTUCE7wc6X/sC0LNu81B1RoAOXGqU - ErgtlVZZvxztPcFN+KnYStKv0w/tU8BKJmZnWXPj7xe/+4ftC3p0CqH1fj5CcW+8fGHHH1X1FtzH - 8Okiy2/ftTZA8SCpyNsluKFmt3Tam/oRQmc6NlNmTTmMsmLGkDvkIx8vVgiXXaghyy+ShvehGoNh - uhp4N38/gDaPG4arf0tIBppDKTw+XgcFf3XwGiSDtcYRj7V7ca1xP7OmpM3kBKD8jDssfi8/ax08 - twAwv3Ohsj2fhf7GUNvWE1XF91bSw3B2ofTN+BDglY7CI2gKLUkzAekoyxPplM8drPGIiaHoD/aH - 53Db/+iuugEYtLDkoDCOLTpInVSyUXI7SHYsJd7lIpTLt37qUPSiD6mcG/DZKf902myH35Dp17DE - XBjKkLpxjWzW0ITR45uC92Ddkb5cOp9lEQ0gWkYF0/x9LnE3f+8wHbM3ht7PA0JjGLlWp6pNzsrX - bTCYWk+zj3AgDqdnJcvkiNN+z9ObxP3zyST8bWW1fdUW5vV9DVgJaK0tgcoT+zqJ1qJ8Ayx9+62D - jZOl1vLU7hjeONKgA1r2jZgYzFPRVQ6Jf58+7JG/ZQdMt1sUdqD5luyemlgDoiuQ5BW6Df9zT+a/ - +/FDvS2F2dVrzVC7mBSXi5DgOjiLcDW6HPlWrJaznSy8dg8PAO1/x6WhCeVcSG7UIg9XqMeVflYH - VvCQhqqB34ye88XRHImzyCm/Zz6VrdoD7XfXkr211uwfvob2dwjTgcPbt9QW4ovzIpYL6bjcVC+A - h4PwJhZ/d8CSikMPMjPSSApO+ig4D7PQ9EdtYdlCSSl9zUsL5dt3wrDkrUZsgoDCt6375CjuP2B5 - P4Ma9kXDYfDoJ3+u+8GFu3iY8XdqVp9erOUOqfouwpd/DUZxWFJHI8bp828/LjwMUuhYCBE9kC/l - KF92FO5fihPKGF9KoX/onlZ8jy8sFA9qMQ78QnhRFoIulp9bxJ0/gSa9TwbyL6bQLIUiuNod/kZy - Fdw0+YdfWV7Q7X0R05f4k5Fqj0rj0aUx40RYi/t2hMuNUaoNaKQ+O7Tw83Ev5JzNPaBqsE6aMjw+ - KFmTp8/bO2uCfcc+ZMPrcuUPB6r5sjai9C++oLEPwI6HInl6TplI8SkfoIAdhLUMnEpxyHkZVHIe - kK2Vzshj/1nDpE1agrLMtKa9+ytgGswvrG58h3A15ODVCg/oQtkbTBc1nGBxDRZ0cPGrpBdLqeAt - OvIos3huXMbO6rXvkWRYg4rDhLJUdegLcROqNzCyVW3CGk5WinH7kpDPc7Lr/ONHG76OaxKRHuap - o5MbM/VE/FYfVZPOcYzFV2yBn9m493/rdWTamjCMTpOifdqK+CPOADu0qINPTa/QfTJO7G/9tQ0v - wq87Bz7128SGZqMjVLU4H4ff7chtXWt49GTHelwu4qOD6zzfEYr4fSk27cjBv/y0qhGxaJhKOUyM - XUmsevJH1vsggNps7Ujo1iYQ4obk8DzscKhs8bnxm/tf/scwCWd/Ka2YhzcnlZG7v3YMJwZwoZmt - PXItxEo8LkgHoUcxsgJwT5jXG7GmN12HHKKOCV2qmAK+WEZiIEseJ6/tPe3ZySO5Txrvr279E5XX - HcCQlSbYJvndc5intk4ypkj+erjZgdbtLYb5jBKw7G0aaUbsZWhPmcGW7fpBYhcOsr9qWk6H8wLh - 5SafCQqnBSzhb76DyN4svHcDm+V4PReaeslOKLwfxXLB2ZeD1uV8+OPjI4ksZsK//LDsG7tc0v01 - hKP7vpLntP9Za+ckFAq8t5JDMEkAQ5tL5bOELsS8ZiSZlvkQwR/jMnxN6Lnc8jOGljZb6LLh1erf - qajBQcyR12oPn7qmXMD8O0vkCPQrWJAhDdC+KTdyk+uUrd1Mqn/4H9Qiz7A6KYGyvp8iMQ/40NAZ - Ul1LJtEkkbl6pUR2Ox18ApyjU9dcLDLr50CzdaciwclRANUOxqSN4c9D7u2z9/lULSnID+KNoAq0 - JaumlIc77/jEYwiyZNnxhgo4g/IovFPDou9aGOCiGMq2XmW5XpuHCLu9wQhK4r5cTj+1hlnaX1Fc - wj3g//j8NZM4Yh3ljNHr3e/gz9QAyi7tjdHu+prgs5guJP08PiM9nq88hPj9CiX+VJer5TS21jSX - OASLIFqLeXtQdcvn5Oh1DWPleuJB/iUShin1LHE6dlu3/ZuOkP5Zwbp+rhAGDTOJDQ/cSL6BHoHd - 9OhJnm9zWPhIrSAx0IeYjp81dPd0VvC3/+14aa0lNG0Muav6/cdvhyWjNRT2fUKq0BqTpXhfOBDV - Q0qOqr2MhLeyHqI38ZC/L2vrfbzecjiaZYts0tqjMAjbZOI6/2L1xS0JFdXbC3xA5JKbo89/8V+A - gcMlMcHqM34RFQ4GD/zEUrNrAFMcLoT6fF9ReJsOJS/GlGrHUxWikx1KDAuGrEKb60/IrgrdX/Ro - H8KMijNxc6svVz1Ibbjl/3ANaQ7ois6hJtqHN7mfp6jc9MQEFfq9kWP4IeO08RltNhaIrKjTwWpL - 77umlpWO8i3f8KFjqnD55Caxlnz26d595xp3lb/keiWa9cW5nEMXCydk4i+zGM5poZWx6ZLnRxMa - eok/nLYqmoXMeTIs4R7QCgLjGRPPR145S2KZgUcZT7hO5alk9JhO8JyCAB3Kwhil8+hMkN/VTwxu - P72UZlSs4NmpY6jML6uhOng6cOf5T7LX54uPP07P/+XXP33sE857rLAdCoSCjW+u5J7eYXOrM7J/ - vC7Nog1KBls140hg2n3DPkrAwfBqXpA578WSPo2TCutqjZBhPr2RhnPVQgsdExLu7MGiqHro6p+e - PLl8mCyI+bbqxp8vcXqpsybrSnW4+5gH4qa7sFnVNOCA0AYWivB5ShZx0iYIfiBEpzVYfHaNto5Y - 2DQw/7ys/neYBwjdnBTEV55dSa1dtGqG2sak2CVhMwFte0NMyn+kuEDd55+e3ELa3mW82/TMevEt - DFPk+dvct+fIvqzkNIl1JbEcXrMYV/MQdqIeokuqG+W//TanxwxVj5FZY/KpV+1yU894HfpDKUgP - YkP/p0N0DVEP8Gyb29wBWwqXZzz6NE1cW1U/MURBFVUJK7ZJtqGu1njtzAjgaaTeP7xy0KNo8O46 - 1eAh3RZkacbPWqar6fzFayic4uuGPxceemF6IFFm1+WiSzMHNr6H5encjeuJe3VwejYWChyLL5nI - Iwgj7+iE3ZvXGwn0zNReJMmQTtjRX4o4LWBd4V3Yqp3A5qrVXmBt5DcKF+Vc9tt6gfQTYtxx37c1 - WQJ2ZHEdz1s+TMpZDuf6337Ib5+PtYrGyIOPLD2IL8tls546o9A2/olcTjsA8Y+v/+lhJzkMbJnI - L4bLpzCRp/ig/J1eBxHaENUoSOlgTc/1lkGlqMVNv5OEbvsfFE2Vk72DFkah1ppgxwkmQq/7bI3B - 9+tCXeD08FsWRiMNF4tqG96icsNTGu41cZsUvQtrYcgbhnO5gH9/n09np5Hwd5LhTf5SpMu534hf - pOTy5lfgPz9BOvNLrtXB5RPSI1+OuNUsD6Ky/6L73q23I8b3F0yftkrQ9Zz6U5N8dVg80jYUxW3y - MgslG/7FD9gZjc9sJqcwXW42sgtSjn98El6MCyNG/7At6SPvZGjatxALw/4KBOM2iJAzVp7YwS9i - 88jVIvRM541lYSnAN/h+PZBVdYOOzHwla6NF4d9+D/GinJPesHkKlVc/EJ2wnz+oqQ1BPqsA/fFf - +qdX88Gt0f7VkmQCWZ7CaP1aWN3wicpx1msXGBaYJbsLoyLteCgj3iBVGbYWffx0qnn89RZmdiEk - S7p/htDUJ4cc4pBvqKTaFVQqxIXzxnel3yUSwa3/GejihdpIW0GWIUm6HTp09xisUmHp6k3+UJR/ - QsNaApm3//Y/Mv/0bnAfKYyPHQnB6aY0+HXWKNB/+Lat3ziuvJwEmu9MLGxXI2mWOFXlf3gWFOe4 - WaND68JneMfhFTuNxRTZGOAcVSE6wLVt6LLHtYrK4Yu58+FjjarEd8of/90/3kfwj//NQ3JEbnTL - Lel9HWJ4/Z1yYtbc1V+qzDC133XVQ3ieaPLHT7X3K3ijo6PP5Xz9Ohys80+ALFezAf/ymhou0ec/ - AAAA//+kXUm3ojwT/kEsRBASlkwiMiQIiLgDBwREZEiA/Prv4O3lu/uWfU737UuoqmeoUKVQ7IyW - u+1uRAcbnhPWESpcT4FIS7D6fdiab220fB7vnYK29Z6eu0Hvl49lDTBolwMZfvVmMXaL/PMHKDjI - xurvFJCE/RY7t82+Gu5aoSrGqyD4MB/tfkynoYHlbGVE7JV1b4vHB3/+TUyUK+B/+OhJ8pbu9aBx - 6TQpN9hEZI+EI1DYfPN2Dygqtw9+XIdDtFVC34TV97nH9nBqqtXf3QFp2AUYX6+ffrr4ugqrKK1o - uDQc6GlaxeC8ASXVttpiTNwzEpS2Mu/4/lK4auhOXQtXfU6WlQ+KfhmESl/Tke7zjcfYqF49IGQ4 - Rj//adk5fAbDZ3/C2DrQajkRUYBKsrlTa81nntupppK/vxu6X/XiIi6lB83A8IloHrY942+6rDzX - Ky1Ytw32/URlCYRyKKnubxswMdWp4RSXR7Rf6zOjm40OFEBOqIl1xSVpfPB+/Jruz+K1//MveCkb - 6OEu3KKpRqkN63xUqEOOjrHqUwdyXahRbdyoQIg1YoIrN1bUDB0pH5bPLoXvpIqxeTvtKnp51gSO - sr9D7+24qab8uUPwyu9aBMkzYFMs5wsg3ifER1179d/CkjPQwWii/nHiqwmJxxCmF2ZTZ8XPnz7e - 4f6TYO0jjvnkj30Lz9DL6O3JcL6EuooUUXl8KNpsoDvMj2wCb13wkOi61BAUlEPQlYVFz4eZVOOG - 13bSJ0T1P/7200fNRs6oz+VVteyWuwOHWfSxmmz4n5/zkFf+SI9jYfTCqpdk3uEh9Tz3A6Y4BCrc - owYS+Xlvq2X1m8CHL0aaOGVb0RXvwPEQOdi/cyFY6nOXwmJuZ/x4n6to+PlhPt8BVMnStpots0cw - cxSHGrZSs7G6tjXMX5xIj4eyc5eh39lw+4E3ipfywiZkrVPCbNnBevV+sXkLNiFwhMXEZp5Y+ap3 - eDiDR001uSJgbqP7qse0iNpiJPaTB0cPlOHzSsCjehh8ObQxPNnfN6K7r+hOTl3YcPvMlT/9PDnZ - 9gaPUTHTS5VKLvvCuYbN5fZAHL3p0Xy1hQVqXNxjxHLksp8fPiKLYSRVWiVq0jeB7hOpv/5BNStG - 0MAHFUfS7rZ8z5qvkAAoswNa9kHdzyt/BzMNED4d9prLxyHQoS3GOY1rIQPk53frTqVhNX3N0TJG - hvzzaxHZqVM//s5T8e3XH59bkH+34QV0xo9P9kvspgu4cgtP/fN1qliTa4IybD8NPZyismr6Miyg - 6jpf7Fjtpif4IHlQb8YLPtyAE71RNkHF5qWJfN3XFiyTvxdg28xvevMtiS2YQzdp9uCeOvvR75ev - 2i3wvvccfDEP54oCLQz/1dfAz6rVb7B++LzGux8x27qWMJNKGRtmIhszPZ1MZRnpbe0/HFzh1igp - 8JODizb26phv950O7udDS5FSjtE87S4ESvF6pdDGlUG5mSuBRfMavZcuc6fuVLaKP7gj4sLv+lUw - Li2oasEdyfb8yT+XoHeAsU9SqrnmAOYwXmRgvfgA2+v7Gkpw4wG3f0JsrfW2NdA+UbA4D2j51H41 - lRE0d309jj89BYaUU1PluBVk7B4zH0x9boeQXhcD6z66uWz17+R9AC9EvqUyWzLUh1By6gO+H6J9 - L/z0+PcyqTh/Oi2bA9gOohBcbLIr2q7/+Yng1//KR6GL2pWvgSk8PLBbHfl16osU/uINH4zXg83W - 3UnhHOktEe/CLZ9cuKz/X3Ogt4f4dd/hXoqhJFCP+i8tjdZ+xgBupawhfra0f/746j/jg9Dvow6i - rwo+eHvE+5G27vRykgfQPL2kbt3dc2bmngVIjyIkW+2zn1JOzRS9oReyXf0UQbxuOSBftTNFndCz - edKdm9wNZ+2vfgwEdhxQ5nWKdi1kjBm6xMHlPo1ECeGrH8J0UKFxNAoEjwfkisr1GcMzhQzvgzNk - y91eQuWn/6P8axk8f2wRTGuVYmPLVdUwCzMHn4FwxHsprd1pFz7WK4lyhj3RZO6KDw58c5sA9Vkd - RgviovLXD6S3lmuj3i/TAAbDE5M2uO5cao+jB328uRC5bbWKR7GYwajLLxSN8r7nhYnwsNTLDkkX - 58SI6t1MWJP9BYdBeGb89pg78BLZAkbhVwPzsfFlMAlCSD5x0hoj+r4fsO+2Bdr2H74iX/wMYV8o - Mfa64m2wWIE7yH+0EGPBsw1+rV/KEXAj9V/Ko1r7lypc6zXpFnsLlm0wpkAYGoJtelbdOXDvIcwu - aMZIzK4/fssr/Ri4+HSfUDQaJUuV+HU70+dmDCrmqm3x45NEwHe5J5uNH/7qPwL7vHSH7iBy4ADr - Mz6l6FSxZJdCADbKhA/m4dwvSfyNYc0fZXqwiRptf3xV7jO6+td7xv/8xB+eJfF6F7v5CjEI2umA - z5drEhGWPFJZ7A8+tQ7Pyp2PfjMott7u/urf2EbnB1z9ZLSrP0nEXs1jgaeXw6gp9RVbzMfWU55S - uEfCY7LYnBsZD0RpQDhehwbOijQK0q/fc3zwuiEeRZ2He/t5xCv/B4sxCgu4pkOI3Q91XfGq3Qog - IllEnJhdwdTtuBjCSQbYh1Kz+hnfB9TK/Z4+u7rIWfPlYgC0e0iU94ew2RxOqrLyY+q86w9Y9TiB - hw6B1Z/o8um9rQTIncYK+7toyueXOE3KxTcjInBqEi0QvXRYgPtADUU7Gv0BkkX+f64UCP99pSBQ - O5m639BifKN/YvniFiZ2RVmvtuSWEujhdXXXQ9XY+H4qDtzZd0BV/bGJlleghRDPeUNEWsVsLqwu - hbaELNK/c2ow3gExrK5zhrWTKxiTqN9aAE4Dora53rqWh6hWwiCOKTascl29vKthAOwv1XjFzIcd - 97KhX8MUn0i470VR9BL55ZcX6n0zM+cP8taEul9jej6Ed7bUMAuhcNh2+NB/s7zVX2UCbVS6VHNO - 32o5eqdSkS/LBu1oi/uZe84PxT1bDJvXuGBdd1I55bgBNlafPZ+zYLAzkAuySjNb0aPFlSIP8MnW - QJUB3Xz4jgkHqFwGRB6cPJ/3qQMhts5nnNvxs99Gk5tAaCszjSwpq2Yz51IpHKqG8PAhGrPyRgEE - ekixxQwtX8i312Ebpx3Nv56WbyV7NymvdmI0wfo+36bmokIv/3SEl/IymqYNK5UU2mcabW+jOxZW - l8EMTs16qzgH2/cjX6BCzg223AzkdPf+POC1EQKMmv3OYL5+vMHl4H4RX7hO1d8Obg0eZLNBSika - Lo/BOtpIe1mklQO3n8aoLJSciRu8/1w3+cxEU4Avv7jgA0NatZAuIspNLxYaPrnQ5S/cnYeBPEV4 - f303/bY45Jai+s7x7/yWNFRUuN/kIQH7S5Cz7t7V0DD7Fh+pdI62VvJqlD4/f/ApFXQgoqkuoQhb - jt43prOenxXAw/74wHZ0rlxBc08CPB0ukMhsebujdZ52ikKOOT3NOAbDh2M8THUVEuVY2xX7LMtO - aYvrQk8nlDLWCE0MEW5DnJqT44r6+ZUqSM025PvWXTYd5K0F7mJiUeP0gS4ryO6hWKhtcM6RbyXU - 4FtD3Z8ymmaexwRT0G7KqNoQm7csjZb5bGTw0+33OLmOtSvmx3sH01MQ0Jwp+3zb7Z4I/PLrCb67 - fBANQYc35aPjgyKpkXiZHAEGz0Gn2deswGCiwYJNBGtsGBtiEFSzBl6aqSDFs+ejPhjUTGnMak82 - VdBEU/gGE/TPAJMWv4hBdHmsoRYFPc4e170hmpq2KFd2legt1xJjm6QtB/ebz50ArcrzJamvspzA - YMIHHLkuOxuzoODk6NDYAWE1F1aZwuldv2j8cW/58vj0HVSUef/Lh4psOk1VMrJn2B3Oeb89324Z - sCQ7oVfubEWCVQEZMO1k4KQ+q+72Kjx5UIY7H2fJnLvL61Suq0sDDu/PvWeIg7cnijT2b8QN0tNl - y32uFfmycbB52m7cRfUrWXmEukYYeryAwHPX9ZbtzafmiV6rRY5mXbksnzs+1JVhsOraOlDfBQ6+ - bw4DWzrjWUCg93t0iQ6Fy9vbNgDzsE8x7g6TsUjp3YZUzURCHZX0ywCmRnm1dUtzO970C+kVC9po - SLCGXNPYNvfKgt30HbE3nYjb343U3oHQqlHTP2Rj6t87C2Z6KOK/emhN5zW/4wLnwzmvWCNedHD3 - +IQGzfUMBF5pOajokkpG3i8q8W4EjvIIkUcdLM8R89knhIH6oDhVNyKbYE4zuNUShpFHZbBMl/MN - IlX/Um32FncCbWvDyl9Cam6ncz9RtQ6VVOsajDdZ1zPe91Oots2Ej6wujemWHEI4dryAbfxCLu+d - 9jZgmrWjtirgimjuiZf55DZS/Lyd8uGj7SGUYJJS3Slp/jL6WVYexhlhFGeHnk/8giiXiy3QUNq/ - 2FaWk1qUG96meOCuYPHEowNJPe3p7RiVTCyzVIDfbkxoolYzWKAeO+A4RU+sb08eE9Z8AEKyY1jb - iEE/PVUrgMoJHvH9cub65YqPDew2kkqt62QxUXGdBDpostb4K9wtzQtdWfGNeiK6uwuqMgQNeimx - o+UKo6amTcprpx5wmh0do+eAtYAyMlOae/sTEM31y5CDOds4cKxvxILHg4Ne1zIar/E5sU97g/qV - ldRwBBEsxi4voLvfPqmfe0L0G/sMh+lyoBYNqcFyZ6PCpkoNuq/9suqjwxhAwzwcqPvqIFiSpuKU - 4fzUsFU/2nzpN7UKzZ2cU8MZacWeS7+Darux0Ha7nXImVfcMqqJgIpBNQc7P9BBD9Vp9sK8JV1c8 - b5/tXz47e8vphd11LyifL6GEm7o5b6RzloJNCCesVR8LTEIY2ArXBluMrWMC+N3mJCint1Bjq05L - QF7BzIGHcTTwyahsY/5a9qBIsKzIRZ1jJr6KJFbqKI5oInigIj+8fnB+RES19XqR3VIPmkg/40tP - N2y2dQ0qJkIF3te+3gtQ628wuX8UqjWfHZiiUo2VpsoMfM3iLuflIWp+9YzGy1gA5h6SQLkZ+wgn - eG+7oqlXjpzBOqfBrJ0Yr5eRCoez2WP39ZHdSUmHDjb7aKauzGNXmKNSh/sqc6n/JgNYdGhxoJc6 - k/7wfB14HoLTOzBwvvKrZV/XtfLiZ4AtM67dmSvdYhfN4wnHB87I2bd4x8ovvk3VPBr8d3xAyF39 - gZr9XmDTOageMFDNKzbg9ZYLm2+QKOfGwdh/qm4+2dsiUPiLhmh8GgTGKlcgihvLLTWkyGTTqfV5 - yIB3oh7H6mitJyosjPeRJEXH8kl/dQnQW77H94diV1vvxq2rE4UZ69JeA73inFqYwrLHzl7dr6uR - KYFyWvXYkuYSzBo3OUqeMoLgi4r9DMRcgEpox1hD9isnmgc8CEgkkCmQ11u2s+VBp9tcCbgwzZ1M - fJugpOs8NlD9ydn2eIIKtiQBKaWq5L/4gu/sIxBuc6ZgXPEBKooSoIlfTJcAQymB/Kl57L+Jx4iK - bs3v5yMwHYNqaZPzAp+tU1KbW4cernxL2RivE8VgyN3t15pTsPIVemDxx2Cu9f57X/Q23K/uUimg - hdFy+FCzg6ifNqYywGi5K0TSnNT9vvZHFa58GpvX+9GY7r8WseoNpGW3um+PzfkGq29uYkfDC2Px - Pkfw0qQOvpXfwp0Caf0qQoYPesg0r+9yaIQAQPjFaMW3xW9iDgrN0NJgPogRe04nQeY+Q0xz0dpU - o2rEsdLG6Ek150Ld5fGpWqi3bYH9qWRgukBjgpemPuNbcDgyYf++h3B+7vY0FW5JP34tlcCN0nX0 - cOMAWKZUECBQXg69B2FnLJEcysow0Tv68YkBcZtCIudiRlMX+P1QfpgN0/F0odnggHz5hmUMn2Kt - kW7988Daqw0fYXqhzy93ALz6oTwcn8hEO7Or+3nlP1DlryPdm9bLZZVHUyg0zoFsQ16PfnwdPgzX - wPstOANi4ziEql8+0ebIV/00XM4cDPpyg33vJYKV3z6gZmw9bN7iEGz5WgzB+vepHaV7Ntmi1sLF - aVSci3JZLfMZmsDJL5T6+w65c2pFGRSWS0Y2ZXIHs+RkNuBas8Nq8wTRLIMNhP7srquL8RCRVxjF - itDE4RpPwJhL/raAVb9Qo5LNni13qf7hH3kfQgVMqSQN0iPMLtR0uG3OBHmzQEd6aPRAL0fGG88g - gBYy93TfO3M1rHwciNok0egjvgAzDof1+eOY5hw5VqxHzwVMb10lskzjfLZ1uYUrnuIrhTuXgofa - /PFr9IYYsNhyd398w1KbuGLy8wvBr/5eZJsYMz6KAvxKTUz1rXuItp3YFOCyji8eOc7sBc298nBJ - PjaCgTP007V/1vD9ffCIi2PdKJ4qCtbBsDa1mFUbxFE2iazuVEyvcvp12evhheCckAktHU2iOUkL - TrmyXKKxqllRy75yAUVtkahxfjCwZCiQFUcSLmi2iktO9g3X/um9bDDPQMihEYANeb+od1wH44eX - YlJq09z8nsdtV/0CBVvb/vRLxJ705SgaZ0/0suqXCWYCUfjGupDFmHuDcPQswOAW9dTZH/18KeJ3 - BiT9c/7VP1f0zLwAuwZWOGU3s5/5pSVyOvYj3pte08+rXgauZXSEze3OJUxXBLDiF/U3ZucO8pDX - f/rJ2JZL1W06TQfny96ih/tW6yc3PsgAz35ObeGWVL/fF+7Ni04P0ubN5qv5G6A46thmz08+3fHV - gmHgHBF87TZgcmO8A2Z2ZVR99nG05ksANQJu6IvpbDBRVHQ44hSTuRm5/C25Di+v+p3upaE1puyd - meDHH7HlXfuvn98GuOI92brG5K7PZ8Pj/l1Tc/sZ8xls5Rs8u8GRGttrl69414B9hVSqd5Wbz/w8 - 6T/9SI9RYeS8yhc1SE7qmfrBeQAsWW6ynJ1IgviPC6Pho/mccoizBW0sKza28Wg3cG9KFT6+YpiP - zU0jcDlUG6yjxIy2PWOWopARIklOj+5WnxIVJppX4HMR2e74PZTWn361V308dsKWh9Uu1PGKt+50 - +txtWWZviN1M2AJq0UGAK/9Ac9Ude5IrdQtWPoj17WW9Qk0nR9kO8/UvHlY9eAPXTzrT5FcPTv7J - g/AjUGyi7egOMP9koOYWCaNN6LtivI88ZdUbaFr9FHY3VUG5Nt2eyML2CpipLY91dfGMj3IdG5M0 - iQR+smeO2uzYGaNtVDHMPbSnHr+2qPFrx0M2jF9CdKCx+f3cOlBRUoqmQGHGgt518Oev/PyBnoiN - ruDzwuND5L/7xeQLU5lvT0Jdbh6i2bw/F7DyJzRViWaM5H5MoZ2BL7bosQHL4+vr0MvZFvtvfonI - uRV0wIZLRMDKd8S39ZLhnUl0fV+3iE7VxoTZqXCpQ7nAEHLoBtCf3g4+qD2O5vN9b0H+sHbE4meZ - Tw9UpNB+xCo+b8GZbQvbmKDa1hM+GfeyYuWtkwEY6Znut9sgF86toCrkbedUN2bXZQnjQsgCW8PP - uO2qkXuFAuAv/pXw1/vXJSZfWCAcLjmBl0Pez0/nzoNYsycCIqnpF4E8bLjqB8L3euz+8ee+SyfC - H0yZLefuksIPekSrv5LnYnhpFxCo2z1F0wdVg1Nl69LcZ0KmmO/AVMgqgfwSddiWIxQtUNUtOB32 - ErbUgrrdfcAT6GrLRPCx2HlXg1cD1/j/1Yd+iXeq8PMz8Oq/5WOwzwf5/iE3BIEt9uPTFT3l00UB - 4Y5LX03uS4rBaTFEalxxYyz7xofw1aZ3eqw3X2NOMj1Rgh6cqW4QO1r89qODPP1U1FKI6oqiaMYw - HrCK98XV77cHq7HgKLc9jpxpvZK6Swiwv3DBd33SKn63ufJwjR+y4nk1KRcjgPpVGem+eDJ33Gdn - 9YdXOL17HGDitoSKjQqXZq9yk49j4dnyca/I5AHybTQhTizgFuojkrIMMyoKeQtZ4Gj0UA9uvtSK - w0EyXwiiz6RnbKo2Fvjp/1WfAUaZ3EBPNkOc7a2uYnfTFqCdSV+sbY80H7c1amCg3ihGv3xZ8VK5 - hcmHlGenz8kSSglUwrIjwuqfzT1zMrgJPZOa14vRi90jD6ElOQnWrHtcjfgwLgC/dZu6opq5szPf - B7gk3kL186Htf/jypw/0JxcaizKhAhQhf6fG9knZbF3CAAZP2cdGJycVc867FG6htyPLWm+WcXw8 - 5Ne1elL8vJJ+PBlaqwBjndrCkNYL2nH3gDHgO3p70Hc/NlkRK/c2VKjdzyKb1noL9yaosMdBr9ri - 44b/+Y34EDk6275fSQGPMb/D3vei9fyKH1CE5p3GhDXREL4NE261kvvpTbak54OlnC/R6efnrIsc - hxg+PdmiKjnsoy31uXXxFH3Tww1IRpcrdQeaTe78/Ip+2lhPC67Pg3H8PrDlUr0QfIR1SWNEVz9A - pfBXf0nheAhQus0h2DFXIGOQr4t1jH2irP4Zklqp6qeotGNocIpHtad0yacWviZljQ+Srvn28yvB - 7jJibBSqE82HvTfI2Tje6YPPq4queAimWbMReJ+P/erXpUAaI0xkz5DYUMj2AK3sWRHweOm9mF1P - Djwlnkw+150ZMd6LB6iERYf946MyplenyLDKjhPqBo0Zy5ZuStjuXwN2ZXFmpNc4B7CguODw8C7c - WTp+H2Cy1sH+M44Zf/p+ELQlz6Iqv7VA39275udfYbz6TVP1/pp/fOqikmX9VlLuoIc9j+bcW8vZ - aO1kILtQp/tzPxh8Ve9SQPsAYucdIDYsfSTDW2jf8CmHsjvrxIXwcrloFAV3J5omLnN+furqB0ju - ooNHCGMtBtRWpSWfGv2TwNp8npGy74g7lW2/+r1LRA9meTB4HzETnBf3Qv/0UMu5DoiDGuNEEu2o - NQP/IcPP44pYJyfreUMLpJowk6+cfn9+h/6nrwQ3y6MifLsmOOwrnqI8jsC8v9Yx/PELnPdPg6br - qmn/HBMcn4aEtf17Z4Knt7PwacXvwfdPBJq7Yv/nVw7refz8VSJKmzeYVEGDkPN4RI/vPaq2Kx78 - 9AoZp8QG/LW/NODPTzlMRcQeLK7h2i+ht2Oy72cgVDaIZnpCocVvwEsGIgf5WYqxy5Fj/6e/7Wx8 - YMxXmrH89GlDlR7rKadGfLDTEvDjX7jyjV5QuKKDsuf41BK8vF9uIGwAqWGAb49BBzPFT+6Pn5u3 - 4g7a13iAMA4yE9vcwYiEE1oauK88lTpRb1RrPS134kn18W06IWMJwkaFu6b2sdW/IKjTXZDALWjX - 95U10WgMXQPtR6JSh20/4I+vnhsb41h1SLXcpHVRMEdPqL7GBRjeYckrfNLuqKn6p3wOJ6hDYp3u - NJHENpqcKhsgTN859vNj1E9O2emy4N48fH2drtXiCekDrvFCJCos1Sw85gVKp9DGJvqWxsjPkwrT - 8VliW4VnY/7Vt+N0elJLvXu54MqwhjdSSahdn5+f4LRA/Xr1qE4uarTl2TUFK77QFX9z+vN7V/2H - pua6BSsemwr3kZ+ogaIcrXjQwWPx3VJrjddR1fvV/3DOVLMKMV9eYZRAtZ3Ayl89RtNxt/z8eZzK - Qd8v+cbSlWZ/mqm7+t9s6+h/7xPBd0PzIY4aDy6N+iHyq3zmS5GIDyhqWYWNUy3lzDNK4U9Po/hS - s2EMZwHmbLvBBultICrrYq7jPr9i44ZTY+0vZUD+oAfWoSvl7dJVHtSim0BPK78f1noLdunhjXFA - AkP4xgaBautlOBVuQjULz/KmlDTqiJhpQz+pn48Avfzd0Wj1J4eZ4hisft4f/pHkc2tlC1l7JJmg - y6eN6a8lwvPw471ZquEgmxmYA/OE/W/vuHxYZ+kPf4lIM6+ilWvp0D/bFRLU7FgtnjgLCno+Dj8/ - dP321glAAm/gL76X6ylqQXS4DtQo1C4nYJ/sQDedLmTnjpIxSfQRS0MsF2u9bAC7G4Et/+rlkY1O - LpjC8QbdOj4g5an20Rwu50wR9SPG92+pMfF69xpZUg4mWvGxX949MaXOchV8CKO7u8RSiRR/+jjY - Nj8vMB9sfIPb4Y3I577VKpGuLchTct3Ty/p8yy77eGDVY2R6vhGYEr8YFKd7G9SbXLsS01G1lGdL - Dbo3jxVgyrGFf/1C5+18I6benjWUTrcI39f4Ei7lroR2V0XYyzXB/fF1mAxfa/XbLtXyOnUdXPsZ - ZKmWjzFt9iSDvvWcsDupdjQf7MMNDtP5sPYvAkMIORTD3QVk1E7OW5eIXTfAmmsIAe8X3y+fzxFC - BtAJq1XyWvHp9YASjFPsRhvPmLpvX8DrR81xdPWMaGnP6ye6NuUIf/7GxuIomxh68jpFUsr1fD4c - kgkIF4v748uj0WsIrn4rfsQXkzEiHVKQaLOGXdHa9Mu5e6bQRiShVjEmhkj5PoRRYz7p3XuJbPrV - uxRKGj1t5ChitXOO4fTOEnzMLqPBFOfUSc0Gbf7iZS6Fhld+8XhthQLMw7RL/vKxVg8um3/9iGPc - jkSyl9KoBClJlbXfjA/K/v7PL3W6j4G9x1CylpzSG2g3/Z4es4wyNhwdCMk5btAuytuqX/1DuB0+ - CG146rl84reDvDEuFtYt/gmW1a+ArOcUNG+toSe/fhRMrwFNilFwp1//NDnpZ7Lrebla/cTbn18X - 3g7Z+ol94Ci7hRXUfllSPvzwafVLsfvqbmBKNqiAj3AZyc+vYe6elyGX9i71S/W+LjrRBOn/uVIg - /veVAs7NJYrmho+mPrM7GVbfhkTh4xix2UcIvrXRpgjpo7FcvG2oRAbbIg5Y22qpX08BPr+mTk0h - fbiL42ct9EE6U5/urGhr7RsbOHPg4jiRL5VgkmsK3E8XUVTWp3xqz4Wp7A72sO5CcvOJ2w03WLwT - jJTMrtypM9oCgo+W4CsVdy4b8zGBBTYPNBxr3eXh1lSVJ0k0etRynNOLbwvQvbUBftaIA8MwtQv0 - SPYg0Y4/Vax8VLqCbqqAUdPMVX99vxCsXUshzHg01bTIGqd4UlmSqrdIzh5ED+B6kZimLXOiYZGP - HERWwLA+xCWg5636gM3m/CSctGwBk80PD9+7c4gfYxH1/LRutZZNaU/v2C4iEl55BEVVfeCjxXC1 - FPunCqHOntiHceeSoys/YBnCD03dTdUvF2FrK/L769KY3gBgg+mbINheLxh/u001iXplKU/iqfRe - yLVLUJsnoMiQS+rOzHvxo5iOAtOqJLz14F12PWkJdObQxUfvemLCnkprCdRuGB1QD0Z7QTF4uXWC - 0Zacc1GIqQOfX2RgW5yHahqmYlKExxThlHv7gO+vaqlE6MRIFl2fxgCWiii7pWX0Orqpyw9WsVN2 - ZbkgniueLi+Orq68BisjilR/c9ZdvAkKR/tEDeNm5WLlVB7kZ1nH6G4HlWBoVwc+Sazh+4isXijM - xw6+8uFC470TR+zi2zxEVsbT4+d9BmLTuBxEQyFjJAlJPjDQ2dAJHJ3Giwd7ooa7Tn7y1p4aRTAa - 8yFvPEXYTDmNP4EcsVtyhBBGbonX+M15oesI+NqH9RbQUXHJ5XW3oXvrAmpbb8PlecVJFOWZE+zE - 87MSyuUZQPc2nWjq7c1KTAS1Voq3hxD/tK7GzNWBA5vH+YLTNP/k4rmwS4htQ6OHHVB7Xsr6DKJk - t6PPMJPB4q7XPl8zfGJ/Tj+Mdck6KVWfn/TeC5YxLfjIQWBdT9jcqnc2u6LFwScn7PERa3POro0W - Kp6/XEeWtN0abxcVnl7XkkjC9+pOQ65OyvYyWTh1FSMSu6FelO1YHOl1qdJISJ43GbbJdsbYMnfu - 6AgWD9fzQMppp7nL2Y4JlPF3Tx/5gKtJcQcPluPwoX486LngeFkhw7av8PH4nqrZk7AH3+M9IGXr - vcDWHPYNbF2RUB9bqjHJVlVDuZuPOOpt1PM9LVro2UWG7w/vLx+c3/vHvix/o2VPr+XfefmfwWQT - WKpBEeosIR9F03LheU0EpRW3Emrp23WFw11WZRHL663W9fcJNpiDDRkzbBokipbsdBfgWp8wtmWp - mu0HKiCU3A+1i8rOxfvQWbC1PhTbt/uhEm/9F8KyQl/shPtNPjsvS4bf6MBRZBZuL5KD/4BPHlkY - 5xys2PyyVOicF5PaFbaj0asONpTsdkfIJhAYjeZCV8JdNWGDhRQwHjSd8g73Lk4Dd5+zd1W1ANra - g9qn6t0Lmax0UD4fD9QAxanih327QDfUT2iZUiPie2rXsDyQEt+rpjaa5Ak5WNGYx+lzvVXeXYoY - 4qqyqZ8ulSsWN31QisxzacSTCUywMC0lQJKP7TXf57Wew/d4xjiiiEbL3ryWcnEUbHxkIO3F2bcQ - 8PxdhpH5cPNhvLUQntwop/7XadzFJKdUEVAXrvne5Ev5uDyUYFuliNUpcRf1s2ugCNWWhuVQRIJ5 - kUL4lBpr/f0MdxpvBSeXHnzRXz0Xavcy7eRAO9I7la2evQ4dD5/RQ8Xm0YsrfgkcC8q95iL2EFaL - NBlr+NYUB3GVPOcsuqm64hchQVxZnyK+VVULVley4OP2egXi2WkLKBdHh2bJcQO+HE4RFOegxZl5 - vxvzpglSJQyrHqM970bTvNPW/Owf1J/j9avNpJOBJAEd64TTq0lQS0ERhbalV/NA+4k8Xgg6oLVp - 9CqHit71zoMCygLEUrOvFtO4prDVDoTa19ECszn6A6ye1oJq+fao+vvgqDDUjQ/FuJPdxX6GSMEh - MJDU5ZdcJDc/hU6uG4TdPO9XT23YLm+ZognxLmPvpgYf51xSFFpjv1jTtYVbbzGwcfK+YFrenQn9 - aVqo3noaEM/bolTEPquwPk9Vz16sg/D3vp/qcGEsZkWg1K+Dge3j2QACCkECXxZa8WQ4G7OVNSYs - 26HD0ZcnbAnUfFC2d8ci3KVBTNyGZAedorXoVZ4zl30+g/OLZ4oGh/VTT9VaeSXNFT+im1+JMbM9 - WH0hjyMnaaMZfw87+BK9B32+m407Yw7zv/PEKZrrnv/hQSRHHI1M4ePOG7BLlWoby/iRpZS1/bWt - AXq1Ek33uDLEJ9VT+PUvMuLKIgDC4b7o8NlCjaI1fiZFqBF0iuVAjbD8gr4f10G/TVVQ8xicDSae - aQhPTb/umiMTWOxjZsPqiRhSmsQEwq8eQya1+Be/wkNLCuWv3gj5UC3hNbaVN8MxtdP8EHX+CSCo - INBh25g1IJzSmw5l3O+xcVTbfDk/4knZshLT+GmmjAmbj6MIxnKi/rOoonkDglh5cpxFNoXDRYu5 - TiGQvhmHyO4hGMPmbRL5fRsdfDbgho16NHpQuGYRIWra9YttyybwHnqO7eLTMvownQxK0QSxj+1i - rX9I/uEZYu/BB8JDf3RQsjOB7Pr8y+gVfAOI22qPmGBO4JOI9vB7fmpW3hWwnU5rCBT39lePP21b - B8q2DR1s3Dyv35rau4U8bHXsPx+Vwc5PO4Vy4TpE8Xm1n7GCCRBk54rKXW2CATqDBbxqeuID3GjG - lsMBguBmRNSu+2M0cb6XKWVqvdH1xs7udoOnAFaoIYiLd6SalKK2lfbzFuk1/UaApfXLVIrMcsiO - 9S5gF7GYFDG3Xz8+yEj2Vogs46uBkUacqr+CVyhVx9uEdsHasjkvfAtfexjjRxIQxjJFeyiO06r4 - 2SZPMHNSYCmi0LWIezkTGDfyFELxPL3ILj43/SQkjgAl/qXTqLdIxH7n9zHXqSUlHA260z43WNWC - QNd6XLH76DjgrXxORNa+OWCp9FWhqwRnfAFflYnUfnfwWQnGuqu1Yi0ttEx5e3eb4pOVu6yw9A7+ - +FG6RH319/sJT/2MDRYHLstC7QaKrRAhRSqPxtRd2hh+71uOhu918c/xiTpQB1RFuziycip8qQlL - DvXU/3pWzs87bfjxI3q0xMmdFLdG8utj3cmmkR9gcbywgDttGdBD2SU9SXf3BMomM7HJFRuXlMsl - gOFYjSSU4NtlO+3zAMUbIew/UAWmb184sOE/T2zvfR2IefuqoYKkbh28KBukej4bID+lA35Ej5Et - iaOokFN7iTqX+6an56edQbcszmjdIp8zYvv1j09i4yF40SCmrgk/wqGnxjlwInEWiQ3FXC+oDoc9 - E8x0zmDITvOqd+achATaslKDiXzJa+cuPsxtiPV0Q+PAFNafv2/gS0QPaseRFfHL21FhQTlEMvOu - GCTKYALcpU3o/Qxf/eKIWQmV7jrTA6hUg90SDUJBtq9EkeVjLrzypwmrB5zxXaqPERvIW4dY0o44 - ogHuWfxoYyj2Rf2nJ9iLlRDU+xrSB59tKzaXlgPBLToTOTpzFet6s/mrp9iydjkjB/8G0M0RMdZV - sV88nO2gL+gzNu/Drh8U17NhFGsi2m0UZCxZsF2gPPWIopc3u4uVSwuEXN4g6fgO+k7vJk5BN12g - 2cq36SPVPcjDQqMxmB7RrFSBrhTm4BBR0bRo2lRDAZvrPsVprlk9z2AXgtB7vemxy8WcBEPOw5Mj - pTSL500/7onPw5I1A/bLuK5mD2EEg/h7opl5hdWsnWpOeVZExzYQx4i17RDCT79+5ZSE2JiA7U6A - U78S4VkNwRLP8Q3WQb3Bj2AZGV3rl+xestNaD3Qg/vALJcUWydH50XfnBXYQvObLT0+7s6aMJnCy - nY6+u6Nc0YdRJjDAGqKGEx7AyucmudSTkhr8coqWa6U84HrXnhpiGlTLTx/hnWTjozBKPXvunRJ6 - X/uJcSlwObtfdEve7XRGDXVqoumrtg5whM6lKCqIwS5lIfz4DNU7/hXNwebAgaJrED3wouqys6s2 - sL3sGTZRu81b8HB56Mz6EXELx/eMPzUTfA0oR5K8lfvFA5EKBZqmFN+ze7+ku3MCPT6sqC8VLWv2 - 2dwp/tnuaLTqvaXiLyUMD6+WIlgm/eL4YSuv/gG2lRMxhgU4llJMdYzYzfEi/jsUAfymnw1aCFf2 - S5AwAXyCQ4PtDfCZcBojTgmeLiaSuse58DSSCfrbieI0lN7VMJVfAt3PEmPsIClf3t5lB/G90rE/ - IquinWYOMJDnC7Unpe9Z7VUPiFNXp0flnefsLfWDvPssM8Ydt4mWw0HiILrZIjUO5cGdVr4N5Ky3 - qX3fftjQX4sawAO4I3rT7/my8m8poH2EUfQYwRLlcapsw+WIdmu8zVaGdPh5b7/oa0ezMa7xKa35 - S9jNHlzK6uYGgfjK8PFG+X48WJYHPv25w8gjfj57NQ5WD7DFR1VD7KtzI4Lb3YKo/9bfxmLlVwJe - bhzT5xXd3ElISlkR6umKH+9wBstDexQ/vUVRTjBbjGFGsLE/MTbqlBjtXGkTXOMJSdoFASYRSmBb - 7gXsmPe7O/Vm0YJXMmQ0MzRoTIR/hdAv7JEsDSkqdn6qqbLyb7rWb2P2Ab5B97QueojOj2pSPC+E - 5aF5EUm6Zzm5d48AVIifcPo8HioxsgpVWfkdzoJxYyyGOlswvMwdNe+T5C45PPPKe8SI7GytNpYn - SRb4wWKF/YdjRIvWTgN4DWZGbckfe7qFzQKjx2tLdaaWYPjqaqxs9WBPzXN96f/0QvRlMmJ4+bps - Evbwlw/0GB2XiGhcMCiRfOKwHeA94OXF7SC+9wZFHQmrad4dCVDkL8OGeJuN1Y9wgGSnAl7jq5rV - kycDoS4veB2/aPRPWt6gcG3P2M9TPZ+GvOAVz3AybNf0yPr3rm8A1F93bKC07WdN2atQod+J6ive - sto3CuVZDTq16avrCY5BDVvtMlE/JWU1q0HNK6veRiOVrWpa6henxHjeUEOwTgajxz2Bv3pzPLEw - 3+L2MEGFggXjXt8A9sy6Arw1amO/599sEhJdgNuws3G8vs9pCXQTvpL4gm3uS6J/56UcdoQnNnSp - bFIeBPI3wcZH9wEvjpWpRNfXjhqmcDAmrvJuEFkpj32lOVbL2b4N8Kcnjv2YsMU0pBuswcakCJlj - NLoi4uBarxG5lCRavHqRIfo46+Kdqvz5ZRZ87/wTDqfMqBYV7kpY7riBRG2GosXdZR1UTLf742tM - nj5QWes7tj+XY/7+8a8fHvjYVnPBrcIByoKBqHGzPVfwYeTA8t402AzMJJ/Gw1cH0bXaIf7o8VVz - EZRVb5w4igtLAX98beXrZHNFN6PfDZ8bDOTXGe0kPDIW27YHnX2qYbMdQERnr7Hhbqcyauu5xsRv - XN9gtHkp1Hh3Y78cDqedgqCs4KMjBTn/1dVE+eDPi6KynN3OEZdakR62RI9BvhgsZjaCuH3tcSQ7 - p0rsDQ9C0WnveK3HEb/IGoT8vGhIeZvvfFHDoFa+d5GjtlXpgF38Ygd//lB84GODbduGU97K+4Qv - O0mNlnSnpLA8CBXFanuJFqOfLaWKb4xeFO2Vr/4UBJK/E1e+UrgTWHoCP8Wnwz5MnIg+c72BXN4D - am8U5ArGMHtKU+Mb+fkZEzuVAXjl3JXs6u/RFXAXNQoPO52QxCPRz+8Frz0XU4NDy798CEzDQ0zQ - g34YLFuAp5fxRFw3hWyx+dCG1dEjf3yahFeIoHDUA8Tc5lDR6fnmgfQtN6Ttn120mOMplFtvP9HV - v+1/fjlc+Sb1t1lr9IlQdHC3LDz2ebM1ptX/hcJ3SsjyStRIvCedDt0yiwkzMst9c/UOwVPeP7Bd - nex+GvbFAottfaIp90GG+JaM7i+//BtfRRM4ujIM79oXHx1lAjRTvgV09plGzXbIo0Ga3Aw+pdik - YUOKng3GW/35U+ShLb0h3JPkBkv26KnjvR/GzEmTA8Hpm+A4dkSXLahJof8uR7J5kHs0/vBIfs8e - 1kH4dunD6JKfv0d2V/px2c8Pc4rOwsgNvVy4uIoNXaW40JV/RCs/eoBinUBhW6+yYjn3asGK/zhd - //3o1TgEa74i5SQU7A+flOeVUOM9jIydHfsBvY1aYUT4KKLbD+HBql/+9MWid8EO1hBbFKk315gW - +QjBzz87frWETTzn3MBLHc74+Mz5nqb464CVP1A/M8t+0bt0B3GVHyh6PIJ+YqcugP52oRSj8Mq2 - to1uEIZSsfJFsxdXvAN+VnZEVAytmt0S6/LPv06Xcw9mxZ9U+C7HgOwOYllNQtKtU5qlhR7FzdVd - nuljgJ9MbLDvL+uVhFRHyur/YF3amZXwuCT1rx9AuGp3cqcNrglElrMg+bi9R5PQ6wt4weGJH3dr - ypeQ3CzoVctzPe9HPvW0beHKN7B9eu4N/pvYDmjSzWXlV0I1moPfwFcupNiw0Cf6+b+wFjYHtPMO - NVsuwt2UX+KjoH5mlWzk0OQoXtQ9qP9cB/E3b5eHZWW16/seIhbbRaCAj3tBfJrsqj+/QMzDkmze - Jfcv39ryINCVb0WL9p14KNmFSBb+VoGlcp4d+OXLkdeuFXvZJQe3iuxR37sV0azBgYNF9vCJhDYn - lz3GDgExaCucrvg+LfUXQmGr5tRIVdcVtCgYQIUGin1/Ug3xfukcuGUZonYo7iMxlV82lDaGSnbK - GfXjyvel1V/EKEtwP42LChXoXx/YDwqVCWu/C8rFySXsZB+j6TuoHoTtXFMjI31Of/wZhqBAXCwT - NtBCS8H7gI/4mGmxsfK7TIlstpBd/3SiWf/6CGImrVNCx2s/b95T/BdfK57li9buyB8eHf3v7NKv - ajZwd1B7eiR3sSr4tnz8i5+fv27tZ6Jsx8Wl+o9f3ZNSh+JL/R9p17HkLIyEH8gHkyUdScYkSyTb - +AYYY8CJJEBPv8X8e9zbHqfKNQWiu7/QkvpN8C+N+nlXDymoCLap3d9db+4mtYAb/yGx9/40TDnQ - HVCy3CKna6Q1/OlFUtgobxm3pwsPVisPJxh9tYHeJEfpWVv31R9eUBzZIxuN/Sv567dQUmx7hft0 - 2IG//oNZVTIYplJz/9VbqXh+vVm8uhBu/jKWppMLZsXq37BOzdckTaT33lt9hRh2gB4lVLE/fxm0 - 592e4vc77KdLdVZlIDYZXgFum3kv+5XcKKWE087p4lWN0vdf/2bi8MCDST8HELbqBRGsrb23Hu8h - RMo5dyb24/A/fY6+2nkmm19orK13Xf/0PFYMDXrv2n5kf/4V2fw8j33egw5Fdy3JUQnVbbAyK+Ap - i77EYJcgr/7W1z/NN5oG5MVmfu+2QFCCjJ4uqu6tThUlKKDPaJI3fi6eH1WJyHHeT/LmB0zH4036 - 40s4PRDDYImjJsg9VzpJUYgNgSTsjbxBiTZ+PwHWCF7w54/QUy+8jTU9oQx+TFRjtPUbado+N/++ - 98ip+ZrxsmtTG0Q++xBDt6xY/EBTRW5fHentLMfG5q9D9PyYd4r5jgPsuXbcv/puP2U754DjSUoF - cExMD56NAT4MCKWj3hPjdvG8CSOWoG/Ic5NcLAlgb6Xh4DP0b9Swgk//50+Brb4QsvmP/TgffFg3 - 5uan34pm1D6jCjY/mzj2ac5nLnITCLQwpk7tnA3up9n4X/8v9Y8mE4rvzgR//gAOuMlYreImAF9e - W7LxB+OfP7v1k//Vr69kND4i6c0kN6eZ42EWfjX0T0o2/fRxYuxcqTWqHm+POsqSGethWgq0+RsT - 46aZzfAxqPCvP3p7hxdj3stDCzb/idqXvRWLN6glEBROQsw9V4LleLQSRTZckeg79dCL2/sqYQ8q - Yrwm7M1c7BYwSPqQmJu/MSur0aGvx0/0lp8ZGI3zWMC/fsGpq97GDPlh85uu4yTv5Nz4slDHaOPn - //JvJOg4wTBY7tT4cRhwe9msYFWZAXVJWHrLX78NJf1ETxVs40WPX/j/Gnwg/e8tBfsvmanlSB2b - 70SFCOQwJLrrxDG72PEOtjT4TnUdq0zQK6NGD85WyUUMPLYceiFD/m46UtWpnt4UaglEHI0G4sSr - bvCCfqug+Bkbcrw7hSF4a5zCYppzak+y7YkZ6QdAeDsivvb8emw2qAq+n5pO3Ik2/ThI9wuYj6aw - 7cqj/TpI9zdMpgBT9yR+wBocaALFMztSCzzGeBZ1NUJepU3keCye+Sy4Lx1J7/JEzMZPG5Hfpdup - d3iiYTXjnP6+zwsS+e5D9L4p4vbv98tPkPDCwQbwwwYhsncHND8WevyVD1IHedVtyIFHOzYnNo+h - erU6nDBn6JfmJiWw+ug1Iandejzd7yxI3yeVJoen5bE7lib4y28fzHgeNL/n+1MAZXS2i4PSYzN7 - a6/AsJMv9FpJa88E3VFRluE7jfBXyZe/338/FaXEOGmMy2L+gqwI/mj4naxcdKcmgpNefqfRfj0A - x+ksQnfuM1P38k7y8WpqFnoLQCanitTxejWdBPYP40GOyznsBeX86uCtSxA5/B4AsONHr2GNfgU9 - BboN6OEzVLDOho64ZfIGW7zsUDfYiJrsJzYrCPMI5jOS/q0v9yzjAlUH0yI3DmiAq7vHG8rd+UBc - nAqAoWSVYFacHHr+lhqYCxJCFChaRQhvvA3hbLcThOXckGL/PvX8Wf0NIC6qmqaHqjGW+n0pINvn - Pl7MC8gXvdAUeAjdcVLquGavBH4DiI2nRc8IXLb9v2EK6fEsUJs6p4aV0c9ERl7bNLLcazygs+cC - NBcquSFwBfxFTQcou/cXlvliBm9HPM4wIbk5yQGD+TyLnYVa7cYTv/TbRlyNkwpdL9jTYn/5Gkui - KgPcH6IdMRBjzSy6hQpWb0nIY3ndPGEY1AJqHYgoCVzfWAuiFchDcKF54HrGUsT5G+CwdOkBuXU+ - SgdJgYrjExr1Dcz/xR+bHhaxAPmAQbS0DpwXNSTltLzBbPWjC9PbT5xYkEfN4na/FAja7jG1ff9o - RjWtK7SiV0C2/xezYbAnpHVyRKPs0MQcM8wIahmqiVkWX28cJf8CnvY2a+adG564C6oa6dlU08O3 - fII5QIMOHmZQUbNEorekvscpU5NOpDijxljlE5PQ7Hjr1LJb5PHf0cdwjPqU/tWL5cNfd2DX3myS - laaW89Z2Sg88jIaYVqQ047FRO0gELE0o0Uwm7NNGR9waUmJlggToJDIOnWtTxKJxf+VjqCUTSspL - SXUwn4GIeaaD5cdJ1Ch+gTfwrqAjpTMPJH9dlYbBWxnBKS525L74fsx2BfrCzI9vVI0esceF2qsE - J/a5EKtMDkwQLd2G6bs+k8MMTSCc1WAHS7Op6JFvmbeGWrID41pJ9HTXFLbyeFLgX7xoxuXlMfu9 - 1PD6mij1Fh41Qzc8d2hUu4HoYhXkLOBDHe2itCCX7NDGozOxGardcaDesahzzu4NF4n6eqB/9Y3H - /Prve+C9iqGxPi5bi1rbPchDjo69sA3WhJo0WyQvvthbm45Y0Blynqo4CHvOmUAFX/wRUeIPe4/d - r2aJavgWiLbz8nzdp72qNKeXT8KWdvmitvsOCqFCyCGpF7AYrd/BYjd5VD0sbr+oxd+p+KM6SYfK - 8IQqy1p4enQnar2bT768Xn0JvcqYiOcXUr8q4RBB/yEgqsLjjYkT/Vow+Ogl8d/dp58lbGaQmkFL - Xfa8xCLnCjNwO9uhaURIP76foQW/58rAH/N0MbjU1jGynopBMFPteOXwXoL7M56mVQw6wMy8ypCU - vm5YAlJmiPvqrcMNH8j598j/6lUr7eJ0pckbEG/mrf4LZO8BiL1tll/kE/hC+/s5/Xv+Qi+0Dh4q - 6zgpp4+ec2dYqejxiWtiirbdLIT/1RDe1xM9GMJi/NVjGOUDpGcelWz9jmYJxbYLMbdKhiFUl5sP - X4FFqJfehp69nmELdeWtUz23UD6KrheA8dmu1IJk5y2Py3OHtnzH+5kze64gNwjhyiCWk+gUCxHS - K3TLHwwrlwsG7JlpAtzxV4wHYNX9cs9PF+WujRi3TqV7f/iHdubzS33wWfp1UkkGD4F7xfyPCHkX - S7ONrsn6I+oNVQZ9/cYEzorxncZjUnlc/S4xdOxiJLGxi2MWyFkKpvZmkuINFmOd1GP6h9d45bR9 - w662C+G5tkR6OuslWIv88oZTmOkT7N2oXyaRXcA7VDwSXaxjzF38sYXpsfeI1cciGA6Ppw5DZx9Q - PTvbQFiBBlF4VRKSTcsLcEyZS2hf3k96Kc0qF4km+uimBCPJNnxcvC7NYE6OPdVSTWNcTmqIbt8k - JF4rkn7O4/YCrWj3w6uoHnKhLl0Ia+XtTvtCSprO+sQBEN/jiTrf7dRXP4Ql4ledEneLB95V9hI0 - H5eZaIl+AKvxUGr5vOghydNf5IlGA23EqXlDjx4cYqZXxoz0fJC2+qqBXgmHGj6dfUK0GX3AuuUT - OMYzIRe67gCFZ0NCQ8ivND1Rs2dq+3HR8TwD6si5z1Z3HVL4g+cRM9Rgb21/OxPK+a3HLc0uxpoa - 0gVMXMKRICuJ0T2iikNavpemCR9xPo1U4qCeTxKxaSYac+Y9WyBo8EEup88znyOtKGGxMo7o2aHJ - Wbq1XJI9TqguqoeYivjgKjf3fqfeVdbyNZYkF/T4cKP2u+/6lbcGG/oBaMmpnZx4DPigQouzTycO - B1HPq+3+C4kRWVS16oexyufdF65ZV5LDcprypYzkN0y/jUY8427FS3uvJgBnqlKteA5sYYo0wfRd - nenl8PvlVGsvLtJvg48Bn+D+H95fVu5ErD1d2cxbzRe99FNOb8udA4M31RVsyEealP1EAXOnJoC8 - fnpQ8/B8G0svTQmYpb1OtKqywdz+UAuYVyfkQNjLY87EBYp5yhKiW64YL8s+scBOLwZy5v0uZ3rh - ZvAdwYX4tVf1zHlXNcrHHY+56af1XJF/LPh6mi/62Or7QgEcFEGHPL3dtRtbdomSwuqj1vT2DEC+ - JupzB8VkelLD90NPfN1TH56f1pPoNFrZAkNXh3eNYmok7s9bsmNVouqrS//q/9A+FQFK15dB1Xdv - N3MRxxe0uPuJaEXQ5L9H9G0hSYKChqZ1ZsPxE83octH2tDykGuAvwQfDt6FpWNljky2ipUnITn93 - ev5Ox5zzusCGlwiO1BlPNGfts3uDc2V51Lxgt1/usdv+8Tni8Zzc/Iq8vMC8NA4bvza9VS1aG+Jz - s04s6SWPoWCpYKUYLTHFL+uX1yhi6OaYEtWZrV6MVYCBrAQ8tZoEgI/ZNDZMrS9PCjENjH96wtvt - jxSfeRWIVZYJYPsbv7ODmQ+PEhXQvF/MaZedPcakE3TBhtf0EK+ascaHUwJfgUmmJTAcxkvY/MoH - I5bxm0YM0Oau+FADYjopfVPmcyftTfC3fnF7rXtW1dP7Tx9QHRCLiQmsVtDucUrMSf4Ywx/+HTQf - 0aBEF+P1Gc8YCqFEaOwXQsOaF7cDZZN11Egy3PMJrALEhtQlYVV92Ug0YYLtjClxxWBgFAVyBYUY - ecQFjyne8KkCxlBgeok+YrxcgwuW//iMCa6uIQpusUIHnAl5DLzdCyCMI3Cq3gnxBVHzuBguKrJ0 - vdnw8dUP4+wk8ESGO7klq5TP8KRm8GjJCzU3vbQ292X3L74Otjmx5fBpdTTOtU+vP2v2+kkEHPzT - p6e7lrHV+OII/rI8nD47QzHo7bov4B9fjADZBofBaoYbvlCrbL2c38YqQMtQZRqaFxAPqa37yLjX - HFHdkG/munRLWGAJ0Fg2DENs70+MzD0OMGpLg00j52Gododh4iVQsfW0uimMfFZj4c18wCLnCoFV - KzeCxTkFS6CNA4AVC/BbrJacpcb8RqI5L/Qw4iinkTRnaDkqBT3+Pg9vxfw6oz88lT7Fw2BGLmdg - zUdz4spx6Ve2Uy7gfTBGau7Fs7HqlVfD9fa1t5bW86/+dcr98daITmsp/4tHyMZiJnq23Xr0Hu8F - eMfoSDHAL7beY52DYQcu0z79xcbaDV0JhoXVVFOv+5jOIMaKFxx31PM9YqwS9iW4fxOTnIJoihfl - Js5w4xvES7K5n1GozegSI2NafoTPWV0aPro0EqMkyJaeta9+B+VjFlN72xI8PLPIQpdaudPjzOk9 - FzvYVxYoKtNoJ5d82QdfHQY3pyPaMhVxZ/VFh3Z14k+gklgz1JljAaOoSixlu8JbywvwFYM+KxKb - 5a5Zm9v8RvF87/GvqFwgmB8++Pe8918ps6HIqQXx616TRyFxf/XBh2fu0BC9brucJWbfwhs67zG/ - 6d+pyqI3ejeKSA0+GZr1rKYQKqdQ3PAhYvyfnkasibCIdNWbXr/RhF1najT0ExZv/DIF4Y+byUG1 - BNDVpbsDp6pNiMMPQj4E/DNA9dBb+DWgL1uwfpygnF5udHv/fCUIVVC7SgGxtG6Mh1VULWjxco7l - F7nG39Puqiqynf0m0R/uxuqIZIbJ8/wkWHezeNHaqQOP1g/wu46f4HcJqK8AfLxTj28Tbzk8nhES - VOiQ/JnuerZLfhKsRzpQT467Zr1ffQzDj2AS/DG4eAWnmwTJMd+RQxraMdOvkg69HTpipeZC1pel - gOGkFRGNj4jmFMtcBuVv5BAn0I+sn1lawPmjv7HQJIDNentOkak9ENFa6sa0+waJEkJxndZ3887X - dW9cwDlyjiQ5LF4j2rVkQ3MKXHIL4iVeds9jrXz4b0MxWwowa+07Rffne6JaEJN4+X1lAYpiH08A - 1YOxMkWCUFda/a+egC9T5kLe+OYENv332tYHSFY7Up1pv3xGoTP/0zd+WbgeYzpU//EVX9dFY0b3 - UoLeXe+JJg9JLsTSNihjDkRqbPE4LdtguXX3E4h+ufiALsDF8qVRGFE/xd1gHTeWStR3AznKsdPT - 21UslD+/wnilRb/YvZfCjR9Ouz7iwSJFlg4WF03kmP6WDZ9XDvKh9Zt2+9LLl5xkPvLpPNJ4vCT9 - Am7TLJNPXNITYR9jKYjjw00fE2N4Vcaspl0Eycuvqd4bS/zjdk8LNvtHSo3j6ABOcj0VXi3xRXxM - 5n4e5ugi1903I+fA6MD3JBgRvDyVI3mgejTYapx02OSF+ucXGNv6c7CsswR3l8Mh/5c/ZngbiSrK - 0FsG6Z5A7birqK2tQTNe/JEDWz0h/qYP2Gt8D3Dd9QI5Il01BOddRfC9CiF1PwaLqTEcFbhdb4v3 - i+ka/553/qqQ5Ch69ytlT4zq4WeRi/N9bfoj2k4lzgdi7i214TsO7eD+7E/E37/HZimjpUV/ePrH - /1hi8zv4elovzIrf7K13PJdgtr2CHneG4rEI6TPcaeWFOD8c59/Py8GwFPKBWN1qg7ku9QL9jhmZ - 5o8v9kvsWCUESBqpJucdY/Zbrv74K3Xk7RYgzK8VdKG93frxQNtF73OCHpfQJ1jYmzEHT2oKf1Jw - +JcvTMQHG/nzYhLs2lEuelMUoctrT7f1nHtmfvgKtSS3cbu/WAYHw2gF4ZfLSELdoBFyLzSRkts9 - Oc2DFou349aRbIczVWnGe8xf9S/KgBnT67b+C++OkXIKO2Xi233A5hFeShS8VXvTL6u3ZKTxYe7r - N2pZ2Z0xtXqtMH9oOfXF77lhv6Gb4Hw71hhsepmJlp5B55ayf/7Y+Hp2FuzHnYzR5jcK8KRK6DRX - Jk3DSW1WHr8lZRdnKxa/75e35XuG1MyDU9rnubGS5ZvCfoANddLwl6+HppZQTg495nT9bNDVOOgA - R0U1fYwdF3/9KaxAEfApvY7v3Ljz7iuCyikWcVCOczO+x8mHz0zO6CHR32yRHSUA6NkKVN/06jfU - xhLg83OlFiBHwPZF+wXR76ti0L4tY3ZXqMBxrSWMkvUWL9QQK3BtJoM4qMPxmsc5pyzSGpE/fTQv - +1iAaC5Vqpb33pgHLp7+8BrvDt9j/C23WzMUdDxiGXU4Z67wVuHbNK5/+g5MAj4r8FVbgGKxYvHy - x38OD1ulaZ2/DO7w+Kl/z0M9FFnNUG0jKZdebIkf7o4ef/ULDoY3Wd302iuft3j+51fqTHPipft+ - BbD5YZO6ypa3chayleBqTsTM7oPH9MqbIWl9f2Ibn+LbJ7PgFn/UMc6GMatF/1VudrGQeOa0fpYd - RQebvie6e5MYNQaiQP2+cFs+fP78ggy2VbTHkq5fvJWKdQtvdrlQrd1TMD0vtg9jmOkTB48KG0Ot - GKD1lAxy0ZRtpMTuWsHwuGsJKVKnnzY9Do8SHalzDx8xMx+/Ga7bFkq7RKm3wHOSgq2eUTLwdvPH - J9Gz410MI5r3wuGR1gDXWUA1xX/Eg5aGATDLJKMF7e79/A+fdb3BIulrNh36sYPZ3gPTfEOVtwZ8 - MMPgYqbk/h1f8Xr23ybc9CJetv83G9vFGps/NomJ23mMd8cVwhN3nxb7ELJ1NfxVgXSViSHHdi/K - h28G5evFoMfj2LHf1XRMOJnPFgsn0WL8+xWVIKFRi1etG/J+EzpA+lSMWNFxyKfPSxuUCPb6NFv1 - w5t5vYtgsvcTmrcibZZDU3co8hZ/WpYJ5sPZ7Lh/9T0o/Wez8ZUBFfvpiXf4OMWz855n+EyVidpM - 3hmzv0YKqN1ZoYkzHxuO00EAHbsciXtIK8Au/jmRB18wsHCQJ8Y85ZPBDphXeg/0L1vRHWcwWcMP - 1fFXiafX85bAPz1TRBQ0jOmcClVZs6ZfS/2ct6m5ws1vw/OkbIN3do9K+ct3CXyCZrmYkQUr20sp - BpQD7PPSoMInHiCHdBVztkueEtJS5T2xBKDmr78B+8r46xeM/95XeToowZ8Nr7ktP2X6wt3EvXPT - 6+5XE8NPO9zJoziq3rLFP9rWn/rh9Gxm+TB/wew4K/Xrvu/7TY/L9vntYSDHbs+OjePCK9c55Cgb - rTdt7w/+/P4D73fx5gerEDWfeuODp1x8XtQS/fFFPbfu8boCZwefV84mgZievOX1rE34k6OcHoeX - ZszyQfoqGTR/5PoV3GY+0H0FdPRLpnrLbyGGS4UalBZEPdG6Z2J0raEt1Wjrtx3BVGawhTlUCFWz - iWsG6xGo8HE4W5SMB+zNo3pV/vgv0dI6YOsiqm+o3pz31GU8D2blLNhwPlgulp/qmY1u98xg7qu3 - adZW3Cy+clbgxvfpgS8oWze/CWzfk/rUmXp66EcJ/OQgJ6QV/GasLulWrkcBhwnL4vkMK/1v/ekh - iYb4L9/QvX6ZmC+qH5gXMTQRz4wDbo6jw4RlX1zgs5dnkroqNsRdtdeVdehdLPQ6jpdjY3ewVfMH - sTb+PI10GxS59aPO6XMEq4RN6U//E/9QtV53bGwFvjWY01QQK2PxpnCGfGDGlPDt2Rsuduujjd9u - R8BUJn5Gf4IzMHb4+acXtNRRYXWwLKxQrc97bvd8Q57YPkm6TDX4XbJmKII/nUTiIgM20sVEIvfW - qJ+NcTPBW6n/+fd/+MmYaLkZeHxjiRwH/t2wde+1cCTdmRy+O58Jr9/LRKs96DSKPpd81dq79NfP - wGsfC+AvXuD38I6JgaK2n0+rJkHxNYhES9dLPsD7R4I/eB2JcbybMeevkYTG5lPSgwwzNgMnVeHm - r2Lpgr1+fr0aH/758ZoMb2z6LgcOiOIvJmnpGz1Tk+CLamdKJtROTi6g20FF3XSSqcP7Xixck4cA - Y79daam7SjwXOTWB9hUu9A9P+X21q+Uuc0OCD+mTzUQGX7BcBZ8eK2lthqupcijzwxtJ9iLvTZ+f - YcELLz/ICTlVzFxh0mEqN1fquwHXv46N+kX7l1tOAgsJmLndwkHNhgL56z9TKcIVAIN0peflNMUL - 1skAjdPLxGAxHW+pLsEOGvP9M+35uO/XEZ4g/HVXjaiCpHtL+bCGP/+JEgLceP7r5zyPUkoT2uX9 - 99vOmz49NriuOcqWffJLYZncA4pPog3GP/225fckrVLrrc8y3v35+dPsPoG3JjY/QFtu4mn/syJv - 1VJ7VZ6WpNObbVIwncZZ/b+2FMj/e0vBs9wuuv7tXjFb83OKfst+Jv7Y92y+VuoK6ZpCgo3tBDCU - ggrS8vSY3sJFNfgjZm+Umu6Bulo1xlO+C7F8e7jiBMgzMoQ93rcw+khnEkr7kPGpf4CokJBJTNd7 - 9iK4NCo8JleIV/jwveUTjRbcc/GA5/3x2bBc/ZZw9wtk8nh5rsebt+YL7N1engZR/HjsI4QrGODs - 0bxifb7QX1pDoE8aFrlm38/DsmTQXyuD6F/gxpyzM1YkRfBB7bre9ezzKyro/l4i0Y6Xpp9Lt+rQ - Sxt1aisKn6/5YLtwkGuR4qt78BYlpjsYlv6DlIrxbmYPVgWqR/2G+c/T8oSYa1RIrZtCLBbUuThf - BwWWXyeeupNb5Kty/7agrQ/iVFaiwhaS/mbYPbFFHDUCrNFsuwD2Dsk0p8kZrNLDkFAumhxN3d/Y - M30RUmC89uVUq3LbLKb/zpDnlxdqOe+o6V+dKMDrY/clRuXXPV9eHyVkc/aiXsW8nH3PlYsWcjkQ - W3hZxvIVCYbfN0T0BKsD4I5jqcNb8OCJR/warB9SlYhetMNEUaMyfjmtA4wKPifaOcrzlax3AWLx - VeHrJDhsVlF3Ab1uY5q5EuvZNWgTKMz2kVj+VfPEu9Ou6PW48ZOwe+ke96D6DP1IkmjSFylbj6Wq - ou6k/4ix90JDMDB6wwOJSnKIHZJz3NQlsDupP3ojHxCz4b5BcFsphNzDay70V62EBcQp9SxUsTGH - ugqjMB/xcrw0zYRB3SIsRA09eJMeCya7DkiYTpQeTdEFXBzsLpARMSQnjYw9a6Z5RqswUHJc4Kdf - 91hs/74XPUA8xIvb8i6qzz5H8p9Qx+Kpryb4tr2GHmKHxsOtWSJ4e9gisfNj2M/2MdhOSY86OZ8t - G/Dni6DDQNEMGhIlAcvui315e196R7/OWKuX+obCKf7gne0mYPXSfpYal54oTr8pWLQlhdCBsUQ2 - vR0LYybvlP2pOBNdzUo2SIbaoT1eomn3e+nN6jznGtzeuzs5mmLHhp4VA9QUtSHl3KsxP3yMC/qr - B1c7ujKxmaT5XzyTBzN6Fv/gTplQeCUaf9h7UxNRC172akVDt9Di9XS1S5ivdUPdngM9Lb/AgkS+ - z+QOrlosTjFMoRha2+i8383jIvmWweP1E0z/8v3Z2xEc6+BFCr2xc96qPztQFYpOHmszxwzfbRt0 - SvKlx1MOjQlFc43gHknU+dlCv6rvWkKBFl+IcVoOHv/bzR3kQ0mlIS8nHh/ojxlyt+Y4CcnxHq+d - CCyQukZM8OP2MfrvSZig6L7e5Br4XbNybWUj9+FeqZUc7zmPhPcKhXgNtvWsmza4RC26q3NHDsZD - zblCXgUYfn/7/37PF+xL2Bb+lxgX9WOIb1PJoJWkBjkqntMsfYZNSPIVUm9575qx9j+p8uQ/PzzP - wMr5VOYE9LvWAeZneegn7rpJ5Ov9R49ilnsi+gQror/oRg8nXzCYwB9LqGHtSexGa+OVc18d/LzM - kWz5BXjj62MIcq4hmVadYs48GBlKy0+LZTikObvuch/OeF6pmwSZ9+UrZ0VStpp410yXfN2+N/gM - UkQKfLrmKy3rEv08+0auJ0UDYiidKzQ+tIBGATbzWT7fJrCOrT8Nr8JhS30bvrAqJJ34gTuzzkv7 - FX5cjZEbiXxP+HwOF/h0sUbjZiwaEeQ7Th71X0atD9Abof9lFaxKf0/UuEpj0Qj9Fdq3R0W1sYu8 - 1WSPCT572yF+P0UxNzWpgNzZrKi2D5V8wR89QfdDAogTWFouTpX8BXJqGdQ4+5GxjHehhTQZbHIP - 5KLnxJ9locW3FnJcQ4GNJ73CKJkkh9ytdGFDiZoEcmhoJiUGbr82aqnDZpJ+mBf0GczWebFRIwyE - lB7/yrvB/ipw7LbZZjg9ARF+oQUw5leqhvcQ/IvvAAXXDW+jhr+eswE6T+FGzdpc+8VXhAEitlb0 - OLMmHq2aQqhefY+GVeQB/s3KCfrdJmncp9uL6nSS4PV38Ii7N7DBl9drgZK+44luJ0s/k0VKgTTm - u6n97Q65cIW+Cvc1pBihn+vxB0neKefzWFFtu0VImPxbBrLQsIl5oREbjkocwIuIAdG0SW7m/PNb - QXdLK5pDsMtZYO1cyJffnuRBd2kE7nAT5CMuRnK5riewfo57FbJWnUhA48JYadkV8J6+CbWvQ9tM - wT63oKNAQI4bnq/7nBOg8xk/JOEeszFbNlNgvAKbmNwj8MbnMW+hx+KRWk1RAC48HTgE7wMjxTnm - PeHVFAKcjuuOXvfJCfBWF6Zord1y4h+RadCr8bHQxh/oXWn8nHmjr8KvsN30B8Cl5wULuLB6qy/q - LNe0Z9P7VMBD5X9oKSl6LEZRYCJb6wHeOyPfzGL4w/D0tPcEw21esKyVEvDn1zDJ2NlmYVnMRuk9 - +BDD7T/5yrVfG+HzJacWd7OYEApWgo711yUnrd0s8/MxQj30JWLEJO3F1jpPkMiPmbhN0OVze15t - dNnrFX2EHztfrudsQuNBmqgjJgtYUkuxoeDBjjhy2Mdvm28ltBuqEzH8r8p455QGwCg4QMpFJQ2f - iPQLf2TqNjxevOXKPXVo/PyVaC+rYkzpHhnQ63kb3HBoAPt9ZAy7W1YR/bO+wPJdQAbM+3ZKYONb - k57qCfpG6UDx+9GydQDNG45H0uP5sYP5qu2OM+RMKPzjhzMxtQr9mHSkarWG/brVv7/6QYvA3SSr - LHLQ4i8e8aJI7cVuf7FgjxWZ/uM30dQksNU8OnVnyTT6PFpqtPFZmrSXPGZUtXXk8dgkJy5sAP85 - hQEyy9GjVvJuDOZlCoRfrl/+1Z+ZHoG6XbqDKQmh2M+VFkvwhQaDGGWb5otzCiJUrVnx933Z+p4j - S5nFqqK6nYTNutTZDmz1mhw5HMSryzlv4OayQe5+e4r5QS4yWJL8NTXmhD3GfChA58ndMBr0J2DS - M7aUrf7S2FMvDf/OZQF8RflA7PhUbvFBAnhYni3VH2bpra8m4eDa3HOcP+2s5xXHvgD/8WuIERgj - m+3br4NYCBpqCRfV42mRB0Dbyws1IsXJ563+w1rtmmnFocuESgw7lA2mRq6iXDH2LA0VnmUFUqN6 - hmCsk5QDW/2gZSVmbE0d5wIv2lDjy8aHF8/0KvhLxRO17BX1jJfVFDWS4eNqf3z2jKqqjhTj0U/c - 5ySA9XmpVESwZRPd0m2wjmspwM+v25Hj49l5czQU9h//wOAn6PnS3u8usPjEIxd7vfczbpmL2LUT - 8ZIph5yJurkC/2L79Kw6e2NKLGiDEICY+CczNpb9MWmhms8Fjb9zDNYU311lm5RH8DRZYLl+mlX5 - WjqPpR33NdhO/glA0z9sqgkt8z/+ClmKOIKVlGcL2IMKNCCoCH5e1F507Z8ELHC6UYe7C/lyhHUJ - RSf6Ud8Y/F4Q8jiVN/5ATubZi3nFURPoBo8zXhrnEzN7/QbwJMGW3p6j08/d+1rAXnfxtDgob+bK - ogPc3wR/EhKwxhSdLgFkmeSRi3mf4mnXnTMl3WFKPDtPGjG9P1tUUO5JCl0SG3ZI+AiAdm8RswBT - vEqR9QXg62c0DlJkLOeGRejQf89E+z5PYPld7i3Y+UAnWtQbuXCW4goF9anEClIcMLyPtxYugldM - 3LqdQg8FnAB6MQ4TCmTY062J9cfvqKX0NB+GRc7goowjvcGrYwxb/AE/ITz1BXI32LETBHQemwMh - 0Tw0jB5yDux8WScX0vSA/RQ3gHyoqITwP+xxdskXSIxyf9ty3uYDlNIKvsvtlP5b3RsLz3U6jOMQ - 0YNlSfE8NYHwh7d4tjMFDJ/lWANpOGjTco5AvtJGCP7pIx2HLhA+CRfAVW9icvzhBxvjyl2hf304 - xMqkvp/vN82HtWDDSTHfnjE/CnmCLzQZ1CuFBbAoSi0Y2bFLsUzCZtwFzwuMMe2p5YRGLq4X5w3B - F2fUROIl/uOLYONj1O5ffLPC582Cm54kjpKRhsXQUuUllq4kLlspp00iBCgoEkIfwr0x2AktMzx5 - 3xcJyspmoveZMcT64Yjnj0QNdj5WqkKtXKHEJLq3YDlPwSlZbOKFTAHfr6eboEXujHcYNN6y540C - OffoSGx9G6T1S4cZjp3lYuF1E/Kl+p4wHHffnDpKRhvmXN0SHkU/p6W+4nxGdDt5cagcWl7dl7GG - s1LDl1JSvHteqj9+bKEtfqijLlqzQF8S4Glox7/1baa/3//pk0RZ0oZ/aWKi3E/NmVhbPKx33i9g - edzUbPVNAKt28As6rQUkjPomZ9xguJBQPdjw6gCYvz9b8NvhkBi7a2EMkKASPlAkUmfd600fMm2A - Hb6+yaZvmtGJWgspipL/4x+Tent9gV7EX2pybsVYV7YFuMv1lTgGGuI5XUNO4R/7L/GNYegZaKoA - 1a6nTFx//DVznrU1QmVkTdW+mMHUbdd9h937grnM3bPldDoKUFVpg1ELTW8BY1cCf60NPOQv1My2 - 32ZAHY+3SdLCTzx6ob0CS7Mp1dO7Fa/mZEjQGqsX8RtX85htyhn6y58oHK5gPrThgKa5GuhV8X4N - azVNQTCKD396pV+KPEhRfbphchD3rrfe9rAG3/6JqbPh3cCf5gma73qZpPwYNrPO3d/K2Hzqqc+e - 9X/xkguTEcOY1+LlhbkWZbzfknSYMoP+6Re3rzANOlcEc7zdssAM800KhpJ4vSnfAW7vh6nmmLE4 - av1F+avnpXXK43/PnwnPJ92+n9f5rodhFFgz0dXDNqu9QQFYzqeEurlmx/O9POugOlh3jO56GLN9 - OvvoD/8IalTACWvGwTN/6bEsh16+0Cc1oWZWLvUsp2dMX3apsuEPwdYpz/lN7wHTAm/qPPKKLb6y - myBn+y4W9IpjS52kgpS+zBMJvkMbj1s9hct0FYir/8JmbbKgQmGGPHry2zGnAk9KuSFxSbTEuXqc - 7Q8ptI02Itp41gEnGXYHNz8N8zI0GlGEkoTOfovohn/N2M2Bhax0l1B1/g8AAAD//1ydSa+zurKG - 5/tXHH3TaCuQBpszowuw6AyBECJdXUECJDQhNDZg6fz3I2dt3cEdB5SI2FXv+1SZAm04TCR1ACqv - HnLcg6muQf7MwQ4jQpyvnrpNQw6+evExVBlYL0Puw1o0Z3SBnhOuRmCtv3ovWYcwI03pe2KfTg90 - U0Un5E5g1wKy27retr5e7GVxBQyLxzDi4wfaA9OPEtgthYZM7drYM+8eRmgmVkW+8YVA/hjBJ3ce - PcrTnq5fP7Li4w+Sm2xW57HmLKD2T4LXcjQzxj82EHeTjlP10Vb7osAR9NySR76n1JS8axN/eRTy - 4qEIl0F5euJ2/5RwW90hnR/D+QylqlWQAmJj6IER16yFM8CLVnT2VD8ulniU/Bxp/nobOLYeQZTc - nkS78fOwyLtxhQEdj0hOhSactrydw/2lY0diPljt64VP4JcPaemnGX73by+3AEmBqVTUrbY+KFTH - JVHNyyoHZqJBXyt79AgSJVx2N8cBXF3LHn/JDupSbfQVwiF7Y8azBrJ7vGrxEqUVMvLkBPa4XHqR - xTdyTbJxoEXRRqLfYZ0YwQXT9fpZIeisRkfqaX8Of3maZbU6kul7CFe2X4Ci/ujexg2PNuMxPhCy - 0CeekFwAzU7wDN6NPnm+H03VvPbLThzhaiNZvvVZn0ds1jCmCtGcRx8uqnGuAeOjRLW5YegsPxKg - sM1HJBvDma7509fFulY8pPqJaHcza/moX8YeH8v6lO2J9e5g8xosvCaPNqSjddCByyUhcjDn27vy - UViQ3l2TOKaf25Oojhp0ftYLcs/PdqDeQzJFN8xt5K6fW7UorzkRvXhIcLfhTJW++PdB2NmbnmjT - bc0WcYdnUGuZihDabtSpOh18qPqaT+Qqjys6qnoHjxFHyC1Ap2F9wiaH8AQ8ojzl67CSmb6AOECB - 8R7DXgGSFFHDUYwk6Ovq/pt/jOgCsURWGdAmTDeC+tO8kZyyU+dkBi+4c4O3t8peSH+v//pnp208 - e9ztcQ8FxcTIUQ77gd4UdYXf9Wl4aFFHJ3JTyPIzUbuZ0iV4trpgyFghhorbcL+ohxLeZkMip2V6 - DmOi9RAoqq17JN3igY6XYmRjNo1fXjxr1tUT2H7wdne+Udf15nlffevxup5keJU/8a8ft5TPMqxf - PcS/qYc54f4Jl1j96QHTl8Rk+aizua0ivPbFESn6NVHXhasVKNWHrXcI3Zyu0Y2dWnX0wFvmrKzm - a2nOEFXtC/OH6FbRe6PUUDX9Hsm2vgXLGgzOMU/zAulDjIbuuVJfPB4lG2XxG9FvvoXvU/FC6uHY - DcsZlO2vP2Lxk86cBO6wecYuMXynH+ZVVASQFthC0kem1bLxn5H4OqY+3sxOOuwS78L8v9Lgg+FJ - FQ+m/g7CMBSJZnpmtvbaIQE3/8ET5ck7A1GWXQrWHSbIuJ5Nm493WgxlQam8nUViyn39JOPBmM59 - W82mkdS/vIH582y9k7mD70+3IT/kROgwzOILMJ7rHYFXD/P5GKTwdUx8cg9jUBGdU1sQ5GzwHdhN - 4eqIrgD182MkjkNUiuPrR4Czt65ICa7msPiz3sHTVdcw3UGiPh/T5w6/vCcfxCSjc/2yREEft0i5 - slPznup24Mv/z7BwVEqoMorxrTQw03vh4iqlA3owNMQUnY39cfheANle54hCjWaYEn01f/mby5N9 - NkHnwMFz9JFxzfQtVdighbGGLYlY/JhvMZQA85tEVl5eteR1NELV1/3v/eGv32V+3eu/60+6TT38 - 6i20GRuVmnuowSjc+zh7BRv6+7wq5UWJl/sK06v1CoPawGzQsgaWvjpz4odHGl59rw5nTkdnWFU5 - 8OgOIpVCfongRTR9Ygj2Z6C8fSvhY6N33jFAzUA39roRslsqYX6bXlUSeYUFgflGxI1ySf3qIcB4 - sgf3e0Ndf4yNBBEkGlEN4fAbD6Aa3Fx0miim68FZd9C8Y46gAxnAtGoTBGVRQWSdUsneMZ4Ak5XK - eJN0CaW6LB0EYsYBUlj8+K0vZYdsIW46mxXewvYOmq0socLJNXX3jDtFYPrdo1Pd0XV0uVH82NaN - KFxzDLsccblIgpwjkrSd6PLl6Z27S4mcZkVFmn67O7L9ipnfowur78Hrx7CRUlQqXfD+qMP7+HY9 - Tt3q9n6Y+RKweIlpXh9C+rSPG/j2yztCYlXS5cp9FCgllcnqbY26olKb2RRyifz0QQrWtLAECB+Y - oi+fWfoq5YTP4Z6Q9L6R6V4ZXy386rl9/KPS9XRuNVj8nDKklGOXrZFcRt//C2mfYlvRqAt6cb+r - OxRbqVHt5NNyhnl6L7zDuSrDsev9VEw088T49pPOr+slF7/8rMiiB2C/V4L8e/HQqWUlbEl8xTDo - hi1RiXIPcTZKFmR8wBNh2dAxftaa+DjFgOjO9WkvI2e20Grklrhr1IeUt4NSTDtuIq7htIAeWnyA - S5J3iOU3dS80dgu5j3lGoXJvMsLqhbCz3jpRigNV128+ZOuHaEZKVQwUa/3laTZvv9TFII0DKxTk - rD60obRpRgkgkBgk67ftQBOyduJmJ07IWMzzMOtqp8EvD1SdrgRE41sB+psmQhIn1zZ1Z1hCdj/y - T5GoLjQv76J43iVEkuyEfuOBuDkcNCSHnDGwepgPMyE28ZHFMyoB24JHuclQ8nrl1XD1x+jLN3CT - 0zybLyiURFTVL+Jz7K0krB4tsvxCHM/dh6t4PrwEuOkASfnBoPv0meoQv9Mf9AOvH5XCDmpw2Pdv - YmHhmOG8rQ7i61kPKA1BPyylX8aw6MaW+QWozos9vOBWmCNSTCTLpkvwckTpEnLeLITOQLIT9OHx - qNjIvb3rDBuBNX95Dg53Zqou5B76MOjrmJiPQ2njSO5iUPwYmdd0vTXwdiDNX72C7O16o2u2uTlQ - LBqVuNa5ZvXSMYZbnD6IjiqbLqnYRPAcxhpi/L/65V3A8M/EFAeVUj8EKazSOMFzSyzAB9aPBz7O - I0bKDdwAvfdxCq3Pe+91LL/SIk1L+NbMhsRjwdmjKwUS/Kel4K9//et/WIPAn7Z75A1rDJjyZfr7 - /1oF/t7/PbZp03wbC/7gMS3zP//+pwXhz2fo2s/0v1NX5++R9RqIwoH/bTf4M3VT2vy/j/5iX/if - v/4LAAD//wMA0gD2croFAgA= + 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 + AgA= headers: CF-RAY: - - 96665c82dd8acfe5-SJC + - 96a9ce1949ffebe3-SJC Connection: - keep-alive Content-Encoding: @@ -3002,14 +3001,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:21 GMT + - Tue, 05 Aug 2025 22:41:59 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=3JUChou_j71oqT.eFAUEI.fy44NOfmyXp6zqhHXRrQI-1753726521-1.0.1.1-wgl04pfyWkQqatEBB7WMBsJNB4PcOG8s0bV7lGUXj6XkyphhxtSaXp4qwSgFfoWAjHAwDmZ1HCKDGEHWLbEZUCG3qQ3uAN5qbZZRz9iLWtc; - path=/; expires=Mon, 28-Jul-25 18:45:21 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=st_40lLJ72GQsjaCgEOIfpcMoMgIciPl5Ra27ZNsMhU-1754433719-1.0.1.1-46nwxroMTGc3UqRFNB9D0xYUVcOypZCECIzXq5l.NDjPeh_NI1Nr7UZAQCsC9QNVFxyMW0D5c8EtlWMzPl2TpvSonO8d3pzmERQ6IQss.0E; + path=/; expires=Tue, 05-Aug-25 23:11:59 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=Iz7PZK7VRZcOT.9zgsctYqFDIEH8voMPmjfoBzqIlEM-1753726521306-0.0.1.1-604800000; + - _cfuvid=8kfCvFdP5Iabr.xxXK6Zi1GojXt1JfYakjpml0J4mak-1754433719792-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -3028,7 +3027,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "403" + - "435" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3036,23 +3035,23 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-86d465658-xks7r + - envoy-router-dd5dc9fdf-542hf x-envoy-upstream-service-time: - - "429" + - "453" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - - "199979817" + - "199979820" x-ratelimit-reset-requests: - 0s x-ratelimit-reset-tokens: - 6ms x-request-id: - - req_9556291208b21712e27cc5dc3faed125 + - req_5b61307347b0ed7b103a6d2f412ac176 status: code: 200 message: OK @@ -3076,7 +3075,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3086,7 +3085,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3213,7 +3212,7 @@ interactions: 98//e/xf61/917/+FwAAAP//AwBe8oQ14CAAAA== headers: CF-RAY: - - 96665c86a8e9cfe5-SJC + - 96a9ce1d7809ebe3-SJC Connection: - keep-alive Content-Encoding: @@ -3221,7 +3220,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:21 GMT + - Tue, 05 Aug 2025 22:42:00 GMT Server: - cloudflare Transfer-Encoding: @@ -3241,7 +3240,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "138" + - "127" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3249,15 +3248,15 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-5fc5c4954b-ssdrl + - envoy-router-7c6b8c8c54-n4j27 x-envoy-upstream-service-time: - - "140" + - "135" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - "199999930" x-ratelimit-reset-requests: @@ -3265,7 +3264,7 @@ interactions: x-ratelimit-reset-tokens: - 0s x-request-id: - - req_977c47c171fb453c1df8c5a9aaa59338 + - req_6d9c3c48344f13d4c96f2ad30d280302 status: code: 200 message: OK @@ -3285,7 +3284,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3295,7 +3294,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3311,118 +3310,118 @@ interactions: response: body: string: !!binary | - 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 + /3P5X9s/+q9//R8AAAD//wMAR9bRdN4gAAA= headers: CF-RAY: - - 96665c88bce3cfbc-SJC + - 96a9ce1f9e24eb2c-SJC Connection: - keep-alive Content-Encoding: @@ -3430,14 +3429,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:21 GMT + - Tue, 05 Aug 2025 22:42:00 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=.1I2A6ZESGbSTwcKtLr1Noe0PRcViHJiRIiLOqFhZQ0-1753726521-1.0.1.1-StmF3KW14wOM5kp5c9pJ7iEf..2RC6sg4urVAG83EMvaLj31ldYJP54PjwLxNVLwen3RskrG.UZ6Gpgpg5wNGTguf6qlnOE1FKCHnTDJ1aI; - path=/; expires=Mon, 28-Jul-25 18:45:21 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=nIDAXtDgVYwRU4mVocV0jQhoK6dpFbF4ba_gfRApSF0-1754433720-1.0.1.1-r4NU_rdSyedXJfEKbGI0VjL56mxQPQTCL812OYEIzg3ihojELjw7bTckTAfyjddJXkjOZKcQDPWgBcikKDSCiJhB3u3oY3Fm39b0FLiUjLQ; + path=/; expires=Tue, 05-Aug-25 23:12:00 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=P1b_lJTcCyeN.QnADurbWUDM0r7.s6ZEMt8VVNuHWLA-1753726521863-0.0.1.1-604800000; + - _cfuvid=Za8_TvYptu4uRexhc1W2IzT09u458XpgPydkWGceW9Y-1754433720639-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -3456,7 +3455,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "81" + - "291" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3464,15 +3463,15 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-f55cd75d4-7zhl8 + - envoy-router-5c99b748c-tpvx2 x-envoy-upstream-service-time: - - "88" + - "295" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - "199999996" x-ratelimit-reset-requests: @@ -3480,7 +3479,7 @@ interactions: x-ratelimit-reset-tokens: - 0s x-request-id: - - req_ff646ed5ce13c08176b0b12798e52128 + - req_b667f40dca80bd5e63762b2ed979ea0b status: code: 200 message: OK @@ -3488,78 +3487,81 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 25-28: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n2021, - 25, 1315\u20131360.\\n\\n\\n (9) Wellawatte, G. P.; Seshadri, A.; White, A. - D. Model agnostic generation of counter-\\n\\n factual explanations for - molecules. Chemical Science 2022, 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. - A.; White, A. D. Explaining structure-activity relationships using locally\\n\\n - \ faithful surrogate models. chemrxiv 2022,\\n\\n\\n(11) Gormley, A. J.; - Webb, M. A. Machine learning in combinatorial polymer chemistry.\\n\\n Nature - Reviews Materials 2021,\\n\\n\\n(12) Gomes, C. P.; Fink, D.; Dover, R. B. V.; - Gregoire, J. M. Computational sustainability\\n\\n meets materials science. - Nature Reviews Materials 2021,\\n\\n\\n(13) On scientific understanding with - artificial intelligence. Nature Reviews Physics 2022\\n\\n 4:12 2022, 4, - 761\u2013769.\\n\\n\\n(14) Arrieta, A. B.; D\xB4\u0131az-Rodr\xB4\u0131guez, - N.; Ser, J. D.; Bennetot, A.; Tabik, S.; Barbado, A.;\\n\\n Garcia, S.; - Gil-Lopez, S.; Molina, D.; Benjamins, R.; Chatila, R.; Herrera, F. Explain-\\n\\n - \ able Artificial Intelligence (XAI): Concepts, Taxonomies, Opportunities - and Chal-\\n\\n lenges toward Responsible AI. Information Fusion 2019, 58, - 82\u2013115.\\n\\n\\n(15) Murdoch, W. J.; Singh, C.; Kumbier, K.; Abbasi-Asl, - R.; Yu, B. Interpretable machine\\n\\n learning: definitions, methods, and - applications. ArXiv 2019, abs/1901.04592.\\n\\n\\n 25(16) - Boobier, S.; Osbourn, A.; Mitchell, J. B. Can human experts predict solubility - better\\n\\n than computers? Journal of cheminformatics 2017, 9, 1\u201314.\\n\\n\\n(17) - Lee, J. D.; See, K. A. Trust in automation: Designing for appropriate reliance. - Human\\n\\n Factors 2004, 46, 50\u201380.\\n\\n\\n(18) Bolukbasi, T.; Chang, - K.-W.; Zou, J. Y.; Saligrama, V.; Kalai, A. T. Man is to com-\\n\\n puter - programmer as woman is to homemaker? debiasing word embeddings. Advances\\n\\n - \ in neural information processing systems 2016, 29.\\n\\n\\n(19) Buolamwini, - J.; Gebru, T. Gender Shades: Intersectional Accuracy Disparities in\\n\\n Commercial - Gender Classification. Proceedings of the 1st Conference on Fairness,\\n\\n - \ Accountability and Transparency. 2018; pp 77\u201391.\\n\\n\\n(20) Lapuschkin, - S.; W\xA8aldchen, S.; Binder, A.; Montavon, G.; Samek, W.; M\xA8uller, K.-R.\\n\\n - \ Unmasking Clever Hans predictors and assessing what machines really learn. - Nature\\n\\n communications 2019, 10, 1\u20138.\\n\\n\\n(21) DeGrave, A. - J.; Janizek, J. D.; Lee, S.-I. AI for radiographic COVID-19 detection\\n\\n - \ selects shortcuts over signal. Nature Machine Intelligence 2021, 3, 610\u2013619.\\n\\n\\n(22) - Goodman, B.; Flaxman, S. European Union regulations on algorithmic decision-\\n\\n - \ making and a \u201Cright to explanation\u201D. AI Magazine 2017, 38, 50\u201357.\\n\\n\\n(23) - ACT, A. I. European Commission. On Artificial Intelligence: A European Approach\\n\\n - \ to Excellence and Trust. 2021, COM/2021/206.\\n\\n\\n(24) Blueprint for - an AI Bill of Rights, The White House. 2022; https://www.whitehouse.\\n\\n gov/ostp/ai-bill-of-rights/.\\n\\n\\n(25) - Miller, T. Explanation in artificial intelligence: Insights from the social - sciences. Ar-\\n\\n tificial intelligence 2019, 267, 1\u201338.\\n\\n\\n\\n - \ 26(26) Murdoch, W. J.; Singh, C.; Kumbier, - K.; Abbasi-Asl, R.; Yu, B. Definitions, meth-\\n\\n ods, and applications - in interpretable machine learning. Proceedings of the National\\n\\n Academy - of Sciences of the United States of America 2019, 116, 22071\u201322080.\\n\\n\\n(27) - Gunning, D.; Aha, D. DARPA\u2019s Explainable Artificial Intelligence (XAI) - Program.\\n\\n AI Magazine 2019, 40, 44\u201358.\\n\\n\\n(28) Biran, O.; - Cotton, C. Explanation and justification in machine learning: A survey.\\n\\n - \ IJCAI-17 workshop on explainable AI (XAI). 2017; pp 8\u201313.\\n\\n\\n(29) - Palacio, S.; Lucieri, A.; Munir, M.; Ahmed, S.; Hees, J.; Dengel, A. Xai handbook:\\n\\n - \ Towards a unified framework for explainable ai. Proceedings of the IEEE/CVF - Inter-\\n\\n national Conference on Computer Vision. 2021; pp 3766\u20133775.\\n\\n\\n(30) - Kuhn, D. R.; Kacker, R. N.; Lei, Y.; Simos, D. E. Combinatorial Methods for - Ex-\\n\\n plainable AI. 2020 IEEE International Conference on Software Testing, - Verification\\n\\n and Validation Workshops (ICSTW) 2020, 167\u2013170.\\n\\n\\n(31) - Seshadri, A.; Gandhi, H. A.; Wellawatte, G. P.; White, A. D. Why does that molecule\\n\\n - \ smell? ChemRxiv 2022,\\n\\n\\n(32) Das, A.; Rad, P. Opportunities and challenges - in explainable artificial intelligence\\n\\n (xai): A survey. arXiv preprint - arXiv:2006.11371 2020,\\n\\n\\n(33) Machlev, R.; Heistrene, L.; Perl, M.; Levy, - K. Y.; Belikov, J.; Mannor, S.; Levron, Y.\\n\\n Explainable Artificial - Intelligence (XAI) techniques for energy and power systems:\\n\\n Review, - challenges and opportunities. Energy and AI 2022, 9, 100169.\\n\\n\\n(34) Koh, - P. W.; Liang, P. Understanding black-box predictions via influence functions.\\n\\n - \ International Conference on Machine Learning. 2017; pp 1885\u20131894.\\n\\n\\n(35) - Ribeiro, M. T.; Singh, S.; Guestrin, C. \u201D Why should i trust you?\u201D - Explaining the\\n\\n predictions of any classifier. Proceedings of the 22nd - ACM SIGKDD international\\n\\n\\n 27 conference - on knowledge discovery and data \\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 1-3: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n + A Perspective on Explanations of Molecular\\n\\n Prediction Models\\n\\n\\nGeemi + P. Wellawatte,\u2020 Heta A. Gandhi,\u2021 Aditi Seshadri,\u2021 and Andrew\\n\\n + \ D. White\u2217,\u2021\\n\\n\\n \u2020Department + of Chemistry, University of Rochester, Rochester, NY, 14627\\n\\n\u2021Department + of Chemical Engineering, University of Rochester, Rochester, NY, 14627\\n\\n + \ \xB6Vial Health Technology, Inc., San Francisco, CA 94111\\n\\n\\n + \ E-mail: andrew.white@rochester.edu\\n\\n\\n\\n Abstract\\n\\n\\n + \ Chemists can be skeptical in using deep learning (DL) in decision making, + due to\\n\\n the lack of interpretability in \u201Cblack-box\u201D models. + \ Explainable artificial intelligence\\n\\n (XAI) is a branch of AI which + addresses this drawback by providing tools to interpret\\n\\n DL models and + their predictions. We review the principles of XAI in the domain of\\n\\n chemistry + and emerging methods for creating and evaluating explanations. Then we\\n\\n + \ focus on methods developed by our group and their applications in predicting + solubil-\\n\\n ity, blood-brain barrier permeability, and the scent of molecules. + We show that XAI\\n\\n methods like chemical counterfactuals and descriptor + explanations can explain DL pre-\\n\\n dictions while giving insight into + structure-property relationships. Finally, we discuss\\n\\n how a two-step + process of developing a black-box model and explaining predictions can\\n\\n + \ uncover structure-property relationships.\\n\\n\\n\\n\\n\\n 1Introduction\\n\\n\\nDeep + learning (DL) is advancing the boundaries of computational chemistry because + it can\\n\\naccurately model non-linear structure-function relationships.1\u20133 + Applications of DL can be\\n\\nfound in a broad spectrum spanning from quantum + computing4,5 to drug discovery6\u201310 to\\n\\nmaterials design.11,12 According + to Kre 13, DL models can contribute to scientific discovery\\n\\nin three \u201Cdimensions\u201D + - 1) as a \u2018computational microscope\u2019 to gain insight which are not\\n\\nattainable + through experiments 2) as a \u2018resource of inspiration\u2019 to motivate + scientific thinking\\n\\n3) as an \u2018agent of understanding\u2019 to uncover + new observations. However, the rationale of\\n\\na DL prediction is not always + apparent due to the model architecture consisting a large\\n\\nparameter count.14,15 + DL models are thus often termed\u201Cblack box\u201D models. We can only\\n\\nreason + about the input and output of an DL model, not the underlying cause that leads + to\\n\\na specific prediction.\\n\\n It is routine in chemistry now for DL + to exceed human level performance \u2014 humans are\\n\\nnot good at predicting + solubility from structure for example161 \u2014 and so understanding how\\n\\na + model makes predictions can guide hypotheses. This is in contrast to a topic + like finding\\n\\na stop sign in an image, where there is little new to be learned + about visual perception\\n\\nby explaining a DL model. However, the black box + nature of DL has its own limitations.\\n\\nUsers are more likely to trust and + use predictions from a model if they can understand why\\n\\nthe prediction + was made.17 Explaining predictions can help developers of DL models ensure\\n\\nthe + model is not learning spurious correlations.18,19 Two infamous examples are, + 1)neural\\n\\nnetworks that learned to recognize horses by looking for a photographer\u2019s + watermark20 and,\\n\\n2) neural networks that predicted a COVID-19 diagnoses + by looking at the font choice\\n\\non medical images.21 As a result, there is + an emerging regulatory framework for when any\\n\\ncomputer algorithms impact + humans.22\u201324 Although we know of no examples yet in chemistry,\\n\\none + can assume the use of AI in predicting toxicity, carcinogenicity, and environmental\\n\\npersistence + will require rationale for the predictions due to regulatory consequences.\\n\\n + \ 1there does happen to be one human solubility savant, participant 11, who + matched machine performance\\n\\n\\n 2 + \ EXplainable Artificial Intelligence (XAI) is a field of growing importance + that aims to\\n\\nprovide model interpretations of DL predictions Three terms + highly associated with XAI are,\\n\\ninterpretability, justifications and explainability. + Miller 25 defines that interpretability of a\\n\\nmodel refers to the degree + of human understandability intrinsic within the model. Murdoch\\n\\net al. 26 + clarify that interpretability can be perceived as \u201Cknowledge\u201D which + provide insight\\n\\nto a particular problem. Justifications are quantitative + metrics tell the users \u201Cwhy the\\n\\nmodel should be trusted,\u201D like + test error.27 Justifications are evidence which defend why a\\n\\nprediction + is trustworthy.25 An \u201Cexplanation\u201D is a description on why a certain + prediction was\\n\\nmade.9,28 Interpretability and explanation are often used + interchangeably. Arrieta et al. 14\\n\\ndistinguish that interpretability is + a passive characteristic of a model, whereas explainability\\n\\nis an active + characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, + an explanation is extra information that gives the context and a cause for one + or\\n\\nmore \\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3568,13 +3570,13 @@ interactions: connection: - keep-alive content-length: - - "5833" + - "6093" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3584,7 +3586,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3600,24 +3602,24 @@ interactions: response: body: string: !!binary | - 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 headers: CF-RAY: - - 96665c8a1902d03d-SJC + - 96a9ce227b8f155d-SJC Connection: - keep-alive Content-Encoding: @@ -3625,15 +3627,17 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:24 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=VMc2K8osm8kO1ZIe0s1SjsitnUjVPsWldkrtEZxrglQ-1753726524-1.0.1.1-RZ0c4um3RJbMVJR17FWel9eIUEcVVl_DwcVpcMYk2Q4UCrhnh5WLenZ.q2F2FfboI0wxFhnrZMnoxRK3W71Xqm_.Wn9zcZAC6ZQEt9bHtno; - path=/; expires=Mon, 28-Jul-25 18:45:24 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=3jMYzMYRF5w5WTXIVJvgy8ncV02DxrX7Bk2MytANtpg-1754433722-1.0.1.1-hSX4TG6CT2Srkc15C4tCYolP6XAHkGWptMxjc6N4KMUdvMr6YBAxNPNTnBD.no6lxCuaIDG04cAOQdmx93fOQWELeAVQVigcDbpjVsrNSvc; + path=/; expires=Tue, 05-Aug-25 23:12:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=2ORelj029GiOqkqqnvcbHbIslaeSNDJn9tHCSxIvYtA-1753726524028-0.0.1.1-604800000; + - _cfuvid=aWZhFYyBpILlz090D9nXACDTmUbL3BNqf1y9cdXvqI8-1754433722510-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -3647,15 +3651,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2022" + - "1706" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2026" + - "1710" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -3663,13 +3665,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998614" + - "29998544" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_7ba2b5d36f0ed551aeed2f4045837905 + - req_5d9877687f3c4bd18acd4ab8bf8cac30 status: code: 200 message: OK @@ -3677,76 +3679,79 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 3-5: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n - a passive characteristic of a model, whereas explainability\\n\\nis an active - characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, - an explanation is extra information that gives the context and a cause for one - or\\n\\nmore predictions.29 We adopt the same nomenclature in this perspective.\\n\\n - \ Accuracy and interpretability are two attractive characteristics of DL models. - However,\\n\\nDL models are often highly accurate and less interpretable.28,30 - XAI provides a way to avoid\\n\\nthat trade-off in chemical property prediction. - XAI can be viewed as a two-step process.\\n\\nFirst, we develop an accurate - but uninterpretable DL model. Next, we add explanations to\\n\\npredictions. - Ideally, if the DL model has correctly learned the input-output relations, then\\n\\nthe - explanations should give insight into the underlying mechanism.\\n\\n In the - remainder of this article, we review recent approaches for XAI of chemical property\\n\\nprediction - while drawing specific examples from our recent XAI work.9,10,31 We show how\\n\\nin - various systems these methods yield explanations that are consistent with known - and\\n\\nmechanisms in structure-property relationships.\\n\\n\\n\\n\\n\\n 3Theory\\n\\n\\nIn - this work, we aim to assemble a common taxonomy for the landscape of XAI while\\n\\nproviding - our perspectives. We utilized the vocabulary proposed by Das and Rad 32 to classify\\n\\nXAI. - According to their classification, interpretations can be categorized as global - or local\\n\\ninterpretations on the basis of \u201Cwhat is being explained?\u201D. - For example, counterfactuals are\\n\\nlocal interpretations, as these can explain - only a given instance. The second classification is\\n\\nbased on the relation - between the model and the interpretation \u2013 is interpretability post-hoc\\n\\n(extrinsic) - or intrinsic to the model?.32,33 An intrinsic XAI method is part of the model\\n\\nand - is self-explanatory32 These are also referred to as white-box models to contrast - them\\n\\nwith non-interpretable black box models.28 An extrinsic method is - one that can be applied\\n\\npost-training to any model.33 Post-hoc methods - found in the literature focus on interpreting\\n\\nmodels through 1) training - data34 and feature attribution,35 2) surrogate models10 and, 3)\\n\\ncounterfactual9 - or contrastive explanations.36\\n\\n Often, what is a \u201Cgood\u201D explanation - and what are the required components of an ex-\\n\\nplanation are debated.32,37,38 - Palacio et al. 29 state that the lack of a standard framework\\n\\nhas caused - the inability to evaluate the interpretability of a model. In physical sciences,\\n\\nwe - may instead consider if the explanations somehow reflect and expand our understanding\\n\\nof - physical phenomena. For example, Oviedo et al. 39 propose that a model explanation\\n\\ncan - be evaluated by considering its agreement with physical observations, which - they term\\n\\n\u201Ccorrectness.\u201D For example, if an explanation suggests - that polarity affects solubility of a\\n\\nmolecule, and the experimental evidence - strengthen the hypothesis, then the explanation\\n\\nis assumed \u201Ccorrect\u201D. - In instances where such mechanistic knowledge is sparse, expert bi-\\n\\nases - and subjectivity can be used to measure the correctness.40 Other similar metrics - of\\n\\ncorrectness such as \u201Cexplanation satisfaction scale\u201D can be - found in the literature.41,42 In a\\n\\nrecent study, Humer et al. 43 introduced - CIME an interactive web-based tool that allows the\\n\\nusers to inspect model - explanations. The aim of this study is to bridge the gap between\\n\\nanalysis - of XAI methods. Based on the above discussion, we identify that an agreed upon\\n\\n\\n - \ 4evaluation metric is necessary in XAI. - We suggest the following attributes can be used to\\n\\nevaluate explanations. - However, the relative importance of each attribute may depend on\\n\\nthe application - - actionability may not be as important as faithfulness when evaluating the\\n\\ninterpretability - of a static physics based model. Therefore, one can select relative importance\\n\\nof - each attribute based on the application.\\n\\n\\n \u2022 Actionable. Is it - clear how we could change the input features to modify the output?\\n\\n\\n - \ \u2022 Complete. Does the explanation completely account for the prediction? - Did features\\n\\n not included in the explanation really contribute zero - effect to the prediction?44\\n\\n\\n \u2022 Correct. Does the explanation - agree with hypothesized or known underlying physical\\n\\n mechanism?39\\n\\n\\n - \ \u2022 Domain Applicable. Does the explanation use language and concepts - of domain ex-\\n\\n perts?\\n\\n\\n \u2022 Fidelity/Faithful. Does the - explanation agree with the black box model?\\n\\n\\n \u2022 Robust. Does the - explanation change significantly with small changes to the model or\\n\\n instance - being explained?\\n\\n\\n \u2022 Sparse/Succinct. Is the explanation succinct?\\n\\n\\n - \ We present an example evaluation of the SHAP explanation method based on the - above\\n\\nattributes.44 Shapley values were proposed as a local explanation - method based on feature\\n\\nattribution, as they offer a complete explanation - - each feature i\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 20-22: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nnal + molecule. The counterfactual indicates\\nstructural changes to ethyl benzoate + that would result in the model predicting the molecule\\nto not contain the + \u2018fruity\u2019 scent. The Tanimoto96 similarity between the counterfactual + and\\n2,4 decadienal is also provided. Republished with permission from authors.31\\n\\n\\n + \ The molecule 2,4-decadienal, which is known to have a \u2018fatty\u2019 scent, + is analyzed in Fig-\\n\\nure 5.142,143 The resulting counterfactual, which has + a shorter carbon chain and no carbonyl\\n\\ngroups, highlights the influence + of these structural features on the \u2018fatty\u2019 scent of 2,4 deca-\\n\\ndienal. + To generalize to other molecules, Seshadri et al. 31 applied the descriptor + attribution\\n\\nmethod to obtain global explanations for the scents. The global + explanation for the \u2018fatty\u2019\\n\\nscent was generated by gathering + chemical spaces around many \u2018fatty\u2019 scented molecules.\\n\\nThe resulting + natural language explanation is: \u201CThe molecular property \u201Cfatty scent\u201D + can\\n\\nbe explained by the presence of a heptanyl fragment, two CH2 groups + separated by four\\n\\n\\n 20bonds, and + a C=O double bond, as well as the lack of more than one or two O atoms.\u201D31\\n\\nThe + importance of a heptanyl fragment aligns with that reported in the literature, + as \u2018fatty\u2019\\n\\nmolecules often have a long carbon chain.144 Furthermore, + the importance of a C=O dou-\\n\\nble bond is supported by the findings reported + by Licon et al. 145, where in addition to a\\n\\n\u201Clarger carbon-chain skeleton\u201D, + they found that \u2018fatty\u2019 molecules also had \u201Caldehyde or acid\\n\\nfunctions\u201D.145 + For the \u2018pineapple\u2019 scent, the following natural language explanation + was ob-\\n\\ntained: \u201CThe molecular property \u201Cpineapple scent\u201D + can be explained by the presence of ester,\\n\\nethyl/ether O group, alkene/ether + O group, and C=O double bond, as well as the absence of\\n\\nan Aromatic atom.\u201D31 + Esters, such as ethyl 2-methylbutyrate, are present in many pineap-\\n\\nple + volatile compounds.146,147 The combination of a C=O double bond with an ether + could\\n\\nalso correspond to an ester group. Additionally, aldehydes and ketones, + which contain C=O\\n\\ndouble bonds, are also common in pineapple volatile compounds.146,148\\n\\n\\nDiscussion\\n\\n\\nWe + have shown two post-hoc XAI applications based on molecular counterfactual expla-\\n\\nnations9 + and descriptor explanations.10 These methods can be used to explain black-box\\n\\nmodels + whose input is a molecule. These two methods can be applied for both classification\\n\\nand + regression tasks. Note that the \u201Ccorrectness\u201D of the explanations + strongly depends on\\n\\nthe accuracy of the black-box model.\\n\\n A molecular + counterfactual is one with a minimal distance from a base molecular, but\\n\\nwith + contrasting chemical properties. In the above examples, we used Tanimoto similar-\\n\\nity96 + of ECFP4 fingreprints97 as distance, although this should be explored in the + future.\\n\\nCounterfactual explanations are useful because they are represented + as chemical structures\\n\\n(familiar to domain experts), sparse, and are actionable. + A few other popular examples of\\n\\ncounterfactual on graph methods are GNNExplainer, + MEG and CF-GNNExplainer.69,104,105\\n\\n The descriptor explanation method + developed by Gandhi and White 10 fits a self-explaining\\n\\n\\n\\n 21surrogate + model to explain the black-box model. This is similar to the GraphLIME87 method,\\n\\nalthough + we have the flexibility to use explanation features other than subgraphs. Futher-\\n\\nmore, + we show that natural language combined with chemical descriptor attributions + can\\n\\ncreate explanations useful for chemists, thus enhancing the accessibility + of DL in chemistry.\\n\\nLastly, we examined if XAI can be used beyond interpretation. + Work by Seshadri et al. 31 use\\n\\nMMACE and surrogate model explanations to + analyze the structure-property relationships\\n\\nof scent. They recovered known + structure-property relationships for molecular scent purely\\n\\nfrom explanations, + demonstrating the usefulness of a two step process: fit an accurate model\\n\\nand + then explain it.\\n\\n Choosing among the plethora of XAI methods described + here is still an open question.\\n\\nIt remains to be seen if there will ever + be a consensus benchmark, since this field sits on\\n\\nthe intersection of + human-machine interaction, machine learning, and philosophy (i.e., what\\n\\nconstitutes + an explanation?). Our current advice is to consider first the audience \u2013 + domain\\n\\nexperts or ML experts or non-experts \u2013 and what the explanations + should accomplish. Are\\n\\nthey meant to inform data selection or model building, + how a prediction is used, or how the\\n\\nfeatures can be changed to affect + the outcome. The second consideration is what access you\\n\\nhave to the underlying + model. The ability to have model derivatives or propagate gradients\\n\\nto + the input to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe + should seek to explain molecular property prediction models because users are + more\\n\\nlikely to trust explained predictions, and explanations can help assess + if the model is learning\\n\\nt\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3755,13 +3760,13 @@ interactions: connection: - keep-alive content-length: - - "5792" + - "6087" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3771,7 +3776,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3787,24 +3792,23 @@ interactions: response: body: string: !!binary | - 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 headers: CF-RAY: - - 96665c8a0cf7cf26-SJC + - 96a9ce227cb3fa96-SJC Connection: - keep-alive Content-Encoding: @@ -3812,17 +3816,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:25 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=VJDkENpRsapGMYClJsuPE5e3jQN7J_EYU4BnZiN7RzE-1753726525-1.0.1.1-_L0DFcMIk.ktRKII82zNvKFz1Z3NfIRSzrqwzLzFe7B9ds.5jOf1SZARYbOHjsICq25iSh0MAo3vzgSa9_Azds4VCdcCEElPXjULgOAyojc; - path=/; expires=Mon, 28-Jul-25 18:45:25 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=KqINeZe_N2m2VIgR6TS_FYzZ9IAHM7JLT6zWQ1rXj_E-1754433722-1.0.1.1-wqf89iSkX.jLKrnigBDm0NiyzhHzxDch_gClzreNaUNiNryj74nBBOsSfv6UHFdByJW8ocTSvKJJoFqpElfxRZIx3v5I4gCwJXNL8knKyaA; + path=/; expires=Tue, 05-Aug-25 23:12:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=CAWISLg9jFPC0E1CcuMRur81pIZxXa2MqXKDCYNJcdU-1753726525235-0.0.1.1-604800000; + - _cfuvid=nusUYJVhKC34H7nJuPXGtw5n68o6_mBAMqF41dT60.8-1754433722684-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -3836,13 +3838,15 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2745" + - "1879" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "3227" + - "1883" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -3850,13 +3854,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998619" + - "29998544" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - a3932dc2-0608-48ec-91a1-09deb5569ac7 + - req_fb3af37b596d827a9ebbb98d102eace6 status: code: 200 message: OK @@ -3864,78 +3868,79 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 1-3: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n - A Perspective on Explanations of Molecular\\n\\n Prediction Models\\n\\n\\nGeemi - P. Wellawatte,\u2020 Heta A. Gandhi,\u2021 Aditi Seshadri,\u2021 and Andrew\\n\\n - \ D. White\u2217,\u2021\\n\\n\\n \u2020Department - of Chemistry, University of Rochester, Rochester, NY, 14627\\n\\n\u2021Department - of Chemical Engineering, University of Rochester, Rochester, NY, 14627\\n\\n - \ \xB6Vial Health Technology, Inc., San Francisco, CA 94111\\n\\n\\n - \ E-mail: andrew.white@rochester.edu\\n\\n\\n\\n Abstract\\n\\n\\n - \ Chemists can be skeptical in using deep learning (DL) in decision making, - due to\\n\\n the lack of interpretability in \u201Cblack-box\u201D models. - \ Explainable artificial intelligence\\n\\n (XAI) is a branch of AI which - addresses this drawback by providing tools to interpret\\n\\n DL models and - their predictions. We review the principles of XAI in the domain of\\n\\n chemistry - and emerging methods for creating and evaluating explanations. Then we\\n\\n - \ focus on methods developed by our group and their applications in predicting - solubil-\\n\\n ity, blood-brain barrier permeability, and the scent of molecules. - We show that XAI\\n\\n methods like chemical counterfactuals and descriptor - explanations can explain DL pre-\\n\\n dictions while giving insight into - structure-property relationships. Finally, we discuss\\n\\n how a two-step - process of developing a black-box model and explaining predictions can\\n\\n - \ uncover structure-property relationships.\\n\\n\\n\\n\\n\\n 1Introduction\\n\\n\\nDeep - learning (DL) is advancing the boundaries of computational chemistry because - it can\\n\\naccurately model non-linear structure-function relationships.1\u20133 - Applications of DL can be\\n\\nfound in a broad spectrum spanning from quantum - computing4,5 to drug discovery6\u201310 to\\n\\nmaterials design.11,12 According - to Kre 13, DL models can contribute to scientific discovery\\n\\nin three \u201Cdimensions\u201D - - 1) as a \u2018computational microscope\u2019 to gain insight which are not\\n\\nattainable - through experiments 2) as a \u2018resource of inspiration\u2019 to motivate - scientific thinking\\n\\n3) as an \u2018agent of understanding\u2019 to uncover - new observations. However, the rationale of\\n\\na DL prediction is not always - apparent due to the model architecture consisting a large\\n\\nparameter count.14,15 - DL models are thus often termed\u201Cblack box\u201D models. We can only\\n\\nreason - about the input and output of an DL model, not the underlying cause that leads - to\\n\\na specific prediction.\\n\\n It is routine in chemistry now for DL - to exceed human level performance \u2014 humans are\\n\\nnot good at predicting - solubility from structure for example161 \u2014 and so understanding how\\n\\na - model makes predictions can guide hypotheses. This is in contrast to a topic - like finding\\n\\na stop sign in an image, where there is little new to be learned - about visual perception\\n\\nby explaining a DL model. However, the black box - nature of DL has its own limitations.\\n\\nUsers are more likely to trust and - use predictions from a model if they can understand why\\n\\nthe prediction - was made.17 Explaining predictions can help developers of DL models ensure\\n\\nthe - model is not learning spurious correlations.18,19 Two infamous examples are, - 1)neural\\n\\nnetworks that learned to recognize horses by looking for a photographer\u2019s - watermark20 and,\\n\\n2) neural networks that predicted a COVID-19 diagnoses - by looking at the font choice\\n\\non medical images.21 As a result, there is - an emerging regulatory framework for when any\\n\\ncomputer algorithms impact - humans.22\u201324 Although we know of no examples yet in chemistry,\\n\\none - can assume the use of AI in predicting toxicity, carcinogenicity, and environmental\\n\\npersistence - will require rationale for the predictions due to regulatory consequences.\\n\\n - \ 1there does happen to be one human solubility savant, participant 11, who - matched machine performance\\n\\n\\n 2 - \ EXplainable Artificial Intelligence (XAI) is a field of growing importance - that aims to\\n\\nprovide model interpretations of DL predictions Three terms - highly associated with XAI are,\\n\\ninterpretability, justifications and explainability. - Miller 25 defines that interpretability of a\\n\\nmodel refers to the degree - of human understandability intrinsic within the model. Murdoch\\n\\net al. 26 - clarify that interpretability can be perceived as \u201Cknowledge\u201D which - provide insight\\n\\nto a particular problem. Justifications are quantitative - metrics tell the users \u201Cwhy the\\n\\nmodel should be trusted,\u201D like - test error.27 Justifications are evidence which defend why a\\n\\nprediction - is trustworthy.25 An \u201Cexplanation\u201D is a description on why a certain - prediction was\\n\\nmade.9,28 Interpretability and explanation are often used - interchangeably. Arrieta et al. 14\\n\\ndistinguish that interpretability is + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 3-5: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n a passive characteristic of a model, whereas explainability\\n\\nis an active characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, an explanation is extra information that gives the context and a cause for one - or\\n\\nmore \\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + or\\n\\nmore predictions.29 We adopt the same nomenclature in this perspective.\\n\\n + \ Accuracy and interpretability are two attractive characteristics of DL models. + However,\\n\\nDL models are often highly accurate and less interpretable.28,30 + XAI provides a way to avoid\\n\\nthat trade-off in chemical property prediction. + XAI can be viewed as a two-step process.\\n\\nFirst, we develop an accurate + but uninterpretable DL model. Next, we add explanations to\\n\\npredictions. + Ideally, if the DL model has correctly learned the input-output relations, then\\n\\nthe + explanations should give insight into the underlying mechanism.\\n\\n In the + remainder of this article, we review recent approaches for XAI of chemical property\\n\\nprediction + while drawing specific examples from our recent XAI work.9,10,31 We show how\\n\\nin + various systems these methods yield explanations that are consistent with known + and\\n\\nmechanisms in structure-property relationships.\\n\\n\\n\\n\\n\\n 3Theory\\n\\n\\nIn + this work, we aim to assemble a common taxonomy for the landscape of XAI while\\n\\nproviding + our perspectives. We utilized the vocabulary proposed by Das and Rad 32 to classify\\n\\nXAI. + According to their classification, interpretations can be categorized as global + or local\\n\\ninterpretations on the basis of \u201Cwhat is being explained?\u201D. + For example, counterfactuals are\\n\\nlocal interpretations, as these can explain + only a given instance. The second classification is\\n\\nbased on the relation + between the model and the interpretation \u2013 is interpretability post-hoc\\n\\n(extrinsic) + or intrinsic to the model?.32,33 An intrinsic XAI method is part of the model\\n\\nand + is self-explanatory32 These are also referred to as white-box models to contrast + them\\n\\nwith non-interpretable black box models.28 An extrinsic method is + one that can be applied\\n\\npost-training to any model.33 Post-hoc methods + found in the literature focus on interpreting\\n\\nmodels through 1) training + data34 and feature attribution,35 2) surrogate models10 and, 3)\\n\\ncounterfactual9 + or contrastive explanations.36\\n\\n Often, what is a \u201Cgood\u201D explanation + and what are the required components of an ex-\\n\\nplanation are debated.32,37,38 + Palacio et al. 29 state that the lack of a standard framework\\n\\nhas caused + the inability to evaluate the interpretability of a model. In physical sciences,\\n\\nwe + may instead consider if the explanations somehow reflect and expand our understanding\\n\\nof + physical phenomena. For example, Oviedo et al. 39 propose that a model explanation\\n\\ncan + be evaluated by considering its agreement with physical observations, which + they term\\n\\n\u201Ccorrectness.\u201D For example, if an explanation suggests + that polarity affects solubility of a\\n\\nmolecule, and the experimental evidence + strengthen the hypothesis, then the explanation\\n\\nis assumed \u201Ccorrect\u201D. + In instances where such mechanistic knowledge is sparse, expert bi-\\n\\nases + and subjectivity can be used to measure the correctness.40 Other similar metrics + of\\n\\ncorrectness such as \u201Cexplanation satisfaction scale\u201D can be + found in the literature.41,42 In a\\n\\nrecent study, Humer et al. 43 introduced + CIME an interactive web-based tool that allows the\\n\\nusers to inspect model + explanations. The aim of this study is to bridge the gap between\\n\\nanalysis + of XAI methods. Based on the above discussion, we identify that an agreed upon\\n\\n\\n + \ 4evaluation metric is necessary in XAI. + We suggest the following attributes can be used to\\n\\nevaluate explanations. + However, the relative importance of each attribute may depend on\\n\\nthe application + - actionability may not be as important as faithfulness when evaluating the\\n\\ninterpretability + of a static physics based model. Therefore, one can select relative importance\\n\\nof + each attribute based on the application.\\n\\n\\n \u2022 Actionable. Is it + clear how we could change the input features to modify the output?\\n\\n\\n + \ \u2022 Complete. Does the explanation completely account for the prediction? + Did features\\n\\n not included in the explanation really contribute zero + effect to the prediction?44\\n\\n\\n \u2022 Correct. Does the explanation + agree with hypothesized or known underlying physical\\n\\n mechanism?39\\n\\n\\n + \ \u2022 Domain Applicable. Does the explanation use language and concepts + of domain ex-\\n\\n perts?\\n\\n\\n \u2022 Fidelity/Faithful. Does the + explanation agree with the black box model?\\n\\n\\n \u2022 Robust. Does the + explanation change significantly with small changes to the model or\\n\\n instance + being explained?\\n\\n\\n \u2022 Sparse/Succinct. Is the explanation succinct?\\n\\n\\n + \ We present an example evaluation of the SHAP explanation method based on the + above\\n\\nattributes.44 Shapley values were proposed as a local explanation + method based on feature\\n\\nattribution, as they offer a complete explanation + - each feature i\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3944,13 +3949,13 @@ interactions: connection: - keep-alive content-length: - - "5817" + - "6068" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3960,7 +3965,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3976,25 +3981,25 @@ interactions: response: body: string: !!binary | - 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 + FbCyaZYGAAA= headers: CF-RAY: - - 96665c8a1e611694-SJC + - 96a9ce227bcb7ae2-SJC Connection: - keep-alive Content-Encoding: @@ -4002,14 +4007,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:26 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=uaI1haIReSoI5NAQdH7qPi_Wqbvr9X5QMTe.4wL6JFY-1753726526-1.0.1.1-p8XpvwTTGynN1bQ0p0q2qHhiN2yXD1GnWq5FO6jZfb6XaPmfyVijaWCSkePa62wcoiZ8zDJJUTGmqP1whb4_e9BfEpoGtH3i1wJ3dlJ7KpQ; - path=/; expires=Mon, 28-Jul-25 18:45:26 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=h8K2eiNdVy4IO9jBkudzrIOEMR8fWIhSFz6vJBSaSb8-1754433722-1.0.1.1-6J0J8PD67m3RUWSG5sXZ7PL1zZ7f5uT2iy6xn.z08TyNfIclhfsTEfb3R6g3Nmhf6sxAEvQp4uVfYP9CoIlusqOV1q455Y1gQSeU07sh6g8; + path=/; expires=Tue, 05-Aug-25 23:12:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=XQ4x91DIH4.3Dwlui7Sh9loWCKIJkq6Dp2hhgIpqT7o-1753726526694-0.0.1.1-604800000; + - _cfuvid=xOe8_PtwiO5tzrtZKqnBLbl_QsXnGrX8xTATc6sEy4g-1754433722738-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -4024,7 +4029,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4700" + - "1911" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -4032,7 +4037,7 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "4703" + - "1919" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4040,13 +4045,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998613" + - "29998551" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_6770feb1f047612edbc33b560ee58f93 + - req_9227ccd3c59ed8abc12c758ac8f0d699 status: code: 200 message: OK @@ -4054,76 +4059,81 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 20-22: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nnal - molecule. The counterfactual indicates\\nstructural changes to ethyl benzoate - that would result in the model predicting the molecule\\nto not contain the - \u2018fruity\u2019 scent. The Tanimoto96 similarity between the counterfactual - and\\n2,4 decadienal is also provided. Republished with permission from authors.31\\n\\n\\n - \ The molecule 2,4-decadienal, which is known to have a \u2018fatty\u2019 scent, - is analyzed in Fig-\\n\\nure 5.142,143 The resulting counterfactual, which has - a shorter carbon chain and no carbonyl\\n\\ngroups, highlights the influence - of these structural features on the \u2018fatty\u2019 scent of 2,4 deca-\\n\\ndienal. - To generalize to other molecules, Seshadri et al. 31 applied the descriptor - attribution\\n\\nmethod to obtain global explanations for the scents. The global - explanation for the \u2018fatty\u2019\\n\\nscent was generated by gathering - chemical spaces around many \u2018fatty\u2019 scented molecules.\\n\\nThe resulting - natural language explanation is: \u201CThe molecular property \u201Cfatty scent\u201D - can\\n\\nbe explained by the presence of a heptanyl fragment, two CH2 groups - separated by four\\n\\n\\n 20bonds, and - a C=O double bond, as well as the lack of more than one or two O atoms.\u201D31\\n\\nThe - importance of a heptanyl fragment aligns with that reported in the literature, - as \u2018fatty\u2019\\n\\nmolecules often have a long carbon chain.144 Furthermore, - the importance of a C=O dou-\\n\\nble bond is supported by the findings reported - by Licon et al. 145, where in addition to a\\n\\n\u201Clarger carbon-chain skeleton\u201D, - they found that \u2018fatty\u2019 molecules also had \u201Caldehyde or acid\\n\\nfunctions\u201D.145 - For the \u2018pineapple\u2019 scent, the following natural language explanation - was ob-\\n\\ntained: \u201CThe molecular property \u201Cpineapple scent\u201D - can be explained by the presence of ester,\\n\\nethyl/ether O group, alkene/ether - O group, and C=O double bond, as well as the absence of\\n\\nan Aromatic atom.\u201D31 - Esters, such as ethyl 2-methylbutyrate, are present in many pineap-\\n\\nple - volatile compounds.146,147 The combination of a C=O double bond with an ether - could\\n\\nalso correspond to an ester group. Additionally, aldehydes and ketones, - which contain C=O\\n\\ndouble bonds, are also common in pineapple volatile compounds.146,148\\n\\n\\nDiscussion\\n\\n\\nWe - have shown two post-hoc XAI applications based on molecular counterfactual expla-\\n\\nnations9 - and descriptor explanations.10 These methods can be used to explain black-box\\n\\nmodels - whose input is a molecule. These two methods can be applied for both classification\\n\\nand - regression tasks. Note that the \u201Ccorrectness\u201D of the explanations - strongly depends on\\n\\nthe accuracy of the black-box model.\\n\\n A molecular - counterfactual is one with a minimal distance from a base molecular, but\\n\\nwith - contrasting chemical properties. In the above examples, we used Tanimoto similar-\\n\\nity96 - of ECFP4 fingreprints97 as distance, although this should be explored in the - future.\\n\\nCounterfactual explanations are useful because they are represented - as chemical structures\\n\\n(familiar to domain experts), sparse, and are actionable. - A few other popular examples of\\n\\ncounterfactual on graph methods are GNNExplainer, - MEG and CF-GNNExplainer.69,104,105\\n\\n The descriptor explanation method - developed by Gandhi and White 10 fits a self-explaining\\n\\n\\n\\n 21surrogate - model to explain the black-box model. This is similar to the GraphLIME87 method,\\n\\nalthough - we have the flexibility to use explanation features other than subgraphs. Futher-\\n\\nmore, - we show that natural language combined with chemical descriptor attributions - can\\n\\ncreate explanations useful for chemists, thus enhancing the accessibility - of DL in chemistry.\\n\\nLastly, we examined if XAI can be used beyond interpretation. - Work by Seshadri et al. 31 use\\n\\nMMACE and surrogate model explanations to - analyze the structure-property relationships\\n\\nof scent. They recovered known - structure-property relationships for molecular scent purely\\n\\nfrom explanations, - demonstrating the usefulness of a two step process: fit an accurate model\\n\\nand - then explain it.\\n\\n Choosing among the plethora of XAI methods described - here is still an open question.\\n\\nIt remains to be seen if there will ever - be a consensus benchmark, since this field sits on\\n\\nthe intersection of - human-machine interaction, machine learning, and philosophy (i.e., what\\n\\nconstitutes - an explanation?). Our current advice is to consider first the audience \u2013 - domain\\n\\nexperts or ML experts or non-experts \u2013 and what the explanations - should accomplish. Are\\n\\nthey meant to inform data selection or model building, - how a prediction is used, or how the\\n\\nfeatures can be changed to affect - the outcome. The second consideration is what access you\\n\\nhave to the underlying - model. The ability to have model derivatives or propagate gradients\\n\\nto - the input to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe - should seek to explain molecular property prediction models because users are - more\\n\\nlikely to trust explained predictions, and explanations can help assess - if the model is learning\\n\\nt\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 25-28: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n2021, + 25, 1315\u20131360.\\n\\n\\n (9) Wellawatte, G. P.; Seshadri, A.; White, A. + D. Model agnostic generation of counter-\\n\\n factual explanations for + molecules. Chemical Science 2022, 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. + A.; White, A. D. Explaining structure-activity relationships using locally\\n\\n + \ faithful surrogate models. chemrxiv 2022,\\n\\n\\n(11) Gormley, A. J.; + Webb, M. A. Machine learning in combinatorial polymer chemistry.\\n\\n Nature + Reviews Materials 2021,\\n\\n\\n(12) Gomes, C. P.; Fink, D.; Dover, R. B. V.; + Gregoire, J. M. Computational sustainability\\n\\n meets materials science. + Nature Reviews Materials 2021,\\n\\n\\n(13) On scientific understanding with + artificial intelligence. Nature Reviews Physics 2022\\n\\n 4:12 2022, 4, + 761\u2013769.\\n\\n\\n(14) Arrieta, A. B.; D\xB4\u0131az-Rodr\xB4\u0131guez, + N.; Ser, J. D.; Bennetot, A.; Tabik, S.; Barbado, A.;\\n\\n Garcia, S.; + Gil-Lopez, S.; Molina, D.; Benjamins, R.; Chatila, R.; Herrera, F. Explain-\\n\\n + \ able Artificial Intelligence (XAI): Concepts, Taxonomies, Opportunities + and Chal-\\n\\n lenges toward Responsible AI. Information Fusion 2019, 58, + 82\u2013115.\\n\\n\\n(15) Murdoch, W. J.; Singh, C.; Kumbier, K.; Abbasi-Asl, + R.; Yu, B. Interpretable machine\\n\\n learning: definitions, methods, and + applications. ArXiv 2019, abs/1901.04592.\\n\\n\\n 25(16) + Boobier, S.; Osbourn, A.; Mitchell, J. B. Can human experts predict solubility + better\\n\\n than computers? Journal of cheminformatics 2017, 9, 1\u201314.\\n\\n\\n(17) + Lee, J. D.; See, K. A. Trust in automation: Designing for appropriate reliance. + Human\\n\\n Factors 2004, 46, 50\u201380.\\n\\n\\n(18) Bolukbasi, T.; Chang, + K.-W.; Zou, J. Y.; Saligrama, V.; Kalai, A. T. Man is to com-\\n\\n puter + programmer as woman is to homemaker? debiasing word embeddings. Advances\\n\\n + \ in neural information processing systems 2016, 29.\\n\\n\\n(19) Buolamwini, + J.; Gebru, T. Gender Shades: Intersectional Accuracy Disparities in\\n\\n Commercial + Gender Classification. Proceedings of the 1st Conference on Fairness,\\n\\n + \ Accountability and Transparency. 2018; pp 77\u201391.\\n\\n\\n(20) Lapuschkin, + S.; W\xA8aldchen, S.; Binder, A.; Montavon, G.; Samek, W.; M\xA8uller, K.-R.\\n\\n + \ Unmasking Clever Hans predictors and assessing what machines really learn. + Nature\\n\\n communications 2019, 10, 1\u20138.\\n\\n\\n(21) DeGrave, A. + J.; Janizek, J. D.; Lee, S.-I. AI for radiographic COVID-19 detection\\n\\n + \ selects shortcuts over signal. Nature Machine Intelligence 2021, 3, 610\u2013619.\\n\\n\\n(22) + Goodman, B.; Flaxman, S. European Union regulations on algorithmic decision-\\n\\n + \ making and a \u201Cright to explanation\u201D. AI Magazine 2017, 38, 50\u201357.\\n\\n\\n(23) + ACT, A. I. European Commission. On Artificial Intelligence: A European Approach\\n\\n + \ to Excellence and Trust. 2021, COM/2021/206.\\n\\n\\n(24) Blueprint for + an AI Bill of Rights, The White House. 2022; https://www.whitehouse.\\n\\n gov/ostp/ai-bill-of-rights/.\\n\\n\\n(25) + Miller, T. Explanation in artificial intelligence: Insights from the social + sciences. Ar-\\n\\n tificial intelligence 2019, 267, 1\u201338.\\n\\n\\n\\n + \ 26(26) Murdoch, W. J.; Singh, C.; Kumbier, + K.; Abbasi-Asl, R.; Yu, B. Definitions, meth-\\n\\n ods, and applications + in interpretable machine learning. Proceedings of the National\\n\\n Academy + of Sciences of the United States of America 2019, 116, 22071\u201322080.\\n\\n\\n(27) + Gunning, D.; Aha, D. DARPA\u2019s Explainable Artificial Intelligence (XAI) + Program.\\n\\n AI Magazine 2019, 40, 44\u201358.\\n\\n\\n(28) Biran, O.; + Cotton, C. Explanation and justification in machine learning: A survey.\\n\\n + \ IJCAI-17 workshop on explainable AI (XAI). 2017; pp 8\u201313.\\n\\n\\n(29) + Palacio, S.; Lucieri, A.; Munir, M.; Ahmed, S.; Hees, J.; Dengel, A. Xai handbook:\\n\\n + \ Towards a unified framework for explainable ai. Proceedings of the IEEE/CVF + Inter-\\n\\n national Conference on Computer Vision. 2021; pp 3766\u20133775.\\n\\n\\n(30) + Kuhn, D. R.; Kacker, R. N.; Lei, Y.; Simos, D. E. Combinatorial Methods for + Ex-\\n\\n plainable AI. 2020 IEEE International Conference on Software Testing, + Verification\\n\\n and Validation Workshops (ICSTW) 2020, 167\u2013170.\\n\\n\\n(31) + Seshadri, A.; Gandhi, H. A.; Wellawatte, G. P.; White, A. D. Why does that molecule\\n\\n + \ smell? ChemRxiv 2022,\\n\\n\\n(32) Das, A.; Rad, P. Opportunities and challenges + in explainable artificial intelligence\\n\\n (xai): A survey. arXiv preprint + arXiv:2006.11371 2020,\\n\\n\\n(33) Machlev, R.; Heistrene, L.; Perl, M.; Levy, + K. Y.; Belikov, J.; Mannor, S.; Levron, Y.\\n\\n Explainable Artificial + Intelligence (XAI) techniques for energy and power systems:\\n\\n Review, + challenges and opportunities. Energy and AI 2022, 9, 100169.\\n\\n\\n(34) Koh, + P. W.; Liang, P. Understanding black-box predictions via influence functions.\\n\\n + \ International Conference on Machine Learning. 2017; pp 1885\u20131894.\\n\\n\\n(35) + Ribeiro, M. T.; Singh, S.; Guestrin, C. \u201D Why should i trust you?\u201D + Explaining the\\n\\n predictions of any classifier. Proceedings of the 22nd + ACM SIGKDD international\\n\\n\\n 27 conference + on knowledge discovery and data \\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4132,13 +4142,13 @@ interactions: connection: - keep-alive content-length: - - "5811" + - "6109" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4148,7 +4158,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4164,24 +4174,25 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//fFTBbttGEL3rKwZ7pgRJlutUNydoAadNL+khaBUIw+WQnHq5y+zMqlYN - /3uwpCyxiZ0LgeXbefPezM48zgAMV2YLxraotuvd/O3xQ43vV/TX+98+lh/fvP31vz8+rN80v8sX - bt+ZIkeE8h+y+hy1sKHrHSkHP8I2Eipl1tXN9dXN+qfr9XoAulCRy2FNr/NNmK+X6818tZqvl6fA - NrAlMVv4ewYA8Dh8s0Rf0YPZwrJ4/tORCDZktudLACYGl/8YFGFR9GqKC2iDV/KD6sedB9gZSV2H - 8bgzW9iZT7d3BYQIvzz0Dtlj6Qhuo3LNltHBnVdyjhvylgqIVFMU0AAdaRsqAfQVKNnW85dEAkmo - GmC8J9CWoI9Usc01Egg13N7BUAwB9kqxj6RDxkyTfEUxy6+GXxqgTR16WcCdH7gGJw+aebrgyCaH - EfoYeop6nGQq4FPOc1Lo+J4m921IOXONVhM6oGzb4ygwq6hIbOReQ/wGi3R2R2OtoHRo7+dleDiZ - WsC7H7CzPwR3IOjYc4cORGOymiI6sC36hsbCjkrHA9qW6TA6jyjKvnk2zCQF/Nuyo1clJyGQFGNo - UOm57plVNXKZlMC21LFFNyGdaMAINaGmSLKAP1sSOheVfIveEmhMogWgtSTCJTvWYzF2U4fDqens - oQodsj/1Y0gsGo9Q5s6FA1fZGw79O7+IMWQeydEBvQJ74abVUQ2MU5MTXNoNFfXkK4EwPhlMFeen - O77T/B5T7IMMUfk4qddiZ4pxPk75LO3Fhkh5Tn7e+afpUEWqk2CeaZ+cmwDofdCx/nmcP5+Qp/MA - u9D0MZTyTaip2bO0+0gowedhFQ29GdCnGcDnYVGk/82+6WPoet1ruKch3Wq93IyE5rKbJvDm6oRq - UHQT4GpzU7xAua9IkZ1Mto2xaFuqJrGr6/XZRC53uGDL2cT795Jeoh/9s28mLK/SXwBrqVeq9pcl - 8NK1SHl/v3btXOtBsBGKB7a0V6aY+1FRjcmNq9XIUZS6fc2+yVuMh/2a+zl7mn0FAAD//wMA1tlO - 6V0GAAA= + H4sIAAAAAAAAAwAAAP//dFTbbhs3EH3XVwz44gRYCZIsOa3f1CJphBQokDZAgCqQR+Ts7sRckuXM + OlYN/3vBXV/ktnlZLHhm5py53k0ADDtzCca2qLZLfvrz4gPNf7d9+8vf9ubd6n37/rfz9acPq3fn + v348mqp4xMNXsvroNbOxS56UYxhhmwmVStTFm/VqdX7+ZjkfgC468sWtSTpdxelyvlxNF4vpcv7g + 2Ea2JOYS/pwAANwN3yIxOLo1lzCEGV46EsGGzOWTEYDJ0ZcXgyIsikFN9QzaGJTCoPrq6uqrxLAL + d7sAsDPSdx3m485cws68vU0eOeDBE2yycs2W0cM2KHnPDQVL8OrzZvsaMtWUBTRCR9pGJ4DBgZJt + A//VkwAH2GxBW1To8JpAWwJHloVjmHZ4zaGBlKMlERKIdbGWoyh1ApoxSMJMQSvgoJRTJi2qqoGm + D45ySdINSjVC23cYZAZ/tAR0ayknHSUWyQI3mDn2At9ivpZRFN0mHzPB580WbAyWkkohs753RZvi + bQyxY5IKbIveU2jKf+GPKcWsfWBlEnhFs2ZWwSZnJkUgBfSzCpbzxY+vK8CUPFssEzIUxXE9yFKo + mbwT8HxNYFvqWDQfh/gUKDfHx3KMnHXGjkb9dcyQSVIMwkOntjPYFlYp3QgjVaam96jxMaS2bNGX + VIUd5VFQBdLbFlCG9rz9dCZwlrlptdS0VAjDYHg2drctXPATe18a9rEYymyoIHI3DMOhZ+9Acy9a + AQXpM0GNnAPJQx4pxxt2BBxk8C/9jbDZngnUfbCFjUNTATqXSaS0gkXKRA2FOjCOo4bWxj4oHtiz + Hmc7U43znMnTDQZLe7Ex0zjXi/kT3gu5PXfYkBSsRi+0C/e7cHV1dboymepesGxs6L0/ATCEqGP5 + yrJ+eUDun9bTxybleJB/uZqaA0u7z4QSQ1lF0ZjMgN5PAL4MZ6B/sdkm5dgl3Wu8poFucbFejwHN + 8+U5hR+uhNGo6E+AHxaPfi9C7h0pspeTW2Is2pbcie/6/OIpCewdx2dsPjnJ/b+S/i/8mD+H5iTK + d8M/A7ZsKLl9yuTYvkz72SxTuc7fM3uq9SDYCOUbtrRXplz64ajG3o+H04zLt685NOX88Hg967Rf + Li7oYr2yK2cm95N/AAAA//8DAH49Qv9GBgAA headers: CF-RAY: - - 96665c8a1e12232c-SJC + - 96a9ce22794a15f5-SJC Connection: - keep-alive Content-Encoding: @@ -4189,15 +4200,17 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:26 GMT + - Tue, 05 Aug 2025 22:42:03 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=b8qPaCTsVt55Gr4Uc4YiI4rsq9f3vo5dJdtbkd14VYI-1753726526-1.0.1.1-veWOv3YwWRsr8.xv0OcLEQV58ZLFG6KEyafaNVw0ztAPr_RkWeJjXecKEbWVFN7fXm2gj7lg41Fb4Fd5jvaGxj76skJo0igZ69b5JrsyMTA; - path=/; expires=Mon, 28-Jul-25 18:45:26 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=InIooQYN7hSbmQewas4FodLzXA7s_6sMH_HUciul6IE-1754433723-1.0.1.1-yYLL4_K9nAy0pFQIRGpARJ3POdPP4RGBgilNThUl3cuRQNu70Q2P9P2vNGPwtyMuOVG20.Ptd7GJBLldelneiFfTVJTgcB.WUij4gE7ZTIw; + path=/; expires=Tue, 05-Aug-25 23:12:03 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=igfPQsNHuIPnKm452NzcJEaUZpdg.ze81.NnVUx4KPw-1753726526949-0.0.1.1-604800000; + - _cfuvid=9xv2Id8pwWlcYACZZUqIG_o3WxVp3uOwj5kvnwkfeZY-1754433723059-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4211,15 +4224,197 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4907" + - "2262" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: + x-envoy-upstream-service-time: + - "2267" + x-ratelimit-limit-requests: + - "10000" + x-ratelimit-limit-tokens: + - "30000000" + x-ratelimit-remaining-requests: + - "9999" + x-ratelimit-remaining-tokens: + - "29998547" + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 2ms + x-request-id: + - req_0c4a159d4f544fe0a9f350507e280eda + status: + code: 200 + message: OK + - request: + body: + "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of + the relevant information that could help answer the question based on the excerpt. + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 12-14: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nnterfactual + approach, contrastive approach employ a dual\\n\\noptimization method, which + works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. + Contrastive explanations can interpret the model by identifying contribution + of\\n\\npresence and absence of subsets of features towards a certain prediction.36,99\\n\\n + \ A counterfactual x\u2032 of an instance x is one with a dissimilar prediction + \u02C6f(x) in classi-\\n\\nfication tasks. As shown in equation 5, counterfactual + generation can be thought of as a\\n\\nconstrained optimization problem which + minimizes the vector distance d(x, x\u2032) between the\\n\\nfeatures.9,100\\n\\n\\n + \ minimize d(x, x\u2032)\\n (5)\\n + \ such that \u02C6f(x) \u0338= \u02C6f(x\u2032)\\n\\n + \ For regression tasks, equation 6 adapted from equation 5 can be used. Here, + a counter-\\n\\nfactual is one with a defined increase or decrease in the prediction.\\n\\n\\n + \ minimize d(x, x\u2032)\\n (6)\\n + \ such that \u02C6f(x) \u2212\u02C6f(x\u2032) \u2265\u2206\\n\\n + \ Counterfactuals explanations have become a useful tool for XAI in chemistry, + as they\\n\\nprovide intuitive understanding of predictions and are able to + uncover spurious relationships\\n\\nin training data.101 Counterfactuals create + local (instance-level), actionable explanations.\\n\\nActionability of an explanation + suggest which features can be altered to change the outcome.\\n\\nFor example, + changing a hydrophobic functional group in a molecule to a hydrophilic group\\n\\nto + increase solubility.\\n\\n Counterfactual generation is a demanding task as + it requires gradient optimization over\\n\\ndiscrete features that represents + a molecule. Recent work by Fu et al. 102 and Shen et al. 103\\n\\npresent two + techniques which allow continuous gradient-based optimization. Although, these\\n\\nmethodologies + are shown to circumvent the issue of discrete molecular optimization, counter-\\n\\nfactual + explanation based model interpretation still remains unexplored compared to + other\\n\\n\\n\\n 12post-hoc methods.\\n\\n + \ CF-GNNExplainer104 is a counterfactual explanation generating method based + on GN-\\n\\nNExplainer69 for graph data. This method generate counterfactuals + by perturbing the input\\n\\ndata (removing edges in the graph), and keeping + account of perturbations which lead to\\n\\nchanges in the output. However, + this method is only applicable to graph-based models\\n\\nand can generate infeasible + molecular structures. Another related work by Numeroso and\\n\\nBacciu 105 focus + on generating counterfactual explanations for deep graph networks. Their\\n\\nmethod + MEG (Molecular counterfactual Explanation Generator) uses a reinforcement learn-\\n\\ning + based generator to create molecular counterfactuals (molecular graphs). While + this\\n\\nmethod is able to generate counterfactuals through a multi-objective + reinforcement learner,\\n\\nthis is not a universal approach and requires training + the generator for each task.\\n\\n Work by Wellawatte et al. 9 present a model + agnostic counterfactual generator MMACE\\n\\n(Molecular Model Agnostic Counterfactual + Explanations) which does not require training\\n\\nor computing gradients. This + method firstly populates a local chemical space through ran-\\n\\ndom string + mutations of SELFIES106 molecular representations using the STONED algo-\\n\\nrithm.107 + Next, the labels (predictions) of the molecules in the local space are generated\\n\\nusing + the model that needs to be explained. Finally, the counterfactuals are identified + and\\n\\nsorted by their similarities \u2013 Tanimoto distance96 between ECFP4 + fingerprints.97 Unlike the\\n\\nCF-GNNExplainer104 and MEG105 methods, the MMACE + algorithm ensures that generated\\n\\nmolecules are valid, owing to the surjective + property of SELFIES. Additionally, the MMACE\\n\\nmethod can be applied to both + regression and classification models. However, like most XAI\\n\\nmethods for + molecular prediction, MMACE does not account for the chemical stability of\\n\\npredicted + counterfactuals. To circumvent this drawback, Wellawatte et al. 9 propose an-\\n\\nother + approach, which identift counterfactuals through a similarity search on the + PubChem\\n\\ndatabase.108\\n\\n\\n\\n\\n\\n 13Similarity + to adjacent fields\\n\\n\\nTangential examples to counterfactual explanations + are adversarial training and matched\\n\\nmolecular pairs. Adversarial perturbations + are used during training to deceive the model\\n\\nto expose the vulnerabilities + of a model109,110 whereas counterfactuals are applied post-hoc.\\n\\nTherefore, + the main difference between adversarial and counterfactual examples are in the\\n\\napplication, + although both are derived from the same optimization problem.100 Grabocka\\n\\net + al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich + improves model robustness via exposure to adversarial examples. While there + are\\n\\nconceptual disparities, we note that\\n\\n------------\\n\\nQuestion: + What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate + connection: + - keep-alive + content-length: + - "6053" + content-type: + - application/json + host: + - api.openai.com + user-agent: + - AsyncOpenAI/Python 1.99.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - async:asyncio + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.99.0 + x-stainless-raw-response: + - "true" + x-stainless-read-timeout: + - "60.0" + x-stainless-retry-count: + - "0" + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.13.5 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + H4sIAAAAAAAAAwAAAP//dFRNbxs3EL3rVwx4SQtIgiTLjuOba6SNUTgBiiAwWgXCiJzdnZhLbsih + HMXwfy/IlaV14lz2sG8+3nvDmYcRgGKjLkDpBkW3nZ1czf+mRfvln7PdxzfLP7Zfb2/enXz4d/Zh + c/5p9kmNc4bffCEtT1lT7dvOkrB3PawDoVCuOn99ulyenLxeLArQekM2p9WdTJZ+spgtlpP5fLKY + 7RMbz5qiuoD/RgAAD+WbKTpD39QFzMZPf1qKEWtSF4cgABW8zX8UxshR0IkaH0HtnZArrB9WDmCl + YmpbDLuVuoCVevuts8gON5bgMghXrBktXDsha7kmpwl+u728/h0CVRQiiIeWpPEmAjoDQrpx/DVR + BGlQoMU7AmkIukCGdXanDzSkObJ3kxbv2NXQBa8pRorgK7i8hmJSBHZCoQskhVFOTM5QyLJM+SUe + mtSii1O48ilHV6gloQXKUhzuWwYChDvagXhvgR3cXl6Pc9ctm9wfC7dccgzscn1NE0tbysGR60Yi + bHbAhpxwtcspukFXU+YI7LokUBFKCk/S732yBtAKheJAUfQqDpyYwseGIv3MtCZHIT8ekCb4VDfg + O+GWv5eYgcljiEk3gBFadjkg88rNDPcSYENyT+SO3O4btgTkYgpF915GVjFkdptnsB+s5TuCm5vL + q7dlAld/Tv56/37/UigUximSySVab0kni2E48DH4qqLS7uAlu/xysiWwoQa37MN+vNpv+9jYpcA+ + RQhke3Ma7ordBgWn8M7f05bCOCuwlsosCtWDON1QyxotRMENW5bdc4762YvJjVpkN12pcb8agSxt + s43rqH2gfkXeHOAses0t1hQzVKGNtHKPw3ULVKWIedtdsnYAoHNeelV50T/vkcfDaltfd8Fv4g+p + qmLHsVkHwuhdXuMovlMFfRwBfC4nJD27CqoLvu1kLf6OSrv5/Py8L6iOV2sAn57uUfGCdgCcLE/G + L5RcGxJkGwd3SGnUDZlhz9PFQQQmw/6IzUYD7T9Teql8r59dPajyy/JHQGvqhMz6+DpfCguUL/uv + wg5eF8IqUtiyprUwhTwPQxUm2x9dFXdRqF1X7Op8x7i/vFW3XszP6Ox0qZdGjR5H/wMAAP//AwC+ + UJsQggYAAA== + headers: + CF-RAY: + - 96a9ce2f5ad27ae2-SJC + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 05 Aug 2025 22:42:04 GMT + Server: + - cloudflare + Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + access-control-expose-headers: + - X-Request-ID + alt-svc: + - h3=":443"; ma=86400 + cf-cache-status: + - DYNAMIC + openai-organization: + - future-house-xr4tdh + openai-processing-ms: + - "1708" + openai-project: + - proj_RpeV6PrPclPHBb5GlExPXSBj + openai-version: + - "2020-10-01" x-envoy-upstream-service-time: - - "4918" + - "1712" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4227,13 +4422,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998612" + - "29998553" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_50ce1e008403a3aca09f5d2a6f2f0425 + - req_f1b3cfa71b8b4b98b57bd7990dab4903 status: code: 200 message: OK @@ -4241,11 +4436,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 22-25: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nut + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 22-25: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nut to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe should seek to explain molecular property prediction models because users are more\\n\\nlikely to trust explained predictions, and explanations can help assess @@ -4311,7 +4509,7 @@ interactions: drug discovery.\\n\\n Molecular diversity 2021, 25, 1315\u20131360.\\n\\n\\n (9) Wellawatte, G. P.; Seshadri, A.; White, A. D. Model agnostic generation of counter-\\n\\n factual explanations for molecules. Chemical Science 2022, - 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. A.; White, A. D. Explaining structure-ac\\n\\n----\\n\\nQuestion: + 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. A.; White, A. D. Explaining structure-ac\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -4321,13 +4519,13 @@ interactions: connection: - keep-alive content-length: - - "5820" + - "6096" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4337,7 +4535,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4353,24 +4551,24 @@ interactions: response: body: string: !!binary | - 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 headers: CF-RAY: - - 96665c97d85dd03d-SJC + - 96a9ce2dfa5f155d-SJC Connection: - keep-alive Content-Encoding: @@ -4378,9 +4576,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:27 GMT + - Tue, 05 Aug 2025 22:42:05 GMT Server: - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4394,15 +4594,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2823" + - "2831" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2829" + - "2834" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4410,13 +4608,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998616" + - "29998549" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_58610991a84fbf4b3861dc046b3b0e6e + - req_313c810750bd47508a3b10369dd73e7b status: code: 200 message: OK @@ -4424,11 +4622,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 14-16: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nsame + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":[{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAw0AAADsCAIAAAC5c90NAAAACXBIWXMAABcSAAAXEgFnn9JSAACCkUlEQVR4nOydd1gUWbr/nbv33t195u7c3UnOzs7szuzsYiBnUYIgoqggipgwYwBUMIJ5DSAGDIgRE+acRhQDmDCgjmHMKGYUEyIGYERv/77b78/z1FQHOlQ13XA+f/B0F9WnTlW99b7f99QJtRQcDofD4XA4HHXU+r//+7+qrgOHw+FwOByOOcJ1EofD4XA4HI56uE7icDgcDofDUQ/XSRwOh8PhcDjq4TqJw+FwOBwORz1cJ3E4HA6Hw+Goh+skDofD4XA4HPVwncThcDgcDoejHq6TOBwOh8PhcNTDdRLHsrl582Zubq7BPz937tyVK1fo8+vXr48dO/b8+XODS8vLy/vpp58M/jmnqqioqMCtLywsNOznsBn8HPZDX2FRFy5cMLgy5eXlKO3JkycGl8CpKszKHaEy3B1JAtdJHHOntLR09uzZbdu2dXNza9SoUXh4+KxZs5j7+Ne//uXk5GRw4a1aterTpw99vnbtmpWV1cGDBw0ubciQIT4+PvSZQu/9+/cNLs0Y8Fxv3bo1JCTE1dU1LCxs9+7d2vfPz88fMWJEYGCgp6dnx44d09PT3759K9wBFycyMtLDw8PPz2/69OkvX76Us/qycPbs2aioKF9fXxcXF5zp4MGDDx8+TP/C6eDWr1mzxrCSYTP4OS4RfYVF4RoaXM8HDx6gtB9//JG+3rlzx5jQaySPHj0aOXIknjsvL6+xY8c+fvxY057Pnj3rro6FCxfSDitWrFC7Q1U9I4YBdzR37lyLcEeoDHNHwFLcEQxGrZ3AwGgH2OSePXumTZsWEREBl2uC+nOdxDFr4JWCg4NtbGzi4uJWrVo1b9682NhYeCKWJ23cuBH/Mrj8pKSkRYsW0WfjHRMiAXwTfabQywo3MUuXLsXRca3Wr1/ft29ffMaF0rQzAjMuKVxYamoqtAJ+hf0RHdkOSEyxQ9OmTXELUlJS7Ozs4OwgBE1yKtKwa9cunBTiEILc8uXLJ0+ejFDHYhLMLCYmJicnx7DCL126hJ/jMtJXI3USgi5KYxYOVWpM6DWGp0+fQh5BDSxbtiwtLQ3KwN/f/9WrV2p3pmoLwRXGNccFpx1ggaIdYHK2trYWpLnJHVlbWw8bNsz83REqw9wRqHJ3hDsOdzRgwAB8Xrdunaad4UVFduLo6Ijcpry8nHaANkIJ2IIrLxSC8sF1EsesQRaCR2LHjh3CjW/evNHkrI3BeMckpAp1EiIWwg/8C33FM96jRw8HBwf2YkgEKomqHjlyhG2JioqqU6dOSUkJfY2MjMTPHz58SF83b96M/Tdt2iTnSUhM48aNmzVrhjgn3KildcQYjNRJIqpQJ02cOBFmcPnyZfp64cIF3PfZs2fr+HOICfycmY0IWCkEx9ChQ6Wpq0kgd4RgL9xoEe5IUXU6idxRdHQ0iQ1yR8i1dHylCPuBFQkFH9KSO3fuKJQPGtdJHI4iOTkZj7eW5mIkH4ji7Gv37t0zMjIOHDiAQOXt7T1o0KBHjx7ByLEbstsmTZrEx8cLn8/Ro0fPnDmTPosc082bN0eNGtW6dWtPT8+WLVtOmzaN6QaAo+BY2DJp0iRfX9+uXbsqlC3G1A787NmzLl26oDTk39RoDFWxf/9+fGCtDsTu3buxUdrOKDgWDn306FG25dChQ9iiqbkbVwD/ffHiBdsyf/58bKEIhxhQv359YZZcUVHh5uYmvOxmDgwApwNj0LQDQh3uQnZ2Nn3FBcRXXBB6cxEcHEytcbBDqM+AgADYUmZmJvv5+fPnhe+PRDpp5cqVCAxQaTCkiIgIUasV2QYsFiaEq3rixAl6gYUPCqVFwbrq1avH3j5A7OJERGLl/fv3SNNx14y9Ur+GGTYDl6J58+a6/BZ5AmIhzlfTDngkcVPoNC2F1NRU1Dk/P1/TDrq4I2xfs2YNuSNIyaKiIra/dneE/7Zp00Z3d4TKMHeE/1qKOxIxb9487Hzx4kXVf3GdxOH8m7Vr1+IhSUpKEnWXYYg6BGDn8PDwwMDA9PT0BQsWODs7w7PAu4WGhq5atWrGjBlIYfv168f219IhYMmSJXB5aWlpSB/hlRDDQkJCEJDov9QGA/eHPAn7YGeFoH8StAW5VMSJNCUnT56Et8LRU1JShPWHuwwLC1N7auXl5fe08ssvv6j94fjx43FoYesRFA+24CzU7p+bm4v/wqvS17KyMlw0REQ62TNnzuC/uHrCn8ARe3l5qS3NPGnUqFGDBg0QbNT+V9Q/afr06fjauXNnWNe6det69uyJr5A7iEC4htgN5lS3bl3II9pfe/8kPz+/hIQE/Io66GDPXbt2sf/ia/v27RH8YJwICVeuXBH2T4J0g+C2sbFJ+wBuOuqABF2oa48dO4afZGVlqT07hD0tVsS6fYhAOoEyJ0yYINyIC4KNkJVaL/a/oSd3z549mnbAo4fraVkBiE4KWkTTo1epO4JchsYVuqO+ffuy/Y13R1FRUfhM7oj1T4I7wg91dEdA7amZzB0JwQnCSIKCgtT+l+skDuffIIAhecJD5e7uDheAjFmUWKg6poYNG7IWo507d2ILoj6TWfALderUYTtocUzv3r0THgiJrzArIscEFyDcR9iPW+17N+wAecFKvnTpEvbZvHmz2nP/6aefrLTCArOIgQMHOjo6CrfgiNh/1KhRavcHO3bsoB7ckH1IfKEM2OCvffv24besrYWgPkyaSjNDtm7dWq9ePdQZYQB3bfv27cJuMWp1Ert3uHoIb8IMGIEHV5jdfe06SWhI8LeQmDBItgU/RFHCl1Oiftyq793u3r0LG2a6FsTExOD2aeoxhvposSJNPWHxoOG/iKnCjXRlRI0QasF1hjDVFDvpFR50YaXlmBXMHUGmkDtiWpkwwB1hCzUyKfRxR5TbaHdHon7cOrojTR0ZJXdHunTBPn78uJUghRPBdRKH8/8pKytD7oW0DA8bPZBIylmQU3VMwjfZd+7cEXkHxHtsYf0utQ8wgTs7c+bM7g/gv5SoKT44JlH7RKU6iXwNOwSqihRT1GmGgQzsolZwZdT+EGek2qNFi2OC20L8Q3KJ6N6/f/9GjRoFBAQg46T/ImBbqfSToK6UakszW65cuTJy5MimTZtCZKDyuPJMi6jVScIXIoMGDcL+Qm8ZGhrKWgIqHe+GQHjgwAGyosGDB0OxsX9ZKfu3CneuVCcBCFmYLn1GPXHvtHQbwlOgxYo0vdQmWxWNAdRRJ9GjlJSUpGkHWL6WrkvmDJQfrkmVuCM8p+fOnRO6I/amVa07qlQnqbojnJSmXowmc0dCsA9sW1NPJq6TOBwx79+/R8aD7ATP2IgRI2ijqmMSJqkUcrZt28a2UEjTxTEhU/T29sYWX1/fNkqEjoYck8g1VKqTQFBQEPVgePPmDbzSxIkTjbgk6hk6dKiNjY1wS3l5OSozbtw4tfvTK0Iku/QVkQCu387OjsIYdSbYu3ev8CeQU8Jgb1ng1mzYsMHNzQ2nQKFFrU4S/kR4ZwkoIWY5WnQSjBbiDJoA1zM4OJj6lwgLx2ccTliyLjqJGvnOnj2Lz4sXL65bt67kmiMvLw+HgG0IN9KVYe0fmkhISFAN2ww8NTijXr16SVbXqgB39vLly+SOWNc3Wd1R48aNRe6IWY5ad1SpTlKouKOxY8caej00oskdDR8+XPsPX7x4gR+KsgghXCdxOOqBe2rSpImHhwd9VXVMQl8gCjkKnR0TjuLv79+2bdunT5/Sf6mtWKSTRHXTRSetX78e4RmRhkaNIRppOtMLFy74aUVTHJo6dSpKZjUHt27dEmafIqhLqXDL4cOHsf/WrVsVymYY1RMJCwsLDAzUVHOLgLqXpqenK+TUSVu2bLFSDthkL8WojzwrxzCdhNK8vLygwODAmzVrJuzjogp202JF0DRqf4WgC0MVvasdNmwYNmp6m0bgv9CgWkb84WpY6dyN18whd9SgQQP6Krc7YgqV3JFIJ4nqpotOErkjLfOjmswdMVavXm3163G4IrhO4nA0An/h4uJCn2VyTAUFBVa/HvoukguV6iREC+zAJtljvH792tnZGT6iffv22keP379/f5pWNA1LycrKwqG3b9/OtpAmOHbsmNr9kVPCzQm3kE6i8c9v377F1e7evTv7b0lJibW1tTHzxJgDOTk5rOuDfDpp3Lhx3t7ewh+KunZVqpNSU1NxtVUdNbbb29vTi5sDBw5oOVNoNS1WlJGRoemHwcHBEGHs0Pjg6enZqVMnLcdSKMdMWWnudQe6dOkCIaVdbFkQVeiO9NVJ2t1RSEiIltOU3B1VOl1Z69at8eywvuqqcJ3E4fwbuHhkn0KXCi9ct25dNmZNJsdEg+Hj4+PpX6hA165d9dJJwN3dXW2j8cSJE11dXa1U5oWSCtTWy8sLXo+6GhQXFzdt2hRZL3vYcUFQMZb/0VsS0Xs34XsT7FCnTp3jx48L9z916pQclZeJCRMm3Lhxg32FMKKJGyiBlk8nUcevu3fv0tejR4/CrvTSSRRU2CRGjEePHtWrVw+GhIppiSXGsHz5ctasCDZs2CAyWliRahNFr169HB0dNY2Jw6VAIXK8bjYBVeuO2FxTqEBERIS+OqlSd7R27Vo9roXOkDvCqVEvLvyFO/L19WUtrPv37xe6IwIGjyrNmjVLS8lcJ3E4/2bu3LlWyi63yGIRvP39/fEVOe69e/doB5kck+LDEGiojQEDBuBpHDZsmL46iSrfoEEDPz+/xYsXs+35+fnYDt+kqeej8Zw4ccLBwQHZf2RkJPwj0nfhaBTSAewiIOLShWX9uEUeCq6tTZs2iPcIgcHBwZX6LzPE1tYW1W7RogWsCKeJiwORwfqOyKeTYKguLi4wYNwISG3YanR0tF46CWm6h4cHLj5CCwxJOKUhFcUmvJYcRLKBAwdCB6Dm7du3x7Hi4uKEIQNb2EVglYekHjNmjKYyZ8yYgV9dvXpVpjrLCj3RuInkjmgUZJW4IwgLfXWSdneEJ0KO2TIJoTtCBeCOhOMEqfKipehoNgG1gwzwnFqpIOwvLzlcJ3HMHTzGq1atQtID5zt58uSdO3cK87lLly4hHWFfkd4J85LS0lJsEQ7Pefz4MbawARQ5OTns+USwxL/YHM14NPAVj9+kSZMyMjLoKyscH1Q7WODhF40Lu3DhAg1OEcqU169f29vba+oXIhXw3ampqbhocEOijreojPAiKJSdUXbt2oUzxf6zZ8/GVRWVVl5evnnz5nHjxuEWnD59WtaaywGuOW4NTg0niLNYsGDBrVu32H/fvn2LC8Jafej6CH+uemfh+pnlkFGxQU/YLpw+EeY3c+ZMHBeBCp9FliOyDYU6o0XJ2dnZZEjCicRSUlKoc4khV0Q3YPZ79uzBU4AHMCsrSxQvUB9ReCsoKMBGLZ3KcWU0zfNkEcAdrV69mrkjUfOSydzR+/fvhZaj1h2hMrq7I+E6RXKgxR1R5UWD2o4cOXLo0CG1ReE53a2CqsuSEK6TOBxTs3HjRivNo4E4HF2oqKjw8fGJjo6u6opwLBtyR6ovdjkMrpM4HNOB7HP27NlOTk4WtOgHx9woLCxMS0vr169f3bp1r1y5UtXV4Vgq3B3pCNdJHI7pGDlyZJs2beLi4oRzGHI4egFtBCvq2LGjllVBOJxKIXc0fPhw7o60w3USh8PhcDgcjnq4TuJwOBwOh8NRT43TSYWFhcIljuUbCcmRnJcvX544cWL37t3Z2dnFxcVVXR29KSkpSU9PHzFiRExMjC4riZoMVAZVEg1cUqW0tBSPjCVeeRF5eXlZWVkwpAsXLsg085CsnD59OikpafDgwZrWB60qUB8ta7oplEvR5eTk4MqfPHlSOHDPEkHssGh3hPqvXLly5MiRFueOYDk///wzHuHMzEzTPMI1Tie1atVKOOlCvXr1unfvnp+fX9X14mgDj/SYMWOsra3Zjatbt27fvn01LeEpLbAQ4Uy4BhMWFubm5obwhnMxZiw3vDOq9OzZM+OrRNBMLcJpXUQMGjSoefPmuOaqk/1YFgjSNOcNw8PDY9WqVSY4dEZGhnBOc4M5cuQIzXSFCGekWY4ePVp1gmZjGDJkCFudV0RZWVnPnj3JhNiVt9AJAsgd2djYsHOpU6dO7969a7I7kvDctbsjCCNEbeEjDJNjM3rIRE3UScHBwbS+8fnz55Hf29nZeXl5yTfjH8dIXr9+HRISUr9+/Xnz5t27d+/du3fPnz9HJtG2bVvRYuYyIYk4oCnmNmzYYHx94EGsdFizXXcq1Ul+fn6xsbE0+6Ll6qSdO3ciTsNsjh49ilCHrBQnjtNhawXKitqZAA0AUc3d3V2SHBrOUJc123VHi056+fJl69at169fT02Subm5TZo0QeZz+/ZtCStgAjS5o3bt2lmcO5KkPZLckWgOMGPQ7o7u3LmzcuVK7IPLjnuxY8cOWBFiuqxKpibqJNGiWrNnz7b6sPI2UV5e/tNPP1HjMJs7jgH3Ss2thw8fLiwsFP33yZMn2H7gwAFNi91w9IVWydi1a5doO26EMI345Zdfzpw5s2fPnqtXrwqjSEVFBdwZreBB4L/YUlJSQl/htSkZQuzEjTt16hTbmfbE0ceNG0cvakVzM8IS9u3bJ2qPpPdTqA8M6dixY0ianz17Riumbdy4Ef9i2Rv2xOFgS6i52lfA2OH06dO0Ay0EQS/vaPpaqhKOolBO4yZq/IcrFNYW54Irg+uTk5OjOu2kdp3ECrRcnfT48WN7e/sWLVqoZkSiiawePnyIW3bkyBHRxHe4iSJtyixH8WujunLlysGDB4XzWKIoWg2UvfEXmij2xBFhKkIrVSg7CZAbwQ4wM0QI/BC5e0BAgPDWK5Rrb6GE7Oxs4UGFQI7gv9iHVRgfmjVrFhkZSUXRgVB/NrU0gSphC1tigs4aQnPv3r1INUXvzrTopP9TItxC6+vROsQWhCZ3BMEkbFPB44+Yoos7UigfXqE7olsAhwArMsAdXb9+XVi4Ae4IvkW7O8IO5I6wG7kjFFipOxI2gRvvjhhjx47F/qqxWEK4TlIsWLBAKIf3799va2uLdMHFxQXb7ezshAs6njt3ztPTE9sdHR3pNRBb/AgPAK3lhJ/jV/Xq1UtOTq5pl1dy8HjjUrdp00b7brgvjRo1qlu3rrOzM24KMlf22KiuFUCLVLD1BGg9dmSE+EsNuQ0aNCBfQ3uqnR0fTziOiLtMv+rRowfzWbQWwaZNm3x8fOhXiB/CQsgCkX1aKyFLQ80Re4QnhVTJ1dUVJ4Ud8BdhHh6TmiWE0It8VQWDo7Pa5uXlubm5YR8UBduuU6dOYmIiM86aoJOWLVuGymt/0YNHeMSIEVbKNRxsbGxwa4SLTqguXUKWQ5/JVGbNmtWrVy9Va6FFJ4RQAgabobVHyJ/ABoSrp9EqFuy31J6neutpzRmUQGuzREREIJ6xQhCAUQi2w35wXuwOMmsnaLkM1UYvUePlxIkTYTw4EA6H7b6+vjAt4SXSpJNUoZVchQtomD8GuyMmoVTdkeLXy5vQXYZ7EbojSFKFzO5o+/btQneE0xRN8A1pCB+Cu0/uCDYAba26hIgWd8QaL1Xd0fjx4/V1R4z4+HhURtN6gpJQE3USe+8GMjIycMPCw8PZdcjNzYU0pqnoi4qKhg0bBtNhbiIoKCgsLIxyL3jV8+fPs2lMoYqwJwrEduQWpLJN0xJbjaHVEKdNm6ZlH6Qj7u7ubdu2pdt05swZfMWNpiRYF50E/9K8efOff/5ZoZzsHybRpUsXtr/qM4+sC55i8uTJFO3gGnBENlcbOSZIHBgDDIkavUSrNSmUy2iz3qyPHz9GoEIkY94NKTsOMXDgQFq4AF4AforaQtS+d9Ouk27evAlBTzkigiiFQ0hD+m9N0Em4vLie2sdtQOXQM4vnF1dp5MiR+MrEqy46CQkS/ACOgjsFSYEtbAETVQkCn9O5c2fkXRRacIvHjBkDU2QuBTaMAiGkCgoKUCZZAk5EpEUWLlxIGTkMHkaFnwiXxEHIRLRGHMVJ4euNGzfYOu2q790q1UkIt6yBBLlEKyWsvUQvnUQN+XhaddzfHNDFHeER9vDwELmjwMBATe5IoU4n4TIK3VG7du2EO+vijkSLD5I7Ki8v1+SOjhw5cvz4ceaO+vfvr9YdkaXBVmFR1GKk9r2bdp0kcke03LJe7gghGOEb13b+/PmomOpizNJSE3WSSP+GhoZqabLDXYTgxY2kr/A4EyZMUN3txYsXkLSi5yc2NjYgIEDS6tc4qH1Y+3t0Cm/C1mY8hNhCCy3popOsfr0K48yZMxGu2DsF1WceGRjUtnALsjHsRk6EHJPoJ6qOSQRcEqV97BCIoOzFihADdJIq8LxwhcK6VW+dhPuFhFvLDlC0Dg4OwomJEdiaNGnCQpQuOqlTp07sv+Q6UlNT6auqBEFKZvXrNzjwxr6+vmylLTgrlC969a+qk0RMmjTJy8uLPiPy4RDr169Xu6cBOkkEvTtjMVJ3nQT5iKxS2t5RJkAXd7R06VKRbti5c6cWd6RQp5OE6wMa7I6o75dp3JFeOkkVfd0Ra1avU6fO2LFjhe+F5aAm6iQofXqTmpeXB9vFFjhQZGxsHzz8cFWwjDZKIFfZLR88eDB839ChQ3EXhT2QyF9AQq0XEBUVhbto6jOsXujSiQGxDdFFuAX5EH6FhFWhm07CLaZsm6DGZBafRM884h/279atm/Bek1aDG1V8cEzHjh0TVknVMeHR27dvX1xcXIcOHcjSWK2QoMPMNC26bphOunr1akJCAqpNx0IAZi+ga4JOCgkJ0d5f+8aNGzi7devWCTeOGzcOjzA14+mik0QXB/9lt0BVgkBCYcuSJUuEhtSyZcuwsDDaAa4J90tUT1WdBGtHUX379qU727BhQ3YgMktNo9YN0ElQkxs2bEAGiMCGY9HgQdZApaNOunjxoru7O0oQvh+0CHRxR3D7kBTCLSUlJVrckUKdTtLdHcGNQHEa744UyhZug92RvjrJSHeES3r37t0zZ86ghjh9hADej1tKVPsnXb9+HXeFGcG8efPwFY6A+S9bW1t2y1+9epWSksKGFuM204vnHTt24CsUWHcVTHt+1Q16ZoTvEVTBDRV5Z2HQ0rF/kvDn2h0TFQhlpnqvz58/r/jgmOAIVE9E6JigqqG3oLmXLVtGlsZqRY41OTlZ7fkaoJNwXBwLF2r+/Pl0LOGDUBN0EnUDEnXNFnL69GnsgNRfuJGCFlmCLjpJ1P6vXSdRxyNVKxo9ejTtQP2TRPUU6aTbt2+7urr6+/sjNMJucWcjIiLYgegQmk5ZX52E4A2bcXBwgOmuWLECx6LO6cyqddFJMDZUODQ01BLnHDLMHSkEj6eOOkn4X+3uiHyF8e5oypQpmtwR2bZ2d6SXTmLuCNHWYHfEoAa8o0eP6ri/AXCd9G+xbPWhGyN10xO+WauoqIBcVY0Njx49Wrt2rZ2dHbIHxYc8Q9TxjWM8uDtIziBMtRhq//79RQkcOaO5c+cqlIOGrH49IB8O2hidRO1Jal+/EuSYRI5D5JhQOAqhFJOABBfWClaH3E5t+Wp1kuprXw8PDxakw8PDEZmESWrnzp1rlE6iRdGFvaRF3Lp1CzuI5lIaOXIkMmnqrYgQ4u3tLfxvYmKiMTqJ2pOo15FadNFJM2fOFPYjUXwYkEWfKevTdAhVnZSWlob9hV1iN2/ezIzt7NmzVoJ+JApltxW9dNLNmzfd3d1bt26tOo7YItDFHcXExOAchTsUFRVpcUewLmN0ErUnGemO4HxQiDHuSFS+WnfEjE0Sd8SgDEfUEiwtXCf9+005rvLw4cMVH7T5ggUL2H/37NmjJTYgQlOKiR+6uLjgCZGx6jUV8vX4K9r+5MmTc+fOKT44d+HMDkh2WVMzlC5CHbIl9l+6p7rrJKS/ogyya9euCJma3hro4pgKCgpE7nLTpk3CWkVGRsKiXrx4oVo+dZK4cOGCcKO/v7+wbw0djgXpli1bCv/78OFDOL4apZPwhLq5uTVq1Eh1Sj3qOAKvTUM62HbIBezP3nwhigh7giNkUv8h+lqpTlq8eDF2ePr0Kfsv0n1676apzrroJDguYb+rt2/f0rAm+kr9jjX1cg0ODmadQgjqScM6kiuUPQ2YTkIeiM+XLl1i/x01apTuOunOnTsQGYGBgRa96qomdwSpSj2vEbCtft3fkfyJJnd04MABvXSSqjvq1auXGbqj3r17s6/Qx1bKcXb0VRJ3xJg/fz72z83N1XF/A6iJOgm3UPgeF87Rzs6OuQY8xn5+fmfOnCkuLoZfaNy4McyaYgNcJHLKI0eOIELD38G94rdMGyETxd1CAorbDHvKz89PT0/HLayyU60uwPXjkcO1jY+Ph6+5ePEiJNHChQtx8Wk4Ia52kyZNcFuRWOCuZWRk4IYivDHbhqxBzr1v3767d+/injZv3lwvnYRcB6Fo27Zt+C0FCdQBCRMe7OPHj+PoyBFxUGGrcqWOCVEWrg3GBv8CDwsPha/CWuFAdAhoQRzixo0bOGVK9OFWsGe/fv12K6G2BLhORPG1a9fiHOG5kLLj5yxII5rCE2VmZmJnJAYU4HV3TDt27IAYJQ/epUuXNCUWF+3gSWEGkBGIZAhpuIl4hPv27cvu/sqVK3GCM2bMePz4MYI6XDku6cmTJ+m/+An+C2GBRxt3B0+6kxL6b6U6CYHTSjnzDd016pYbGxsL94LE7P79+7jLOMTMmTPZVCO66CRyO7ANeKTr16+jzjRin+0AB4VbD5UGgfjs2TNEZXajR4wY4eDgANujGXEUyq5OMBvk+jAJlAb3SCPbSSfBtOrUqYMK0KQ7c+fOpTHkuugkOE8vLy/sPGnSpDQB7PJaCpW6IzykTZs2FbmjTp06MXeEn2t3R9p1Ejyb3O4IFqjJHSEykjuCRdF8SOSO8ByJ3BFMReSOWJVocQXD3BGsDmaZk5ODs4bx4DMe0pCQEFlXL6lxOgk3w0UAHl34EeG7W7gqMhEA08c9hlSiJlMI9rZt27JJ02EHAwYMEL5lh/Bq0KCB1Qfc3d1NsyRCtQe5PlwqzVzFri0cLnvdgKiGW8PuS3R0tLBhH/+FC6D/BgQEIF7i1rPOmLi5uMXCwyGXwg6s5SAvLy8sLAxHxEa2fBXiCtJxVh94AcQ8+heeYewJVyIsE1+xkfV4VSjDNsqknyN4o0BhrWgH1JYdAlqQpYxwnfDFZMPUqFZSUgIHSnvCCLOysuB9WG3h0RD86L/w2suWLUNtIyIihHUTvk8RgT1dVBCdoEWAW4koxVbPgKm0a9cO0oHtMG/ePJpkiC6jqLsSjBCyBv/C3/Hjx8+ePZtZDqxFdPsA/itc7ywlJcXX15euHllXeXn5lClTEDXZXUaSRt1vFUpnxYyKgS3CFvFffvmFmnyslIv5QBBDaaF8tgMOgaqyNX/wYenSpfQvWAVspmHDhtifHQghll2BgQMH0rPARgRDStIsTQDBCcFMaNWjR48WtdYzUIKqCQFyrZYFuSMWJnRxR8IwAWHRokUL5o6gPETuSHj7FCru6Pbt26ruCE6Ael4b445oBADAqVXqjmDJ7Hx1dEes453QHaGqerkjXA0cWnimKFbCRZzUUuN0ki4gY0DChAxP+AKVAceEf2laEBQ/wWMgnOSUIyHs2qrNHvC04L9quz5g//tKpE076Igo1rBFPcvKyujnmmqFxxMni310bLyhZZ6pP40IHKKgoAD/tbhBRpKDkEMjXkXTIhO4evgXrpXam0IzVqt9AWEwzKUY3ET3+PFj7UsUv3nzRndDpZ2FrwiF4Pni/o0w2B3huTZDd0SWr4s70lGXyOeOYJz0CMs9IwDBdRKHw+FwOByOerhO4nA4HA6Hw1EP10kcDofD4XA46uE6icPhcDgcDkc9Zq2TysrKHjx4IOwy9urVK7VLzIjASb148cI0Pbw45g91b2T28Msvv5SUlOjyw9LSUrVdfTk1EHge7o44xsPdkcVhpjrp5cuXNHmJlWByqvz8fFtb2ytXruhSQseOHbVMUWo8Dx8+RPlhYWG9evXatm1bpcMWUO3hw4e3bdu2f//+R44cEf0XP1+/fn3Xrl3bt28/efJk1ZEmd+/eHTNmTGhoaO/evfms37qDa8UGu7IJrGNiYvr166fLz0+ePOng4IB7LVP1Hj16lJWVNXPmTNxcmqROO/CtK1euDA8P79Chw/Tp01XHN+EZGTlyJMwMj092drbov3jYYas9evSA3SYmJmpZ/pkjBPEJ15MmBDFDd4RAe+HChTVr1vzrX//ScZj99evXR4wYQe5IdTFU7o5kQq07Gjp0aHV1R7dv3yY7weODkkX/FbojPB3m7I7MVCelpqZaW1vD0eNCswSuW7duAwcO1LGE3Nxc+LWbN2/KUT1kAzS3b1JS0qBBg2D0w4YN016Z+vXrBwYGTps2rXv37th/8eLFwh3wqEAUxsXFJSQkoGQvLy/hUgNwao6Ojj4+PlOnTu3bty9+DlOW47yqGW/evKEV4K9du8YSuHPnzlmprHakhS5dusTHx8tRPZpOjSbjsdJh/lk8qvCnsBMooUmTJjk5Ofn7+wt9E4IlIjc2wsz69OljpTLtIayUIj2CH/y1u7s7rU7I0U5aWhoue2Zm5q1bt5g7gl2ZiTuiew1wCF2WodXFHVkplyiAmNbujiCzrCx2inYTo9YdnT9/vk6dOhbtjljYqtQdicIWLT5oEe7ITHUSrX0t3HLp0iVc0zNnzuheCFyGpiWOjQS2bm9vf+fOHfqanJxspbIgMwPJGWzFz8+PJgoj84IKZPkEhDZ+ziZ/gzOFeSHbYyXg2YAZsUm9yLxE86tyVIH3sfr1clQK5b3D9dS9kIyMDIQfOXKdoqKi7du343YjH9DFMdFayxs3bqSvly9fRsXYdM+gdevW0O7MTkh85+fn09cjR47g57NmzaKvMD8oLdGyFRy1IBcKCgoSbqH1QPRyRyhBJncEB3LixImXL1+qXYFVhCTuyMPDg82fRO5Il+aHGk41c0e0iA1b6uTKlSt6uSOIdQtyR2ank/D4wZsgWYEyGKOE5MjEiRM9PT3Z6y0kdviXsCkPj/348eNXrlzJtqSkpEC/q53kyhhKS0thEKNGjWJbSkpK4GjYZKMiaL2CFStWsC20rhOrKrJSZ2dnYT0HDBjAak6LagnXA8IlwhYkc9KeVzVj06ZN8EG4UBERETAVmhj92bNnuHe0vACB+zJhwgQ2161CudoX9meN22VlZYgTCxculK+qtLBApY4JyUODBg2Eb3iRpbEteXl5Vr9edorWVGJbRo4cCSsV9m+gRV4tdEVS04D8WBd3hIe0Une0YMECJFey9i/RRSddvHhRrTtiwgjuCPUUuiNk/JW6I+EWjioid0QNeLq7o9u3b9PX8vJy6AnhCqSSo7s7QtgSTmgZFRXl6OhIDwUek+rkjixGJ3l7e0OQCvfE04vnmTVl4792dnZMrio+LCPMFgFQBfrmhWY09dCkFzewe+HGdu3ahYSEqN2flkUU5luwLRsbG7b8MnI70WT/tIwrPBo+7927F59FfU3go7t27arpvDgKDTqJmmSERoLPsCJmWjAnfBWKYIXyhS/ur6YDIX5osSJdemjq6JiQxLOp/QlakpMeEFrX/dSpU8Id4MjgvOgz0ruWLVsK/7t161b85MSJE5XWsMaiSSf5+vqK3BH+pd0dnTlzRrs7QoQwwB0J0UUnbdiwQeSOENggg9g7xICAgA4dOgh/wt2R8ajVSTq6o8GDBwuL6t27N55lTQfS7o50mUfeYHdE69HSA0KtTUePHhXu4OrqaqHuyOx0EoFEWSgdnjx5gisoWjsJortZs2ZBQUHwIFu2bFHVLtCq2KilYyOEuZVmNC2yvW3bNlV/hwojJqndH5kW9he1lMLzdurUiT7jv4MGDRL+FzaKjYcOHVJ8WJtTuIK3QinLAgMDNZ0Xh6CWPGE3VaT48Dui3eiGwoRgSDAnGBUtN8tITExEoqOpYZJWqdSEaIVdtejimCoqKrCPqM2SPAutYEqa6d69e8IdcC4scOLERX6NjitawoyjisgdPX/+3EplxfjS0tIWLVpocUfYrt0dwScY4I6E6KKTKnVHsBORO4KFVOqORCskclRRdUcJCQmVuqMmTZoIm5cUxrkjq1+vsKsWI90RpWrkjq5fvy7coZUS+gzHKHJHMDCzdUeWoZNope5du3aJdrty5YqNjU10dLSq6CZEb9ZF7N+/f7dmNHW6JEOk4CSssKaISO/vRc2JcEx0grj++K/wta7ig06iJwr+0UqlNxJ+ixI0nReHUHVMeDIhHVT3jIuLgwnBkKytrVVHMNEtYB04RNCi35qAjVVaT10cU0lJiSY7IVOkZcZFlRQ6JivBWC3dj8tRaHBHO3bsEO2GqGBnZ2ewO8LtMMAdCdFFJxngjshOuDsyElV3FBkZWak7unDhgui/aWlpBrsjXQYn6uIWYD/aw1al7sjR0VHkjuj6mKc7sgydRG/QVAcWguXLl1spl1IXiW4C2kV0M4xHjvYk0argqu1Jly5dEu4QGhrK25MqRdUxhYeHqw0kpaWltAa1qM2S0K6TjEf3BE70QpDaLYTtSfCSwh14e5IkiNwR2ZVadwT7MbE7EiJVe5LIHam2J6m6I96eVClq3ZFaN87c0bJly1T/S7fAbN0Rb08yHSLHREMWIVBEu717965r1674FzSK2iGFdevWHT9+vKajQM5310xGRobaX/H+SZaCqmOKiopSm/hiT5qsa9y4car/pWdeODRaCG6NFiuCjVVaT94/ycxR646E3W8JI90RJJQB7kgI759kzqi6I9xxXDq1e8rkjkCl9eT9k1SxDJ30+vVr2A0bQ8hITU2l93GQGm3atBG9skXOpKmFgIBSidGMpjcmNN5NOInFixcv6tevr328mzAzOHv2rJVgvBuOBXFdVlbGdoAxiQaYJCYmis6Lj3erFFXHNHv2bBiSyE6eP3/u5eUFpUvxQLVpeuTIkS4uLpqmEs3JydFiRUwNa0H3ASZubm7CaZ179+4tGu+GE2T/vXHjhpXKABNhv3LUzWwHmJgVIneERxVXctq0aaLdtLujoqIi7e7oX//6lwHuSIju491U3REb74Zj2dnZCd3R4MGDK3VHfLxbpejrjlavXq3WHSHQGOyOQKX11N0dIWwJK4+cUDTeTYs7GjVqlAW5I8vQSQplg41IvUJ4wshoijM8/LjoolyNJgLRfQov3YmNjYUrEc2fdPr0afr65MkT+FD2Yg5XuEWLFr6+vsIJS2xtbVlCQBPbLFmyhL7ShCXCTAInLpo/qU6dOsJREhy1qDom5DeiRhfcDqgN+B1qAEBWjYdf1BgQHBzM0iA50OSYtmzZIgzGoglLaP6khIQEtkP79u2FdjJ06FDswN7EnTx50kplwhK13Wg4IiR0R9QqIxNqdZIc7kh1/iQ53Gw1wwB3NGTIEFV3FBYWJrI9adHujti4S7Jn0fxJursjei1jKe7IYnRSWloaHlc2EOnp06eNGjXCPu/evaMtq1atEqlvKFa4Azmqd+/ePXgKGMGECRPgZUQ92qhZXjhHbW5uro2NTbNmzWBGqLNqo/3w4cPhZCG/xowZ4+rq2rRpU2Sf7L/Xr1/Hk+Pt7T1p0iSaPxdXQ47zqmaoOiZkP25ubsKGSeoUyfqaIL+BzbRt25blSZQuy9S7MCgoyM/Pj5YyaNCggZ8S9l+axJZ9xaMKuQY7gTeBncCtICgK068LFy4g70cJMDN6ASSaZ5lCWv/+/fEBh4NFmfNaAeaDqjtCrq+vO4JsgmlVusCRAaxdu5YsB04G+ow+s1uv1h2h8trdETYiZ4Cd4HnR4o569eoljHYcLRjgjl6/fo3bJHRHkKfwAFXojpjDYe6IhS1Vd+To6Ch0R6KwNXHiREtxR2aqkzIzM0XDSSBLcdG3bt1KX/Go46KznIaAv8ADT2dUVlYGE2SNyZKDQ8P19OjRY8CAARkZGcLLCJ+CuiF9F+4PbwVrgMoZNmyY6itY/Hzz5s2RkZE9e/bEY8M0OAMpBawNP4+JiVHbgZSjCp463AhR1+YpU6YgXFE8g/dZtmyZyOkgM8avWA/E+fPn4xkWvoaQkPT09DQV2H/xFIg8C6oNI+/bty/i09y5c1U7CyP7JzuBlsrJyVE9Ik42OjoadpucnPzkyRM5Tqr6oeqOXrx4YT7uCKm5qhUx/6PWHcFOoNtgJ8jyVe2EuyM5UOuOZs6cqd0d5efnm5U7Er5oq9Qd3bt3j7kjtTOHMXc0bdo0c3ZHZqqT1AKTatGihY4J2cqVK5HhqR11wqnJIPW3t7dXHdStFjgFHx8f+dQ2x3Lh7ohjPM+ePXN2dubuyMyxJJ30+vVrZD86rmsGGbtnzx65q8SxRLZu3Tpjxgxd9jx79uyIESMkX/qGUw3g7ogjCdu2bePuyMyxJJ3E4XA4HA6HY0q4TuJwOBwOh8NRD9dJHA6Hw+FwOOrhOonD4XA4HA5HPVwncTgcDofD4aiH6yQOh8PhcDgc9XCdxOFwOBwOh6MerpM4HA6Hw+Fw1MN1EofD4XA4HI56uE7icDgcDofDUQ/XSRwOh8PhcDjq4TqJw+FwOBwORz1cJ3E4hvDixYtOnTo5OjqGh4cnJydnZWUVFRVVdaU4FkB2dnarVq08PT0HDBiwdOnSM2fO8JVNOfoCK2rZsqWPj09sbGx6evr58+ffvn1b1ZWqtnCdxOHoDQKbv7//jh074JvgoeCn4K3gs2xtbYOCgsaOHbt58+b8/Hz+cHFEXLhwwcnJ6cmTJ8XFxQcPHpw1a1a3bt2cleADvnLBzakUZkUwFRgM8jRka8jZXF1de/bsOWfOnCNHjpSUlFR1NasPXCdxOHrTr1+/uXPnqv3XrVu3tm7dCqkEwWRtbc2bDTgMBDZEshs3bqj+C7YBC4GdwFpgM7AcEtywJViU6avKMVu0WFFZWdnp06fT0tKioqIaNmxoZ2cXGhqakJCQkZFRUFBg+qpWG7hO4nD0Y8qUKZGRkTruLEz4HBwc2rRpAzcna/U45klpaSkEUHZ2ti47wy3n5+dv2rRp1KhRLVq0qF+/PjST3DXkmD9v3ryBFR04cACfy8vLte/8/v37vLy8DRs2xMfHt2rV6uDBg6aoYnWE6yQORw927NgREhLy7t07fM7NzV25cqVeP09NTZ09e7Y8VeOYL3CzEMqrV6+mr0lJSffv39erhEaNGhUWFspQNY7FACvq2LEjWRHSLRcXF91f0V67dq1Tp05y1q46w3USh6Mrp0+fdnNzoxf/N27ccHBw0DfaPX782MPDQ57accyXUaNGjRgxgj7Pnz+/c+fO+jreOXPmpKSkyFA1joxAzfz000/szWlwcPDr168NLi0+Pn7cuHEKPdsmGQ0bNnzz5o3BR6/JcJ3EqYbAqo8fP75x48YjR468f/8eW77//nsjy4Qkcnd3J2H04sUL5PcXLlwwoJymTZvevHnTyMpwZAJ3NiMjY9OmTXSPkLvHxsYaWSYKCQ8PJ0+7d+9ef39/A3qqFRYWwuSMrAnHZOB29+/f/8svvwwNDa1Xr167du0qKio++eQTGJhhBa5cuZLkNcCHJUuW6PhDuCl6T5eUlLR+/XrDjl7D4TqJU90gEePs7BwXF+fh4dGyZUsYea1atYwpE3mYm5sbUkN8hr+jwW56lTBgwIBr167hw7JlyyZPnmxMZTgykZmZ+fnnn3fs2BHa6Ouvv0ZQmT9/vpFvK6DUkfqTMGLDlHT/OYwtMDCQPsPqbt++bUxlOCYjJSXFzs7u1atX+Pz27dtdu3bhg8E6KTs7G/kVWVG8Et1/e+PGjebNm+MDjCc4ONiAo3O4TuJUN2JiYlq3bk2G/f79+ytXruCDMTrp3bt3ISEhTBhFRkYifOpbSEZGBnXFLS4uhoYzuDIcmUAQ+vOf/7xhwwb6WlhY+Pz5cyN1EkJUgwYNSBg9fPjQwcFB7TAl7aACpLCXLFmSlJRkcGU4psTV1RUZkWijYToJNoPSyIpWr17drl07faN2w4YNnz59ig/e3t7wP/pWgMN1Eqe68d133+3evVu00RidFBsbO2PGDPqcnJw8YMAAAwpBGIazo89QXRcvXjS4Phw5OH78+KeffkpvaRnG6CRERAhikjg0TOnw4cMGlAOBzhS2i4uLYZXhmJhvvvnm6NGjoo3QSenp6fHx8ZDjeXl5ImNTC+QRpDbJ6+zsbFiRAX2MZs+evXDhQvqg+ws7DoPrJE5146OPPlJVIdBJqampHTt2nDp16r59+3R/94FIyWYBEA52M4CIiIiTJ0/iw/r160eNGmVYIRyZWLduna2trWgj6aS2bdtGRUWlpaWdPn26rKxMl9Igi5s1a0Y9bWEwwcHBbLCbvqAo1gAZFBR0+fJlw8rhmJLvv/9+7969oo3QSffv3z927Ni8efN69+7t4+Pj6+tLppWbm6sqgGg+W5LXkEqOjo6GzSpSWFjo5+enUDZqokCDTqhGw3USp7rx5ZdfqmZy1J5UUFCQkZGRkJAQGhrq5eUVGBioPbeDomrRogUJo3Pnznl4eBgzYARRMyYmRqFsXbCzszO4HI4cZGVl/fWvfxVtJJ1UUVEB5b1q1aohQ4YEBATAcioV3L169Vq+fDl9jouLGz9+vDF1Q2mksCHmxowZY0xRHNPQvn37wYMHizaqvncj04KGHj58OIS10LQeP37M5pKAmTk5ORk2cIRo2rTpgwcP8KFJkyZ8ggl94TqJU92Ao0FkEm1U+97t1atXwtyucePGffv2XbhwIeV28EqNGjUivyYc7GYw0Fv29vYkyBB9KfJxzISXL19+/PHHP//8s3Cjpvdu2gV3UlIS62lr2CwAIhA1adjd69evucK2CGBI//u//zt79uzr168fP3588eLFCt36JzHTgmyCPqaNZ8+epTFrBrNkyZJZs2bhw6JFi/gUbvrCdRKnugHHVLt27dGjR+/duzc9PZ26vurSPwk65sqVK2vXrqXcztPT8969e/QvRDtjkjlGTEwMvYuBKzR+wDlHWmbMmPG3v/1txYoVmZmZiYmJiEw69k8SCm4PD482bdqQXy0vLx8wYIDx69XAMh0dHZnCPnXqlJEFckzA5cuXIyIimjRp0qpVq6VLl2JLt27ddG+Qxk2XcCaI4uJiODR8ePr0KX3g6A7XSZxqyN27d8eOHdunT5+4uDh6BzdlyhR9C+nfvz8SQWkrhgIpR0TstLa21qUjJ8eU7N+/f+DAgZGRkZDXhYWFyON//PFHvUqgl6qS+1VYIynsHTt2qL7Q4VRLILIl1MSQ7zQrWGBgIJ/CTS+qm04qKChYtGjRwYMH+ehHjpEcO3YMIVPaMvG42dvb08JMvXv3NrItnWOedOnSJTc3V9oyIfe5wq5pIK2SUBNv2rSJZm5bsWJFYmKiVMXWBKqVTqIhlGlpabRau4+PD625vWXLlvz8/Op0phwTAINxc3MzeHSbJuLj47du3apQduvu06ePtIVzzIHMzEzqsC8hsEY7OztS2BBMhw4dkrZ8jhmCm46IJpUmLisra9OmDT6UlJTwCSb0ovropDdv3jRu3FiUxhUXFx88eHD27Nk9e/aEbPLz82Pje0tLS6uqqhxLIS4uLisrS9oyz507FxoaqlDOgWltbf327Vtpy+dUORUVFdA0kjf5DBs2jCnsvn37Sls4xzxBWoUQJnmxISEhknS4rCFUE52Es2jdujU5ES0gJrHxvWwQ5vLly6vHReBIDjQNG3IiIXPmzKEPMTExGRkZkpfPqXJYdyIJuXr16r59+xTKHr5cYdcQ4IIkb3WG/TRv3vzSpUvSFluNqSY6CaKbzeivl/ouKCgIDw+XvLsup9rQoEED48craeLw4cO8YaBakpOTExERIV/5KPzEiRPylc8xHxo2bCitJqZhChIWWO2pDjpJOGOy8LOOQCQZthIFpyYwYcIEfZe81RFkdUFBQWw2Qk51An7VwcFBJoV948aNevXqIceTo3COuQEXJGGrM0Ikz830xdQ6qaio6Keffrp16xZ97dSp0+PHj40pEDHM39+fOtsatqyETN11OdWD69evd+zYUY6SY2Nj9Vr3m2NZ4Obu3LlT8mJfvHhhZ2cn+Xg6jtkCF2TMYsxCKFzK10BeXTGdToIQiYqK+vTTT9u2bYtkqE2bNhUVFd9+++3du3cNLlM4Y/L58+chd169eqX7z8eOHUszuMOj7d+/3+BqcKo3Xl5er1+/lrZMZHXQ9NWgNZejCXgnqcIbAxHOz89vw4YN0hbLMXO8vb2NWTGJEIZLjl6YTictXbq0Tp06z58/VyjHg9CK7sbopPv37zs7O9NSEoYtK5GamkozuMvUXZdTPZgxY8batWslLHDfvn1GLhXHsQjglKS9y3BTvGdJDSQ5OXn9+vXGlIDg6ODgcPv2bYlqVLMwnU7y9/en9WWEGKyTIIrd3Nyo8Zk+Q+voW8jjx48RrugzPtDcJByOiHv37rVu3Vqq0pDVWVtbG7buN8eymDx5spHhTQgUUs+ePaUqjWNBwAWFhISwr9u3bz9z5ozur8/UTprD0R3T6aTvv/9+165doo3QSQsWLOjdu/e8efOOHTum41uzd+/eBQcHU+9afG7RooXBPW2bNm1KM7jL112XUw1o0qSJJDO8Qx7Z2dnxmUtqCPAtwvBmDNu2bfPz8+M9S2osQhe0fPnyqKgoLy8vd3f3zp07T506dd++fdSHRBUKl5VOmsPRgul0EsLDxo0bRRuhk65evQqdu3Dhwr59+zZo0MDe3j4sLAyZU2ZmpqYbHxkZOX36dPY5JSXF4FrB4BISEhTKISQdOnQwuBxO9Wb+/PlLlixhX4uKigwoBFmdh4eH5BNXcswZHx8fFt7ev39vmNqGh3RycuI9S2oycEGIkqKNsKi8vLwNGzbEx8c3a9YM0dPf33/48OEVFRVsH+GkORzDMJ1Oio6OVh2xr/reTbhmO265jY0Nbj/uNEwBBgGzwC1n5Qg/G0ZJSQkcEH2Wo7sup3rw9OlT2CH7OmzYMFtbW4TA2NjY9PT08+fPVzrBCR60jh07wtnJXFOOeZGamkprxSuU8trT0xMZY0hICDVg69Lr4P79+/gJEjmZa8oxa5KTk5s0aeLt7a3deAoLC4WZmAET5XBUMZ1OwnP+6aefzpw58/r16ydPniRprEv/pIKCgoyMjISEhNDQ0Pr167NZAF6+fNm3b1/jx/OzGdwl767LqU60aNFC1MCJsAeXBP8VHh7u6Ojo6uras2fPOXPmHDlyBPpb9HNo/bi4OBPWl2MWPH78uHnz5sItcLn5+fmbNm0aNWpUYGBgvXr1/Pz8hgwZsmrVqosXLwpbAhTKzpewK96zpIYjHM8vdDvI7QMCAjQZT3Z2NrI7Pm+78Zh0/qRr165FRERAFEOaUGKN4KHXKwzYgbW1tcgajAQOi6axkba7LqeakZKSAhkEa9G0pnJZWdnp06fT0tKioqIaNmx4+fJl9q/Vq1cHBwfzObpqJohkSUlJiG2afB30d2ZmJvYJCwtr164d2049S2A8pqopxxyBSnZzc9P01lXodnx9fX18fKi/77p16/gsAFJhefNx9+/ff+/evRIWCDuztbWl6wDNTjMXcDhCnjx54uTktHDhwgkTJkDl29nZeXp6DhgwYOnSpZUOPDl48CB25rMA1Ex27NiB0LV8+fLY2Fh8gKsJCgoaO3bs1q1b2XS7moiOjuY9S2o4NJ5f9ylvWI+lGTNm8BnbpcLydNLRo0e7d+8ubZldunShJd5E3XU5HIWy/zWEjmhZ0+LiYgigWbNmdevWzdnZGb4sPDw8OTlZ1Gxw48YN/OvBgwcmrzWn6lHbEgB5BJEEqQTBZGNjo0lwwxfBokxeZY4ZIZz+hlOFWJ5OQoWRk0k711FmZmb//v0VKt11ORzYW4cOHVasWKF9N0Q4xDlEO8Q8RD5ra2tEwZEjR9rb2/NZAGomOrYECLubYH8nJyco72HDhvH1JWo4uPuwAT5bjTlgeTpJoezVJO1sEBUVFWvWrKHPqt11OTWZeCX6/or11aXZuTg1DYNbAqi7yfbt21WHAnBqFJGRkaozM3OqBIvUSefOnRP2dpSWlJQUCafQ5Vg0ixYt6ty5syU+I5wq5N27d7wloCbTqVOn77//vrS0lL42atQoIyNDrxKMn/KGIyEWqZOAs7Pzy5cvJS+WuuteuXJF8pI5Fkd2draXlxd/98HRF0S45OTkqq4Fp8qATvrmm29GjRpFX/XVSXx4rLlhqTpp4sSJkg+XVdtdl1MzuXDhAhQzX4WNoy+8JYADnZSamlq7du1r164p9NRJubm5fJFsc8NSddKNGzdatGghYYE0XXJ6erqEZXJMTGFh4aJFi1hDI4wkMzPTgHIgjxwdHfkMyDWHnJyc7du3s68wG8Pu/pYtW4KCgnhLQA0HOmnNmjVz58718/NTKHUSDOPBgweVNk7T8FjdZwHgmAZL1UmgYcOGhi2zpRbDuutyzApEu1q1ag0YMIC+wlUZIKZ5s2INJDIy8qOPPjp27Bh9hdmwgR26o30+QE7NgXQS5DLSrU2bNkEnzZ49u2XLlu7u7pBB2NigQYNWrVr16NFj+PDhycnJyM8zMjKgzp2cnPjwWDPEgnXSzJkzFy1aJElRixcv5t11qwHQSXA0P/zww6lTpxQG6SQ+A3LNBDqpQ4cONjY2tMiDATqJtwRwGKSTFErp/Le//Q1OSfTerby8vKCg4Pz58/v27cOeKSkpY8aMCQoKwt8qqjJHGxaskx48eECtmkaSnZ3t6ekp7YRMnCoBOgmp29q1axGxaK4HfXVSfHz8+PHjZaoex2yBTpo/fz4yfpr/Wl+dRLMAIOzJVkGOJcF0EujTp0+tWrVIJxUWFj59+lRTzH348KG0nUk4UmHBOgk0adKEzXQMI9Nx/W0hvLtudYJ0kkK5olZycjLppFmzZk2ZMmXp0qXbt2/HDlevXsXtVmv2iJS8WbFmQjoJ3uOzzz67efMmzGbevHmjR4+G8axatWr37t2nTp26c+fOq1evVH/L5wPkiBg1ahTrGfns2TMPDw94HnyePHly06ZNHT/QsGHD4ODgnj17smYkFxeX9+/fV1m9ORqwbJ20aNEiNhMXvBisEw7O2trax8dn4MCBtBRAWVmZpp/z7rrVDKaTrl+/joA3c+ZM2MPFixfhsxDt8HXkyJHwSkFBQfBQcF6urq74gK/Y2K9fP19fXz4LQM2EdBI+QFIjdMFsli1bduzYMagfuJHExMRBgwaFh4c3a9asQYMGbm5usBxYS4cOHaKjo9u1a0e/5XCI4uLiPn36VLpbaWnpvXv3zp07d+jQIdoCR4SvMteOozeWrZOKioooLqpuz8rKmjFjRrdu3ZycnBwcHDp27Dh16lQYJduHd9etfjCdBMaNG/fNN99U2o4NYUQdBUaMGAEhJX8dOeYI00lv376tV6/en//850rfu7169So/P//EiRPu7u5Pnz41STU5lsHs2bOnTZtmwA/T09PnzJkjeX04RmLZOglap3Hjxt7e3lFRUWlpaSdPnlQ77QR8HwIhTPDOnTu0BWcdEhLCu+tWM4Q6qays7IcffmA6CYIYNnD//n02Sa6I69evyzfJO8fMYToJILmvVasW6SQooYyMjNzcXLiO169fq/3t+PHjt23bZrq6cswbBBc7OzvDpPPNmzdDQ0MlrxLHSCxYJ7179w5aZ8eOHUwGDRkypGnTpg0bNmzfvn1SUlJmZubDhw/V/jY+Pn706NEmrjBHbgoLC1NTU58/f05fz507R70EysvLJ02aFBMT06lTJ39/f3clbm5usJaOHTuylgN7e/sqqzqnSoHCzsrKYl83bdpEr+PPnDkzZsyYfv36wdV4enpStxIXF5fAwMCuXbvSPgcOHBg0aFCVVZ1jZuzbt69Hjx4G/9zBwUHCynAkwYJ1Uv/+/TUtE3j//n1kgQkJCe3atYNsCggIGD58+KpVqy5evFhRUcG761ZjGjVqpHuHs+Li4ry8PNb3PywsDF9lqxrHfMnPz4ej0HFn+BAocjgT6tb95s0bDw8POWvHsSSCg4PPnj1r8M+RuV29elXC+nCMx1J1ErSO7osDwJ0dP3584cKFffv29fLy6t27N++uWy2Be2rVqpXBP09NTV28eLGE9eFYCkOHDjVm9WuoczmWm+RYHEi61HaZ1R2EtrS0NKnqo1DO4RQQEPD999/b2tqOHz+exz4DsEidtGPHDtx4vjgARwQU8J49ewz++c8//9y1a1cJ68OxCEpLS62trY2JH3FxccYYHsfSefDgwYoVKxYtWrR7924jJ9S+ePFily5dpKrYpUuXPvvsM0RMhEtUsnnz5v369ZOq8JqD5ekkWCFfHICjSnFxsYODgzH2/P79e945oAaybNmyCRMmGFPCrl27RowYIVV9OJbFzp07a9euPWTIkISEBGdn59DQUGNyeHgwCb1Q9+7dhetxPXny5OOPPy4sLJSq/BqChemk+/fvw4Zu3bpV1RUxBKSt8+fP79Onz8CBA/fv31/V1aluzJo1y/ghtUFBQfpOVcqxdDw8PDQN+NARpG3e3t5S1YdjQeDW/8///M+JEyfo6y+//OLq6mrki7Pg4GA2NNtI6tatKxqMaW1tbdjq4DUZE+mkmzdvsvHYFRUVt2/fNqCQly9furm55ebmSlkzU/HmzZsGDRp06tQJqeeGDRtsbGz4gDsJoSTM+D4i06dPl2+2iLdv3z5//pz3DzAr4E/wVBpfjru7u5YpbTnVlYyMDCsrK+GWRYsWId0ypszk5OSVK1caV6//zw8//LBz507hFoQexCBJCq85mEgn1apVi71zRb7+ySef6FuCpS9QOm/evMaNG7OvyF9///vfG6YXOars379/wIABxpeDqKnLRLr68v79e8jir776ysnJ6S9/+QsfSWA+dO3alTUGGMPAgQPZrMoSUlRU1K5du9q1a3/77be2trai5VQ5Vc6CBQs8PT2FW9asWWNkV+5Tp07BRRhXLwW9dWnTps3UqVPZRridP/7xj/n5+UYWXtMwnU6yt7cnP2KYToqMjExMTJShaiZCZK8K5RiZ9PT0qqpP9eDcuXPIvaZPnw7TKikpMb7AiooKZ2dn48sRMWvWLBcXl+LiYoXy9WtgYOCwYcMkPwpHRxAtNm3aNGXKFAQ5qWbk37x586RJkyQpSkjDhg2HDBlC/V2g5z7//PMzZ85IfhSOwezYsaN+/frCLUuXLjVgOVuExbZt216+fFlhtBdCTIdtQ73BzjMzM6Gwb968qVBma4MHDxam6xwdMZ1OQsZfr169t2/fGqCTZs+ebekzHnl5ecEpC7fgWeLLQhnDuHHj6tSpM2PGDKgQqPCIiAhJim3atOnjx48lKYrxj3/8Q9gSkJeX94c//IEP2KwSXrx44ejoGBoaiudx5MiRtWvXFr2YMAzYDCzH+HKEnD179k9/+pPQTsaOHStHeyfHYIqKin7/+99fuXKFviJIQYikpqbqXgJiIlJod3f3I0eO0BYaqwT/ZkC3OSRjQUFBgwYNQrEKpTaCbvvmm2/gIf/6179Cij179kzfMjmm00kK5Qxa0Lmkky5evHjq1Cl81rSOBAOC3cfHx9LfU3Tv3h1OWbjFxsZm69atVVUfS+fatWvIrdniAG/evPnqq68kGZs9adKkzZs3G18OA48Y7F/UMfPjjz8WrjbIMRlDhw4VdkiCfv3yyy8lWaTd2dm5oqLC+HIYq1evFs1guWbNGtFbHk6Vs3jxYkiQefPmrV27NiQkpFGjRuXl5devX9flt4cOHYIkmjZtGlnOy5cvIXH8/PwgkXH3Efjat29/+PBhHWvy008/2dnZbdy4kb5CrtEsADDv58+fVxpqOZowqU4qKCj44osv9u3bB50Ek0Ji1Lp164YNGyK9c3BwgKBu1apVjx49aEXSVatWZWZmbtiwwdbW9smTJyaopKzAHX/33Xfs3dDRo0c//fRTms+XYwDwSvAgwi2xsbGSvMyC5xo4cKDx5Qj5j//4D2GfADx0v/vd7x48eCDtUTi6YG1tjdSLfcW9gE4ycs4bAg5N2lEm69atg1cUboFO4gPrzJDTp0+PGzcuLi4OtwyK5927dy1bttS+FO6jR4+6dOnSrl07li+tX78eoRCBTxiUz58/D63ToEGDBQsWaI8XixYtcnFxIX2GPeEeYZB8bIEkmFQngalTp+KWq33vxlZuhzyCrUAqQTA1a9Zs+/btclQpJiZGODxy1KhRmzZtkuNADCSy//jHP5Au9O7d++uvv+aDDowhPj4+KipKuCUpKUn3Kdq1AM8iCk4G8+zZsy1btuCDk5MTFD/bjrSvdu3akhyCoy/ffvstshThFhsbm5ycHONLXr169fTp040vR6HseHfjxo2LFy9+/PHHwlA3ePBgOC5JDsGRFUil/v37R0RE0PsvIe/fv0ea5+zszALQtWvXAgICBgwYQF0YVUGCjZ94eHhgH9VVTd68eRMeHt69e3daBh5mA70lU+dX1PDmzZs1LcM3tU6C0dSpU4fppEr73m7cuHHKlClyVKlFixZsAVTQqVMn+XoLlZaW0nC/vLw8nNGPP/6o6Xng6AhuFlIx4RYIUIhdw0p78OBB586d2cxJSNmNn8j01KlTtra2pPLXrl373XffwX8plHNkIDBrzzU58oGLL5xRhtqTqP+sAezfv79v3770GfZj5IBwYtGiRT4+PtTMEBgY2KtXL4p/u3fv/vTTT3V8ocMxByBuIIDYytwKZQho1KjRuHHj6C0Y7uyIESO8vLx0XBLu4MGDHTp0aNasGRIw6rgG2QTJxRZcgliHSCJXIy2vX78OCwv75ptvmjRpgkemT58+lt4ZRndMpJNCQ0PZm/tDhw5169aNPuOW4x67KmnatCliVWxsbGJi4tKlS6klvLCw0ICxA7pgSp20fPlymvD34cOHot7cHMO4cuXKZ599JuyfhAfYgAHeEO7Tp0+H+bFxT+Xl5W3bth06dCgr3ADmzp3bsGFDNiEqHMqyZcusra3/+Mc//vOf/5w1a5ZFD0qwaIYPHy7qn/TDDz8Y0D8JOgZKvX379uz9KRSwm5sbRJjBPfSRpoeHhws74WILAtJf//rXb7/9tnHjxpJMYcAxJXv37oVVsNfuRUVFbKFuJFFOTk6QOPqaH8JiQkJCgwYN8Bcy69y5cwql44KpwCYlGfmrCvIBxGvSRvC3/v7+NWcKQBPppJUrV86YMUP7PpCrd+7cOX36NL13Y/oaMUySXpYioJNw16d8wN7eXj6dxCb8HTNmjPD9C8cYcDGF493wGMOY9Ro1DW0E65o2bRpLjPbs2QPhjjKR07u7u3fp0kXfyITABrkfGRkJt6VQOq/+/fvLMWKcYxgvX74UjXdDjl5QUKD7Yg6wlqSkJNhJVlYWbSkrK0MiZGtri2weCtvBwQE76Nur8urVq3AUbGwHqoTE/dq1a3oVwjFDLl26BD8jfLcLSd2qVavevXsbk4xBjkNpBQYGIg9HSgbZlJKSIkV91QDXKhzWBw4fPowEQ6bDmRsm0kne3t4Gj7Xu0aPHzz//LG19FEqd1KtXr0UfgB3LpJNyc3OpxzHcKxy06utqjsGw+ZOOHz+uUGoUX19fXQblIgjhpkAos8aAu3fvInZCGAnjJe4dtkAwIeeDjq+0WIQ65I5sNlSU6enpOXPmTN56ZFYI50+CJWAL7AdSW5fe3Pv27cNTDBnEtPXu3buhkBITE9mW0tLSJUuWIG517dr15MmTulQJNtOoUSP2Tm3v3r3wSEgaDTk9jvkBPeTn54f8nyQ1BLFUXf7hl3x8fGBssrY1Is+vVetXauH58+esO021xxQ6CcHMmJUBli1bNnfuXAnrQ5jsvRt8JWUSa9euNXK5TU6lIFZ17969f//+mt59YIepU6ciCB04cIBtQciEGNI0/hY+btq0aQ4ODjExMVry+w0bNqAQ1ssSoQ4/4S9KLAVoFAggiB5NO9BMgK1bt2b92PChjRJNawJCfsGx0IyymkYelZeXR0ZGsqFJ79+/Hz9+PMrkXRirGbjRyM3gE5DISTt3GnIzOV65CCFVRG3kBPLJ//qv/5L1oOaDKXQSXIBogIlewH+JRoBLgml0EkIslD599vb2NnK5TY6OILlv1aqV6qCMrKwsFxeX5ORk1lsuOzsbW2bMmFHpzDfwRLt27UKx/v7+W7ZsEe7/9u3bAQMGdO7cmY6IPceNG9esWTO557O4cePG/v37T58+zaeslISioqLGjRur9iCEkp48ebKdnR0bo0qv3uzt7XWZsuvRo0cJCQnYOS4uTrRU0a1bt7y8vJYvX05fYTCBgYFQ7bK6ZSiwH3/8cePGjXl5efIdhaPKvn37YmNjJS8WQlzaibvU8s033wgzyfXr1zds2FDug5oJsuukFy9eGH81kedJUhkhptFJU6dOpbWjz54926FDB8nL52iC5p65f/8+23LixImOHTsyqYoPuOlhYWH6zmOE2IaAh7A3YcIEFIIo6OPjs2jRIvovlHHz5s0nTpwoa4aHxA7mVL9+/d69e/v6+uIDX7NJEnBhqSe1UHoOHjx4/PjxbJo+aGt4JOGLNl1AJIO8btKkSXBw8N69e+F4d+/eDRNlQ5NycnJcXV3ZpMwygVThiy++6Nq1KwL2d999Fx0dzV8KmwxEHDlW34IrMMFSoampqba2tpcuXXr+/Hlubu7f//53mvSkJiC7TsLFZSHEYNq1a0cr1EjI3bt32bgDhTI1N34ouAhESkRTGtPbo0cP6kPDMRnU6US1ZzciFi24tn//foMLR0BdtWqVl5dX27Ztly1bRhshxZycnKRaMkwLkydP9vf3Z7Ecp4Pjyn3QGgJcImRuUFCQao80yGLEpJCQEE0v2nTh8uXLUVFRuF9jxoyh3lE44syZMwMCAuRugITUo37r9BWuqV69enLPG8dh4DldsmSJ5MWOGDGC9SKQiaKiItjt8uXL3dzcvv/+e/g9Nut3TUB2neTn52f8nFQpKSmSz5oVGRn5+9//nsnwFi1aSL4W986dO5GJKpRtDKL1Bzim4datW87Ozj/++CPbgqwdSTx0hlSTf1D3u5MnTyIlgLVT5JMbRFnhPKUQbf/5n//JpiHgGA9SfzyzrK0R2hpSxsHBQTg5rTGUlJTMnTsXaqy4uLhNmzbQTCZ4ebpv3z47OzvhlqSkJDl6NXDUMnr0aOHcXVKRlpYmh/wSMmnSpDlz5iiUI2Bq4FAkWXQSki1ar3HUqFGqk4cawNmzZ3v27Gl8OUKgkxBsWrVqRV/l0EmBgYHUZDVt2rSlS5dKWzhHR54/f960aVMEucePH3fr1s3IxgC1IKbGKTFBLwHiT3/6k2gquW+//Zb3GZcWSGp7e3vo4CNHjri6uiYkJEg+sR6kGFzl3r17pS1WEwsXLhRNR8cXQjElvXv3PnbsmOTF7t+/3+ApdnUBbq1evXovX77E58aNGxszl4GFIr1Ounz5cu3atZGm4OalpKR8+eWXui/jpwlkWs7OzpJUjwGdBIHMFnuSXCdBIUEnKZRv3yDI+BqEVQgSoC5duiAmybRWDHzf0KFD5ShZEz/88IPoNe4nn3xy6dIlU9ahJpCfnw+zadmypeTamujUqdP58+flKFktmzdv9vLyEm6ZP3++JHOIc3QBSZoc06nfvHnTmBHllbJly5bo6GiFchm7Hj16yHcgs0V6nQRxkJyczL6uXLlSkl7YzZo1e/TokfHlMKCT4COys7P/+te/vnnzRnKd9OzZs40bN2ZlZW3fvt3EQZSjClJ2+SZlePDgATygTIWrpWfPniNGjGBfc3NzP/vss5qzjIAp6datm7Ajo7SMHDlSpvUr1fL48WPoaaEjbd26tUwLQ3FUadSokXANE6lAHujp6Sl5sQxfX19a2Kdr1656TeRbbZBYJ71///53v/udsJ9EcXFxrVq1jG+pS0hIkLa/IekkhTKlg7eCTtq2bZsky/uhkLS0NB8fnwEDBtjb20N+CUddcaqEVatWyTffukL5AkW+wlVBVlq7du2ZM2ciw1u/fv13333HX+zKRPPmzSUf4cFYsmSJfHMoq2X06NEuLi5IG06cODF48OB//vOf8p0dR4S1tbVMJUu1dLcqUEjQSQplL1sENZmOYuZIrJNevnwJVSR68LDF4FZrNrj68OHDAwcONLZ+AphOKiws/Oqrr2xtbefOnevk5BQTE2PwtCIXL16Miory8/OD+6PBMgsXLkxKSpKw2hzDgKTYvHmzfOWzWbJMwMOHDyG+79y5M2zYsHbt2vXt29f4V9scTcg6SUx2djYN9TANkNRPnjzZsGFDly5dwsLCEhMT+WyWpkQ+neTv7y+cBFJCENFoLR1YC7JNOQ5h/kj/3u3zzz8XNs1BIf3mN7+hsfF6gYqlp6dDwJJUKisrk0oyFxQUBAcH9+rVizUwpKamQswh9uBYe/bsCQoKQhK5Y8cOHUegwEBXr17dtGlTlHnq1Cnhv169egUFJvdkqZxKGTlyJBsOLQcwGDla1NUyduxYWiUQEt8E86bUcGRtKbx586bJ3tiWlpbWr1+fXs7m5OTwt7QmpqKiQjTYUF/GjBkjjK3IwHEfsXH69OlsI/J/CfvSlZSU1KtXr0KJi4tLjbUZ6XVS7969+/Tpw77iLiKE6FsItfUNHTqUvQijeZORQBs5kdKBAwcgXI4cObJmzZpDhw7RRughZHXC1Z2QrI8YMcLV1XXq1KlaXhreuHEDVfLy8kpJSdHUfA09LlP3YY7uRERECBdxlJzo6Gi2crOs0CqB5LDwgJiyd0vNRNb2JAo/8pUvZPny5bTAO4Kfvb09T95MDLKaJk2aGFNCo0aNhJ1oaapkbPztb3/Lxrp+++23uixTqCNz5sxJSEhQKLtyk/HUTKTXScXFxcjAmjVrFhcX17p1a4iS+/fv//zzzzq+BUfSEx8f37hxY7b2LcwrPDw8LCzs3r17W7duDQgIgPD68ccf9X3Ocaa45X5+frovDF5eXg5DxE+6d+8uXJMS3g01adWqVadOnZjY0sTFixdbtmypV1U5kgNTlHUSP6R0ppmvb8OGDWPHjlUonxQHBwce7WTlzZs3/v7+sh5CjsUG1AK3TB0lU1NThS0QHNMA+WLkkgyadFJsbKydnR1NSiKhTkLERLHkNqHwEH8lKdYSkWX+JPjuI0eObNy48eDBg3Tz9u/fj6e00vZAGIGTk1NaWhrVCuXMnTvX2dlZNL9IXl4eLAMp0eTJkx8/fqxLlYqKiiBWDJ7h5vz583369PH19V20aNG4ceNgmklJSToeGnh5eck0rpijI7hlskoKiCTTxB4YIU1+uHjxYt71TW5u374t64hr4OPjQzPTyMqZM2fatm2rUAY/+Nhnz57JfUSOiOzsbCO72MKJ9e/ff9EHbGxsSCchbgYHB0+dOlUhqU5CnMXhFMrXO2Q8NRZTrINL4Oa5urr+9NNPav+LRAd3olu3bizpx56wAIgSTetsI9VDqHB3d4cj077O7unTp5F5Gz8R6osXL6Kjo0eNGqVvxIU1jxw50sijc4xB7iUbz549GxUVJeshFMqHqF27dvQZll8DJ3wzMXAdMTExsh6iZ8+eEr4o0URERAQtbYHctXv37nIfjqPKhg0bJk6caEwJCIihoaFxH/j73//OdNKtW7c+++wzyHqpdNLbt283btzo5+fXunXrCRMmyNq50/wxnU5SKKeZ8fLyonkdGWyxLTZmp7i4GDI2ICBAxym5jh8/3qVLF4iwBQsWqA7sh+52c3OTanavR48eGdAO/8svv1hbW5uyE1xhYSGEJl/IgiH3uP3nz58b0A9PX/r27UsOKycnp2vXrnIfjrN79+5JkybJegiUL1xXRw7gUeFgydVDZ4vGmnBMw5w5cxYuXGhMCZreu9HGxMTEsLAw6KS0tLSlS5caPLPx/fv3x4wZY2dnN2LECAgv5AlSrdVjuZhUJymU47+Cg4NppRji2rVrwsW2cOMdHR1pOI9ePHnyZMqUKbi70Fg0KdabN2+gn5A8STsXdvv27Q2Y+Bjyf/369RJWQxPQnT169Pjzn/8Mh1inTh1fX1+5F9c0f5AbmWDmD/mmMCEQ7ZAM0Gc4RL5KiQlIT09H1JH1EKtWrRL6QzlA+ampqQrljBKmnMCCIwT5PAUmg9Guk8rLy+vWrfvb3/720KFD0EwIhUOGDNG9geD9+/d79+4NCQnx9vZeu3Ytm2UAdeYztptaJymUg8uio6NjY2NFo+4hmAICAgYOHFhSUmJw4bjZO3fubNasGeIi9Na4ceOMrq8YWKEBb1hu3rxJs3XJzbRp0zw9PellJW4usoEa/mpZoWxdk+oizJo1S2if8+fPhwzF35ycHPYWTKYJjhHt5s2bp+DRzoTMmDFjy5YtxpeDYCPs5p+fn7969Wr8nTp1akFBQVFRkUL56laOhiU4Achr6gI1fvz45cuXS34IjmnQrpMUyi5QtWrVovduCK/btm1DSEU01D7HzbNnz6ZPn25vbx8ZGan2nV3jxo1reP/aKtBJxMyZM9u0aUOTMZaWlo4ZMwb3W6qR1d27d4fqevToESxJ8h6LuGIuLi4GzNwdGBgox+I+IurXr79//372FRfho48+quFT7p4/fx4uQJKiPvnkE6HLoN4A+Pv1118z/QRXJcmxhAitbuzYscuWLZP8EBxVhg8fDgVsfDmIZ8IFaBHYKLzBVOLj42kj1LYcfcZZXldRUWFjY8MXmrRcHjx4IJyJEOkfHIJo4507d0QdPPLy8pAt29raqg57ys3N7dq1q5OTExIwLc0TsF4EaOnOw/KoMp0Etm7d6u3tjbwK92nhwoUSDkfCvafJcqKjo0+ePClVsYyUlBR9F8FANO3Vqxd7BQbntWTJEskrBn7zm9+ItP8f/vAHE3QUNWeysrJoLL3xaNJJbdu2ZR1+5dBJ0L409oT6uvFoZxp69uyJjMv4cjTpJC8vry+++OLq1asK2XRS+/bt6XXPpk2b+EKTNZbXr18vWrTI1dW1c+fOcCaLFy92c3Pr0KGDLlP5l5eXQ2G/ffvWBPU0T6pSJ4EdO3a0atVK9wH2OjJu3DhqikxOTl63bp20hSt+3VNER1Cfjz76KDw8nL7K5BPB//7v/wo9+7t37/77v//bBO1Y5sz69eulWkULOgm38qcP1K5dm3TSzz///OWXX547d04hj05CwKZot3btWh7tTEZQUJAkgwqhkxo3bnzzA8iRSCdBPCGV9/PzU8jjE54/f96sWTP6jKPIt6Avx1LIyclp06YNkna91pWHzzHN/HDmSRXrpIMHD0ZHR0te7IoVK6jf4tatWxMTEyUvX6GMW3otqgWfCP1ubW2dlZWlkFMnQXcK27pyc3M///zzGj4bIUSSASMD1AKdhAjX5AO//e1vSSfdvXsXwc/d3R2XWnKdhId09+7dLVu2zMzM9PDwyM/Pl7Z8jiakmk4COumzzz5jZmNvb890Em4uzAb2KYdPKC0tTUtL69Onz/nz500wHpNjESCRDg4O1usnyLRJzddMqlgnbd68WY6u1lAwsbGx+ID8PiIiQvLyFcqJVdq3b6/7/tTSvmfPnh9++KGsrEw+nXT8+PEvvvjixx9/RNp64sSJ+vXryz2axvwZO3YsyVPj0fTeDRvxKEHELF++HDrp1KlTkqiZoqKi5ORkJyenqKgoJIII2zW8Q6WJkVAnqX3vRhvhTP7yl79MmTKF5vfXcVlJ7Vy5ciUmJsbT0xOuZsKECUuXLi0oKDC+WE71wN/fX19PAn0vyTtoS6SKddLChQvliOL3799v1aqVQjkzpHwDwhEUHz58qOPO5BkVypb8MWPGyKSTTp48CXl07NgxpAsIrngYTDMZgZkDnWTkiFyGFp2kUHYY//rrr6GTEO0CAgIQBXfv3m1YYx5uZffu3d3d3YWzgsFmhOvncOQmNDRUknK06yTQr1+/r776qmPHjkOHDrW3t09MTNTrtQjjl19+wSMP24OpsB7oT58+NcG8GBwLYuPGjaNGjdLrJ5s2baLWhxpIFeukiRMnSvVCRAgiE1s1CU5H8vKJJUuW6DIHXXl5+bp162bPnk06CQH1iy++iI+Pl0Mnef2/9s48rolr7eP+cW3V3mtba+tSl0u1rQtCWAUEAQFRFBdEtC6gCCKoKFdEQKRataIVEUUrFEEWhSqIgAguLGFTKiBwWUREKKsiGJayGdH30bnNm9IISWYmCzzfT8xnksx58uCcnPM7c855Hi0tIoUT3nWgib51ErBz507OvFtpaen27duhKnp6er548YIf++3t7VCvQIKvWbPm71HmU1NTN2zYQMXfgYiUfnVSY2PjqFGjiDahs7MzMDAQTgDZxP9uu4qKCmdnZ1VVVZ7ZnKA6EYvnEOTNu5ByDAZDoNDHcDKxlWQQImadZG9vT9WESC/k5OSIA2VlZZoCYUOXNmvWrD4Sxj1+/Hj37t0g1Pbt2xccHEzopDfvQhxBd0u5ToL/SSsrqzfvFiVwUsoj1BIVFcW9Cxe6uubmZnjmvNna2gpjNe4ibW1tZ8+eVVFR2bRpUx991cOHD+HnAI2Xh4dHH6FBlZSU+JRciORQVlbGHdQYVHV0dDQ8c78JkigxMZG71G+//bZx40aQPjwzDRC8evUqNjZ28eLFixYtgoP33bwE40TjgCAErq6uAt2kgA5LRkaG09D1CuY0sBGzToL/+ry8PDosz58/n0gXumLFCvp2e23fvv3vaeNAqkdGRhoaGi5YsODq1auEkOLMu715F8gEBBblOklfX59YE+Pj43PixAlqjSPkSU5Ohtqora0dFhbG2WQLBxEREXp6etDVxcXF9TtJBxfX09OTfmcRSYGzRo2TaYCgvr7+0KFDoJudnJz4yVCkpqbGYrHo9BSRJkCmC7Q0GzqsCRMmwMifeIk6SXRA187/Eh+B2Lx5MzFt4ejoSF96Gmi2DAwMOC+h5u3du1deXn7Pnj3l5eXcZzY3N3MvgoM2rqCgwMbGhpI1mwD8sUTQge7ubgUFBSKAJyKB1NTUEJXExcWFOCDyKPFZHCoSg8EQ788WET0goBMSEpYsWQKS+uzZs6ampiC4Q0NDOfkl+gVKURUdAxkYGBsb879wE3QSDNK+/PLL/Pz8N6iTRAl900NHjx4NDg5+8651EDQmpEBAa1VcXEzc+oYmLDw8nP+/CByjKizCokWLiNCaAQEBMMqkxCZCH1BJTp06NX/+fP77OQ6bNm26efMmHV4hkk9lZaWRkZEQyzrb2toUFRVRYSMc4uLitm3bxufJoJMuXrwIfRYR/QR1kuiYMWMGTZahHSEiDty4cYPWuHyXLl2aOXOmg4ODcHsmt2/fTl7G5eTkEBtzoPoqKyvj3XVpQUtLS4iUMnC5ly5dSoc/iFTAZDKtra2FKGhjY8Od1AgZ5EB/wWAw+Jx8IHQSFFFRUTl//jzqJNEBCoMmy1VVVdAiZGRkJCQk0BqNurS01MLCQujir169WrZsGcmZQRMTEyI1XlhYmLOzMxlTiCjx9fX18fERoqC6ujpuaRzMqKqqCqGw8/PzobWhwx9ESjly5Mgvv/zSxwlPnz49fPgw1DczMzPQSW/eJWweP368oqIi6iRR0NraOnv2bJqMZ2VlTZw40djY2NLScurUqaCFqVoJ1Ivnz5/Dt5Cx0NLSAtpc6BRshYWFRLAoIrBvH1ulEEmjra1NTU1NiIIBAQF79+6l3B9EWgB5TaQcEJS5c+fCGJJyfxAp5dmzZzx7YehNkpOTQRtB3xQYGNjR0UHcTyI+3bFjx5AhQ1AniYLHjx8LGj2dT9hstoyMDGcKv729ncFg0JR3FuQXebVXXV0ttMRZs2ZNRkYGHMTGxnJSsSLSgq2tbWpqqqCloNmaNm0ahn4YtMDgStAUkwShoaGosBFuVq9efe/ePc5LFovl7e2trKxsZWVFTFMQuLq6cuY9WltbQXDHxcUJcVNTGhGnTsrKytq4cSNNlkeNGsW9xTo4OFhfX5+O73rz7h44eSNQU3V0dLhj8/ADaE3OhjtOkElEiigoKIB2StBSDx488PDw4NTwtLQ0jCI42Ni8eXNKSoqgpcLCwq5du8Z5GRgY+L7ITMgggclkmpubv3kXr8vS0hIUko+PDz8CKCIiYt68eYNhtCZOnXT9+nVOMAZqiY2NnTVrVq/vkpWVpeO73lCkk4DIyMjvvvuu7yvCZrOfPXtWUlKSnp4eExPz888/u7m5JSYmcoJMIlKHrq6uoLcSjxw5MmTIEM4d0y1btsA7NLiGSC55eXkCpZgkgGbwiy++4Gz16BVfHhmcKCoqqqurw4BN0Hvb0OwIvTy3trMt+unjsNqH91h1bMnO1C5OnQRDmePHj9NhGUTD5MmTud+JioqiSs38HRDgwuXw+jtQ7aDPCwoK8vLyAgFkZ2e3atUqAwMDJSUlBoOhoKCgoqJiaGgIcmrbtm3u7u7e3t7BwcGampo//vgjppGXUkJDQwVVOXD+4sWLJ06cSAz7UCcNTrS1tevr6wUqAjppyZIltra2xEvUScgbchshra2tBW18Xvb02BcmyTFDvko6P+GO30xmkEraxSwWLZEUKUGcOglEEkglOizDaGn48OHcG/U3btzo5OREx3cBoGOeP39OiSkYI4LoOXnyJKif69evZ2ZmlpaWgvG+ddiTJ0/4396JSBpdXV2CSm1omPbs2QMtFCikN6iTBishISGCBksDnZSenj5p0iQioTLqJATYv3//rVu3hCvb3d09b968Xsma+qDn9WuT7Jh/J/qPv+PH/ZiREpTeVCOcD3QjTp3U0dFB39Smp6fn9OnTY2Njs7Ky9u7dC+3C33NDUoWZmZlwwZN6AT0liCThErn4+vpSFbISET2Ojo5xcXH8n0/opMbGxi+++OLu3buokwYnoLAVFBQE2skLOqmgoCAqKkpJSQkKok5CgFOnToWFhQldvLm5WVVVlXsxeB9E1T/+Njmwl0giHqrplyQzDqqY4yfRSkxMjLm5uampqbu7O1X3e3gCAiUzM5O8nXPnzkF/KVxZuI6GhoZCjwkQ8VJWVsZ/dInU1NRDhw6BToLjCxcuQAtlY2ODOmlwsnv37ujoaH7OhHEpNFOETnrz7i746dOnUSchQHh4OEglMhaqqqqmT5/OT11a+FsUT5EEj+kpFx60SGJcm4Gsk0SGm5sb9xYS4Xj27Jm8vDyZubPq6mpoBDEYt5QCMrfvVgYGbdCWKSsrW1paQpUjdBL8fufOnTthwgTUSYOT8vLyhQsX9n1OaWnpzp07GQyGt7c3RyfBm2PGjBk2bBjqJOT27dtE+goy3Lt3733hT0GjQ/eUl5d3586dSd/bfbz9u39ZLPlo2bxhuiofO23g6CSZRP+r9WUk3aAD1EkUcOLEiYCAAJJG1q5dGxsbS9JIUFDQ+vXrSRpBxMLVq1ddXV15fnT//n1ivy7oJKIZIubdiE+Li4uHDh2KOmnQYmRkxHMPB5vNjoyMNDAwgBOgbSEWwHF0EgBVaMiQIaiTkNzc3K1bt5K3Ex0draenB6ZWr14NFU/hTzQ0NIyNjTds2LBr166Jdms+cbT49IDdZ167R/vv/1BpxmeeuwidNCUp4FZDJXk3KAd1EgVcuHCB5Ma9xMREIkEbeZYuXQqNIyWmEFECvZqioiL3ir329nZ/f/85c+ZAo8NkMrlPfvDgQVZWFudlfHw8dIR43QcnMTExvebr6+rqfvjhB3l5eScnpydPnnB/dOXKlaamJuK4ra3N19c3MDAQ464NcqACrFy5krydGzdumJmZZWRkPHz48Pnz5zzVhUtJ2gSuubYx4Uf/MWXi2JhTcDyLGcx6KXBecBGAOokCoIvav39/QEBAbW2tEMWJ7U41NdQs9X/69Om0adPgmRJriChxd3cnQiIVFRVt376dwWB4eHjwuf8ABJahoSEIbpp9RCSOnp4eGLJ3dnZCY56UlGRqaqqlpRUcHAwNCz/FCwoKQIsPksDKCE86Ojr09PRIGoEaqKqq2tjY2PdpT7vaQQ9xL0v6xGXTcEONqUkBu4sFzkwgGlAnkcXFxUVOTu7IkSPOzs4wOBPCAmgskmvoegFDRpoSwiC0AqM6FRUVXV1duHzx8fGCBuWCrg6Kl5aWkvHhdUcH++FD9uPHr9lsMnYQUXL48GFzc3MYbllbWwsRmT0mJgaqHMkMmLWdbfktDfBMxggiLjQ0NEha2Ldv3/nz5/k58+6LOkZqyJdcUulf2iq6J79/9VpCo02iTiLL559/zud+SJ48evQIBnOU5+iF+tr9jvLycu57S7W1tdypUerr6zFrgUQBAzIykyBlZWVqamrCJQp81dDQevhw87ZtLDs71tatcPCHr+9r/u5JIOIlOzvbyMiIzD0hT09PTvBJQbnT8LtGRvgsZvBMZpAsM1gtPezGsyf9F0MkCXV1dTLFoSODAR7/cqKpu9O5JA2qjUraxSX3oyMf5snLy9O6LZ0MqJPIMnv2bGNjY+Fm3ID58+fn5ORQ6xLByZMnx48fr6OjM336dPgNEMsUQJNxJ3mGtpWTAhqRBKCt6ezsJGMhLS1NU1OTzzkXDq9+/73Z3p61YcNfHpaWLS4urwXMOYiInrq6OmhJSBqxsrI6e/asoKW8nuRMS7nQa4P3t8kXjpRl9V8YkRhI3k9asGBBfn4+GQvQMZmYmJCxQB+ok8gCCsnMzGz48OHz5s2rrq6Gly9fvuSz7KVLl3bs2EGHV1FRUVOmTOHkNDh69OiMGTPgWqNOknBWrFhRVVVF0khoaOjatWv5/2m/fvmy2cGht0j6Uyq1eniQ9Aehm+7ubmVlZfJG9PX1uduHfsloqp2REvS+WDiJz3EnndTg5+eXnJwsaBocgvDwcAcHB/I+bNq0KSQkhLwdykGdRA0dHR22trZEyhE1NTU9PT13d/fExMQ+4iGxWCwlJSWapr1WrVrl5eXFeclms0ePHl1YWIg6ScLZsmVLdnY2eTt79+7lBA7oly4mk7V5M2+dtGFD8/btr3BbgMQjLy9P3khDQ4OioiIncEC/GGZFvi9mIDzmZvKbywIRI6CPDQwM4LqbmprCcFrQcVpLS4uKigolHVlra6uCgoIE7r5EnUQZ8fHxMjIyxPGLFy9iYmJ27dqloaEB0sTR0RFecrbjEoCuioqKoskZqG29xoXq6urwDjgzZcoUxT8ZOXIk6iSJws3N7ebNm+TtwO96zZo1oaGh/Jzcdvr0+0TS28fGjZ24jU7igZ8zJXZKSkqgs+RnlyW7p0f2rxuXej3g064eildeIpQD3RAx2yBccXt7+4iICKqcuXv3blFRUU9PD4zqc3JyOKtpQYdx3+uC94Ve6yIEqJNIwWazFy1adPLkybNnz8rKyvIMaQoXOCEhwcXFRUtLS0lJyc7OLiwsDCTL0qVL6XMM9FCvugvN6K1bt+D98PDwF38CwwjUSRIFkQKZElMdHR2amprckQKgKlZWVubm5oIUg0ro4+Pzww8/QDNnxmAYfPnlnLFj4aE5duwKGZleUqmTdLh5hG6UlZXZFG1RvH37NgyruDd8dHV11dTU5OfnJyUlQQNy5syZAwcO2Gy1+1hf/UPlGUO/njR06tvHsDmML0J+5OikWczgFjZdGTwRqkhJSYEBs3Crix48eAA9ILX+3L9/f/LkyXp6ekuWLBk7dqynpye8Cf2UkZER5xxizE/t9/YB6iSyFBQUwIX08PCIjY3t9z8Tui6olNDEyMjIGBsb839/W1D+85//cK98qqur++ijjxobG3HeTcIJDQ09ceIEVdYaGhpUVVWJe4fQj+ro6JiZmdna2u7bt8/b2xsuPSh4GLQ9/Omn2nXr3ns/ydq6m8SOTkQ0LFiwgMJU39CgQW2BOsNgMBQUFNTU1BYvXmxhYQENC3zk7+9/7dq1tLS0r4M9xkR4jrt1jhBGo31cPmB8y3kpywyW2J3eCIeenp6dO3eOGDECxDGfuQI5BbW1tXnGghca6CLHjx/PcaO+vh6kUlZWFuqkQUd5efn8+fPz8vJWrly5fPlykM+UfwXU3dGjRwcGBj5//rywsFBfX3/Xrl1vcL+bxHPz5k1nZ2eqrF25cmXDhg39nsYuLW3euvW965Ps7XHLm+Rjbm5eUlJClbW1a9feuHGj33glFg8Ses21/XPtopE2psSx7t0rVPmD0E1raysM0j799FNoNEAWr1q16ueffy4qKuqjiK+vL4z5qXUDFNL06dO533F1dbWxsUGdNOg4dOgQZ26luLh4/fr1UANSUykORQqN5rp16xQVFefOnevt7U00eW5ubtxhCI4cOQKDQmq/FyFDdna2paUlJaba2tpmzZrFZyyl1qNHWZs28dBJdnYdOOkmDezcuTM9PZ0SU4mJidB08HNmZUdLr9jK4xLODp3x1ef+++F4JjOoqZtUkAtExMC4ncgUWVlZGRQUtHHjRnV1dVNT09OnT//3v//lVgvQsMyePVvQ+CP9cubMmV4TeaDeiPH88OHDZf5kzJgxqJMGOMrKyr12Bzx58sTa2lpfX//WrVvi8gqRBCoqKqhauObg4MB/gPjXnZ2tBw6wtmzpJZLaAwMpcQahm8OHD1+jQtFCzwf9H/+Jj1Iba3qt5gaR9IHsVBBMcGyVjw2apHPv3j0/Pz8YocXExHzyySd/HzlXV1eDWLGysgLNBEIKRt15eXkWFhZ09Fb+/v46Ojrc74BvJiYmoJMMDAw4K2vDw8NRJw1kcnJy1qxZw/MjqI729vba2trR0dF4XQYn7e3tampq5O3k5+dramoKlPnkdU9PV3p66/79zQ4O8Gg9duzlw4fkPUFEA3QnAQEB5O0cOnQIxvQCFanpbNtZmKyeHjYt+X8BJ0duWfnP9YuJ48j6MvJeIfRRVlbm6Ohoamq6bt26frdg19XVhYWFwcmTJ08+duxYa2srtc4UFhaOHDmSew/BihUrvLy8cN5tcAGj/Pj4+D5OePbsmZOTE7ExTdAMX8gAQFZWlqQF+FHPnTtXiDxfiPQSGRl5/PhxkkbKy8tBXpNJo7S9MOnt7Nutcx8oTBt9xpUIOFnX+d4wcog0Arrq0qVLJ06cgMZq3759/ea+FQiQawYGBtnZ2SUlJe7u7lOnTgU1hjppEEFk9uZn+25TU9OBAwfU1NQuXLhA1XZfRCogn5Dy/PnzNMV5RySW9PT0gwcPkjSyePFikttKWC+7lNIugjz6IvTHodNkxt04A8ff5d7AjmbAAL2YnJxcd/fbiA/w7OfnBy9h/N8roBHUBNeH6cppF+WYwarplw48ustnkAiQ6adPn160aJG+vr6TkxMRNiktLY1YOEWQk5Pj5uZG6Z/VF6iTREpiYqJAHRjoaA8PD2NjY/pcQiSKwsJCGKtt3bqVyGQshAUY20Gz1dLSQrlviMQCVcXHx2fLli3Ozs5ZWUImVouIiBA6FS43zMZqYsbtE0eLj0z0iOOg6r52TiFSREpKirW1Nfc7oGwuXryopKRkY2NDJBJ90t4MCmninV84q9bgWCXtUkW7VLZLqJNEioWFBSVZKZABSWlp6Weffebt7X358mUXFxf+EwVyY2Vl9euvv1LuGyLJ7N69W1dXNzw8/MKFC8Jd/ba2NkVFRRaLRYk/e0rSiN5xmIb8Z567iOOZzCC1jLDj5dndGKRbmrG0tOS5Sxq0xLVr1zQ0NNasWcMI+YlniHaNjHC2FC4mQZ0kOjo7O2fPni1uLxDJ5ezZs/r6+mQsZGZmGhoaUuUPIi3IyspevXqVjAUHBwcKU5C2v3oJPSL0i2OuHB/6zeSxMac4PaVM0nm19LDaTlryWiJ009XVxWAw+pYNB6+EDFecPkyDQSxQ4358kxyY0FAhKmcpA3WS6Lhy5crhw4fF7QUiuaSnp48YMeLYsWP878rmhs1mgxB/9OgR5Y4hEo65ubmcnFx0dLRwc7V5eXl6enrU9gW/seqJrvHT77eMWKjZq7+ckxH+UgrvKyAgx11dXfs+x6bgztvg7KecP1SX+1BpxmgfF+5Lv6MwWSSeUgnqJNGxfPnyyspKcXuBSDQglYyNjUEt2dvbt7a2ZmZm8j/75uXlxTPDIDLggUpy4sQJBQWFUaNGXb9+vbCwkP+mhtgdWVxcTK1LYPab5ECiaxxuoDbq0DbuznJKUkBwNcXfiIgAExOTfsO+r3tw4/+Dafm5fyD/LfelBxUlGlcpBHWSiGhqaiI5pYIMHurr68eNGxceHr5z504tLS1DQ8ODBw+mpaX1Ef22pqZGUVGxsxPDHw9qzp07N2nSpLi4uFWrVqmpqa1fv97f37+srK8IRn5+fnv27KHck6LWRk6o7rHXTr6dfbt6gru/NMyKpPxLEVphsVj87MY9VfGAewX3P6ZMHHfzZ85q7p8rhUm4K15QJ4kIX19faI/E7QUiNaiqqkZG/q8jaWlpuX79uqOjo7a2Nqhtd3f3pKSkjo4O7vPNzMwSEhLE4SkiQeTk5IwaNYrz8tGjR6CT1q1bB5pp9erVf8/Y1dDQoKCg0E5D/r7bz3//9s/7SfD47JjDp99v4dZJimmhlH8pQitQl06ePNnvaU+72mcygzgX+gOFaWOuHOes5W/okr5kkaiTRISBgQFVe0mQgcrx48eNjIycnJyWLVv27bff8ox129bWdvPmTRcXF9137N2799atWzExMStXrhS9w4gkAG04qOq1a9fu2LFj4sSJP/30E8/TKioqOBm7TExMTp06lZ+fb2FhIVCKeP7JYtX3ymfS66GVibsypQzoxfhcOun3e8GMlP9JpWHayp8HHCAWcYfXSmWIf9RJoqCqqgq7MaRf4MeYmZl5+fLl69ev87Mgt729PTExcd++fVOmTDE1NaV8iQkiLYCkjo+Ph5oD0oef82tray9evLhq1apJkybRkX0C6Op5JZ8a8j6RNPHOL4cf3aP8SxH6qK6uXrhwIf/nRz99/O9Ef7jWHy3T/cxrNxy4Pcygzz1aQZ0kCqAZgkombi+QgUlRUZGxsTGTyYRWbMWKFbm5ueL2CJEOXF1dg4KCiOwT7u7uTU1N1Nr/4dHdqUkBPHWSXGpIY3dH/yYQiQH0NGhrgYoQSWz+ZW786QFbOPD9vYAm3+gGdRKCSDd79uy5fPkycZyTkwNSycjIiGcgOAThAC0/yCNilVtXV5evr6+cnNyuXbvq6uqo+opXr3tW58Z9zbVKiXjIMoOZjThulDLmzJnzxx+C5enb/+guXO6Pt333iaMFHHg8/o0m3+gGdRKCSDE9PT3Q2/Xa5lZcXGxhYaGnp4cru5H3kZqaCpWE+x02mx0aGqqoqGhra1tRUUHJt0D/4lmeLccMnsUMln33vCDraukfLygxjoiMoqKidevWCVrqdMWDtwG03DaP3GwKB3tKpHXwhjoJQaSYlJQUS0tLnh9VVlba2dlpampGRUX1YEw/5K9YW1snJib+/X2oKlBh1NTUzM3N+42Uwyc9r1+XtzcXtjayXr43sAUiyTQ1NQkhnS/VlhBbHT8ymw8H1vm3aXBNFKBOQhApxsrKKikpqY8Tnj596uTkBN1eSEgIm80WmWOIJNPV1SUrK9u3ek5ISNDR0cEVb4jQxDdUvA01eW7fiAVz4GBlznVxeyQkqJMQRFrhp7cjYLFYBw8eVFVV9fX17SNYJTJIuHr1qqOjIz9npqenL3wHHNDtFTLAyHqXu2ZM+LFhcxhwoH8vQtweCQnqJASRViIiInbv3s3/+X/88YeXlxeoJarmUxApZfny5Xl5efyfn5ubu2LFisWLF9PnEjLwSH5eBfJo3I0zH8h9DQcT7vj9WlsqbqeEAXUSgkgry5YtKygQeKttd3f3q1ev6PAHkQpYLJaSkpIQBSkPHIAMYMr+YM38M9Tk0G8mEwfTki8ce3xf3K4JDOokBJFKoNNSVlYWtxeI9OHr63v06FFxe4EMZHpev56TEc6JBDF0+lec4xkpQYWtjeJ2UDBQJyGIVAK93bFjx8TtBSJ96OjoVFVVidsLZCCTxarnTvE2dMZX3AG0LPKkLF4J6iQEkUq0tLRqamrE7QUiZVRWVurq6orbC2SAE1hV+CWXMBqmpTg29hTn5ZyMcHE7KBiokxBE+qioqJg3b564vUCkjx9//NHf31/cXiADnNCa4kmJvwyYFMiokxBE+jh06FBgYKC4vUCkDwUFhZaWFnF7gQxwStqaZJnB79NJu4qY4nZQMFAnIYj0gb0dIgS5ubmmpqbi9gIZFCy7H/MlL5EE+qmms03c3gkG6iQEkTKys7PNzMzE7QUifTg4OERHR4vbC2RQ8OJlp1p6WK/ZN1lmUNyzJ+J2TWBQJyGIlBEXF8czMxeC9I2zs3N3d7e4vUAGC23s7r0PM5TSLs5iBjNSQ5bdj5G6iAAEqJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDeokxAEQRAEQXiDOglBEARBEIQ3qJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDeokxAEQRAEQXiDOglBEARBEIQ3qJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDdD4N9rBEEQBEEQ5K+ARvo/4tmi0XNhvG0AAAAASUVORK5CYII=\"}},{\"type\":\"text\",\"text\":\"Excerpt + from Wellawatte2023 pages 14-16: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nsame optimization problem.100 Grabocka\\n\\net al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich improves model robustness via exposure to adversarial examples. While there are\\n\\nconceptual disparities, @@ -4492,190 +4693,8 @@ interactions: solubility prediction is a classic cheminformatics regression challenge and is\\n\\nimportant for chemical process design, drug design and crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented and trained an RNN model in Keras - to predict solubilities (log\\n\\nmolarity) of small molecules.127 The AqS\\n\\n----\\n\\nQuestion: - What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate - connection: - - keep-alive - content-length: - - "5773" - content-type: - - application/json - host: - - api.openai.com - user-agent: - - AsyncOpenAI/Python 1.97.1 - x-stainless-arch: - - arm64 - x-stainless-async: - - async:asyncio - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.97.1 - x-stainless-raw-response: - - "true" - x-stainless-read-timeout: - - "60.0" - x-stainless-retry-count: - - "0" - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.13.5 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAAwAAAP//fFRLbxs3EL7rVwx4aoCVIcmW5frmIn0YcJBLCgSoAmGWnN2dmksyQ1KV - avi/F9yVJTlxeuGB37y+bx5PEwDFRt2C0h0m3Qc7/WX/oTHXH83v/37sPu13vf3kHy5v/pz3zR/L - raqKh6//Jp1evC6074OlxN6NsBbCRCXqfLW8XC2ul4vlAPTekC1ubUjTKz9dzBZX0/l8upgdHDvP - mqK6hb8mAABPw1tKdIZ26hZm1ctPTzFiS+r2aASgxNvyozBGjgldUtUJ1N4lckPVT2sHsFYx9z3K - fq1uYa0+391X4AV+3QWL7LC2BHeSuGHNaOHeJbKWW3KaKhBqSCIkDz2lzpsI6Awk0p3jr5ki5Eim - wOwSSRBKg0F2hqQUZiB1BIY0R/YuQo+GoN5Dj7pjR2AJxbFr4acPD+8GV0MUzr7fP7yDQc14Afdu - iDbw2yXwDeiOeo5J9hV8vrsHjoAhWB5Lyk77LQnEJFmnLDQN4gNJ2oOQxdLG2HGIFcSsO8BCpuTU - PhcyDeqU0QIVndxofqgwauGQvExrLPRfpHklQ21RP05rvzuW/5sXoB2WEar+N4lGBzG3LcUEqMvf - 0KTem9Kkg1Fpibeks6Uxcx/EbwkOHJkiWH4kqK33ZloLsoMaRZgEAklPWLPltL+A90c+r8so8dgQ - fM3oEidMvCVgF7ntUixMjxWgQENYJI4VIJtBxbE1xfBsHAoy6AFByPBALl4MzauFTVu4dAQtBqgp - /UPkYFy6FxmHDnS5R3fS+sCkgh4fSwJOoCUP09x4AeN7ZHeQw0huwXAcRmN/sVbVuCJClrboNG2i - 9kJlVX5eu+fzvRJqcsSy1i5bewagcz6NopWN/nJAno87bH0bxNfxG1fVsOPYbYQwelf2NSYf1IA+ - TwC+DLciv1p/FcT3IW2Sf6Qh3Xy+mo8B1ek8ncFXqwOafEJ7BlzOb6o3Qm4MJWQbzw6O0qg7Muc5 - l4sjCcyG/QmbTc64f1/SW+FH/uzasyg/DH8CtKaQyGxOk/SWmVA54T8yO2o9FKwiyZY1bRKTlH4Y - ajDb8bqquI+J+k3Dri1zx+OJbcJGX69W1zfN9c1MTZ4n/wEAAP//AwDP9zAVawYAAA== - headers: - CF-RAY: - - 96665c9eea89cf26-SJC - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 28 Jul 2025 18:15:28 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - access-control-expose-headers: - - X-Request-ID - alt-svc: - - h3=":443"; ma=86400 - cf-cache-status: - - DYNAMIC - openai-organization: - - future-house-xr4tdh - openai-processing-ms: - - "2672" - openai-project: - - proj_RpeV6PrPclPHBb5GlExPXSBj - openai-version: - - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-envoy-upstream-service-time: - - "2675" - x-ratelimit-limit-requests: - - "10000" - x-ratelimit-limit-tokens: - - "30000000" - x-ratelimit-remaining-requests: - - "9999" - x-ratelimit-remaining-tokens: - - "29998624" - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 2ms - x-request-id: - - req_d631be915450db0ac9d2df7318fdf6ea - status: - code: 200 - message: OK - - request: - body: - "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of - the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 16-20: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nssion - challenge and is\\n\\nimportant for chemical process design, drug design and - crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented - and trained an RNN model in Keras to predict solubilities (log\\n\\nmolarity) - of small molecules.127 The AqSolDB curated database137 was used to train the\\n\\nRNN - model.\\n\\n In this task, counterfactuals are based on equation 6. Figure - 3 illustrates the generated\\n\\nlocal chemical space and the top four counterfactuals. - Based on the counterfactuals, we ob-\\n\\nserve that the modifications to the - ester group and other heteroatoms play an important role\\n\\nin solubility. - These findings align with known experimental and basic chemical intuition.134\\n\\nFigure - 4 shows a quantitative measurement of how substructures are contributing to - the pre-\\n\\n\\n\\n 16Figure 2: Descriptor - explanations along with natural language explanation obtained for BBB\\npermeability - of Alprozolam molecule. The green and red bars show descriptors that influ-\\nence - predictions positively and negatively, respectively. Dotted yellow lines show - significance\\nthreshold (\u03B1 = 0.05) for the t-statistic. Molecular descriptors - show molecule-level proper-\\nties that are important for the prediction. ECFP - and MACCS descriptors indicate which\\nsubstructures influence model predictions. - MACCS explanations lead to text explanations\\nas shown. Republished from Ref.10 - with permission from authors. SMARTS annotations for\\nMACCS descriptors were - created using SMARTSviewer (smartsview.zbh.uni-hamburg.de,\\nCopyright: ZBH, - Center for Bioinformatics Hamburg) developed by Schomburg et al. 132.\\n\\n\\n\\n\\n\\n - \ 17diction. For example, we see that adding - acidic and basic groups as well as hydrogen bond\\n\\nacceptors, increases solubility. - Substructure importance from ECFP97 and MACCS138 de-\\n\\nscriptors indicate - that adding heteroatoms increases solubility, while adding rings structures\\n\\nmakes - the molecule less soluble. Although these are established hypotheses, it is - interesting\\n\\nto see they can be derived purely from the data via DL and - XAI.\\n\\n\\n\\n\\n\\nFigure 3: Generated chemical space for solubility prediction - using the RNN model. The\\nchemical space is a 2D projection of the pairwise - Tanimoto similarities of the local coun-\\nterfactuals. Each data point is colored - by solubility. Top 4 counterfactuals are shown here.\\nRepublished from Ref.9 - with permission from the Royal Society of Chemistry.\\n\\n\\n\\nGeneralizing - XAI \u2013 interpreting scent-structure relationships\\n\\n\\nIn this example, - we show how non-local structure-property relationships can be learned with\\n\\nXAI - across multiple molecules. Molecular scent prediction is a multi-label classification - task\\n\\nbecause a molecule can be described by more than one scent. For example, - the molecule\\n\\njasmone can be described as having \u2018jasmine,\u2019 \u2018woody,\u2019 - \u2018floral,\u2019 and \u2019herbal\u2019 scents.139 The\\n\\nscent-structure - relationship is not very well understood,140 although some relationships are\\n\\nknown. - \ For example, molecules with an ester functional group are often associated - with\\n\\n\\n 18Figure 4: Descriptor explanations - for solubility prediction model. The green and red bars\\nshow descriptors that - influence predictions positively and negatively, respectively. Dotted\\nyellow - lines show significance threshold (\u03B1 = 0.05) for the t-statistic. The MACCS - and\\nECFP descriptors indicate which substructures influence model predictions. - MACCS sub-\\nstructures may either be present in the molecule as is or may represent - a modification. ECFP\\nfingerprints are substructures in the molecule that affect - the prediction. MACCS descriptor\\nare used to obtain text explanations as shown. - Republished from Ref.10 with permission from\\nauthors. SMARTS annotations for - MACCS descriptors were created using SMARTSviewer\\n(smartsview.zbh.uni-hamburg.de, - Copyright: ZBH, Center for Bioinformatics Hamburg) de-\\nveloped by Schomburg - et al. 132.\\n\\n\\n\\n\\n\\n 19the \u2018fruity\u2019 - scent. There are some exceptions though, like tert-amyl acetate which has a\\n\\n\u2018camphoraceous\u2019 - rather than \u2018fruity\u2019 scent.140,141\\n\\n In Seshadri et al. 31, - we trained a GNN model to predict the scent of molecules and utilized\\n\\ncounterfactuals9 - and descriptor explanations10 to quantify scent-structure relationships. The\\n\\nMMACE - method was modified to account for the multi-label aspect of scent prediction. - This\\n\\nmodification defines molecules that differed from the instance molecule - by only the selected\\n\\nscent as counterfactuals. For instance, counterfactuals - of the jasmone molecule would be false\\n\\nfor the \u2018jasmine\u2019 scent - but would still be positive for \u2018woody,\u2019 \u2018floral\u2019 and \u2018herbal\u2019 - scents.\\n\\n\\n\\n\\n\\nFigure 5: Counterfactual for the 2,4 decadienal molecule. - \ The counterfactual indicates\\nstructural changes to ethyl benzoate that would - result in the model predicting the molecule\\nto not contain the \u2018fruity\u2019 - scent. The Tanimoto96 similarity between the counterfactual and\\n2,4 decadienal - is also\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + to predict solubilities (log\\n\\nmolarity) of small molecules.127 The AqS\\n\\n------------\\n\\nQuestion: + What is XAI?\\n\\n\"}]}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4684,13 +4703,13 @@ interactions: connection: - keep-alive content-length: - - "5791" + - "50812" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4700,7 +4719,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4713,149 +4732,161 @@ interactions: - 3.13.5 method: POST uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAAwAAAP//dFRNb+M2EL37Vwx4lg3bSZzEN2+QRX0IULQ9LFAvDJoaSbOmSJYzzMYI - 8t8LUllb7WYvAsTHefP45uN1AqCoVmtQptNi+mCnn05PTbtK98fusDg+X5s/rPv+6dE+2dVv952q - coQ/fEMjP6JmxvfBopB3A2wiasHMuri9ubpdrm6WdwXofY02h7VBptd+upwvr6eLxXQ5fw/sPBlk - tYa/JwAAr+WbJboaX9Qa5tWPkx6ZdYtqfb4EoKK3+URpZmLRTlR1AY13gq6oft05gJ3i1Pc6nnZq - DTv1ZbOtwEd4fAlWk9MHi7CJQg0Z0ha2TtBaatEZrCBig5FBPPQona8ZtKtB0HSO/knIIJ0W6PUR - QTqEELEmkw1i8A1stlCcYCAnGENEKekyR3I1xqy9zkcz2LrCUMS/SI7Ov/hiMAap4MtmC8SgQ7CE - dRZkOuzJaFvYem/RJKvjWEIFnEwHmoG9TQeyJKdymw06mbLEZCRFhIhWl4iOAs/gs4+ALzrXuoIa - 2UQKUs6C1W64WXiMT/ldjTaStGXQESHxII9qdELNaSSN0+Gc8905co1N2eqx7hn8dTHY0hHh8eHz - 7yXj0+bh4c+RJoYObRiUkYPOfwcOaHIxR4kb1EPO7G6kQxLMEkeu+DiYAsbmnmrIlGfOiu9YmoSh - xkjP5Fogx9R2MjI41yo3Za4bsmCENvoUcuE/SlNBTRGN2BM00fdQa9GQOHPXiAEs6ujy39A+s52q - hk6OaPFZO4N7Nj5i7uj7nXsbt3/EJrHO0+eStSNAO+dlqF4evK/vyNt51KxvQ/QH/l+oasgRd/uI - mr3LY8Xigyro2wTgaxnp9J8pVSH6Pshe/BFLusVyfjcQqssWGcHXV++oeNF2BFzdLKoPKPc1iibL - o72gjDYd1qPYxc3y/AidavIXbD4Zvf1nSR/RD+8n145Yfkl/AYzBIFjvLw3+0bWIedP+6trZ6yJY - McZnMrgXwpjrUWOjkx2WoOITC/b7hlybVw4Nm7AJe7O6vV3dNau7uZq8Tf4FAAD//wMA6D23WhIG - AAA= - headers: - CF-RAY: - - 96665cb0dec7cf26-SJC - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 28 Jul 2025 18:15:29 GMT - Server: - - cloudflare - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - access-control-expose-headers: - - X-Request-ID - alt-svc: - - h3=":443"; ma=86400 - cf-cache-status: - - DYNAMIC - openai-organization: - - future-house-xr4tdh - openai-processing-ms: - - "1543" - openai-project: - - proj_RpeV6PrPclPHBb5GlExPXSBj - openai-version: - - "2020-10-01" - x-envoy-upstream-service-time: - - "1547" - x-ratelimit-limit-requests: - - "10000" - x-ratelimit-limit-tokens: - - "30000000" - x-ratelimit-remaining-requests: - - "9999" - x-ratelimit-remaining-tokens: - - "29998614" - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 2ms - x-request-id: - - 05cb6b95-a48c-40ac-9c83-0346fdf49e02 - status: - code: 200 - message: OK - - request: - body: - "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of - the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 12-14: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nnterfactual - approach, contrastive approach employ a dual\\n\\noptimization method, which - works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. - Contrastive explanations can interpret the model by identifying contribution - of\\n\\npresence and absence of subsets of features towards a certain prediction.36,99\\n\\n - \ A counterfactual x\u2032 of an instance x is one with a dissimilar prediction - \u02C6f(x) in classi-\\n\\nfication tasks. As shown in equation 5, counterfactual - generation can be thought of as a\\n\\nconstrained optimization problem which - minimizes the vector distance d(x, x\u2032) between the\\n\\nfeatures.9,100\\n\\n\\n - \ minimize d(x, x\u2032)\\n (5)\\n - \ such that \u02C6f(x) \u0338= \u02C6f(x\u2032)\\n\\n - \ For regression tasks, equation 6 adapted from equation 5 can be used. Here, - a counter-\\n\\nfactual is one with a defined increase or decrease in the prediction.\\n\\n\\n - \ minimize d(x, x\u2032)\\n (6)\\n - \ such that \u02C6f(x) \u2212\u02C6f(x\u2032) \u2265\u2206\\n\\n - \ Counterfactuals explanations have become a useful tool for XAI in chemistry, - as they\\n\\nprovide intuitive understanding of predictions and are able to - uncover spurious relationships\\n\\nin training data.101 Counterfactuals create - local (instance-level), actionable explanations.\\n\\nActionability of an explanation - suggest which features can be altered to change the outcome.\\n\\nFor example, - changing a hydrophobic functional group in a molecule to a hydrophilic group\\n\\nto - increase solubility.\\n\\n Counterfactual generation is a demanding task as - it requires gradient optimization over\\n\\ndiscrete features that represents - a molecule. Recent work by Fu et al. 102 and Shen et al. 103\\n\\npresent two - techniques which allow continuous gradient-based optimization. Although, these\\n\\nmethodologies - are shown to circumvent the issue of discrete molecular optimization, counter-\\n\\nfactual - explanation based model interpretation still remains unexplored compared to - other\\n\\n\\n\\n 12post-hoc methods.\\n\\n - \ CF-GNNExplainer104 is a counterfactual explanation generating method based - on GN-\\n\\nNExplainer69 for graph data. This method generate counterfactuals - by perturbing the input\\n\\ndata (removing edges in the graph), and keeping - account of perturbations which lead to\\n\\nchanges in the output. However, - this method is only applicable to graph-based models\\n\\nand can generate infeasible - molecular structures. Another related work by Numeroso and\\n\\nBacciu 105 focus - on generating counterfactual explanations for deep graph networks. Their\\n\\nmethod - MEG (Molecular counterfactual Explanation Generator) uses a reinforcement learn-\\n\\ning - based generator to create molecular counterfactuals (molecular graphs). While - this\\n\\nmethod is able to generate counterfactuals through a multi-objective - reinforcement learner,\\n\\nthis is not a universal approach and requires training - the generator for each task.\\n\\n Work by Wellawatte et al. 9 present a model - agnostic counterfactual generator MMACE\\n\\n(Molecular Model Agnostic Counterfactual - Explanations) which does not require training\\n\\nor computing gradients. This - method firstly populates a local chemical space through ran-\\n\\ndom string - mutations of SELFIES106 molecular representations using the STONED algo-\\n\\nrithm.107 - Next, the labels (predictions) of the molecules in the local space are generated\\n\\nusing - the model that needs to be explained. Finally, the counterfactuals are identified - and\\n\\nsorted by their similarities \u2013 Tanimoto distance96 between ECFP4 - fingerprints.97 Unlike the\\n\\nCF-GNNExplainer104 and MEG105 methods, the MMACE - algorithm ensures that generated\\n\\nmolecules are valid, owing to the surjective - property of SELFIES. Additionally, the MMACE\\n\\nmethod can be applied to both - regression and classification models. However, like most XAI\\n\\nmethods for - molecular prediction, MMACE does not account for the chemical stability of\\n\\npredicted - counterfactuals. To circumvent this drawback, Wellawatte et al. 9 propose an-\\n\\nother - approach, which identift counterfactuals through a similarity search on the - PubChem\\n\\ndatabase.108\\n\\n\\n\\n\\n\\n 13Similarity - to adjacent fields\\n\\n\\nTangential examples to counterfactual explanations - are adversarial training and matched\\n\\nmolecular pairs. Adversarial perturbations - are used during training to deceive the model\\n\\nto expose the vulnerabilities - of a model109,110 whereas counterfactuals are applied post-hoc.\\n\\nTherefore, - the main difference between adversarial and counterfactual examples are in the\\n\\napplication, - although both are derived from the same optimization problem.100 Grabocka\\n\\net - al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich - improves model robustness via exposure to adversarial examples. While there - are\\n\\nconceptual disparities, we note that\\n\\n----\\n\\nQuestion: What - is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + response: + body: + string: !!binary | + H4sIAAAAAAAAA4xUTW/jOAy951cQOjtFvtrZ6a0YzADFTk+DBYrdDBJapm1OZMkj0mmzRf/7Qkqa + uPsB7MWA9cTH9yiSLxMAw5W5BWNbVNv1bvpp/istnq6/4sPH5c03ffry9bfu8fcnvvk2o2CKFBHK + H2T1LerKhq53pBz8EbaRUCmxzj9cr1bL5YfFIgNdqMilsKbX6SpMF7PFajqfTxezU2Ab2JKYW/hj + AgDwkr9Joq/o2dzCrHg76UgEGzK350sAJgaXTgyKsCh6NcUFtMEr+ax6u93+kODX/mXtAdZGhq7D + eFibW1ibx7v7AkKEz8+9Q/ZYOoK7qFyzZXRw75Wc44a8pQIi1RQFNEBH2oZKAH0FSrb1/HMgAW1R + ocMdgbYEFVkWDn7a4Y59A30MlkRIINRwdw+5QALslWIfSXPyxDj4imKyVOUjDdAOHXq5gnufmbO7 + Z008tqWOReMhR1ZxaKBisWFP8VDA4909sMAgVCWacyooHdrdtAzPJxUFDD4HgWgcrA6Rpn0MPUU9 + QCSH6cGl5V6KnChhQQjQJiDL7EKVyna8mYsUHNnBkVzBlxCBnjF1TgE2DElHjVYHdECp9P4YVoAM + tgVMpUz0DXmKqb2gPGTnDw93nz6fyp8uNw2Jgm3RNzROiiMj+Rxty7RPjyIc6WiAojJJAY53BKUL + oZqWEdlDiTEyRegpdpSVXeVSopNUROuGiiRR2ci9Zm9jD08t2xZ+DuiVFZX35A7g2O9G6mrCs7ax + FuQq9crpWVN3jNohIan6oVfu+M/0e2EsqcU9h3i1NsWx0yM52qO3tBEbIqWOn89OWGqJDXfYkKRz + jQOt/evab7fb8RxFqgfBNMZ+cG4EoPdBj4bTBH8/Ia/nmXWh6WMo5W+hpmbP0m4ioQSf5lM09Caj + rxOA73k3DO/G3fQxdL1uNOwop5vfXK+OhOayjkbw9Wl1GA2KbgT8MnuLe0e5qUiRnYwWjLFoW6ou + sZdthEPFYQRMRsb/qeffuI/m2Tf/h/4CWEu9UrXpI1Vs33u+XIuU9vV/XTsXOgs2QnHPljbKFNNj + VFTj4I6r1MhBlLpNzb5Ja4OP+7TuN9dlvVzaOdmVmbxO/gIAAP//AwATYb6fWAYAAA== + headers: + CF-RAY: + - 96a9ce2f0d14fa96-SJC + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 05 Aug 2025 22:42:05 GMT + Server: + - cloudflare + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + access-control-expose-headers: + - X-Request-ID + alt-svc: + - h3=":443"; ma=86400 + cf-cache-status: + - DYNAMIC + openai-organization: + - future-house-xr4tdh + openai-processing-ms: + - "2853" + openai-project: + - proj_RpeV6PrPclPHBb5GlExPXSBj + openai-version: + - "2020-10-01" + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-envoy-upstream-service-time: + - "2828" + x-ratelimit-limit-input-images: + - "250000" + x-ratelimit-limit-requests: + - "10000" + x-ratelimit-limit-tokens: + - "30000000" + x-ratelimit-remaining-input-images: + - "249999" + x-ratelimit-remaining-requests: + - "9999" + x-ratelimit-remaining-tokens: + - "29997791" + x-ratelimit-reset-input-images: + - 0s + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 4ms + x-request-id: + - req_a7767afbf9663a1dfccd40893e14706a + status: + code: 200 + message: OK + - request: + body: + "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of + the relevant information that could help answer the question based on the excerpt. + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 8-9: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nrepresented + with equation 2.\\n\\n \u2206\u02C6f(\u20D7x) + \u2248\u2202\u02C6f(\u20D7x) (2)\\n \u2206xi + \ \u2202xi\\n\\n\\n\\n 7 \u2206\u02C6f(\u20D7x) + \ where \u02C6f(x) is the black-box model and are used as our attributions. + The left- \u2206xi\\n\\nhand + side of equation 2 says that we attribute each input feature xi by how much + one unit\\n\\nchange in it would affect the output of \u02C6f(x). If \u02C6f(x) + is a linear surrogate model, then this\\n\\nmethod reconciles with LIME.35 In + DL models, \u2207xf(x), suffers from the shattered gradients\\n\\nproblem.62 + This means directly computing the quantity leads to numeric problems. The\\n\\ndifferent + gradient based approaches are mostly distinguishable based on how the gradient + is\\n\\napproximated.\\n\\n Gradient based explanations have been widely used + to interpret chemistry predictions.60,66\u201370\\n\\nMcCloskey et al. 60 used + graph convolutional networks (GCNs) to predict protein-ligand\\n\\nbinding and + explained the binding logic for these predictions using integrated gradients.\\n\\nPope + et al. 66 and Jim\xB4enez-Luna et al. 67 show application of gradCAM and integrated + gradi-\\n\\nents to explain molecular property predictions from trained graph + neural networks (GNNs).\\n\\nSanchez-Lengeling et al. 68 present comprehensive, + open-source XAI benchmarks to explain\\n\\nGNNs and other graph based models. + They compare the performance of class activation\\n\\nmaps (CAM),63 gradCAM,64 + smoothGrad,,65 integrated gradients62 and attention mecha-\\n\\nnisms for explaining + outcomes of classification as well as regression tasks. They concluded\\n\\nthat + CAM and integrated gradients perform well for graph based models. Another attempt\\n\\nat + creating XAI benchmarks for graph models was made by Rao et al. 70. They compared\\n\\nthese + gradient based methods to find subgraph importance when predicting activity + cliffs\\n\\nand concluded that gradCAM and integrated gradients provided the + most interpretability\\n\\nfor GNNs. The GNNExplainer69 is an approach for + generating explanations (local and\\n\\nglobal) for graph based models. This + method focuses on identifying which sub-graphs con-\\n\\ntribute most to the + prediction by maximizing mutual information between the prediction\\n\\nand + distribution of all possible sub-graphs. Ying et al. 69 show that GNNExplainer + can be\\n\\nused to obtain model-agnostic explanations. SubgraphX is a similar + method that explains\\n\\nGNN predictions by identifying important subgraphs.71\\n\\n + \ Another set of approaches like DeepLIFT72 and Layerwise Relevance backPropagation73\\n\\n\\n\\n + \ 8(LRP) are based on backpropagation of + the prediction scores through each layer of the neu-\\n\\nral network. The specific + backpropagation logic across various activation functions differs\\n\\nin these + approaches, which means each layer must have its own implementation. Baldas-\\n\\nsarre + and Azizpour 74 showed application of LRP to explain aqueous solubility prediction + for\\n\\nmolecules.\\n\\n SHAP is a model-agnostic feature attribution method + that is inspired from the game\\n\\ntheory concept of Shapley values.44,46 SHAP + has been popularly used in explaining molecular\\n\\nprediction models.75\u201378 + It\u2019s an additive feature contribution approach, which assumes that\\n\\nan + explanation model is a linear combination of binary variables z. If the Shapley + value\\nfor the ith feature is \u03D5i, then the explanation is \u02C6f(\u20D7x) + = Pi \u03D5i(\u20D7x)zi(\u20D7x). Shapley values for\\n\\nfeatures are computed + using Equation 3.79,80\\n\\n\\n\\n M\\n 1\\n + \ \u03D5i(\u20D7x) = X \u02C6f (\u20D7z+i) + \u2212\u02C6f (\u20D7z\u2212i) (3)\\n M\\n\\n + \ Here \u20D7z is a fabricated example created from the original \u20D7x and + a random perturbation \u20D7x\u2032.\\n\\n\u20D7z+i has the feature i from \u20D7x + and \u20D7z\u2212i has the ith feature from \u20D7x\u2032. Some care should + be taken\\n\\nin constructing \u20D7z when working with molecular descriptors + to ensure that an impossible \u20D7z is\\n\\nnot sampled (e.g., high count of + acid groups but no hydrogen bond donors). M is the sample\\n\\nsize of perturbations + around \u20D7x. Shapley value computation is expensive, hence M is chosen\\n\\naccordingly. + Equation 3 is an approximation and gives contributions with an expectation\\nterm + as \u03D50 + Pi=1 \u03D5i(\u20D7x) = \u02C6f(\u20D7x).\\n\\n Visualization + based feature attribution has also been used for molecular data. In com-\\n\\nputer + science, saliency maps are a way to measure spatial feature contribution.81 + Simply put,\\n\\nsaliency maps draw a connection between the model\u2019s neural + fingerprint components (trained\\n\\nweights) and input features. Weber et al. + 82 used saliency maps to build an explainable GCN\\n\\narchitecture that gives + subgraph importance for small molecule activity prediction. On the\\n\\nother + hand, similarity maps compare model predictions for two or more molecules based + on\\n\\ntheir chemical fingerprints.83 Similarity maps provide atomic weights + or predicte\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4864,13 +4895,13 @@ interactions: connection: - keep-alive content-length: - - "5777" + - "6108" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4880,7 +4911,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4896,25 +4927,25 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//dFTLbuNGELzrKxpzSQJIgiTbklc3x1gHDqC9JFgsEi2E1rBJdjSc4U43 - ZWsN/3swpB70Pi48sLprqvr1MgAwnJklGFui2qp2o98PqzxfFX8+ffx4Q/PyH/Hb/PDlr4fVtLj9 - aoYpI2z/I6unrLENVe1IOfgOtpFQKbFOFzdXi9n8ZrZogSpk5FJaUevoOoxmk9n1aDodzSbHxDKw - JTFL+HcAAPDSfpNEn9GzWcJkePpTkQgWZJbnIAATg0t/DIqwKHo1wwtog1fyreqXtQdYG2mqCuNh - bZawNu+fa4fscesI7qJyzpbRwaNXco4L8pbg1093j79BpJyigAaoSMuQCaDPQMmWnr80JKAlKlS4 - I9CSoI6UsU3VEQg5VGhL9gSOMHr2BbRFEWCvFOtI2ipIjI3PKCYbWftLA5RNhV7GcB+aFJ2j1QYd - UJLusXsCIwHCjg6gIThgD5/uHodQx7DnLL2HrZZEOQT2id/SyNGeUrBwUarA9gCckVfODynFlugL - ShqBfd0o5ITaxJPVp9C4DNApxdZx6+gX6Tkfw0OIQM+YBiU9C1VwZBuHEWxJFYvGwxDsG18CFj1I - UxQkmkhTT44uU/HPDKKxsUc9AVJ9aU+QkXCkLDmvKSqTjOHvS5Mc7whWq7v7922x7x9Gf3z4cBwC - im0ZG6EsMRbkKaLSt/qG8MRaHkm2dG7mCAsfRNm2zFjXju2phdugJUQqIolw8G2EdWlgT+ZAUXYy - Tm0DdBIgDW5EUemew2xPUTCm6dSInIZoCE8l2xLyYBshgeA7JRDDthH1JAIRtWwbhL4/bOxYD+O1 - GXY7EcnRPo3ERmyI1O3Gu7VZ+9f+MkXKG8G0y75xrgeg90G7JqU1/nxEXs+L60JRx7CVb1JNzp6l - 3ERCCT4tqWioTYu+DgA+tweiebPzpo6hqnWjYUftc9Pp1fFCmMtN6sE3V0dUg6LrAbPbE/KGcpOR - IjvpXRlj0ZaU9XIns+uzCWwyDhdsMuh5/17Sj+g7/+yLHstP6S+AtVQrZZvLyv0oLFK62z8LO9e6 - FWyE4p4tbZQppn5klGPjupNq5CBK1SZnX6RB4u6u5vXGzheL+W0+v52YwevgfwAAAP//AwC8OdGb - YAYAAA== + H4sIAAAAAAAAA3RU224bNxB911cM+CQDK0E3y43fBLdojbRpAPchRRQII+7s7tRckuWQjhXD/16Q + a0tq67wsFjxzO2cuTyMAxbW6BqU7jLr3ZnIzf0/L/V3489vv6/5ycbgytbu5eT9/XNPyq6qyh9v/ + RTq+ek21672hyM4OsA6EkXLU+dXlarVcXi2WBehdTSa7tT5OVm6ymC1Wk/l8spi9OHaONYm6hs8j + AICn8s0l2poe1TXMqteXnkSwJXV9NAJQwZn8olCEJaKNqjqB2tlItlT9tLUAWyWp7zEctuoatuqn + R2+QLe4NwSZEblgzGri1kYzhlqwmGH/a3F5AoIaCQHTQU+xcLYC2hki6s/x3IoEkVBcY7wliR1CT + ZmFnJz3es23BB6dJhARcA5tbKLpIBR5DZJ0MBnOAQdVHcJYEDN/nMOTBEAabg4x//PWiZG4D+g4s + pYAGLMWvLtwLjH/+8EEuKmAbKfhAsTDL9snWFLI8dXmKDrrUo5UpfNrcAnofHOqOBNhqk2rKCWom + Gyd7zMxeWY9p2k6HBG3IDT8aSlV+bza/XVQDuQm21klkffQujO5+2XyE8RDWWbjr0Bs6wAOaRLn4 + XO4DS0LD3zAP2LnMknQHKCBomKw+FGvhng0Gjgfo0csU/uhI6NQp7jNhjDHwPkUaqgMfqGadE5S+ + svUpQkMYUyCpgGuykZsDcO9dyIMFkvZF96wSZKkrcAFoGCLonaHSx9xqTyEezlMMQrOADqkMWZNd + raSQ+xoDWvEYMqUKYkgSByGS4J5NZsYWhk4Z1kUWqYDEUw5mCtwwmVeRdUc9SwyDQKfSCnW27XSr + qmEhAhl6QKtpJ9oFGhZjPjviebB33GNLkrEGjdDWPp9vWaAmCeYlt8mYMwCtdXEoNu/3lxfk+bjR + xrU+uL38x1U1bFm6XSAUZ/P2SnReFfR5BPClXI70r2OgfHC9j7vo7qmkmy9niyGgOh2rM3h99YJG + F9GcAav1u+qNkLuaIrKRs/OjdF6a+sx38cPpXGGq2Z2w2eiM+/9Leiv8wJ9texblu+FPgNbkI9W7 + 0/i9ZRYoH/TvmR21LgUrofDAmnaRKeR+1NRgMsOtVXKQSP2uYdvms8PDwW38bjFf0/pypVe1Gj2P + /gEAAP//AwCeG2YkeQYAAA== headers: CF-RAY: - - 96665ca80a431694-SJC + - 96a9ce316b4115f5-SJC Connection: - keep-alive Content-Encoding: @@ -4922,9 +4953,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:30 GMT + - Tue, 05 Aug 2025 22:42:06 GMT Server: - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4938,15 +4971,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "3810" + - "2928" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "3822" + - "2931" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4954,13 +4985,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998620" + - "29998537" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_d3676c7e64e3e1a476515e59402810c4 + - req_baa1dd18723a957fadd54ffec1be04b3 status: code: 200 message: OK @@ -4968,11 +4999,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 28-30: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 28-30: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n M. T.; Singh, S.; Guestrin, C. \u201D Why should i trust you?\u201D Explaining the\\n\\n predictions of any classifier. Proceedings of the 22nd ACM SIGKDD international\\n\\n\\n 27 conference @@ -5039,7 +5073,7 @@ interactions: 2018, 16, 31\u201357.\\n\\n\\n(56) Harren, T.; Matter, H.; Hessler, G.; Rarey, M.; Grebner, C. Interpretation of structure\u2013\\n\\n activity relationships in real-world drug design data sets using explainable artificial\\n\\n intelligence. - Journal of Chemical Information and Modeling 2022, 62,\\n\\n----\\n\\nQuestion: + Journal of Chemical Information and Modeling 2022, 62,\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -5049,13 +5083,13 @@ interactions: connection: - keep-alive content-length: - - "5809" + - "6085" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -5065,7 +5099,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -5081,24 +5115,24 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNbxtHDL3rVxBzXhm2HNuIbw5QoEZb9JK2AapAoGe4u4xnZ7YkV5Fi - +L8XM2tZcpsCvewCfEPy8fHjaQHgOLhbcL5H88MYlx/2v7Ttz+2FrXa7H/G3c/nj7uPvXfzwDb/c - /Oqa4pEfvpC3g9eZz8MYyTinGfZCaFSiXtxcXd6srq9WNxUYcqBY3LrRlu/ycnW+ere8uFiuzl8c - +8ye1N3CnwsAgKf6LRRToJ27hfPmYBlIFTtyt6+PAJzkWCwOVVkNk7nmCPqcjFJl/bROAGun0zCg - 7NfuFtbu0919A1ngh90YkRM+RII7MW7ZM0a4T0YxckfJUwNCLYmCZRjI+hwUMAUw8n3ivyZSmJRC - hfGRwHqCQJ6Vc1oO+Mipg1GyJ1VSyC3c3UOVRsEEk44olKyG5GQko5BVPpahnwZMegYfewLaeZLR - ZjaFmMIWhfOk8DXLo4L1aEC7MWY5sNhSzONAyRqgLcYJS9uamgvHMbKvhkLqU2F1qM5LVoWQB+Sk - oJPvARUGCuwxAg/YceoaGNBIGKOCep6lKpGDTB0EUu7SGfxEeyi9EH6YSi4FTj5OgWYrqvGWKmtM - lYw20BLaJPTGDzBh3CvrnKMKCELdFFH421xGm+VUQo5s+1k7z0bhRSaMmiGw+kkVfI8xUuqo8HrV - KHVVP59FyFsinTvuI6eqwIt2c4aDehi7LGz9UCgqfKUYy78E6lktS3WlbY6HggKoodEyt0vraYli - hcTbIRjQ95wIIqEkTt3Z2jXzPAtF2mLytFGfhcpcv1+n59MlEGonxbKDaYrxBMCUss1yl/X7/II8 - vy5czN0o+UH/4epaTqz9Rgg1p7Jcanl0FX1eAHyuiz292VU3Sh5G21h+pJru4ur6cg7ojrfkBL48 - oJYN4wlw/f66+U7ITSBDjnpyHZxH31M4+h5PCU6B8wmwOCn833y+F3sunlP3f8IfAe9pNAqbUcoe - va35+EyoHNv/evYqdCXslGTLnjbGJKUZgVqc4nwHne7VaNi0nLoyT1yPYWnm4nnxNwAAAP//AwBw - i6r7CgYAAA== + H4sIAAAAAAAAAwAAAP//dFRNbyM3DL37VxA6tYAdxI6dFLkFRYpNA/S0RXdRL2xa4sww1kiqyHHi + BPnvhWYcx9l2LzOAHvn48Ui+jAAMO3MNxjaotk1+8uv0nuZf01+3f7bb59tPzw+///Hp6fl+kR8W + vzkzLh5x80BW37zObGyTJ+UYBthmQqXCOr1azOcXF1ezeQ+00ZEvbnXSyTxOZuez+WQ6nczOD45N + ZEtiruHvEQDAS/8tKQZHT+YazsdvLy2JYE3m+mgEYHL05cWgCItiUDN+B20MSqHPer1eP0gMy/Cy + DABLI13bYt4vzTUszeeGgJ4s5aSQctyxIwEEz6IQK8hUUaZgSSCTL3WCRrh9Sh454MYT3GTlii2j + h7ug5D3XxR5++nJz9/MZfG5I6JTGxh1l2GHm2AmgJLIqJdSXm7sxcLC+cxxqYBXAlDxbLL0GDuC4 + 6mkUKibvBDxvCVpUyoxeQCyXGGOwDbUsmvdjwOCgJccWPXCLNYd6DCjwSN6Xf0vaRBd9rJkEqpiB + dug71JJDcea2b0uoQRsCDko5ZVLcsGfdl8RbtA0HAk+YQzHshZczuKc9PMa8lUNZBKKdK3FigCJQ + RlHeFQGSx9DXKWOoCLXLNFjwpjs8l2Qy1Z3HzM9DT5RsE/if7pD5xqPdTjbx6ZhBUfek9+glgmOx + nUhfjm3Qewp1wYIrA/CdHtSmBoWf3xThNsWsWATmAC1uC3BzB7IXpVagjZlAMwZJ2CtVaDV3oo8x + a7M/W5rxMIWZPO0K0UpszDRM4y9HuBNyqyIYSYEq9ELL8LoM6/X6dM4zVZ1gWbPQeX8CYAhRh5aW + Dft2QF6PO+VjnXLcyHeupuLA0qwyocRQ9kc0JtOjryOAb/3udh/W0aQc26QrjVvqw00vZ9OB0Lyf + ixP44rDaRqOiPwGuFm9+HyhXjhTZy8kBMBZtQ+7Ed3FxeSwCO8fxHTsfndT+35T+j36on0N9wvJD + +nfAWkpKbpVyWbqPZb+bZSon9Udmx173CRuhvGNLK2XKRQ9HFXZ+uHZmGLxVxaEui8nDyavSaja9 + pMvF3M6dGb2O/gUAAP//AwB9ip19+wUAAA== headers: CF-RAY: - - 96665caa3eabd03d-SJC + - 96a9ce3ac9e47ae2-SJC Connection: - keep-alive Content-Encoding: @@ -5106,7 +5140,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:30 GMT + - Tue, 05 Aug 2025 22:42:09 GMT Server: - cloudflare Strict-Transport-Security: @@ -5124,13 +5158,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "3713" + - "5076" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "3732" + - "5079" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -5138,13 +5172,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998618" + - "29998550" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - d87ab3b8-1b1e-994c-827d-bccc2ea04d64 + - req_2fa0fd5d40ec49e1a2532f4496a4479f status: code: 200 message: OK @@ -5152,78 +5186,80 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 8-9: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nrepresented - with equation 2.\\n\\n \u2206\u02C6f(\u20D7x) - \u2248\u2202\u02C6f(\u20D7x) (2)\\n \u2206xi - \ \u2202xi\\n\\n\\n\\n 7 \u2206\u02C6f(\u20D7x) - \ where \u02C6f(x) is the black-box model and are used as our attributions. - The left- \u2206xi\\n\\nhand - side of equation 2 says that we attribute each input feature xi by how much - one unit\\n\\nchange in it would affect the output of \u02C6f(x). If \u02C6f(x) - is a linear surrogate model, then this\\n\\nmethod reconciles with LIME.35 In - DL models, \u2207xf(x), suffers from the shattered gradients\\n\\nproblem.62 - This means directly computing the quantity leads to numeric problems. The\\n\\ndifferent - gradient based approaches are mostly distinguishable based on how the gradient - is\\n\\napproximated.\\n\\n Gradient based explanations have been widely used - to interpret chemistry predictions.60,66\u201370\\n\\nMcCloskey et al. 60 used - graph convolutional networks (GCNs) to predict protein-ligand\\n\\nbinding and - explained the binding logic for these predictions using integrated gradients.\\n\\nPope - et al. 66 and Jim\xB4enez-Luna et al. 67 show application of gradCAM and integrated - gradi-\\n\\nents to explain molecular property predictions from trained graph - neural networks (GNNs).\\n\\nSanchez-Lengeling et al. 68 present comprehensive, - open-source XAI benchmarks to explain\\n\\nGNNs and other graph based models. - They compare the performance of class activation\\n\\nmaps (CAM),63 gradCAM,64 - smoothGrad,,65 integrated gradients62 and attention mecha-\\n\\nnisms for explaining - outcomes of classification as well as regression tasks. They concluded\\n\\nthat - CAM and integrated gradients perform well for graph based models. Another attempt\\n\\nat - creating XAI benchmarks for graph models was made by Rao et al. 70. They compared\\n\\nthese - gradient based methods to find subgraph importance when predicting activity - cliffs\\n\\nand concluded that gradCAM and integrated gradients provided the - most interpretability\\n\\nfor GNNs. The GNNExplainer69 is an approach for - generating explanations (local and\\n\\nglobal) for graph based models. This - method focuses on identifying which sub-graphs con-\\n\\ntribute most to the - prediction by maximizing mutual information between the prediction\\n\\nand - distribution of all possible sub-graphs. Ying et al. 69 show that GNNExplainer - can be\\n\\nused to obtain model-agnostic explanations. SubgraphX is a similar - method that explains\\n\\nGNN predictions by identifying important subgraphs.71\\n\\n - \ Another set of approaches like DeepLIFT72 and Layerwise Relevance backPropagation73\\n\\n\\n\\n - \ 8(LRP) are based on backpropagation of - the prediction scores through each layer of the neu-\\n\\nral network. The specific - backpropagation logic across various activation functions differs\\n\\nin these - approaches, which means each layer must have its own implementation. Baldas-\\n\\nsarre - and Azizpour 74 showed application of LRP to explain aqueous solubility prediction - for\\n\\nmolecules.\\n\\n SHAP is a model-agnostic feature attribution method - that is inspired from the game\\n\\ntheory concept of Shapley values.44,46 SHAP - has been popularly used in explaining molecular\\n\\nprediction models.75\u201378 - It\u2019s an additive feature contribution approach, which assumes that\\n\\nan - explanation model is a linear combination of binary variables z. If the Shapley - value\\nfor the ith feature is \u03D5i, then the explanation is \u02C6f(\u20D7x) - = Pi \u03D5i(\u20D7x)zi(\u20D7x). Shapley values for\\n\\nfeatures are computed - using Equation 3.79,80\\n\\n\\n\\n M\\n 1\\n - \ \u03D5i(\u20D7x) = X \u02C6f (\u20D7z+i) - \u2212\u02C6f (\u20D7z\u2212i) (3)\\n M\\n\\n - \ Here \u20D7z is a fabricated example created from the original \u20D7x and - a random perturbation \u20D7x\u2032.\\n\\n\u20D7z+i has the feature i from \u20D7x - and \u20D7z\u2212i has the ith feature from \u20D7x\u2032. Some care should - be taken\\n\\nin constructing \u20D7z when working with molecular descriptors - to ensure that an impossible \u20D7z is\\n\\nnot sampled (e.g., high count of - acid groups but no hydrogen bond donors). M is the sample\\n\\nsize of perturbations - around \u20D7x. Shapley value computation is expensive, hence M is chosen\\n\\naccordingly. - Equation 3 is an approximation and gives contributions with an expectation\\nterm - as \u03D50 + Pi=1 \u03D5i(\u20D7x) = \u02C6f(\u20D7x).\\n\\n Visualization - based feature attribution has also been used for molecular data. In com-\\n\\nputer - science, saliency maps are a way to measure spatial feature contribution.81 - Simply put,\\n\\nsaliency maps draw a connection between the model\u2019s neural - fingerprint components (trained\\n\\nweights) and input features. Weber et al. - 82 used saliency maps to build an explainable GCN\\n\\narchitecture that gives - subgraph importance for small molecule activity prediction. On the\\n\\nother - hand, similarity maps compare model predictions for two or more molecules based - on\\n\\ntheir chemical fingerprints.83 Similarity maps provide atomic weights - or predicte\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":[{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,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\"}},{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,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OR5WXORZILbMZ+lKAZ0CvF4xwUhJ1EcD+iiSPooIWg9B0mYRV+cT1xTiteSY9XLUOinuH4XEryXAxhzShhyiVgF+nRyvXYzbUITfVImxUFG9mmJ3doTv6gnZ3RsS3BeCGA/eWUB1zULbM9BmKIJuJlWfQLKgoO2L0+wrUuwUKXYlECdhontSrHN2gnNngmPnwpCSR2cMctQjfdgzpH93aP8ur44om4ZUm6YUqwqoEYDVSyRvgJPX0inrOOQNWUQdCmUDnK6XQNdNZhjwSWb1WN1y3MZi4mYh1VJEccshmQkBfRZVn08zLqSalSGCOsIiOwMDOsI2l6G/LgBATtKT8oylWZaFYju5hNDdUXnk8MVTV4qptU85iVKT3zywlJNAL1scsKIV/WL0X81JL6+GhoYfZJJX1Y+ad7ty5Upubq6zs7Onp2dpaenL4M5r6ykncVnLbEjE745b4aRX0IMHDz744IOlF+vKg1uS4x1uiUFfvaGzyEmg3/r1+2+88cZv33p31Ud/fuejz9/+1h/+4cu/frUW9J+/+vorHa21G3U26+rqLdHq1av//ir64m9/+vzLT0B/+PFH77z30dvvfPT22x+/8+7/fPjRHz/99LNP//DnT/74b3/w6R8++cufPvniqf/85V++f8I/ffHFx3/+7MPP/vDhZ598+Nmn4PbfXqIbf/rrXz75y2caf/j5Hz74/NOPP//jO598tOqjj1Z98NHb73/8zgcff/zpH553+F+//Nsnf/7ze59+8t4nn7z/Px//7vdv/upXv3r7nbff/eCd9z545/0P3v3www8+XKIP/vVf8J933n//7ffeAx+/02KJ3vsAPMV7736gafDB2++9/ebbq0D/btWqN1e9/fu331n17ntvv/ve4uGr3nv3d+++Dfo376x66rff+s1b3/GvV70F7vz1v7x0+9erVn3rhe3fvrPqtwuHg4+//927by769++9+da7v38T3Lnq9799663fak67Cmz/+wW//ftf//Y3b/zn6c033wQ/xffeAT/u9xY23n8f/OgWDV6F51yBX5Q+//zzV/oJ/UVq48aNev/fKC0t7Z8rnPQj9KM46f79++BH7+vra2trGxUVZWRk1N/f/5N2799a4CQk4u8c1jIbElY46dXU1dVlaWm5dM/Y9RPZU21eeOj7v//U/g1vDSRZv7H1d79eZeAX88Gf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\"}},{\"type\":\"text\",\"text\":\"Excerpt + from Wellawatte2023 pages 16-20: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nssion + challenge and is\\n\\nimportant for chemical process design, drug design and + crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented + and trained an RNN model in Keras to predict solubilities (log\\n\\nmolarity) + of small molecules.127 The AqSolDB curated database137 was used to train the\\n\\nRNN + model.\\n\\n In this task, counterfactuals are based on equation 6. Figure + 3 illustrates the generated\\n\\nlocal chemical space and the top four counterfactuals. + Based on the counterfactuals, we ob-\\n\\nserve that the modifications to the + ester group and other heteroatoms play an important role\\n\\nin solubility. + These findings align with known experimental and basic chemical intuition.134\\n\\nFigure + 4 shows a quantitative measurement of how substructures are contributing to + the pre-\\n\\n\\n\\n 16Figure 2: Descriptor + explanations along with natural language explanation obtained for BBB\\npermeability + of Alprozolam molecule. The green and red bars show descriptors that influ-\\nence + predictions positively and negatively, respectively. Dotted yellow lines show + significance\\nthreshold (\u03B1 = 0.05) for the t-statistic. Molecular descriptors + show molecule-level proper-\\nties that are important for the prediction. ECFP + and MACCS descriptors indicate which\\nsubstructures influence model predictions. + MACCS explanations lead to text explanations\\nas shown. Republished from Ref.10 + with permission from authors. SMARTS annotations for\\nMACCS descriptors were + created using SMARTSviewer (smartsview.zbh.uni-hamburg.de,\\nCopyright: ZBH, + Center for Bioinformatics Hamburg) developed by Schomburg et al. 132.\\n\\n\\n\\n\\n\\n + \ 17diction. For example, we see that adding + acidic and basic groups as well as hydrogen bond\\n\\nacceptors, increases solubility. + Substructure importance from ECFP97 and MACCS138 de-\\n\\nscriptors indicate + that adding heteroatoms increases solubility, while adding rings structures\\n\\nmakes + the molecule less soluble. Although these are established hypotheses, it is + interesting\\n\\nto see they can be derived purely from the data via DL and + XAI.\\n\\n\\n\\n\\n\\nFigure 3: Generated chemical space for solubility prediction + using the RNN model. The\\nchemical space is a 2D projection of the pairwise + Tanimoto similarities of the local coun-\\nterfactuals. Each data point is colored + by solubility. Top 4 counterfactuals are shown here.\\nRepublished from Ref.9 + with permission from the Royal Society of Chemistry.\\n\\n\\n\\nGeneralizing + XAI \u2013 interpreting scent-structure relationships\\n\\n\\nIn this example, + we show how non-local structure-property relationships can be learned with\\n\\nXAI + across multiple molecules. Molecular scent prediction is a multi-label classification + task\\n\\nbecause a molecule can be described by more than one scent. For example, + the molecule\\n\\njasmone can be described as having \u2018jasmine,\u2019 \u2018woody,\u2019 + \u2018floral,\u2019 and \u2019herbal\u2019 scents.139 The\\n\\nscent-structure + relationship is not very well understood,140 although some relationships are\\n\\nknown. + \ For example, molecules with an ester functional group are often associated + with\\n\\n\\n 18Figure 4: Descriptor explanations + for solubility prediction model. The green and red bars\\nshow descriptors that + influence predictions positively and negatively, respectively. Dotted\\nyellow + lines show significance threshold (\u03B1 = 0.05) for the t-statistic. The MACCS + and\\nECFP descriptors indicate which substructures influence model predictions. + MACCS sub-\\nstructures may either be present in the molecule as is or may represent + a modification. ECFP\\nfingerprints are substructures in the molecule that affect + the prediction. MACCS descriptor\\nare used to obtain text explanations as shown. + Republished from Ref.10 with permission from\\nauthors. SMARTS annotations for + MACCS descriptors were created using SMARTSviewer\\n(smartsview.zbh.uni-hamburg.de, + Copyright: ZBH, Center for Bioinformatics Hamburg) de-\\nveloped by Schomburg + et al. 132.\\n\\n\\n\\n\\n\\n 19the \u2018fruity\u2019 + scent. There are some exceptions though, like tert-amyl acetate which has a\\n\\n\u2018camphoraceous\u2019 + rather than \u2018fruity\u2019 scent.140,141\\n\\n In Seshadri et al. 31, + we trained a GNN model to predict the scent of molecules and utilized\\n\\ncounterfactuals9 + and descriptor explanations10 to quantify scent-structure relationships. The\\n\\nMMACE + method was modified to account for the multi-label aspect of scent prediction. + This\\n\\nmodification defines molecules that differed from the instance molecule + by only the selected\\n\\nscent as counterfactuals. For instance, counterfactuals + of the jasmone molecule would be false\\n\\nfor the \u2018jasmine\u2019 scent + but would still be positive for \u2018woody,\u2019 \u2018floral\u2019 and \u2018herbal\u2019 + scents.\\n\\n\\n\\n\\n\\nFigure 5: Counterfactual for the 2,4 decadienal molecule. + \ The counterfactual indicates\\nstructural changes to ethyl benzoate that would + result in the model predicting the molecule\\nto not contain the \u2018fruity\u2019 + scent. The Tanimoto96 similarity between the counterfactual and\\n2,4 decadienal + is also\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}]}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -5232,13 +5268,13 @@ interactions: connection: - keep-alive content-length: - - "5832" + - "188340" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -5248,7 +5284,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -5264,24 +5300,24 @@ interactions: response: body: string: !!binary | - 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 + YFoLBgAA headers: CF-RAY: - - 96665ca9de0f232c-SJC + - 96a9ce40df68155d-SJC Connection: - keep-alive Content-Encoding: @@ -5289,7 +5325,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:31 GMT + - Tue, 05 Aug 2025 22:42:09 GMT Server: - cloudflare Strict-Transport-Security: @@ -5307,27 +5343,33 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4335" + - "4036" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "4342" + - "2922" + x-ratelimit-limit-input-images: + - "250000" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: - "30000000" + x-ratelimit-remaining-input-images: + - "249998" x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998604" + - "29997016" + x-ratelimit-reset-input-images: + - 0s x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 5ms x-request-id: - - 74af338e-d277-4e5a-a98a-f4300db168d0 + - req_0803563857ae4619a3d06d97a9d3d0b7 status: code: 200 message: OK @@ -5336,69 +5378,64 @@ interactions: '{"model": "deepseek-reasoner", "messages": [{"role": "system", "content": "Answer in a direct and concise tone. Your audience is an expert, so be highly specific. If there are ambiguous terms or acronyms, first define them."}, {"role": - "user", "content": "Answer the question below with the context.\n\nContext:\n\npqac-1026f14b: + "user", "content": "Answer the question below with the context.\n\nContext:\n\npqac-fc7d30d6: Explainable Artificial Intelligence (XAI) is a field focused on providing interpretations - of deep learning (DL) model predictions, addressing the ''black-box'' nature - of these models. XAI aims to make DL models more understandable and trustworthy - by offering explanations for their predictions. Key terms associated with XAI - include interpretability, justifications, and explainability. Interpretability - refers to the degree of human understandability intrinsic to a model, while - justifications are quantitative metrics that defend the trustworthiness of predictions. - Explanations actively clarify the internal decision-making process, providing - context and causes for specific predictions. XAI is particularly important in - fields like chemistry, where understanding predictions can guide hypotheses - and ensure models avoid spurious correlations.\nFrom Wellawatte et al, XAI Review, - 2023\n\npqac-4fc44825: XAI, or Explainable Artificial Intelligence, refers to - methods and techniques used to make the predictions and decisions of AI models - understandable to humans. In the context of molecular property prediction, XAI - aims to explain how models learn chemical principles, enhancing trust and ensuring - the model''s decisions align with scientific understanding. Key challenges in - XAI for chemistry include representation of explanations (e.g., text, molecular - structures), defining molecular distances for counterfactuals, adapting explanations - for different audiences (e.g., chemists, doctors), and evaluating the correctness - and applicability of explanations. XAI is increasingly important as AI models - transition to practical applications in industry, healthcare, and environmental - settings.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-b0844ec6: XAI, or - Explainable Artificial Intelligence, refers to methods and techniques that provide - explanations for the decision-making processes of AI models, particularly deep - learning (DL) models. While DL models are often highly accurate, they are less - interpretable. XAI aims to bridge this gap by offering insights into the underlying - mechanisms of predictions. It can be categorized into intrinsic (self-explanatory) - and extrinsic (post-hoc) methods. XAI explanations can be evaluated based on - attributes like actionability, completeness, correctness, domain applicability, - fidelity, robustness, and succinctness. These explanations are particularly - valuable in fields like chemical property prediction, where they can align with - known physical mechanisms.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-c3a673e0: - Explainable Artificial Intelligence (XAI) refers to methods and techniques that - make the predictions of machine learning models interpretable and understandable - to humans. Counterfactual explanations are a key tool in XAI, providing actionable, - instance-level insights by identifying changes in input features that would - alter the model''s prediction. For example, in molecular chemistry, counterfactuals - can suggest modifications to molecular structures to achieve desired properties. - Techniques like MMACE and CF-GNNExplainer are used to generate counterfactuals, - with MMACE being model-agnostic and applicable to both regression and classification - tasks. XAI also contrasts with adversarial training, which focuses on model - robustness rather than interpretability.\nFrom Wellawatte et al, XAI Review, - 2023\n\npqac-e9abf8c6: XAI, or Explainable Artificial Intelligence, refers to - methods and techniques used to interpret and understand the decisions made by - machine learning (ML) and deep learning (DL) models. In the context of chemistry, - XAI is applied to uncover structure-property relationships, such as using counterfactual - explanations and descriptor-based methods to interpret black-box models. For - example, counterfactual explanations can suggest actionable modifications to - molecules to improve properties like blood-brain barrier permeability. Descriptor - explanations provide quantitative insights into molecular features, aiding chemists - in understanding model predictions. XAI bridges the gap between complex models - and human interpretability, making it crucial for domains like drug discovery.\nFrom - Wellawatte et al, XAI Review, 2023\n\nValid Keys: pqac-1026f14b, pqac-4fc44825, - pqac-b0844ec6, pqac-c3a673e0, pqac-e9abf8c6\n\n----\n\nQuestion: What is XAI?\n\nWrite - an answer based on the context. If the context provides insufficient information - reply \"I cannot answer.\" For each part of your answer, indicate which sources - most support it via citation keys at the end of sentences, like (pqac-0f650d59). - Only cite from the context above and only use the citation keys from the context. - ## Valid citation examples, only use comma/space delimited parentheticals: \n- - (pqac-d79ef6fa, pqac-0f650d59) \n- (pqac-d79ef6fa) \n## Invalid citation examples: - \n- (pqac-d79ef6fa and pqac-0f650d59) \n- (pqac-d79ef6fa;pqac-0f650d59) \n- - (pqac-d79ef6fa-pqac-0f650d59) \n- pqac-d79ef6fa and pqac-0f650d59 \n- Example''s + and explanations for deep learning (DL) model predictions, addressing the ''black-box'' + nature of these models. XAI aims to enhance trust and usability by offering + insights into why a model makes specific predictions. Key concepts in XAI include + interpretability (the degree of human understandability of a model), justifications + (quantitative metrics supporting model trustworthiness), and explanations (descriptions + clarifying the reasoning behind predictions). XAI is particularly relevant in + chemistry, where understanding DL predictions can guide hypotheses and uncover + structure-property relationships, aiding in areas like solubility prediction + and drug discovery.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-ca310bf6: + XAI, or Explainable Artificial Intelligence, refers to methods and techniques + that make the decision-making processes of AI models interpretable and understandable + to humans. In the context of chemistry and drug discovery, XAI is used to interpret + black-box models, uncover structure-property relationships, and propose actionable + modifications to molecules. For example, counterfactual explanations, such as + those generated by the MMACE method, suggest changes to molecular structures + to achieve desired properties, like blood-brain barrier permeation. XAI also + includes descriptor explanations, which quantitatively link molecular features + to properties, aiding chemists in understanding and optimizing molecular behavior.\nFrom + Wellawatte et al, XAI Review, 2023\n\npqac-78b9abf1: XAI, or Explainable Artificial + Intelligence, refers to methods and techniques that make the predictions and + decision-making processes of AI models interpretable and understandable to humans. + In the context of chemical and molecular modeling, XAI is used to explain how + specific molecular substructures influence properties like solubility or scent. + For example, counterfactuals and descriptor explanations are employed to identify + structural changes that impact predictions, such as solubility or scent classification. + These insights align with known chemical principles and provide a data-driven + understanding of structure-property relationships.\nFrom Wellawatte et al, XAI + Review, 2023\n\npqac-28f2115e: XAI, or Explainable Artificial Intelligence, + refers to methods and techniques used to make the predictions and decisions + of AI models understandable to humans. In the context of molecular property + prediction, XAI aims to explain how models learn chemical principles, enhancing + trust and ensuring the model''s learning aligns with correct principles. Key + challenges in XAI include representation of explanations, defining molecular + distance, adapting explanations for different audiences (e.g., chemists, doctors), + exploring chemical space for counterfactuals, and developing systematic frameworks + to evaluate explanations. XAI is particularly important as AI models transition + to applications in industry, healthcare, and environmental settings.\nFrom Wellawatte + et al, XAI Review, 2023\n\npqac-111b466f: Explainable Artificial Intelligence + (XAI) refers to methods and techniques in AI that make the decision-making processes + of AI systems transparent, interpretable, and understandable to humans. The + excerpt references various works that explore XAI concepts, including taxonomies, + challenges, and opportunities , applications in different fields like chemistry + and energy systems, and frameworks for responsible AI. It also mentions regulatory + and ethical considerations, such as the EU''s ''right to explanation'' and the + AI Bill of Rights. XAI aims to build trust, ensure fairness, and provide insights + into AI''s functioning, addressing issues like bias and accountability.\nFrom + Wellawatte et al, XAI Review, 2023\n\nValid Keys: pqac-fc7d30d6, pqac-ca310bf6, + pqac-78b9abf1, pqac-28f2115e, pqac-111b466f\n\n------------\n\nQuestion: What + is XAI?\n\nWrite an answer based on the context. If the context provides insufficient + information reply \"I cannot answer.\" For each part of your answer, indicate + which sources most support it via citation keys at the end of sentences, like + (pqac-0f650d59). Only cite from the context above and only use the citation + keys from the context. ## Valid citation examples, only use comma/space delimited + parentheticals: \n- (pqac-d79ef6fa, pqac-0f650d59) \n- (pqac-d79ef6fa) \n## + Invalid citation examples: \n- (pqac-d79ef6fa and pqac-0f650d59) \n- (pqac-d79ef6fa;pqac-0f650d59) + \n- (pqac-d79ef6fa-pqac-0f650d59) \n- pqac-d79ef6fa and pqac-0f650d59 \n- Example''s work (pqac-d79ef6fa) \n- (pages pqac-d79ef6fa) \nDo not concatenate citation keys, just use them as is. Write in the style of a scientific article, with concise sentences and coherent paragraphs. This answer will be used directly, @@ -5412,7 +5449,7 @@ interactions: connection: - keep-alive content-length: - - "5686" + - "5305" content-type: - application/json host: @@ -5424,39 +5461,41 @@ interactions: response: body: string: !!binary | - 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 - //8DAEbzdXLWDQAA + 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 headers: CF-RAY: - - 96665cc629a9cf12-SJC + - 96a9ce5cca24ce4c-SJC Connection: - keep-alive Content-Encoding: @@ -5464,12 +5503,12 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:31 GMT + - Tue, 05 Aug 2025 22:42:10 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=hRoEQwJ.K75V4H.Fi1GOmNEGzeiEOyUxEj27ubsWQ8k-1753726531-1.0.1.1-40ymIRCSTikw_tlLCv7_W_8mSX1TsQoXU1HPwm_XyO3Jhh1tFPCUvf8fctPfd337_Ue.D5X2ELfYiVrLpKJZRoceJpaSHGMBfLlNq9LfeN8; - path=/; expires=Mon, 28-Jul-25 18:45:31 GMT; domain=.deepseek.com; HttpOnly; + - __cf_bm=y7qzN_GNG2v1Lx.FCLyijP8FT37CwDvMUu7jV3DN46c-1754433730-1.0.1.1-R1EIXb4WYfp9rpLXfXS_wMk3P8ZXCgkDxDgTBEei5fX2fV7P3WrMXZ_VbwjshUwLGM2wE_lpn6jPLyEt78Dl0ZWTMc_ttpihdAIKcg7f3KQ; + path=/; expires=Tue, 05-Aug-25 23:12:10 GMT; domain=.deepseek.com; HttpOnly; Secure; SameSite=None Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload @@ -5484,7 +5523,7 @@ interactions: vary: - origin, access-control-request-method, access-control-request-headers x-ds-trace-id: - - 98250a3e5dfa3128a34efc0c0bc6af0f + - dfbf56b131b80dcfb9274f8984048aaf status: code: 200 message: OK diff --git a/tests/cassettes/test_get_reasoning[openrouter-deepseek].yaml b/tests/cassettes/test_get_reasoning[openrouter-deepseek].yaml index e0116a0e7..166737c24 100644 --- a/tests/cassettes/test_get_reasoning[openrouter-deepseek].yaml +++ b/tests/cassettes/test_get_reasoning[openrouter-deepseek].yaml @@ -19,7 +19,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -29,7 +29,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -45,18 +45,18 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA4ySTW/bMAyG7/4VAs/OYDtpUvjWYR2wDb0M+yhQB7Yi04k6WdIkulkR5L8PspPY - 3TpgFx348KX4kjxEjIGsIWcgdpxEa9Xs7fNd87Wd7zfpl48/27n4dvO+ad592t/J+9tbiIPCbB5R - 0Fn1RpjWKiRp9ICFQ04Yqqarq/kqW16lyx60pkYVZFtLs4WZZUm2mKXpLEtOwp2RAj3k7CFijLFD - /4YWdY2/IGdJfI606D3fIuSXJMbAGRUiwL2XnrgmiEcojCbUfddVVT16owt9KDRjBZAkhQXkrID7 - mw/sMz5J3BcQD5R3tDPOB/5QwHdUiu85ETIkxlUB61NebWTI0Z1ShT4Wuqqq6f8Om85zdcqYAK61 - IR7G1ztfn8jx4lWZrXVm4/+QQiO19LvSIfdGB1+ejIWeHiPG1v1MuxdjAutMa6kk8wP771bZUA7G - JY5wfoZkiKsxniaL+JVyZY3EpfKTpYDgYof1KB03yLtamgmIJqb/7ua12oNxqbf/U34EQqAlrEvr - sJbipeMxzWG48X+lXYbcNwwe3ZMUWJJEFxZRY8M7NZwf+GdP2JaN1Ft01snhBhtbiuVqtbxultcJ - RMfoNwAAAP//AwBcX5ZyjAMAAA== + H4sIAAAAAAAAAwAAAP//jJJNb9swDIbv/hUCz8lg52PBcltzGIb1NCDIgDqwVYlOlMmSINFJiyD/ + fZCdxO7WAb3owIcvxZfkOWEMlIQlA7HnJGqnx6vshzw9fnnwcrOerB/Xm2+ncNi8Htfzl9UKRlFh + nw8o6Kb6JGztNJKypsPCIyeMVbPFfDabThfZ5xbUVqKOsp2j8cyOJ+lkNs6y8SS9CvdWCQywZE8J + Y4yd2ze2aCS+wJKlo1ukxhD4DmF5T2IMvNUxAjwEFYgbglEPhTWEpu26LMtDsCY359wwlgMp0pjD + kuXw6+t39hOPCk85jDrKG9pbHyJ/ymGDWvMTJ0KGxLjOYXvNk1bFHNNonZtLbsqyHP7vsWoC19eM + AeDGWOJxfK3z7ZVc7l613Tlvn8NfUqiUUWFfeOTBmugrkHXQ0kvC2LadafNmTOC8rR0VZH9j+91i + 0pWDfok9nN4gWeK6j2fpbPROuUIicaXDYCkguNij7KX9BnkjlR2AZGD6327eq90ZV2b3kfI9EAId + oSycR6nEW8d9msd44/9Luw+5bRgC+qMSWJBCHxchseKN7s4PwmsgrItKmR1651V3g5UrqhSn6WI+ + XUhILskfAAAA//8DAORUrZyMAwAA headers: CF-RAY: - - 96665c683c127afd-SJC + - 96a9ce062a1deb34-SJC Connection: - keep-alive Content-Encoding: @@ -64,14 +64,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:17 GMT + - Tue, 05 Aug 2025 22:41:56 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=_aOWzp2Ts0hjUIVqpz2FbZxEqY9wvFkIIkIunDmtqfw-1753726517-1.0.1.1-QWz73omTXi4ThxlZixtBZGyB0DiBq2Pl.LxiEAzHi0y6IHR3NqNQGCPZDaU2UOrEDshfAL0wzKMQsRmCXxOrjp8JKZjSv5UeCsqYhMPhK0M; - path=/; expires=Mon, 28-Jul-25 18:45:17 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=1bUq6k396Tt1JTeDWTAmu2RwJERH3mjmWIq9HEf_8HU-1754433716-1.0.1.1-NqnuOam1S5TlD3HBWQkpNfZExulP9Gtg_ePPdq1eQBcN.GF6Y8oFa8Gj7DuLDM7gRHxjyOQv.cwvcflNNtjNTcDtnRNyrVjtmOoXZu5r.Z8; + path=/; expires=Tue, 05-Aug-25 23:11:56 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=ezQLSnCmmw4r2mKAy0QcLkziFEA6Pd03_g7WQgRzqEI-1753726517455-0.0.1.1-604800000; + - _cfuvid=KKYb9MTTEzoT.UJpGlkV.TgYP9Kyq8fITAuN9wDB7sM-1754433716737-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -86,7 +86,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "834" + - "468" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -94,7 +94,7 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "854" + - "473" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -102,13 +102,59 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29999934" + - "29999935" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 0s x-request-id: - - req_9f62b44ff5c585f517e08e7042732794 + - req_3c7f4420f3fa6dab4128f73de4fcd072 + status: + code: 200 + message: OK + - request: + body: null + headers: {} + method: GET + uri: https://api.crossref.org/works?mailto=example@papercrow.ai&query.title=XAI+Review&rows=1&query.author=Wellawatte+et+al + response: + body: + string: + '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":22876,"items":[{"indexed":{"date-parts":[[2024,8,7]],"date-time":"2024-08-07T06:45:10Z","timestamp":1723013110666},"reference-count":0,"publisher":"Transstellar + Journal Publications and Research Consultancy Private Limited","issue":"6","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":["IJASR"],"published-print":{"date-parts":[[2017]]},"DOI":"10.24247\/ijasrdec201724","type":"journal-article","created":{"date-parts":[[2017,11,9]],"date-time":"2017-11-09T01:18:32Z","timestamp":1510190312000},"page":"173-180","source":"Crossref","is-referenced-by-count":0,"title":["Bovine + Mastitis, Global Quandary \\\"A Review\\\""],"prefix":"10.24247","volume":"7","author":[{"given":"Kamaldeep + et al.,","family":"Kamaldeep et al.,","sequence":"first","affiliation":[]},{"name":"TJPRC","sequence":"additional","affiliation":[]}],"member":"10346","container-title":["International + Journal of Agricultural Science and Research"],"language":"en","deposited":{"date-parts":[[2017,11,9]],"date-time":"2017-11-09T01:24:49Z","timestamp":1510190689000},"score":24.77057,"resource":{"primary":{"URL":"http:\/\/tjprc.org\/publishpapers\/2-50-1510208310-24.IJASRDEC201724.pdf"}},"issued":{"date-parts":[[2017]]},"references-count":0,"journal-issue":{"issue":"6","published-print":{"date-parts":[[2017]]}},"alternative-id":["Arch-9275"],"URL":"https:\/\/doi.org\/10.24247\/ijasrdec201724","ISSN":["2250-0057"],"issn-type":[{"type":"print","value":"2250-0057"}],"published":{"date-parts":[[2017]]}}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' + headers: + Access-Control-Allow-Headers: + - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, + Accept-Ranges, Cache-Control + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Link + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Length: + - "848" + Content-Type: + - application/json + Date: + - Tue, 05 Aug 2025 22:41:57 GMT + Server: + - Jetty(9.4.40.v20210413) + Vary: + - Accept-Encoding + permissions-policy: + - interest-cohort=() + x-api-pool: + - plus + x-rate-limit-interval: + - 1s + x-rate-limit-limit: + - "150" status: code: 200 message: OK @@ -130,14 +176,14 @@ interactions: null}, "publicationTypes": ["JournalArticle", "Conference", "Review"], "publicationDate": "2024-11-20", "journal": {"name": "2024 8th International Conference on System Reliability and Safety (ICSRS)", "pages": "511-517"}, "citationStyles": {"bibtex": - "@Article{Nguyen2024EnhancingPW,\n author = {Duc An Nguyen and Khanh T. P. - Nguyen and Kamal Medjaher},\n booktitle = {International Conference on System - Reliability and Safety},\n journal = {2024 8th International Conference on - System Reliability and Safety (ICSRS)},\n pages = {511-517},\n title = {Enhancing - PHM with XAI: Review and Dataset for System Health Indicator Construction},\n - year = {2024}\n}\n"}, "authors": [{"authorId": "2167438752", "name": "Duc - An Nguyen"}, {"authorId": "2184162840", "name": "Khanh T. P. Nguyen"}, {"authorId": - "2267984723", "name": "Kamal Medjaher"}], "matchScore": 57.629684}]} + "@Article{Nguyen2024EnhancingPW,\n author = {D. Nguyen and Khanh T. P. Nguyen + and Kamal Medjaher},\n booktitle = {International Conference on System Reliability + and Safety},\n journal = {2024 8th International Conference on System Reliability + and Safety (ICSRS)},\n pages = {511-517},\n title = {Enhancing PHM with XAI: + Review and Dataset for System Health Indicator Construction},\n year = {2024}\n}\n"}, + "authors": [{"authorId": "2167438752", "name": "D. Nguyen"}, {"authorId": + "2184162840", "name": "Khanh T. P. Nguyen"}, {"authorId": "2267984723", "name": + "Kamal Medjaher"}], "matchScore": 59.21923}]} ' headers: @@ -146,77 +192,31 @@ interactions: Connection: - keep-alive Content-Length: - - "1448" + - "1439" Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:18 GMT + - Tue, 05 Aug 2025 22:41:57 GMT Via: - - 1.1 0ac5a786563da4ae2e2a28a1fe210e04.cloudfront.net (CloudFront) + - 1.1 6269ff653a8a0b71d436afa999909318.cloudfront.net (CloudFront) X-Amz-Cf-Id: - - Idkt5gjlDAVpamIvc3bI3Q3HD_2OB-BAjGCcOXD4XZfE0YAF3sdYzQ== + - kk_ZDYIhfDMEpErPRVIsfgwYyNO_RXcjGHXhW4LoFYogAvEZrkqktQ== X-Amz-Cf-Pop: - SFO53-P7 X-Cache: - Miss from cloudfront x-amz-apigw-id: - - ObqocFO-vHcEHBQ= + - O2pMUFmWvHcEUQw= x-amzn-Remapped-Connection: - keep-alive x-amzn-Remapped-Content-Length: - - "1448" + - "1439" x-amzn-Remapped-Date: - - Mon, 28 Jul 2025 18:15:18 GMT + - Tue, 05 Aug 2025 22:41:57 GMT x-amzn-Remapped-Server: - gunicorn x-amzn-RequestId: - - e9f78903-4a69-46ef-94ce-7e7955c6434b - status: - code: 200 - message: OK - - request: - body: null - headers: {} - method: GET - uri: https://api.crossref.org/works?mailto=example@papercrow.ai&query.title=XAI+Review&rows=1&query.author=Wellawatte+et+al - response: - body: - string: - '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":22730,"items":[{"indexed":{"date-parts":[[2024,8,7]],"date-time":"2024-08-07T06:47:19Z","timestamp":1723013239657},"reference-count":0,"publisher":"Transstellar - Journal Publications and Research Consultancy Private Limited","issue":"3","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":["IJMPERD"],"published-print":{"date-parts":[[2020]]},"DOI":"10.24247\/ijmperdjun2020913","type":"journal-article","created":{"date-parts":[[2020,8,27]],"date-time":"2020-08-27T00:33:19Z","timestamp":1598488399000},"page":"9575-9582","source":"Crossref","is-referenced-by-count":0,"title":["A - Review Paper on Food Security"],"prefix":"10.24247","volume":"10","author":[{"given":"Ansumansamal - et al.,","family":"Ansumansamal et al.,","sequence":"first","affiliation":[]},{"name":"TJPRC","sequence":"additional","affiliation":[]}],"member":"10346","container-title":["International - Journal of Mechanical and Production Engineering Research and Development"],"language":"en","deposited":{"date-parts":[[2020,8,27]],"date-time":"2020-08-27T00:33:19Z","timestamp":1598488399000},"score":24.880903,"resource":{"primary":{"URL":"http:\/\/tjprc.org\/publishpapers\/2-67-1598502792-913IJMPERDJUN2020913.pdf"}},"issued":{"date-parts":[[2020]]},"references-count":0,"journal-issue":{"issue":"3","published-print":{"date-parts":[[2020]]}},"alternative-id":["Arch-13770"],"URL":"https:\/\/doi.org\/10.24247\/ijmperdjun2020913","ISSN":["2249-6890"],"issn-type":[{"type":"print","value":"2249-6890"}],"published":{"date-parts":[[2020]]}}],"items-per-page":1,"query":{"start-index":0,"search-terms":null}}}' - headers: - Access-Control-Allow-Headers: - - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language, - Accept-Ranges, Cache-Control - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Link - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Length: - - "850" - Content-Type: - - application/json - Date: - - Mon, 28 Jul 2025 18:15:20 GMT - Server: - - Jetty(9.4.40.v20210413) - Vary: - - Accept-Encoding - permissions-policy: - - interest-cohort=() - x-api-pool: - - plus - x-ratelimit-interval: - - 1s - x-ratelimit-limit: - - "150" + - cb074de7-2428-4a6e-b10e-7c4c52cf006a status: code: 200 message: OK @@ -1283,7 +1283,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -1293,7 +1293,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -1309,1691 +1309,1691 @@ interactions: response: body: string: !!binary | - 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 + Ma3/10v/Yh/4//71/wEAAP//AwArVeQJugUCAA== headers: CF-RAY: - - 96665c82da4167ee-SJC + - 96a9ce193d8eeb34-SJC Connection: - keep-alive Content-Encoding: @@ -3001,14 +3001,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:21 GMT + - Tue, 05 Aug 2025 22:41:59 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=97cvrx_C7IwRXYGUDUWu9qhIwwq_PzDWMNEzfgPEnAo-1753726521-1.0.1.1-VjiApjkT7Bpj.tZtfqtyQZr1ovBXKtPZ60M6lIqNPzEHeFJnaFhs3mhk8AOQIKC3NyTAA5pCgMnbKYV_m93yfn7aX2hkL1FwGKuGhk3pi.0; - path=/; expires=Mon, 28-Jul-25 18:45:21 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=KgTjSExeDpGNQO1Bi.O7YZW7JPWl6oyl8iOVUVmDUvk-1754433719-1.0.1.1-4lY0IuhuX36P12iDe0PxcduDuDlget.KshnMshYynDyXr4xT3PXpZSjx9JEbaKkfZF094j3ch9eyGMSIpKr4aSgVhq4jLZ_btKl0l3OXTHQ; + path=/; expires=Tue, 05-Aug-25 23:11:59 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=sokXYWby45WRqU6BuuNesctQL5oo7pn2NmnNeJpaW.I-1753726521487-0.0.1.1-604800000; + - _cfuvid=mYmhv0NxsZh81PX3oU5ATaP7ZZgeQ8Ca_UhEbPnYx14-1754433719844-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -3027,7 +3027,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "518" + - "296" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3035,23 +3035,23 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-f55cd75d4-rxpxr + - envoy-router-6bd4b5cc9f-79vtb x-envoy-upstream-service-time: - - "611" + - "518" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - - "199979818" + - "199979816" x-ratelimit-reset-requests: - 0s x-ratelimit-reset-tokens: - 6ms x-request-id: - - req_c3c80c85f5e74fd16f99405ef30b8643 + - req_e3b5307c9c8de744da582cb8cc240b9c status: code: 200 message: OK @@ -3075,7 +3075,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3085,7 +3085,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3212,7 +3212,7 @@ interactions: 98//e/xf61/917/+FwAAAP//AwBe8oQ14CAAAA== headers: CF-RAY: - - 96665c87afb567ee-SJC + - 96a9ce1dad4feb34-SJC Connection: - keep-alive Content-Encoding: @@ -3220,7 +3220,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:21 GMT + - Tue, 05 Aug 2025 22:42:00 GMT Server: - cloudflare Transfer-Encoding: @@ -3240,7 +3240,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "80" + - "77" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3248,23 +3248,23 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-f55cd75d4-56n7x + - envoy-router-8db4bc66c-vrtv2 x-envoy-upstream-service-time: - - "97" + - "82" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - - "199999930" + - "199999933" x-ratelimit-reset-requests: - 0s x-ratelimit-reset-tokens: - 0s x-request-id: - - req_650e2032020a48d793e8a257070a763e + - req_15c3b127ba5ce494d66a7c7126a29396 status: code: 200 message: OK @@ -3284,7 +3284,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3294,7 +3294,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3310,118 +3310,118 @@ interactions: response: body: string: !!binary | - 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 - /+fyv74/9J//+j8AAAD//wMAofreDN4gAAA= + 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 headers: CF-RAY: - - 96665c89ac996897-SJC + - 96a9ce1f7e26239e-SJC Connection: - keep-alive Content-Encoding: @@ -3429,14 +3429,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:21 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=mdE.4gn3lVyZ89IwkpfYXiWsc7ixQCjMFvlDQLD56J0-1753726521-1.0.1.1-Ef2nu5nAFQgL2xrAd.8p0.m0mbiORQm5boNtUlMC64ntU5zrS3HSluYj8beB3VcEGcg.UjyCul0vjjrMD4SN7j9U9gpjvF1kk..5zDLdpGc; - path=/; expires=Mon, 28-Jul-25 18:45:21 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=_qU61hcod6Wldw8KWXAJOzfgmM6vaAQkrOk.ObZjhR4-1754433722-1.0.1.1-bS1F7guS39V9Ow984A.gxMiuKbjMNWjkYxLpPRVE2vo6dX5_xUI6k9gcCZft4OMAAQ0yQ60ZeC0inJpIMZ0LXbZkME9JxGSh5W.kX5xj.Qw; + path=/; expires=Tue, 05-Aug-25 23:12:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=c0kRS6QhSdwcRKm0BrJF5K63TEWkBW40HO8BTtQknQM-1753726521977-0.0.1.1-604800000; + - _cfuvid=xDQyHCRoZ3wAudoJPKFiPttGNES1mIjbkBh3nsa4M6U-1754433722308-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -3455,7 +3455,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "40" + - "198" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3463,15 +3463,15 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-dbb4fbdcc-2z226 + - envoy-router-896675b9b-4f528 x-envoy-upstream-service-time: - - "44" + - "1958" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - "199999996" x-ratelimit-reset-requests: @@ -3479,7 +3479,197 @@ interactions: x-ratelimit-reset-tokens: - 0s x-request-id: - - req_d16b051056b5a4d174b42b58f0dbbfbb + - req_2665f559a7c2bc1cb1bc9e406bf2f57d + status: + code: 200 + message: OK + - request: + body: + "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of + the relevant information that could help answer the question based on the excerpt. + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 3-5: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n + a passive characteristic of a model, whereas explainability\\n\\nis an active + characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, + an explanation is extra information that gives the context and a cause for one + or\\n\\nmore predictions.29 We adopt the same nomenclature in this perspective.\\n\\n + \ Accuracy and interpretability are two attractive characteristics of DL models. + However,\\n\\nDL models are often highly accurate and less interpretable.28,30 + XAI provides a way to avoid\\n\\nthat trade-off in chemical property prediction. + XAI can be viewed as a two-step process.\\n\\nFirst, we develop an accurate + but uninterpretable DL model. Next, we add explanations to\\n\\npredictions. + Ideally, if the DL model has correctly learned the input-output relations, then\\n\\nthe + explanations should give insight into the underlying mechanism.\\n\\n In the + remainder of this article, we review recent approaches for XAI of chemical property\\n\\nprediction + while drawing specific examples from our recent XAI work.9,10,31 We show how\\n\\nin + various systems these methods yield explanations that are consistent with known + and\\n\\nmechanisms in structure-property relationships.\\n\\n\\n\\n\\n\\n 3Theory\\n\\n\\nIn + this work, we aim to assemble a common taxonomy for the landscape of XAI while\\n\\nproviding + our perspectives. We utilized the vocabulary proposed by Das and Rad 32 to classify\\n\\nXAI. + According to their classification, interpretations can be categorized as global + or local\\n\\ninterpretations on the basis of \u201Cwhat is being explained?\u201D. + For example, counterfactuals are\\n\\nlocal interpretations, as these can explain + only a given instance. The second classification is\\n\\nbased on the relation + between the model and the interpretation \u2013 is interpretability post-hoc\\n\\n(extrinsic) + or intrinsic to the model?.32,33 An intrinsic XAI method is part of the model\\n\\nand + is self-explanatory32 These are also referred to as white-box models to contrast + them\\n\\nwith non-interpretable black box models.28 An extrinsic method is + one that can be applied\\n\\npost-training to any model.33 Post-hoc methods + found in the literature focus on interpreting\\n\\nmodels through 1) training + data34 and feature attribution,35 2) surrogate models10 and, 3)\\n\\ncounterfactual9 + or contrastive explanations.36\\n\\n Often, what is a \u201Cgood\u201D explanation + and what are the required components of an ex-\\n\\nplanation are debated.32,37,38 + Palacio et al. 29 state that the lack of a standard framework\\n\\nhas caused + the inability to evaluate the interpretability of a model. In physical sciences,\\n\\nwe + may instead consider if the explanations somehow reflect and expand our understanding\\n\\nof + physical phenomena. For example, Oviedo et al. 39 propose that a model explanation\\n\\ncan + be evaluated by considering its agreement with physical observations, which + they term\\n\\n\u201Ccorrectness.\u201D For example, if an explanation suggests + that polarity affects solubility of a\\n\\nmolecule, and the experimental evidence + strengthen the hypothesis, then the explanation\\n\\nis assumed \u201Ccorrect\u201D. + In instances where such mechanistic knowledge is sparse, expert bi-\\n\\nases + and subjectivity can be used to measure the correctness.40 Other similar metrics + of\\n\\ncorrectness such as \u201Cexplanation satisfaction scale\u201D can be + found in the literature.41,42 In a\\n\\nrecent study, Humer et al. 43 introduced + CIME an interactive web-based tool that allows the\\n\\nusers to inspect model + explanations. The aim of this study is to bridge the gap between\\n\\nanalysis + of XAI methods. Based on the above discussion, we identify that an agreed upon\\n\\n\\n + \ 4evaluation metric is necessary in XAI. + We suggest the following attributes can be used to\\n\\nevaluate explanations. + However, the relative importance of each attribute may depend on\\n\\nthe application + - actionability may not be as important as faithfulness when evaluating the\\n\\ninterpretability + of a static physics based model. Therefore, one can select relative importance\\n\\nof + each attribute based on the application.\\n\\n\\n \u2022 Actionable. Is it + clear how we could change the input features to modify the output?\\n\\n\\n + \ \u2022 Complete. Does the explanation completely account for the prediction? + Did features\\n\\n not included in the explanation really contribute zero + effect to the prediction?44\\n\\n\\n \u2022 Correct. Does the explanation + agree with hypothesized or known underlying physical\\n\\n mechanism?39\\n\\n\\n + \ \u2022 Domain Applicable. Does the explanation use language and concepts + of domain ex-\\n\\n perts?\\n\\n\\n \u2022 Fidelity/Faithful. Does the + explanation agree with the black box model?\\n\\n\\n \u2022 Robust. Does the + explanation change significantly with small changes to the model or\\n\\n instance + being explained?\\n\\n\\n \u2022 Sparse/Succinct. Is the explanation succinct?\\n\\n\\n + \ We present an example evaluation of the SHAP explanation method based on the + above\\n\\nattributes.44 Shapley values were proposed as a local explanation + method based on feature\\n\\nattribution, as they offer a complete explanation + - each feature i\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate + connection: + - keep-alive + content-length: + - "6068" + content-type: + - application/json + host: + - api.openai.com + user-agent: + - AsyncOpenAI/Python 1.99.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - async:asyncio + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.99.0 + x-stainless-raw-response: + - "true" + x-stainless-read-timeout: + - "60.0" + x-stainless-retry-count: + - "0" + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.13.5 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + H4sIAAAAAAAAAwAAAP//jFRNbyM3DL37VxA6bYCxETvObptbkCzQoNtLi263qBcGLXFmmGgkReQY + MYL890Izju20KdCL4dHjIx8/nycAhp25AmNbVNslP72Z/0yL2/vHx5tf6OvNvN3+Pv/tT/vT4tf7 + 5vHBVIURN/dk9ZU1s7FLnpRjGGGbCZWK1/mny+Xy4uLTYjEAXXTkC61JOl3G6eJ8sZzO59PF+Z7Y + RrYk5gr+mgAAPA+/RWJw9GSu4Lx6felIBBsyVwcjAJOjLy8GRVgUg5rqCNoYlMKg+nkVAFZG+q7D + vFuZK1iZb9d3FcQMn5+SRw648QTXWblmy+jhLih5zw0FSxVkqikLaISOtI1OAIMDJdsGfuxJQFtU + 6PCBQFsCR5aFY5h2+MChgZSjJRESiDVc38FQF6kgYVa2vcfsd+CIEnjCHArlw+2Xs4MdB6WcMumg + soTug6NcUnblaQZ/tOwJbr/sKYCZINZKAVpuWr8DtLbPqFQVgbsB111ii97vwJPI2yAz+HZ9B+hc + HnVrywKa0dE01jVsdlBzFgVHW/IxFcWvEQ4SSoVaCsVLwakUOmAZm6GS2hJnSJkc2+FxNvbi1STl + uGVHMPTxSQd/Fvuipo5viBXEuqZcgnAQblodshlCjJXyuwJ2ZFsMLJ2M6b320mKADRVKLnwLHzY9 + ez36GDI6K9NCTwebFEWnbbRnM/i8Rd+jlhjFL4dt9FsSQNXMm15JwPMDAQ56ccOedVfBfo8okEj5 + ypmsjh8udsgBMCXP9kCo2dH4L8dNL3vbUhjpreUwsmcrU40Dn8nTFoOltdiYaRz8+fkB74Xcmjts + SApWoxdahZfTLcpU94JliUPv/QmAIUQdW1X29/seeTlsrI9NynEj/6CamgNLu86EEkPZTtGYzIC+ + TAC+D5ehf7PsJuXYJV1rfKAh3Hz+w8Xo0ByP0Ql8+XGPalT0J8DFxY/VOy7XjhTZy8l5MRZtS+7I + Pd4i7B3HE2Bykvi/9bzne0yeQ/N/3B8BaykpufVx9t8zy1Su9X+ZHQo9CDZCecuW1sqUSzMc1dj7 + 8ZAa2YlSt645NOU08HhN67RezD/Sx8ulXTozeZn8DQAA//8DAJyKU79WBgAA + headers: + CF-RAY: + - 96a9ce2ced03ebeb-SJC + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 05 Aug 2025 22:42:04 GMT + Server: + - cloudflare + Set-Cookie: + - __cf_bm=Ao4.bFekaMHZs0qHg2NcrFkr8ds9FPDg.ROO2KgeA5s-1754433724-1.0.1.1-5HxqUhRoCho87R8bwnpAsuu.EseYUqUjpUyAzMp2S9bJcoB.q8lpJXeMVXmxInuvKmS8HS9L8WshHQJ.yz_O7uQ5fSeOzFpGrH7e6HdGZpo; + path=/; expires=Tue, 05-Aug-25 23:12:04 GMT; domain=.api.openai.com; HttpOnly; + Secure; SameSite=None + - _cfuvid=U2MHkB.IkW00CVRIQAHncWEyRE8Sa7JrHQc.8RRgdW0-1754433724180-0.0.1.1-604800000; + path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + access-control-expose-headers: + - X-Request-ID + alt-svc: + - h3=":443"; ma=86400 + cf-cache-status: + - DYNAMIC + openai-organization: + - future-house-xr4tdh + openai-processing-ms: + - "1721" + openai-project: + - proj_RpeV6PrPclPHBb5GlExPXSBj + openai-version: + - "2020-10-01" + x-envoy-upstream-service-time: + - "1729" + x-ratelimit-limit-requests: + - "10000" + x-ratelimit-limit-tokens: + - "30000000" + x-ratelimit-remaining-requests: + - "9999" + x-ratelimit-remaining-tokens: + - "29998551" + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 2ms + x-request-id: + - req_1c6cef109b4348f0b9edbc485a260afd status: code: 200 message: OK @@ -3487,11 +3677,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 25-28: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n2021, + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 25-28: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n2021, 25, 1315\u20131360.\\n\\n\\n (9) Wellawatte, G. P.; Seshadri, A.; White, A. D. Model agnostic generation of counter-\\n\\n factual explanations for molecules. Chemical Science 2022, 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. @@ -3558,7 +3751,7 @@ interactions: Ribeiro, M. T.; Singh, S.; Guestrin, C. \u201D Why should i trust you?\u201D Explaining the\\n\\n predictions of any classifier. Proceedings of the 22nd ACM SIGKDD international\\n\\n\\n 27 conference - on knowledge discovery and data \\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + on knowledge discovery and data \\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3567,13 +3760,13 @@ interactions: connection: - keep-alive content-length: - - "5833" + - "6109" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3583,7 +3776,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3599,25 +3792,24 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//dFTfb9tGDH73X0HoYWkB2bDdpkbz5mHpYAxB1+5XgLkwmBMlMTndaSTl - 2Avyvw8nObHTtS+CcN/xu4/kRz6MADIusgvIXI3mmtaPf9xflXg7v/3l/urjb/sPC/nzr9u6uPz0 - 2Re78yxPEfHmlpw9RU1cbFpPxjEMsBNCo8Q6W5y/Wczfnc/nPdDEgnwKq1obv43j+XT+djybjefT - Q2Ad2ZFmF/D3CADgof8miaGgXXYB0/zppCFVrCi7eL4EkEn06SRDVVbDYFl+BF0MRqFX/bAOAOtM - u6ZB2a+zC1hnl7vWIwe88QRLMS7ZMXpYBSPvuaLgCF5dL1evQagkUbAIDVkdCwUMBRi5OvA/HSlw - ADwy8CmD1WjQ4F36IyjIsXIM4wbvOFTQSnSkSgqxhOUKdK9GjYIJBm1RKFje80krZElq3r/dhYIk - JVz08i1C3TUYdAK/1wS0cyStDbqTCgWlLQl6uI9yp4Mo2rU+CsH1cgUuBketaXrM+a5I2tgUCio5 - cGq05k/J54Bt69nh4TjpcTV6T6EincCHKMAhiXOUw1KEyRDIAP0EXs2ns/evU95bLggQkpWEagrK - W4K4Jdky3adyXC9Xp3IMdzHEhmmofmzbKNYlcaRQRgEhbWNQ7vu5msBHq0mGhHPQztWAKfOoBDd7 - uOqkiK7+Sldi/rkLIT34AyxrPAA5FKyuU33ZDGjQ1RwIPKH0QYngp+XnX5dn2he2lVgJNnmvjpzx - lvy+75ISqHVFUk9NW6Pyv4NHuEmZpeqlKph0ajmUyBJID+VG52IXDG/Ys+2T/Y7eyQE9V72Ye7Ya - hKrOo0XZQynY0OAAzwdHXv5xpnAmXNWWbJRMgaFv7eRsneXD3Ah52iZFG3VRKM3PbLoOj6fTJlR2 - imnYQ+f9CYAhRBvMkub8ywF5fJ5sH6tW4o1+FZol62m9EUKNIU2xWmyzHn0cAXzpN0j3YilkrcSm - tY3FO+qfm52/XwyE2XFpncCLtwfUoqE/BRaz/BuUm4IM2evJGsocupqK0zffvHtOAruC4xGbjk5y - /7+kb9EP+XOoTli+S38EXBpoKjatUMHuZdrHa0JpsX/v2nOte8GZpuF0tDEmSf0oqMTODzs3G+y3 - KTlUaUC4X7ypn6PH0X8AAAD//wMAvUSTLHYGAAA= + H4sIAAAAAAAAAwAAAP//dFRNb+M2EL37Vwx42gKyYTu2dze3oCgKIz0UaA8L1At7Qo6kWVOkwhk5 + cYP89wUlx3a72YtE8M3Hmxm+eRkBGHbmFoytUW3T+vGvs3uaf/5jRfH3T9r8eV9/vq/+fmwfl/8+ + /rU2RfaID9/I6pvXxMam9aQcwwDbRKiUo84+LheLm5uP83kPNNGRz25Vq+NFHM+n88V4NhvPpyfH + OrIlMbfwzwgA4KX/ZorB0bO5hWnxdtOQCFZkbs9GACZFn28MirAoBjXFBbQxKIWe9W63+yYxbMLL + JgBsjHRNg+m4MbewMb89tx454IMnuEvKJVtGD+ug5D1XFCzBhy93618gUUlJQCM0pHV0AhgcKNk6 + 8GNHAhzgbg1ao0KDewKtCRxZFo5h3OCeQwVtipZESCCW2VqOotQIaMIgLSYKWgAHpdQm0syq6NN0 + wVHKRbqeqUaouwaDTGCtgNz0vNoUD+wIOAhXtWZG2TA+5Uz9NAQwJT4QoGZ6nKBN5NjmaQrEdOYr + BVCQLmXOmjrRAtDa2AXFB/asx4FWiZwCiUzgy90aWMCx2E6EXO7GARPHTqCfxbNKrsz6zuWgrP29 + pTbfKz7HEBsmKcDW6D2FKp9zDmxbzxYHihygZPJOwPOewNbUsGg6ZrqUquNbQwfXRFXnUWM6Qpmw + oaeY9jKBezpCf8zheuI9LQLRznGeTRjaNcYqRFG2QPmZhIFEAdKlFCtUOnX11IxzCihjgkTSxiDc + v6x1ASjwRN7nv3TpQEc5cTwwPfU5c09i28akXWDNRLLBpR+TjSmGJ5zI0wGDpa3YmGh4yrPpGe+E + 3JYbrEgyVqIX2oTXTdjtdtcqSVR2glmkofP+CsAQog7lZn1+PSGvZ0X6WLUpPsj/XE3JgaXeJkKJ + IatPNLamR19HAF975Xf/EbNpU2xa3WrcU59utlouh4Dmsmyu4OXshGpU9FfAp+mqeCfk1pEie7la + H8aircldB71ZnYvAznG8YNPRVe0/Unov/FA/h+oqyk/DXwCb9UBue1Hle2aJ8kL+mdm51z1hI5QO + bGmrTCnPw1GJnR92pRnUsi05VHnj8LAwy3Y7n61otVzYhTOj19F3AAAA//8DAELQ0Gg5BgAA headers: CF-RAY: - - 96665c8ace4d4705-SJC + - 96a9ce2cfae49e53-SJC Connection: - keep-alive Content-Encoding: @@ -3625,14 +3817,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:24 GMT + - Tue, 05 Aug 2025 22:42:04 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=SBwPH6wNVhgwcqUjORsl6rhewNnrY3T4HbKxvSVw0SU-1753726524-1.0.1.1-0jaFk7Erch_bdzGebSJIlLZqthCtyBJOfSt6Dj_q_.8jVDNn4fRAlj_nhsYsVlIKEB1ygPlEn61VANv4weIhnEDdjPcAQKFQLHSQ436YwQI; - path=/; expires=Mon, 28-Jul-25 18:45:24 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=ltPsMkn9KfWM4YvYJzY1DQqq76.CDNVvYubJpDIW7z8-1754433724-1.0.1.1-AAw3HGY69C92dgvcRfxxGXo7qGXnonLl7gauPyRHnFqG7GdeSLAghRgE9H6cnnV1H1b3kcDWPcUcLIBF7KwZcXnRIEnk.QXRtrLhVAVKkA0; + path=/; expires=Tue, 05-Aug-25 23:12:04 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=0ZpgjodlTFvuaj8a0mlqcisBTY.shk8fzLyQOCj_Yhs-1753726524682-0.0.1.1-604800000; + - _cfuvid=SziLy9nugCW2ArgvrqnwhYQtYXdxAVQDjA8d2nFnXuk-1754433724185-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -3647,7 +3839,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2544" + - "1694" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3655,7 +3847,7 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2549" + - "1700" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -3663,13 +3855,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998614" + - "29998547" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_4d87a34beb214789412137cee164731b + - req_c28ecf16228a58acb9c96b5193e3df48 status: code: 200 message: OK @@ -3677,76 +3869,79 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 3-5: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n - a passive characteristic of a model, whereas explainability\\n\\nis an active - characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, - an explanation is extra information that gives the context and a cause for one - or\\n\\nmore predictions.29 We adopt the same nomenclature in this perspective.\\n\\n - \ Accuracy and interpretability are two attractive characteristics of DL models. - However,\\n\\nDL models are often highly accurate and less interpretable.28,30 - XAI provides a way to avoid\\n\\nthat trade-off in chemical property prediction. - XAI can be viewed as a two-step process.\\n\\nFirst, we develop an accurate - but uninterpretable DL model. Next, we add explanations to\\n\\npredictions. - Ideally, if the DL model has correctly learned the input-output relations, then\\n\\nthe - explanations should give insight into the underlying mechanism.\\n\\n In the - remainder of this article, we review recent approaches for XAI of chemical property\\n\\nprediction - while drawing specific examples from our recent XAI work.9,10,31 We show how\\n\\nin - various systems these methods yield explanations that are consistent with known - and\\n\\nmechanisms in structure-property relationships.\\n\\n\\n\\n\\n\\n 3Theory\\n\\n\\nIn - this work, we aim to assemble a common taxonomy for the landscape of XAI while\\n\\nproviding - our perspectives. We utilized the vocabulary proposed by Das and Rad 32 to classify\\n\\nXAI. - According to their classification, interpretations can be categorized as global - or local\\n\\ninterpretations on the basis of \u201Cwhat is being explained?\u201D. - For example, counterfactuals are\\n\\nlocal interpretations, as these can explain - only a given instance. The second classification is\\n\\nbased on the relation - between the model and the interpretation \u2013 is interpretability post-hoc\\n\\n(extrinsic) - or intrinsic to the model?.32,33 An intrinsic XAI method is part of the model\\n\\nand - is self-explanatory32 These are also referred to as white-box models to contrast - them\\n\\nwith non-interpretable black box models.28 An extrinsic method is - one that can be applied\\n\\npost-training to any model.33 Post-hoc methods - found in the literature focus on interpreting\\n\\nmodels through 1) training - data34 and feature attribution,35 2) surrogate models10 and, 3)\\n\\ncounterfactual9 - or contrastive explanations.36\\n\\n Often, what is a \u201Cgood\u201D explanation - and what are the required components of an ex-\\n\\nplanation are debated.32,37,38 - Palacio et al. 29 state that the lack of a standard framework\\n\\nhas caused - the inability to evaluate the interpretability of a model. In physical sciences,\\n\\nwe - may instead consider if the explanations somehow reflect and expand our understanding\\n\\nof - physical phenomena. For example, Oviedo et al. 39 propose that a model explanation\\n\\ncan - be evaluated by considering its agreement with physical observations, which - they term\\n\\n\u201Ccorrectness.\u201D For example, if an explanation suggests - that polarity affects solubility of a\\n\\nmolecule, and the experimental evidence - strengthen the hypothesis, then the explanation\\n\\nis assumed \u201Ccorrect\u201D. - In instances where such mechanistic knowledge is sparse, expert bi-\\n\\nases - and subjectivity can be used to measure the correctness.40 Other similar metrics - of\\n\\ncorrectness such as \u201Cexplanation satisfaction scale\u201D can be - found in the literature.41,42 In a\\n\\nrecent study, Humer et al. 43 introduced - CIME an interactive web-based tool that allows the\\n\\nusers to inspect model - explanations. The aim of this study is to bridge the gap between\\n\\nanalysis - of XAI methods. Based on the above discussion, we identify that an agreed upon\\n\\n\\n - \ 4evaluation metric is necessary in XAI. - We suggest the following attributes can be used to\\n\\nevaluate explanations. - However, the relative importance of each attribute may depend on\\n\\nthe application - - actionability may not be as important as faithfulness when evaluating the\\n\\ninterpretability - of a static physics based model. Therefore, one can select relative importance\\n\\nof - each attribute based on the application.\\n\\n\\n \u2022 Actionable. Is it - clear how we could change the input features to modify the output?\\n\\n\\n - \ \u2022 Complete. Does the explanation completely account for the prediction? - Did features\\n\\n not included in the explanation really contribute zero - effect to the prediction?44\\n\\n\\n \u2022 Correct. Does the explanation - agree with hypothesized or known underlying physical\\n\\n mechanism?39\\n\\n\\n - \ \u2022 Domain Applicable. Does the explanation use language and concepts - of domain ex-\\n\\n perts?\\n\\n\\n \u2022 Fidelity/Faithful. Does the - explanation agree with the black box model?\\n\\n\\n \u2022 Robust. Does the - explanation change significantly with small changes to the model or\\n\\n instance - being explained?\\n\\n\\n \u2022 Sparse/Succinct. Is the explanation succinct?\\n\\n\\n - \ We present an example evaluation of the SHAP explanation method based on the - above\\n\\nattributes.44 Shapley values were proposed as a local explanation - method based on feature\\n\\nattribution, as they offer a complete explanation - - each feature i\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 20-22: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nnal + molecule. The counterfactual indicates\\nstructural changes to ethyl benzoate + that would result in the model predicting the molecule\\nto not contain the + \u2018fruity\u2019 scent. The Tanimoto96 similarity between the counterfactual + and\\n2,4 decadienal is also provided. Republished with permission from authors.31\\n\\n\\n + \ The molecule 2,4-decadienal, which is known to have a \u2018fatty\u2019 scent, + is analyzed in Fig-\\n\\nure 5.142,143 The resulting counterfactual, which has + a shorter carbon chain and no carbonyl\\n\\ngroups, highlights the influence + of these structural features on the \u2018fatty\u2019 scent of 2,4 deca-\\n\\ndienal. + To generalize to other molecules, Seshadri et al. 31 applied the descriptor + attribution\\n\\nmethod to obtain global explanations for the scents. The global + explanation for the \u2018fatty\u2019\\n\\nscent was generated by gathering + chemical spaces around many \u2018fatty\u2019 scented molecules.\\n\\nThe resulting + natural language explanation is: \u201CThe molecular property \u201Cfatty scent\u201D + can\\n\\nbe explained by the presence of a heptanyl fragment, two CH2 groups + separated by four\\n\\n\\n 20bonds, and + a C=O double bond, as well as the lack of more than one or two O atoms.\u201D31\\n\\nThe + importance of a heptanyl fragment aligns with that reported in the literature, + as \u2018fatty\u2019\\n\\nmolecules often have a long carbon chain.144 Furthermore, + the importance of a C=O dou-\\n\\nble bond is supported by the findings reported + by Licon et al. 145, where in addition to a\\n\\n\u201Clarger carbon-chain skeleton\u201D, + they found that \u2018fatty\u2019 molecules also had \u201Caldehyde or acid\\n\\nfunctions\u201D.145 + For the \u2018pineapple\u2019 scent, the following natural language explanation + was ob-\\n\\ntained: \u201CThe molecular property \u201Cpineapple scent\u201D + can be explained by the presence of ester,\\n\\nethyl/ether O group, alkene/ether + O group, and C=O double bond, as well as the absence of\\n\\nan Aromatic atom.\u201D31 + Esters, such as ethyl 2-methylbutyrate, are present in many pineap-\\n\\nple + volatile compounds.146,147 The combination of a C=O double bond with an ether + could\\n\\nalso correspond to an ester group. Additionally, aldehydes and ketones, + which contain C=O\\n\\ndouble bonds, are also common in pineapple volatile compounds.146,148\\n\\n\\nDiscussion\\n\\n\\nWe + have shown two post-hoc XAI applications based on molecular counterfactual expla-\\n\\nnations9 + and descriptor explanations.10 These methods can be used to explain black-box\\n\\nmodels + whose input is a molecule. These two methods can be applied for both classification\\n\\nand + regression tasks. Note that the \u201Ccorrectness\u201D of the explanations + strongly depends on\\n\\nthe accuracy of the black-box model.\\n\\n A molecular + counterfactual is one with a minimal distance from a base molecular, but\\n\\nwith + contrasting chemical properties. In the above examples, we used Tanimoto similar-\\n\\nity96 + of ECFP4 fingreprints97 as distance, although this should be explored in the + future.\\n\\nCounterfactual explanations are useful because they are represented + as chemical structures\\n\\n(familiar to domain experts), sparse, and are actionable. + A few other popular examples of\\n\\ncounterfactual on graph methods are GNNExplainer, + MEG and CF-GNNExplainer.69,104,105\\n\\n The descriptor explanation method + developed by Gandhi and White 10 fits a self-explaining\\n\\n\\n\\n 21surrogate + model to explain the black-box model. This is similar to the GraphLIME87 method,\\n\\nalthough + we have the flexibility to use explanation features other than subgraphs. Futher-\\n\\nmore, + we show that natural language combined with chemical descriptor attributions + can\\n\\ncreate explanations useful for chemists, thus enhancing the accessibility + of DL in chemistry.\\n\\nLastly, we examined if XAI can be used beyond interpretation. + Work by Seshadri et al. 31 use\\n\\nMMACE and surrogate model explanations to + analyze the structure-property relationships\\n\\nof scent. They recovered known + structure-property relationships for molecular scent purely\\n\\nfrom explanations, + demonstrating the usefulness of a two step process: fit an accurate model\\n\\nand + then explain it.\\n\\n Choosing among the plethora of XAI methods described + here is still an open question.\\n\\nIt remains to be seen if there will ever + be a consensus benchmark, since this field sits on\\n\\nthe intersection of + human-machine interaction, machine learning, and philosophy (i.e., what\\n\\nconstitutes + an explanation?). Our current advice is to consider first the audience \u2013 + domain\\n\\nexperts or ML experts or non-experts \u2013 and what the explanations + should accomplish. Are\\n\\nthey meant to inform data selection or model building, + how a prediction is used, or how the\\n\\nfeatures can be changed to affect + the outcome. The second consideration is what access you\\n\\nhave to the underlying + model. The ability to have model derivatives or propagate gradients\\n\\nto + the input to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe + should seek to explain molecular property prediction models because users are + more\\n\\nlikely to trust explained predictions, and explanations can help assess + if the model is learning\\n\\nt\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3755,13 +3950,13 @@ interactions: connection: - keep-alive content-length: - - "5792" + - "6087" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3771,7 +3966,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3787,24 +3982,24 @@ interactions: response: body: string: !!binary | - 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 + cPlQBgAA headers: CF-RAY: - - 96665c8adc875c18-SJC + - 96a9ce2cefd1fab6-SJC Connection: - keep-alive Content-Encoding: @@ -3812,15 +4007,17 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:25 GMT + - Tue, 05 Aug 2025 22:42:04 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=2Ra8VgCBGKwIGuC_frPBbWj7C8CcaBrMSkw.nFuQ0n0-1753726525-1.0.1.1-PpyAr4EPYhgbqj.8OeehfQgHQ_0VEEGygMh7fYrvwk8Z2l0eA2M6cHmRz7RVXPhikHypC9_NH4vSeZvMi.7GaBqhwUUpOUtSZuo2Pjgs2K8; - path=/; expires=Mon, 28-Jul-25 18:45:25 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=q7e4lQ_.2k0jDu4HDKoI1REK_l_MWlK_cZh3HVCUQ2Y-1754433724-1.0.1.1-6obqp5LZQASM0p1fE0Lps6Vr1vNJcloImZN1CB6V.uLxyQjmZ7uakjmyyqSM9CMe0MQtYjGebmtnUpDWm_ybPCPQUvWUxECWKcF5_onzp6c; + path=/; expires=Tue, 05-Aug-25 23:12:04 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=XKOmb7iV_hkoED7v_kPk1YRbbH1vITaB81RgNewigiE-1753726525138-0.0.1.1-604800000; + - _cfuvid=j9yWcbQNyWgmbnxS1tFlbRVGBoeQe8B0Tjvs0lHlilg-1754433724285-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -3834,29 +4031,27 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2988" + - "1819" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2994" + - "1822" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: - "30000000" x-ratelimit-remaining-requests: - - "9997" + - "9999" x-ratelimit-remaining-tokens: - - "29997881" + - "29998544" x-ratelimit-reset-requests: - - 13ms + - 6ms x-ratelimit-reset-tokens: - - 4ms + - 2ms x-request-id: - - req_11be38ecfd9daa05cab103989b8617c4 + - req_b0240f06c7f44b0381d86b40495c6b88 status: code: 200 message: OK @@ -3864,11 +4059,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 1-3: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 1-3: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n A Perspective on Explanations of Molecular\\n\\n Prediction Models\\n\\n\\nGeemi P. Wellawatte,\u2020 Heta A. Gandhi,\u2021 Aditi Seshadri,\u2021 and Andrew\\n\\n \ D. White\u2217,\u2021\\n\\n\\n \u2020Department @@ -3935,7 +4133,7 @@ interactions: a passive characteristic of a model, whereas explainability\\n\\nis an active characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, an explanation is extra information that gives the context and a cause for one - or\\n\\nmore \\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + or\\n\\nmore \\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3944,13 +4142,13 @@ interactions: connection: - keep-alive content-length: - - "5817" + - "6093" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3960,7 +4158,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3976,24 +4174,24 @@ interactions: response: body: string: !!binary | - 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 + mXwHAAD//wMAr1Wm8S0GAAA= headers: CF-RAY: - - 96665c8adff467e2-SJC + - 96a9ce2cfb19fa22-SJC Connection: - keep-alive Content-Encoding: @@ -4001,14 +4199,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:26 GMT + - Tue, 05 Aug 2025 22:42:04 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=4xbqp0qWQq_NT0B1QSbzakUqOSQZbm82t80QDt6cCkg-1753726526-1.0.1.1-fEApRDGmR5i6Vf5IH2KT89wm8cMcifZNddRjFl9axBPtLEutkRV4ag3nOwUyijybBU3Qzx4QbbgXYQA5_i2Y2x2JuMrNoYL7GA5BPv.pk1c; - path=/; expires=Mon, 28-Jul-25 18:45:26 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=_zoCzvLouYnDsNEuX0LImAKvJ6s0VfyMUzW3TWDEDaU-1754433724-1.0.1.1-NC8XprWP8kA.dYwncT4m0JZwEIJkzAksT6iHoL7Uqxk6A.yQqgeY2g0GFGR.avs3MmadnaygUoDU7EE.tiSWXyFM1u03sY3xeqZSePo21sk; + path=/; expires=Tue, 05-Aug-25 23:12:04 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=V8vDJcJ1ezAw_snRLxvXL5v_cMV__JegPt67i60DbyA-1753726526587-0.0.1.1-604800000; + - _cfuvid=.9IJ279Ez7Jfu6Rc2MbhT48.2Yo_xNOabINSFRzcAvA-1754433724934-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -4023,7 +4221,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4302" + - "2458" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -4031,7 +4229,7 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "4437" + - "2461" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4039,13 +4237,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998613" + - "29998544" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_cb56755a22f46dd21f810f69277e274a + - req_049499c3f5259c550aa71fd7ba0c0353 status: code: 200 message: OK @@ -4053,76 +4251,78 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 20-22: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nnal - molecule. The counterfactual indicates\\nstructural changes to ethyl benzoate - that would result in the model predicting the molecule\\nto not contain the - \u2018fruity\u2019 scent. The Tanimoto96 similarity between the counterfactual - and\\n2,4 decadienal is also provided. Republished with permission from authors.31\\n\\n\\n - \ The molecule 2,4-decadienal, which is known to have a \u2018fatty\u2019 scent, - is analyzed in Fig-\\n\\nure 5.142,143 The resulting counterfactual, which has - a shorter carbon chain and no carbonyl\\n\\ngroups, highlights the influence - of these structural features on the \u2018fatty\u2019 scent of 2,4 deca-\\n\\ndienal. - To generalize to other molecules, Seshadri et al. 31 applied the descriptor - attribution\\n\\nmethod to obtain global explanations for the scents. The global - explanation for the \u2018fatty\u2019\\n\\nscent was generated by gathering - chemical spaces around many \u2018fatty\u2019 scented molecules.\\n\\nThe resulting - natural language explanation is: \u201CThe molecular property \u201Cfatty scent\u201D - can\\n\\nbe explained by the presence of a heptanyl fragment, two CH2 groups - separated by four\\n\\n\\n 20bonds, and - a C=O double bond, as well as the lack of more than one or two O atoms.\u201D31\\n\\nThe - importance of a heptanyl fragment aligns with that reported in the literature, - as \u2018fatty\u2019\\n\\nmolecules often have a long carbon chain.144 Furthermore, - the importance of a C=O dou-\\n\\nble bond is supported by the findings reported - by Licon et al. 145, where in addition to a\\n\\n\u201Clarger carbon-chain skeleton\u201D, - they found that \u2018fatty\u2019 molecules also had \u201Caldehyde or acid\\n\\nfunctions\u201D.145 - For the \u2018pineapple\u2019 scent, the following natural language explanation - was ob-\\n\\ntained: \u201CThe molecular property \u201Cpineapple scent\u201D - can be explained by the presence of ester,\\n\\nethyl/ether O group, alkene/ether - O group, and C=O double bond, as well as the absence of\\n\\nan Aromatic atom.\u201D31 - Esters, such as ethyl 2-methylbutyrate, are present in many pineap-\\n\\nple - volatile compounds.146,147 The combination of a C=O double bond with an ether - could\\n\\nalso correspond to an ester group. Additionally, aldehydes and ketones, - which contain C=O\\n\\ndouble bonds, are also common in pineapple volatile compounds.146,148\\n\\n\\nDiscussion\\n\\n\\nWe - have shown two post-hoc XAI applications based on molecular counterfactual expla-\\n\\nnations9 - and descriptor explanations.10 These methods can be used to explain black-box\\n\\nmodels - whose input is a molecule. These two methods can be applied for both classification\\n\\nand - regression tasks. Note that the \u201Ccorrectness\u201D of the explanations - strongly depends on\\n\\nthe accuracy of the black-box model.\\n\\n A molecular - counterfactual is one with a minimal distance from a base molecular, but\\n\\nwith - contrasting chemical properties. In the above examples, we used Tanimoto similar-\\n\\nity96 - of ECFP4 fingreprints97 as distance, although this should be explored in the - future.\\n\\nCounterfactual explanations are useful because they are represented - as chemical structures\\n\\n(familiar to domain experts), sparse, and are actionable. - A few other popular examples of\\n\\ncounterfactual on graph methods are GNNExplainer, - MEG and CF-GNNExplainer.69,104,105\\n\\n The descriptor explanation method - developed by Gandhi and White 10 fits a self-explaining\\n\\n\\n\\n 21surrogate - model to explain the black-box model. This is similar to the GraphLIME87 method,\\n\\nalthough - we have the flexibility to use explanation features other than subgraphs. Futher-\\n\\nmore, - we show that natural language combined with chemical descriptor attributions - can\\n\\ncreate explanations useful for chemists, thus enhancing the accessibility - of DL in chemistry.\\n\\nLastly, we examined if XAI can be used beyond interpretation. - Work by Seshadri et al. 31 use\\n\\nMMACE and surrogate model explanations to - analyze the structure-property relationships\\n\\nof scent. They recovered known - structure-property relationships for molecular scent purely\\n\\nfrom explanations, - demonstrating the usefulness of a two step process: fit an accurate model\\n\\nand - then explain it.\\n\\n Choosing among the plethora of XAI methods described - here is still an open question.\\n\\nIt remains to be seen if there will ever - be a consensus benchmark, since this field sits on\\n\\nthe intersection of - human-machine interaction, machine learning, and philosophy (i.e., what\\n\\nconstitutes - an explanation?). Our current advice is to consider first the audience \u2013 - domain\\n\\nexperts or ML experts or non-experts \u2013 and what the explanations - should accomplish. Are\\n\\nthey meant to inform data selection or model building, - how a prediction is used, or how the\\n\\nfeatures can be changed to affect - the outcome. The second consideration is what access you\\n\\nhave to the underlying - model. The ability to have model derivatives or propagate gradients\\n\\nto - the input to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe - should seek to explain molecular property prediction models because users are - more\\n\\nlikely to trust explained predictions, and explanations can help assess - if the model is learning\\n\\nt\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 12-14: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nnterfactual + approach, contrastive approach employ a dual\\n\\noptimization method, which + works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. + Contrastive explanations can interpret the model by identifying contribution + of\\n\\npresence and absence of subsets of features towards a certain prediction.36,99\\n\\n + \ A counterfactual x\u2032 of an instance x is one with a dissimilar prediction + \u02C6f(x) in classi-\\n\\nfication tasks. As shown in equation 5, counterfactual + generation can be thought of as a\\n\\nconstrained optimization problem which + minimizes the vector distance d(x, x\u2032) between the\\n\\nfeatures.9,100\\n\\n\\n + \ minimize d(x, x\u2032)\\n (5)\\n + \ such that \u02C6f(x) \u0338= \u02C6f(x\u2032)\\n\\n + \ For regression tasks, equation 6 adapted from equation 5 can be used. Here, + a counter-\\n\\nfactual is one with a defined increase or decrease in the prediction.\\n\\n\\n + \ minimize d(x, x\u2032)\\n (6)\\n + \ such that \u02C6f(x) \u2212\u02C6f(x\u2032) \u2265\u2206\\n\\n + \ Counterfactuals explanations have become a useful tool for XAI in chemistry, + as they\\n\\nprovide intuitive understanding of predictions and are able to + uncover spurious relationships\\n\\nin training data.101 Counterfactuals create + local (instance-level), actionable explanations.\\n\\nActionability of an explanation + suggest which features can be altered to change the outcome.\\n\\nFor example, + changing a hydrophobic functional group in a molecule to a hydrophilic group\\n\\nto + increase solubility.\\n\\n Counterfactual generation is a demanding task as + it requires gradient optimization over\\n\\ndiscrete features that represents + a molecule. Recent work by Fu et al. 102 and Shen et al. 103\\n\\npresent two + techniques which allow continuous gradient-based optimization. Although, these\\n\\nmethodologies + are shown to circumvent the issue of discrete molecular optimization, counter-\\n\\nfactual + explanation based model interpretation still remains unexplored compared to + other\\n\\n\\n\\n 12post-hoc methods.\\n\\n + \ CF-GNNExplainer104 is a counterfactual explanation generating method based + on GN-\\n\\nNExplainer69 for graph data. This method generate counterfactuals + by perturbing the input\\n\\ndata (removing edges in the graph), and keeping + account of perturbations which lead to\\n\\nchanges in the output. However, + this method is only applicable to graph-based models\\n\\nand can generate infeasible + molecular structures. Another related work by Numeroso and\\n\\nBacciu 105 focus + on generating counterfactual explanations for deep graph networks. Their\\n\\nmethod + MEG (Molecular counterfactual Explanation Generator) uses a reinforcement learn-\\n\\ning + based generator to create molecular counterfactuals (molecular graphs). While + this\\n\\nmethod is able to generate counterfactuals through a multi-objective + reinforcement learner,\\n\\nthis is not a universal approach and requires training + the generator for each task.\\n\\n Work by Wellawatte et al. 9 present a model + agnostic counterfactual generator MMACE\\n\\n(Molecular Model Agnostic Counterfactual + Explanations) which does not require training\\n\\nor computing gradients. This + method firstly populates a local chemical space through ran-\\n\\ndom string + mutations of SELFIES106 molecular representations using the STONED algo-\\n\\nrithm.107 + Next, the labels (predictions) of the molecules in the local space are generated\\n\\nusing + the model that needs to be explained. Finally, the counterfactuals are identified + and\\n\\nsorted by their similarities \u2013 Tanimoto distance96 between ECFP4 + fingerprints.97 Unlike the\\n\\nCF-GNNExplainer104 and MEG105 methods, the MMACE + algorithm ensures that generated\\n\\nmolecules are valid, owing to the surjective + property of SELFIES. Additionally, the MMACE\\n\\nmethod can be applied to both + regression and classification models. However, like most XAI\\n\\nmethods for + molecular prediction, MMACE does not account for the chemical stability of\\n\\npredicted + counterfactuals. To circumvent this drawback, Wellawatte et al. 9 propose an-\\n\\nother + approach, which identift counterfactuals through a similarity search on the + PubChem\\n\\ndatabase.108\\n\\n\\n\\n\\n\\n 13Similarity + to adjacent fields\\n\\n\\nTangential examples to counterfactual explanations + are adversarial training and matched\\n\\nmolecular pairs. Adversarial perturbations + are used during training to deceive the model\\n\\nto expose the vulnerabilities + of a model109,110 whereas counterfactuals are applied post-hoc.\\n\\nTherefore, + the main difference between adversarial and counterfactual examples are in the\\n\\napplication, + although both are derived from the same optimization problem.100 Grabocka\\n\\net + al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich + improves model robustness via exposure to adversarial examples. While there + are\\n\\nconceptual disparities, we note that\\n\\n------------\\n\\nQuestion: + What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4131,13 +4331,13 @@ interactions: connection: - keep-alive content-length: - - "5811" + - "6053" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4147,7 +4347,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4163,23 +4363,25 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA3xUTW/jRgy9+1cQc5YN20l2W9/Solgki2K3H4cU9cKgR5TEzWhGHXIcG0H+ezGS - P7TbpBcBmjd8fHwc8nkCYLg0KzC2QbVt56Y/HX6t8JP/7enhjw8fP9+7+9+bv7bN1cenz/v7B1Pk - iLD9SlZPUTMb2s6RcvADbCOhUmZdvL+5er98d7Nc9kAbSnI5rO50eh2my/nyerpYTJfzY2AT2JKY - Ffw9AQB47r9Zoi9pb1YwL04nLYlgTWZ1vgRgYnD5xKAIi6JXU1xAG7yS71U/rz3A2khqW4yHtVnB - 2jzc3hUQIvyy7xyyx60juI3KFVtGB3deyTmuyVsqIFJFUUADtKRNKAXQl6BkG8//JBJIQmUP4yOB - NgRdpJJt9kggVHB7B70ZAuyVYhdJ+4yZJvmSYpZf9kcaoEktepnBne+5+kr2mnna4MgmhxG6GDqK - ehhlKuAh5zkqdPxIo/s2pJy5QqsJHVAu2+MgMKsoSWzkTkP8Dot0ro4Gr2Dr0D5Ot2F/LGoGP/8P - O/tdcDuClj236EA0JqspogPboK+pNxZPWnsH0ClFYJVTeVSeKmaSAp4advSm5iQEkmIMNSqdjM+s - qpG3Sb9tjwaQjmzu/MivilBTJJnBnw0JnW0l36C3BBqTaAFoLYnwlh3roRj6qf3Pse3soQwtsj92 - xDbUsmg8wDb3Luy4ZF8D9mLOb2IImUZytEOvwF64blRma1MMj/kIWdqIDZHyo/5x7V/GExCpSoJ5 - AH1ybgSg90EHr/LsfTkiL+dpc6HuYtjKd6GmYs/SbCKhBJ8nSzR0pkdfJgBf+qlO3wyq6WJoO91o - eKQ+3WI5vx4IzWWRjOEfjqgGRTcCrq6WxSuUm5IU2cloNRiLtqFyFLu4WZ6LwFRyuGDzyaj2/0p6 - jX6on309YnmT/gJYS51Subk8vteuRcrL9q1rZ697wUYo7tjSRpli7kdJFSY37EEjB1FqNxX7Oq8c - 7pdh7ufkZfIvAAAA//8DACvbb6UKBgAA + H4sIAAAAAAAAAwAAAP//dFRNbxs3EL3rVwx4aQusBEmWE1c3QXBbo04uzcFFFQgUObuciktuyKEc + xfB/L8iVpXXjXPawbz7ee8OZpxGAIC2WIJSRrNrOjtezP3HxZfr3/cO9xYOdGX075/jXJ3u/vlmJ + Kmf43b+o+CVronzbWWTyrodVQMmYq87eXy8WV1fv54sCtF6jzWlNx+OFH8+n88V4NhvPp6dE40lh + FEv4ZwQA8FS+maLT+FUsYVq9/GkxRtmgWJ6DAETwNv8RMkaKLB2L6gIq7xhdYf20cQAbEVPbynDc + iCVsxO3XzkpycmcRVoGpJkXSwp1jtJYadArh54fV3S8QsMYQgT20yMbrCNJpYFTG0ZeEEdhIhlbu + EdggdAE1qexOH6hRUSTvxq3ck2ugC15hjBjB17C6g2JSBHKMoQvIhVFOTE5jyLJ0+cUeTGqlixNY + +5Sja6k4SQuYpTh5ahkQJOzxCOy9BXLwsLqrctcD6dxfFm65ZAXkcn2FY4sHzMGRGsMRdkcgjY6p + PuYUZaRrMHMEcl1iqFFyCi/SH32yGqRlDMWBouinCD5xl3gCnwxG/J5lgw5DfjjAJvjUGPAdU0vf + SszA4ApiUgZkhJZcDsicciNNPX3YIT8iuguvR0MWAV1MoWg+ScgKLvOZZGvOQ7W0R/jwYbW+Le6v + fxv//vHj6ZVgKIxTRJ1LtN6iSlaG4bAr8HWNpd3ZR3L51WQ7YIdGHsiH02iVP/SxsUuBfIoQ0Pbm + GOqK1VqynMAf/hEPGKqswFoscyhUz+KUwZaUtBBZ7sgSH19zVK9eS27USnKTjaj6tQho8ZBt3Ebl + A/br8esZzqK31MoGY4ZqaSNu3PNw1QLWKcq86S5ZOwCkc557VXnJP5+Q5/NaW990we/i/1JFTY6i + 2QaU0bu8wpF9Jwr6PAL4XM5HenURRBd82/GW/R5Lu9ns5qYvKC4XawBfX59Q9iztALhaXFVvlNxq + ZEk2Dm6QUFIZ1MOe1/OzCJk0+Qs2HQ20f0/prfK9fnLNoMoPy18ApbBj1NvL63wrLGC+6j8KO3td + CIuI4UAKt0wY8jw01jLZ/uCKeIyM7bYm1+QbRv3VrbvtfPYO310v1EKL0fPoPwAAAP//AwACSakn + fgYAAA== headers: CF-RAY: - - 96665c8ad96117ec-SJC + - 96a9ce393844ebeb-SJC Connection: - keep-alive Content-Encoding: @@ -4187,15 +4389,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:26 GMT + - Tue, 05 Aug 2025 22:42:06 GMT Server: - cloudflare - Set-Cookie: - - __cf_bm=lLHrFEkRvvydEzNYVFn.KIVzajWf8GfA.fMkuCqUQEo-1753726526-1.0.1.1-f4kahxHEawTUn36QmstUqVNZtpb7_5vL_blKcEmvAwb.tHewD8rBfHyUtHSuHKdmZXDkODbXgpVxhMpcao49wjX3pklksPR8VGxZFsp.gcw; - path=/; expires=Mon, 28-Jul-25 18:45:26 GMT; domain=.api.openai.com; HttpOnly; - Secure; SameSite=None - - _cfuvid=WPB2eW2btm_pxjZCr_8KhA6XH0HXhzZAwc534XC8lpY-1753726526704-0.0.1.1-604800000; - path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4209,15 +4407,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4574" + - "1767" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "4579" + - "1772" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4225,13 +4421,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998611" + - "29998553" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_48ec3071551302fabe02936850da29ef + - req_35a6811947ae40daaf409c7f9c637344 status: code: 200 message: OK @@ -4239,11 +4435,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 22-25: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nut + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 22-25: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nut to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe should seek to explain molecular property prediction models because users are more\\n\\nlikely to trust explained predictions, and explanations can help assess @@ -4309,7 +4508,7 @@ interactions: drug discovery.\\n\\n Molecular diversity 2021, 25, 1315\u20131360.\\n\\n\\n (9) Wellawatte, G. P.; Seshadri, A.; White, A. D. Model agnostic generation of counter-\\n\\n factual explanations for molecules. Chemical Science 2022, - 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. A.; White, A. D. Explaining structure-ac\\n\\n----\\n\\nQuestion: + 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. A.; White, A. D. Explaining structure-ac\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -4319,13 +4518,13 @@ interactions: connection: - keep-alive content-length: - - "5820" + - "6096" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4335,7 +4534,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4351,23 +4550,24 @@ interactions: response: body: string: !!binary | - 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 headers: CF-RAY: - - 96665c9b7e5d4705-SJC + - 96a9ce393bdd9e53-SJC Connection: - keep-alive Content-Encoding: @@ -4375,11 +4575,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:27 GMT + - Tue, 05 Aug 2025 22:42:06 GMT Server: - cloudflare - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4393,13 +4591,15 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2397" + - "2094" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2399" + - "2097" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4407,13 +4607,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998617" + - "29998549" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - 5189f953-a0bb-4b6b-9eb6-fbc1a9908793 + - req_f92dc52c9bd3020405836c0780b75536 status: code: 200 message: OK @@ -4421,11 +4621,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 14-16: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nsame + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":[{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,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\"}},{\"type\":\"text\",\"text\":\"Excerpt + from Wellawatte2023 pages 14-16: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nsame optimization problem.100 Grabocka\\n\\net al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich improves model robustness via exposure to adversarial examples. While there are\\n\\nconceptual disparities, @@ -4489,8 +4692,8 @@ interactions: solubility prediction is a classic cheminformatics regression challenge and is\\n\\nimportant for chemical process design, drug design and crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented and trained an RNN model in Keras - to predict solubilities (log\\n\\nmolarity) of small molecules.127 The AqS\\n\\n----\\n\\nQuestion: - What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + to predict solubilities (log\\n\\nmolarity) of small molecules.127 The AqS\\n\\n------------\\n\\nQuestion: + What is XAI?\\n\\n\"}]}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4499,13 +4702,13 @@ interactions: connection: - keep-alive content-length: - - "5773" + - "50812" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4515,7 +4718,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4531,24 +4734,24 @@ interactions: response: body: string: !!binary | - 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 + gy8AAAD//wMAUCWNowMGAAA= headers: CF-RAY: - - 96665c9eeab75c18-SJC + - 96a9ce393a81fab6-SJC Connection: - keep-alive Content-Encoding: @@ -4556,9 +4759,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:28 GMT + - Tue, 05 Aug 2025 22:42:07 GMT Server: - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4572,29 +4777,33 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2722" + - "2627" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2728" + - "2598" + x-ratelimit-limit-input-images: + - "250000" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: - "30000000" + x-ratelimit-remaining-input-images: + - "249999" x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998624" + - "29997791" + x-ratelimit-reset-input-images: + - 0s x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 4ms x-request-id: - - req_6ea7b5adbedcbd910186af8f429215cc + - req_795bd34f7ea04b76817038d9ee90421a status: code: 200 message: OK @@ -4602,77 +4811,81 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 16-20: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nssion - challenge and is\\n\\nimportant for chemical process design, drug design and - crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented - and trained an RNN model in Keras to predict solubilities (log\\n\\nmolarity) - of small molecules.127 The AqSolDB curated database137 was used to train the\\n\\nRNN - model.\\n\\n In this task, counterfactuals are based on equation 6. Figure - 3 illustrates the generated\\n\\nlocal chemical space and the top four counterfactuals. - Based on the counterfactuals, we ob-\\n\\nserve that the modifications to the - ester group and other heteroatoms play an important role\\n\\nin solubility. - These findings align with known experimental and basic chemical intuition.134\\n\\nFigure - 4 shows a quantitative measurement of how substructures are contributing to - the pre-\\n\\n\\n\\n 16Figure 2: Descriptor - explanations along with natural language explanation obtained for BBB\\npermeability - of Alprozolam molecule. The green and red bars show descriptors that influ-\\nence - predictions positively and negatively, respectively. Dotted yellow lines show - significance\\nthreshold (\u03B1 = 0.05) for the t-statistic. Molecular descriptors - show molecule-level proper-\\nties that are important for the prediction. ECFP - and MACCS descriptors indicate which\\nsubstructures influence model predictions. - MACCS explanations lead to text explanations\\nas shown. Republished from Ref.10 - with permission from authors. SMARTS annotations for\\nMACCS descriptors were - created using SMARTSviewer (smartsview.zbh.uni-hamburg.de,\\nCopyright: ZBH, - Center for Bioinformatics Hamburg) developed by Schomburg et al. 132.\\n\\n\\n\\n\\n\\n - \ 17diction. For example, we see that adding - acidic and basic groups as well as hydrogen bond\\n\\nacceptors, increases solubility. - Substructure importance from ECFP97 and MACCS138 de-\\n\\nscriptors indicate - that adding heteroatoms increases solubility, while adding rings structures\\n\\nmakes - the molecule less soluble. Although these are established hypotheses, it is - interesting\\n\\nto see they can be derived purely from the data via DL and - XAI.\\n\\n\\n\\n\\n\\nFigure 3: Generated chemical space for solubility prediction - using the RNN model. The\\nchemical space is a 2D projection of the pairwise - Tanimoto similarities of the local coun-\\nterfactuals. Each data point is colored - by solubility. Top 4 counterfactuals are shown here.\\nRepublished from Ref.9 - with permission from the Royal Society of Chemistry.\\n\\n\\n\\nGeneralizing - XAI \u2013 interpreting scent-structure relationships\\n\\n\\nIn this example, - we show how non-local structure-property relationships can be learned with\\n\\nXAI - across multiple molecules. Molecular scent prediction is a multi-label classification - task\\n\\nbecause a molecule can be described by more than one scent. For example, - the molecule\\n\\njasmone can be described as having \u2018jasmine,\u2019 \u2018woody,\u2019 - \u2018floral,\u2019 and \u2019herbal\u2019 scents.139 The\\n\\nscent-structure - relationship is not very well understood,140 although some relationships are\\n\\nknown. - \ For example, molecules with an ester functional group are often associated - with\\n\\n\\n 18Figure 4: Descriptor explanations - for solubility prediction model. The green and red bars\\nshow descriptors that - influence predictions positively and negatively, respectively. Dotted\\nyellow - lines show significance threshold (\u03B1 = 0.05) for the t-statistic. The MACCS - and\\nECFP descriptors indicate which substructures influence model predictions. - MACCS sub-\\nstructures may either be present in the molecule as is or may represent - a modification. ECFP\\nfingerprints are substructures in the molecule that affect - the prediction. MACCS descriptor\\nare used to obtain text explanations as shown. - Republished from Ref.10 with permission from\\nauthors. SMARTS annotations for - MACCS descriptors were created using SMARTSviewer\\n(smartsview.zbh.uni-hamburg.de, - Copyright: ZBH, Center for Bioinformatics Hamburg) de-\\nveloped by Schomburg - et al. 132.\\n\\n\\n\\n\\n\\n 19the \u2018fruity\u2019 - scent. There are some exceptions though, like tert-amyl acetate which has a\\n\\n\u2018camphoraceous\u2019 - rather than \u2018fruity\u2019 scent.140,141\\n\\n In Seshadri et al. 31, - we trained a GNN model to predict the scent of molecules and utilized\\n\\ncounterfactuals9 - and descriptor explanations10 to quantify scent-structure relationships. The\\n\\nMMACE - method was modified to account for the multi-label aspect of scent prediction. - This\\n\\nmodification defines molecules that differed from the instance molecule - by only the selected\\n\\nscent as counterfactuals. For instance, counterfactuals - of the jasmone molecule would be false\\n\\nfor the \u2018jasmine\u2019 scent - but would still be positive for \u2018woody,\u2019 \u2018floral\u2019 and \u2018herbal\u2019 - scents.\\n\\n\\n\\n\\n\\nFigure 5: Counterfactual for the 2,4 decadienal molecule. - \ The counterfactual indicates\\nstructural changes to ethyl benzoate that would - result in the model predicting the molecule\\nto not contain the \u2018fruity\u2019 - scent. The Tanimoto96 similarity between the counterfactual and\\n2,4 decadienal - is also\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 8-9: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nrepresented + with equation 2.\\n\\n \u2206\u02C6f(\u20D7x) + \u2248\u2202\u02C6f(\u20D7x) (2)\\n \u2206xi + \ \u2202xi\\n\\n\\n\\n 7 \u2206\u02C6f(\u20D7x) + \ where \u02C6f(x) is the black-box model and are used as our attributions. + The left- \u2206xi\\n\\nhand + side of equation 2 says that we attribute each input feature xi by how much + one unit\\n\\nchange in it would affect the output of \u02C6f(x). If \u02C6f(x) + is a linear surrogate model, then this\\n\\nmethod reconciles with LIME.35 In + DL models, \u2207xf(x), suffers from the shattered gradients\\n\\nproblem.62 + This means directly computing the quantity leads to numeric problems. The\\n\\ndifferent + gradient based approaches are mostly distinguishable based on how the gradient + is\\n\\napproximated.\\n\\n Gradient based explanations have been widely used + to interpret chemistry predictions.60,66\u201370\\n\\nMcCloskey et al. 60 used + graph convolutional networks (GCNs) to predict protein-ligand\\n\\nbinding and + explained the binding logic for these predictions using integrated gradients.\\n\\nPope + et al. 66 and Jim\xB4enez-Luna et al. 67 show application of gradCAM and integrated + gradi-\\n\\nents to explain molecular property predictions from trained graph + neural networks (GNNs).\\n\\nSanchez-Lengeling et al. 68 present comprehensive, + open-source XAI benchmarks to explain\\n\\nGNNs and other graph based models. + They compare the performance of class activation\\n\\nmaps (CAM),63 gradCAM,64 + smoothGrad,,65 integrated gradients62 and attention mecha-\\n\\nnisms for explaining + outcomes of classification as well as regression tasks. They concluded\\n\\nthat + CAM and integrated gradients perform well for graph based models. Another attempt\\n\\nat + creating XAI benchmarks for graph models was made by Rao et al. 70. They compared\\n\\nthese + gradient based methods to find subgraph importance when predicting activity + cliffs\\n\\nand concluded that gradCAM and integrated gradients provided the + most interpretability\\n\\nfor GNNs. The GNNExplainer69 is an approach for + generating explanations (local and\\n\\nglobal) for graph based models. This + method focuses on identifying which sub-graphs con-\\n\\ntribute most to the + prediction by maximizing mutual information between the prediction\\n\\nand + distribution of all possible sub-graphs. Ying et al. 69 show that GNNExplainer + can be\\n\\nused to obtain model-agnostic explanations. SubgraphX is a similar + method that explains\\n\\nGNN predictions by identifying important subgraphs.71\\n\\n + \ Another set of approaches like DeepLIFT72 and Layerwise Relevance backPropagation73\\n\\n\\n\\n + \ 8(LRP) are based on backpropagation of + the prediction scores through each layer of the neu-\\n\\nral network. The specific + backpropagation logic across various activation functions differs\\n\\nin these + approaches, which means each layer must have its own implementation. Baldas-\\n\\nsarre + and Azizpour 74 showed application of LRP to explain aqueous solubility prediction + for\\n\\nmolecules.\\n\\n SHAP is a model-agnostic feature attribution method + that is inspired from the game\\n\\ntheory concept of Shapley values.44,46 SHAP + has been popularly used in explaining molecular\\n\\nprediction models.75\u201378 + It\u2019s an additive feature contribution approach, which assumes that\\n\\nan + explanation model is a linear combination of binary variables z. If the Shapley + value\\nfor the ith feature is \u03D5i, then the explanation is \u02C6f(\u20D7x) + = Pi \u03D5i(\u20D7x)zi(\u20D7x). Shapley values for\\n\\nfeatures are computed + using Equation 3.79,80\\n\\n\\n\\n M\\n 1\\n + \ \u03D5i(\u20D7x) = X \u02C6f (\u20D7z+i) + \u2212\u02C6f (\u20D7z\u2212i) (3)\\n M\\n\\n + \ Here \u20D7z is a fabricated example created from the original \u20D7x and + a random perturbation \u20D7x\u2032.\\n\\n\u20D7z+i has the feature i from \u20D7x + and \u20D7z\u2212i has the ith feature from \u20D7x\u2032. Some care should + be taken\\n\\nin constructing \u20D7z when working with molecular descriptors + to ensure that an impossible \u20D7z is\\n\\nnot sampled (e.g., high count of + acid groups but no hydrogen bond donors). M is the sample\\n\\nsize of perturbations + around \u20D7x. Shapley value computation is expensive, hence M is chosen\\n\\naccordingly. + Equation 3 is an approximation and gives contributions with an expectation\\nterm + as \u03D50 + Pi=1 \u03D5i(\u20D7x) = \u02C6f(\u20D7x).\\n\\n Visualization + based feature attribution has also been used for molecular data. In com-\\n\\nputer + science, saliency maps are a way to measure spatial feature contribution.81 + Simply put,\\n\\nsaliency maps draw a connection between the model\u2019s neural + fingerprint components (trained\\n\\nweights) and input features. Weber et al. + 82 used saliency maps to build an explainable GCN\\n\\narchitecture that gives + subgraph importance for small molecule activity prediction. On the\\n\\nother + hand, similarity maps compare model predictions for two or more molecules based + on\\n\\ntheir chemical fingerprints.83 Similarity maps provide atomic weights + or predicte\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4681,13 +4894,13 @@ interactions: connection: - keep-alive content-length: - - "5791" + - "6108" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4697,7 +4910,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4713,24 +4926,25 @@ interactions: response: body: string: !!binary | - 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 + Gj2N/gEAAP//AwAfJP6BeQYAAA== headers: CF-RAY: - - 96665cb0de315c18-SJC + - 96a9ce3d78fbfa22-SJC Connection: - keep-alive Content-Encoding: @@ -4738,9 +4952,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:29 GMT + - Tue, 05 Aug 2025 22:42:07 GMT Server: - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4754,15 +4970,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "1563" + - "2070" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "1567" + - "2112" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4770,13 +4984,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998614" + - "29998536" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - req_3d629873f8c6017885e969be24845e29 + - req_bca3b1ae3a1c4fada5af250aa9716b63 status: code: 200 message: OK @@ -4784,75 +4998,80 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 12-14: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nnterfactual - approach, contrastive approach employ a dual\\n\\noptimization method, which - works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. - Contrastive explanations can interpret the model by identifying contribution - of\\n\\npresence and absence of subsets of features towards a certain prediction.36,99\\n\\n - \ A counterfactual x\u2032 of an instance x is one with a dissimilar prediction - \u02C6f(x) in classi-\\n\\nfication tasks. As shown in equation 5, counterfactual - generation can be thought of as a\\n\\nconstrained optimization problem which - minimizes the vector distance d(x, x\u2032) between the\\n\\nfeatures.9,100\\n\\n\\n - \ minimize d(x, x\u2032)\\n (5)\\n - \ such that \u02C6f(x) \u0338= \u02C6f(x\u2032)\\n\\n - \ For regression tasks, equation 6 adapted from equation 5 can be used. Here, - a counter-\\n\\nfactual is one with a defined increase or decrease in the prediction.\\n\\n\\n - \ minimize d(x, x\u2032)\\n (6)\\n - \ such that \u02C6f(x) \u2212\u02C6f(x\u2032) \u2265\u2206\\n\\n - \ Counterfactuals explanations have become a useful tool for XAI in chemistry, - as they\\n\\nprovide intuitive understanding of predictions and are able to - uncover spurious relationships\\n\\nin training data.101 Counterfactuals create - local (instance-level), actionable explanations.\\n\\nActionability of an explanation - suggest which features can be altered to change the outcome.\\n\\nFor example, - changing a hydrophobic functional group in a molecule to a hydrophilic group\\n\\nto - increase solubility.\\n\\n Counterfactual generation is a demanding task as - it requires gradient optimization over\\n\\ndiscrete features that represents - a molecule. Recent work by Fu et al. 102 and Shen et al. 103\\n\\npresent two - techniques which allow continuous gradient-based optimization. Although, these\\n\\nmethodologies - are shown to circumvent the issue of discrete molecular optimization, counter-\\n\\nfactual - explanation based model interpretation still remains unexplored compared to - other\\n\\n\\n\\n 12post-hoc methods.\\n\\n - \ CF-GNNExplainer104 is a counterfactual explanation generating method based - on GN-\\n\\nNExplainer69 for graph data. This method generate counterfactuals - by perturbing the input\\n\\ndata (removing edges in the graph), and keeping - account of perturbations which lead to\\n\\nchanges in the output. However, - this method is only applicable to graph-based models\\n\\nand can generate infeasible - molecular structures. Another related work by Numeroso and\\n\\nBacciu 105 focus - on generating counterfactual explanations for deep graph networks. Their\\n\\nmethod - MEG (Molecular counterfactual Explanation Generator) uses a reinforcement learn-\\n\\ning - based generator to create molecular counterfactuals (molecular graphs). While - this\\n\\nmethod is able to generate counterfactuals through a multi-objective - reinforcement learner,\\n\\nthis is not a universal approach and requires training - the generator for each task.\\n\\n Work by Wellawatte et al. 9 present a model - agnostic counterfactual generator MMACE\\n\\n(Molecular Model Agnostic Counterfactual - Explanations) which does not require training\\n\\nor computing gradients. This - method firstly populates a local chemical space through ran-\\n\\ndom string - mutations of SELFIES106 molecular representations using the STONED algo-\\n\\nrithm.107 - Next, the labels (predictions) of the molecules in the local space are generated\\n\\nusing - the model that needs to be explained. Finally, the counterfactuals are identified - and\\n\\nsorted by their similarities \u2013 Tanimoto distance96 between ECFP4 - fingerprints.97 Unlike the\\n\\nCF-GNNExplainer104 and MEG105 methods, the MMACE - algorithm ensures that generated\\n\\nmolecules are valid, owing to the surjective - property of SELFIES. Additionally, the MMACE\\n\\nmethod can be applied to both - regression and classification models. However, like most XAI\\n\\nmethods for - molecular prediction, MMACE does not account for the chemical stability of\\n\\npredicted - counterfactuals. To circumvent this drawback, Wellawatte et al. 9 propose an-\\n\\nother - approach, which identift counterfactuals through a similarity search on the - PubChem\\n\\ndatabase.108\\n\\n\\n\\n\\n\\n 13Similarity - to adjacent fields\\n\\n\\nTangential examples to counterfactual explanations - are adversarial training and matched\\n\\nmolecular pairs. Adversarial perturbations - are used during training to deceive the model\\n\\nto expose the vulnerabilities - of a model109,110 whereas counterfactuals are applied post-hoc.\\n\\nTherefore, - the main difference between adversarial and counterfactual examples are in the\\n\\napplication, - although both are derived from the same optimization problem.100 Grabocka\\n\\net - al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich - improves model robustness via exposure to adversarial examples. While there - are\\n\\nconceptual disparities, we note that\\n\\n----\\n\\nQuestion: What - is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":[{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAw0AAADsCAIAAAC5c90NAAAACXBIWXMAABcSAAAXEgFnn9JSAACCkUlEQVR4nOydd1gUWbr/nbv33t195u7c3UnOzs7szuzsYiBnUYIgoqggipgwYwBUMIJ5DSAGDIgRE+acRhQDmDCgjmHMKGYUEyIGYERv/77b78/z1FQHOlQ13XA+f/B0F9WnTlW99b7f99QJtRQcDofD4XA4HHXU+r//+7+qrgOHw+FwOByOOcJ1EofD4XA4HI56uE7icDgcDofDUQ/XSRwOh8PhcDjq4TqJw+FwOBwORz1cJ3E4HA6Hw+Goh+skDofD4XA4HPVwncThcDgcDoejHq6TOBwOh8PhcNTDdRLHsrl582Zubq7BPz937tyVK1fo8+vXr48dO/b8+XODS8vLy/vpp58M/jmnqqioqMCtLywsNOznsBn8HPZDX2FRFy5cMLgy5eXlKO3JkycGl8CpKszKHaEy3B1JAtdJHHOntLR09uzZbdu2dXNza9SoUXh4+KxZs5j7+Ne//uXk5GRw4a1aterTpw99vnbtmpWV1cGDBw0ubciQIT4+PvSZQu/9+/cNLs0Y8Fxv3bo1JCTE1dU1LCxs9+7d2vfPz88fMWJEYGCgp6dnx44d09PT3759K9wBFycyMtLDw8PPz2/69OkvX76Us/qycPbs2aioKF9fXxcXF5zp4MGDDx8+TP/C6eDWr1mzxrCSYTP4OS4RfYVF4RoaXM8HDx6gtB9//JG+3rlzx5jQaySPHj0aOXIknjsvL6+xY8c+fvxY057Pnj3rro6FCxfSDitWrFC7Q1U9I4YBdzR37lyLcEeoDHNHwFLcEQxGrZ3AwGgH2OSePXumTZsWEREBl2uC+nOdxDFr4JWCg4NtbGzi4uJWrVo1b9682NhYeCKWJ23cuBH/Mrj8pKSkRYsW0WfjHRMiAXwTfabQywo3MUuXLsXRca3Wr1/ft29ffMaF0rQzAjMuKVxYamoqtAJ+hf0RHdkOSEyxQ9OmTXELUlJS7Ozs4OwgBE1yKtKwa9cunBTiEILc8uXLJ0+ejFDHYhLMLCYmJicnx7DCL126hJ/jMtJXI3USgi5KYxYOVWpM6DWGp0+fQh5BDSxbtiwtLQ3KwN/f/9WrV2p3pmoLwRXGNccFpx1ggaIdYHK2trYWpLnJHVlbWw8bNsz83REqw9wRqHJ3hDsOdzRgwAB8Xrdunaad4UVFduLo6Ijcpry8nHaANkIJ2IIrLxSC8sF1EsesQRaCR2LHjh3CjW/evNHkrI3BeMckpAp1EiIWwg/8C33FM96jRw8HBwf2YkgEKomqHjlyhG2JioqqU6dOSUkJfY2MjMTPHz58SF83b96M/Tdt2iTnSUhM48aNmzVrhjgn3KildcQYjNRJIqpQJ02cOBFmcPnyZfp64cIF3PfZs2fr+HOICfycmY0IWCkEx9ChQ6Wpq0kgd4RgL9xoEe5IUXU6idxRdHQ0iQ1yR8i1dHylCPuBFQkFH9KSO3fuKJQPGtdJHI4iOTkZj7eW5mIkH4ji7Gv37t0zMjIOHDiAQOXt7T1o0KBHjx7ByLEbstsmTZrEx8cLn8/Ro0fPnDmTPosc082bN0eNGtW6dWtPT8+WLVtOmzaN6QaAo+BY2DJp0iRfX9+uXbsqlC3G1A787NmzLl26oDTk39RoDFWxf/9+fGCtDsTu3buxUdrOKDgWDn306FG25dChQ9iiqbkbVwD/ffHiBdsyf/58bKEIhxhQv359YZZcUVHh5uYmvOxmDgwApwNj0LQDQh3uQnZ2Nn3FBcRXXBB6cxEcHEytcbBDqM+AgADYUmZmJvv5+fPnhe+PRDpp5cqVCAxQaTCkiIgIUasV2QYsFiaEq3rixAl6gYUPCqVFwbrq1avH3j5A7OJERGLl/fv3SNNx14y9Ur+GGTYDl6J58+a6/BZ5AmIhzlfTDngkcVPoNC2F1NRU1Dk/P1/TDrq4I2xfs2YNuSNIyaKiIra/dneE/7Zp00Z3d4TKMHeE/1qKOxIxb9487Hzx4kXVf3GdxOH8m7Vr1+IhSUpKEnWXYYg6BGDn8PDwwMDA9PT0BQsWODs7w7PAu4WGhq5atWrGjBlIYfv168f219IhYMmSJXB5aWlpSB/hlRDDQkJCEJDov9QGA/eHPAn7YGeFoH8StAW5VMSJNCUnT56Et8LRU1JShPWHuwwLC1N7auXl5fe08ssvv6j94fjx43FoYesRFA+24CzU7p+bm4v/wqvS17KyMlw0REQ62TNnzuC/uHrCn8ARe3l5qS3NPGnUqFGDBg0QbNT+V9Q/afr06fjauXNnWNe6det69uyJr5A7iEC4htgN5lS3bl3II9pfe/8kPz+/hIQE/Io66GDPXbt2sf/ia/v27RH8YJwICVeuXBH2T4J0g+C2sbFJ+wBuOuqABF2oa48dO4afZGVlqT07hD0tVsS6fYhAOoEyJ0yYINyIC4KNkJVaL/a/oSd3z549mnbAo4fraVkBiE4KWkTTo1epO4JchsYVuqO+ffuy/Y13R1FRUfhM7oj1T4I7wg91dEdA7amZzB0JwQnCSIKCgtT+l+skDuffIIAhecJD5e7uDheAjFmUWKg6poYNG7IWo507d2ILoj6TWfALderUYTtocUzv3r0THgiJrzArIscEFyDcR9iPW+17N+wAecFKvnTpEvbZvHmz2nP/6aefrLTCArOIgQMHOjo6CrfgiNh/1KhRavcHO3bsoB7ckH1IfKEM2OCvffv24besrYWgPkyaSjNDtm7dWq9ePdQZYQB3bfv27cJuMWp1Ert3uHoIb8IMGIEHV5jdfe06SWhI8LeQmDBItgU/RFHCl1Oiftyq793u3r0LG2a6FsTExOD2aeoxhvposSJNPWHxoOG/iKnCjXRlRI0QasF1hjDVFDvpFR50YaXlmBXMHUGmkDtiWpkwwB1hCzUyKfRxR5TbaHdHon7cOrojTR0ZJXdHunTBPn78uJUghRPBdRKH8/8pKytD7oW0DA8bPZBIylmQU3VMwjfZd+7cEXkHxHtsYf0utQ8wgTs7c+bM7g/gv5SoKT44JlH7RKU6iXwNOwSqihRT1GmGgQzsolZwZdT+EGek2qNFi2OC20L8Q3KJ6N6/f/9GjRoFBAQg46T/ImBbqfSToK6UakszW65cuTJy5MimTZtCZKDyuPJMi6jVScIXIoMGDcL+Qm8ZGhrKWgIqHe+GQHjgwAGyosGDB0OxsX9ZKfu3CneuVCcBCFmYLn1GPXHvtHQbwlOgxYo0vdQmWxWNAdRRJ9GjlJSUpGkHWL6WrkvmDJQfrkmVuCM8p+fOnRO6I/amVa07qlQnqbojnJSmXowmc0dCsA9sW1NPJq6TOBwx79+/R8aD7ATP2IgRI2ijqmMSJqkUcrZt28a2UEjTxTEhU/T29sYWX1/fNkqEjoYck8g1VKqTQFBQEPVgePPmDbzSxIkTjbgk6hk6dKiNjY1wS3l5OSozbtw4tfvTK0Iku/QVkQCu387OjsIYdSbYu3ev8CeQU8Jgb1ng1mzYsMHNzQ2nQKFFrU4S/kR4ZwkoIWY5WnQSjBbiDJoA1zM4OJj6lwgLx2ccTliyLjqJGvnOnj2Lz4sXL65bt67kmiMvLw+HgG0IN9KVYe0fmkhISFAN2ww8NTijXr16SVbXqgB39vLly+SOWNc3Wd1R48aNRe6IWY5ad1SpTlKouKOxY8caej00oskdDR8+XPsPX7x4gR+KsgghXCdxOOqBe2rSpImHhwd9VXVMQl8gCjkKnR0TjuLv79+2bdunT5/Sf6mtWKSTRHXTRSetX78e4RmRhkaNIRppOtMLFy74aUVTHJo6dSpKZjUHt27dEmafIqhLqXDL4cOHsf/WrVsVymYY1RMJCwsLDAzUVHOLgLqXpqenK+TUSVu2bLFSDthkL8WojzwrxzCdhNK8vLygwODAmzVrJuzjogp202JF0DRqf4WgC0MVvasdNmwYNmp6m0bgv9CgWkb84WpY6dyN18whd9SgQQP6Krc7YgqV3JFIJ4nqpotOErkjLfOjmswdMVavXm3163G4IrhO4nA0An/h4uJCn2VyTAUFBVa/HvoukguV6iREC+zAJtljvH792tnZGT6iffv22keP379/f5pWNA1LycrKwqG3b9/OtpAmOHbsmNr9kVPCzQm3kE6i8c9v377F1e7evTv7b0lJibW1tTHzxJgDOTk5rOuDfDpp3Lhx3t7ewh+KunZVqpNSU1NxtVUdNbbb29vTi5sDBw5oOVNoNS1WlJGRoemHwcHBEGHs0Pjg6enZqVMnLcdSKMdMWWnudQe6dOkCIaVdbFkQVeiO9NVJ2t1RSEiIltOU3B1VOl1Z69at8eywvuqqcJ3E4fwbuHhkn0KXCi9ct25dNmZNJsdEg+Hj4+PpX6hA165d9dJJwN3dXW2j8cSJE11dXa1U5oWSCtTWy8sLXo+6GhQXFzdt2hRZL3vYcUFQMZb/0VsS0Xs34XsT7FCnTp3jx48L9z916pQclZeJCRMm3Lhxg32FMKKJGyiBlk8nUcevu3fv0tejR4/CrvTSSRRU2CRGjEePHtWrVw+GhIppiSXGsHz5ctasCDZs2CAyWliRahNFr169HB0dNY2Jw6VAIXK8bjYBVeuO2FxTqEBERIS+OqlSd7R27Vo9roXOkDvCqVEvLvyFO/L19WUtrPv37xe6IwIGjyrNmjVLS8lcJ3E4/2bu3LlWyi63yGIRvP39/fEVOe69e/doB5kck+LDEGiojQEDBuBpHDZsmL46iSrfoEEDPz+/xYsXs+35+fnYDt+kqeej8Zw4ccLBwQHZf2RkJPwj0nfhaBTSAewiIOLShWX9uEUeCq6tTZs2iPcIgcHBwZX6LzPE1tYW1W7RogWsCKeJiwORwfqOyKeTYKguLi4wYNwISG3YanR0tF46CWm6h4cHLj5CCwxJOKUhFcUmvJYcRLKBAwdCB6Dm7du3x7Hi4uKEIQNb2EVglYekHjNmjKYyZ8yYgV9dvXpVpjrLCj3RuInkjmgUZJW4IwgLfXWSdneEJ0KO2TIJoTtCBeCOhOMEqfKipehoNgG1gwzwnFqpIOwvLzlcJ3HMHTzGq1atQtID5zt58uSdO3cK87lLly4hHWFfkd4J85LS0lJsEQ7Pefz4MbawARQ5OTns+USwxL/YHM14NPAVj9+kSZMyMjLoKyscH1Q7WODhF40Lu3DhAg1OEcqU169f29vba+oXIhXw3ampqbhocEOijreojPAiKJSdUXbt2oUzxf6zZ8/GVRWVVl5evnnz5nHjxuEWnD59WtaaywGuOW4NTg0niLNYsGDBrVu32H/fvn2LC8Jafej6CH+uemfh+pnlkFGxQU/YLpw+EeY3c+ZMHBeBCp9FliOyDYU6o0XJ2dnZZEjCicRSUlKoc4khV0Q3YPZ79uzBU4AHMCsrSxQvUB9ReCsoKMBGLZ3KcWU0zfNkEcAdrV69mrkjUfOSydzR+/fvhZaj1h2hMrq7I+E6RXKgxR1R5UWD2o4cOXLo0CG1ReE53a2CqsuSEK6TOBxTs3HjRivNo4E4HF2oqKjw8fGJjo6u6opwLBtyR6ovdjkMrpM4HNOB7HP27NlOTk4WtOgHx9woLCxMS0vr169f3bp1r1y5UtXV4Vgq3B3pCNdJHI7pGDlyZJs2beLi4oRzGHI4egFtBCvq2LGjllVBOJxKIXc0fPhw7o60w3USh8PhcDgcjnq4TuJwOBwOh8NRT43TSYWFhcIljuUbCcmRnJcvX544cWL37t3Z2dnFxcVVXR29KSkpSU9PHzFiRExMjC4riZoMVAZVEg1cUqW0tBSPjCVeeRF5eXlZWVkwpAsXLsg085CsnD59OikpafDgwZrWB60qUB8ta7oplEvR5eTk4MqfPHlSOHDPEkHssGh3hPqvXLly5MiRFueOYDk///wzHuHMzEzTPMI1Tie1atVKOOlCvXr1unfvnp+fX9X14mgDj/SYMWOsra3Zjatbt27fvn01LeEpLbAQ4Uy4BhMWFubm5obwhnMxZiw3vDOq9OzZM+OrRNBMLcJpXUQMGjSoefPmuOaqk/1YFgjSNOcNw8PDY9WqVSY4dEZGhnBOc4M5cuQIzXSFCGekWY4ePVp1gmZjGDJkCFudV0RZWVnPnj3JhNiVt9AJAsgd2djYsHOpU6dO7969a7I7kvDctbsjCCNEbeEjDJNjM3rIRE3UScHBwbS+8fnz55Hf29nZeXl5yTfjH8dIXr9+HRISUr9+/Xnz5t27d+/du3fPnz9HJtG2bVvRYuYyIYk4oCnmNmzYYHx94EGsdFizXXcq1Ul+fn6xsbE0+6Ll6qSdO3ciTsNsjh49ilCHrBQnjtNhawXKitqZAA0AUc3d3V2SHBrOUJc123VHi056+fJl69at169fT02Subm5TZo0QeZz+/ZtCStgAjS5o3bt2lmcO5KkPZLckWgOMGPQ7o7u3LmzcuVK7IPLjnuxY8cOWBFiuqxKpibqJNGiWrNnz7b6sPI2UV5e/tNPP1HjMJs7jgH3Ss2thw8fLiwsFP33yZMn2H7gwAFNi91w9IVWydi1a5doO26EMI345Zdfzpw5s2fPnqtXrwqjSEVFBdwZreBB4L/YUlJSQl/htSkZQuzEjTt16hTbmfbE0ceNG0cvakVzM8IS9u3bJ2qPpPdTqA8M6dixY0ianz17Riumbdy4Ef9i2Rv2xOFgS6i52lfA2OH06dO0Ay0EQS/vaPpaqhKOolBO4yZq/IcrFNYW54Irg+uTk5OjOu2kdp3ECrRcnfT48WN7e/sWLVqoZkSiiawePnyIW3bkyBHRxHe4iSJtyixH8WujunLlysGDB4XzWKIoWg2UvfEXmij2xBFhKkIrVSg7CZAbwQ4wM0QI/BC5e0BAgPDWK5Rrb6GE7Oxs4UGFQI7gv9iHVRgfmjVrFhkZSUXRgVB/NrU0gSphC1tigs4aQnPv3r1INUXvzrTopP9TItxC6+vROsQWhCZ3BMEkbFPB44+Yoos7UigfXqE7olsAhwArMsAdXb9+XVi4Ae4IvkW7O8IO5I6wG7kjFFipOxI2gRvvjhhjx47F/qqxWEK4TlIsWLBAKIf3799va2uLdMHFxQXb7ezshAs6njt3ztPTE9sdHR3pNRBb/AgPAK3lhJ/jV/Xq1UtOTq5pl1dy8HjjUrdp00b7brgvjRo1qlu3rrOzM24KMlf22KiuFUCLVLD1BGg9dmSE+EsNuQ0aNCBfQ3uqnR0fTziOiLtMv+rRowfzWbQWwaZNm3x8fOhXiB/CQsgCkX1aKyFLQ80Re4QnhVTJ1dUVJ4Ud8BdhHh6TmiWE0It8VQWDo7Pa5uXlubm5YR8UBduuU6dOYmIiM86aoJOWLVuGymt/0YNHeMSIEVbKNRxsbGxwa4SLTqguXUKWQ5/JVGbNmtWrVy9Va6FFJ4RQAgabobVHyJ/ABoSrp9EqFuy31J6neutpzRmUQGuzREREIJ6xQhCAUQi2w35wXuwOMmsnaLkM1UYvUePlxIkTYTw4EA6H7b6+vjAt4SXSpJNUoZVchQtomD8GuyMmoVTdkeLXy5vQXYZ7EbojSFKFzO5o+/btQneE0xRN8A1pCB+Cu0/uCDYAba26hIgWd8QaL1Xd0fjx4/V1R4z4+HhURtN6gpJQE3USe+8GMjIycMPCw8PZdcjNzYU0pqnoi4qKhg0bBtNhbiIoKCgsLIxyL3jV8+fPs2lMoYqwJwrEduQWpLJN0xJbjaHVEKdNm6ZlH6Qj7u7ubdu2pdt05swZfMWNpiRYF50E/9K8efOff/5ZoZzsHybRpUsXtr/qM4+sC55i8uTJFO3gGnBENlcbOSZIHBgDDIkavUSrNSmUy2iz3qyPHz9GoEIkY94NKTsOMXDgQFq4AF4AforaQtS+d9Ouk27evAlBTzkigiiFQ0hD+m9N0Em4vLie2sdtQOXQM4vnF1dp5MiR+MrEqy46CQkS/ACOgjsFSYEtbAETVQkCn9O5c2fkXRRacIvHjBkDU2QuBTaMAiGkCgoKUCZZAk5EpEUWLlxIGTkMHkaFnwiXxEHIRLRGHMVJ4euNGzfYOu2q790q1UkIt6yBBLlEKyWsvUQvnUQN+XhaddzfHNDFHeER9vDwELmjwMBATe5IoU4n4TIK3VG7du2EO+vijkSLD5I7Ki8v1+SOjhw5cvz4ceaO+vfvr9YdkaXBVmFR1GKk9r2bdp0kcke03LJe7gghGOEb13b+/PmomOpizNJSE3WSSP+GhoZqabLDXYTgxY2kr/A4EyZMUN3txYsXkLSi5yc2NjYgIEDS6tc4qH1Y+3t0Cm/C1mY8hNhCCy3popOsfr0K48yZMxGu2DsF1WceGRjUtnALsjHsRk6EHJPoJ6qOSQRcEqV97BCIoOzFihADdJIq8LxwhcK6VW+dhPuFhFvLDlC0Dg4OwomJEdiaNGnCQpQuOqlTp07sv+Q6UlNT6auqBEFKZvXrNzjwxr6+vmylLTgrlC969a+qk0RMmjTJy8uLPiPy4RDr169Xu6cBOkkEvTtjMVJ3nQT5iKxS2t5RJkAXd7R06VKRbti5c6cWd6RQp5OE6wMa7I6o75dp3JFeOkkVfd0Ra1avU6fO2LFjhe+F5aAm6iQofXqTmpeXB9vFFjhQZGxsHzz8cFWwjDZKIFfZLR88eDB839ChQ3EXhT2QyF9AQq0XEBUVhbto6jOsXujSiQGxDdFFuAX5EH6FhFWhm07CLaZsm6DGZBafRM884h/279atm/Bek1aDG1V8cEzHjh0TVknVMeHR27dvX1xcXIcOHcjSWK2QoMPMNC26bphOunr1akJCAqpNx0IAZi+ga4JOCgkJ0d5f+8aNGzi7devWCTeOGzcOjzA14+mik0QXB/9lt0BVgkBCYcuSJUuEhtSyZcuwsDDaAa4J90tUT1WdBGtHUX379qU727BhQ3YgMktNo9YN0ElQkxs2bEAGiMCGY9HgQdZApaNOunjxoru7O0oQvh+0CHRxR3D7kBTCLSUlJVrckUKdTtLdHcGNQHEa744UyhZug92RvjrJSHeES3r37t0zZ86ghjh9hADej1tKVPsnXb9+HXeFGcG8efPwFY6A+S9bW1t2y1+9epWSksKGFuM204vnHTt24CsUWHcVTHt+1Q16ZoTvEVTBDRV5Z2HQ0rF/kvDn2h0TFQhlpnqvz58/r/jgmOAIVE9E6JigqqG3oLmXLVtGlsZqRY41OTlZ7fkaoJNwXBwLF2r+/Pl0LOGDUBN0EnUDEnXNFnL69GnsgNRfuJGCFlmCLjpJ1P6vXSdRxyNVKxo9ejTtQP2TRPUU6aTbt2+7urr6+/sjNMJucWcjIiLYgegQmk5ZX52E4A2bcXBwgOmuWLECx6LO6cyqddFJMDZUODQ01BLnHDLMHSkEj6eOOkn4X+3uiHyF8e5oypQpmtwR2bZ2d6SXTmLuCNHWYHfEoAa8o0eP6ri/AXCd9G+xbPWhGyN10xO+WauoqIBcVY0Njx49Wrt2rZ2dHbIHxYc8Q9TxjWM8uDtIziBMtRhq//79RQkcOaO5c+cqlIOGrH49IB8O2hidRO1Jal+/EuSYRI5D5JhQOAqhFJOABBfWClaH3E5t+Wp1kuprXw8PDxakw8PDEZmESWrnzp1rlE6iRdGFvaRF3Lp1CzuI5lIaOXIkMmnqrYgQ4u3tLfxvYmKiMTqJ2pOo15FadNFJM2fOFPYjUXwYkEWfKevTdAhVnZSWlob9hV1iN2/ezIzt7NmzVoJ+JApltxW9dNLNmzfd3d1bt26tOo7YItDFHcXExOAchTsUFRVpcUewLmN0ErUnGemO4HxQiDHuSFS+WnfEjE0Sd8SgDEfUEiwtXCf9+005rvLw4cMVH7T5ggUL2H/37NmjJTYgQlOKiR+6uLjgCZGx6jUV8vX4K9r+5MmTc+fOKT44d+HMDkh2WVMzlC5CHbIl9l+6p7rrJKS/ogyya9euCJma3hro4pgKCgpE7nLTpk3CWkVGRsKiXrx4oVo+dZK4cOGCcKO/v7+wbw0djgXpli1bCv/78OFDOL4apZPwhLq5uTVq1Eh1Sj3qOAKvTUM62HbIBezP3nwhigh7giNkUv8h+lqpTlq8eDF2ePr0Kfsv0n1676apzrroJDguYb+rt2/f0rAm+kr9jjX1cg0ODmadQgjqScM6kiuUPQ2YTkIeiM+XLl1i/x01apTuOunOnTsQGYGBgRa96qomdwSpSj2vEbCtft3fkfyJJnd04MABvXSSqjvq1auXGbqj3r17s6/Qx1bKcXb0VRJ3xJg/fz72z83N1XF/A6iJOgm3UPgeF87Rzs6OuQY8xn5+fmfOnCkuLoZfaNy4McyaYgNcJHLKI0eOIELD38G94rdMGyETxd1CAorbDHvKz89PT0/HLayyU60uwPXjkcO1jY+Ph6+5ePEiJNHChQtx8Wk4Ia52kyZNcFuRWOCuZWRk4IYivDHbhqxBzr1v3767d+/injZv3lwvnYRcB6Fo27Zt+C0FCdQBCRMe7OPHj+PoyBFxUGGrcqWOCVEWrg3GBv8CDwsPha/CWuFAdAhoQRzixo0bOGVK9OFWsGe/fv12K6G2BLhORPG1a9fiHOG5kLLj5yxII5rCE2VmZmJnJAYU4HV3TDt27IAYJQ/epUuXNCUWF+3gSWEGkBGIZAhpuIl4hPv27cvu/sqVK3GCM2bMePz4MYI6XDku6cmTJ+m/+An+C2GBRxt3B0+6kxL6b6U6CYHTSjnzDd016pYbGxsL94LE7P79+7jLOMTMmTPZVCO66CRyO7ANeKTr16+jzjRin+0AB4VbD5UGgfjs2TNEZXajR4wY4eDgANujGXEUyq5OMBvk+jAJlAb3SCPbSSfBtOrUqYMK0KQ7c+fOpTHkuugkOE8vLy/sPGnSpDQB7PJaCpW6IzykTZs2FbmjTp06MXeEn2t3R9p1Ejyb3O4IFqjJHSEykjuCRdF8SOSO8ByJ3BFMReSOWJVocQXD3BGsDmaZk5ODs4bx4DMe0pCQEFlXL6lxOgk3w0UAHl34EeG7W7gqMhEA08c9hlSiJlMI9rZt27JJ02EHAwYMEL5lh/Bq0KCB1Qfc3d1NsyRCtQe5PlwqzVzFri0cLnvdgKiGW8PuS3R0tLBhH/+FC6D/BgQEIF7i1rPOmLi5uMXCwyGXwg6s5SAvLy8sLAxHxEa2fBXiCtJxVh94AcQ8+heeYewJVyIsE1+xkfV4VSjDNsqknyN4o0BhrWgH1JYdAlqQpYxwnfDFZMPUqFZSUgIHSnvCCLOysuB9WG3h0RD86L/w2suWLUNtIyIihHUTvk8RgT1dVBCdoEWAW4koxVbPgKm0a9cO0oHtMG/ePJpkiC6jqLsSjBCyBv/C3/Hjx8+ePZtZDqxFdPsA/itc7ywlJcXX15euHllXeXn5lClTEDXZXUaSRt1vFUpnxYyKgS3CFvFffvmFmnyslIv5QBBDaaF8tgMOgaqyNX/wYenSpfQvWAVspmHDhtifHQghll2BgQMH0rPARgRDStIsTQDBCcFMaNWjR48WtdYzUIKqCQFyrZYFuSMWJnRxR8IwAWHRokUL5o6gPETuSHj7FCru6Pbt26ruCE6Ael4b445oBADAqVXqjmDJ7Hx1dEes453QHaGqerkjXA0cWnimKFbCRZzUUuN0ki4gY0DChAxP+AKVAceEf2laEBQ/wWMgnOSUIyHs2qrNHvC04L9quz5g//tKpE076Igo1rBFPcvKyujnmmqFxxMni310bLyhZZ6pP40IHKKgoAD/tbhBRpKDkEMjXkXTIhO4evgXrpXam0IzVqt9AWEwzKUY3ET3+PFj7UsUv3nzRndDpZ2FrwiF4Pni/o0w2B3huTZDd0SWr4s70lGXyOeOYJz0CMs9IwDBdRKHw+FwOByOerhO4nA4HA6Hw1EP10kcDofD4XA46uE6icPhcDgcDkc9Zq2TysrKHjx4IOwy9urVK7VLzIjASb148cI0Pbw45g91b2T28Msvv5SUlOjyw9LSUrVdfTk1EHge7o44xsPdkcVhpjrp5cuXNHmJlWByqvz8fFtb2ytXruhSQseOHbVMUWo8Dx8+RPlhYWG9evXatm1bpcMWUO3hw4e3bdu2f//+R44cEf0XP1+/fn3Xrl3bt28/efJk1ZEmd+/eHTNmTGhoaO/evfms37qDa8UGu7IJrGNiYvr166fLz0+ePOng4IB7LVP1Hj16lJWVNXPmTNxcmqROO/CtK1euDA8P79Chw/Tp01XHN+EZGTlyJMwMj092drbov3jYYas9evSA3SYmJmpZ/pkjBPEJ15MmBDFDd4RAe+HChTVr1vzrX//ScZj99evXR4wYQe5IdTFU7o5kQq07Gjp0aHV1R7dv3yY7weODkkX/FbojPB3m7I7MVCelpqZaW1vD0eNCswSuW7duAwcO1LGE3Nxc+LWbN2/KUT1kAzS3b1JS0qBBg2D0w4YN016Z+vXrBwYGTps2rXv37th/8eLFwh3wqEAUxsXFJSQkoGQvLy/hUgNwao6Ojj4+PlOnTu3bty9+DlOW47yqGW/evKEV4K9du8YSuHPnzlmprHakhS5dusTHx8tRPZpOjSbjsdJh/lk8qvCnsBMooUmTJjk5Ofn7+wt9E4IlIjc2wsz69OljpTLtIayUIj2CH/y1u7s7rU7I0U5aWhoue2Zm5q1bt5g7gl2ZiTuiew1wCF2WodXFHVkplyiAmNbujiCzrCx2inYTo9YdnT9/vk6dOhbtjljYqtQdicIWLT5oEe7ITHUSrX0t3HLp0iVc0zNnzuheCFyGpiWOjQS2bm9vf+fOHfqanJxspbIgMwPJGWzFz8+PJgoj84IKZPkEhDZ+ziZ/gzOFeSHbYyXg2YAZsUm9yLxE86tyVIH3sfr1clQK5b3D9dS9kIyMDIQfOXKdoqKi7du343YjH9DFMdFayxs3bqSvly9fRsXYdM+gdevW0O7MTkh85+fn09cjR47g57NmzaKvMD8oLdGyFRy1IBcKCgoSbqH1QPRyRyhBJncEB3LixImXL1+qXYFVhCTuyMPDg82fRO5Il+aHGk41c0e0iA1b6uTKlSt6uSOIdQtyR2ank/D4wZsgWYEyGKOE5MjEiRM9PT3Z6y0kdviXsCkPj/348eNXrlzJtqSkpEC/q53kyhhKS0thEKNGjWJbSkpK4GjYZKMiaL2CFStWsC20rhOrKrJSZ2dnYT0HDBjAak6LagnXA8IlwhYkc9KeVzVj06ZN8EG4UBERETAVmhj92bNnuHe0vACB+zJhwgQ2161CudoX9meN22VlZYgTCxculK+qtLBApY4JyUODBg2Eb3iRpbEteXl5Vr9edorWVGJbRo4cCSsV9m+gRV4tdEVS04D8WBd3hIe0Une0YMECJFey9i/RRSddvHhRrTtiwgjuCPUUuiNk/JW6I+EWjioid0QNeLq7o9u3b9PX8vJy6AnhCqSSo7s7QtgSTmgZFRXl6OhIDwUek+rkjixGJ3l7e0OQCvfE04vnmTVl4792dnZMrio+LCPMFgFQBfrmhWY09dCkFzewe+HGdu3ahYSEqN2flkUU5luwLRsbG7b8MnI70WT/tIwrPBo+7927F59FfU3go7t27arpvDgKDTqJmmSERoLPsCJmWjAnfBWKYIXyhS/ur6YDIX5osSJdemjq6JiQxLOp/QlakpMeEFrX/dSpU8Id4MjgvOgz0ruWLVsK/7t161b85MSJE5XWsMaiSSf5+vqK3BH+pd0dnTlzRrs7QoQwwB0J0UUnbdiwQeSOENggg9g7xICAgA4dOgh/wt2R8ajVSTq6o8GDBwuL6t27N55lTQfS7o50mUfeYHdE69HSA0KtTUePHhXu4OrqaqHuyOx0EoFEWSgdnjx5gisoWjsJortZs2ZBQUHwIFu2bFHVLtCq2KilYyOEuZVmNC2yvW3bNlV/hwojJqndH5kW9he1lMLzdurUiT7jv4MGDRL+FzaKjYcOHVJ8WJtTuIK3QinLAgMDNZ0Xh6CWPGE3VaT48Dui3eiGwoRgSDAnGBUtN8tITExEoqOpYZJWqdSEaIVdtejimCoqKrCPqM2SPAutYEqa6d69e8IdcC4scOLERX6NjitawoyjisgdPX/+3EplxfjS0tIWLVpocUfYrt0dwScY4I6E6KKTKnVHsBORO4KFVOqORCskclRRdUcJCQmVuqMmTZoIm5cUxrkjq1+vsKsWI90RpWrkjq5fvy7coZUS+gzHKHJHMDCzdUeWoZNope5du3aJdrty5YqNjU10dLSq6CZEb9ZF7N+/f7dmNHW6JEOk4CSssKaISO/vRc2JcEx0grj++K/wta7ig06iJwr+0UqlNxJ+ixI0nReHUHVMeDIhHVT3jIuLgwnBkKytrVVHMNEtYB04RNCi35qAjVVaT10cU0lJiSY7IVOkZcZFlRQ6JivBWC3dj8tRaHBHO3bsEO2GqGBnZ2ewO8LtMMAdCdFFJxngjshOuDsyElV3FBkZWak7unDhgui/aWlpBrsjXQYn6uIWYD/aw1al7sjR0VHkjuj6mKc7sgydRG/QVAcWguXLl1spl1IXiW4C2kV0M4xHjvYk0argqu1Jly5dEu4QGhrK25MqRdUxhYeHqw0kpaWltAa1qM2S0K6TjEf3BE70QpDaLYTtSfCSwh14e5IkiNwR2ZVadwT7MbE7EiJVe5LIHam2J6m6I96eVClq3ZFaN87c0bJly1T/S7fAbN0Rb08yHSLHREMWIVBEu717965r1674FzSK2iGFdevWHT9+vKajQM5310xGRobaX/H+SZaCqmOKiopSm/hiT5qsa9y4car/pWdeODRaCG6NFiuCjVVaT94/ycxR646E3W8JI90RJJQB7kgI759kzqi6I9xxXDq1e8rkjkCl9eT9k1SxDJ30+vVr2A0bQ8hITU2l93GQGm3atBG9skXOpKmFgIBSidGMpjcmNN5NOInFixcv6tevr328mzAzOHv2rJVgvBuOBXFdVlbGdoAxiQaYJCYmis6Lj3erFFXHNHv2bBiSyE6eP3/u5eUFpUvxQLVpeuTIkS4uLpqmEs3JydFiRUwNa0H3ASZubm7CaZ179+4tGu+GE2T/vXHjhpXKABNhv3LUzWwHmJgVIneERxVXctq0aaLdtLujoqIi7e7oX//6lwHuSIju491U3REb74Zj2dnZCd3R4MGDK3VHfLxbpejrjlavXq3WHSHQGOyOQKX11N0dIWwJK4+cUDTeTYs7GjVqlAW5I8vQSQplg41IvUJ4wshoijM8/LjoolyNJgLRfQov3YmNjYUrEc2fdPr0afr65MkT+FD2Yg5XuEWLFr6+vsIJS2xtbVlCQBPbLFmyhL7ShCXCTAInLpo/qU6dOsJREhy1qDom5DeiRhfcDqgN+B1qAEBWjYdf1BgQHBzM0iA50OSYtmzZIgzGoglLaP6khIQEtkP79u2FdjJ06FDswN7EnTx50kplwhK13Wg4IiR0R9QqIxNqdZIc7kh1/iQ53Gw1wwB3NGTIEFV3FBYWJrI9adHujti4S7Jn0fxJursjei1jKe7IYnRSWloaHlc2EOnp06eNGjXCPu/evaMtq1atEqlvKFa4Azmqd+/ePXgKGMGECRPgZUQ92qhZXjhHbW5uro2NTbNmzWBGqLNqo/3w4cPhZCG/xowZ4+rq2rRpU2Sf7L/Xr1/Hk+Pt7T1p0iSaPxdXQ47zqmaoOiZkP25ubsKGSeoUyfqaIL+BzbRt25blSZQuy9S7MCgoyM/Pj5YyaNCggZ8S9l+axJZ9xaMKuQY7gTeBncCtICgK068LFy4g70cJMDN6ASSaZ5lCWv/+/fEBh4NFmfNaAeaDqjtCrq+vO4JsgmlVusCRAaxdu5YsB04G+ow+s1uv1h2h8trdETYiZ4Cd4HnR4o569eoljHYcLRjgjl6/fo3bJHRHkKfwAFXojpjDYe6IhS1Vd+To6Ch0R6KwNXHiREtxR2aqkzIzM0XDSSBLcdG3bt1KX/Go46KznIaAv8ADT2dUVlYGE2SNyZKDQ8P19OjRY8CAARkZGcLLCJ+CuiF9F+4PbwVrgMoZNmyY6itY/Hzz5s2RkZE9e/bEY8M0OAMpBawNP4+JiVHbgZSjCp463AhR1+YpU6YgXFE8g/dZtmyZyOkgM8avWA/E+fPn4xkWvoaQkPT09DQV2H/xFIg8C6oNI+/bty/i09y5c1U7CyP7JzuBlsrJyVE9Ik42OjoadpucnPzkyRM5Tqr6oeqOXrx4YT7uCKm5qhUx/6PWHcFOoNtgJ8jyVe2EuyM5UOuOZs6cqd0d5efnm5U7Er5oq9Qd3bt3j7kjtTOHMXc0bdo0c3ZHZqqT1AKTatGihY4J2cqVK5HhqR11wqnJIPW3t7dXHdStFjgFHx8f+dQ2x3Lh7ohjPM+ePXN2dubuyMyxJJ30+vVrZD86rmsGGbtnzx65q8SxRLZu3Tpjxgxd9jx79uyIESMkX/qGUw3g7ogjCdu2bePuyMyxJJ3E4XA4HA6HY0q4TuJwOBwOh8NRD9dJHA6Hw+FwOOrhOonD4XA4HA5HPVwncTgcDofD4aiH6yQOh8PhcDgc9XCdxOFwOBwOh6MerpM4HA6Hw+Fw1MN1EofD4XA4HI56uE7icDgcDofDUQ/XSRwOh8PhcDjq4TqJw+FwOBwORz1cJ3E4hvDixYtOnTo5OjqGh4cnJydnZWUVFRVVdaU4FkB2dnarVq08PT0HDBiwdOnSM2fO8JVNOfoCK2rZsqWPj09sbGx6evr58+ffvn1b1ZWqtnCdxOHoDQKbv7//jh074JvgoeCn4K3gs2xtbYOCgsaOHbt58+b8/Hz+cHFEXLhwwcnJ6cmTJ8XFxQcPHpw1a1a3bt2cleADvnLBzakUZkUwFRgM8jRka8jZXF1de/bsOWfOnCNHjpSUlFR1NasPXCdxOHrTr1+/uXPnqv3XrVu3tm7dCqkEwWRtbc2bDTgMBDZEshs3bqj+C7YBC4GdwFpgM7AcEtywJViU6avKMVu0WFFZWdnp06fT0tKioqIaNmxoZ2cXGhqakJCQkZFRUFBg+qpWG7hO4nD0Y8qUKZGRkTruLEz4HBwc2rRpAzcna/U45klpaSkEUHZ2ti47wy3n5+dv2rRp1KhRLVq0qF+/PjST3DXkmD9v3ryBFR04cACfy8vLte/8/v37vLy8DRs2xMfHt2rV6uDBg6aoYnWE6yQORw927NgREhLy7t07fM7NzV25cqVeP09NTZ09e7Y8VeOYL3CzEMqrV6+mr0lJSffv39erhEaNGhUWFspQNY7FACvq2LEjWRHSLRcXF91f0V67dq1Tp05y1q46w3USh6Mrp0+fdnNzoxf/N27ccHBw0DfaPX782MPDQ57accyXUaNGjRgxgj7Pnz+/c+fO+jreOXPmpKSkyFA1joxAzfz000/szWlwcPDr168NLi0+Pn7cuHEKPdsmGQ0bNnzz5o3BR6/JcJ3EqYbAqo8fP75x48YjR468f/8eW77//nsjy4Qkcnd3J2H04sUL5PcXLlwwoJymTZvevHnTyMpwZAJ3NiMjY9OmTXSPkLvHxsYaWSYKCQ8PJ0+7d+9ef39/A3qqFRYWwuSMrAnHZOB29+/f/8svvwwNDa1Xr167du0qKio++eQTGJhhBa5cuZLkNcCHJUuW6PhDuCl6T5eUlLR+/XrDjl7D4TqJU90gEePs7BwXF+fh4dGyZUsYea1atYwpE3mYm5sbUkN8hr+jwW56lTBgwIBr167hw7JlyyZPnmxMZTgykZmZ+fnnn3fs2BHa6Ouvv0ZQmT9/vpFvK6DUkfqTMGLDlHT/OYwtMDCQPsPqbt++bUxlOCYjJSXFzs7u1atX+Pz27dtdu3bhg8E6KTs7G/kVWVG8Et1/e+PGjebNm+MDjCc4ONiAo3O4TuJUN2JiYlq3bk2G/f79+ytXruCDMTrp3bt3ISEhTBhFRkYifOpbSEZGBnXFLS4uhoYzuDIcmUAQ+vOf/7xhwwb6WlhY+Pz5cyN1EkJUgwYNSBg9fPjQwcFB7TAl7aACpLCXLFmSlJRkcGU4psTV1RUZkWijYToJNoPSyIpWr17drl07faN2w4YNnz59ig/e3t7wP/pWgMN1Eqe68d133+3evVu00RidFBsbO2PGDPqcnJw8YMAAAwpBGIazo89QXRcvXjS4Phw5OH78+KeffkpvaRnG6CRERAhikjg0TOnw4cMGlAOBzhS2i4uLYZXhmJhvvvnm6NGjoo3QSenp6fHx8ZDjeXl5ImNTC+QRpDbJ6+zsbFiRAX2MZs+evXDhQvqg+ws7DoPrJE5146OPPlJVIdBJqampHTt2nDp16r59+3R/94FIyWYBEA52M4CIiIiTJ0/iw/r160eNGmVYIRyZWLduna2trWgj6aS2bdtGRUWlpaWdPn26rKxMl9Igi5s1a0Y9bWEwwcHBbLCbvqAo1gAZFBR0+fJlw8rhmJLvv/9+7969oo3QSffv3z927Ni8efN69+7t4+Pj6+tLppWbm6sqgGg+W5LXkEqOjo6GzSpSWFjo5+enUDZqokCDTqhGw3USp7rx5ZdfqmZy1J5UUFCQkZGRkJAQGhrq5eUVGBioPbeDomrRogUJo3Pnznl4eBgzYARRMyYmRqFsXbCzszO4HI4cZGVl/fWvfxVtJJ1UUVEB5b1q1aohQ4YEBATAcioV3L169Vq+fDl9jouLGz9+vDF1Q2mksCHmxowZY0xRHNPQvn37wYMHizaqvncj04KGHj58OIS10LQeP37M5pKAmTk5ORk2cIRo2rTpgwcP8KFJkyZ8ggl94TqJU92Ao0FkEm1U+97t1atXwtyucePGffv2XbhwIeV28EqNGjUivyYc7GYw0Fv29vYkyBB9KfJxzISXL19+/PHHP//8s3Cjpvdu2gV3UlIS62lr2CwAIhA1adjd69evucK2CGBI//u//zt79uzr168fP3588eLFCt36JzHTgmyCPqaNZ8+epTFrBrNkyZJZs2bhw6JFi/gUbvrCdRKnugHHVLt27dGjR+/duzc9PZ26vurSPwk65sqVK2vXrqXcztPT8969e/QvRDtjkjlGTEwMvYuBKzR+wDlHWmbMmPG3v/1txYoVmZmZiYmJiEw69k8SCm4PD482bdqQXy0vLx8wYIDx69XAMh0dHZnCPnXqlJEFckzA5cuXIyIimjRp0qpVq6VLl2JLt27ddG+Qxk2XcCaI4uJiODR8ePr0KX3g6A7XSZxqyN27d8eOHdunT5+4uDh6BzdlyhR9C+nfvz8SQWkrhgIpR0TstLa21qUjJ8eU7N+/f+DAgZGRkZDXhYWFyON//PFHvUqgl6qS+1VYIynsHTt2qL7Q4VRLILIl1MSQ7zQrWGBgIJ/CTS+qm04qKChYtGjRwYMH+ehHjpEcO3YMIVPaMvG42dvb08JMvXv3NrItnWOedOnSJTc3V9oyIfe5wq5pIK2SUBNv2rSJZm5bsWJFYmKiVMXWBKqVTqIhlGlpabRau4+PD625vWXLlvz8/Op0phwTAINxc3MzeHSbJuLj47du3apQduvu06ePtIVzzIHMzEzqsC8hsEY7OztS2BBMhw4dkrZ8jhmCm46IJpUmLisra9OmDT6UlJTwCSb0ovropDdv3jRu3FiUxhUXFx88eHD27Nk9e/aEbPLz82Pje0tLS6uqqhxLIS4uLisrS9oyz507FxoaqlDOgWltbf327Vtpy+dUORUVFdA0kjf5DBs2jCnsvn37Sls4xzxBWoUQJnmxISEhknS4rCFUE52Es2jdujU5ES0gJrHxvWwQ5vLly6vHReBIDjQNG3IiIXPmzKEPMTExGRkZkpfPqXJYdyIJuXr16r59+xTKHr5cYdcQ4IIkb3WG/TRv3vzSpUvSFluNqSY6CaKbzeivl/ouKCgIDw+XvLsup9rQoEED48craeLw4cO8YaBakpOTExERIV/5KPzEiRPylc8xHxo2bCitJqZhChIWWO2pDjpJOGOy8LOOQCQZthIFpyYwYcIEfZe81RFkdUFBQWw2Qk51An7VwcFBJoV948aNevXqIceTo3COuQEXJGGrM0Ikz830xdQ6qaio6Keffrp16xZ97dSp0+PHj40pEDHM39+fOtsatqyETN11OdWD69evd+zYUY6SY2Nj9Vr3m2NZ4Obu3LlT8mJfvHhhZ2cn+Xg6jtkCF2TMYsxCKFzK10BeXTGdToIQiYqK+vTTT9u2bYtkqE2bNhUVFd9+++3du3cNLlM4Y/L58+chd169eqX7z8eOHUszuMOj7d+/3+BqcKo3Xl5er1+/lrZMZHXQ9NWgNZejCXgnqcIbAxHOz89vw4YN0hbLMXO8vb2NWTGJEIZLjl6YTictXbq0Tp06z58/VyjHg9CK7sbopPv37zs7O9NSEoYtK5GamkozuMvUXZdTPZgxY8batWslLHDfvn1GLhXHsQjglKS9y3BTvGdJDSQ5OXn9+vXGlIDg6ODgcPv2bYlqVLMwnU7y9/en9WWEGKyTIIrd3Nyo8Zk+Q+voW8jjx48RrugzPtDcJByOiHv37rVu3Vqq0pDVWVtbG7buN8eymDx5spHhTQgUUs+ePaUqjWNBwAWFhISwr9u3bz9z5ozur8/UTprD0R3T6aTvv/9+165doo3QSQsWLOjdu/e8efOOHTum41uzd+/eBQcHU+9afG7RooXBPW2bNm1KM7jL112XUw1o0qSJJDO8Qx7Z2dnxmUtqCPAtwvBmDNu2bfPz8+M9S2osQhe0fPnyqKgoLy8vd3f3zp07T506dd++fdSHRBUKl5VOmsPRgul0EsLDxo0bRRuhk65evQqdu3Dhwr59+zZo0MDe3j4sLAyZU2ZmpqYbHxkZOX36dPY5JSXF4FrB4BISEhTKISQdOnQwuBxO9Wb+/PlLlixhX4uKigwoBFmdh4eH5BNXcswZHx8fFt7ev39vmNqGh3RycuI9S2oycEGIkqKNsKi8vLwNGzbEx8c3a9YM0dPf33/48OEVFRVsH+GkORzDMJ1Oio6OVh2xr/reTbhmO265jY0Nbj/uNEwBBgGzwC1n5Qg/G0ZJSQkcEH2Wo7sup3rw9OlT2CH7OmzYMFtbW4TA2NjY9PT08+fPVzrBCR60jh07wtnJXFOOeZGamkprxSuU8trT0xMZY0hICDVg69Lr4P79+/gJEjmZa8oxa5KTk5s0aeLt7a3deAoLC4WZmAET5XBUMZ1OwnP+6aefzpw58/r16ydPniRprEv/pIKCgoyMjISEhNDQ0Pr167NZAF6+fNm3b1/jx/OzGdwl767LqU60aNFC1MCJsAeXBP8VHh7u6Ojo6uras2fPOXPmHDlyBPpb9HNo/bi4OBPWl2MWPH78uHnz5sItcLn5+fmbNm0aNWpUYGBgvXr1/Pz8hgwZsmrVqosXLwpbAhTKzpewK96zpIYjHM8vdDvI7QMCAjQZT3Z2NrI7Pm+78Zh0/qRr165FRERAFEOaUGKN4KHXKwzYgbW1tcgajAQOi6axkba7LqeakZKSAhkEa9G0pnJZWdnp06fT0tKioqIaNmx4+fJl9q/Vq1cHBwfzObpqJohkSUlJiG2afB30d2ZmJvYJCwtr164d2049S2A8pqopxxyBSnZzc9P01lXodnx9fX18fKi/77p16/gsAFJhefNx9+/ff+/evRIWCDuztbWl6wDNTjMXcDhCnjx54uTktHDhwgkTJkDl29nZeXp6DhgwYOnSpZUOPDl48CB25rMA1Ex27NiB0LV8+fLY2Fh8gKsJCgoaO3bs1q1b2XS7moiOjuY9S2o4NJ5f9ylvWI+lGTNm8BnbpcLydNLRo0e7d+8ubZldunShJd5E3XU5HIWy/zWEjmhZ0+LiYgigWbNmdevWzdnZGb4sPDw8OTlZ1Gxw48YN/OvBgwcmrzWn6lHbEgB5BJEEqQTBZGNjo0lwwxfBokxeZY4ZIZz+hlOFWJ5OQoWRk0k711FmZmb//v0VKt11ORzYW4cOHVasWKF9N0Q4xDlEO8Q8RD5ra2tEwZEjR9rb2/NZAGomOrYECLubYH8nJyco72HDhvH1JWo4uPuwAT5bjTlgeTpJoezVJO1sEBUVFWvWrKHPqt11OTWZeCX6/or11aXZuTg1DYNbAqi7yfbt21WHAnBqFJGRkaozM3OqBIvUSefOnRP2dpSWlJQUCafQ5Vg0ixYt6ty5syU+I5wq5N27d7wloCbTqVOn77//vrS0lL42atQoIyNDrxKMn/KGIyEWqZOAs7Pzy5cvJS+WuuteuXJF8pI5Fkd2draXlxd/98HRF0S45OTkqq4Fp8qATvrmm29GjRpFX/XVSXx4rLlhqTpp4sSJkg+XVdtdl1MzuXDhAhQzX4WNoy+8JYADnZSamlq7du1r164p9NRJubm5fJFsc8NSddKNGzdatGghYYE0XXJ6erqEZXJMTGFh4aJFi1hDI4wkMzPTgHIgjxwdHfkMyDWHnJyc7du3s68wG8Pu/pYtW4KCgnhLQA0HOmnNmjVz58718/NTKHUSDOPBgweVNk7T8FjdZwHgmAZL1UmgYcOGhi2zpRbDuutyzApEu1q1ag0YMIC+wlUZIKZ5s2INJDIy8qOPPjp27Bh9hdmwgR26o30+QE7NgXQS5DLSrU2bNkEnzZ49u2XLlu7u7pBB2NigQYNWrVr16NFj+PDhycnJyM8zMjKgzp2cnPjwWDPEgnXSzJkzFy1aJElRixcv5t11qwHQSXA0P/zww6lTpxQG6SQ+A3LNBDqpQ4cONjY2tMiDATqJtwRwGKSTFErp/Le//Q1OSfTerby8vKCg4Pz58/v27cOeKSkpY8aMCQoKwt8qqjJHGxaskx48eECtmkaSnZ3t6ekp7YRMnCoBOgmp29q1axGxaK4HfXVSfHz8+PHjZaoex2yBTpo/fz4yfpr/Wl+dRLMAIOzJVkGOJcF0EujTp0+tWrVIJxUWFj59+lRTzH348KG0nUk4UmHBOgk0adKEzXQMI9Nx/W0hvLtudYJ0kkK5olZycjLppFmzZk2ZMmXp0qXbt2/HDlevXsXtVmv2iJS8WbFmQjoJ3uOzzz67efMmzGbevHmjR4+G8axatWr37t2nTp26c+fOq1evVH/L5wPkiBg1ahTrGfns2TMPDw94HnyePHly06ZNHT/QsGHD4ODgnj17smYkFxeX9+/fV1m9ORqwbJ20aNEiNhMXvBisEw7O2trax8dn4MCBtBRAWVmZpp/z7rrVDKaTrl+/joA3c+ZM2MPFixfhsxDt8HXkyJHwSkFBQfBQcF6urq74gK/Y2K9fP19fXz4LQM2EdBI+QFIjdMFsli1bduzYMagfuJHExMRBgwaFh4c3a9asQYMGbm5usBxYS4cOHaKjo9u1a0e/5XCI4uLiPn36VLpbaWnpvXv3zp07d+jQIdoCR4SvMteOozeWrZOKioooLqpuz8rKmjFjRrdu3ZycnBwcHDp27Dh16lQYJduHd9etfjCdBMaNG/fNN99U2o4NYUQdBUaMGAEhJX8dOeYI00lv376tV6/en//850rfu7169So/P//EiRPu7u5Pnz41STU5lsHs2bOnTZtmwA/T09PnzJkjeX04RmLZOglap3Hjxt7e3lFRUWlpaSdPnlQ77QR8HwIhTPDOnTu0BWcdEhLCu+tWM4Q6qays7IcffmA6CYIYNnD//n02Sa6I69evyzfJO8fMYToJILmvVasW6SQooYyMjNzcXLiO169fq/3t+PHjt23bZrq6cswbBBc7OzvDpPPNmzdDQ0MlrxLHSCxYJ7179w5aZ8eOHUwGDRkypGnTpg0bNmzfvn1SUlJmZubDhw/V/jY+Pn706NEmrjBHbgoLC1NTU58/f05fz507R70EysvLJ02aFBMT06lTJ39/f3clbm5usJaOHTuylgN7e/sqqzqnSoHCzsrKYl83bdpEr+PPnDkzZsyYfv36wdV4enpStxIXF5fAwMCuXbvSPgcOHBg0aFCVVZ1jZuzbt69Hjx4G/9zBwUHCynAkwYJ1Uv/+/TUtE3j//n1kgQkJCe3atYNsCggIGD58+KpVqy5evFhRUcG761ZjGjVqpHuHs+Li4ry8PNb3PywsDF9lqxrHfMnPz4ej0HFn+BAocjgT6tb95s0bDw8POWvHsSSCg4PPnj1r8M+RuV29elXC+nCMx1J1ErSO7osDwJ0dP3584cKFffv29fLy6t27N++uWy2Be2rVqpXBP09NTV28eLGE9eFYCkOHDjVm9WuoczmWm+RYHEi61HaZ1R2EtrS0NKnqo1DO4RQQEPD999/b2tqOHz+exz4DsEidtGPHDtx4vjgARwQU8J49ewz++c8//9y1a1cJ68OxCEpLS62trY2JH3FxccYYHsfSefDgwYoVKxYtWrR7924jJ9S+ePFily5dpKrYpUuXPvvsM0RMhEtUsnnz5v369ZOq8JqD5ekkWCFfHICjSnFxsYODgzH2/P79e945oAaybNmyCRMmGFPCrl27RowYIVV9OJbFzp07a9euPWTIkISEBGdn59DQUGNyeHgwCb1Q9+7dhetxPXny5OOPPy4sLJSq/BqChemk+/fvw4Zu3bpV1RUxBKSt8+fP79Onz8CBA/fv31/V1aluzJo1y/ghtUFBQfpOVcqxdDw8PDQN+NARpG3e3t5S1YdjQeDW/8///M+JEyfo6y+//OLq6mrki7Pg4GA2NNtI6tatKxqMaW1tbdjq4DUZE+mkmzdvsvHYFRUVt2/fNqCQly9furm55ebmSlkzU/HmzZsGDRp06tQJqeeGDRtsbGz4gDsJoSTM+D4i06dPl2+2iLdv3z5//pz3DzAr4E/wVBpfjru7u5YpbTnVlYyMDCsrK+GWRYsWId0ypszk5OSVK1caV6//zw8//LBz507hFoQexCBJCq85mEgn1apVi71zRb7+ySef6FuCpS9QOm/evMaNG7OvyF9///vfG6YXOars379/wIABxpeDqKnLRLr68v79e8jir776ysnJ6S9/+QsfSWA+dO3alTUGGMPAgQPZrMoSUlRU1K5du9q1a3/77be2trai5VQ5Vc6CBQs8PT2FW9asWWNkV+5Tp07BRRhXLwW9dWnTps3UqVPZRridP/7xj/n5+UYWXtMwnU6yt7cnP2KYToqMjExMTJShaiZCZK8K5RiZ9PT0qqpP9eDcuXPIvaZPnw7TKikpMb7AiooKZ2dn48sRMWvWLBcXl+LiYoXy9WtgYOCwYcMkPwpHRxAtNm3aNGXKFAQ5qWbk37x586RJkyQpSkjDhg2HDBlC/V2g5z7//PMzZ85IfhSOwezYsaN+/frCLUuXLjVgOVuExbZt216+fFlhtBdCTIdtQ73BzjMzM6Gwb968qVBma4MHDxam6xwdMZ1OQsZfr169t2/fGqCTZs+ebekzHnl5ecEpC7fgWeLLQhnDuHHj6tSpM2PGDKgQqPCIiAhJim3atOnjx48lKYrxj3/8Q9gSkJeX94c//IEP2KwSXrx44ejoGBoaiudx5MiRtWvXFr2YMAzYDCzH+HKEnD179k9/+pPQTsaOHStHeyfHYIqKin7/+99fuXKFviJIQYikpqbqXgJiIlJod3f3I0eO0BYaqwT/ZkC3OSRjQUFBgwYNQrEKpTaCbvvmm2/gIf/6179Cij179kzfMjmm00kK5Qxa0Lmkky5evHjq1Cl81rSOBAOC3cfHx9LfU3Tv3h1OWbjFxsZm69atVVUfS+fatWvIrdniAG/evPnqq68kGZs9adKkzZs3G18OA48Y7F/UMfPjjz8WrjbIMRlDhw4VdkiCfv3yyy8lWaTd2dm5oqLC+HIYq1evFs1guWbNGtFbHk6Vs3jxYkiQefPmrV27NiQkpFGjRuXl5devX9flt4cOHYIkmjZtGlnOy5cvIXH8/PwgkXH3Efjat29/+PBhHWvy008/2dnZbdy4kb5CrtEsADDv58+fVxpqOZowqU4qKCj44osv9u3bB50Ek0Ji1Lp164YNGyK9c3BwgKBu1apVjx49aEXSVatWZWZmbtiwwdbW9smTJyaopKzAHX/33Xfs3dDRo0c//fRTms+XYwDwSvAgwi2xsbGSvMyC5xo4cKDx5Qj5j//4D2GfADx0v/vd7x48eCDtUTi6YG1tjdSLfcW9gE4ycs4bAg5N2lEm69atg1cUboFO4gPrzJDTp0+PGzcuLi4OtwyK5927dy1bttS+FO6jR4+6dOnSrl07li+tX78eoRCBTxiUz58/D63ToEGDBQsWaI8XixYtcnFxIX2GPeEeYZB8bIEkmFQngalTp+KWq33vxlZuhzyCrUAqQTA1a9Zs+/btclQpJiZGODxy1KhRmzZtkuNADCSy//jHP5Au9O7d++uvv+aDDowhPj4+KipKuCUpKUn3Kdq1AM8iCk4G8+zZsy1btuCDk5MTFD/bjrSvdu3akhyCoy/ffvstshThFhsbm5ycHONLXr169fTp040vR6HseHfjxo2LFy9+/PHHwlA3ePBgOC5JDsGRFUil/v37R0RE0PsvIe/fv0ea5+zszALQtWvXAgICBgwYQF0YVUGCjZ94eHhgH9VVTd68eRMeHt69e3daBh5mA70lU+dX1PDmzZs1LcM3tU6C0dSpU4fppEr73m7cuHHKlClyVKlFixZsAVTQqVMn+XoLlZaW0nC/vLw8nNGPP/6o6Xng6AhuFlIx4RYIUIhdw0p78OBB586d2cxJSNmNn8j01KlTtra2pPLXrl373XffwX8plHNkIDBrzzU58oGLL5xRhtqTqP+sAezfv79v3770GfZj5IBwYtGiRT4+PtTMEBgY2KtXL4p/u3fv/vTTT3V8ocMxByBuIIDYytwKZQho1KjRuHHj6C0Y7uyIESO8vLx0XBLu4MGDHTp0aNasGRIw6rgG2QTJxRZcgliHSCJXIy2vX78OCwv75ptvmjRpgkemT58+lt4ZRndMpJNCQ0PZm/tDhw5169aNPuOW4x67KmnatCliVWxsbGJi4tKlS6klvLCw0ICxA7pgSp20fPlymvD34cOHot7cHMO4cuXKZ599JuyfhAfYgAHeEO7Tp0+H+bFxT+Xl5W3bth06dCgr3ADmzp3bsGFDNiEqHMqyZcusra3/+Mc//vOf/5w1a5ZFD0qwaIYPHy7qn/TDDz8Y0D8JOgZKvX379uz9KRSwm5sbRJjBPfSRpoeHhws74WILAtJf//rXb7/9tnHjxpJMYcAxJXv37oVVsNfuRUVFbKFuJFFOTk6QOPqaH8JiQkJCgwYN8Bcy69y5cwql44KpwCYlGfmrCvIBxGvSRvC3/v7+NWcKQBPppJUrV86YMUP7PpCrd+7cOX36NL13Y/oaMUySXpYioJNw16d8wN7eXj6dxCb8HTNmjPD9C8cYcDGF493wGMOY9Ro1DW0E65o2bRpLjPbs2QPhjjKR07u7u3fp0kXfyITABrkfGRkJt6VQOq/+/fvLMWKcYxgvX74UjXdDjl5QUKD7Yg6wlqSkJNhJVlYWbSkrK0MiZGtri2weCtvBwQE76Nur8urVq3AUbGwHqoTE/dq1a3oVwjFDLl26BD8jfLcLSd2qVavevXsbk4xBjkNpBQYGIg9HSgbZlJKSIkV91QDXKhzWBw4fPowEQ6bDmRsm0kne3t4Gj7Xu0aPHzz//LG19FEqd1KtXr0UfgB3LpJNyc3OpxzHcKxy06utqjsGw+ZOOHz+uUGoUX19fXQblIgjhpkAos8aAu3fvInZCGAnjJe4dtkAwIeeDjq+0WIQ65I5sNlSU6enpOXPmTN56ZFYI50+CJWAL7AdSW5fe3Pv27cNTDBnEtPXu3buhkBITE9mW0tLSJUuWIG517dr15MmTulQJNtOoUSP2Tm3v3r3wSEgaDTk9jvkBPeTn54f8nyQ1BLFUXf7hl3x8fGBssrY1Is+vVetXauH58+esO021xxQ6CcHMmJUBli1bNnfuXAnrQ5jsvRt8JWUSa9euNXK5TU6lIFZ17969f//+mt59YIepU6ciCB04cIBtQciEGNI0/hY+btq0aQ4ODjExMVry+w0bNqAQ1ssSoQ4/4S9KLAVoFAggiB5NO9BMgK1bt2b92PChjRJNawJCfsGx0IyymkYelZeXR0ZGsqFJ79+/Hz9+PMrkXRirGbjRyM3gE5DISTt3GnIzOV65CCFVRG3kBPLJ//qv/5L1oOaDKXQSXIBogIlewH+JRoBLgml0EkIslD599vb2NnK5TY6OILlv1aqV6qCMrKwsFxeX5ORk1lsuOzsbW2bMmFHpzDfwRLt27UKx/v7+W7ZsEe7/9u3bAQMGdO7cmY6IPceNG9esWTO557O4cePG/v37T58+zaeslISioqLGjRur9iCEkp48ebKdnR0bo0qv3uzt7XWZsuvRo0cJCQnYOS4uTrRU0a1bt7y8vJYvX05fYTCBgYFQ7bK6ZSiwH3/8cePGjXl5efIdhaPKvn37YmNjJS8WQlzaibvU8s033wgzyfXr1zds2FDug5oJsuukFy9eGH81kedJUhkhptFJU6dOpbWjz54926FDB8nL52iC5p65f/8+23LixImOHTsyqYoPuOlhYWH6zmOE2IaAh7A3YcIEFIIo6OPjs2jRIvovlHHz5s0nTpwoa4aHxA7mVL9+/d69e/v6+uIDX7NJEnBhqSe1UHoOHjx4/PjxbJo+aGt4JOGLNl1AJIO8btKkSXBw8N69e+F4d+/eDRNlQ5NycnJcXV3ZpMwygVThiy++6Nq1KwL2d999Fx0dzV8KmwxEHDlW34IrMMFSoampqba2tpcuXXr+/Hlubu7f//53mvSkJiC7TsLFZSHEYNq1a0cr1EjI3bt32bgDhTI1N34ouAhESkRTGtPbo0cP6kPDMRnU6US1ZzciFi24tn//foMLR0BdtWqVl5dX27Ztly1bRhshxZycnKRaMkwLkydP9vf3Z7Ecp4Pjyn3QGgJcImRuUFCQao80yGLEpJCQEE0v2nTh8uXLUVFRuF9jxoyh3lE44syZMwMCAuRugITUo37r9BWuqV69enLPG8dh4DldsmSJ5MWOGDGC9SKQiaKiItjt8uXL3dzcvv/+e/g9Nut3TUB2neTn52f8nFQpKSmSz5oVGRn5+9//nsnwFi1aSL4W986dO5GJKpRtDKL1Bzim4datW87Ozj/++CPbgqwdSTx0hlSTf1D3u5MnTyIlgLVT5JMbRFnhPKUQbf/5n//JpiHgGA9SfzyzrK0R2hpSxsHBQTg5rTGUlJTMnTsXaqy4uLhNmzbQTCZ4ebpv3z47OzvhlqSkJDl6NXDUMnr0aOHcXVKRlpYmh/wSMmnSpDlz5iiUI2Bq4FAkWXQSki1ar3HUqFGqk4cawNmzZ3v27Gl8OUKgkxBsWrVqRV/l0EmBgYHUZDVt2rSlS5dKWzhHR54/f960aVMEucePH3fr1s3IxgC1IKbGKTFBLwHiT3/6k2gquW+//Zb3GZcWSGp7e3vo4CNHjri6uiYkJEg+sR6kGFzl3r17pS1WEwsXLhRNR8cXQjElvXv3PnbsmOTF7t+/3+ApdnUBbq1evXovX77E58aNGxszl4GFIr1Ounz5cu3atZGm4OalpKR8+eWXui/jpwlkWs7OzpJUjwGdBIHMFnuSXCdBIUEnKZRv3yDI+BqEVQgSoC5duiAmybRWDHzf0KFD5ShZEz/88IPoNe4nn3xy6dIlU9ahJpCfnw+zadmypeTamujUqdP58+flKFktmzdv9vLyEm6ZP3++JHOIc3QBSZoc06nfvHnTmBHllbJly5bo6GiFchm7Hj16yHcgs0V6nQRxkJyczL6uXLlSkl7YzZo1e/TokfHlMKCT4COys7P/+te/vnnzRnKd9OzZs40bN2ZlZW3fvt3EQZSjClJ2+SZlePDgATygTIWrpWfPniNGjGBfc3NzP/vss5qzjIAp6datm7Ajo7SMHDlSpvUr1fL48WPoaaEjbd26tUwLQ3FUadSokXANE6lAHujp6Sl5sQxfX19a2Kdr1656TeRbbZBYJ71///53v/udsJ9EcXFxrVq1jG+pS0hIkLa/IekkhTKlg7eCTtq2bZsky/uhkLS0NB8fnwEDBtjb20N+CUddcaqEVatWyTffukL5AkW+wlVBVlq7du2ZM2ciw1u/fv13333HX+zKRPPmzSUf4cFYsmSJfHMoq2X06NEuLi5IG06cODF48OB//vOf8p0dR4S1tbVMJUu1dLcqUEjQSQplL1sENZmOYuZIrJNevnwJVSR68LDF4FZrNrj68OHDAwcONLZ+AphOKiws/Oqrr2xtbefOnevk5BQTE2PwtCIXL16Miory8/OD+6PBMgsXLkxKSpKw2hzDgKTYvHmzfOWzWbJMwMOHDyG+79y5M2zYsHbt2vXt29f4V9scTcg6SUx2djYN9TANkNRPnjzZsGFDly5dwsLCEhMT+WyWpkQ+neTv7y+cBFJCENFoLR1YC7JNOQ5h/kj/3u3zzz8XNs1BIf3mN7+hsfF6gYqlp6dDwJJUKisrk0oyFxQUBAcH9+rVizUwpKamQswh9uBYe/bsCQoKQhK5Y8cOHUegwEBXr17dtGlTlHnq1Cnhv169egUFJvdkqZxKGTlyJBsOLQcwGDla1NUyduxYWiUQEt8E86bUcGRtKbx586bJ3tiWlpbWr1+fXs7m5OTwt7QmpqKiQjTYUF/GjBkjjK3IwHEfsXH69OlsI/J/CfvSlZSU1KtXr0KJi4tLjbUZ6XVS7969+/Tpw77iLiKE6FsItfUNHTqUvQijeZORQBs5kdKBAwcgXI4cObJmzZpDhw7RRughZHXC1Z2QrI8YMcLV1XXq1KlaXhreuHEDVfLy8kpJSdHUfA09LlP3YY7uRERECBdxlJzo6Gi2crOs0CqB5LDwgJiyd0vNRNb2JAo/8pUvZPny5bTAO4Kfvb09T95MDLKaJk2aGFNCo0aNhJ1oaapkbPztb3/Lxrp+++23uixTqCNz5sxJSEhQKLtyk/HUTKTXScXFxcjAmjVrFhcX17p1a4iS+/fv//zzzzq+BUfSEx8f37hxY7b2LcwrPDw8LCzs3r17W7duDQgIgPD68ccf9X3Ocaa45X5+frovDF5eXg5DxE+6d+8uXJMS3g01adWqVadOnZjY0sTFixdbtmypV1U5kgNTlHUSP6R0ppmvb8OGDWPHjlUonxQHBwce7WTlzZs3/v7+sh5CjsUG1AK3TB0lU1NThS0QHNMA+WLkkgyadFJsbKydnR1NSiKhTkLERLHkNqHwEH8lKdYSkWX+JPjuI0eObNy48eDBg3Tz9u/fj6e00vZAGIGTk1NaWhrVCuXMnTvX2dlZNL9IXl4eLAMp0eTJkx8/fqxLlYqKiiBWDJ7h5vz583369PH19V20aNG4ceNgmklJSToeGnh5eck0rpijI7hlskoKiCTTxB4YIU1+uHjxYt71TW5u374t64hr4OPjQzPTyMqZM2fatm2rUAY/+Nhnz57JfUSOiOzsbCO72MKJ9e/ff9EHbGxsSCchbgYHB0+dOlUhqU5CnMXhFMrXO2Q8NRZTrINL4Oa5urr+9NNPav+LRAd3olu3bizpx56wAIgSTetsI9VDqHB3d4cj077O7unTp5F5Gz8R6osXL6Kjo0eNGqVvxIU1jxw50sijc4xB7iUbz549GxUVJeshFMqHqF27dvQZll8DJ3wzMXAdMTExsh6iZ8+eEr4o0URERAQtbYHctXv37nIfjqPKhg0bJk6caEwJCIihoaFxH/j73//OdNKtW7c+++wzyHqpdNLbt283btzo5+fXunXrCRMmyNq50/wxnU5SKKeZ8fLyonkdGWyxLTZmp7i4GDI2ICBAxym5jh8/3qVLF4iwBQsWqA7sh+52c3OTanavR48eGdAO/8svv1hbW5uyE1xhYSGEJl/IgiH3uP3nz58b0A9PX/r27UsOKycnp2vXrnIfjrN79+5JkybJegiUL1xXRw7gUeFgydVDZ4vGmnBMw5w5cxYuXGhMCZreu9HGxMTEsLAw6KS0tLSlS5caPLPx/fv3x4wZY2dnN2LECAgv5AlSrdVjuZhUJymU47+Cg4NppRji2rVrwsW2cOMdHR1pOI9ePHnyZMqUKbi70Fg0KdabN2+gn5A8STsXdvv27Q2Y+Bjyf/369RJWQxPQnT169Pjzn/8Mh1inTh1fX1+5F9c0f5AbmWDmD/mmMCEQ7ZAM0Gc4RL5KiQlIT09H1JH1EKtWrRL6QzlA+ampqQrljBKmnMCCIwT5PAUmg9Guk8rLy+vWrfvb3/720KFD0EwIhUOGDNG9geD9+/d79+4NCQnx9vZeu3Ytm2UAdeYztptaJymUg8uio6NjY2NFo+4hmAICAgYOHFhSUmJw4bjZO3fubNasGeIi9Na4ceOMrq8YWKEBb1hu3rxJs3XJzbRp0zw9PellJW4usoEa/mpZoWxdk+oizJo1S2if8+fPhwzF35ycHPYWTKYJjhHt5s2bp+DRzoTMmDFjy5YtxpeDYCPs5p+fn7969Wr8nTp1akFBQVFRkUL56laOhiU4Achr6gI1fvz45cuXS34IjmnQrpMUyi5QtWrVovduCK/btm1DSEU01D7HzbNnz6ZPn25vbx8ZGan2nV3jxo1reP/aKtBJxMyZM9u0aUOTMZaWlo4ZMwb3W6qR1d27d4fqevToESxJ8h6LuGIuLi4GzNwdGBgox+I+IurXr79//372FRfho48+quFT7p4/fx4uQJKiPvnkE6HLoN4A+Pv1118z/QRXJcmxhAitbuzYscuWLZP8EBxVhg8fDgVsfDmIZ8IFaBHYKLzBVOLj42kj1LYcfcZZXldRUWFjY8MXmrRcHjx4IJyJEOkfHIJo4507d0QdPPLy8pAt29raqg57ys3N7dq1q5OTExIwLc0TsF4EaOnOw/KoMp0Etm7d6u3tjbwK92nhwoUSDkfCvafJcqKjo0+ePClVsYyUlBR9F8FANO3Vqxd7BQbntWTJEskrBn7zm9+ItP8f/vAHE3QUNWeysrJoLL3xaNJJbdu2ZR1+5dBJ0L409oT6uvFoZxp69uyJjMv4cjTpJC8vry+++OLq1asK2XRS+/bt6XXPpk2b+EKTNZbXr18vWrTI1dW1c+fOcCaLFy92c3Pr0KGDLlP5l5eXQ2G/ffvWBPU0T6pSJ4EdO3a0atVK9wH2OjJu3DhqikxOTl63bp20hSt+3VNER1Cfjz76KDw8nL7K5BPB//7v/wo9+7t37/77v//bBO1Y5sz69eulWkULOgm38qcP1K5dm3TSzz///OWXX547d04hj05CwKZot3btWh7tTEZQUJAkgwqhkxo3bnzzA8iRSCdBPCGV9/PzU8jjE54/f96sWTP6jKPIt6Avx1LIyclp06YNkna91pWHzzHN/HDmSRXrpIMHD0ZHR0te7IoVK6jf4tatWxMTEyUvX6GMW3otqgWfCP1ubW2dlZWlkFMnQXcK27pyc3M///zzGj4bIUSSASMD1AKdhAjX5AO//e1vSSfdvXsXwc/d3R2XWnKdhId09+7dLVu2zMzM9PDwyM/Pl7Z8jiakmk4COumzzz5jZmNvb890Em4uzAb2KYdPKC0tTUtL69Onz/nz500wHpNjESCRDg4O1usnyLRJzddMqlgnbd68WY6u1lAwsbGx+ID8PiIiQvLyFcqJVdq3b6/7/tTSvmfPnh9++KGsrEw+nXT8+PEvvvjixx9/RNp64sSJ+vXryz2axvwZO3YsyVPj0fTeDRvxKEHELF++HDrp1KlTkqiZoqKi5ORkJyenqKgoJIII2zW8Q6WJkVAnqX3vRhvhTP7yl79MmTKF5vfXcVlJ7Vy5ciUmJsbT0xOuZsKECUuXLi0oKDC+WE71wN/fX19PAn0vyTtoS6SKddLChQvliOL3799v1aqVQjkzpHwDwhEUHz58qOPO5BkVypb8MWPGyKSTTp48CXl07NgxpAsIrngYTDMZgZkDnWTkiFyGFp2kUHYY//rrr6GTEO0CAgIQBXfv3m1YYx5uZffu3d3d3YWzgsFmhOvncOQmNDRUknK06yTQr1+/r776qmPHjkOHDrW3t09MTNTrtQjjl19+wSMP24OpsB7oT58+NcG8GBwLYuPGjaNGjdLrJ5s2baLWhxpIFeukiRMnSvVCRAgiE1s1CU5H8vKJJUuW6DIHXXl5+bp162bPnk06CQH1iy++iI+Pl0Mnef2/9s48rolr7eP+cW3V3mtba+tSl0u1rQtCWAUEAQFRFBdEtC6gCCKoKFdEQKRataIVEUUrFEEWhSqIgAguLGFTKiBwWUREKKsiGJayGdH30bnNm9IISWYmCzzfT8xnksx58uCcnPM7c855Hi0tIoUT3nWgib51ErBz507OvFtpaen27duhKnp6er548YIf++3t7VCvQIKvWbPm71HmU1NTN2zYQMXfgYiUfnVSY2PjqFGjiDahs7MzMDAQTgDZxP9uu4qKCmdnZ1VVVZ7ZnKA6EYvnEOTNu5ByDAZDoNDHcDKxlWQQImadZG9vT9WESC/k5OSIA2VlZZoCYUOXNmvWrD4Sxj1+/Hj37t0g1Pbt2xccHEzopDfvQhxBd0u5ToL/SSsrqzfvFiVwUsoj1BIVFcW9Cxe6uubmZnjmvNna2gpjNe4ibW1tZ8+eVVFR2bRpUx991cOHD+HnAI2Xh4dHH6FBlZSU+JRciORQVlbGHdQYVHV0dDQ8c78JkigxMZG71G+//bZx40aQPjwzDRC8evUqNjZ28eLFixYtgoP33bwE40TjgCAErq6uAt2kgA5LRkaG09D1CuY0sBGzToL/+ry8PDosz58/n0gXumLFCvp2e23fvv3vaeNAqkdGRhoaGi5YsODq1auEkOLMu715F8gEBBblOklfX59YE+Pj43PixAlqjSPkSU5Ohtqora0dFhbG2WQLBxEREXp6etDVxcXF9TtJBxfX09OTfmcRSYGzRo2TaYCgvr7+0KFDoJudnJz4yVCkpqbGYrHo9BSRJkCmC7Q0GzqsCRMmwMifeIk6SXRA187/Eh+B2Lx5MzFt4ejoSF96Gmi2DAwMOC+h5u3du1deXn7Pnj3l5eXcZzY3N3MvgoM2rqCgwMbGhpI1mwD8sUTQge7ubgUFBSKAJyKB1NTUEJXExcWFOCDyKPFZHCoSg8EQ788WET0goBMSEpYsWQKS+uzZs6ampiC4Q0NDOfkl+gVKURUdAxkYGBsb879wE3QSDNK+/PLL/Pz8N6iTRAl900NHjx4NDg5+8651EDQmpEBAa1VcXEzc+oYmLDw8nP+/CByjKizCokWLiNCaAQEBMMqkxCZCH1BJTp06NX/+fP77OQ6bNm26efMmHV4hkk9lZaWRkZEQyzrb2toUFRVRYSMc4uLitm3bxufJoJMuXrwIfRYR/QR1kuiYMWMGTZahHSEiDty4cYPWuHyXLl2aOXOmg4ODcHsmt2/fTl7G5eTkEBtzoPoqKyvj3XVpQUtLS4iUMnC5ly5dSoc/iFTAZDKtra2FKGhjY8Od1AgZ5EB/wWAw+Jx8IHQSFFFRUTl//jzqJNEBCoMmy1VVVdAiZGRkJCQk0BqNurS01MLCQujir169WrZsGcmZQRMTEyI1XlhYmLOzMxlTiCjx9fX18fERoqC6ujpuaRzMqKqqCqGw8/PzobWhwx9ESjly5Mgvv/zSxwlPnz49fPgw1DczMzPQSW/eJWweP368oqIi6iRR0NraOnv2bJqMZ2VlTZw40djY2NLScurUqaCFqVoJ1Ivnz5/Dt5Cx0NLSAtpc6BRshYWFRLAoIrBvH1ulEEmjra1NTU1NiIIBAQF79+6l3B9EWgB5TaQcEJS5c+fCGJJyfxAp5dmzZzx7YehNkpOTQRtB3xQYGNjR0UHcTyI+3bFjx5AhQ1AniYLHjx8LGj2dT9hstoyMDGcKv729ncFg0JR3FuQXebVXXV0ttMRZs2ZNRkYGHMTGxnJSsSLSgq2tbWpqqqCloNmaNm0ahn4YtMDgStAUkwShoaGosBFuVq9efe/ePc5LFovl7e2trKxsZWVFTFMQuLq6cuY9WltbQXDHxcUJcVNTGhGnTsrKytq4cSNNlkeNGsW9xTo4OFhfX5+O73rz7h44eSNQU3V0dLhj8/ADaE3OhjtOkElEiigoKIB2StBSDx488PDw4NTwtLQ0jCI42Ni8eXNKSoqgpcLCwq5du8Z5GRgY+L7ITMgggclkmpubv3kXr8vS0hIUko+PDz8CKCIiYt68eYNhtCZOnXT9+nVOMAZqiY2NnTVrVq/vkpWVpeO73lCkk4DIyMjvvvuu7yvCZrOfPXtWUlKSnp4eExPz888/u7m5JSYmcoJMIlKHrq6uoLcSjxw5MmTIEM4d0y1btsA7NLiGSC55eXkCpZgkgGbwiy++4Gz16BVfHhmcKCoqqqurw4BN0Hvb0OwIvTy3trMt+unjsNqH91h1bMnO1C5OnQRDmePHj9NhGUTD5MmTud+JioqiSs38HRDgwuXw+jtQ7aDPCwoK8vLyAgFkZ2e3atUqAwMDJSUlBoOhoKCgoqJiaGgIcmrbtm3u7u7e3t7BwcGampo//vgjppGXUkJDQwVVOXD+4sWLJ06cSAz7UCcNTrS1tevr6wUqAjppyZIltra2xEvUScgbchshra2tBW18Xvb02BcmyTFDvko6P+GO30xmkEraxSwWLZEUKUGcOglEEkglOizDaGn48OHcG/U3btzo5OREx3cBoGOeP39OiSkYI4LoOXnyJKif69evZ2ZmlpaWgvG+ddiTJ0/4396JSBpdXV2CSm1omPbs2QMtFCikN6iTBishISGCBksDnZSenj5p0iQioTLqJATYv3//rVu3hCvb3d09b968Xsma+qDn9WuT7Jh/J/qPv+PH/ZiREpTeVCOcD3QjTp3U0dFB39Smp6fn9OnTY2Njs7Ky9u7dC+3C33NDUoWZmZlwwZN6AT0liCThErn4+vpSFbISET2Ojo5xcXH8n0/opMbGxi+++OLu3buokwYnoLAVFBQE2skLOqmgoCAqKkpJSQkKok5CgFOnToWFhQldvLm5WVVVlXsxeB9E1T/+Njmwl0giHqrplyQzDqqY4yfRSkxMjLm5uampqbu7O1X3e3gCAiUzM5O8nXPnzkF/KVxZuI6GhoZCjwkQ8VJWVsZ/dInU1NRDhw6BToLjCxcuQAtlY2ODOmlwsnv37ujoaH7OhHEpNFOETnrz7i746dOnUSchQHh4OEglMhaqqqqmT5/OT11a+FsUT5EEj+kpFx60SGJcm4Gsk0SGm5sb9xYS4Xj27Jm8vDyZubPq6mpoBDEYt5QCMrfvVgYGbdCWKSsrW1paQpUjdBL8fufOnTthwgTUSYOT8vLyhQsX9n1OaWnpzp07GQyGt7c3RyfBm2PGjBk2bBjqJOT27dtE+goy3Lt3733hT0GjQ/eUl5d3586dSd/bfbz9u39ZLPlo2bxhuiofO23g6CSZRP+r9WUk3aAD1EkUcOLEiYCAAJJG1q5dGxsbS9JIUFDQ+vXrSRpBxMLVq1ddXV15fnT//n1ivy7oJKIZIubdiE+Li4uHDh2KOmnQYmRkxHMPB5vNjoyMNDAwgBOgbSEWwHF0EgBVaMiQIaiTkNzc3K1bt5K3Ex0draenB6ZWr14NFU/hTzQ0NIyNjTds2LBr166Jdms+cbT49IDdZ167R/vv/1BpxmeeuwidNCUp4FZDJXk3KAd1EgVcuHCB5Ma9xMREIkEbeZYuXQqNIyWmEFECvZqioiL3ir329nZ/f/85c+ZAo8NkMrlPfvDgQVZWFudlfHw8dIR43QcnMTExvebr6+rqfvjhB3l5eScnpydPnnB/dOXKlaamJuK4ra3N19c3MDAQ464NcqACrFy5krydGzdumJmZZWRkPHz48Pnz5zzVhUtJ2gSuubYx4Uf/MWXi2JhTcDyLGcx6KXBecBGAOokCoIvav39/QEBAbW2tEMWJ7U41NdQs9X/69Om0adPgmRJriChxd3cnQiIVFRVt376dwWB4eHjwuf8ABJahoSEIbpp9RCSOnp4eGLJ3dnZCY56UlGRqaqqlpRUcHAwNCz/FCwoKQIsPksDKCE86Ojr09PRIGoEaqKqq2tjY2PdpT7vaQQ9xL0v6xGXTcEONqUkBu4sFzkwgGlAnkcXFxUVOTu7IkSPOzs4wOBPCAmgskmvoegFDRpoSwiC0AqM6FRUVXV1duHzx8fGCBuWCrg6Kl5aWkvHhdUcH++FD9uPHr9lsMnYQUXL48GFzc3MYbllbWwsRmT0mJgaqHMkMmLWdbfktDfBMxggiLjQ0NEha2Ldv3/nz5/k58+6LOkZqyJdcUulf2iq6J79/9VpCo02iTiLL559/zud+SJ48evQIBnOU5+iF+tr9jvLycu57S7W1tdypUerr6zFrgUQBAzIykyBlZWVqamrCJQp81dDQevhw87ZtLDs71tatcPCHr+9r/u5JIOIlOzvbyMiIzD0hT09PTvBJQbnT8LtGRvgsZvBMZpAsM1gtPezGsyf9F0MkCXV1dTLFoSODAR7/cqKpu9O5JA2qjUraxSX3oyMf5snLy9O6LZ0MqJPIMnv2bGNjY+Fm3ID58+fn5ORQ6xLByZMnx48fr6OjM336dPgNEMsUQJNxJ3mGtpWTAhqRBKCt6ezsJGMhLS1NU1OTzzkXDq9+/73Z3p61YcNfHpaWLS4urwXMOYiInrq6OmhJSBqxsrI6e/asoKW8nuRMS7nQa4P3t8kXjpRl9V8YkRhI3k9asGBBfn4+GQvQMZmYmJCxQB+ok8gCCsnMzGz48OHz5s2rrq6Gly9fvuSz7KVLl3bs2EGHV1FRUVOmTOHkNDh69OiMGTPgWqNOknBWrFhRVVVF0khoaOjatWv5/2m/fvmy2cGht0j6Uyq1eniQ9Aehm+7ubmVlZfJG9PX1uduHfsloqp2REvS+WDiJz3EnndTg5+eXnJwsaBocgvDwcAcHB/I+bNq0KSQkhLwdykGdRA0dHR22trZEyhE1NTU9PT13d/fExMQ+4iGxWCwlJSWapr1WrVrl5eXFeclms0ePHl1YWIg6ScLZsmVLdnY2eTt79+7lBA7oly4mk7V5M2+dtGFD8/btr3BbgMQjLy9P3khDQ4OioiIncEC/GGZFvi9mIDzmZvKbywIRI6CPDQwM4LqbmprCcFrQcVpLS4uKigolHVlra6uCgoIE7r5EnUQZ8fHxMjIyxPGLFy9iYmJ27dqloaEB0sTR0RFecrbjEoCuioqKoskZqG29xoXq6urwDjgzZcoUxT8ZOXIk6iSJws3N7ebNm+TtwO96zZo1oaGh/Jzcdvr0+0TS28fGjZ24jU7igZ8zJXZKSkqgs+RnlyW7p0f2rxuXej3g064eildeIpQD3RAx2yBccXt7+4iICKqcuXv3blFRUU9PD4zqc3JyOKtpQYdx3+uC94Ve6yIEqJNIwWazFy1adPLkybNnz8rKyvIMaQoXOCEhwcXFRUtLS0lJyc7OLiwsDCTL0qVL6XMM9FCvugvN6K1bt+D98PDwF38CwwjUSRIFkQKZElMdHR2amprckQKgKlZWVubm5oIUg0ro4+Pzww8/QDNnxmAYfPnlnLFj4aE5duwKGZleUqmTdLh5hG6UlZXZFG1RvH37NgyruDd8dHV11dTU5OfnJyUlQQNy5syZAwcO2Gy1+1hf/UPlGUO/njR06tvHsDmML0J+5OikWczgFjZdGTwRqkhJSYEBs3Crix48eAA9ILX+3L9/f/LkyXp6ekuWLBk7dqynpye8Cf2UkZER5xxizE/t9/YB6iSyFBQUwIX08PCIjY3t9z8Tui6olNDEyMjIGBsb839/W1D+85//cK98qqur++ijjxobG3HeTcIJDQ09ceIEVdYaGhpUVVWJe4fQj+ro6JiZmdna2u7bt8/b2xsuPSh4GLQ9/Omn2nXr3ns/ydq6m8SOTkQ0LFiwgMJU39CgQW2BOsNgMBQUFNTU1BYvXmxhYQENC3zk7+9/7dq1tLS0r4M9xkR4jrt1jhBGo31cPmB8y3kpywyW2J3eCIeenp6dO3eOGDECxDGfuQI5BbW1tXnGghca6CLHjx/PcaO+vh6kUlZWFuqkQUd5efn8+fPz8vJWrly5fPlykM+UfwXU3dGjRwcGBj5//rywsFBfX3/Xrl1vcL+bxHPz5k1nZ2eqrF25cmXDhg39nsYuLW3euvW965Ps7XHLm+Rjbm5eUlJClbW1a9feuHGj33glFg8Ses21/XPtopE2psSx7t0rVPmD0E1raysM0j799FNoNEAWr1q16ueffy4qKuqjiK+vL4z5qXUDFNL06dO533F1dbWxsUGdNOg4dOgQZ26luLh4/fr1UANSUykORQqN5rp16xQVFefOnevt7U00eW5ubtxhCI4cOQKDQmq/FyFDdna2paUlJaba2tpmzZrFZyyl1qNHWZs28dBJdnYdOOkmDezcuTM9PZ0SU4mJidB08HNmZUdLr9jK4xLODp3x1ef+++F4JjOoqZtUkAtExMC4ncgUWVlZGRQUtHHjRnV1dVNT09OnT//3v//lVgvQsMyePVvQ+CP9cubMmV4TeaDeiPH88OHDZf5kzJgxqJMGOMrKyr12Bzx58sTa2lpfX//WrVvi8gqRBCoqKqhauObg4MB/gPjXnZ2tBw6wtmzpJZLaAwMpcQahm8OHD1+jQtFCzwf9H/+Jj1Iba3qt5gaR9IHsVBBMcGyVjw2apHPv3j0/Pz8YocXExHzyySd/HzlXV1eDWLGysgLNBEIKRt15eXkWFhZ09Fb+/v46Ojrc74BvJiYmoJMMDAw4K2vDw8NRJw1kcnJy1qxZw/MjqI729vba2trR0dF4XQYn7e3tampq5O3k5+dramoKlPnkdU9PV3p66/79zQ4O8Gg9duzlw4fkPUFEA3QnAQEB5O0cOnQIxvQCFanpbNtZmKyeHjYt+X8BJ0duWfnP9YuJ48j6MvJeIfRRVlbm6Ohoamq6bt26frdg19XVhYWFwcmTJ08+duxYa2srtc4UFhaOHDmSew/BihUrvLy8cN5tcAGj/Pj4+D5OePbsmZOTE7ExTdAMX8gAQFZWlqQF+FHPnTtXiDxfiPQSGRl5/PhxkkbKy8tBXpNJo7S9MOnt7Nutcx8oTBt9xpUIOFnX+d4wcog0Arrq0qVLJ06cgMZq3759/ea+FQiQawYGBtnZ2SUlJe7u7lOnTgU1hjppEEFk9uZn+25TU9OBAwfU1NQuXLhA1XZfRCogn5Dy/PnzNMV5RySW9PT0gwcPkjSyePFikttKWC+7lNIugjz6IvTHodNkxt04A8ff5d7AjmbAAL2YnJxcd/fbiA/w7OfnBy9h/N8roBHUBNeH6cppF+WYwarplw48ustnkAiQ6adPn160aJG+vr6TkxMRNiktLY1YOEWQk5Pj5uZG6Z/VF6iTREpiYqJAHRjoaA8PD2NjY/pcQiSKwsJCGKtt3bqVyGQshAUY20Gz1dLSQrlviMQCVcXHx2fLli3Ozs5ZWUImVouIiBA6FS43zMZqYsbtE0eLj0z0iOOg6r52TiFSREpKirW1Nfc7oGwuXryopKRkY2NDJBJ90t4MCmninV84q9bgWCXtUkW7VLZLqJNEioWFBSVZKZABSWlp6Weffebt7X358mUXFxf+EwVyY2Vl9euvv1LuGyLJ7N69W1dXNzw8/MKFC8Jd/ba2NkVFRRaLRYk/e0rSiN5xmIb8Z567iOOZzCC1jLDj5dndGKRbmrG0tOS5Sxq0xLVr1zQ0NNasWcMI+YlniHaNjHC2FC4mQZ0kOjo7O2fPni1uLxDJ5ezZs/r6+mQsZGZmGhoaUuUPIi3IyspevXqVjAUHBwcKU5C2v3oJPSL0i2OuHB/6zeSxMac4PaVM0nm19LDaTlryWiJ009XVxWAw+pYNB6+EDFecPkyDQSxQ4358kxyY0FAhKmcpA3WS6Lhy5crhw4fF7QUiuaSnp48YMeLYsWP878rmhs1mgxB/9OgR5Y4hEo65ubmcnFx0dLRwc7V5eXl6enrU9gW/seqJrvHT77eMWKjZq7+ckxH+UgrvKyAgx11dXfs+x6bgztvg7KecP1SX+1BpxmgfF+5Lv6MwWSSeUgnqJNGxfPnyyspKcXuBSDQglYyNjUEt2dvbt7a2ZmZm8j/75uXlxTPDIDLggUpy4sQJBQWFUaNGXb9+vbCwkP+mhtgdWVxcTK1LYPab5ECiaxxuoDbq0DbuznJKUkBwNcXfiIgAExOTfsO+r3tw4/+Dafm5fyD/LfelBxUlGlcpBHWSiGhqaiI5pYIMHurr68eNGxceHr5z504tLS1DQ8ODBw+mpaX1Ef22pqZGUVGxsxPDHw9qzp07N2nSpLi4uFWrVqmpqa1fv97f37+srK8IRn5+fnv27KHck6LWRk6o7rHXTr6dfbt6gru/NMyKpPxLEVphsVj87MY9VfGAewX3P6ZMHHfzZ85q7p8rhUm4K15QJ4kIX19faI/E7QUiNaiqqkZG/q8jaWlpuX79uqOjo7a2Nqhtd3f3pKSkjo4O7vPNzMwSEhLE4SkiQeTk5IwaNYrz8tGjR6CT1q1bB5pp9erVf8/Y1dDQoKCg0E5D/r7bz3//9s/7SfD47JjDp99v4dZJimmhlH8pQitQl06ePNnvaU+72mcygzgX+gOFaWOuHOes5W/okr5kkaiTRISBgQFVe0mQgcrx48eNjIycnJyWLVv27bff8ox129bWdvPmTRcXF9137N2799atWzExMStXrhS9w4gkAG04qOq1a9fu2LFj4sSJP/30E8/TKioqOBm7TExMTp06lZ+fb2FhIVCKeP7JYtX3ymfS66GVibsypQzoxfhcOun3e8GMlP9JpWHayp8HHCAWcYfXSmWIf9RJoqCqqgq7MaRf4MeYmZl5+fLl69ev87Mgt729PTExcd++fVOmTDE1NaV8iQkiLYCkjo+Ph5oD0oef82tray9evLhq1apJkybRkX0C6Op5JZ8a8j6RNPHOL4cf3aP8SxH6qK6uXrhwIf/nRz99/O9Ef7jWHy3T/cxrNxy4Pcygzz1aQZ0kCqAZgkombi+QgUlRUZGxsTGTyYRWbMWKFbm5ueL2CJEOXF1dg4KCiOwT7u7uTU1N1Nr/4dHdqUkBPHWSXGpIY3dH/yYQiQH0NGhrgYoQSWz+ZW786QFbOPD9vYAm3+gGdRKCSDd79uy5fPkycZyTkwNSycjIiGcgOAThAC0/yCNilVtXV5evr6+cnNyuXbvq6uqo+opXr3tW58Z9zbVKiXjIMoOZjThulDLmzJnzxx+C5enb/+guXO6Pt333iaMFHHg8/o0m3+gGdRKCSDE9PT3Q2/Xa5lZcXGxhYaGnp4cru5H3kZqaCpWE+x02mx0aGqqoqGhra1tRUUHJt0D/4lmeLccMnsUMln33vCDraukfLygxjoiMoqKidevWCVrqdMWDtwG03DaP3GwKB3tKpHXwhjoJQaSYlJQUS0tLnh9VVlba2dlpampGRUX1YEw/5K9YW1snJib+/X2oKlBh1NTUzM3N+42Uwyc9r1+XtzcXtjayXr43sAUiyTQ1NQkhnS/VlhBbHT8ymw8H1vm3aXBNFKBOQhApxsrKKikpqY8Tnj596uTkBN1eSEgIm80WmWOIJNPV1SUrK9u3ek5ISNDR0cEVb4jQxDdUvA01eW7fiAVz4GBlznVxeyQkqJMQRFrhp7cjYLFYBw8eVFVV9fX17SNYJTJIuHr1qqOjIz9npqenL3wHHNDtFTLAyHqXu2ZM+LFhcxhwoH8vQtweCQnqJASRViIiInbv3s3/+X/88YeXlxeoJarmUxApZfny5Xl5efyfn5ubu2LFisWLF9PnEjLwSH5eBfJo3I0zH8h9DQcT7vj9WlsqbqeEAXUSgkgry5YtKygQeKttd3f3q1ev6PAHkQpYLJaSkpIQBSkPHIAMYMr+YM38M9Tk0G8mEwfTki8ce3xf3K4JDOokBJFKoNNSVlYWtxeI9OHr63v06FFxe4EMZHpev56TEc6JBDF0+lec4xkpQYWtjeJ2UDBQJyGIVAK93bFjx8TtBSJ96OjoVFVVidsLZCCTxarnTvE2dMZX3AG0LPKkLF4J6iQEkUq0tLRqamrE7QUiZVRWVurq6orbC2SAE1hV+CWXMBqmpTg29hTn5ZyMcHE7KBiokxBE+qioqJg3b564vUCkjx9//NHf31/cXiADnNCa4kmJvwyYFMiokxBE+jh06FBgYKC4vUCkDwUFhZaWFnF7gQxwStqaZJnB79NJu4qY4nZQMFAnIYj0gb0dIgS5ubmmpqbi9gIZFCy7H/MlL5EE+qmms03c3gkG6iQEkTKys7PNzMzE7QUifTg4OERHR4vbC2RQ8OJlp1p6WK/ZN1lmUNyzJ+J2TWBQJyGIlBEXF8czMxeC9I2zs3N3d7e4vUAGC23s7r0PM5TSLs5iBjNSQ5bdj5G6iAAEqJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDeokxAEQRAEQXiDOglBEARBEIQ3qJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDeokxAEQRAEQXiDOglBEARBEIQ3qJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDdD4N9rBEEQBEEQ5K+ARvo/4tmi0XNhvG0AAAAASUVORK5CYII=\"}},{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAw0AAAIACAIAAABPahfdAAAACXBIWXMAABcSAAAXEgFnn9JSAAGSXElEQVR4nOzdB1RT6bo//vtf6/7OuWfuKXPGKU7vjr1gAwUREAtVsYIiiiJI770TSCX00EvovVcBQbqKDQERULAAioBSpQX/r+w5uQwwiBHYgTyf9S7WZmdn5000D9/d3v1fbwAAAAAAwHT+C+8OAAAAAABwKchJAAAAAADTg5wEAAAAADA9yEkAAAAAANODnAQAAAAAMD3ISQAAsHCuXbtWDDhSU1OD978e4EWQkwAAYOHQ6fTc3Fy8I8fik5aWFhERgfe/HuBFkJMAAGDhoJz06tUrvHux+Dx69AhyEsAF5CQAAFg4kJM4AzkJ4AVyEgAALBzISZyBnATwAjkJAAAWDuQkzkBOAniBnAQAAAsHchJnICcBvCy+nBQeHk4C7y8uLg7vfzoAAOQkDkFOAnhZfDkpMDDw2bNnePdikYESAwCXgJzEGShiAC+Qk3gClBgAuATkJM5AEQN4gZzEE6DEAMAlICdxBooYwAvkJJ4AJQYALgE5iTNQxABeICfxBCgxAHAJyEmcgSIG8AI5iSdAiQGAS0BO4gwUMYAXyEk8AUoMAFwCchJnoIgBvEBO4glQYgDgEpCTOANFDOAFchJPgBIDAJeAnMQZKGIAL5CTeAKUGAC4BOQkzkARA3iBnMQToMQAwCUgJ3EGihjAC+QkngAlBgAuATmJM1DEAF4gJ/EEKDEAcAnISZyBIgbwAjmJJ0CJAYBLQE7iDBQxgBfISTwBSgwAXAJyEmegiAG8QE7iCVBiAOASkJM4A0UM4AVyEk+AEgMAl4CcxBkoYgAvkJN4ApQYALgE5CTOQBEDeIGcxBOgxADAJSAncQaKGMAL5CSeACUGAC4BOYkzUMQAXiAn8QQoMQBwCchJnIEiBvACOYknQIkBgEtATuIMFDGAF8hJPAFKDABcAnISZ6CIAbxATuIJUGIA4BLzlJMGBweLi4srKipYLNacr5wbQBEDeIGcxBOgxADAJeYjJ3V3d+/du5dKpVpbW8vIyIyMjMzt+rkBFDGAF8hJPAFKDABcYj5yEo1GCwoKwqbNzMwyMjLmdv3cAIoYwAvkJJ4AJQYALjEfOUlVVbWqqgqbRt90BoMxt+vnBlDEAF4gJ/EEKDEAcIn5yEnW1tZJSUnYNIVCiY2Nndv1cwMoYgAvkJN4ApQYALjEfOQk9AUXEhLKz89PSUnh5+cfGBiY2/VzAyhiAC+Qk3gClBgAuMQ8Xe/W0NDg5OREIBC6u7vnfOXcAIoYwAvkJJ4AJQYALjFPOQn7jhOJxDlfM5eAIgbwAjmJJ0CJAYBLQE7iDBQxgBfISb9rbm7Ozc1taWmZ8zVzAygxAHAJyEmcgSIG8AI56a3w8HA5OTlPT08ZGZnExMS5XTk3gBIDAJeAnMQZKGIAL5CT3tq+ffvw8DCaGBoa2rlz59yunBtAiQGAS7xXThobG5vl4NroO4629xwdHT+ga1wNihjAC+Skt5VIUFCQ/evatWvncOVcAkoMAFxi9jmpvLxcR0eHQCD4+/u/My1FRkaqq6srKysXFxfPvCTaGvTy8nJycnJwcOjq6pptv+daQUGBmZkZ6gnqz2yWhyIG8AI56a1t27ZhN49EPwUEBOZ25dwASgwAXGI2OQl9YY2NjaOiotBW3Jvxa/5NTU1RsMAeraio8PX1LSkpwX6tqqrS1dXFHkXLo2cZGhq2trZOu+asrCxzc3O0fjTd09NDJBKDgoIW+Na56NVR/kPBDvUWTaPepqenz+ZZUMQALiAnvUWlUjU1NTMzMy9cuBAQEDC3K+cGUGIA4BIz56Te3l4CgUAikaaOFYkijsc4NTU1NI1+osVQYGIymZOCDloJCkDu7u4Td9XU1dVhYQtVA0tLS5S9sPm1tbUmJiZlZWVz9xb/VF9fH2Ec6uGb8VSHunTv3r3c3Fw9Pb2ampoZngtFDOAFctLvULlBX8Lw8PA5XzM3gBIDAJf4s5yEsk5QUBCKC9jOnj+zadMm9s7vjRs3zrDkw4cPjYyMUKJ6+fIlik1oCxDFFPTq0x7qSkpKsrKy+rO9UB8ORaLIyEhtbe1J7w71xMXFxc7ODnUSBTsHBwc0Me0aoIgBvEBO+h3aokLFa6leLQIlBgAu8Wc5qbm5uby8/J1Pn3ihyWwuOsnOzlZTU+vq6oqOjra1tZ0hCQ0MDFhbW8/T2Cj29vbs44ZToV4ZGhqiIIVeXVNTs7q6euoyUMQAXiAn/Q5yEgBgAXzguACbN2/GDskNDQ3N5qITdlm7f//+zEs2NTWlp6dXVVVx3LcZoD709vbOfDY6iokPHjxAHZj2dCUoYgAvkJN+BzkJALAAPjAnpaSkHDx40MvLS0ZGJioq6p3Lz76socXmNSehEjTzIUUM5CTAbSAn/Q5yEgBgAXz4OJNPnz7Nzc19/PjxbBaGnATAB1riOam1tXWWo7ShnNTQ0DDLgoLW2d/fP8s+cAMoMQBwiXkaj/vPQE4C4AMt2Zz04sULBwcHb29vc3PzrKysmRe+efPmxYsX3dzcZj7PEYPWhhY2NTV1dXWd5Qhpcw69OysrKwKBEB0djY2wMjMoMQBwCchJM4OcBLjNEsxJ2GizVCoVG6IDuXz5spmZGTZeyIMHD1B+sra2vnHjxpvxHU5GRkYoTmG7nQYGBv7sutk346O96erqJiYmDg4Ool9rampQYHpnCJtbqGMTr55FCc/Y2Bj9nPlZUGIA4BKQk2YGOQlwm6WWk5KSkiwtLad+G1EM8vf3Lyoq2rp1a2lpKQpJQkJCaWlpKDBNHa4DG4dt4ncVG/wNBRRUdFxdXRkMBvshFJs0NDTq6+vn4s29A3otQ0ND9gBx165dMzc3R1EPu+J3ho8FSgwAXIJrc1JUVNS85qSUlJTZDDoAOQlwm6WTk27evGliYjLzACToa4ayDjadn5+PQsYMCxcWFpqamt69e5fJZDo4OLS3t//ZACSDg4MUCmXayDVX0Ltj35pgIhTgqFSqh4dHd3c3jUb7sz1hUGIA4BILn5NQ+cJGvn7n0ACpqam3b9+eeRlsM/LFixezPPUT886shg1E2dTUBDkJcJulk5Pq6+vfeaYOg8EICwvDplHyUFdXn3l5Foulra1dU1NTV1eHQtjMh7dQfpqnm3WjeOTq6jrDPZgaGhpQ5svOzkalBMW1qQtAiQGASyxwTkJ8fHzQ9iHapnJxcUE1qq+vb+oyqHii7UALCwtU6P5sQEhsqwxtjHV2dhIIBCsrKz09vYnbjYUdj8/czj5351JZ5//tN0KJyszMTENDw83N7c+i1bVr19TU1NDrolJmbGz89OnTqctAEQN4WTo5aTZKSkrQtxGb9vDwCA4OfudTsM0g7ISkGaDvMKod8zSsAKoOVeNmXgw79jdtH6DEAMAlFj4nIY8fP7a0tMzIyECxBqWWhISEiY9OOs1x4r1y4+Lienp63oyfjpmcnNze3o4qia6uLvYodiM57IqW+IfV35MNvsrzQ+1XT6vLz5rQTPQQejkUlbBXwcLQxJfGzhD19fXF6qe/v/+fZSkoYgAvvJWTEHV19TNnzqiqqh49enQ2V6vNMvpgx/XnNSeh7bzZLAw5CQBuhktOwqCMYmpq2tDQUF5e/uTJEzQH5R5bW9upl82yr4bZvn27np7em/Gd8U5OTlODzpvx/dlotevsdP+///nLJyQdlJP+un3dRgd9DQ2NSbe2xQ6uoWCEvfro6KijoyNKSEwmE03MfN4CFDGAF57LSW/GL2qbds/ztCAnAQDmEI456c34FS1+fn4UCgWlEywJzTAUXHd3t4SExIULFyorK1FO8vb2/rOj/y2ve3/0tf2bOP9fNvz2ZaYXykm/BTj0jEy/IYoqMIlEwvZCYdFtUpyaFhQxgBdezEnvBXISAGAO4ZuTMC9evEAhaTZX6aOc1NHRIS4u7u7uPkMNqe7p+C6K8pG08L8tL/xD+eDbnJTu/fR17wxrRq+O4trsx1WBIgbwAjnpHSAnAQDmEDfkpNlDOQn99PPz27Rp0ww15Nlg/2+xLignvT3oJrD+v3/+dlOWf//o8Bz2BIoYwAvkpHeAnAQAmEOLMSexWKzt27fPXEPEUv2xnPR5iMN//b//li589z163wsUMYAXyEnvgMWOGa7Jx9y7d6+trW2WOam7u/u9+oDlpFnWCMhJAHCzxZWTUFnDJlCf2Xc4mNaVtuafo50/87P+Ipq8Iox8s2uOqzQUMYAXyEnvgB3Fv379+rTDfE80NDRkZGQ089hrz58/Nzc3j4uLe/nyJXtY7Xfy8fEpKSmZeZmCggJ/f/83kJMA4G6LKye9F2L91U8ImigqMR+/+7zs9wVFDOAFctI7DAwMODs7UygUVNpQZkI1Ds2Zuhh2v5QrV66gGJSfnz/tqlDcoVKpKCH5+vpaWVkFBwe/87a7aGEHBwcajWZmZoZefdoQhg0ymZWVheqInp5eYmLi1GWgxADAJZZwTjpSmYblJO3qgjlfORQxgBfISbOC0oyJiUlcXByaQOEGTbAfmnq/FPYobTdu3DA2NsZmEolEVBzRQxPHFOnr6yOTydjNRlAJwEbr7+zsRNMsFovJZKLXwoZoezM+zpumpubEwUtQisJGZuvp6UFhjkAg/NmOcSgxAHCJpZqTsp43/ZAf8C8DxWXOhisLQqq6X8zt+qGIAbxATnoPKAwZGhpWVVVhx+yxzDR1iLY3/xmlDQWXn376CUs/EhISKDxNu7OnsbERrVZBQWHz5s0oFaFyoKSk9GdjiqA1mJmZYUcA79+/j6JSfHw8SmMzHxOEEgMAl1iqOenM7Zyv8vz+ce7QJwRNNKFVfXlu1w9FDOAFctL7wXbz2NvbU6lUV1fXaY/BsaGERKPRhIWFX79+jV02MgM1NbWYmBhFRUVUDtg3V5kWelFUatGrl5WVvfPWvxgoMQBwiaWakySvJU3MSaduzXZgpFmCIgbwAjmJE729vV1dXe9cDOUkBoORlpZmaWk5m5yECsH58+cjIyNnzkmY1tZWtP533voXAyUGAC7BIznp5K3MuV0/FDGAF8hJ8wjLSWji5MmTW7ZsmXlhLCd1dHRs2LBhNjnpvUCJAYBLLNWcpHgra2JOUr87/eUsHIMiBvACOWkeFRcXY2d8P3nyRFpaeuaFLS0tW1pa0ERISAiantueQIkBgEss1ZyU2Nbw0+XAj43OLHMxWl3IvPaybW7XD0UM4AVyEnexs7Obj9VCiQGASyzVnIRoVxesvsJcfyWUUF8x5yuHIgbwAjmJu8zy5iTvC0oMAFxiCeck5EH/q5YZb3/LMShiAC+Qk7gL5CQAlralnZPmDxQxgBfISdwFchIASxvkJM5AEQN4gZzEXSAnAbC0QU7iDBQxgBfISdxl2gG7PxyUGAC4BOQkzkARA3iBnMQToMQAwCUgJ3EGihjAC+QkngAlBgAuATmJM1DEAF4gJ/EEKDEAcAnISZyBIgbwAjmJJ0CJAYBLQE7iDBQxgBfISTwBSgwAXAJyEmegiAG8QE7iCVBiAOASkJM4A0UM4AVyEk+AEgMAl4CcxBkoYgAvkJN4ApQYALgE5CTOQBEDeIGcxBOgxADAJSAncQaKGMAL5CSeACUGAC4BOYkzUMQAXiAn8QQoMQBwCchJnIEiBvACOYknQIkBgEtATuIMFDGAF8hJPAFKDAA4KiwslJGR0dLSegM5iVNQxABeICfxBCgxACy8oaGhgICATeN8fX0HBwffQE7iFBQxgBfISTwBSgwAC+n58+dmZmbffPONjIxMXl7exIcgJ3EGihjAC+QkngAlBoCFUVJSoqCgsHz5ck1NzcbGxqkLQE7iDBQxgBfISTwBSgwA82pwcBB9xfj4+FatWuXv79/f3/9nS0JO4gwUMYAXyEk8AUoMAPPk+fPnBAJh+fLlEhISubm5Y2NjMy8POYkzUMQAXiAn8QQoMQDMuevXrx89evTLL7/U09O7f//+LJ8FOYkzUMQAXiAn8QQoMQDMldHR0aioKH5+/l9//dXV1bW3t/e9ng45iTNQxABeICfxBCgxAHy4ly9fkkikH374QUxMLCUlhcVicbASyEmcgSIG8AI5iSdAiQHgQ9y4cUNVVfWzzz5TVlauqqr6kFVBTuIMFDGAF8hJPAFKDAAcGBkZSU5OFhUV/eabb1xcXOYk30BO4gwUMYAXyEk8AUoMAO+lq6vL3d39p59+EhAQSElJGR0dnas1Q07iDBQxgBfISTwBSgwAs1RXV6evr//FF1+oqqreuXNnztcPOYkzUMQAXiAn8QQoMQDMbGxsLD09XUxM7LvvviMSiZ2dnfP0QpCTOANFDOAFchJPgBIDwJ95/fo1g8H49ddfBQQEQkNDh4aG5vXlICdxBooYwAvkJJ4AJQaAqe7fv6+jo7N8+XJ5efmioqKFedFJOamnpycqKopCofj5+ZWUlGBjDRAIhCtXrsxmbe3t7SdPnsSmVVRUmpubZ9kN9kt0d3d3dXW933uYnZs3b9JoNF9f3z/bOVdQUODi4uLm5nbjxg1sDgqply5dcnV19fDwuHv37sSFoYgBvEBO4glQYgBgGxsby83NlZaWRgnJzs7u+fPnC/nqE3PSy5cvxcTE1NXV0dfT09NTUVERG7UyISGhtrZ2NmtDKQflDGxaWFi4rq5ult1gvwTKMTY2Nu/7Lt4JhbBt27b5+/ubmZnt2bOnr69v0gLJycmCgoJhYWEoIG7duhXLqWgafQioyKP8xMfHl5iYyF4eihjAC+QkngAlBgCkv78/ICBg7dq1GzduRH+hBwcHF74PE3NSZmYmyhBTl6msrGxpaUETDx48qK6uRuknOjoazURz0PyYmJjy8nJsyYGBAZT5sGl2Tnr9+jWKKUwmMy8vj/0e68Y1NDSgUtDe3o69RFdXl76+/tmzZ1FP0DpramomJq179+7NMq5NdeLEiaioKGwaRR/U/0kLyMvLBwUFYdMkEsnIyOjN+O2E2QuEhITIycmxf4UiBvACOYknQIkBPO7x48c6Ojqffvop+ptdUlKCY08m5qTCwsKtW7dO3QmkoqKSmpr6Znxnj4yMDMoxZDJ527Zt6NeTJ0+i6d27d2PfaJR1+Pj4sGexcxLKgjY2NmjhixcvSktLY2dcUalUFDtOnz6NQgmKX9hLPHnyBK1QVlaWQqFERkaidCUlJcXuBpouKCiY2DG0qrvTQcls4mK9vb2//fYbKjvYr15eXlpaWpPeI4FAMDAwYLFY6LlKSkooFU1aAL0L9I/F/hWKGMAL5CSeACUG8KzS0lLsEJulpSVKS3h35w85aWxszM7ObvXq1SjioBiH7TF688echDqPnbSEpnfu3DkwMICmc3Nzjx079uZPctJEhw8fRp/Am/GcxF7VpJdgH3dDj4qKit66dQtNo59ohZPuzdLR0aE0HZS3Ji6GerVixQr2ne9Q8UEvN6lj6I3Iy8uj8If6j947+igmPtrW1iYoKDjxJC0oYgAvkJN4ApQYwGuGh4fDwsLQ3+C1a9f6+Pj09/fj3aPfTb3eraenB0UZFFbWrFmDndE8bYhBc9hpAyUqbMfPtDnp/v37KLvs27fv0KFD6FFsVSgnTTwPadqXeDN+hpCpqSmaQD+9vLw4e48o5aCcxD49nMlkTs1J6EXPnTuHAlZjY+Px48cDAgLYDz1//vzAgQPBwcETl4ciBvACOYknQIkBvAP9b7ewsPj6669RksjJyZm0owJ3M4wLcPHiRQcHhzcfnJPExcUzMzOxmSiLsHMSwn6tP8tJKNxs3boVxZdNmzZNrbQoAG2ZTkNDw8TFUEjdsGED+9wmCoViZmY2aVXbtm2rqKjAptE/08GDB7Hp9vZ2lPBQryYtD0UM4AVy0qwQiUSsHAgJCSkqKt68eXOBO/CBoMQAXlBaWnrq1KlPP/1UV1d30pEg7jExJ6FOvnz5EpseGhqSlpb29vZ+88E5afXq1djbf/r0KcorM+ekuLg4NTW1iT00NDREqUVDQ2Nq51ks1qvpTL2vi46OjpOT05vxvWUiIiL5+flvxjNQQkICtgAKc+xzktBncubMmTfjKQ29L/YVfBNBEQN4gZw0K6hUoe0hVA5aW1v9/PxQYcLOElgsoMSAJWxwcBD99xYUFPz55589PT25/Ls5MSeVlJRs2rTp6NGjSkpKKOXIy8tjx6o+MCdhJ3qjoCMnJycjIzNzTkLldM+ePWgx9i4ftB24YsWKDxxQCtUcFI9OnjyJfqLYiu3VQ91m9zY7Oxu997Nnz2JnKWG3iHF2dkYvzd5NNfGkcihiAC+Qk2bFZhw2jTaJ0DcZGzntypUraPt1586dqNKhrz22ACpVaCY/P7+EhATaVsNmpqeny8rKonpkbGw8T6O6zQBKDFiSOjo6HBwcPv/8c/RnPi8vj9sOsU1r0nG34eFhVDHu3r3LvjoM6evrwy5SQxGQHfvQHPYoRCMjI9hZ0iwWq7u7G5vZ09PD3q/T1NRUW1uLVs5e1etxU1/izX/2ErFPu75x4waqVJPO4OYAevWampqJ7wt1m91brMPojaNl2B1DExN3U6EF2AtDEQN4gZw0KygkoQ2j6HHnzp1jb3hVVVU9efIEVedbt26hTSJsXzdaMjY29s34IHLY5l1BQYGoqOiDBw9QYUKbelNPaZxvUGLAElNdXX369OlPPvlEW1ub4zF+cMHN9y1BBQoVCmlpaayCcRUoYgAvkJNmBeUkbIgRlHIUFBTQr+ztNrQ9FBMT4+fnJy4unp6ejuag8m1ra4sNE4c5e/ash4fH43H19fUrV66c73tITQIlBiwNw8PDkZGRO3bs+PXXX1HgmL+71c4fLs9JqJRhdYzbQBEDeIGcNCsTj7uhhCQiIoKVElTyDh8+jCpLdHS0lJQUdry/qanJyMhIUFBQVFQUO3tRUlJSXl5ee4IFPoUCSgxY7F68eOHk5PTtt9/u2bMnOzt7URximxY35yRuBkUM4AVy0qxMzEmIjIwMNtrHpk2b2DeelJWVxXISW2JiIkpLb8YvzWUymQvX3SmgxIDFq7q6+sKFC8uWLVNRUZn9/cu41sScNDQ0hB3Nj4mJuXz5cnt7O759m41bt25h9xtBW4yVlZVeXl7BwcFVVVXsBchk8nxcbAhFDOAFctKsoJCE3QIpIyODQCCsX7/+4cOHaP6+ffv8/Pyampp8fX3XrVuH5SQ0B1Xzx48fo5lHjhxBc8rLy7dt25aeno5moioTHh6+wP2HEgMWHRaLhb5QkpKSX3/9tb29/cJf/TBPJuaknp6eFStWoPLi4OCgpaW1detWExMTLr9eD9W0mpqaN+OjbKMtRhcXFxSMNm/ezL6bG6qTenp6c/66UMQAXiAnzQqq15b/4enp+eDBA2w+mkDVTVlZmclkhoaGYpe2og2sc+fOKSkpWVhYsLerrl+/rquri2Zqa2snJycvcP+hxIBFpLu7G/31/f7773fv3p2QkDB1bJ5FbWpOYp/LiObLycmZm5uzF0aJBMWOiXtrkObm5sxx2NhLqAqhOoO+42lpadgFYg0NDejRa9eusY9O9vf35+XlsW+mixkaGrpy5UpsbGxJSQn7ijP04eeNm3itGRt6Orbth3WevX70cqKiotj08PDwjh07WltbP+RTmgqKGMAL5CSeACUGLAqNjY2ampqffPLJ2bNnsTt4LD0z5KQ340ONrF+/fmycra2ttLQ0kUg8fPgw+xpbf3//7du3Ozg4oG02Eon0Znxvt4KCgry8PFoGBSa0nbZnzx4nJ6eTJ0+qqKhgUQZtzqHNNjRTQkICG/4RQZttaIvOzc3NwMAABaM342Oa7Nq1y8TEBK0cTdTX10/qPJlMdnZ2nvqmUlJSDhw4wP4VrXDOCw4UMYAXyEk8AUoM4Gbob3lycvK+ffu+//57e3v7trY2vHs0j2bOSSjooDnt7e2lpaXi4uLYbp6hoSFhYeHa2lq05KZNm54+fTpxhSgnHTt2DMtDDx8+3LZtG3aMEs1BAau8vHziwgMDA3x8fGiB/v7+NWvWTBxRCTl+/DhKPNh0SEiIjo7OpM6fOHEiLS1t0kz0LtC/XXx8PHsOg8FASeu9P5oZQREDeIGcxBOgxADu1NfX5+XltXLlyq1bt0ZHR3/42Ibcb+achL6q2B1kXVxcdu3axb5CdufOnSigpKensw97saGcxB5oOzY2VkBAgP0sMTExPz+/N+N3dFFQUEDBS1RUdNWqVdjp8CoqKpKSkui5165dw56OHjp//jz2XEVFxYnDYWPQnIKCgolzent75eXlJ17m8mZ8GHF9ff0P+pimgCIG8AI5iSdAiQHcprGx0dDQ8PPPPz969OjVq1fx7s7CmTknpaSkoKDzZvwOHhcvXrw7wcuXLzMzM+Xk5CatEGUU9l1jo6Ki0Oc58Vnt7e2dnZ1btmzBzp5EduzYgeUklEpv3rzJYDAEBQWDgoLGxsZQYEWJiv3cSXe3RVAkmnhV7+DgIIpTlpaWk4ZpQNnXysrqwz+riaCIAbwsypxUWVn5ALyP8vJyKDGAG6A/qAUFBRISEighOTo6zvnZvtxvhpxUVVUlJCSE3R22oqICxRf2QJqjo6MjIyNoE3HTpk0oYk5c4cSc1NzcjBZoamrCfkWf9vDwMIo7KBthp8Pfvn0bvSLKSUNDQ+y9d0wmU0tL6834cTcUm9hrnjoc7sTzk9CjysrKZmZmU8ey0tfXZ1/+NlcgJwG8LL6clJWVxQTvDxvxEgC8DA4OBgcHr1y5cuPGjeHh4ZPOjOEdU3OSlJTUoUOHREREdu3aFRYWxl4ShRIUlUxNTQ0MDMTExLD96CgrbN682dDQUFtb29bW9s0fc9Kb8fOKtm/fbmxsbGRkdODAAbSZhKLSiRMnFBUV0ZyTJ0+iR1FOQuEJvSJaD1o/ehXsNKb6+vrdu3efO3fO3Nz89OnTqAOTOn/z5k32gT+0yYo6j5YXHSctLY3Nx653m/O9/pCTAF4WX04CACwu6C+cnp7eV199dfTo0cuXL+PdHZxNzEksFgu7ndGTJ0+mHaS7tbW1tLT0+vXr7JvUvhm/FXdZWVlFRQWWNbu6uibeXPbN+NjlKPegBbCBA96M34AW/Xrjxg0UYlpaWrAdRW1tbWjlaFUTb/+CHrp9+zaajw0RNxV7/CT0oo8nYI+BAuMngSUGctK8U1dXR7UJ714AgIOioiL0ZxUlJENDw0lXafGsxX7fkjt37sTExMywAIPBgPG4wVICOWne/fTTT/AXAvAUtGEQHBy8bdu2tWvXor+aPHuIbVqLPSfhBXISwAvkpHknKChYWlqKdy8AWAgtLS0EAuG77747cuRIcXEx3t3hRpCTOAM5CeAFctK8O3nyZGRkJN69AGB+VVZWKioqfvzxxwYGBuzrrcBUkJM4AzkJ4AVy0rwzNzen0Wh49wKAeTE8PJyYmCggIPDjjz8yGAxIAO+EclJgYCDe178uPr6+vpCTAC4gJ807T09PTU1NvHsBwBzr7Oy0s7P76quvJCUlMzIyltjdaufPs2fPWgBHJl6XB8CCgZw079LS0tgjiwCwBFRXV585c2b58uXq6upTh2wGAIClBHLSvLt79+6WLVvw7gUAH2p4eDguLk5MTOynn35ycnLCbrYKAABLG+SkedfR0bFs2TK8ewEA5zo7OykUyjfffINCUkZGBi/crRYAADCQkxbCP/7xj/7+frx7AcB7u3fvno6Ozscff3zmzJnq6mq8uwMAAAsNctJCWLNmzaRbVwLAzVgsVkpKioiIyI8//kgmk58/f453jwAAAB+QkxbCnj17Ll26hHcvAHi3np4eFxeXX375RUhIKDY2Fq5iAwDwOMhJC+H8+fMhISF49wKAmdTV1WlpaX322WenTp2qrKzEuzsAAMAVICctBIdxePcCgGmMjY3l5ORISEgsX77c0dGxvb0d7x4BAAAXgZy0EAIDA8+ePYt3LwD4g76+Pj8/v1WrVvHx8UVGRg4NDeHdIwAA4DqQkxbC5cuX9+/fj3cvAPhdc3OzhobGZ599pqSkVFZWhnd3AACAe0FOWgj19fVoqx3vXgDwpqio6ODBg8uXLzczM2tpacG7OwAAwO0gJy2E/v7+v/3tb3j3AvCu3t5eX1/fjRs3btiwwc/P7/Xr13j3CAAAFgfISQvks88+g1upg4X35MkTCwsL9N/v0KFDV69exbs7AACwyEBOWiBoO/7OnTt49wLwkIqKCgUFhWXLlhkYGDQ3N+PdHQAAWJQgJy0QGRmZlJQUvHsBlr7h4eHQ0NB169Zt3LjRz8+vt7cX7x4BAMAiBjlpgWhpafn4+ODdC7CUvXjxws7O7quvvjp06FBOTs7Y2BjePQIAgEUPctICIZFIpqamePdiSRkeHR2FG9ePKy0tVVRU/PzzzzU0NOrq6vDuDgAALB2QkxZIVFTUiRMn8O7FEjE8Mpp+8x7jUjkjtzy/ujG/umGvhY+AputuA8+Q3Gt4927hDA8PR0RECAoK/vzzz56engMDA3j3CAAAlhrISQukrKxMVFQU714sEbl3G7wulaHmllWi4pOwWYu+WYW2RYW29YLzNlV6duU9vDs47zo6OqhU6nfffSciIpKdnQ2H2AAAYJ5ATlogzc3NMNTkXAm4fA3LSYbM9L0O/hvUaSgnjUclZxSVjjku5VsOV1dXnz59+pNPPtHW1q6pqcG7OwAAsMRBTlogLBbr73//O9694C4PO7oqHz9tfdXzvk8ML76J5SRVn8Q/5qS3u5QO2gYW3H2Qd6eh6XlnffPzq9VNo6OL/jQm9P8nPT1dUFDwhx9+oNPpnZ2dePcIAAB4AuSkhYP+wr148QLvXnCLzJr7rpdL9lIC+Czc+K097ZNyWWPDY2Ojs3lu7dPnjEvlKCdp+CeddI3kU6f/X05SoR2nhOkz0+xic/eb+u664CZ63l1C07vszoP5fkfzBEUiEon0yy+/CAsLx8TEjIyM4N0jAADgIZCTFs7WrVthqElMc+dLj8Ky3U6+601cUNtgSt9h7+SUaX+v07e5O3l49N17mJrau/LuNkQV36bFFxoGpG7Tdt2sSuPXoB+w9T/DiEVNxNJns6YL/0VXlJPeRiUd79bObhZrMZ3HU11dra6ujt2ttra2Fu/uAAAAL4KctHAOHjyYmpqKdy+4QlXLM5f8kg1mLmtN6ast6BtsyFvtHRUDdLMfyWY1SxQ8UXj8KmaWq2rr7CmtbiqraW5/2Xu18bFWUAqWk7YbuW/Udtl20UXkvJuAmuu2i66EmLzwopudvf3z+tY+HIvFys7OlpKS+vLLL+3t7bu6uvDuEQAA8C7ISQtHS0vLw8MD715whacvu1FOWmf2NiShtsmOuNWRIB+ikfZwf3LjvvSHMiVPzzV3Xevqf78L3a/UPrSIzsFy0g4TT5ST+NVcdqq+DUn8Gq701CKv7LLEimps4cFRrjuA1dvb6+Xl9cMPPwgKCsbGxg4PD+PdIwAA4HWQkxYOnU6HoSbZSh40b7XzGM9JzrvoVpK+hgoR6gFVe1zLZQ3TzimGmhgmMjwKyuJvVg8MzTYuNLV3eeaUGYVnnGXEHqGFbdF2ET7viu1MOmgX7JFZinISI7u8qbcj4H6Ze00h+tncyxUnRNfV1ampqX366afKysoVFRV4dwcAAMDvICctnOjoaHl5ebx7wUUirt7id2QIkAn7GGZHmQbKcarUq5KG2SflAozEPaz2uNGP+TPVIuJpl4qdsgrt0vMTb9bMcILR2NhYc2tnUvldFJXcskpCi26U3H1o4JJ0yCpY2iH4jEfsOa94m+hLgQXXvO4VoZCENca94t7hwYV815NkZWVJS0t//fXXVlZWHR0dOPYEAADAVJCTFk55efmOHTvw7gUX6ezr9y66apUVYprhrZVEMspWti06bJZ/TIJhyk+1W0cgrSeQNzkR1ztQ9nt4q8ZZXkzSIxQRH/U1TV3V66HhhILbfsmlqAWklN179AybPzLK8smqUGHEo5yE2lnP2KCKbKsbDMsbno63I9xqLqOoVPOybUHf9rienh4vL6/169fz8fExmUy4ig0AALgT5KSF09ra+sMPP+DdC+7y9GW3T3kM+Yqvb6Wv+zWCWd55gxwlUXf79QTiWgfyOgfyXk9j1djTZtlytpelLyYrqaecd75uXN/5uKt/oKvv/85eulrTjIUkrEVduoHNb+vqYWSVuaUXW0XmWERkOyWmepR4mVe6YM3hVqhFWTolt8AnpyL3TsProYUIK48ePTIyMvr4449Pnjx5/fr1BXhFAAAAHIOctHBGRkb++te/wi0mJukafHytPfRqe0jaQy+rAj2FCAcxT8p6AmmtPVmIbqmbLG+cccQ6V5ZaIk4olFBJUNbPunA2ylk/Lp2Sc8X7ytWqp88Gh0eyymsn5iTUhobfhp5Xfa9RTmI3x+TQmFs+5Co3LCdpFZOVEiI9Mku8sstQS6u8d/tpW9nDR896eufjnZaWlh46dGjZsmVWVlaPHz+ej5cAAAAwt7guJ9XV1V3L2zFtu32FH+/efajvv/8e/kBO1T3c9rCn9EFP8Z32y/Z5PupJrjvoDnwkJwWmmnH6UZOMwza5MrTSPc5lezRTFS4mK4t52KyxdV1n7yZA9lZmJqC0lFJePTEkRf5nfxJyuaqRnZNcsyKutvlfa/cPqfe0KXfSyjI/7RWt4pNASS50zyxRDUpyvVzqXljmcaX81pPWuXp3g4ODPj4+a9as2bJlS1BQUF9f31ytGQAAwHzjupxEIpF0dc6amShOagb6SiZGp/Hu3YfatWtXeXk53r3gXmNjYw97yivamfTrJvu9rU+Hq5lnyZllyTkV7kchyaVcTDfj2JmYc2sdSL9Z03+zpG8467hTxk7yOFnDJjQs+zpKSOTofFJMft3j52/e7sAb7ezs7R8YrHn8LPtmdWFNSdPL/JsvfG51BGQ20r3KrPRjyJLE4ANOQQcpTFX/RCXfONeCtzkJNa+iihHWh97tpLW11cTE5JtvvpGVlS0sLJyLTwgAAMCC4rqcRCSSUmN3D7T+MKldL9xibKSId+8+1IkTJ6Kjo/HuxULrGWp80pvR0ntpYOTZny3T0dXb9vzV8PDb+5aMsIYGR/vuvih3LXX0q9zlXLwXNc9rwpSSvYrRFzaT7FfZUlea0Tacc9wuYc1/wFpov62wlLWEhb1koJcKM14/NsMoMcM8OVHXK8zSO9Y9OCerovhhl2/zSzfUal4Qa7rCvK5R1FLsD/q7Cdi58Vt4idr7SVJCzgTEYSEJa72DnF8HV1RUpKCgsHz5cm1t7aamJo7XAwAAAF/cmJNSYoX7Wr+b1K4Vbl4COcnExIREIuHdi3nXNtBwvSO1/EX8ve7i5/3X6roY/2k+3YMP+kdejLKG2AuzWGOXCmuCIktQC4+vaO/4w01LajqYyQ17GNckLLJPiHtZC7sSxXxND4ZryTJ19hnrb5e04t9vzS9pLSBlteOw5Tqq00Znkoiz3w46fZet8wELd1F72n4fq2NhpobFhqmPHJq6XFFUut4erJHjcSKBLB1J2M+0FyS4Cdv5qgUlnQ7+PSdRLxV5FpZzcCbZ4OAgysF8fHy//fZbQEDAwMD7jZMJAACA23BjTkqM2fWy5ZtJraxgk7Hhos9Jvr6+2traePdifnUOthQ9D/+/1mrOzkk3ntuXtBrfeBF4q4PZ8boeW762vhULSYERxYywwsikq9j8gZHhxpedTa+6GnvKbnTGeNx0PBZCPxZhdThG81Ck1qEIreOeansvGvBLvM1JOyQsBQ5briaSNjg7iIeZ7o8w3O9vsNvJUoRsLhFsKB5geijUSCfNKPIK8e4j1/AHRL18xvEEslSkvUS4/QF/ioJnlGdOqUFspkt+iVZE6rnABGJKQcLVu32v3+a51q7uvLsNl2sePH/1p+d3d3R0oAT8xRdf7N+/Pzc3l/XBx+wAAABwA27MSQkxuzpavp7USgo2Gi3+nJSamiojI4N3L+bX/e7yiTkp58nFmk53FJLudtALnqpcadFFOQm1my+Ch0bfntFcWHofhSRXZr6aZ5yyR8w5j5jS+qa2vh6v2xXON/KJt9zcaui5beGpTdEyPp6nE/XlYjT3R+jtD9OT81OXs9bgP2AlcMBqp4TFZi1blJO2M6z2x+jv8TMSMbGSvGi6X8VC/LzVPk0zEXm7PUo2UtpWRwzsTjEtDyXYS0XZ7Q+zOxBhdyyKbhiR4XWprOjew+CiytPeMUresTohqfSMopw79fVtL8yiszWCk8/7xeuHpd9qapn0fm/evIkdYtPT07t37x4eHzkAAID5Mpc5qa2traVl8l8RZHR0tG+C169fz7ASlJNio4Xann45qV0p2GBkeGoOe4uLO3fubNy4Ee9ezK+GnqsTc1Jei3Vtp8fbnUnt9ignlbXZFz0O8M73Jqcy4kqvdPX0V95pDogoxkISaipesW6XS92vlzkWFxhdcjbKt7EscwhuYMQ9CLC5FHQ8zkIw3Jw/zJyfab4zxPSAs972I3b8x6y3GNiuoTquciILBZjti9LfbWkldtx2r5zN7kP2u/c7oCZ81E5YwU74kL3IUXsRZVvRYKM9TDNxprl4oKUUgXJaJ9COntrc1qkelIRCkoJH1GGXsBNukYahGac8o6WpIftJgXucAsSdAlBautr49orFwcHBiIgIISGhFStW0Gi0np6ed34yAAAAFp25yUljY2P+/v4ODg5EItHNzW3SQYeGhgbCf+jr66MlZ1gVykkx0UItT7+c1AoKNhgu/pzU3d39xRdf4N2L+dU9/KK4PZKdk2pfFbb0Xqrr8r7zglraZnO1zZ+UwrCJ8ULNIyWXeen6q94B/7gSLCShZpNwyaOg7Ex83BG/MPVMM+1MC9Qcypwyn4RSS30ko5x3hFsKhJsLhJvtCDPjc3MQJ/odCHBb60xaTSGtIpN2hxqJhxrsUrHbc9hW7KCdsCRBeB9B+JidsLGlsK3F23bBdp+i1Vn388Y5R5USzouQrcRPU2Rl6AekqDJnPVR84veT/YTsKQLWpC3mLrttfAQsvLaauK03ctlk7Cpg6SlHDyPHZjg4On311Vd79uzJzc2FAbEAAGAJm5ucVFtba2NjMzIygv5moG3rGS59t7e3v3PnzgyrQjkpMlqw6cnySS338volkJOQf/3rX0v+PvAvh57dfXn5Vld2U+9t1tjbS9hYY8Ms1sj9V+kZtX5YSHKKD/NJK3NJuHLt3qO7Ta3GkZnm0VnkzEL3gjLNhJQ9gQHCfr4KqaYXMk200s0N061i7vl53/YXCXfdGOCwJcxqS6j1el+nLQxP59xiu4z8I4FMfhcXPgptqxthb5TBrvO2YodtRWTtdx1wFJZyED5jK2yAcpLlLltLYXtzcXlr2QuGGv6njKOOHbHTEzzmuOO0k5C+jYC23XZtR2EH290OdsIOdrvs7UQJxK2GbusNXNYZuqCotPKM8Vdbdv31o/+VOHLi5p2q5696HzzrmP1tegEAACw6c5OT4uPjk5OTsem8vDwmkzntYs3NzUZGRqOjozOsCuWkiGjBB0+WT2qXLq83WBI5adWqVehzwLsX+ECZ6dajm9TEeJfkDPfEIh2vpNOkyNPESEOfVMPQdO2wVMfkfOOYjLMx8UpxMbv9fA+E0RTT9FWiDXXjzcn55PNMulSa0454202RthvC7bdGEi6kJHgUlJEuXTkVHMNH9FjjQF9lT19LIm7RIQjJOu6WdRCSdNwlZ7/rrO0uK8tdNm9z0i57i91nrMUPW++Ttzxpe1HV9+w2Xcd97kaSLgb7nA1FieZitmbiVNO9VLOj7jqaoSpbDVzX6zt/J6v80dc//vXjT38UO3yI6EdMvWwene2aUeyVU+aXd7WxDe5fCwAAS9Pc5CR/f/+CggJs+urVq+7u7tMuFh4enpCQMGnmhT/S0NAMjRKqe/zlpJaZv2Fp5CRhYWFeHnJweHSUeem6T1qZoW/qeefYg1bB56gxypRoJccIWXWGnK73aYvAC/bBqglRByMDZJjBUi5uKj7OJkxvu8j4k95usgkWW2NtV0fYr4mwXx9JkE3wcsspMozP3ET0WGnv8pstfYUNfYUlbaUFhe8sif8IUeCIk4CC405L650EK0F7SwGSJb+L5RYNx+3nHHefsNsjb3PEXk/Y2VyYaLHDwVbQ0VrGU0eSbCDnqq0cdd4oSV414NQ3IjJ//XjZP7779WeZM9t1nLdZua93cVvt4rKG7HLYO9Ql44pNYgo1K7t/eKaz7gAAACxSc5OTAgMD8/LysOmKigovL6+pywwNDenq6j57Nnmkwdo/srW1DYkSqnn81aSWnr/RYPFf74acOXMmKioK717gqat3IPPqPR2vZG3PJCVS1Hla7CGr4APqXpInXCQVXKSUnMV1nPb7O+7LdBJLcdrr5q7vmsSIKbIMTZRzcZOIMt0WZb2BabMhwoovzGqTv91uF5KwM03Qx2G7t91aEmmFDW2FNe03K9pvFtSVxrRVhtQVFtQNbg5bPW22ultvc7PebOnAd5HMd5G0XcVJ4oz5CaKmuJuJkKP1TgebHXa2QtY2Mnb659yUlf3FVkut/Ms//3cZ37bV6oYi9l6KFv679F1+Izr/SqetIDuvIDqvtqftdKALO7pKu3gE3YrvH5mXu8IBAADA0dzkpJycnPDwcGw6OTk5JiZm6jIoP1EolHeuikgkBUXtuv3om0ktOW+T/pLISWZmZrww1OQ7xRTe9k4tVaPHK1OiJcwCxM+57TvuLH3SVfIMWcTJZreb1d4sG9FcQ/FUY/lIqktsrnVIqriJ+x4f6y0BtpuDrfkiLPlCrNd72aMAtCfMeE+IuUiYmXCo6XqK49ucZE1baUNdaUnD2gor2jpr8jp7p3WGpA1qlI1qlE0XyUIGNnoeJ9UDlQ64Gx3wNBRysnwblRytNigd/eK37//n33/7VUmQP9TgcIKPPCN0L5lxypO238d6lavTz3TKL1TKr/a0VSiBWVI2W9G2WNNOBLvkPM3H+0MFAAAwx+YmJ7W1tenp6bW0tHR2dpqamjY0NKCZ9+/fLy4uZi9Do9HKysreuSqUkwKihG88+nZSS8zjWxo5ydfXV1VVFe9e4O9Ba4dferljeO45aoyUWcCBCx4HTtAPKbnvk7cXtTUXIZqIhuvuu6QlfElvR7rRrgSLs37B+81d91CdtgXZ8AVZbwqy3uhru5ZO2OVvKhZsvCfITCTEFOWkHQEWv2HxaDwnrbKirxrfw7RWm7b+InWdBnWDKmWDKnWDGlXBRUMr8JRGgKKUs+EBBspJRr/ISf3ts0///s3yTYYHREJ0dqUYCsUZC4RaCLpSd7sR9lOtz4RonEo+v97L7mca5TcL6mpz6npLyiZL6lY7igidZFzEeNTzEu/PFQAAwFyas/GTKisr7ezsbGxsSkpKsDk1NTX5+b9vYb9+/drPz29wFjfMQjnJL3J3RfMPk1pc3ha9JZGTcnJylvxQk7PU/rK3tLop53qdR0KxKjX2yHmvQ/IuB/bbiDmY7XYzOJChKZyuJ5BluCPbcAf6mWK+L95SNtFwf5L+jmiTjZ5vQ9JGMkHc22RfoLF4sLlYiNnuUFPBAPNVprT12pTNymTU+HSpq6ydV5o6r9OirdOgbFSlbDxH2aBCWatNPet7QSv0tHbYKWnHU9/v3vj//v7RZ5s2rLugvM9HXzpZc2+YnmCUyY5Qc/5gi20uNvwU270O5occjJSTz8r6aa/Vo642pK0xom6wIG9zIPM7kndRSRalIQmNd/H+UAEAAMwlbhyP2ydSpLT5x0ktJm/r0shJVVVV69evx7sX3GVklFV4p1EvIOWMQaDiWZcDBEuxYP39GZoCaW8TkkC2IUpLApnGgmnG+zMMpBP1JBN1RUON+Gk2AtYOImRLiQCTU5GEs/HE/UFmAnTbDXrUrWfIW09TdihShdTpArqu6/Rp69WpWxQpW05Stiq8bZs1nBV8TOWsxH/g+/rvyz5ad2ijkJ36LpLlXrqhlJ+OTJzmvlA9sSiDHUxz/iDL7S5WQk5WMrbGsrbG5+LOStEN1+pS16CcZEhba4iiEnWrPUXal+Z4/ZJRbobn5bKIilvNHbBjCQAAlgJuzElekWKFTb9OahG5/LqGp/Hu3Rzo6en517/+hXcvuFHf0FBG0R2iQ7ypXYAUzXh/iuaOlLc5iT/LaDwqGe1MNxZP15dK05dN1pWK0tsbZSLk4yBoRpJjOJlle1rkeCm6Ox8185fU8JJU9jiu4ntM3U/ZOnSvpucWfZdNKtRtJ982fnmq0BHialH5fy7/+qufvzxtJ2GecUKTeVrGT1vSS0/SXV/KQ086VHtfvLZMuoZEjM4uL3NRCwssJB2l6apEnd1NsERRjM+IstaA9rYZ0wUI7vqZqWfSYo0zM1FOQo1RUNHVBzfBBQCARY8bc5Jn5J78phWTWthSyUnIv//97/7+frx7wY3Gxsbykm8EuWZq2rhK+mqLpOntyH6bk8absWiWwd4sA8lM3UOZOrJRBifCbTXCmAaMOA3rKI+Iy37xxa4hBY6MLDXjcGXtYC2TCAOrGAf39IMGvoKWnjtUXXYoOm+Ws/p+nfj/fPTPtZt2+kUmNr3o6hvqKGm7YRbrL08hHfG1Ou6vc8hdR4qudzRfRe6S2uF0VRk3PTETaykrkyM0XeVoZaVwlS2GTpsNSVsNKdsNaKgJWtNPBEUqRcbopKcaRWUo+8Wd9Y0ziEwvb3yE98cJAADgQ3FjTnKPEL/0cOWkxry0Q2ep5KQ1a9bU1tbi3QsuxWKxHta1Xiupo1wJP1Vqvv+yoUCWyfZMywO5NnuzTPbl6B/M1T2Sqi8Xanaa7kb0iwgOK/YLLrx682Fre/fg4HBi9i23wHwds0hd82gPnzz0aETGtVMeUVtOGy37ds1f/vbP9dtlbEhREfEVva+fdL2+2T10f2yM1dv3Oiq2wjsw57SjrYS1uUKS2pmiMyfzzx1Ju3gkSutQiM5mC0chos0uZ0t+sq2AMUHAzGm7MXm7IYXfjLLfhaQbmmIelYWykZJPLLsFFV7H+7MEAADwobgxJ7lE7M14uGZSC7wkqGOohHfv5oaEhERGRgbeveA67a97bnc+qn3VMsx6O2J738jApbYKn8Z4x7thRtejiHeyTmb4yCbbKqRan4pxlCO5XqAz7H1DUBIKjypDCQlbCYs11vSko+RaQ3rWbdSuVTYymcwVq1Z//eMvIodV1cyYJI+s6MRr1Q+L6ru8sPa4O4E1NjI0NBJRlK0SQZaMsz6Rp3GmSEWxUPVCgbFhgc2FTCMxInW3FXmfn+l+PxuVFJ0jnnbbLIh8ZmQBAlGCYSfjzTAOTzvsHKbgGXXSK/qER6Syb6xP7turO1u6um82t9S3vUAdw/PDBQDwhhs3bqQCjmRlZU37kXJjTqJH7Et9sG5S878kpG2ghHfv5sbFixcDAgLw7gV3qe9+5l13mTHeoh5WDI7+4aZpY2Nj3UOv61qfW6VG6ycGoKYZ4mvm5UPxj0Uh6fGTzqkrfPTokYWFxddffy0lJZWTk4PWMDwy2j8w1NHVOzjcc+O5R0mb290XHlhUevn67T0Hi9quWlRSD+cTj+RZK5dqnCvTNL1hm/iEGXwnSiMp5iAzQDqaqpxKt7zsctjTXtzNepcTgd+KuJtIOcx014qLPOMVK0thSpCCZakMeXcX20TXhJsBlvFpNgm5bjklCdfujoyypvYTAADmUHx8PNoOrwTvj0gkTvuRcmNOooRLxDbyTWqMHBGtpZKTHB0d0Z9wvHvBRUbHWIH1RYz/5CTUKtofTLtka/eLqOrk0OrIzJbYoqe5bS86R0Ym3y7w6tWrioqKn376qa6u7pMnT6auJL+tlHTXCTVqtdPlpy4oJz3vv4Lmdw32ON720iwjo6h0vND6XKlJUGPIve7KSw/uqyYlKkRFH4zxOZjofjHG96AbZZ+HnSTdSdSJuJNA2h/lJMf0lqExd9v6KnqGHndzQU0jiKoWan8hhKzkF3s+MIGeWVT9ZPJg9AAAMLdQTrp//z7evViUFlNOIoZLRTRsm9Tcs/doGZzBu3dzIzw8/MKFC3j3govUvnrqcCfZuSabnZPyWmv+bOGxsbGXQy+6h7smzR8eHo6MjNywYcPatWsDAgIGBqa/3OxR3wvfhmzyXTI7KlV3ePQM1WOPNr5qc7sbZ1sZ6HQjtvrF44GhllHWgNeNcpfrJcTSQqeSArPiZIVg3xN0b1kXdym6q6Ajcbu9k2i4g6if5z7nAClK8FnvABU/F8Nw1/MBjspB9ucCbc/40lSDScbRjJL71XP1iQEAwLQgJ3FsMeUkxzDp0Prtk5rrEspJJSUl4uLiePcCByzW2IOGZzV3n3S/+v1yP9YYK6vllm99nsbV4AvlAfZ3krGcdLOzefar7ejocHBw+Pzzz2VkZLKyslCQmmHhax0N/g25nnUx5LskLCpVdaZPWmZwZORVf13ZfZuMW1oxlern0z2sSy7RrhZZX8l1KL7smJF3gRytQPTYTyHsJtkLke1EA+miDF9xd//TjBjTqHBCshtqqsH2x10JskRraUfHg0QntUBCeaM3iwW3ywUAzCPISRxbTDnJIUw28P7OSY2WtU9zqeSk+vr6tWvX4t2LhcBisbq6utDPN29vhDzi53/Z1j6RRE4NDihouN+GZjb0tPnV56FGq0lTqwhEUcm9Njf9ye0R1uSjadOqqKg4ffr0F198cfHixVleQni/uwXlJNR86zMZ9xN86lP7RiZnFxZroLTOMuGatmfhucByJYMsLdl4D/HQQDH/gG2ujEN+YRpknyMGNGkD0lF7BwUf+9NRLvKREScjI9WCEskpuY7JnignmUQ7nKDbyTjZSjs6oabCIDV30HsH77znRwgAAO8BchLHFlNOsg+T9b8vOKlRs/ZrGpzFu3dzo6+v75///CfevZh30dER33336d///pflyz/29/cOjizRMQzHmrF5dASzmMUau/qiAYUk0t0Uq1txjlXJ5OqUqq7H71zz6OgoqgXCwsI//PCDq6vrew1GxRpjpT69zqjJNk2NUwsOJyZl32uefNpQ/+t650yzi6FmyiHGGpH69PxzksE2q+n0FQT6bw4uqy3pfFbUUwTqcXvSISLhXJyNbJzlnliSdLxL4LWS+Ot3oyvKQ4rj1P39JAmuUgQnBbqDth+BFOdc/RTlpJvv9yECAMD7gJzEscWUk6xDD3nV7Z7UiJmSGkslJyGffPJJZ+c0V2ktGWlpaT/88PfrOd+wWn+pLfpuw/p/HTquxc5JqDnTMvr6Bht62owrI8+XBaB2rsxf+xrzad/kE48m6urqotFoP/74465du1JSUrA9Ve9rdIzln1tiH53pHJ/vm1KK2uNnf3jRyofVehE2qsy3OQk1tTBd+SDLVfb0lfYuK21dVlrS11pQN9hQj1FoB8kkMV/rvVFWshkkxRyCYo65c4k7JT/kQki0fmiqgivzMI12gkZ1jKFTE+iNz91GWD0cdBgAAGYJchLHFlNOsgqV87gnMqk5ZiypnLR58+a7d5fOPVP7RvpuvbxV1lHW2NvIGnubXUREt6Qwv0QhCWuVOd9++/1n6lohx054yB12RT8JjsljY2NP+zoNKiNQSFIq8ZHIo8nmeZhcT0poujnxuNvj3pexjbeJmXESCsdQvtTU1Kyu/qATovtfD2HxiN0u36gvf/g45U5t3r3GlwOvL1XXW8T5aIZZoJB0lml0LNhkN8N1JTsnWdBXmdNWW9JEzKn7HSh7/Oz2MSkX8s3PF1xULVa2vaqkm2QszbARoTsLOdPFXZwPOJPVfWmBl92KG8te9PahDrzo6Usov+uVXRZdcudp56sP/PABAIANchLHFlNOsmAeodeKT2r2GTLqBsp4927OSElJpadPPn14keof6c9ozUh+moy1651vx6H+beXXt/K+Zeekzns//u/f/3L4uLu0NO1tk6Fp6YW9fj1c393mff8ypTpd/oqvSJr77jR32eyAswWRBa2/f8+f9/ecJtv+snXTp99+La2rGnCt4MM73PDqiX1MKjE20zu5BMtJrmlFHgVlWAsovZ5VVWcVk6kYTjsSZS6dYHwg0fpwGpHfl/B7VDJzXmXqvMbcebMJdZMlZasXUSiIIJNmeCLvwqk8lfOpanLextKeJqIU6+0W5M3mlB2mpH00d9WQRHp+MaOoornjZfDlShSSsOaXe7VnYHBqJ4eGR3r7p5kPAAAzgJzEscWUk8yYR6m1eyc12wzZpZSTNDU1vby88O7F3KjtrmWHJKwNjg4qnj5Csf6MnZMYpE9//e3HI4puhxU8UFNWC9AxjCgtr+8c7PO5f9nzXu6BbK/d4znp6KUQ+bww+xs53d3dJDLl4y+Wf/zzL3yqF5XjImk3C1yril4NfdD9ZSu7aiIfZdhlR2kyQ0wion2SS9wTiiiZheycRM8ptg9JORrrKB1vJZ1pJJVuciTB7kQSUS6exOdCWWXnutqcvs6Ivt7UeaMZbaOlM5+XwxamlWCMqVCoqVik4dEwjYNBejL++sI21tvOkvhPkXadchRWdRJz8DvlG+lVmB5cUsYOST556QFXgq41FbLG/jCu5o26JwFp5SjAxRfc7uqBWwECAGYLchLHFlNOMgk55lRzYFKzTD90cQnlJBqNZmZmhncv5sadl3cm5aTekd4HDx589dW/TbSW5UR/RTD99KOP/vpf//Vf//3ff/n438t/WbFdWPQ0yklFJXXo6be7HqGotC/zbU6SyfJHIUkyhLLlmMynn366TXCvuJ6tuAdjvHmrpcRxlpP6RgaGWCPYRNSjTJSTIprTqcVxZknhzCslNY+fsUMSauZB6VpR3mez7KUTLPanGuxPNpRJMj8W73A0mnwq0luGFixu6H3cPFjAwmWzFX2jPXlboM3WcIvN/jaCQWYiISa7GWb7fI1kQ3R3a9rynxzPSScJwgpO4jq084Gm/sUa8TdNgwrDUEgKLGLE3FaMvXP88kOdxpfMl4Ovkptv+9WVeFQUUuPy2ccEo/Pg1G8AwGxBTuLYYspJRiHHCdWSk5pFmtxF/aWTk6KiohQUFPDuxdx4/vr5xJCU9ywPm9/S0mJgoCl7SFRTS6W2tnbZsmUf/e/Hv/wqxL/jNN8WOV2jsCdPO8oqHxSW3b9Z94h4M/fYpRARssnyLes++vSTUyZ6j5+06FMSlR3D93p4Y1HpUFBQdMOt9+rbq+He5CdXwpqyULveWds+2IVC0sR252XdKIvFrLjJzklGjBT1OFfpWAuxaNO9Sfr7kgwkk0z2h5nJx5uc9bbTdQw8fJ5xQj9QyNx1pxVth7ODUKrJJj/7TT72OwMsUE4SDzAUY5gd8DYUvWgrcJK4U4EofJKwW95J4qKddri++2XV7DrjyKs6JrGB1MLjxPyjbkWHc+oVrrZqRDeGetQUoGaSnqwSEOWWUMiOSi97P2gXGgCAd0BO4thiykkGwfI2d2UmNZO0o2r65/Du3ZwpKyvbsWMH3r14b3frW6KzboSnXSu+0TjxbmWNvY1pLWlJT5KC85NiYovTkipr706+YYilpd2G9Tu//Xbdl1+uOnmSzvDKDU+4GhhVgppX0CU1ffPPvv/2m41rZO2N3W4Udr7uHxwaNqEnX3SIViKGSbn6Sbj5qAbF9I8MzbKrra96smruO16No96JxXISavU9j2If50zMSS0D7Wjhzr7+mMoqFJICSysT82/J+ZLFQqxEosxEI43fRqU4w70hJrKexofVrTRtbU+r+5w+7ythz+B3J22PtN/5NifZbXQnbPGw2+ZlI+xtKcUwkfMxOKBpKSLvIKJAEJZ3FD5OlDa0sEw963pFgVl1wq1c8VS4of0lOae8I+T8Yx5XjmbcV/CtJdtezTAvS9VJjj/nH2ETmYmFJL+UsoHB4Xe+XwAAeAM56QMsppykF6xgWXVwUjNKPbaUclJra+uPP/6Idy/eT8Oj9oD4UtQ8IgrOECLkbYO0PANiKqKfD1SPjY2xxlg3KhtDAwvZrbb66cSnF+bf+dc/PyETwuQOKi9b9sVFNQojuIDkGiN+4Ng///Vv/p3iRWVl1Z3PajqfvR75PRZEZ1aqE2JQVEINTVRUzXaQ7o6+fu+iq/SCK5oFfqg53ojCclLpizuP+luxqBT1KPP2y7qJz3o9PPy466VvdrmwtYuIr41wgJVIsIVooPluuvUeirW0irWCnvk5CzNNKwaRnOoWlCce6CEQ6bAz2nozw3YNibSWTNxIddxCczwcZaaUpHWCbCJ1wV5c0VHoOEnsDNkuUZV6Wd6j4giz6rh13oXDIcYmGcfG23HzrON+FYdMiymKGWGoKSQzj3sH20b9npPKq5vm4l8PAMATICdxbDHlJN0gBfM7hyY1w5TjSyknDQ8P//Wvf535DhvcJrOoBoUk/7gSedtQSUPvfQZ0eYLrSSfXpDu+zd2lKBU5O6W60zLZOSkz9Q8n1tysbFI6paeuahMaeMXU0OWjj/7x9Tc//evjZZIHT9O9UwKjSvoHJu8rGhoeScm/Q/TPoQbnVdxpmn1XL9U2eBSUuRWUaBf4o5ykVeAX8iAD5aQbXW+D0TBr+NnrF/0jA+jzr3r6LKv6fsXDx+29fWG3bhknZJ5iRAtaM0StPQWdaLtIzjttXXfbEk+42p40MD9rboqanq0f07/QLTD3nGvMKV9/MQ+HtQTyanvySlv6BgJtO91xf6C1XCBpnxtFnko6bOMsY+EpSfDVjLNWS9BSS1KjFSuY5qju9rLb522kk6xglH7cOOO4Tvy5o0nBJ9NDsaikmBSWVFaVV3m/+mHb4vpPAgDAF+Qkji2mnKQVdMro9pFJTTdZXnUJ5STk+++/7+jowLsX7yGnpBblJHr4ZWkjvwMGHlhOQs022jOqyIkZcFn9fMBpBYbquQBncho7J42wRl+87ukbGex+1R/BLA7wvqSsZPTVl99/993Py7/8bvM2Yc/AHBSSUnJuz2FXM+7WYScb2RYkY7uUghrTYx7l9o784dqxzOr7aBlSzhXbjDy9xAzn4mKN0GQln5i9xIBdVoz/n733AGvzPPT2z/nOOV//X5O0TdIkTnt6ctKmiZN4mz1stgceGIzBmL333kMC7b0QAiQhCSEQiL333ntjzB4GbGywARvMcv8PkUsI8Yip7TSu7ut3+Xolva/e55VkdOuZpyBM1eCos7gY/yxMdDPEkxxsDwlwCfWlhcfHskrjshqAJxkg+YoulAMB5AP+5GMQ2iEo9TiSrk2PdeFnmODjrIkJTjThNRL3dAT1LD/iXDxEP8HTLMnDMt1NmQ49gkHJ48NOM/xUqcGyeIomh31eFHOVyzON5PvGZg1M33mFL4gECRL+RZB40p55OU+Ki4u79GxsbGxeZ0ExzhwTr44ruwJ+edt5Wr++8755Tpw40dzc/HOX4ntm7iy09Ix39t98uPL0PkCTM/MxqXXk+HLgSae9aBcDyWJPCoglcQuhWGS6jSXL6AodxMWJR8Tl9PdN9d+bcatPulLKNK6IoVamOzq6vP/+hyonT/O4KRsbm80dI6e0DT759E/h0amLD17lArE3bt/Z7peNKs8nN+W1zveL13FbXlsr7BvgN7bFNbWjCso903KNBEkgapFsq5RUj8Rs4EkmjMTzBJ4BXmARnlQ7NMaurWXUsSMrYbAIVwgmOCISW1geMT035RmdeRnGO+FMO+hPPhRAkYaGHw2lyaEjnRIzKaU1VrT4836MK04RZ32JJ33wmjSqJh+unQC5Igy4nOCpF+d+EIX5Fo7/BkE8jKIoUqLO8rgXsRx9CMceKXREJSakN66urb/C10SCBAn/Ckg8ac+8nCfh8XgGg1H7DE6fPv06C4pxjDF1bTPcFad0Y9u3y5MuX76cmZn5c5fiCQNjt2NS6tjJtSDx2c3PspbRqbncqh4bbKIBhCWWJGM0JbaSyM2g+XoleLjFAVUyNWJ4ugtYzLK1jXXbasGpfIo0ye1jxUP/9/3fXHG0nJqa2n62Bw8fLa+sJSen7tu3j8fjvdorah67GVXVSK+oz+q6/mD1e/MTtnSGV9SBoAsrDDmJV2KFYk/SiuZox/LCikus2SlAldx4mdF59UPTWxV+95ZXSq4P5fcRakbgN26RR+YoY/eosw/yGnrGgtm5F/xYqj50KUi4TChdOoyuGymgltUG5uaexTPUbEnnbUjagegzgdSzQdRLfOT5BLiuMNhc5O4Y76RChsniMYcwONVwnG+OF7nM0xwZcgVKc8bGsVLIqYWE7sHczcc/td+6BAkSJPxN4kn/AC/nSUVFRf39/U99CECn019NoZ4G8CQHtplzq9GuOKaZvGWe5OHhQaPRfu5SbPH48WNBVpNYksSpaBqcmb0/Nnn3x32GAEvLj5jZda50gQeLkdzK6rqZH8spFnsSiJdHfExMRXZ2e9Pk0BEv49989dk7n3263+WKagbOpT5B/AzAkBLzWn3xGXYQISqqsKGx7fDhw9bW1ktLS6/1Sm8tLEEyi72TcgPTCkml1ZdjEs6z+GJP0o9N0E9KCC4pIlRWQbKLizoH5n84Gn/8fiTQo+1MLcaDO+/efxCX3xQcleNFS7cPTxZVtTeNTUZU1utFx5yGReh40fV86GeDMdrBRHV/wgkaTIEbqsiFXMlxdC8xseV7aDMQCgRkcI65oFlf1HAWEmEWFmmaWHgtu8o+t9q9tR9690HKa31BJEiQ8JYh8aQ980vqn2TLNrdrMd4V2zRTW4+3ypOIRKKnp+fPXYotVtfWd0oSM6kGE1UQk1QDwkuuG596+nq9wK4ScprNAuOu+nAdoMIQaAqQJB+vBCq1kExJt7d3++D3v9+nePg41lkjjyyOc128+Ni0onbb4IRzDpGn7SLO2jEcoImDozNmZmb79+9/jqD/46TXd5sxReI4xKb7ZxXqcgVAkkwTRIFFhZi6yorRkc6ZmcVHT1kwZGZRtNOTmgayU8o7kkrbGnvHJmbmr4/emp1/InmrGxt2bJ4VNeaydwTI+UD8mTC4eghaiRmqJAg8neGuW2TvU6+Pq7uKTnHz4fhiCq6yas7mdErBo43CE/REpRpp5ZdzqpwHplDdE4iqrprukZmdszBIkCBBwrOQeNKeeTlPWl1dnXgGy8uvd8o74Ek2LAubZtPdSTW38XiN/aLePGlpaQYGBj93KZ6QUdK57UmY6EIkPU/sSVHxlUR2Sc/g9KPV3VP4pBd36rgyxbnkynRGJJWW9uJwfHX1C7/5zW/d3NyGh4ddapO2JelMQTh/sAYcuLa+gYwqOOcUpW4dDqJqTVN1Cg/i5bZPTAuFwn379sXHx7+Oa7xz/0FUdp0jN31blcKyS0W93ZjaCmJDNbmppmR06DmHr27cnbwfI5ak5iF+dEaVeNw+NCEfkpMf09fYdHtie2yaJ1doRInS8Q+/6EHT8SGfh6MusFFnS7zPFrlfKHLVKXRxqjYhtui4RfgY4Qh6WD99vKdVpB2j4Gx06kVRqXp6hU5zv0vt9eCsRg9eoSgqqy6lonNjU6JKEiRIeAEST9ozL+dJ4Df9l8+gvLz8qYfcv38/JycnOzv7zp2nj9Pp6+sDZvCcHf5eUIwly9K8yXxXLFIs3jJPam5ulpOT+7lL8YS5+w+FuS1iT6LHVbCE1UCSaLwyV1iSY2hiuKBCkNUE9tnef3Vt3Ruftu1JF52jFM7Zf3vw8Ndff81gMMCHoX96Nrv9enp7j2uFyKCUbV7Jo/eV3l5ZAMdubj6GMfI0bLckSc2apmBLUXCmXiby6WV1JX1D4HPy1/37NfQMqHmVosauu0uvbHWzidv3gCeFZ1Z7xeXYcdJceJnFHQN/22pQu9c9e2tqceGFz/D48fry2ujK2kRuXa9YkkIT8i2ihZYsIbG9ktxZVX9ra4ansu5er5SYSxykCgEu64FX9iRdI0foFYafKfA9le9xKt/9QqGHV60Vts5UB0aQDiGdREG0UT66KE9zukNpv3TLqELvtG7/tA+QpIx63+jsCuBJIDcmZ1/VSyFBgoS3FYkn7ZmX86SpqSlVVVUzM7PMzMyVlRcPRFpeXvbz8wMOVFRU5OvrC74md+1QUFAAg8Hq6uqAZj2/YQV4kgXTyrTRclfMk63eMk+anp7et2/fz12K79nY3Lx778H9xeXegWlxZZI/Ph1IkgtMxEyqAf6UX9W7vfPDlVU/YgYwpNNWuP2yF3793oeffn4wIponrlBpGpmkl9SJwyhr6J2dnnp4b31zY/vw3NreU44RwJNO2FDl7SiKPuGXqHwbbpo1NzWrtY+cXSalpvU/X+5HxKdzK1t+SpPT3PJy960XuM7K6jonvwmo0nam517sRk8lp7aXklSBjSuxiU7a6Umc602TD245lmFtSuF6GUGnY4O1IpDn0eyzJLo6mXw2HqKR5Hu6wN2qyo7eY1Z0w0WLQTpIwB4iIWRokNNYX12UF69Rs/2mYcekScd4cFqdPyc/UyxJIB2DUy8umQQJEv61kXjSnnnp/kmbm5u1tbVeXl4KCgrBwcFtbc9bjBPsyWAwxNtxcXE5OTk7HwXa5OHh8fDhT6oYAJ5kxrQ2atgdk2Rr67fLkwDvvvvu2to/3ZIUa2sbGUUdwJPckclOoYlYZpG4nkmY27JzNyxd8PnBE//1q19/flBF0wzpT34ydm9z83F0eeO2J4Hkd+3+Twt0KjAx97xHlIpTuJIfXQ0dfTki3pQlAvGOz/GMz3YUZMia2v76/Q/MIOjJud3avYvWqSlqfR2lrhYkf2Crimjz8fqd5fbJpeI7yx2bj79/hcdvz/MKm4EhsfMaO4f3rh1pZZ12qESQ80iWPpnrmZYJJAmE25eP7w21r3GyrXK7mON9PsP3TBxUExd+AkGXCyZeCCdfjQh2F7kzuoxi663tkyKUIvEHiOgDJMRBMkKKHHYBGYQvMWbUIOBFjNB8nHkUxiqa5B3Px6TkA0+avrsAXHb6zsK9RclybxIkSHg6Ek/aM3vvx724uJiYmKihoeHt7f2sffh8fmFhoXi7pqYmOjp656MdHR0YDEYkEmGx2Pj4+F0VVC0/BAKBmkbbGNbvjrHI5u3zpL/85S+jo6M/dymeAnCdkYk7sekNdEHFdr+lkrr+7x7azM7OVlNT++Mf/9vE1tMigGMZIsBzSx4sP+n7vLq+EVFav9OTMlp7dz753NxSbk47O7YimJnpm5p9LTbRiJUoliQbTmpwUsEZIsckRgRyOgD57kefOHt6b2xsPKWU37GwskL7uySJMzQ3N7KQ3jMXJQ7YFtdyLayuzD16sL6xOXt/6dHLTE10fXAmu6SroKLn5sw9cHN2bhG8Ggi+yC6CdI2K1mciodUZQJIonaVZw3Bkty/wJOtyB50cN+0sLy1hgAqOIgulygdTzKLjLJkCaybbKzc2LDPzXDJNhov9loj6hoQ8Qg07RoOa0RzdKo10i9zO53to8AM0yfCzKMxFHMmZxynt6ZqdXxIWtESn1lBF5Vk13eA9mlt5CLKH91eCBAlvKxJP2jN79KSlpaXU1FQjI6Nz585lZWU9azcWi1VRUSHebmxs3DXcHTxka2tbWVm5sLDA4XCYTObORwN/iJubm3GU3eVa+125mmRn5WH7k671l4OKikpTU9PPXYpnsrC0nJTXKpak5IK26Vt3gO/+z//8j5aWFvhUrK8/UzWy2vt2elL35K3th9bWNpIS62O5VU8iqK4fGHURZAFJsuOl4bIrwtKKTxM4FyJ5GgHhGg6Us3aEQ0flFZSVu8dHnrqCx8j8/E5JAqmbaN2WJHHmV0byJ3tpvRUgwuHW+6u762OWlh89a1LH9p6JmMQacTiJteNTc103bkal5ZPKcAEZOGMO/jIbfVVAQlWVtt+ubZjBwJs97Cqdrua4nE32Uhf5aPKDFcKoxwNJysFkbQLekIE2icaYioI1GbhDVMw3UcgDUYjjNIgCPVA7xs2jSs+2ytCp+srVPMszKS6y4VAVAlKXgQ7Mi2u825Rc3E4RlTswk6yiEiwj410yUkmtVeS2auGNjuX1f7paSQkSJPwsSDxpz7ycJ4Gf7+JGNyUlpbCwsO7u7uc/+876pOrq6l31SfX19X5+fuLtmZmZ5w+GR6Mx16LsdGsddsUgyf7t8yRLS0uRSPRzl+J5bGxuTs7MF5ZU2dnZ79u3z8bGpr29/YVHLa+upbX0iDsn1Q7+YPHasbE730vSdxkavNUxOkUtqKEV1nqnZV7jx2lGR6rDKerOJBU3ooY3SZcWpWhm/P6nnwTGM3+sOD+uT+q+3bLLk4omK8SSJE7aWOf3hz9YSa/p3mqJy22o7Rn9sYrFpTRse1KkoBLDKyYkldtSWJ4JuGsxeMMo9GUq3DIGD0vNuTnf138LB692vZrid4ofrBIbLBMdegSBlwkmyXuTVdB4dW6oemzYWQHiDCtYiQg/hsF8S0N+zUCqp3ga5Nt4VV05l+cAopNnp59tY5BtfTbeTRaJlENgtKmU9OulrLRaZ1YykCQQXUrMOSbTrzYXeBJI/uj3ff42Hz9efXb1mwQJEt5uJJ60Z/Yy3u3SpUt0Op35Q8bHx3+8f11dXXh4uHgbOFNubu7OR2dnZ4EbiZtORkZGtp3pGQXFXI20v1DttCv6Qgcr97fNk3x8fPB4/M9dimeyubkJ3kotLa0//OEPoJw/7p7/fFbXN348lH1i4u4uTxoZ2RrG1T42hSoqcsxICq7IOJ8ccTIQr+yBU/EiyIfhFMOJxvxYRxb5N7//wCzY58cqs6t/0vrmw7459rYk9c6xEofrdnpSeF/l9rEZ30nSdnrHbu16cp6obtuTfCgZnrR0ela1e1ScPgl/kYLRwUH1STATOsoayS6p7x69zaEX+lzlh5zhQk4yYQdxxINY8lECSQpGlIkMPcGGavJgZ1KgJwQQRVKYFAZ7DIM+jEPqxLt6lV+5lOpyOtP5VJazRoabZpqrQZbN1TSboyHoI8FYmTCMlxAXyBKJJQlEmxh9kcdyqEhBVpVCC5LCG3l3V/oXVycrp2qpXUXkzqrU4a6F1Ve5FIwECRJ+EUg8ac+89Hg312fQ09Pz4/1XVlZ2jndbXFz823fNbSwWS7xDdHQ0cKyGhgY4HF5cXPzcgmIMGQ7nqpx3RU/oaPnWeVJkZKS7u/vPXYotgAMNDg5u3wTvIJFI/NOf/qShoZGZmfmc7kEvC1CnlOTGbUlKFjWurj5p8EoYrY0aKAGxqWWegOGUPLFafiQlAgF40kUuk9JdBSkUfXboGx0dHfEHbCe7xrstrA73zcUASbo+z7n/aGi70U0czkD92trG3NzS4uLyTkkCKWjePRizunHwSWVSQoUhnmkWzXaIi/OMT7RjM7SxmKs0BJAkMwrRFsYTsItvLcyGJBGMWTBVBk6JEnEMQzuMox7EEI7QcIrcMBUORDUm9FRSqHIcRC0qTBqDP4YEqoQ5yQzTFzmeYAacS3bWTHdVTfVQSfXQz7S1STI/HIQ5EoxRwCAvxYfa8FBW0TFiT7pEZxvk8UxT4q0ZEbaRCGcmmlkOTRvxCGggBTRQ4C0JQJXiB54y9mJhaaW8YSCjpLOxc0yyfpwECW8fEk/aM699Pu6lpaXy8vLS0tLtWofZ2dmRkRHxNviibWpqys/Pf2ETHvCkKwzH05Wuu6KT4PT2eVJGRsbFixd/7lJsTSuqqqrKZrPB9vDwsLOz80cffWRtbd3S0vLCY/fA0tJKRUVfakoT+Hfx70O3NjZXE0czom4Iom7kQTpEmkkkzWC8DpSmiieqRFCNsvjAk0DYPfVOTk5ffPHFC5v/Hj/eWN1YBP+C7dmVpaj+mu3KpPLe/nhBLbA0HrcKFV2w05MqOnZPNbm+vlHTNMgT1aEz082ZW5Ikjq9QZEGgmZGJFoRwGzjXDxEfR81jlDeEZpacInGOk2hy5AhFUqQCKVIaTZPBkWRo6BPMUBV26NkElAI77HQUUglPUCbD9Hh+VnleKpwAqQioJsfnXLKTZoqbZrK7R86VyxFux0Kw0liEXATEoNDetNTGvsLZvwwXVJAZ2phnXCAwo8faRiLtIhEBPKw/N5DW5BDWHAI8CQTfXghU6d6jHzRTrjxaE2R+v0BNTvkL/jNKkCDhF4fEk/bML2ndEv0IR60Kt125GO9s6W73c5fuFdPR0XHs2LE3droHy6vXh2ciozmqasqqqieiolkPHj56/PixkZGRpaUlsFhtbe0//vGPEAhkZmbmjZUK8GhjsWsusfAmNepGcNSN0Kj+NMsqjn58tBGDZcuNu5LJ82nIBpIU3lM9srC1MK1IJAIm91JL5y6urdTeHqmcGZxcnBfG121XaKEJOQRBqViS2HmNcwvPHD6WPVUDL0vZ9iS3hISizGYKKhWOTCKjUgTYbAargF5WB+Kblq/N4p2MZl7gxp5mcFQp0RqwKGUiUTWSoMXB6osoVxMY1/iROmykQ7aTR7ldQIWrUbKLPCf4YDhBNSb0vMDbIsneXeiiSUQroREytFC9HDuzUkuTEmvzKlubMhefkghoSWFiXXswL8WbQ4DwqRD+lidhylzgLQFiT0K3ZlA6q5bWfrAAS+/QzM4FakBm53bXzEmQIOEXjcST9swvyZP0Ipw0yt135bzA5e3zpHv37n388cdv5lzj03Oc1DopBfnPP/9POOw9Z6d3fvOb//OHL7+4pG/6xRdf7N+///jx48A/ntXEtrn5eG3tdfUOHlmsaLkTA1I6HZ40guK306Pjy4NoaY6E+JDk7MLJ/ubZiYbbY/OPvpeYvr6+b7/91szM7CfOy7XN7dsLuzpIZRW0l7YNVHUNP0eSAMW3mmNH8jE1aQE5SSEFori+stVHa1UZLQJcDkhlenNKQ6fYk0BwhZVO6emMrrqI9jofUQ6UX2CFF16hx1yL4UAzslHZafSupKg+OqTK1bPW2q3axirD8Uqyy/Fw7FEKSZVEdeXSUPF4l5xQ62zLk4neJiUW5qXmVtVmJpU25mV27jkoamktLreCnFCKEETCBfSgWNI1RqhNcrBhCsqhmAw8idBeVDSx+29lZ//NXZ40dfv7PmfAmDuHpnIb+kpaB27NS/xJgoRfJBJP2jO/JE+6RHdWKfXcFe04V4u3zpMAv/71r1/2m34PAMsRZDW5BxL//Jf/Ghv5ZPrmPpDS4g9/9at/A/z2dx/IK55UPaVraGxzc/pW3+BMc9fY2M3vl7/t6Z+isEuDsBloen5n7+QrL17vvTSxJ4kTHhfJi60G4fAqubyqoaHdfavFgNfN3Nz8wIEDO3tWvZClpZVY3g88aeDGT6o8G126hepMC21Ppl7P5I8WtE4N1XeONnSNTt+6t/ZdF6uuyZltTwLJ7rguPnDh4UpRy40gZm4IKy8ytZqZUQsvFPKHM2OGGdTeIP9Ge5daK/cKF4c8V61wvDoCq09Eo1JJdny4lciR2HLpUomjRbWpbf01m1pT00orqzIb92wPSFYMtbSCU9BIF+UDVTKLoprx0d55KK/ccNNUKqU1tXnHYnPbzN1/GJNSty1JwtwfzHVe0z2y3f7Izm2Yvbf0019VCRIk/JMg8aQ984vypHDnkyVeu3KW7/ZWetLXX3/9Bj7TSw8fge9FtYsXoZB3xZIkzl+//tW7+z6W1nI9omp7XM3imIqJgRMjIq4iRlQLUt+21b1scnqeEFXkHCQUxwuWfH3wB2Ix/2C5d/r2yJ35p85v9FMYXazalqSacRYxOkbsSeJUV99Y29wYW7oLsra5ZSSbj9c3Hz+p3BIIBJ9++ulLTa9QW3Pj+8qkzNb19RfXky2uPmL1NKJaSnzq0kGSe1rZaXWs1FoQsDF5617n6HRcRRs8pSQkuYheWpfb2b/8w5WD5xYeZlV3x+Y2ZlR2lYw3CcdzYocTIwagxOt+no12fg0ePnWBlilRBhFhVyJRV1gEjUi4UbwLrv6iV4OZfoWN2JMsKyxcim0chcFBmXhkPqN1Yry5Y4zGKrIM4/qx0nElhbjyPFJFWcmNZy7oOzp5F+hRTHJdRknn/MJD8JaJp9zc2Nxk5zXu7KpV1v4S9ilBgoR/EiSetGf24kmrq6uJP6KgoODBgwevp5BbAE+6GO6iWOyzK6f47uZub6EnnTlzprS09HWfRVyfdOaaiY31r7claWryk48//c/f/+ULZX3iySskTVPaWcuIU+Z0M2++Pz4DEZHPSqxefLBS3zrsg0jZ9iSQhPTG7Wfum75NL68PL68DSWnr+Slrsf2Y1c2H3fMisSe13Y6P4Rft9KTKhv644fqI/nKQmIHM+lsRzbOE7jn29Ttlc4tbVXFdXV379+/38PD46YvAjIzMtraMXu+b2pak1bX1qZl7i0tbY+kfrM+PLLUMLzbfW31ihJVTI+T26u04ZaRFp9SIPQkkIq2akV8nTkRebVXvyPPPfn9lCVYhcEpjeBXhUK0hlA4UrIaIKEs3j40/TUWdpeNOUPGyZLQWMwhVq0No1wupMjNMc7DOcDAWeJlyoFYshDufhMwh3Rhvjo2rYfMqHeBCe3iCFz2dVlUHUjY4/HBtaGGleXlt9G9bWrn6+PFTXHB45i63uDkyt45X2tw0NkHMqNzpSYXNN24/XBq4d2f+kWSZFAkSfjFIPGnP7MWTVlZWrKysDh8+bGNjY29vLysre/nyZUNDQ0VFxeHh4ddTzi1PukBzVSjy3RWtWI+30pPAKywUCt/Aican55CMpHfe/Y/01A+AJE2MfeLm/u5vP/jPgyfMlC4TlC4TVa6SVa9RlA1JF+yiHEMTQXxx6bfvLrZ1j3vBkr/3pGDgSU/mEF9d34iqahRLkjhdN5/eRvZCNh+v318dv/dobGNztaNjfFuSklOaMofaxZIU1R8T0efI7rcqmrDnNHrBROHE9LSUqs7O673cxLiDh+U/+9/9WZk1G+sv7WqTU/MCUQNHUMONrylvaK+dTai5LRDn9srWRz1/rH9bknCtRRbJCfSUym1P8mPlbHsSCL+s9alnWXj0qOnmJAgxuUIPztPFMI2IMb689MyW3syOPkJRtUms6AIdrxmOVqRgFSg4hXC4SYlHUK2BOcfFhhPgyqK7MuE6MIwNheAYTvRkEsIS+MSETE9k4hl7uoY9Td+bRSqpZtQ0tt9MS+4i8dtI+Tfw/bOwoXn68Dzj7sPax4837y5Xj9/njN/njs9XMPMbgCRh08stY5Itucm2aakuyZmRWbViT4rraCV3VIOQ2qu4jc2JZe0ZtT0Tt+/t7f2VIEHCm+ENe9Lk5KSzs7OFhYWfn9/LzrH3z8ZePGlzc1NfX3976NPDhw+BJN25c4fH4z1/rsh/BOBJ56lusgX+u6LB9TR3s39NJ/0ZgcPhz3pvXjkLS8sBOML//dW/v/fev//u/f/z3m//4/MjJy5aRijrE7c8yYgCPEnRgKjvwhZ7kjNMdPPWvaUHj3CRhdueBCVkNbQ9qS+5u/RwpySBVNx4QVXKT+TmzfmGhqHOzolHj9b4Q3XfeVIh+0YwrceK3msh7LINr7LBZMFRKRxmfmRUpnNkskN4gt2Zixfffe8DFCLypc61urYuliRxsOy41Dbutic13U0D+xQPDPhm5/rnZ/rWMr1q6bYZNKxQyEx9UqWETix9oSfdXFhgNDZQ6mqdEjJk3KkK7nRlzwjVwCgtGMsyLpnWUJdc324Xyr3kSjxlD5cPRshRUDqJlFMFODURVotGO03hXAjnOkZSTFFEGyLRAIs7T0CdRRK1SShlT5SSCVHemCBnjDuLoEOTkq8xCPqRxKtsnF26D67OumUmGKgSyPj9uMF5yvA8rWOGEN/i45aANYtKOh/Ou8YUmrKTAgsLHLLSQ9OLeIXNRT03xJIE4pqfaSxKIGdu1TYxc+pnJEPkJEj4J+YNe5Kqqur161t9MXNzc69du/bGzvs62IsnDQ0NmZqa7rwnKCiooqJiYmICCNOrLN0OgCdpU92l8wN2RZ3r9ZZ50tLS0vz8PJPJtLOzGx0d3bUo3muitLT0P//rvz786BN7D7iLH9slIOGqI0vjKuWEAUnDhKZ2jappFm4bnAAkyQUmIsSUAE8CR91fXOYk1kCJ2YSoourGwc3NJ/2Q1jc2mdVNOz2pb/r2qy3w3UdL5N7CgLZUYq+IfSMovNea1W/FbtryJHxeECmTFlPkRhJa04W2IECVjEz9P/zgk4CA4M0dU4FvbG6ubT6zE9Kt2wvbkgSCYnHZRextT6qdje8cmorMrPPmZ+tHRBiwqQG19OyRGGpONCkpA0hSblVP+/DNnZ7UNDDx47Mk93QDSUKXVgAxUvTCa/jDT/kj5L3wyiERZuwkcm2NC0xwxZOq50E+4Y2TgiCOYdGyZLwmN9IoOcZY5OuQZ2uR6qKBIJ3yJ14KJegQcDpEijaWrOCNUPJCKDii5Iyxx81xhz0JRyH4AwGEQ76EQ0E4eTjsCtcredCycSa06w6pYNy8aNI+bdCK02qPLLHxTnfUJMWoEqNPU9jXmNygEiGhpThnuH986BYtJtuSwXHixyNrio1FwmuiBHh6sbieqbRt4NW+xRIkSHiFvElPWl5e1tDQ2L6poKDwZs77mtiLJ4FvcWlp6a6uLvHN6elpYI59fX3gHhcXl1dfxu8AnnSW4n4sL3BXVDneZm+XJwFlOXz4cF5e3rlz54CAwmCw131G8Mb96U9/+uCDD959992NjY25+QfFZb2kyCJ/bDqEku0GTw4iZHigUhgJVTR+eXRitSCz6YV9nAdv342oaBBLUlbn9W2FeiWMP7jLHCgn9RbY1fOs6tjknmBWv0fOuB2vdcuT0JlIZiGbU+xOFtqIPQkkCEnCYkVyykrK6ifGbk0+fvy4/OYQraua3FmVMtjZ2D2WWdJVVHN9du77wVxLDx7xEmq3PYnMSYmvjdn2pI47ZazshqisOkZmtV88wzuOEdvIqp+NBWm+WbTw4MnaIN1jM0k1nYnVHc2Dk0/tzx7T2gI8KTC9QBtJOR0YphUQquUPV/RGnwzGOvDTg0V5jkGxV7xJit44aTxUKgwuDUNII5EqaLRxrGdIjV5QlV5glZ5zmoWaP+VsIFMbRzmHJ6uikPK+cAVvuIIrQsoSd9gBd9iZ8G0A4Wt/wleBhP0w3P4w3Ddh2GtxtszuE8TOi/wbl7JGLZkdl6mt2siqy57p1iqEaHkcXYOMNubhg6sJ1llEL4HA05nlG8Q1ojJ18Qx9cpS+gA88iZhZIfakohZJ1wcJEv55eZOe9ODBAy0tre2b/4qeBADf4keOHDl9+rS2tvahQ4eioqLAnZ2dna9ppua/fedJZ8geR3ODdkUl5m3zJICOjo6bm9uBAwc+//zz19flS8zExAQ4S0xMzP79+7/88svt9WeA2ZTW9YsHuAmzmlt7JoQ5Lezk2rSijp84CeHSyqOh2bvT9199c0ziaEPkjTIQam8hvCOT0pvQeie6aRZXPOYfUQYPzyxiF6YLa32jix2wecYgpDSLUDQbmhrLGcjW8zT56L8/oWQKgCGJ45WU4R2dwRbVgnBS6ufufz8dQ1vn+LYnZeS2dd8tfyJJ83m37s0BSdpKZi0kkRksjGRXP/GkkcV6cOydBw8TOjopNbUxzS1Dd+cebazcXB6dfTS9y5YyrvdBK4o903OMqchLcOjZIPiZQISCB1YtCKNL5p1HxGgZEy85EeQQSFkiVAqCkA5FKKJC1fBBl+luIVV6kNpLITW60Bo946gglYAIFTheFQPTiglQCAuTD4DLeiMOueAOOuG/dSfs9yd8HYY9EhV6LAZ6LAZymAyXQsOd0q8Ru9RJ7WeZXWrUFnVM3Rlk9QWjVGdZOkwpAqrB99FPd1GNCpPF4s/CcGaOEXaW9LOexFNwsjwZfyQGr5pA98/Ijsyqjc6p3+6i9GB9YW719sbTeohLkCDh5+INt7spKSmJV31taGi4fPnyGzvv62Dv8wIsLS01NzeDl2B+fv5Vl+opAE86TfI4lB28KyfYPm+fJ83MzOzbt+9Xv/qVoqLi6z5XYWGhSCSiUqnOzs5GRkbiVUq2mb//cGZ2YeO70WrgC/6pK39NPZxvujvUOT/2cP3Rjx99HXAGq+h9xf5FSfbJPIcUHqoia2X93v3VkYfrtxeXHzVeH6/tGa0a5yTecGPUWxFKjQMzvUMyYhldaXGj+SC+fMR7H72vG+AOJInQWmEdLgQRexL777MefH91M/da2sduDN0SV4mtba6sbmyJ1MbmJr+wRaxKhNSsEGGkqCNmqzLprnBlY2F9c5Pd1AwkSRxSfV7mRFLhTDJI/d2S9c21v79092k9lTYFyYYZ8RZMmG1EgA0l1JwA0wpBnsYgZUNoMhCakiXhnClJCgaXwUGlQhByiDAlNEQVH6gX4eZXohdWfwHWoBdar+dW7HQCFSEPxyuxg84keekmOp+EQo65oQ+54g664Pf7AU/CH2GEHt2SpC1PkuKESFOg2hGe5G5VXLsmpPYCtv4UsvaMjsBZjhmixA3Uz7J3r9e/yHM9Fe6rTg2Sh2FkPLAnL8I0z4SpINHHmSiFBJJyEkUrPSKsoOD6+Fa76uKj8dSxUFq/HeW6A28Y0TpXun2lEiRI+Hl5w540ODioq6sLfvObm5vPzs6+sfO+DvbuSVNTUxkZGeAr9oUrar0SgCedInkezArZFWWWr5nr2+ZJgLi4uH/7t38LCgp6M6fT1tYG72ZaWho470sd2HNvgjVYyhwoAYkfqRar0vLK2uDY7NDY7GtaUbVwqjuwJNlOxBUnRJha3zacNdzL6W1O6Glr6B+bubMgGq+MGeQLhqN4Q4msgQJCX6JYksRxLaR8dvibI1qq8Mo8K5rQjp607UlVTT91fqCpO/d5Bc3Ak6Kz6vNbWkYWGyYftK9ubo2Wn15c3JYkEFgDPaafLfYkkIHFJ23W/MEm8epyqNYiYgs/rgZKL0LYZYaoM6EyGLScN1nBjSrrRznnFSUdgJENDzkORShgoIo4qBopwJhtD68/G1Z3HlKtB6m9bCYM0SBFn6ZRlYkQzSjf4PIrrvkmmgzfY0jUVyH4r4II3wRhj0VBxZ4kxYbIcINPcPwthFaMXmVCu7p3lZ5T2VWnkqtmyRaGsQ42qSYB9ee9qi8ZsJ0MmE6GTOezNJ/DnujjJvCTZwKPkEPkY4K1MmGa6TTjCh6yoxBcy+rGYtKoP7bXHNJ1JaTzCrTLkNDnKhjFlN5K7bvfsvn4B4MNgUdWjI8Ke7oyb1yfWZJ0AJcg4bXz5ucF8PPz6+3tBT/F3+RJXwd79KTk5OQDBw6Ympra29tLS0uDf9fXX+8a48CTtIhe32RAd0WR6Wf61nlSV1fXn7/80/97578+/u/39h/4M/iovdbTgffugw8+2EO94OPHj7lD5WJJEqd2tv/O/BI/vVHsHAlZzQtLK6+8wMsbqwGpTzzJNzEpml/ux0ont1UHlOSZxidYCIR2KJ5uNOZaEtallM4ayo8ZKiT0pbAGM3gjOWJP4g7l4xtKpM5dfP8PfzzrEgZh5W570uT0S7wOa+sbwJbuP9h9jXcePNiWJHJNZVgjkXuDs+1JrfM1f9sSi3WxJG2H15vkWgS/lhUkTUEewmMOYbEK7lQ5F4o2nnISjZJlQI9xQqQYEGVK4EWmm0uxAaZRC1t7KiT/shvX6ZQf9VIk1zCGrR4eqIIM0cd76sE9z3j6yXigvwrFfhmG+9YXKxUJOcaCHI8JAZKkGOevk+QUWHiJ3q0cVHXRs0LfpdQwsO6CZ9XloEIdYqUGvkqdUK92Dut9Bup3HuWtG+GqiIDKuYXqOTpLRwdKx4XIJIUeF6KUM8jahZSA1hhMZziy2yag42pAhwHwJJeGa2YV9kHNQekTsUUzov6F739NLSyvxLW3kxpqyI21IPTmhvllyVRMEiS8Xl6tJ82vrbxwAmHgSeC7LCcn51Wd9OdiL560sLAgLy+/vSjE8vKyoaFhUVHRqy/dDoAnaRK8vk6H7opC9NvmSUtLS3/47KOA6P9NHz4M4k767L8/27e6uvr6zlhXVyclJbWHA1c313dKEkjhVEd2Wfe2c4CU1Pa/8gIDktOaGILSSEEZN66axCr0YKXgmytM44UmgoRTNMa5AKoOjKDHRV0VYBxKI6xr2abV4fp5eKN4nFdadGRbdsvwEJFf4h2ZcdHO9533fnvOwJmZWCPIbOodmH5VJRR1dW+rEqY5Mudm4o/rk3iDDTs9ybso40IaUymOcpCGOYDHfIvDHPclyLqRzpNgChEwaQ5EVhAgJ/Q/leXiUHzVtdTAO1XfEO6qFxzogieoO5PV0OEqtHBlRJgqFHLGN/CsU5CMBUbaAnvYF6NC9z8BC1GmBihEByqwA5Rj/LX4HoFVF9zrLvvWXvKo1nctMfSt0AuqvWBfeM2twABfpgnLPHfJx/uECVzRBKlsiVD1gJyieZskW0OzdSzzTK5lWeqlOMpwofv5KJkUrH1tpH4ZzLDCHuiRU821qwW2p9PdtHM8DAohrtV0/nBs0XTm377r9FbQcYOUW20Sk2QVl4qqrBCrUs3E2Kt62SVIkPBUXpUnjT5cON+UIV0df6oxtWPheQ1q/9Ke1N/ff+XKlZ33cLnc6OjoV1muHwE8SQPv/WVq2K7IRQWYujq81lO/YcCnWVrjY7EkiXNM5ePc3NzXd0YkEhkYGLi3Y5PG6nZ6Uve9idi0xp2elFbY8WpLK6a7dxIYkjhkdhGssBBeUwIkCeQEjgw86Yon3YhEvMbHnkrGmFWHm2WFa8FI6qGEq1iqiS/TzJV72Y5p5hGLjSr0Rwv+8D9/lVHSLK7rHpm6+xML8HB9fnCx+vr94psPOzcfbwADuHvvwfLK991xVjc2qkZH03p6CwcGh+6PlNxK/3H/pLGlOcb1arEk8QebbHKFqqnh8vHkg3TMt3TUQRJKKhCvHIw4zQiQEUCOcENlhAGySf5yIv9TmS462Q4qMT5SGOjpoCDToMDz3uFqCJIqI0SVFqAR7q+ODlS2RshaYOUs0MphkBMIyAlUsDIEogCDnsAFaeD99WjuDiXGZvmW19JsHCuM3KuveFdcdiwyssg1t8s2toqyOeMXeMIYqWSEUjRCyl9DKdvAT9M9LmfbBVZd9Mu/5Jx51TXX0D7H+GgsTEqI1y+hni3Gns73sCo3t6801kz3UEv2lOWFnExBqKQSzCuJ0M6o5ruDHWPTEYV1xNwq4EkgdgnpYk+qHB995Z8QCRIk7OSneNLC+mrmzFBAf41tV7FVZ5FLTxlpuLVvaW7nProtWX8oYYqj1ZD6nGf7l/YkcX3S9jislZWVN1OfpI7z/msybFfkGG+bJwHjVNf/dKcnqep9mpiY+PrOqKamVlZWtrdjZ1cWBCPVYkkqmgbGsJlb0bPTk8rqX1eL+MDgrZKy3rKKvtHJO+yeJnzTk/okNSz1slc48CRHRLQTNfqykGZTHqGJJqoFbUXdjXDaiqxrE/1doi44RtkExevYM/YfVf/o089gtITW60+Z5WgXy+v3m+4IxKPbQOpGC4R5LayUWnZqXUPX06tGnjXebXFtpffezODC7MzygmtJikYqXSaReDAKc4COPE5D6EUG6sV66Ajd5JP8D/KhRwTBMsn+IMoZ3qcy3GSowdLkYAVq4Hl3Px0vlA4/QI3ud5IWoBnlc4HlrhoEOWEPV7RFqocGn4QHKwaHSbuiZFxQJ32h5xABeiw3o1R7y3yLy0Ln82mu5zNdLomczHMsLHIszOOtLyG9VFxD5Qyw8oYYEEVDlKIp8iQqQCfXPrBKJ7BUB1aujak8jao+rZfm8C0HoyDEyWUgZdJCNbO9jArtTop8D7NhhyJQUvE4qQT8mSwC6bqINVgsqG8GnoTLrjDnJotViVBXTW2qu/VAsrauBAmvl+d70tTykmtPuWxNwp/+7kDb+bqcd7oxLWGqH/ztqp2f+ryU/QHa9V2Tc+8H2YD9n3NGHA4XEBCQnp7+/IKBHfB4/PT0K6vLfyHr6+tcLjc/P/8n7r/3/klHjhwxMTExMzNTUlJ6M/2T1HA+X4jguyLLCDR1eas8aWho6PefvivoOCCWJF7Tt+9/9M7ExIu/vPcG0NwPP/zwH2nXW9/cuLOysLD2pIvJ/P2H8VnNYkkS5bU9WH6NLYbb3H+0kjXciygvcU9I96EkG3jSzYMY3kSWO4XpWZZomElThz3xJBVHnIYpWQ8YklOUfCDlWDBJGUnX8omwC4nX1HN+77fvO/qiXjg71MSDtu8l6TYPlRQZlVwBPEmc8em55x/+VIAnEbvKLqdzpeJJB+Iwh1hIjQiIkdBbP9FTN9FNUeQrnRj4FQt+WBByPDlAKc1bPt5fjh0gTwuUowTJu4eqeYWp8X3V6b6nmV6XYl0u8VzU4MFnvIK0PQM1g4LkPZAyrmgQWVeUogfiIt7rAsPjnMDzishFL97lXJz76VR3da6PQYqddbqpIcn5XKivrB1GxhAna4CVMwS2hJYzRclDQ8+lObuLDEITLmALTnHa5GNa5T3K9dSEXkqpiKOpYcdSEKdS8RopyGMcnFQ0VZZFlUkgyQpJ5zIi6dcLgCexGmrs49ONuUlGHOHFKL4lPyW2s21w7qfW4UmQIGHPPMeT0mYG/9fNbF9OOLCiT1KJv3Ey2Jak/6cmsy+LBjY+9DL7SkT+KCb0HT0N4Elb9xC9/mp0UTyVTE1NDZABKyur1tatVQfa2tr8/Pzq6+uBWgmFQmBLT9Wg7d2Wl5cpFAqZTF5+/V0VgR4FBgYODg6Wl5f7+/sPDLx4gtxXM97t7t27r/vygCepYn3+nIjYFWl60FvmSQAkJuzTz94zD/yDqd8fPvrjuwQi7vWdC3xWgOm+2udcXVsfn5qbnJ7f2/K3/wh35pf6R25ll7RGJ+VFJ+e19A3kjfYYiaLU8QQgSRpBpNP2RHVjqq5VpCo0XAZCPh5COoGJUMFFmMPjnEKF3siYT//7f23tHJ66dO7m483eha6SW7miiai0CZLYk4pHuFA+IzK5bNuTatufvkjL0vKjyq5hfkkLp6Cpfejmrhdn8/Fj3mCjaVG8dibzRGq4dCLuPD/AMMnbKsP7kshDK9FTQeT3BQfxBRvx1yjEVzHwr1mhhwVBR7jBB+mhh/yRcohQpVh/NbqPabKlUZLt5TinixRPU4SbOdpFAxos64pW8ELIeaBknTHSdjg5d4SCb5hGtJ8Gx09P5Hw+0U0t3F8eGiYViJD2QUl5oY+64o7a4Y+ZAU8SqxIQLIQsPlQtxNfEz94bbugNv4oSnOW0ymPKtRxyriqkBCplBWrmhGmnE7TTSWf5kSqsaM14tnIS42w60zif710vtK/k2eeL9GMEwJPEodfWvfANBX9nW+auE3vSApriiW2FDdOv6weDBAlvN8/ypILZscNVcVs+lEEB9vNxPBpsb3vSf/zho3d01cHGr8+ffM/q0m89jI+U8nSaMzUbUqw6i+6sPIiNjc3Kyjp79uz9+/dnZ2dVVFRyc3MTExN3VpwDPcDj8SQSafsHOdCm0NBQsFtZWZm3t7d4mYTx8XFgMC+sf9ozvb29QIzAV574Znh4eFdXF4vFAhr0/BXo9u5JO/H09Nw+92tiy5Mwvn8WIndFOvwt9CRAdXW1n793YJB/U1PTaz1RUFAQ+Lw+69H19Y3Wnon8it7GjtGdnW9+KSwuLCcJagPCk3Vw4doB5GsBLH1XlqYx9YJNhDyEIg+laFPZutG8kwSGLjrGOSwxIrEyLqvGyMhITk5OPEnaTvoWunKmU0FSJ2OjBiGZk1TgSZU3eQgBd1uSQNr7b/64JGvrG3ElrZDYAiuSCMQ1Ij25omOXKs0/eqiXxzmZFa6cQj3JpypzQ68leXsV+BqmemuLPDWEXn+hof9CQX9BQX0RG/YlH/YlD/YVC/Y1FX7EFn0EFSYVE6zC9LVItbDJNLHNNIWlXQlLN3KIsVNGoOQ9MIo+GFkHrIwpTtYQq6CHVjKAKzhA5bHQk/Qg3RSn8/HOZ+Jc5ZGhx7wxhz1xR1zxh50JRxxwx6yxxywxUv4waVSYAgSiahuoZeXnDTMMQF7xgxswSxSFjVIxRYqmibZXil1Myt0dy/1NMjCOyZEeGYnwmiLX0jSTAv4FTtSVqEjzWK5JRpJearx9Rrp3bi6sqjSio+GF72DTXC+iM96pLloceFNu++2n/DAdnr3bNTn9aqd9lyDhbeKpnrTxeFO1Pllcb/Q7X/P3Q2x/62q005N+JXvw1xdVfk/zB570ERMC7iEN716nEgaDbbdhCQQC4B9PLQD4ixocHCwSiSjf0d3dDQwpLS1t125VVVXu7u5tbW2v4qKfcOfOHTgcDpRu57pVYBvcg0Qix8bGEAjErkd38gvzpM8TkLsCPMnkbfSkN4a8vDxwsmc9ml3aJZ6SGyQ5r+3N1w/9g5QWdvPZFSBoXLZ7kNAPkRpMysJE5DtDhFqEKL0onj4vTo3BlCdHqMAZLpQUMr+8smnw5uw9l0DoB7//iMrlzD3suL/Stb651YGm/Hah2JNE/Uno1PDQBJSwgtl9N7+qrW9bkoR5LSuPniKUveO36Fk1NuRksSeBYBPLukZ+8JX/cG31akbsSWa4HJWkxKCeZFEuxUPds2CuBaE6qT7KcWEKAohCbKCKwPcQP/RLFvzrcPgBHPwgAn40CC4Fhx+lhh7Bw9XxAdeYDp6pBmE5V8m1l20SrZS8w+SMsHKXcTJXtqJwHq14CaWgj1K4jFS4Cj/ug5EnwNR4flp8b2Us9FgQ+ogv9qgP9ogn7qgfWg4SesQZdcQGJWWBkLOBnjCBnDCFWvla+8EM/EMNYnKVkhqOU4RaRtFOV4pcjMqdAptdAls804ftWG3ukHICti4lODH7KpJtiuLaohMuozn6KfF2hemk1hqQ+Osv7uOfOF7k3sDa9iSfhnjhjqP6xmes6PEyUMoxBEmFytBj8vqmXvFKghIkvB081ZPa7t/+c1mM2JPeD3P8EOfxuwCrXZ60L4Pyf4989euzSmJPutK6u192QEBARUWFeFvc2eg5xQBeMjAwkJmZSaPRntXfA/iKl5fXXi/0KYSFhS0tPb0T5L1794AGAXvr7e191mqqvyRPUkH5/a8AtStS1GCJJ+0Z8NH53e9+96y+ZbNzS9uSJM7AyF6+hNbXNyYm7k5P33vOPpubj0dGZ1vbR+/vWDbkZblzd7GpeRhk9s6TqQtThQ1iTxIH3OSI6sTX4h2feY2fcJodYyBKuJooDEsrtqKK8PxShrDKnpqCSC71okW8/8mHF8xPDdyljdxjrqzfrpgtApKUPJAEiYwOCo+GRfBiuVWVFVtrYg+Oz9a0Dbf2TTyr1q1zZJqUWrktSSBoYWl19w9a6Mq7B4yT+ScZVDk6Xo5G0GRFuIuSg4VxjEahV1WUfi5ELzv4WoGvcb6TSqavFA1xBIk4CIKFH0HBZQMQR0NRhxDog0i0JjHAKNLVK9/AMNXhqDf6mAtaygItp4uV08PJXcIqnkMrnkUrnEMraKOUziJkzVHHfXH7IzGHOJiDYfiDgTjFELgyFKkcClPHBhnw7OXMQhQvhpxQD1HShp68EKp8JVRZL9TezdbJ0yqYpR/AMPREmlhHebhU2VlVOmA7HJKuX8JUenjn+oUWoNB5RConzx6baIsRgpgj43QjeWJPorXX3VxaeNZbObO0mNrXw2tvQ3Uk7vIkUf+TWRVu3plXQ0QcDSQdCMIfCMQf8iMohFEMImP3/PmRIOEt5qmelD4z+H0/pB3tbp8WRYm7KwFPAv/+ztfi3997R+xJ2k2728VSU1OBKom37ezsnj8qiMFgPL+R62/fyZafn99LXt/zAKLz/F7bjx49+tuzfeiX5klxqF2ReNI/ApB6bW3tZz16c+beLk/q7p96/hMur92cX2kbudnS2jrc0zP56NHa/PwDUVID8AmQnOy2R9/VtTxYfzSwMN0zO1HTNljRltQ6hEvKDw4MI7t7C7z9E8vK+/ZwLbdu3+cLanj8ah6/KjYrpmY0snOOk1MdG8su3fak3Jy2iKLyIGE6LrGAnVTjy88y4Sd6ZeUSC6t8uDlWlCQIOy80Jt+KnORAT8Vkc/3jkF8e/0b+5P7GAfT0YmbfvV58R5SLgGiOwDviKDRm1tZ18aoePnyyYMvS2krt7I3SmZ7hxe+F8vbC0q37SwsPV6Jy6+0oKWJJsqUkBwnzOXXNzZM31zaedBsXFrZapMWeSsKoJcJBtOIImLRiblbD/Oo9/micX5u3e5OHXbWzfYX7mWwfJR7kOBZ5GIM4SIABYZLxQR8PwRxCow+jMcdR+MNI7P4o1FeRqOOO33mSDUreECV/BbPV4qaNkr+Alr6Ckb6CVtJEyOoiDwQgDxHCjkTCj5Ix3wbiZfxQGrAQqyhHZ6GFVoTfMQpOwTxM7SREXSVE/RRUXQt6Sht6yQiha4W96Bx62in0XDA0pMIS03pN0H214eZlXouJR46PfaaXS3aQSyL8WkikaQhf149tFsYHquTJyxD2dTRMT9x/9MwJSO+tLEc0NdjHJmv50NRRyDOxMIsymn1tpLjdrX9ua8oW8KK5xqbKhlAOBhJAmQ+74I844o874aWdCekVr2UqCgkSftE81ZO6F+78tYwD7OddozP7srf6a38iwr9jePo3dpffNTj1cSzinUtq4M5Pi6P/PxUpcBNsG7bunqTm8ePHLi4u58+fB98mL1y4/ad4EvCSV+5Jz3KdXbu91P1P96TBwUGpp/Htt9++CU9C+n0Wi96V4+QQE2eJJ+0R8OEmkUjPenRtbYOf1rgtSdyU+vuLz+utP7/SOjhPr+tHpZT6JOWhY7kVKcmN6WnNYkkSp6KmTzTW6NbM82zi22ezEcXw1BqPmCx7rzBvv7Agn2CgSvEBwckTky89ZCw3r+M7SarmpfF5pSFJtbCOu6zGKUZiHlMsScKEGkZrqX1KrE5U+HkG1SkyPr20k15UF1G8FTdmBvAkJK8Iyt7yJCuyCJkVCc+kwjIodt7an/7x/YwSSM71fnRtuhsvwgJOtYExUdQc8UUtLGy9LECSeMOVUQMl4tTNDiyvriU3ddFL6kASGjr6J2/TMqptyMku9HRbTqpnSg61phYkob1j47t28eSSdu/8yIsZWPVEOIi+CEnOzm7s2ZpoYHRpgDOMCWr09an2C6sIsy52UU6AHCMgZcjIwwS4tC9SzhsjB/QIjTmCwhxH4o+gcAdiMF9GoaQc0ECVpJyRCkZIBQOUoj5aTg993BR71BJzyAF9yAFz3BJ1lBR6PCLkGCvkeCREyj/shF0ohqlPTruIzdPF5utpxwUewBBPmKLUzoWdOB+mphuqHRSmiUHqUhhqcLpsIFEVHuqZYRzfp5kypFo+roOpdLHO8LDJ9HLODr4UA1P3JpkHx10L5On6skzgsaYp8QYlXKuKhPpbo896KxtvTnqmZJ10JZ5wJijYYxRCQ5XDIWeScRap3PbpLVN/sLrKb27XpnCOBZEPBBAOeG1JktiTZJwIRgGcX1wDsQQJr5unetLm48daDal/+NFcAOI6pI+iQ3bd+T8lLO5Ezz9SjLffk1ZWVrqfweLi612k6TtP8v8sFrMrx8kQiSftGSC4XV1dz9lh+vb9xOwWIEmCjKaRieeN317ffDA0zxi4G55a7gs8CSQ+OQ44BBadtS1JXE5FaGyqazPPtoFpWELTySISqhzp9aawBFNbfzenEC+XEH9bd66rl6C1bRQ85/jUXFpBOzh1VdPgox2dfu4/XCnvGc5q6esc+77rbkpq0xNPKsABTxJUQIEngXTd5d/onx4auNU8O+KZk2CbxLVJ4lrEs60SYjquj1ffGBV7UqAg352RzkyqIcWVAU9yi87AZvOBJ5ELKfXTKIrI/ONPPzhrY0OurgkW5um7MXWdoy39Y9ms8syMlonxuyXF3TBhmkd2XEi5KLy3AHhS9EBpYc8NsSSJk9u5NTU5kKfWsUl0aYVPYY55ZpJlljCgNK1xcHRgYKa0vjuwkAbikkW0EaE9c0iQ7DhGdi0zv4FV3EitYXpkB7tkBbrm+NvkuCpzENJYtEIARskNo+yLVcLgZUFQeBkUQQ5NkieSjiWQ9kdjDvujpezRsp5wRSv4SWPECTPEUTvMYUf0QVfMQTfMARfsUXfUMQjiWAjiKC7saHTIsWjIeYInlqVL4uhgM3TRxTqBhQbfBOEOemGlzVByFigFN4QiIVQehZBBomVROGU4SgMJucDwpbZczRkzSx4wckt1O0ELk6egFBnI4ySsLIqkERB+xoehHxRzEk2X5pDlhWSVHLJWfnj33FM6vAPqJyfOI6MUTVAn1UNPnoSeVIXKXYYdJBE0GFFuCWnL62tlg8O0qjo3UdaxYMrhQNJB921PIqg5UnXcoydvvYnFuSVI+AXxrPFutXNTx6oEu3zoQ7LPb5wMfyxPJu35L1yu5Pm8/Z70M7LlSQj/z7iYXTlOknjSHpmZmfnkk0+e1cN/J49WXzw51vL6VMMgLa2SRBMEJORveVJCGhO4EQGXs+1J4czCoMRkIEkgV4qop7IwHuXGkNqLwSJ9Sz8X60A3S38vXYfwax7RDe1Dt+4scJLrtmuz8iqe/Ih5sLLKKduarlCcwo4n//Nr6waeeFI+CXhSZisaSFLDNCOxgcBOruWlNXBraoEk7UxG6dbAjcm5+/WD413j09nlT1ZcoSVV0fNraQXlzApm8vUg0aBn4mAwqY73ufTh/bLyJjD2VQjvjDP9nHOEGzqpoKYDkSCyITIMiBTdcLJ1Ass1IzayvxioUmxdy05PYlU+Gbp4Y/aOV0H2tfR481y6fXmIdb6/XwacKcwAHhnAjkZWRqNrmFFdAkgFA1WYhE/PMg/nmdPi/eOzTLk447hgIyFcPRKjFI6To+KU8LhzKKJ+eIwem6OBpimjSTIIolQY8SSWrkqLPMwifkPHHoJiZKCwk9BQTQbkNB12GI4+FIL91g/7rSf2kCPumBdKKgB+FIrYCgV6LDrkHNXLlmlD4+ng03WQBZfgxZe+QSK/8cMctUNJWaNlQuCyVKgMHHk8DC2DwsiHIqS9UUfCUCeoUOOEIEShjbHATYPlJx8V8g0V8xUV+zUbfZBNPBhB+jYcfywSLctBScfgZAVk1TyKf/NWR4dHK2vNtYPFOR2N1TeWHz6aWR4rHS/VxkNVNSFbkvRdVE5Cvw1GHaQRTxLphLqKlI4e4Ekghsx4KQj1sAfhqD1e3p6k5RwOJMnAL+aFM2BJkPCvxnPmTyq5M65cl7QtQ/tywt8zv/BbD2NxQ5s4X5ZzLToKlzf+0YkS335Pqqys3J6G+8fweLwXlmPPbHkS3P8zDnZXjhOBJzm+vvO+xQgEgqtXr76qZxsYnSLEUvE8si8uzJ8Aic/zFSQJgRvV1w0I4mrEnsQSlFPai8T1Sbr5JHlO2MVk15CaC5ByHReKuUWAy2VX6CVHmiMpLmOkvaF9dFfvqMXvlpttGBjfliRxlla2ugetrq4XFXdveZIoLbUR0XIrCnhSQgMsJlcAPAkEJyiy4MRsS5JTEr+69vu/Gg8Xl8f7JocGp4GfgR9Mm5uPV9fXRxZnuINJIOzBQvZgMaw1RU7vyju/+72SU8BJJP0MnqlDZV0RkewTIgwi8LostDYbbcSm2ydzME1ZiaN1mW19Oz0pqbHz5tRsTd1AXfuwaZrQJDPGvjzYvizo/2fvPODaus7+n640zk7epG2apmmbeABe7L2XWTYYMAZs9p4CMbT31d4SQiCQACEh9t5ibzDeGLwH3jaeeIDt9H+JXEqI7dhO8r5t/vw+v498fXXu1ZHuBX055znPE1yZllqNYjYxZYUdDHGFuEdVNV1bcLQUpRYTKnNTCwW+LB5of740SFS6hZpvyRLZCUUO2Uw/FcNKwPAWSUIk5bG5VY6ZYg+UxAkldkFJ3DH5gTyFHp27MZtpwOfYc9iuZTj/OtLubrKxgriJSd1IoK1HUzYlUg1iycZpxIXxJBxJj47T5WPtKQi/3ARewTZygxepxSu1IeBrJnkNkaIfSdaPoBmQ8QZCnL6ACHKSAZZigCNtxgEbURQ9GKDHxiWodyAHPDJ6t0U37fKuiFmTT1xXSNApIGiJgTUiipaYYiIjgQZRyaaRAxkpPXXnKia7NJ1SiKAVR+OzYqUY8gE8eoAYLINuDUq3scNoIMnKHmuSijVVIRwUmO11vNyxEQ0nsXp6UJ21sObKALQUJCTQXik5ivafN5XGilb036gX5+O+/WgOPTVgO1SuWf621Hp9xT576luv/jRFGDWcpImbfp66urr+l+O4F5u90v5ncxKDwQBh6HlTby4uLt8/ZHBwkEgkEgiExXWDS0Vaoh9K9ES1JsD+mkdbZn3mCie9mu7OP5h/svA3QXBwcH5+/k9yThAsFDUjImUdo4BLljDT6TiqiAOCUX/fUfCp2dmHRybOHzt66f7cnPzkAH2iMahG7MhmmeEBUyzgkp2R2LY7oXOXT3a6F5ubXlXKP9xRcGJwZP+zOan3yKllnHTj7r+jpm7dvg/69tzZU3daj1yvz6sv00CSxlhFXXRpgQaShCr14tq643tPFRMrinBloIfq9yye7citaRCPvuPePueItN+9+96abX6OzBxrLt9SQg9VckFOAr0tH/DL4YOcxB9tmbp8uah7PD6/JlVez2ru5bSps5oEECoQT6BAUBJ/qdSnirmzLWVnc0p4OTSjGs1spueUVIMfWlVnz8C1wb7pMXptOa5cCC16ykk7+PwgkcqHL/eUFAYoFaHlpbT9TTtritLqGhitvZ68IqtUoV26yBFL82bivdlY/xyOBSNLj8PR43PMZRSvCiCyhk4Yzottl5rymEY8pi6TZphOt46hm8ABfTygSyDpMnHr0cB6ONlLkMou3Q60bIfX7zQtgG/Kxxhko4zhGINYmh6ZqJeFN8wmGOQSzQsRFqWZ5hSMWSZeH0qyQyPCRBHwfg/44Fb4gAesf6tReea6AvzafKJ2LmGDDLdehjcvRoOcZCwD3NqyyAeaQmryvBAs+zTAJhXjBMWGFsaFNsaFdMWHlkG8ojKctiOs7LBWDjgrH7QlHm6ugrkokds6MNDhPFxXTVSTLKCVHd2VLThSW3yyPa+9T1Tbu//k8qxXK1rRiv75cvXd5p48Hpi5QD8xlnCoM+agOnOyV3F+8sKDn7KsUGlpKQgDLS0tOBzuebVK7t69GxkZOTEx8eJTgc1AILl27dqLm928eRMCgTwvB8GjR49ycnLAr0LwPD9NXgCJRGL3fO3cuXNZ+wsXLqSmps7MzMzOziKRyO9fpKSkpNl/6cUTQN9yEvyvEvoy6zOwK5z0kroxN1t2Zij3mFp6omvfzOkvvvji1KlnZ45+Vc3NP8ov7QctUXVlK+vFytaa5n0gHj2zD6qp4bhcpTdP7ETg2CBZlliatYxkUYmzrwRSx4qFk12gG6cPXrtxV1YxtAhJbX2TmjNcmLktah1ahKTi3r3L5ssXZwkXelUxuJSThg+cPnLyQkP3vqGR43fuPF1v9fD+QwVQqYEkjc8emdY8de3h7UVCEh6tZ09WTlw5k5FfawEH3vv8i8/0Taz5bMs8VqBC4CdkeHMZO4QMgFuTp+i+MnMnt21E1DLIqe9FlbRQqjvKxrPRYlI8EdDYk8m1q4Lv7Inb2Rvn3xCbXAMDOUlSXE8RleQPKOvOV7VeasrqKAE5CVsm2MXn+fN4KQpBkEgZIi4LVCp3q0rgXQ38iW5gvDW7fxhW3bIjR7mVJHUnMLyYSNA+ArS/FL1dAtgVciwL2BYKWnQ5D1GXW3CiUThWQcxWBfIl3hzJDkKeS6bIAye2xrE2Eqhfc2lrqLQ1ZKoOiW4lIJqLMdoiknYuUSeHuDkP4yxLtVgIGGeaCEjGXKJFDtpalWEuRoCQZALDG8MIDmh4IDU+ucYPPgiikgdiyN28CrpaSlorI2xSoDfJMZvkWPuqdLsypFMlOb23xq1cYiNg20GxNmkImxSEfSYsqDB6d0PU7q6YoNYEH0zyliCYuTvW3BVnE4KyyM+wVaZtaU3x6Er17clIGWbHD3IjB5iQPVzR0erCUy2159U9V2vbL5eOXG+7M/+iJBQrWtH/h3oZTvrfUXV1NQqFAjvDZDJZLNbSYh4gBkil0pSUlOPHj3O5XDgcrsGgvLw8Tf6avr4+kCg0KSKJROKZM2cYDEZWVhaIQffu3VusMws2m5+f1zAQGo3et28f+Ip1dXXLetLc3Ay+1v79+0FCAs8GEtUzO/zzxic1NTWVlJRotuvr6xe3FwVy0q1bt14mBnxh3g0P/zKHvsz6dOzu+BVOeimVnRnUFKwFTWwr+OJvX/6EJ69t269BJY0PPSsntUbnLt3IqxigKFoDmPkOKK4tku3AZW6TsePb5BpIKjg+eGtu4Sfn0tXbDZ2Hypv2juw/PT//74iTienLmhClqpHDN2f//TN25uJMceOYpHJA2bTn/JWFO75//OQiJBXXjd699wx0u3L26lJIAr1XvRDbfuPWvdl7D/ffOJ1/Qk0+rMzYm5V9TFk1XZs10OImyHekZ/3VwuqDL/9qwUIH5Iu3UvhOOPY2Ij+3uGf64syB0xdBSFo0urAaIaRFZACRyKec5MAnWMjxPr3JAf3xuzoTQuuT2dU5yfnycFUW7UBRxdkKEJWqzxYXDWVnqUW53SJRt4inzlUN7qscO5Q1MEgYagUhSTTZd2BmYf1Xw6FJTkd/pLQyXoH14aN8BPAdkkw/KSyiIjOqK3dbDdOjghnfBSIFHXOQJzisyBLVRbDlGvuzc4KkMi9hrolQuD6HYVqMtQXppwCzhsNYK6Br55C0JUTQG/Lx7k3JTsUIy3SiUTjNKIZilk60JGIsqCjjNKIBFDBIJxmkkbbi0uJVgYhBdxCSYEMeJrVpICdpy3GbS1C6SpSxCuFQk7ajMzFqAL5FJdQvphmXoizTENZQuC0UZpMKC8iPCuoMD+yMDOyK9G+PsEenW4YiTaLR5oXpNk0p9m0Qp44kt47krZ3JvmqUc3uGaxvWsRG3tZka3MVOHiOVni0AOQl068XKq/fu/siA0xWt6Jek/xxO+ue3a8JAQuJwOGCX8Hi8ZpRkaGgoLi4OfFxsBkISiEpCofCdd97h8XjgnpiYGJlMBoPBDhw4IJFIKisr//ltUdS0tLT8/HywmSZtsqurK/gUyEBLB6V6e3vBAxf3gGAEchJIKeCxIJa9oLc/LyeBDNjR0aHZHh4eBt/tsgbg26BSqeAHwWazl1WIE39X6enpNjj4l2LGMuvTcCuc9DK6OTe7CEmgdxFTPIOXj/+9qu7MP5j7V1jfjVuzqvoxDSS19x15wcLsmVv3QE4CTS5uCWMXbSeIIZKSvj1TDx/NH7t9+djtK/NPfjgIVxM/tHQP2AEivTYzUwlHqljiVlnt8IO5hSVyEycudQ4fHdx36nlJDe7duS8nlC/lpANDR6ta9uWXDUjLBruGjl66d73oVHn52WoQkkArT1Zj21vCq8t3VZbYJCWs+vBDx6TkSFlhQpESUlwaq8gRHOELRgtYDa0aSMIVtkSQ5ckAIzSZtCMSiEQscJKtiGBfTHZT03y60X69iB0deNZQR3J3cdxADujMsfza6cra85WTNxs0q/bGr0lvPfx3fMC9R3NX7t+5/+jpGsB90xcF3YNsdR+gJsFboiMVkHBFSlhFPGo4KqZH4t/B9e8DwkcwYSPo4GFkzBhW2FLmT5N6EyVeYtbueo5/B9OhFm9Rhveph+xoTNjeGLe9OdahKnV1FmV9DkEnh7BBiteXo7a3R+1sjnAlZzijEGbxJJNkonkmwZyINkwBDFIBfShgFEeyDCX4YpJiZLth/Vvd22Pt25N0lUj9crhpdaZ1PdS+NdmhFeLakWRSCTOsQOmqMCZ1maZlmRZIEJLgtqjMLaWJgT1hu3tCA3rC3DviTGoyDSrgBlVw87o0EJIs6tINypCGZUjLugz71nSrpnTjSqRxJcqyDuHalu7dnRA3moQ7gCDsI2eOECgj9QWHxu8+a7D9wb2HD5412LmiFf2C9R/FSRpdvHgxIyOjpKTkzJkzmo1n/m1z6dIlFxcXJycncAPkJBAqDh06pKllu7TZ6Ojo7t27HRwc5ufnQU56ZuUTEMhAzAK55+bNm8vKvb1APy8ngbi32ImRkZHvT/49/jbDHvgoEAhqamqWPlX5XcFgcBss/EsRY5n1KSuc9FK69+ih5HjHIifpOlpQ8p89F/syujE3qzg1JDramX20s//K03rLjx8/uX5j9sU5ljQa2n9ag0qg1UNTmp0PH84fPjzdP3D07NnXKSBfUtwPSSrQGJqey6thq0/lTd5qnn30A7PXoPZ3H16EpHZ5T0PnoaVxUS3j4xpCWvTg+cMFI3v5PYPysX1Zqto/fv5XK3efIGHRdj53p5hEGsHTD+CTy3nsxjaQk+IYZanMSrowPxkDBMQCuxKBBDzdN5e/pYnuqmZoHNqXxz3Uixwr13ASaOlxVeOFusffPL5073zRcTV/Qp17tO/gjfP3H8w1dx2WlvYXVw9OHH06u//oyZOaAxMgKnGGOezRUKA7At8VhO4Mim1JyhiSpe8RxI3hdw+l7RyE+PSnBA8hguvpljlCW4nApgxnXoM0rwONsG9K29Eet6Mlwbs5zqsxbktjoo4Cs7EIrS9D6xWgzVUZgepQ7+roLZRMF3KmMw5ukAKYZRKMAfwmKskgDTBNJFgFEWwzUW4iiEtOinVuhmNbkmdXlFVTimVTqrM60b4t2aEteXdPcEr/du/2yC0NibqlKL0KhElDpkl9hmk+3IaCsCGg7LhwpxqIXVOyWSnMuAhhUIAyKEbpq+AgM+kq0bolC96owBpXwQ3LEYaVcJNquHVTumdnnH9PeGBfmG9PpH9X1K4u6K72HNJQe+XR7+R6eTT/qLd6VE6pAd1ZNjT3rAozK1rRL1L/gZyk0dDQkEgkWjZQskwg9+zbty8oKAjkpIMHDz4zSufs2bPgs+Xl5QAAaOryPu9sICSxWKwXFHRbpp+Xk6qqqhZr/7a3txcVFT2vZX9///NCqDRamHfDwL/MYizzCie9vAavHtVAkniq7d0P3z97+dnJtV/m1lGdHgYhadHHbl961c5cvHr7wNT56UsLeW7AvyGu3pouLG7NyCwJj84Lj8qjMRpGRk8uxllfmblz6sL1Z86aafT40WMhs/EpJ0GkuLx0WmVGxxnx6DXZ+HXF/JMfRrdr568fHpg69+104WJtk6eF7dpHl3HS9YcLaTAffjugdejUJaay5R+6ph/9ffUWQsZ2AR7aCedN4fkH6IKuMkXvXhSvVpLXVSDr5ovLCMxcmqDw4OTps7evhw1I3DqYrh3MXX3i9ulJkJOYBzoSB/M1nJR7rOTk3RPg+YtPjAiPdC26sGWQW12eVsbblcXZxRHlNPTfvvc00OrirTttZxpwjTRAnYZqi0mpTQ1XkAQjJeQJUcIerG8v3KUz3aML6t6ZuqkA2JBP3ZAHGJQiDCrhhjUwo3qYfXPq9vZY39Y4j/oEy1qoZU3qRgVKS47doMBsLkJtqUvwbYwKagveykx1pWa4AplGUKJBKlkPTtaiUTYxiNaZGGsMwlECdc1P2SZLci5I9e6O2NIRb9MGMW9Ks2pOcVQnBfaFIEfdE/t8fTvDfTvCnZsSwFe3aEwzLcs056Cs+HBbCsaCijfKRRmp4EYylEkeyliCMszBrOfjN6tQm5TYTUoMCEnri3C6hRgDJXKjCq1fBbdpSvFqj/LvDvPvDdveFeXXFe7WDDUv5+1sKcQMtD1acj/v7ZqQk2sWPdAwPv/48bEr149cunLnwcoI04p+yfqP5aSXEcg94GNCQoKuru7zcv5pOAnc2L59++bNm38w+8DL6+flpKmpKTQaPTc3B371UqnU4eGF8uBXr17VhA+D/Kj5StaMJ2kmGp/fUaoNGvE3AXOZDYAVTnpZgThy+Oa5jkuHpOrKjZs2fb/BiRMnTI3Mf/ubN9/87VuuLl63by+U35p9MIfLaQ7IkEAZqivXFxY+3J1/sBSSQHdcep1KIxo9/mbu+K0qVbswIZO6M5TsE8Bz92Rv3c5B4yuLFAOXLt9Sj0xJqgZA51UPHj939dknefRYLu6EpSlATkrHcAlFydw6OAhJGl++/wPrJpappG5sEZIEhV0FFUOtRwYXIWn8xneGcx89fsKp6Qvjl2lv3fHW++/ZZwRAuzOoBzAFJ5l7byysRO3rnVqakXxi4mnk1sPH83uunx6/fgbcuDP/UHC4D0Ql1oFOzJ4q/N6qC/cW0PPGw3tLIYlzUA2rLILXsP157J3fOjpHUtqzf3GwevLaZGZ5DuiUUtEuJT1QyRIPNilON3p2EZzqUKZsnCGeYETG6WQTviokrRaSDMrhIKksuAZmUp/h0x7jVg8xq8rQr4brVcLXyXE6hVitcsxqBc66MiVxYEfqqHdEZYgfO3EbJc04FTBMIW9IYqyDMzdhKGYwvB0HtiUf6ipLcSuAuMhSAvtCXTvi7NqS7NSJNu0p5i2pcYM7EKMe0AHP7Z2Rbh1x7h1xFk1Qi2aoRWmaSQ7SUIJan4vTFhM3s7D6eSj9YuQCKuWi9MlEXQpJpwi3Xo7fqMDryAhaAmADn2TIw23kkzaqUCAnubbF71BH7OwJ8+yM8myO0S0haMlpm4rYtiXipI7qyWtPy8g05Hct5SQFu0E+sk/QNQha1DM8ffMn+8W6ohX9p+kXwEkg+vzxj3/8QU4CAWPVqlX/x5x0584dd3d3hULxMvHXYDMUCoXBYCQSiea3eXd3N7gNbuzbtw8Gg7FYLDgczufzXzzs9pST+MxlXuGk1xCNRvt+NWbwan784adrfqVr98Z26ze2fv7rr778+4a9V067xnG/2LTlt2++/Q8jb5dYUV7toLimH6ou4x5uXeSkwasvCoJ7sc7P9h+ckUir+buiiTvDiNt8KW7bWKAj42Wyoj5Zcb8GkjSW1Q7fezh37t618/euL5vJ7m07LBO20whVJHoOVgXHqLnEvuz8g7lDV6RX7k++TE8ePJ4/dvvS0duXDpyYzirpRkqrojlFgfhsbG4Bo0hV3Nx98s6paw+fMYs3cuocsrQlWla2lZr44ecfGfobkcdRjRck0/cW+Gx+/nF31xF5UZ9SMbBv73NzkJy+MyM7OgqiUtGxPdOzT5ddzM4/XMpJvMMdsAZxXNFTSAIdnpslqO+9cvPpwt35x4+ZjfWQcvHWEu620qwd5UW+jYUe7XzzOoIpmWiA/peRxPX5mL/nAloKjH7lU1RaX4Y2LEVaVcDMqzP0qhDaKsxaJW69DLehArNOhfGoi4sf2hk/7Jc0siO2NTC6ONyWQtXFMjbBWBtTmRszqIYIogMV7ipJ21KU4iyDOIkg2wqi3XLjnDoSnDoTHDoSLVqhMQM7QU7KHN7m3xPq0Rnr3hkLcpJ1S4p1daoeC2uYRtSmk9ZygLUCkjaXpC0gbeQR9DCALoqyGU/dpAC0Cok6coJWFnmTADAR4o0FuM1sYFMuwaQK5tIe79sZ4dcVHtgZbFeVsrqQ/JWEtqmAY6fItSrMcS8pUB06eHdurl3Rv5STGLxqDSRpXDD0jICGFa3ol6H/ak66dOnplMXVq1dfsML/2rVr4+PjIDBdvHjxJefUXkavw0ngy6vVahDcDAwMEAjEiwtfgLp9+/bzyA5kI/Btz87OvkRHqbYoxN95zGU2JK1w0ivL0dGxpaVl6Z6p2xfCyBl//N1fHX7lo7H9G96//9W7X5mY/ubNtz7887q1NhGbtyJ0tyG8E1iAuCxenLNbxiG0ywnqYmqHav/kxMnXVcf+rKZxslCJ8QyEuPuk2G+B2jog7JxRfkF0GrMUgS8gi8oWjREqKE1yamchaFFf+eGjRxbPc3TqWJVKLeZWsPjKMAkhqgivMV3Nu3L94o0f0qlL09l7m1hjNQsercGrlVClzItJ8s7FBEvwECYjjcPqGx1/5rFnLl5kNrbT6lpgFaowRdpXpl/pGK1u21MxMzPzg6/7g6o4PEgfqtOYO9qU3a6MyCFtpyzYk0z0ZlACyHmcqvaDx09r2o8dOR5WXORZILbMZ+lKAZ0CvF4xwUhJ1EcD+iiSPooIWg9B0mYRV+cT1xTiteSY9XLUOinuH4XEryXAxhzShhyiVgF+nRyvXYzbUITfVImxUFG9mmJ3doTv6gnZ3RsS3BeCGA/eWUB1zULbM9BmKIJuJlWfQLKgoO2L0+wrUuwUKXYlECdhontSrHN2gnNngmPnwpCSR2cMctQjfdgzpH93aP8ur44om4ZUm6YUqwqoEYDVSyRvgJPX0inrOOQNWUQdCmUDnK6XQNdNZhjwSWb1WN1y3MZi4mYh1VJEccshmQkBfRZVn08zLqSalSGCOsIiOwMDOsI2l6G/LgBATtKT8oylWZaFYju5hNDdUXnk8MVTV4qptU85iVKT3zywlJNAL1scsKIV/WL0X81JL6+GhoYfZJJX1Y+ad7ty5Upubq6zs7Onp2dpaenL4M5r6ykncVnLbEjE745b4aRX0IMHDz744IOlF+vKg1uS4x1uiUFfvaGzyEmg3/r1+2+88cZv33p31Ud/fuejz9/+1h/+4cu/frUW9J+/+vorHa21G3U26+rqLdHq1av//ir64m9/+vzLT0B/+PFH77z30dvvfPT22x+/8+7/fPjRHz/99LNP//DnT/74b3/w6R8++cufPvniqf/85V++f8I/ffHFx3/+7MPP/vDhZ598+Nmn4PbfXqIbf/rrXz75y2caf/j5Hz74/NOPP//jO598tOqjj1Z98NHb73/8zgcff/zpH553+F+//Nsnf/7ze59+8t4nn7z/Px//7vdv/upXv3r7nbff/eCd9z545/0P3v3www8+XKIP/vVf8J933n//7ffeAx+/02KJ3vsAPMV7736gafDB2++9/ebbq0D/btWqN1e9/fu331n17ntvv/ve4uGr3nv3d+++Dfo376x66rff+s1b3/GvV70F7vz1v7x0+9erVn3rhe3fvrPqtwuHg4+//927by769++9+da7v38T3Lnq9799663fak67Cmz/+wW//ftf//Y3b/zn6c033wQ/xffeAT/u9xY23n8f/OgWDV6F51yBX5Q+//zzV/oJ/UVq48aNev/fKC0t7Z8rnPQj9KM46f79++BH7+vra2trGxUVZWRk1N/f/5N2799a4CQk4u8c1jIbElY46dXU1dVlaWm5dM/Y9RPZU21eeOj7v//U/g1vDSRZv7H1d79eZeAX88Gf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\"}},{\"type\":\"text\",\"text\":\"Excerpt + from Wellawatte2023 pages 16-20: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\nssion + challenge and is\\n\\nimportant for chemical process design, drug design and + crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented + and trained an RNN model in Keras to predict solubilities (log\\n\\nmolarity) + of small molecules.127 The AqSolDB curated database137 was used to train the\\n\\nRNN + model.\\n\\n In this task, counterfactuals are based on equation 6. Figure + 3 illustrates the generated\\n\\nlocal chemical space and the top four counterfactuals. + Based on the counterfactuals, we ob-\\n\\nserve that the modifications to the + ester group and other heteroatoms play an important role\\n\\nin solubility. + These findings align with known experimental and basic chemical intuition.134\\n\\nFigure + 4 shows a quantitative measurement of how substructures are contributing to + the pre-\\n\\n\\n\\n 16Figure 2: Descriptor + explanations along with natural language explanation obtained for BBB\\npermeability + of Alprozolam molecule. The green and red bars show descriptors that influ-\\nence + predictions positively and negatively, respectively. Dotted yellow lines show + significance\\nthreshold (\u03B1 = 0.05) for the t-statistic. Molecular descriptors + show molecule-level proper-\\nties that are important for the prediction. ECFP + and MACCS descriptors indicate which\\nsubstructures influence model predictions. + MACCS explanations lead to text explanations\\nas shown. Republished from Ref.10 + with permission from authors. SMARTS annotations for\\nMACCS descriptors were + created using SMARTSviewer (smartsview.zbh.uni-hamburg.de,\\nCopyright: ZBH, + Center for Bioinformatics Hamburg) developed by Schomburg et al. 132.\\n\\n\\n\\n\\n\\n + \ 17diction. For example, we see that adding + acidic and basic groups as well as hydrogen bond\\n\\nacceptors, increases solubility. + Substructure importance from ECFP97 and MACCS138 de-\\n\\nscriptors indicate + that adding heteroatoms increases solubility, while adding rings structures\\n\\nmakes + the molecule less soluble. Although these are established hypotheses, it is + interesting\\n\\nto see they can be derived purely from the data via DL and + XAI.\\n\\n\\n\\n\\n\\nFigure 3: Generated chemical space for solubility prediction + using the RNN model. The\\nchemical space is a 2D projection of the pairwise + Tanimoto similarities of the local coun-\\nterfactuals. Each data point is colored + by solubility. Top 4 counterfactuals are shown here.\\nRepublished from Ref.9 + with permission from the Royal Society of Chemistry.\\n\\n\\n\\nGeneralizing + XAI \u2013 interpreting scent-structure relationships\\n\\n\\nIn this example, + we show how non-local structure-property relationships can be learned with\\n\\nXAI + across multiple molecules. Molecular scent prediction is a multi-label classification + task\\n\\nbecause a molecule can be described by more than one scent. For example, + the molecule\\n\\njasmone can be described as having \u2018jasmine,\u2019 \u2018woody,\u2019 + \u2018floral,\u2019 and \u2019herbal\u2019 scents.139 The\\n\\nscent-structure + relationship is not very well understood,140 although some relationships are\\n\\nknown. + \ For example, molecules with an ester functional group are often associated + with\\n\\n\\n 18Figure 4: Descriptor explanations + for solubility prediction model. The green and red bars\\nshow descriptors that + influence predictions positively and negatively, respectively. Dotted\\nyellow + lines show significance threshold (\u03B1 = 0.05) for the t-statistic. The MACCS + and\\nECFP descriptors indicate which substructures influence model predictions. + MACCS sub-\\nstructures may either be present in the molecule as is or may represent + a modification. ECFP\\nfingerprints are substructures in the molecule that affect + the prediction. MACCS descriptor\\nare used to obtain text explanations as shown. + Republished from Ref.10 with permission from\\nauthors. SMARTS annotations for + MACCS descriptors were created using SMARTSviewer\\n(smartsview.zbh.uni-hamburg.de, + Copyright: ZBH, Center for Bioinformatics Hamburg) de-\\nveloped by Schomburg + et al. 132.\\n\\n\\n\\n\\n\\n 19the \u2018fruity\u2019 + scent. There are some exceptions though, like tert-amyl acetate which has a\\n\\n\u2018camphoraceous\u2019 + rather than \u2018fruity\u2019 scent.140,141\\n\\n In Seshadri et al. 31, + we trained a GNN model to predict the scent of molecules and utilized\\n\\ncounterfactuals9 + and descriptor explanations10 to quantify scent-structure relationships. The\\n\\nMMACE + method was modified to account for the multi-label aspect of scent prediction. + This\\n\\nmodification defines molecules that differed from the instance molecule + by only the selected\\n\\nscent as counterfactuals. For instance, counterfactuals + of the jasmone molecule would be false\\n\\nfor the \u2018jasmine\u2019 scent + but would still be positive for \u2018woody,\u2019 \u2018floral\u2019 and \u2018herbal\u2019 + scents.\\n\\n\\n\\n\\n\\nFigure 5: Counterfactual for the 2,4 decadienal molecule. + \ The counterfactual indicates\\nstructural changes to ethyl benzoate that would + result in the model predicting the molecule\\nto not contain the \u2018fruity\u2019 + scent. The Tanimoto96 similarity between the counterfactual and\\n2,4 decadienal + is also\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}]}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4861,13 +5080,13 @@ interactions: connection: - keep-alive content-length: - - "5777" + - "188340" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4877,7 +5096,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4893,24 +5112,24 @@ interactions: response: body: string: !!binary | - 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 + 9vbWzNEs1eRt8i8AAAD//wMAaZOgCiMGAAA= headers: CF-RAY: - - 96665ca7dfd867e2-SJC + - 96a9ce470ef59e53-SJC Connection: - keep-alive Content-Encoding: @@ -4918,7 +5137,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:30 GMT + - Tue, 05 Aug 2025 22:42:09 GMT Server: - cloudflare Strict-Transport-Security: @@ -4936,27 +5155,33 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "3958" + - "2796" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "3963" + - "2709" + x-ratelimit-limit-input-images: + - "250000" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: - "30000000" + x-ratelimit-remaining-input-images: + - "249998" x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998621" + - "29997016" + x-ratelimit-reset-input-images: + - 0s x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 5ms x-request-id: - - b813a259-3ca0-4aef-9e3d-335414aa8a2b + - req_4a1f18cf451d4d5d9911b8933e03c288 status: code: 200 message: OK @@ -4964,11 +5189,14 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 28-30: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\n + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from Wellawatte2023 pages 28-30: Wellawatte et al, XAI Review, 2023\\n\\n------------\\n\\n M. T.; Singh, S.; Guestrin, C. \u201D Why should i trust you?\u201D Explaining the\\n\\n predictions of any classifier. Proceedings of the 22nd ACM SIGKDD international\\n\\n\\n 27 conference @@ -5035,7 +5263,7 @@ interactions: 2018, 16, 31\u201357.\\n\\n\\n(56) Harren, T.; Matter, H.; Hessler, G.; Rarey, M.; Grebner, C. Interpretation of structure\u2013\\n\\n activity relationships in real-world drug design data sets using explainable artificial\\n\\n intelligence. - Journal of Chemical Information and Modeling 2022, 62,\\n\\n----\\n\\nQuestion: + Journal of Chemical Information and Modeling 2022, 62,\\n\\n------------\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -5045,13 +5273,13 @@ interactions: connection: - keep-alive content-length: - - "5809" + - "6085" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -5061,7 +5289,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -5077,24 +5305,24 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//dFRNj9tGDL37VxBzthde74cR37ZAA2yCXooWCFoHNj2iJK5HHHVIOess - 9r8XI/kzbS4SMG/4+Pg45NsIwHHhFuB8jeabNkx+2f9WlvH7Xxt+3H68f3oJH2YaPlH75yf/+4sb - 54i4eSFvx6gbH5s2kHGUAfaJ0Ciz3s4f7uazx4fZvAeaWFDIYVVrk/s4mU1n95Pb28lsegisI3tS - t4C/RwAAb/03S5SCXt0CpuPjSUOqWJFbnC4BuBRDPnGoymoo5sZn0Ecxkl71er1+0ShLeVsKwNJp - 1zSY9ku3gKX78vQ8hpjg19c2IAtuAsFTMi7ZMwZ4FqMQuCLxNIZEJSUFi9CQ1bFQQCnAyNfC/3Sk - 0CkVPYxbAqsJCvKsHGXS4JalgjZFT6qkEEt4eobeIwVLKNpiIrGeksUotYms12MR6q5B0Rv4oyag - V0+ptUFNFqaww8SxU/gW01bBajSg1zbEdFSxoxDbhsTGQDsMHeb+jftc2LaBfX+QRX3Jqo7V+RRV - oYgNsiho52tAhYYK9hiAG6xYqjE0aJQYg4J6HqzKzEXqKihIuZIb+Ex7yE1JvOlyLgUWH7qChlNU - 4x31qlF6MTqGktC6RFdxgIJhr6xDjt5ASFR1ARN/H8ooY7q0kAPbfvDOs1FxsAmDRihYfacKvsYQ - SCrKuk4eSdX752NK5E1Ih477wNI7cPBuyHB0D0MVE1vdZIkK3yiE/M9ENavF1IfSLoZjQQWoodEk - lhOraYLJsojrR9Cgr1kIAmESlupm6cbDe04UaIfiaaU+Jsrv+sNS3peyXq8vRyJR2SnmiZQuhAsA - RaINnudh/HpA3k/jF2LVprjRH0JdycJarxKhRsmjphZb16PvI4Cv/Zh3V5Pr2hSb1lYWt9Snu314 - vBsI3XmzXMB38wNq0TBcAPPpYT9cU64KMuSgF7vCefQ1FZc57x5PRWBXcDxj09FF7f+V9H/0Q/0s - 1QXLT+nPgPfUGhWrNuV5ui77fC1R3r4/u3byuhfslNKOPa2MKeV+FFRiF4bF6HSvRs2qZKnyu+J+ - O+Z+jt5H/wIAAP//AwBBLGdLGwYAAA== + H4sIAAAAAAAAA3RUTY/bOAy951cQOrWAEySZTKbNbXbRFtnZRQ87QLvYFIki0TY7siSIdHaCwfz3 + hew08fTjYsB6fBTfE8mnEYAiq1agTK3FNNGNf5/d4fLjx7//+PT+9pOt/YfZ9G7915/05rd/7r0q + MiPsv6KRb6yJCU10KBROsEmoBXPW2c31YnF1dTNfdkATLLpMq6KMF2E8n84X49lsPJ+eiHUgg6xW + 8O8IAOCp++YSvcVHtYJp8e2kQWZdoVqdgwBUCi6fKM1MLNqLKi6gCV7Qd1XvdruvHPzGP208wEZx + 2zQ6HTdqBRt1XyPgo8EUBWIKB7LIoMERC4QSEpaY0BtkSOiyTpAA7x6j0+T13iHcJqGSDGkHay/o + HFU5Hl59vl2/nsB9jYzDNCYcMMFBJwotg+aIRjhf9fl2XQB541pLvoIGpQ6WoQwJsL8vH8eElkx2 + vyMZl9WXhIkLyJqTZqED9hSvu8AC8KBd2/2cbgLtqpBI6oYL0N6C1EgJdIyOTM8C8lASOsvg6AGh + 0YKJtGNgQ1lLAabGhljSsc9hU1uBRabKT2AtoB0HaND36aRGMLV2Dn2VPfY2G/6d/hxk8YAuxEzM + 5+QFU0wond1dU11qBmpiSKKz46Hs0SGDHMkxK2m0qckjONQpGzmBOzzCfyE9MBjK79pbj8DSWkKG + 4KFELW3C3ljatyc3LRri7KUkfFnR8NGo6frJVz/WE0rYO20exvvweOJPNqro2zOhw0MWtGUTEvZt + +uYMt4x2S42ukDNUase48c8bv9vthgOQsGxZ5/nzrXMDQHsfpH/iPHpfTsjzedhcqGIKe/6Oqkry + xPU2oebg82CxhKg69HkE8KUb6vbFnKqYQhNlK+EBu+tmy/msT6gue2QAX709oRJEuwFwszxtg5cp + txZFk+PBZlBGmxrtgHt9tTyL0K2lcMGmo4H2H0v6WfpeP/lqkOWX6S+AMRgF7fYywD8LS5h37a/C + zl53BSvGdCCDWyFM+T0slrp1/RpUfGTBZluSr3LzUb8Ly7idz5a4vF6YhVWj59H/AAAA//8DAADh + 2yYUBgAA headers: CF-RAY: - - 96665cab39b74705-SJC + - 96a9ce450b04ebeb-SJC Connection: - keep-alive Content-Encoding: @@ -5102,190 +5330,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:30 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - access-control-expose-headers: - - X-Request-ID - alt-svc: - - h3=":443"; ma=86400 - cf-cache-status: - - DYNAMIC - openai-organization: - - future-house-xr4tdh - openai-processing-ms: - - "3521" - openai-project: - - proj_RpeV6PrPclPHBb5GlExPXSBj - openai-version: - - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-envoy-upstream-service-time: - - "3532" - x-ratelimit-limit-requests: - - "10000" - x-ratelimit-limit-tokens: - - "30000000" - x-ratelimit-remaining-requests: - - "9999" - x-ratelimit-remaining-tokens: - - "29998617" - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 2ms - x-request-id: - - req_bff0c1c063b5175d3ceca3d7df1a8d71 - status: - code: 200 - message: OK - - request: - body: - "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of - the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from Wellawatte2023 pages 8-9: Wellawatte et al, XAI Review, 2023\\n\\n----\\n\\nrepresented - with equation 2.\\n\\n \u2206\u02C6f(\u20D7x) - \u2248\u2202\u02C6f(\u20D7x) (2)\\n \u2206xi - \ \u2202xi\\n\\n\\n\\n 7 \u2206\u02C6f(\u20D7x) - \ where \u02C6f(x) is the black-box model and are used as our attributions. - The left- \u2206xi\\n\\nhand - side of equation 2 says that we attribute each input feature xi by how much - one unit\\n\\nchange in it would affect the output of \u02C6f(x). If \u02C6f(x) - is a linear surrogate model, then this\\n\\nmethod reconciles with LIME.35 In - DL models, \u2207xf(x), suffers from the shattered gradients\\n\\nproblem.62 - This means directly computing the quantity leads to numeric problems. The\\n\\ndifferent - gradient based approaches are mostly distinguishable based on how the gradient - is\\n\\napproximated.\\n\\n Gradient based explanations have been widely used - to interpret chemistry predictions.60,66\u201370\\n\\nMcCloskey et al. 60 used - graph convolutional networks (GCNs) to predict protein-ligand\\n\\nbinding and - explained the binding logic for these predictions using integrated gradients.\\n\\nPope - et al. 66 and Jim\xB4enez-Luna et al. 67 show application of gradCAM and integrated - gradi-\\n\\nents to explain molecular property predictions from trained graph - neural networks (GNNs).\\n\\nSanchez-Lengeling et al. 68 present comprehensive, - open-source XAI benchmarks to explain\\n\\nGNNs and other graph based models. - They compare the performance of class activation\\n\\nmaps (CAM),63 gradCAM,64 - smoothGrad,,65 integrated gradients62 and attention mecha-\\n\\nnisms for explaining - outcomes of classification as well as regression tasks. They concluded\\n\\nthat - CAM and integrated gradients perform well for graph based models. Another attempt\\n\\nat - creating XAI benchmarks for graph models was made by Rao et al. 70. They compared\\n\\nthese - gradient based methods to find subgraph importance when predicting activity - cliffs\\n\\nand concluded that gradCAM and integrated gradients provided the - most interpretability\\n\\nfor GNNs. The GNNExplainer69 is an approach for - generating explanations (local and\\n\\nglobal) for graph based models. This - method focuses on identifying which sub-graphs con-\\n\\ntribute most to the - prediction by maximizing mutual information between the prediction\\n\\nand - distribution of all possible sub-graphs. Ying et al. 69 show that GNNExplainer - can be\\n\\nused to obtain model-agnostic explanations. SubgraphX is a similar - method that explains\\n\\nGNN predictions by identifying important subgraphs.71\\n\\n - \ Another set of approaches like DeepLIFT72 and Layerwise Relevance backPropagation73\\n\\n\\n\\n - \ 8(LRP) are based on backpropagation of - the prediction scores through each layer of the neu-\\n\\nral network. The specific - backpropagation logic across various activation functions differs\\n\\nin these - approaches, which means each layer must have its own implementation. Baldas-\\n\\nsarre - and Azizpour 74 showed application of LRP to explain aqueous solubility prediction - for\\n\\nmolecules.\\n\\n SHAP is a model-agnostic feature attribution method - that is inspired from the game\\n\\ntheory concept of Shapley values.44,46 SHAP - has been popularly used in explaining molecular\\n\\nprediction models.75\u201378 - It\u2019s an additive feature contribution approach, which assumes that\\n\\nan - explanation model is a linear combination of binary variables z. If the Shapley - value\\nfor the ith feature is \u03D5i, then the explanation is \u02C6f(\u20D7x) - = Pi \u03D5i(\u20D7x)zi(\u20D7x). Shapley values for\\n\\nfeatures are computed - using Equation 3.79,80\\n\\n\\n\\n M\\n 1\\n - \ \u03D5i(\u20D7x) = X \u02C6f (\u20D7z+i) - \u2212\u02C6f (\u20D7z\u2212i) (3)\\n M\\n\\n - \ Here \u20D7z is a fabricated example created from the original \u20D7x and - a random perturbation \u20D7x\u2032.\\n\\n\u20D7z+i has the feature i from \u20D7x - and \u20D7z\u2212i has the ith feature from \u20D7x\u2032. Some care should - be taken\\n\\nin constructing \u20D7z when working with molecular descriptors - to ensure that an impossible \u20D7z is\\n\\nnot sampled (e.g., high count of - acid groups but no hydrogen bond donors). M is the sample\\n\\nsize of perturbations - around \u20D7x. Shapley value computation is expensive, hence M is chosen\\n\\naccordingly. - Equation 3 is an approximation and gives contributions with an expectation\\nterm - as \u03D50 + Pi=1 \u03D5i(\u20D7x) = \u02C6f(\u20D7x).\\n\\n Visualization - based feature attribution has also been used for molecular data. In com-\\n\\nputer - science, saliency maps are a way to measure spatial feature contribution.81 - Simply put,\\n\\nsaliency maps draw a connection between the model\u2019s neural - fingerprint components (trained\\n\\nweights) and input features. Weber et al. - 82 used saliency maps to build an explainable GCN\\n\\narchitecture that gives - subgraph importance for small molecule activity prediction. On the\\n\\nother - hand, similarity maps compare model predictions for two or more molecules based - on\\n\\ntheir chemical fingerprints.83 Similarity maps provide atomic weights - or predicte\\n\\n----\\n\\nQuestion: What is XAI?\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate - connection: - - keep-alive - content-length: - - "5832" - content-type: - - application/json - host: - - api.openai.com - user-agent: - - AsyncOpenAI/Python 1.97.1 - x-stainless-arch: - - arm64 - x-stainless-async: - - async:asyncio - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.97.1 - x-stainless-raw-response: - - "true" - x-stainless-read-timeout: - - "60.0" - x-stainless-retry-count: - - "0" - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.13.5 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRRb9s2EH73rzjwKQFkw/ESp/WbN2xrgCUY0AJbOxfGmTxJ11Aky6Nc - e0H++0DKsd2uA/YiSPruPt59/O6eRgCKjVqA0i0m3QU7/nF/X9Mfn5xtfpuaD/cSHm7f1NP3/bsP - +vO9qnKG33winV6yJtp3wVJi7wZYR8JEmfXq9uaH29n8ZjYvQOcN2ZzWhDS+9uPZdHY9vroaz6aH - xNazJlEL+GsEAPBUnrlEZ2inFjCtXv50JIINqcUxCEBFb/MfhSIsCV1S1QnU3iVypeqnlQNYKem7 - DuN+pRawUn8u7+Di512wyA43lmAZE9esGS3cuUTWckNO0yVEqikKJA8dpdYbAXQGEunW8eeeBHoh - k2F2iWKIlEoADdyQWoIQybDOign4GpZ3UKSRCgLGxLq3GO0eNhb143jjdwd4Au9aAtppiiGBYdG9 - CAlsMbLvBXIPGEL0qFuSCthp2xt2DTQRDZNL4w3m4l4Kv6BJM6lKoU3Md3YMlKq8/rS8v6yG08fY - OC+J9THb8iPB2zfL3+FioPUO3rYYLO1hizZLUUffQYMd5bZ93F9WRYstS4+W/8Yswbl0hVLQMjm9 - L6HCHVuMnPbQYRgkEDpJHym3bHmQ/EXkc4HZgfEdsjvQd95SURhC9IFi2p+FlzND9InYjS03+XPD - Los4gV98BNphdns1NB6i37IhATSGE28JasLU56JSirzpSwkVfGnZEvz68HBwGEVgQy47jASk3zQR - QyuQTTqkuSb3800fJerlDg+WKJfOXTEkuRadppPzcMM2S1ccGntJmWV5B7KXRJ1MVqoaZiGSpW3O - XYv2kYaZeL1SK/d8PkSR6l4wz7DrrT0D0DmfynWW8f14QJ6PA2t9E6LfyDepqmbH0q4joXiXh1OS - D6qgzyOAj2Ux9F/NugrRdyGtk3+kctzV7Pp6IFSnXXQG38wPaPIJ7RlwPT1slK8p14YSspWz7aJ0 - nilzyj2tIuwN+zNgdNb4v+v5HvfQPLvm/9CfAK0pJDLrk0m+FxYpL+v/CjsKXQpWQnHLmtaJKebL - MFRjb4c9qgbTrGt2TXYXD8u0Dms9v72dv6rnr6Zq9Dz6BwAA//8DAJjrpnxVBgAA - headers: - CF-RAY: - - 96665ca80ca417ec-SJC - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 28 Jul 2025 18:15:31 GMT + - Tue, 05 Aug 2025 22:42:11 GMT Server: - cloudflare Strict-Transport-Security: @@ -5303,13 +5348,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4588" + - "5213" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "4591" + - "5216" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -5317,13 +5362,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998605" + - "29998550" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - 0c72b275-4fab-411f-bd39-d23769942d78 + - req_bbc3677bbcbd4312b762f34d240ce1d8 status: code: 200 message: OK @@ -5332,59 +5377,54 @@ interactions: '{"model": "deepseek/deepseek-r1", "messages": [{"role": "system", "content": "Answer in a direct and concise tone. Your audience is an expert, so be highly specific. If there are ambiguous terms or acronyms, first define them."}, {"role": - "user", "content": "Answer the question below with the context.\n\nContext:\n\npqac-56def044: + "user", "content": "Answer the question below with the context.\n\nContext:\n\npqac-fc7d30d6: Explainable Artificial Intelligence (XAI) is a field focused on providing interpretations and explanations for deep learning (DL) model predictions, addressing the ''black-box'' - nature of these models. XAI aims to make DL models more understandable and trustworthy - by offering insights into their decision-making processes. Key concepts in XAI - include interpretability (the degree of human understandability intrinsic to - a model), justifications (quantitative metrics that explain why a model should - be trusted), and explanations (descriptions of why specific predictions were - made). XAI is particularly important in fields like chemistry, where understanding - predictions can guide hypotheses and ensure models are not learning spurious - correlations.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-fd5c2963: Explainable - Artificial Intelligence (XAI) refers to methods and techniques in artificial - intelligence that make the decision-making processes of AI systems transparent, - interpretable, and understandable to humans. The excerpt references several - works that explore XAI concepts, including its definitions, methods, applications, - and challenges. For instance, provide a comprehensive overview of XAI, including - taxonomies and opportunities for responsible AI. Other works, such as those - by and Gunning & Aha (2019), discuss interpretable machine learning and DARPA''s - XAI program, respectively. These studies emphasize the importance of trust, - fairness, and accountability in AI systems, aligning with regulatory frameworks - like the EU''s ''right to explanation.''\nFrom Wellawatte et al, XAI Review, - 2023\n\npqac-fd1b0a4f: XAI, or Explainable Artificial Intelligence, refers to - methods and processes that make the decision-making of AI models, particularly - deep learning (DL) models, interpretable and understandable. While DL models - are often highly accurate, they are typically less interpretable. XAI addresses - this trade-off by first developing accurate but opaque models and then adding - explanations to clarify predictions. Explanations provide context and causes - for predictions, offering insights into the underlying mechanisms. XAI methods - can be intrinsic (built into the model) or extrinsic (post-hoc). Evaluating - XAI involves attributes like actionability, completeness, correctness, domain - applicability, fidelity, robustness, and succinctness.\nFrom Wellawatte et al, - XAI Review, 2023\n\npqac-a6d5f255: XAI, or Explainable Artificial Intelligence, - refers to methods and techniques that make the predictions of AI models interpretable - and understandable to humans. Counterfactual explanations are a key tool in - XAI, providing instance-level, actionable insights by identifying changes in - input features that would alter the model''s prediction. For example, in chemistry, - counterfactuals can suggest modifications to molecular structures to achieve - desired properties. Techniques like MMACE and CF-GNNExplainer are used to generate - counterfactuals, with MMACE being model-agnostic and applicable to both regression - and classification tasks. XAI also contrasts with adversarial training, which - focuses on exposing model vulnerabilities during training.\nFrom Wellawatte - et al, XAI Review, 2023\n\npqac-e9abf8c6: XAI, or Explainable Artificial Intelligence, - refers to methods and techniques used to interpret and understand the decisions - made by machine learning (ML) and deep learning (DL) models. In the context - of chemistry, XAI is applied to uncover structure-property relationships, such - as using counterfactual explanations and descriptor-based methods to interpret - black-box models. For example, counterfactual explanations can suggest actionable - modifications to molecules to improve properties like blood-brain barrier permeability. - Descriptor explanations provide quantitative insights into molecular features, - aiding chemists in understanding model predictions. XAI bridges the gap between - complex models and human interpretability, making it crucial for domains like - drug discovery.\nFrom Wellawatte et al, XAI Review, 2023\n\nValid Keys: pqac-56def044, - pqac-fd5c2963, pqac-fd1b0a4f, pqac-a6d5f255, pqac-e9abf8c6\n\n----\n\nQuestion: + nature of these models. XAI aims to enhance trust and usability by offering + insights into why a model makes specific predictions. Key concepts in XAI include + interpretability (the degree of human understandability of a model), justifications + (quantitative metrics supporting model trustworthiness), and explanations (descriptions + of why a prediction was made). XAI is particularly relevant in chemistry for + understanding structure-property relationships and ensuring models do not rely + on spurious correlations.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-a28e528d: + Explainable Artificial Intelligence (XAI) refers to methods and techniques that + make the behavior and decision-making processes of machine learning (ML) and + deep learning (DL) models interpretable and understandable to humans. In the + context of chemistry, XAI is used to interpret black-box models and connect + explanations to structure-property relationships. For example, counterfactual + explanations and descriptor-based methods can reveal how molecular modifications + influence properties like blood-brain barrier permeation or solubility. These + insights help chemists understand and optimize molecular designs for specific + properties.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-5bd670f4: XAI, + or Explainable Artificial Intelligence, refers to methods and techniques that + make the predictions and decision-making processes of AI models interpretable + and understandable to humans. In the context of chemical and molecular modeling, + XAI is used to identify and explain the relationships between molecular structures + and their properties, such as solubility or scent. For example, counterfactuals + and molecular descriptors are employed to highlight how specific structural + changes influence model predictions. This approach helps align AI-derived insights + with established chemical knowledge and intuition, enabling better understanding + and trust in AI models.\nFrom Wellawatte et al, XAI Review, 2023\n\npqac-d5ac699e: + XAI, or Explainable Artificial Intelligence, is a method used to explain predictions + made by molecular property prediction models. It aims to increase user trust + and ensure that models are learning correct chemical principles. XAI can be + applied after black-box modeling to uncover structure-property relationships + without compromising accuracy or interpretability. Key challenges in XAI include + representation of explanations, defining molecular distance, adapting explanations + for different audiences or legal requirements, exploring chemical space, and + developing systematic frameworks for evaluating explanations. These challenges + highlight the need for tailored approaches depending on the domain and audience.\nFrom + Wellawatte et al, XAI Review, 2023\n\npqac-b184a231: Explainable Artificial + Intelligence (XAI) refers to methods and techniques in AI that make the decision-making + processes of AI systems transparent, interpretable, and understandable to humans. + It aims to provide insights into how AI models arrive at their predictions or + decisions, ensuring trust, accountability, and fairness. XAI is discussed in + various contexts, including its concepts, taxonomies, challenges, and applications + in fields like chemistry, energy systems, and regulatory frameworks. Key works + in XAI include studies on model-agnostic explanations, surrogate models, and + frameworks for responsible AI, as well as surveys and reviews on its opportunities + and challenges.\nFrom Wellawatte et al, XAI Review, 2023\n\nValid Keys: pqac-fc7d30d6, + pqac-a28e528d, pqac-5bd670f4, pqac-d5ac699e, pqac-b184a231\n\n------------\n\nQuestion: What is XAI?\n\nWrite an answer based on the context. If the context provides insufficient information reply \"I cannot answer.\" For each part of your answer, indicate which sources most support it via citation keys at the end of sentences, @@ -5407,7 +5447,7 @@ interactions: connection: - keep-alive content-length: - - "5544" + - "5175" content-type: - application/json host: @@ -5425,54 +5465,42 @@ interactions: string: !!binary | H4sIAAAAAAAAAwAAAP//4lKAAS4AAAAA///iQjABAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA //9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD/ - /0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP// - QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9C - YgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0Ji - AgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmIC - AAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIA - AAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAA - AP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA - //9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//QmICAAAA//9CYgIAAAD/ - /0JiAgAAAP//QmICAAAA//9CYgIAAAD//0JiAgAAAP//jFhtbxu5Ef4rA36JBKx0cRI7OX0pjFxa - uEh8yDXX5FAXwSw5u8sTRW44XNlqEKA/or+wv6QYclcvtnPoN8uSyJlnnpdZfVXWqJVqyS/OXp4/ - f/ns4vz52UK///Xj9rfn78/f/7L5+8er3355/9cLVak+hq01FNVKXVNtB1aV2gRDTq2UIeqZaP3D - 9McinqlKhfp30kmtlO4wLXXY9I6SDV5VSkfCREatDhdXSnfBamK1+sdX5ULbx1CzWvnBuUo11lvu - PkdCDl6tFKfQq0p5THZLn7/zrvWG7tTqaaU2xIwtqdVXFYMjtVLIbDmhT1JN8Im8VPrmrndoPdaO - 4DIm21ht0cGVT+Scbclrgtmny6s5kJeGkJkYNpS6YBjQG0ikO2+/DMRgiG3ryUAKEMkbipA6AkPa - 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 headers: Access-Control-Allow-Origin: - "*" CF-RAY: - - 96665cc63dcdfa8e-SJC + - 96a9ce669df3171a-SJC Connection: - keep-alive Content-Encoding: @@ -5480,7 +5508,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:32 GMT + - Tue, 05 Aug 2025 22:42:12 GMT Permissions-Policy: - payment=(self "https://checkout.stripe.com" "https://connect-js.stripe.com" "https://js.stripe.com" "https://*.js.stripe.com" "https://hooks.stripe.com") diff --git a/tests/cassettes/test_pdf_reader_match_doc_details.yaml b/tests/cassettes/test_pdf_reader_match_doc_details.yaml index ba4d635aa..02c5c6224 100644 --- a/tests/cassettes/test_pdf_reader_match_doc_details.yaml +++ b/tests/cassettes/test_pdf_reader_match_doc_details.yaml @@ -20,7 +20,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -30,7 +30,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -46,18 +46,18 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA4xTz2/aMBS+56948hkmSMpoubXSpk0aU289NChxnRdwcfws+6UDIf73yQklbGNS - Lzn4++Hvvc85JABCV2IBQm0kq8aZ8cN+WW/n5uv3ZVbNstR820r6ub1t908PP3ZiFBX08oqK31Wf - FDXOIGuyPaw8SsboOp3Psnn6eZalHdBQhSbK1o7HNzROJ+nNeDodp5OTcENaYRALeE4AAA7dN0a0 - Fe7EAiaj95MGQ5BrFIszCUB4MvFEyBB0YGlZjAZQkWW0XeqyLF8D2dwecguQC9ZsMBcLyMU9PKIP - DhXrNwSy8GXnjLQyTheAaliSQdUa6eHRY6VVBGAZBwu5GPV+suUN+RAdn3PxhMbIX5IZARmkycXq - xKtIR45tjcntMbdlWV4m9li3QZoT4wKQ1hL3keIVqxNyPG/H0Np5egl/SUWtrQ6bwqMMZOMmApMT - HXpMAFZdC+0fixXOU+O4YNpid91t1tuJofYBzO5OIBNLM5xP03R0xa6okKU24aJGoaTaYDVIh85l - W2m6AJKLof9Nc827H1zb9UfsB0ApdIxV4c6NX6N5jH/F/2jnJXeBRUD/phUWrNHHIiqsZWv6ByvC - PjA2Ra3tGr3zunu1scjkmPwGAAD//wMAkwZbgbMDAAA= + H4sIAAAAAAAAA4xTTY/TMBC951eM5tyipulS6A1WCCFYVCEk0G6qxOtMUi+ObezJ7rJV/ztyUpoC + ReKSg9+H38xzdgkAqgpXgHIrWLZOTy/T99X3i9n684enTw/cXD9/Z9by9dvlJX39eI2TqLC3dyT5 + l+qZtK3TxMqaAZaeBFN0TZcXi0WWLdNZD7S2Ih1ljePpwk7ns/limqbT+ewg3FolKeAKbhIAgF3/ + jRFNRY+4gt6mP2kpBNEQro4kAPRWxxMUIajAwjBORlBaw2T61GVZ3gVrcrPLDUCOrFhTjivI8RWs + yQdHktU9gTXw5tFpYUScLoCt4cpqkp0WHtaeKiUjAFdxsJDjZPATHW+tD9HxJscvpLV4EMwExCB0 + jpsDr7IqckyndW72uSnL8jSxp7oLQh8YJ4AwxvIQKV6xOSD743a0bZy3t+EPKdbKqLAtPIlgTdxE + YOuwR/cJwKZvofttsei8bR0XbL9Rf92LbLDDsfYRzF4eQLYs9HiezueTM3ZFRSyUDic1ohRyS9Uo + HTsXXaXsCZCcDP13mnPew+DKNP9jPwJSkmOqCnds/BzNU/wr/kU7LrkPjIH8vZJUsCIfi6ioFp0e + HiyGH4GpLWplGvLOq+HV1q6oZ5TNlhfZssJkn/wEAAD//wMAMFeKFL4DAAA= headers: CF-RAY: - - 96665ccc0ad4fa86-SJC + - 96a9cde2b8afeb31-SJC Connection: - keep-alive Content-Encoding: @@ -65,14 +65,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:33 GMT + - Tue, 05 Aug 2025 22:41:50 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=BMrt8vqTptk_fnuJI59elD4N43d726oGzmj7aAL2_mM-1753726533-1.0.1.1-IoxN_BcRi67wqB.eGTavtLT1r1KMJkjon6b73yiJiy6f2EYQhS8rDWGN5Qwrfdv8.zONcW31ayk0mj6rFxTZ_qCfyvZlshqFWpQ4rBI8UMA; - path=/; expires=Mon, 28-Jul-25 18:45:33 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=am1V8UVNE6GGV6OhA7KL.bphI_muWC4zj_BV3aDR5hY-1754433710-1.0.1.1-JaFrtazofjRystZBL2K0UGCS44T1EGQGgcM37msB3Jr4GWlmCH7b8tcLzOKlPADAnXsgPLBnfogu8OKHCRNAAOABYlqHCvTviXWszU8MKnw; + path=/; expires=Tue, 05-Aug-25 23:11:50 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=WQ13ZNknZ8XAKyeImjTCdf8t9srvphPzM4Dfc9myDQo-1753726533078-0.0.1.1-604800000; + - _cfuvid=lqQIWUTE3BVPgqlmBaUxhVrd7VaSAVOksBMCp66VZwQ-1754433710917-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Strict-Transport-Security: - max-age=31536000; includeSubDomains; preload @@ -89,13 +89,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "507" + - "313" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "512" + - "318" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -109,7 +109,7 @@ interactions: x-ratelimit-reset-tokens: - 0s x-request-id: - - e37383b6-6890-4e09-97ba-23915630c194 + - req_4a5a3265d505427ebfd818d3491e8868 status: code: 200 message: OK @@ -121,7 +121,7 @@ interactions: response: body: string: - '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":20205,"items":[{"DOI":"10.26434\/chemrxiv-2022-qfv02","author":[{"given":"Geemi + '{"status":"ok","message-type":"work-list","message-version":"1.0.0","message":{"facets":{},"total-results":20334,"items":[{"DOI":"10.26434\/chemrxiv-2022-qfv02","author":[{"given":"Geemi P.","family":"Wellawatte","sequence":"first","affiliation":[{"name":"University of Rochester"}]},{"given":"Heta A.","family":"Gandhi","sequence":"additional","affiliation":[{"name":"University of Rochester"}]},{"given":"Aditi","family":"Seshadri","sequence":"additional","affiliation":[{"name":"University @@ -142,11 +142,11 @@ interactions: Content-Encoding: - gzip Content-Length: - - "441" + - "442" Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:35 GMT + - Tue, 05 Aug 2025 22:41:51 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -155,9 +155,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -1225,7 +1225,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -1235,7 +1235,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -1251,1690 +1251,1693 @@ interactions: response: body: string: !!binary | - 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 - AAD//wMAAEU/LroFAgA= + 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 + AwBTi0GaugUCAA== headers: CF-RAY: - - 96665ce339ae15ca-SJC + - 96a9ce03bdad23a9-SJC Connection: - keep-alive Content-Encoding: @@ -2942,14 +2945,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:36 GMT + - Tue, 05 Aug 2025 22:41:56 GMT Server: - cloudflare Set-Cookie: - - __cf_bm=UcbpJtgMpUaG.Rib..BOZBsOPT0SXZZ85Jts36QHT1Y-1753726536-1.0.1.1-cGUj49faUJP4hz3Xy2fAVRF9haI91DkQJseN3aHmIrkDYwbjrPkrh2d0SU2U_kw4J5Ul23qyvPXNp8cLbgrQ.6I0TiPvYimdY3f9Y8SUec4; - path=/; expires=Mon, 28-Jul-25 18:45:36 GMT; domain=.api.openai.com; HttpOnly; + - __cf_bm=6Nsmq7MZKDxdfuy0CzIt1BjvCI9Drpk0tY11iPZXecY-1754433716-1.0.1.1-qxAU9gfCzxUQFa7wgjgpOYB.7CDFtx50OkNX8xPEUfJstZFmraFpKVGThdy.XTqZ4t6BeG5ivIbucNnzMJwxg8b6CgdkgD6DK32fZ.eang0; + path=/; expires=Tue, 05-Aug-25 23:11:56 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None - - _cfuvid=_jNn2qGdBfM4a6pMe.Bu.RC7.CjnKDDPoTXaLz1sZQI-1753726536577-0.0.1.1-604800000; + - _cfuvid=LaRqLDKsci8wGmsqgXPsIeDQwt7N5xOHmT4mbMTYSew-1754433716206-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None Transfer-Encoding: - chunked @@ -2968,7 +2971,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "297" + - "314" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -2976,23 +2979,23 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-f55cd75d4-kqpb7 + - envoy-router-8db4bc66c-fqcft x-envoy-upstream-service-time: - - "306" + - "320" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - - "199979817" + - "199979816" x-ratelimit-reset-requests: - 0s x-ratelimit-reset-tokens: - 6ms x-request-id: - - req_8fe3b8b26f1694dbc67d25981a335e9e + - req_090dacccde3098337fe396eaf2e67ba7 status: code: 200 message: OK @@ -3016,7 +3019,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3026,7 +3029,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3153,7 +3156,7 @@ interactions: 98//e/xf61/917/+FwAAAP//AwBe8oQ14CAAAA== headers: CF-RAY: - - 96665ce60d3715ca-SJC + - 96a9ce074af323a9-SJC Connection: - keep-alive Content-Encoding: @@ -3161,7 +3164,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:36 GMT + - Tue, 05 Aug 2025 22:41:56 GMT Server: - cloudflare Transfer-Encoding: @@ -3181,7 +3184,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "180" + - "108" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3189,15 +3192,15 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-dbb4fbdcc-pbpnl + - envoy-router-6bd4b5cc9f-6bfxg x-envoy-upstream-service-time: - - "196" + - "136" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - "199999930" x-ratelimit-reset-requests: @@ -3205,7 +3208,7 @@ interactions: x-ratelimit-reset-tokens: - 0s x-request-id: - - req_8960eb8fa29d2dfa78ee7cdc30460c2c + - req_9c747b27c2297760e747910edc9233cd status: code: 200 message: OK @@ -3225,7 +3228,7 @@ interactions: host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3235,7 +3238,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3251,118 +3254,118 @@ interactions: response: body: string: !!binary | - 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 headers: CF-RAY: - - 96665ce7ff9d15ca-SJC + - 96a9ce093dd523a9-SJC Connection: - keep-alive Content-Encoding: @@ -3370,7 +3373,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:37 GMT + - Tue, 05 Aug 2025 22:41:56 GMT Server: - cloudflare Transfer-Encoding: @@ -3390,7 +3393,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "308" + - "218" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -3398,15 +3401,15 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload via: - - envoy-router-86d465658-qm2rk + - envoy-router-589dbbbf6b-8tk5f x-envoy-upstream-service-time: - - "404" + - "221" x-ratelimit-limit-requests: - "200000" x-ratelimit-limit-tokens: - "200000000" x-ratelimit-remaining-requests: - - "199998" + - "199999" x-ratelimit-remaining-tokens: - "199999990" x-ratelimit-reset-requests: @@ -3414,7 +3417,7 @@ interactions: x-ratelimit-reset-tokens: - 0s x-request-id: - - req_15c42738bb030b0a6ef2b2572298b27b + - req_99afb96d74e244795712eb3fcdd1b15f status: code: 200 message: OK @@ -3422,77 +3425,82 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 12-14: Geemi P. Wellawatte, Heta + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 20-22: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\nnterfactual - approach, contrastive approach employ a dual\\n\\noptimization method, which - works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. - Contrastive explanations can interpret the model by identifying contribution - of\\n\\npresence and absence of subsets of features towards a certain prediction.36,99\\n\\n - \ A counterfactual x\u2032 of an instance x is one with a dissimilar prediction - \u02C6f(x) in classi-\\n\\nfication tasks. As shown in equation 5, counterfactual - generation can be thought of as a\\n\\nconstrained optimization problem which - minimizes the vector distance d(x, x\u2032) between the\\n\\nfeatures.9,100\\n\\n\\n - \ minimize d(x, x\u2032)\\n (5)\\n - \ such that \u02C6f(x) \u0338= \u02C6f(x\u2032)\\n\\n - \ For regression tasks, equation 6 adapted from equation 5 can be used. Here, - a counter-\\n\\nfactual is one with a defined increase or decrease in the prediction.\\n\\n\\n - \ minimize d(x, x\u2032)\\n (6)\\n - \ such that \u02C6f(x) \u2212\u02C6f(x\u2032) \u2265\u2206\\n\\n - \ Counterfactuals explanations have become a useful tool for XAI in chemistry, - as they\\n\\nprovide intuitive understanding of predictions and are able to - uncover spurious relationships\\n\\nin training data.101 Counterfactuals create - local (instance-level), actionable explanations.\\n\\nActionability of an explanation - suggest which features can be altered to change the outcome.\\n\\nFor example, - changing a hydrophobic functional group in a molecule to a hydrophilic group\\n\\nto - increase solubility.\\n\\n Counterfactual generation is a demanding task as - it requires gradient optimization over\\n\\ndiscrete features that represents - a molecule. Recent work by Fu et al. 102 and Shen et al. 103\\n\\npresent two - techniques which allow continuous gradient-based optimization. Although, these\\n\\nmethodologies - are shown to circumvent the issue of discrete molecular optimization, counter-\\n\\nfactual - explanation based model interpretation still remains unexplored compared to - other\\n\\n\\n\\n 12post-hoc methods.\\n\\n - \ CF-GNNExplainer104 is a counterfactual explanation generating method based - on GN-\\n\\nNExplainer69 for graph data. This method generate counterfactuals - by perturbing the input\\n\\ndata (removing edges in the graph), and keeping - account of perturbations which lead to\\n\\nchanges in the output. However, - this method is only applicable to graph-based models\\n\\nand can generate infeasible - molecular structures. Another related work by Numeroso and\\n\\nBacciu 105 focus - on generating counterfactual explanations for deep graph networks. Their\\n\\nmethod - MEG (Molecular counterfactual Explanation Generator) uses a reinforcement learn-\\n\\ning - based generator to create molecular counterfactuals (molecular graphs). While - this\\n\\nmethod is able to generate counterfactuals through a multi-objective - reinforcement learner,\\n\\nthis is not a universal approach and requires training - the generator for each task.\\n\\n Work by Wellawatte et al. 9 present a model - agnostic counterfactual generator MMACE\\n\\n(Molecular Model Agnostic Counterfactual - Explanations) which does not require training\\n\\nor computing gradients. This - method firstly populates a local chemical space through ran-\\n\\ndom string - mutations of SELFIES106 molecular representations using the STONED algo-\\n\\nrithm.107 - Next, the labels (predictions) of the molecules in the local space are generated\\n\\nusing - the model that needs to be explained. Finally, the counterfactuals are identified - and\\n\\nsorted by their similarities \u2013 Tanimoto distance96 between ECFP4 - fingerprints.97 Unlike the\\n\\nCF-GNNExplainer104 and MEG105 methods, the MMACE - algorithm ensures that generated\\n\\nmolecules are valid, owing to the surjective - property of SELFIES. Additionally, the MMACE\\n\\nmethod can be applied to both - regression and classification models. However, like most XAI\\n\\nmethods for - molecular prediction, MMACE does not account for the chemical stability of\\n\\npredicted - counterfactuals. To circumvent this drawback, Wellawatte et al. 9 propose an-\\n\\nother - approach, which identift counterfactuals through a similarity search on the - PubChem\\n\\ndatabase.108\\n\\n\\n\\n\\n\\n 13Similarity - to adjacent fields\\n\\n\\nTangential examples to counterfactual explanations - are adversarial training and matched\\n\\nmolecular pairs. Adversarial perturbations - are used during training to deceive the model\\n\\nto expose the vulnerabilities - of a model109,110 whereas counterfactuals are applied post-hoc.\\n\\nTherefore, - the main difference between adversarial and counterfactual examples are in the\\n\\napplication, - although both are derived from the same optimization problem.100 Grabocka\\n\\net - al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich - improves model robustness via exposure to adversarial examples. While there - are\\n\\nconceptual disparities, we note that\\n\\n----\\n\\nQuestion: Are counterfactuals + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\nnal + molecule. The counterfactual indicates\\nstructural changes to ethyl benzoate + that would result in the model predicting the molecule\\nto not contain the + \u2018fruity\u2019 scent. The Tanimoto96 similarity between the counterfactual + and\\n2,4 decadienal is also provided. Republished with permission from authors.31\\n\\n\\n + \ The molecule 2,4-decadienal, which is known to have a \u2018fatty\u2019 scent, + is analyzed in Fig-\\n\\nure 5.142,143 The resulting counterfactual, which has + a shorter carbon chain and no carbonyl\\n\\ngroups, highlights the influence + of these structural features on the \u2018fatty\u2019 scent of 2,4 deca-\\n\\ndienal. + To generalize to other molecules, Seshadri et al. 31 applied the descriptor + attribution\\n\\nmethod to obtain global explanations for the scents. The global + explanation for the \u2018fatty\u2019\\n\\nscent was generated by gathering + chemical spaces around many \u2018fatty\u2019 scented molecules.\\n\\nThe resulting + natural language explanation is: \u201CThe molecular property \u201Cfatty scent\u201D + can\\n\\nbe explained by the presence of a heptanyl fragment, two CH2 groups + separated by four\\n\\n\\n 20bonds, and + a C=O double bond, as well as the lack of more than one or two O atoms.\u201D31\\n\\nThe + importance of a heptanyl fragment aligns with that reported in the literature, + as \u2018fatty\u2019\\n\\nmolecules often have a long carbon chain.144 Furthermore, + the importance of a C=O dou-\\n\\nble bond is supported by the findings reported + by Licon et al. 145, where in addition to a\\n\\n\u201Clarger carbon-chain skeleton\u201D, + they found that \u2018fatty\u2019 molecules also had \u201Caldehyde or acid\\n\\nfunctions\u201D.145 + For the \u2018pineapple\u2019 scent, the following natural language explanation + was ob-\\n\\ntained: \u201CThe molecular property \u201Cpineapple scent\u201D + can be explained by the presence of ester,\\n\\nethyl/ether O group, alkene/ether + O group, and C=O double bond, as well as the absence of\\n\\nan Aromatic atom.\u201D31 + Esters, such as ethyl 2-methylbutyrate, are present in many pineap-\\n\\nple + volatile compounds.146,147 The combination of a C=O double bond with an ether + could\\n\\nalso correspond to an ester group. Additionally, aldehydes and ketones, + which contain C=O\\n\\ndouble bonds, are also common in pineapple volatile compounds.146,148\\n\\n\\nDiscussion\\n\\n\\nWe + have shown two post-hoc XAI applications based on molecular counterfactual expla-\\n\\nnations9 + and descriptor explanations.10 These methods can be used to explain black-box\\n\\nmodels + whose input is a molecule. These two methods can be applied for both classification\\n\\nand + regression tasks. Note that the \u201Ccorrectness\u201D of the explanations + strongly depends on\\n\\nthe accuracy of the black-box model.\\n\\n A molecular + counterfactual is one with a minimal distance from a base molecular, but\\n\\nwith + contrasting chemical properties. In the above examples, we used Tanimoto similar-\\n\\nity96 + of ECFP4 fingreprints97 as distance, although this should be explored in the + future.\\n\\nCounterfactual explanations are useful because they are represented + as chemical structures\\n\\n(familiar to domain experts), sparse, and are actionable. + A few other popular examples of\\n\\ncounterfactual on graph methods are GNNExplainer, + MEG and CF-GNNExplainer.69,104,105\\n\\n The descriptor explanation method + developed by Gandhi and White 10 fits a self-explaining\\n\\n\\n\\n 21surrogate + model to explain the black-box model. This is similar to the GraphLIME87 method,\\n\\nalthough + we have the flexibility to use explanation features other than subgraphs. Futher-\\n\\nmore, + we show that natural language combined with chemical descriptor attributions + can\\n\\ncreate explanations useful for chemists, thus enhancing the accessibility + of DL in chemistry.\\n\\nLastly, we examined if XAI can be used beyond interpretation. + Work by Seshadri et al. 31 use\\n\\nMMACE and surrogate model explanations to + analyze the structure-property relationships\\n\\nof scent. They recovered known + structure-property relationships for molecular scent purely\\n\\nfrom explanations, + demonstrating the usefulness of a two step process: fit an accurate model\\n\\nand + then explain it.\\n\\n Choosing among the plethora of XAI methods described + here is still an open question.\\n\\nIt remains to be seen if there will ever + be a consensus benchmark, since this field sits on\\n\\nthe intersection of + human-machine interaction, machine learning, and philosophy (i.e., what\\n\\nconstitutes + an explanation?). Our current advice is to consider first the audience \u2013 + domain\\n\\nexperts or ML experts or non-experts \u2013 and what the explanations + should accomplish. Are\\n\\nthey meant to inform data selection or model building, + how a prediction is used, or how the\\n\\nfeatures can be changed to affect + the outcome. The second consideration is what access you\\n\\nhave to the underlying + model. The ability to have model derivatives or propagate gradients\\n\\nto + the input to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe + should seek to explain molecular property prediction models because users are + more\\n\\nlikely to trust explained predictions, and explanations can help assess + if the model is learning\\n\\nt\\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -3502,13 +3510,13 @@ interactions: connection: - keep-alive content-length: - - "6066" + - "6376" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3518,7 +3526,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3534,21 +3542,22 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNbxpBDL3zK6w5A+IjgZRjW6W9RKqqfqgqEZhZ7+6ks+PpeAaCovz3 - anYJkDSVekGreX7287PNQw9AmUItQOkao268Hbzd35T+ZvRp90M+fv/6Y7Sd8LfPzfvZh2uc/Vb9 - zODNHen4xBpqbrylaNh1sA6EkXLW8fxyOp/MLqfzFmi4IJtplY+DCx5MRpOLwXg8mIwOxJqNJlEL - +NkDAHhof7NEV9C9WsCo//TSkAhWpBbHIAAV2OYXhSJGIrqo+idQs4vkWtXr9fpO2C3dw9IBLJWk - psGwX6oFLNU7Ti5SKFHHhBbo3lt0mLsTwECAOn/jxhKgQKxpDz7w1hQEljXaPhiXi2saWNrSiwyx - xgiSqookwq42uoaSMKZAAhodbAjQRgpUQGTQNbqKchHgFDU3NIRrDkD3mC3PpUDX1BiJYd/vwo2r - AKHeF4F9zRujoUyu02yhCpx8ZiE0bEknS7nOMd5Yow9BWY1xeZZCIGzTxlgT90P4Uhs5utC+AVrL - O4EkFCTnS66gkE0ooOYdiCdtSqMP/UgW8KxrS9j2W5iypEAugg9UGN15xuGpexkuVb+bWSBL2+zy - SjQHyrMbj5bucenW6/X53AOVSTCvnUvWngHoHMduLHnjbg/I43HHLFc+8EZeUFVpnJF6lZ1hl/dJ - InvVoo89gNt2l9Oz9VQ+cOPjKvIvasuNJ+OLLqE6nc8JfjM9gJEj2jPadDTvv5JxVVBEY+XsHpRG - XVNx4p6OB1Nh+AzonfX9t5zXcne9G1f9T/oToDX5SMXqNN3XwgLlv5d/hR19bgUrobA1mlbRUMiz - KKjEZLvLV7KXSM2qNK6i4IPpzr/0Kz2bz2dX5exqpHqPvT8AAAD//wMAEWKifwcFAAA= + H4sIAAAAAAAAA3RUwW7jRgy9+yuIOduB7Wid1tdgD8UCbYEWaLH1wqBHlMTuaGaWpLJxg/x7MVJi + Oe3uRYDm8ZHvkZx5WgA4rt0enO/QfJ/D6n7zoX4cHn765eMX3//52x+797uP8ecvH/DXf+7fu2Vh + pNPf5O2VdeNTnwMZpzjBXgiNStbN3buqur2929yNQJ9qCoXWZltVabVdb6vVZrParl+IXWJP6vbw + 1wIA4Gn8Fomxpke3h/Xy9aQnVWzJ7S9BAE5SKCcOVVkNo7nlDPoUjeKo+ukQAQ5Oh75HOR/cHg7u + Pg3RSBr0NmBQQCGoSb3wiWpABfTFIZ4CAUewjoAePUm2G/i9o/NI6FMgPwQUUJPB2yCk8JWtg54j + 9xigHoV5gkZSDwgn1AuN4DTYFF7ECqpxbMF31LPHAFlSJjEmHUtqUZADRizCJsVCWUgp2qT5Qp3l + LOFrx74boxvsOTAKWII69cixZCQxXQLGeozRjKI0/V46MNZ/9Q8dt13gtjMd2zIYB7YzpAb8m6a+ + lTsVC8ixmDwF9J9Xp/QI45LoWNA6YoGcytwYAzRJIEuRUTxhzoH9nG00qybnm4NbThMWCvRQ2n1U + n4SmSW/WF3xQqo/cY0tasAaD0iE+X6+NUDMolq2NQwhXAMaYbKpeFvbTC/J8WdGQ2izppP+huoYj + a3cUQk2xrKNaym5EnxcAn8arMLzZbpcl9dmOlj7TWG5zW+2mhG6+fTP8490LaMkwXNGq6nb5jYzH + mgw56NV1ch59R/UVd/vDfP1wqDnN2HpxZf3/ir6VfrLPsb3K8t30M+A9ZaP6mIVq9m9dz2FC5YH6 + Xtil1aNgpyQP7OloTFLGUVODQ5jeDqdnNeqPDceWJAtPD0iTj9vNjnbvKl/VbvG8+BcAAP//AwBN + vdjWSQUAAA== headers: CF-RAY: - - 96665ceb39a8fa86-SJC + - 96a9ce0b6a7aa63b-SJC Connection: - keep-alive Content-Encoding: @@ -3556,9 +3565,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:38 GMT + - Tue, 05 Aug 2025 22:41:58 GMT Server: - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -3572,15 +3583,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "982" + - "1308" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "985" + - "1310" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -3588,13 +3597,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998548" + - "29998471" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - req_c6a5a5a859f388af82eb3aaeb2041b8f + - req_4d9f23724aca4d78b8849060984701d8 status: code: 200 message: OK @@ -3602,80 +3611,84 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 16-20: Geemi P. Wellawatte, Heta + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 9-12: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\nssion - challenge and is\\n\\nimportant for chemical process design, drug design and - crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented - and trained an RNN model in Keras to predict solubilities (log\\n\\nmolarity) - of small molecules.127 The AqSolDB curated database137 was used to train the\\n\\nRNN - model.\\n\\n In this task, counterfactuals are based on equation 6. Figure - 3 illustrates the generated\\n\\nlocal chemical space and the top four counterfactuals. - Based on the counterfactuals, we ob-\\n\\nserve that the modifications to the - ester group and other heteroatoms play an important role\\n\\nin solubility. - These findings align with known experimental and basic chemical intuition.134\\n\\nFigure - 4 shows a quantitative measurement of how substructures are contributing to - the pre-\\n\\n\\n\\n 16Figure 2: Descriptor - explanations along with natural language explanation obtained for BBB\\npermeability - of Alprozolam molecule. The green and red bars show descriptors that influ-\\nence - predictions positively and negatively, respectively. Dotted yellow lines show - significance\\nthreshold (\u03B1 = 0.05) for the t-statistic. Molecular descriptors - show molecule-level proper-\\nties that are important for the prediction. ECFP - and MACCS descriptors indicate which\\nsubstructures influence model predictions. - MACCS explanations lead to text explanations\\nas shown. Republished from Ref.10 - with permission from authors. SMARTS annotations for\\nMACCS descriptors were - created using SMARTSviewer (smartsview.zbh.uni-hamburg.de,\\nCopyright: ZBH, - Center for Bioinformatics Hamburg) developed by Schomburg et al. 132.\\n\\n\\n\\n\\n\\n - \ 17diction. For example, we see that adding - acidic and basic groups as well as hydrogen bond\\n\\nacceptors, increases solubility. - Substructure importance from ECFP97 and MACCS138 de-\\n\\nscriptors indicate - that adding heteroatoms increases solubility, while adding rings structures\\n\\nmakes - the molecule less soluble. Although these are established hypotheses, it is - interesting\\n\\nto see they can be derived purely from the data via DL and - XAI.\\n\\n\\n\\n\\n\\nFigure 3: Generated chemical space for solubility prediction - using the RNN model. The\\nchemical space is a 2D projection of the pairwise - Tanimoto similarities of the local coun-\\nterfactuals. Each data point is colored - by solubility. Top 4 counterfactuals are shown here.\\nRepublished from Ref.9 - with permission from the Royal Society of Chemistry.\\n\\n\\n\\nGeneralizing - XAI \u2013 interpreting scent-structure relationships\\n\\n\\nIn this example, - we show how non-local structure-property relationships can be learned with\\n\\nXAI - across multiple molecules. Molecular scent prediction is a multi-label classification - task\\n\\nbecause a molecule can be described by more than one scent. For example, - the molecule\\n\\njasmone can be described as having \u2018jasmine,\u2019 \u2018woody,\u2019 - \u2018floral,\u2019 and \u2019herbal\u2019 scents.139 The\\n\\nscent-structure - relationship is not very well understood,140 although some relationships are\\n\\nknown. - \ For example, molecules with an ester functional group are often associated - with\\n\\n\\n 18Figure 4: Descriptor explanations - for solubility prediction model. The green and red bars\\nshow descriptors that - influence predictions positively and negatively, respectively. Dotted\\nyellow - lines show significance threshold (\u03B1 = 0.05) for the t-statistic. The MACCS - and\\nECFP descriptors indicate which substructures influence model predictions. - MACCS sub-\\nstructures may either be present in the molecule as is or may represent - a modification. ECFP\\nfingerprints are substructures in the molecule that affect - the prediction. MACCS descriptor\\nare used to obtain text explanations as shown. - Republished from Ref.10 with permission from\\nauthors. SMARTS annotations for - MACCS descriptors were created using SMARTSviewer\\n(smartsview.zbh.uni-hamburg.de, - Copyright: ZBH, Center for Bioinformatics Hamburg) de-\\nveloped by Schomburg - et al. 132.\\n\\n\\n\\n\\n\\n 19the \u2018fruity\u2019 - scent. There are some exceptions though, like tert-amyl acetate which has a\\n\\n\u2018camphoraceous\u2019 - rather than \u2018fruity\u2019 scent.140,141\\n\\n In Seshadri et al. 31, - we trained a GNN model to predict the scent of molecules and utilized\\n\\ncounterfactuals9 - and descriptor explanations10 to quantify scent-structure relationships. The\\n\\nMMACE - method was modified to account for the multi-label aspect of scent prediction. - This\\n\\nmodification defines molecules that differed from the instance molecule - by only the selected\\n\\nscent as counterfactuals. For instance, counterfactuals - of the jasmone molecule would be false\\n\\nfor the \u2018jasmine\u2019 scent - but would still be positive for \u2018woody,\u2019 \u2018floral\u2019 and \u2018herbal\u2019 - scents.\\n\\n\\n\\n\\n\\nFigure 5: Counterfactual for the 2,4 decadienal molecule. - \ The counterfactual indicates\\nstructural changes to ethyl benzoate that would - result in the model predicting the molecule\\nto not contain the \u2018fruity\u2019 - scent. The Tanimoto96 similarity between the counterfactual and\\n2,4 decadienal - is also\\n\\n----\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\nthat + gives subgraph importance for small molecule activity prediction. On the\\n\\nother + hand, similarity maps compare model predictions for two or more molecules based + on\\n\\ntheir chemical fingerprints.83 Similarity maps provide atomic weights + or predicted probabil-\\n\\n\\n 9ity difference + between the molecules by removing one atom at a time. These weights can\\n\\nthen + be used to color the molecular graph and give a visual presentation. ChemInformatics\\n\\nModel + Explorer (CIME) is an interactive web based toolkit which allows visualization + and\\n\\ncomparison of different explanation methods for molecular property + prediction models.84\\n\\n\\nSurrogate models\\n\\n\\nOne approach to explain + black box predictions is to fit a self-explaining or interpretable\\n\\nmodel + to the black box model, in the vicinity of one or a few specific examples. These + are\\n\\nknown as surrogate models. Generally, one model per explanation is + trained. However, if we\\n\\ncould find one surrogate model that explained the + whole DL model, then we would simply\\n\\nhave a globally accurate interpretable + model. This means that the black-box model is no\\n\\nlonger needed.79 In the + work by White 79, a weighted least squares linear model is used as\\n\\nthe + surrogate model. This model provides natural language based descriptor explanations + by\\n\\nreplacing input features with chemically interpretable descriptors. + This approach is similar\\n\\nto the concept-based explanations approach used + by McGrath et al. 85, where human under-\\n\\nstandable concepts were used in + place of input features in acquisition of chess knowledge in\\n\\nAlphaZero. + Any of the self-explaining models detailed in the Self-explaining models section\\n\\ncan + be used as a surrogate model.\\n\\n The most commonly used surrogate model + based method is Locally Interpretable Model\\n\\nExplanations (LIME).35 LIME + creates perturbations around the example of interest and fits\\n\\nan interpretable + model to these local perturbations. Ribeiro et al. 35 mathematically define\\n\\nan + explanation \u03BE for an example \u20D7x using Equation 4.\\n\\n\\n\\n \u03BE(\u20D7x) + = arg min L(f, g, \u03C0x) + \u2126(g) (4)\\n g\u2208G\\n\\n + \ Here f is the black box model and g \u2208G is the interpretable explanation + model. G is\\n\\na class of potential interpretable models (e.g.: linear models). + \u03C0x is a similarity measure\\n\\n\\n\\n 10between + original input \u20D7x and it\u2019s perturbed input \u20D7x\u2032. In context + of molecular data, this can\\n\\nbe a chemical similarity metric like Tanimoto86 + similarity between fingerprints. The goal for\\n\\nLIME is to minimize the loss, + L, such that f is closely approximated by g. \u2126is a parameter\\n\\nthat + controls the complexity (sparsity) of g. Ribeiro et al. 35 termed the agreement + (how low\\n\\nthe loss is) between f and g as the \u201Cfidelity\u201D.\\n\\n + \ GraphLIME87 and LIMEtree88 are modifications to LIME as applicable to graph + neural\\n\\nnetworks and regression trees, respectively. LIME has been used + in chemistry previously,\\n\\nsuch as Whitmore et al. 89 who used LIME to explain + octane number predictions of molecules\\n\\nfrom a random forest classifier. + Mehdi and Tiwary 90 used LIME to explain thermodynamic\\n\\ncontributions of + features. Gandhi and White 10 use an approach similar to GraphLIME,\\n\\nbut + use chemistry specific fragmentation and descriptors to explain molecular property + pre-\\n\\ndiction. Some examples are highlighted in the Applications section. + \ In recent work by\\n\\nMehdi and Tiwary 90, a thermodynamic-based surrogate + model approach was used to inter-\\n\\npret black-box models. The authors define + an \u201Cinterpretation free energy\u201D which can be\\n\\nachieved by minimizing + the surrogate model\u2019s uncertainty and maximizing simplicity.\\n\\n\\nCounterfactual + explanations\\n\\n\\nCounterfactual explanations can be found in many fields + such as statistics, mathematics and\\n\\nphilosophy.91\u201394 According to + Woodward and Hitchcock 92, a counterfactual is an example\\n\\nwith minimum + deviation from the initial instance but with a contrasting outcome. They\\n\\ncan + be used to answer the question, \u201Cwhich smallest change could alter the + outcome of an\\n\\ninstance of interest?\u201D While the difference between + the two instances is based on the exis-\\n\\ntence of similar worlds in philosophy,95 + a distance metric based on molecular similarity is\\n\\nemployed in XAI for + chemistry. For example, in the work by Wellawatte et al. 9 distance\\n\\nbetween + two molecules is defined as the Tanimoto distance96 between ECFP4 fingerprints.97\\n\\nAdditionally, + Mohapatra et al. 98 introduced a chemistry-informed graph representation for\\n\\ncomputing + macromolecular similarity. Contrastive explanations are peripheral to counterfac-\\n\\n\\n + \ 11tual explanations. Unlike the counterfactual + approach, contrastive approach employ a dual\\n\\noptimization method, which + works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. + Contrastive explanations can interpret the model by identifying contribution + of\\n\\npresence \\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? + [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3684,13 +3697,13 @@ interactions: connection: - keep-alive content-length: - - "6080" + - "6353" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3700,7 +3713,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3716,23 +3729,23 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAA4xUwW4bOQy9+ysIncdB4qZ24tvuBr0U7aHtntaFLWs4M2w1oiBScbxB/n2hmSae - ulnsXgYDPT3y8VHk4wzAUG3WYFxn1fXRz38/fmji4f2fnz8d2uNHf7P8FFd8R/63v+8Od6YqDN5/ - Q6fPrAvHffSoxGGEXUKrWKJerd6+WS2Wb9+sBqDnGn2htVHn1zxfXC6u51dX88XlD2LH5FDMGv6a - AQA8Dt8iMdT4YNZwWT2f9ChiWzTrl0sAJrEvJ8aKkKgNaqoT6DgohkH1brf7Jhw24XETADZGct/b - dNyYNWzMlw4BHxymqFCTuCyCAtohZEHgBhznoJga6zRbL0ABevbosrcJYsKaXPEChmqlgmiT0oD6 - IzScQNjnPXnSI9hQgzgMOiFewB9nGWxCaDFgKraCMuBD9JwQPDvrwXXYU/mRaB0OManGoNQcQTRl - pzlZX/RQQ86WHKUgq0Ch8RmDQ4iJIyYlFPD0HV/VeAHvOAE+2NLu6jweA4pigjZxjjKwOlRMbJV7 - gQMmhIZzGAqgPlqnkywVWE9toNDCgbQ71URBM422fKaeBherX3owRM8yuiOa6+Moef5cP0JCP0rt - KEoF0vGhZOv4MDXJdTa0KOBsAOtLPeftkQv40qEgNBRqCq2A5LZF0dHSc2Ux8T3VCHYg271HoCDU - diqwP740qkiRiK44OnlO/9Gzk6aNqca3nNDjvQ0Ot+I4YXnTt5vwtAm73W46DgmbLLZMY8jeTwAb - AuuYsAzi1x/I08voeW5j4r2cUU1DgaTbJrTCoYyZKEczoE8zgK/DiOefptbExH3UrfJ3HNJdLW4X - Y0Bz2ioTeFwkAEZZrZ8A14vb6pWQ2xrVkpfJnjDOug7rE/e0VGyuiSfAbFL4r3peiz0WT6H9P+FP - gHMYFevtqaOvXUtY1u6/XXsxehBsBNM9OdwqYSrNqLGx2Y8b0chRFPttQ6HFFBONa7GJW7dcrZY3 - zfLm0syeZv8AAAD//wMADF3tyx8GAAA= + H4sIAAAAAAAAAwAAAP//dFRNb9tIDL37VxBztgPbcZLW1162KFAU2C56qAubnqEkpvOhDinHRpD/ + Xoys2uo2veigRz7yvSH5PAEw7MwajG1QbWj97N3igzvS8b9EXxb/iKs+fmo+/fv4sf3RuIejmZaM + tH8kq7+ybmwKrSflFM+wzYRKhXXxcLda3d4+LB56ICRHvqTVrc5WabacL1ezxWK2nA+JTWJLYtbw + dQIA8Nx/S4vR0dGsYT799SeQCNZk1pcgAJOTL38MirAoRjXTK2hTVIp917vd7lFS3MTnTQTYGOlC + wHzamDVszLvURaVcodUOPdCx9RixqBPATOBIbOY9OUABOmLRLvDE2kDgyAE9ODpwnwFVTgG0IUiZ + a47ogWPpzBLsOz1nIZTWMopyrCF1alOgG/jc0AmQA2gCjPJEuSf60ZH01KmCpwYVJKD3JAq2wVgT + 2NR5B+h1SBgISzzGa/lUARedJHoD72Mf2lt01IKF5Ml2HjO0mRzbvmT/fjItJUYWCXRCgOB4oA6k + me0UpLNNMalQf8bIIWm6RE2LrkAoXaZRNeHAHjPrqXdA6M8HwL4Z3HsayE/Q5nRgR0Ud141KkZZA + WrJcsR2cKbGogz+e0PXOguOqokxRx0oH06YQ8Ht5FW0oFJlV56FKGbroKBchrqAYHbSpTBej96fi + E1engvSOwZ4aPHDKNxszPU9cJk+HYsNWbMp0nry3F7gTclsOWJMUqEIvtIkvm7jb7cYznanqBMtK + xc77EYAxJj17Vrbp24C8XPbHp7rNaS//SzUVR5ZmmwklxbIroqk1PfoyAfjW72n32+qZNqfQ6lbT + d+rLLW7n92dCcz0NI3j5dkA1KfoRsLq9m75CuXWkyF5Gy24s2obcmPTN9Thg5zhdsflkpP3Pll6j + P+vnWI9Y/kp/BaylVsltr5P0Wlimcj7/Fnbxum/YCOUDW9oqUy7v4ajCzp8vm5GTKIVtxbGm3GY+ + n7eq3S4X93R/t7IrZyYvk58AAAD//wMAJHbCdecFAAA= headers: CF-RAY: - - 96665ceb6c45f555-SJC + - 96a9ce0b692ceb20-SJC Connection: - keep-alive Content-Encoding: @@ -3740,7 +3753,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:39 GMT + - Tue, 05 Aug 2025 22:41:58 GMT Server: - cloudflare Strict-Transport-Security: @@ -3758,13 +3771,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "1587" + - "1355" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "1591" + - "1358" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -3772,13 +3785,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998541" + - "29998478" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - 27351c35-5230-407e-a392-137197c64966 + - req_3b990203f4834b3c89a81cf7b7b34430 status: code: 200 message: OK @@ -3786,80 +3799,81 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 20-22: Geemi P. Wellawatte, Heta + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 12-14: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\nnal - molecule. The counterfactual indicates\\nstructural changes to ethyl benzoate - that would result in the model predicting the molecule\\nto not contain the - \u2018fruity\u2019 scent. The Tanimoto96 similarity between the counterfactual - and\\n2,4 decadienal is also provided. Republished with permission from authors.31\\n\\n\\n - \ The molecule 2,4-decadienal, which is known to have a \u2018fatty\u2019 scent, - is analyzed in Fig-\\n\\nure 5.142,143 The resulting counterfactual, which has - a shorter carbon chain and no carbonyl\\n\\ngroups, highlights the influence - of these structural features on the \u2018fatty\u2019 scent of 2,4 deca-\\n\\ndienal. - To generalize to other molecules, Seshadri et al. 31 applied the descriptor - attribution\\n\\nmethod to obtain global explanations for the scents. The global - explanation for the \u2018fatty\u2019\\n\\nscent was generated by gathering - chemical spaces around many \u2018fatty\u2019 scented molecules.\\n\\nThe resulting - natural language explanation is: \u201CThe molecular property \u201Cfatty scent\u201D - can\\n\\nbe explained by the presence of a heptanyl fragment, two CH2 groups - separated by four\\n\\n\\n 20bonds, and - a C=O double bond, as well as the lack of more than one or two O atoms.\u201D31\\n\\nThe - importance of a heptanyl fragment aligns with that reported in the literature, - as \u2018fatty\u2019\\n\\nmolecules often have a long carbon chain.144 Furthermore, - the importance of a C=O dou-\\n\\nble bond is supported by the findings reported - by Licon et al. 145, where in addition to a\\n\\n\u201Clarger carbon-chain skeleton\u201D, - they found that \u2018fatty\u2019 molecules also had \u201Caldehyde or acid\\n\\nfunctions\u201D.145 - For the \u2018pineapple\u2019 scent, the following natural language explanation - was ob-\\n\\ntained: \u201CThe molecular property \u201Cpineapple scent\u201D - can be explained by the presence of ester,\\n\\nethyl/ether O group, alkene/ether - O group, and C=O double bond, as well as the absence of\\n\\nan Aromatic atom.\u201D31 - Esters, such as ethyl 2-methylbutyrate, are present in many pineap-\\n\\nple - volatile compounds.146,147 The combination of a C=O double bond with an ether - could\\n\\nalso correspond to an ester group. Additionally, aldehydes and ketones, - which contain C=O\\n\\ndouble bonds, are also common in pineapple volatile compounds.146,148\\n\\n\\nDiscussion\\n\\n\\nWe - have shown two post-hoc XAI applications based on molecular counterfactual expla-\\n\\nnations9 - and descriptor explanations.10 These methods can be used to explain black-box\\n\\nmodels - whose input is a molecule. These two methods can be applied for both classification\\n\\nand - regression tasks. Note that the \u201Ccorrectness\u201D of the explanations - strongly depends on\\n\\nthe accuracy of the black-box model.\\n\\n A molecular - counterfactual is one with a minimal distance from a base molecular, but\\n\\nwith - contrasting chemical properties. In the above examples, we used Tanimoto similar-\\n\\nity96 - of ECFP4 fingreprints97 as distance, although this should be explored in the - future.\\n\\nCounterfactual explanations are useful because they are represented - as chemical structures\\n\\n(familiar to domain experts), sparse, and are actionable. - A few other popular examples of\\n\\ncounterfactual on graph methods are GNNExplainer, - MEG and CF-GNNExplainer.69,104,105\\n\\n The descriptor explanation method - developed by Gandhi and White 10 fits a self-explaining\\n\\n\\n\\n 21surrogate - model to explain the black-box model. This is similar to the GraphLIME87 method,\\n\\nalthough - we have the flexibility to use explanation features other than subgraphs. Futher-\\n\\nmore, - we show that natural language combined with chemical descriptor attributions - can\\n\\ncreate explanations useful for chemists, thus enhancing the accessibility - of DL in chemistry.\\n\\nLastly, we examined if XAI can be used beyond interpretation. - Work by Seshadri et al. 31 use\\n\\nMMACE and surrogate model explanations to - analyze the structure-property relationships\\n\\nof scent. They recovered known - structure-property relationships for molecular scent purely\\n\\nfrom explanations, - demonstrating the usefulness of a two step process: fit an accurate model\\n\\nand - then explain it.\\n\\n Choosing among the plethora of XAI methods described - here is still an open question.\\n\\nIt remains to be seen if there will ever - be a consensus benchmark, since this field sits on\\n\\nthe intersection of - human-machine interaction, machine learning, and philosophy (i.e., what\\n\\nconstitutes - an explanation?). Our current advice is to consider first the audience \u2013 - domain\\n\\nexperts or ML experts or non-experts \u2013 and what the explanations - should accomplish. Are\\n\\nthey meant to inform data selection or model building, - how a prediction is used, or how the\\n\\nfeatures can be changed to affect - the outcome. The second consideration is what access you\\n\\nhave to the underlying - model. The ability to have model derivatives or propagate gradients\\n\\nto - the input to models informs the XAI method.\\n\\n\\nConclusion and outlook\\n\\n\\nWe - should seek to explain molecular property prediction models because users are - more\\n\\nlikely to trust explained predictions, and explanations can help assess - if the model is learning\\n\\nt\\n\\n----\\n\\nQuestion: Are counterfactuals - actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\nnterfactual + approach, contrastive approach employ a dual\\n\\noptimization method, which + works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. + Contrastive explanations can interpret the model by identifying contribution + of\\n\\npresence and absence of subsets of features towards a certain prediction.36,99\\n\\n + \ A counterfactual x\u2032 of an instance x is one with a dissimilar prediction + \u02C6f(x) in classi-\\n\\nfication tasks. As shown in equation 5, counterfactual + generation can be thought of as a\\n\\nconstrained optimization problem which + minimizes the vector distance d(x, x\u2032) between the\\n\\nfeatures.9,100\\n\\n\\n + \ minimize d(x, x\u2032)\\n (5)\\n + \ such that \u02C6f(x) \u0338= \u02C6f(x\u2032)\\n\\n + \ For regression tasks, equation 6 adapted from equation 5 can be used. Here, + a counter-\\n\\nfactual is one with a defined increase or decrease in the prediction.\\n\\n\\n + \ minimize d(x, x\u2032)\\n (6)\\n + \ such that \u02C6f(x) \u2212\u02C6f(x\u2032) \u2265\u2206\\n\\n + \ Counterfactuals explanations have become a useful tool for XAI in chemistry, + as they\\n\\nprovide intuitive understanding of predictions and are able to + uncover spurious relationships\\n\\nin training data.101 Counterfactuals create + local (instance-level), actionable explanations.\\n\\nActionability of an explanation + suggest which features can be altered to change the outcome.\\n\\nFor example, + changing a hydrophobic functional group in a molecule to a hydrophilic group\\n\\nto + increase solubility.\\n\\n Counterfactual generation is a demanding task as + it requires gradient optimization over\\n\\ndiscrete features that represents + a molecule. Recent work by Fu et al. 102 and Shen et al. 103\\n\\npresent two + techniques which allow continuous gradient-based optimization. Although, these\\n\\nmethodologies + are shown to circumvent the issue of discrete molecular optimization, counter-\\n\\nfactual + explanation based model interpretation still remains unexplored compared to + other\\n\\n\\n\\n 12post-hoc methods.\\n\\n + \ CF-GNNExplainer104 is a counterfactual explanation generating method based + on GN-\\n\\nNExplainer69 for graph data. This method generate counterfactuals + by perturbing the input\\n\\ndata (removing edges in the graph), and keeping + account of perturbations which lead to\\n\\nchanges in the output. However, + this method is only applicable to graph-based models\\n\\nand can generate infeasible + molecular structures. Another related work by Numeroso and\\n\\nBacciu 105 focus + on generating counterfactual explanations for deep graph networks. Their\\n\\nmethod + MEG (Molecular counterfactual Explanation Generator) uses a reinforcement learn-\\n\\ning + based generator to create molecular counterfactuals (molecular graphs). While + this\\n\\nmethod is able to generate counterfactuals through a multi-objective + reinforcement learner,\\n\\nthis is not a universal approach and requires training + the generator for each task.\\n\\n Work by Wellawatte et al. 9 present a model + agnostic counterfactual generator MMACE\\n\\n(Molecular Model Agnostic Counterfactual + Explanations) which does not require training\\n\\nor computing gradients. This + method firstly populates a local chemical space through ran-\\n\\ndom string + mutations of SELFIES106 molecular representations using the STONED algo-\\n\\nrithm.107 + Next, the labels (predictions) of the molecules in the local space are generated\\n\\nusing + the model that needs to be explained. Finally, the counterfactuals are identified + and\\n\\nsorted by their similarities \u2013 Tanimoto distance96 between ECFP4 + fingerprints.97 Unlike the\\n\\nCF-GNNExplainer104 and MEG105 methods, the MMACE + algorithm ensures that generated\\n\\nmolecules are valid, owing to the surjective + property of SELFIES. Additionally, the MMACE\\n\\nmethod can be applied to both + regression and classification models. However, like most XAI\\n\\nmethods for + molecular prediction, MMACE does not account for the chemical stability of\\n\\npredicted + counterfactuals. To circumvent this drawback, Wellawatte et al. 9 propose an-\\n\\nother + approach, which identift counterfactuals through a similarity search on the + PubChem\\n\\ndatabase.108\\n\\n\\n\\n\\n\\n 13Similarity + to adjacent fields\\n\\n\\nTangential examples to counterfactual explanations + are adversarial training and matched\\n\\nmolecular pairs. Adversarial perturbations + are used during training to deceive the model\\n\\nto expose the vulnerabilities + of a model109,110 whereas counterfactuals are applied post-hoc.\\n\\nTherefore, + the main difference between adversarial and counterfactual examples are in the\\n\\napplication, + although both are derived from the same optimization problem.100 Grabocka\\n\\net + al. 111 have developed a method named Adversarial Training on EXplanations (ATEX)\\n\\nwhich + improves model robustness via exposure to adversarial examples. While there + are\\n\\nconceptual disparities, we note that\\n\\n------------\\n\\nQuestion: + Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -3868,13 +3882,13 @@ interactions: connection: - keep-alive content-length: - - "6100" + - "6342" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -3884,7 +3898,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -3900,22 +3914,22 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFTLbhtJDLzrK4g+S4YkO+tEt2QPC2ywyCVYbBAZAqebo2HcLzQ5jrSG - /z3oGVmaJA6QiwBNkcUqPvpxBmDYmQ0Y26HakP3i3fGfNvu3n/z7T+HDf3F10/4f+r8e3r3/+9/0 - xcxrRmq+kNXnrCubQvaknOII20KoVFlXt6+ub9d/vLq+HYCQHPmats+6uEmL9XJ9s1itFuvlKbFL - bEnMBj7PAAAeh98qMTo6mA0s589fAongnszmHARgSvL1i0ERFsWoZn4BbYpKcVD9uI0AWyN9CFiO - W7OBrfnYEdDBUskKjsX2IiSgHUEvBKmFkDzZ3mMBm/qoVFq02qMX4Ah0yB45ctxD49HeL5p0gMGu - QJvKJDmXlKnoEXIhx7Z2Ta7gzx8osRA4Elu4IQcogEMkNp6gIYtVk3Z0HAIL5UJCUcdQ21Fgix5E - S2+1LyTQYmDPWEATuBRwlExFZT5QSMYiNAeMrip8YEfTkhyF953KFXx8Luqo5TgWPJkjga+sHQSO - HNDXLipGS9CWFAChQaFzLDS9juF1LgVFa+/O0k9dYhpLgtJBoeN95wcd1TsX6JU967EOoI+OSq3n - Kk+1EZLj9lj//dR8JplDwPsKakdVXC7Vbi2tKflhZt/36Wpr5uPaFPL0UI3txKZCdX1Wy218mi5b - obYXrLsee+8nAMaYFIep1zW/OyFP58X2aZ9LauSHVNNyZOl2hVBSrEssmrIZ0KcZwN1wQP13N2Fy - SSHrTtM9DeVW69evR0JzudkJvLw5oZoU/QS4frOev0C5c6TIXiZXaCzajtwl93Ky2DtOE2A2Mf6z - npe4R/Mc979DfwGspazkdpeLeymsUH3UfhV2bvQg2AiVB7a0U6ZSh+Goxd6P742RoyiFXctxTyUX - Hh6dOszZ0+wbAAAA//8DAH8mwjByBQAA + H4sIAAAAAAAAAwAAAP//dFTfi9tGEH73XzHsUwv2Yfl8udZvRyA0FJpCW2ipgxjvjqTprXbU3Vn3 + zHH/e1jJsXVp8iLEfDPffPNrnxcAhp3ZgbEdqu0Hv3pb/eyePvx2eJf65uGXTeP+3Xa/uvYv+uOD + +8ksS4Qc/iGrn6NurPSDJ2UJE2wjoVJhre7vttvb2/vqfgR6ceRLWDvoaiurzXqzXVXVarM+B3bC + lpLZwd8LAIDn8VskBkdPZgfr5WdLTylhS2Z3cQIwUXyxGEyJk2JQs7yCVoJSGFU/7wPA3qTc9xhP + e7ODvXkrOSjFBq1m9AkwEqAtReHBE2AC7egEQ5QjOwIvFv0SOJQ8llaejuSBngaPAUtU8UeFlNuW + ksJ/HdsOGkLNkRJYDHAgQK8UyYEK2A5DSyUJSFYrPd3AO4lAT1i6W1KB7ajnpPG0BPuF3ELIwbFF + JejFcVN+Rx2eH2mi59ACQndyUYZODmyhyWGq0UMbJQ9FycWDPVuQQMXIoUw1ESTx+cCe9XQDv3ec + Lk0abdDjYynvlbrXbUHIiZrsQUV8qWpEeWrzw3v47s+H999DI3FeLhW4yOegmZWPBDk4iqX7rtil + gSGSY3tOEhzkYOVIsaBpyJElJ4jkJxkdD6kk14gciotDxZu9WU6rEcnTsQy2TlYiTStSrS94TuRq + 7rGlVLAGfaJ9eJnvW6QmJyzrHrL3MwBDEJ1UlE3/eEZeLrvtpR2iHNIXoabhwKmryxwklD1OKoMZ + 0ZcFwMfxhvKrszBDlH7QWuWRxnTV5n4zEZrr2c7g6oczqqLoZ8Dtj+fje01ZO1Jkn2aHaCzajtyc + 9G5zKQKzY7li68Ws9v9L+hr9VD+HdsbyTforYC0NSq6+rsnX3CKVp+1bbpdej4JNonhkS7UyxTIP + Rw1mP706Jp2SUl83HFqKQ+Tp6WmGelO9oTd3W7t1ZvGy+AQAAP//AwCCl3MsgwUAAA== headers: CF-RAY: - - 96665ceb6b2beb35-SJC + - 96a9ce0b6bd2cce4-SJC Connection: - keep-alive Content-Encoding: @@ -3923,11 +3937,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:39 GMT + - Tue, 05 Aug 2025 22:41:58 GMT Server: - cloudflare - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -3941,13 +3953,15 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "1754" + - "1369" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "1765" + - "1399" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -3955,13 +3969,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998540" + - "29998481" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - 802b946f-ebac-45d3-92cc-6c065a461c68 + - req_26e4d6bdd5c34c8eb494e20091c9c09c status: code: 200 message: OK @@ -3969,80 +3983,83 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 9-12: Geemi P. Wellawatte, Heta + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":[{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAw0AAADsCAIAAAC5c90NAAAACXBIWXMAABcSAAAXEgFnn9JSAACCkUlEQVR4nOydd1gUWbr/nbv33t195u7c3UnOzs7szuzsYiBnUYIgoqggipgwYwBUMIJ5DSAGDIgRE+acRhQDmDCgjmHMKGYUEyIGYERv/77b78/z1FQHOlQ13XA+f/B0F9WnTlW99b7f99QJtRQcDofD4XA4HHXU+r//+7+qrgOHw+FwOByOOcJ1EofD4XA4HI56uE7icDgcDofDUQ/XSRwOh8PhcDjq4TqJw+FwOBwORz1cJ3E4HA6Hw+Goh+skDofD4XA4HPVwncThcDgcDoejHq6TOBwOh8PhcNTDdRLHsrl582Zubq7BPz937tyVK1fo8+vXr48dO/b8+XODS8vLy/vpp58M/jmnqqioqMCtLywsNOznsBn8HPZDX2FRFy5cMLgy5eXlKO3JkycGl8CpKszKHaEy3B1JAtdJHHOntLR09uzZbdu2dXNza9SoUXh4+KxZs5j7+Ne//uXk5GRw4a1aterTpw99vnbtmpWV1cGDBw0ubciQIT4+PvSZQu/9+/cNLs0Y8Fxv3bo1JCTE1dU1LCxs9+7d2vfPz88fMWJEYGCgp6dnx44d09PT3759K9wBFycyMtLDw8PPz2/69OkvX76Us/qycPbs2aioKF9fXxcXF5zp4MGDDx8+TP/C6eDWr1mzxrCSYTP4OS4RfYVF4RoaXM8HDx6gtB9//JG+3rlzx5jQaySPHj0aOXIknjsvL6+xY8c+fvxY057Pnj3rro6FCxfSDitWrFC7Q1U9I4YBdzR37lyLcEeoDHNHwFLcEQxGrZ3AwGgH2OSePXumTZsWEREBl2uC+nOdxDFr4JWCg4NtbGzi4uJWrVo1b9682NhYeCKWJ23cuBH/Mrj8pKSkRYsW0WfjHRMiAXwTfabQywo3MUuXLsXRca3Wr1/ft29ffMaF0rQzAjMuKVxYamoqtAJ+hf0RHdkOSEyxQ9OmTXELUlJS7Ozs4OwgBE1yKtKwa9cunBTiEILc8uXLJ0+ejFDHYhLMLCYmJicnx7DCL126hJ/jMtJXI3USgi5KYxYOVWpM6DWGp0+fQh5BDSxbtiwtLQ3KwN/f/9WrV2p3pmoLwRXGNccFpx1ggaIdYHK2trYWpLnJHVlbWw8bNsz83REqw9wRqHJ3hDsOdzRgwAB8Xrdunaad4UVFduLo6Ijcpry8nHaANkIJ2IIrLxSC8sF1EsesQRaCR2LHjh3CjW/evNHkrI3BeMckpAp1EiIWwg/8C33FM96jRw8HBwf2YkgEKomqHjlyhG2JioqqU6dOSUkJfY2MjMTPHz58SF83b96M/Tdt2iTnSUhM48aNmzVrhjgn3KildcQYjNRJIqpQJ02cOBFmcPnyZfp64cIF3PfZs2fr+HOICfycmY0IWCkEx9ChQ6Wpq0kgd4RgL9xoEe5IUXU6idxRdHQ0iQ1yR8i1dHylCPuBFQkFH9KSO3fuKJQPGtdJHI4iOTkZj7eW5mIkH4ji7Gv37t0zMjIOHDiAQOXt7T1o0KBHjx7ByLEbstsmTZrEx8cLn8/Ro0fPnDmTPosc082bN0eNGtW6dWtPT8+WLVtOmzaN6QaAo+BY2DJp0iRfX9+uXbsqlC3G1A787NmzLl26oDTk39RoDFWxf/9+fGCtDsTu3buxUdrOKDgWDn306FG25dChQ9iiqbkbVwD/ffHiBdsyf/58bKEIhxhQv359YZZcUVHh5uYmvOxmDgwApwNj0LQDQh3uQnZ2Nn3FBcRXXBB6cxEcHEytcbBDqM+AgADYUmZmJvv5+fPnhe+PRDpp5cqVCAxQaTCkiIgIUasV2QYsFiaEq3rixAl6gYUPCqVFwbrq1avH3j5A7OJERGLl/fv3SNNx14y9Ur+GGTYDl6J58+a6/BZ5AmIhzlfTDngkcVPoNC2F1NRU1Dk/P1/TDrq4I2xfs2YNuSNIyaKiIra/dneE/7Zp00Z3d4TKMHeE/1qKOxIxb9487Hzx4kXVf3GdxOH8m7Vr1+IhSUpKEnWXYYg6BGDn8PDwwMDA9PT0BQsWODs7w7PAu4WGhq5atWrGjBlIYfv168f219IhYMmSJXB5aWlpSB/hlRDDQkJCEJDov9QGA/eHPAn7YGeFoH8StAW5VMSJNCUnT56Et8LRU1JShPWHuwwLC1N7auXl5fe08ssvv6j94fjx43FoYesRFA+24CzU7p+bm4v/wqvS17KyMlw0REQ62TNnzuC/uHrCn8ARe3l5qS3NPGnUqFGDBg0QbNT+V9Q/afr06fjauXNnWNe6det69uyJr5A7iEC4htgN5lS3bl3II9pfe/8kPz+/hIQE/Io66GDPXbt2sf/ia/v27RH8YJwICVeuXBH2T4J0g+C2sbFJ+wBuOuqABF2oa48dO4afZGVlqT07hD0tVsS6fYhAOoEyJ0yYINyIC4KNkJVaL/a/oSd3z549mnbAo4fraVkBiE4KWkTTo1epO4JchsYVuqO+ffuy/Y13R1FRUfhM7oj1T4I7wg91dEdA7amZzB0JwQnCSIKCgtT+l+skDuffIIAhecJD5e7uDheAjFmUWKg6poYNG7IWo507d2ILoj6TWfALderUYTtocUzv3r0THgiJrzArIscEFyDcR9iPW+17N+wAecFKvnTpEvbZvHmz2nP/6aefrLTCArOIgQMHOjo6CrfgiNh/1KhRavcHO3bsoB7ckH1IfKEM2OCvffv24besrYWgPkyaSjNDtm7dWq9ePdQZYQB3bfv27cJuMWp1Ert3uHoIb8IMGIEHV5jdfe06SWhI8LeQmDBItgU/RFHCl1Oiftyq793u3r0LG2a6FsTExOD2aeoxhvposSJNPWHxoOG/iKnCjXRlRI0QasF1hjDVFDvpFR50YaXlmBXMHUGmkDtiWpkwwB1hCzUyKfRxR5TbaHdHon7cOrojTR0ZJXdHunTBPn78uJUghRPBdRKH8/8pKytD7oW0DA8bPZBIylmQU3VMwjfZd+7cEXkHxHtsYf0utQ8wgTs7c+bM7g/gv5SoKT44JlH7RKU6iXwNOwSqihRT1GmGgQzsolZwZdT+EGek2qNFi2OC20L8Q3KJ6N6/f/9GjRoFBAQg46T/ImBbqfSToK6UakszW65cuTJy5MimTZtCZKDyuPJMi6jVScIXIoMGDcL+Qm8ZGhrKWgIqHe+GQHjgwAGyosGDB0OxsX9ZKfu3CneuVCcBCFmYLn1GPXHvtHQbwlOgxYo0vdQmWxWNAdRRJ9GjlJSUpGkHWL6WrkvmDJQfrkmVuCM8p+fOnRO6I/amVa07qlQnqbojnJSmXowmc0dCsA9sW1NPJq6TOBwx79+/R8aD7ATP2IgRI2ijqmMSJqkUcrZt28a2UEjTxTEhU/T29sYWX1/fNkqEjoYck8g1VKqTQFBQEPVgePPmDbzSxIkTjbgk6hk6dKiNjY1wS3l5OSozbtw4tfvTK0Iku/QVkQCu387OjsIYdSbYu3ev8CeQU8Jgb1ng1mzYsMHNzQ2nQKFFrU4S/kR4ZwkoIWY5WnQSjBbiDJoA1zM4OJj6lwgLx2ccTliyLjqJGvnOnj2Lz4sXL65bt67kmiMvLw+HgG0IN9KVYe0fmkhISFAN2ww8NTijXr16SVbXqgB39vLly+SOWNc3Wd1R48aNRe6IWY5ad1SpTlKouKOxY8caej00oskdDR8+XPsPX7x4gR+KsgghXCdxOOqBe2rSpImHhwd9VXVMQl8gCjkKnR0TjuLv79+2bdunT5/Sf6mtWKSTRHXTRSetX78e4RmRhkaNIRppOtMLFy74aUVTHJo6dSpKZjUHt27dEmafIqhLqXDL4cOHsf/WrVsVymYY1RMJCwsLDAzUVHOLgLqXpqenK+TUSVu2bLFSDthkL8WojzwrxzCdhNK8vLygwODAmzVrJuzjogp202JF0DRqf4WgC0MVvasdNmwYNmp6m0bgv9CgWkb84WpY6dyN18whd9SgQQP6Krc7YgqV3JFIJ4nqpotOErkjLfOjmswdMVavXm3163G4IrhO4nA0An/h4uJCn2VyTAUFBVa/HvoukguV6iREC+zAJtljvH792tnZGT6iffv22keP379/f5pWNA1LycrKwqG3b9/OtpAmOHbsmNr9kVPCzQm3kE6i8c9v377F1e7evTv7b0lJibW1tTHzxJgDOTk5rOuDfDpp3Lhx3t7ewh+KunZVqpNSU1NxtVUdNbbb29vTi5sDBw5oOVNoNS1WlJGRoemHwcHBEGHs0Pjg6enZqVMnLcdSKMdMWWnudQe6dOkCIaVdbFkQVeiO9NVJ2t1RSEiIltOU3B1VOl1Z69at8eywvuqqcJ3E4fwbuHhkn0KXCi9ct25dNmZNJsdEg+Hj4+PpX6hA165d9dJJwN3dXW2j8cSJE11dXa1U5oWSCtTWy8sLXo+6GhQXFzdt2hRZL3vYcUFQMZb/0VsS0Xs34XsT7FCnTp3jx48L9z916pQclZeJCRMm3Lhxg32FMKKJGyiBlk8nUcevu3fv0tejR4/CrvTSSRRU2CRGjEePHtWrVw+GhIppiSXGsHz5ctasCDZs2CAyWliRahNFr169HB0dNY2Jw6VAIXK8bjYBVeuO2FxTqEBERIS+OqlSd7R27Vo9roXOkDvCqVEvLvyFO/L19WUtrPv37xe6IwIGjyrNmjVLS8lcJ3E4/2bu3LlWyi63yGIRvP39/fEVOe69e/doB5kck+LDEGiojQEDBuBpHDZsmL46iSrfoEEDPz+/xYsXs+35+fnYDt+kqeej8Zw4ccLBwQHZf2RkJPwj0nfhaBTSAewiIOLShWX9uEUeCq6tTZs2iPcIgcHBwZX6LzPE1tYW1W7RogWsCKeJiwORwfqOyKeTYKguLi4wYNwISG3YanR0tF46CWm6h4cHLj5CCwxJOKUhFcUmvJYcRLKBAwdCB6Dm7du3x7Hi4uKEIQNb2EVglYekHjNmjKYyZ8yYgV9dvXpVpjrLCj3RuInkjmgUZJW4IwgLfXWSdneEJ0KO2TIJoTtCBeCOhOMEqfKipehoNgG1gwzwnFqpIOwvLzlcJ3HMHTzGq1atQtID5zt58uSdO3cK87lLly4hHWFfkd4J85LS0lJsEQ7Pefz4MbawARQ5OTns+USwxL/YHM14NPAVj9+kSZMyMjLoKyscH1Q7WODhF40Lu3DhAg1OEcqU169f29vba+oXIhXw3ampqbhocEOijreojPAiKJSdUXbt2oUzxf6zZ8/GVRWVVl5evnnz5nHjxuEWnD59WtaaywGuOW4NTg0niLNYsGDBrVu32H/fvn2LC8Jafej6CH+uemfh+pnlkFGxQU/YLpw+EeY3c+ZMHBeBCp9FliOyDYU6o0XJ2dnZZEjCicRSUlKoc4khV0Q3YPZ79uzBU4AHMCsrSxQvUB9ReCsoKMBGLZ3KcWU0zfNkEcAdrV69mrkjUfOSydzR+/fvhZaj1h2hMrq7I+E6RXKgxR1R5UWD2o4cOXLo0CG1ReE53a2CqsuSEK6TOBxTs3HjRivNo4E4HF2oqKjw8fGJjo6u6opwLBtyR6ovdjkMrpM4HNOB7HP27NlOTk4WtOgHx9woLCxMS0vr169f3bp1r1y5UtXV4Vgq3B3pCNdJHI7pGDlyZJs2beLi4oRzGHI4egFtBCvq2LGjllVBOJxKIXc0fPhw7o60w3USh8PhcDgcjnq4TuJwOBwOh8NRT43TSYWFhcIljuUbCcmRnJcvX544cWL37t3Z2dnFxcVVXR29KSkpSU9PHzFiRExMjC4riZoMVAZVEg1cUqW0tBSPjCVeeRF5eXlZWVkwpAsXLsg085CsnD59OikpafDgwZrWB60qUB8ta7oplEvR5eTk4MqfPHlSOHDPEkHssGh3hPqvXLly5MiRFueOYDk///wzHuHMzEzTPMI1Tie1atVKOOlCvXr1unfvnp+fX9X14mgDj/SYMWOsra3Zjatbt27fvn01LeEpLbAQ4Uy4BhMWFubm5obwhnMxZiw3vDOq9OzZM+OrRNBMLcJpXUQMGjSoefPmuOaqk/1YFgjSNOcNw8PDY9WqVSY4dEZGhnBOc4M5cuQIzXSFCGekWY4ePVp1gmZjGDJkCFudV0RZWVnPnj3JhNiVt9AJAsgd2djYsHOpU6dO7969a7I7kvDctbsjCCNEbeEjDJNjM3rIRE3UScHBwbS+8fnz55Hf29nZeXl5yTfjH8dIXr9+HRISUr9+/Xnz5t27d+/du3fPnz9HJtG2bVvRYuYyIYk4oCnmNmzYYHx94EGsdFizXXcq1Ul+fn6xsbE0+6Ll6qSdO3ciTsNsjh49ilCHrBQnjtNhawXKitqZAA0AUc3d3V2SHBrOUJc123VHi056+fJl69at169fT02Subm5TZo0QeZz+/ZtCStgAjS5o3bt2lmcO5KkPZLckWgOMGPQ7o7u3LmzcuVK7IPLjnuxY8cOWBFiuqxKpibqJNGiWrNnz7b6sPI2UV5e/tNPP1HjMJs7jgH3Ss2thw8fLiwsFP33yZMn2H7gwAFNi91w9IVWydi1a5doO26EMI345Zdfzpw5s2fPnqtXrwqjSEVFBdwZreBB4L/YUlJSQl/htSkZQuzEjTt16hTbmfbE0ceNG0cvakVzM8IS9u3bJ2qPpPdTqA8M6dixY0ianz17Riumbdy4Ef9i2Rv2xOFgS6i52lfA2OH06dO0Ay0EQS/vaPpaqhKOolBO4yZq/IcrFNYW54Irg+uTk5OjOu2kdp3ECrRcnfT48WN7e/sWLVqoZkSiiawePnyIW3bkyBHRxHe4iSJtyixH8WujunLlysGDB4XzWKIoWg2UvfEXmij2xBFhKkIrVSg7CZAbwQ4wM0QI/BC5e0BAgPDWK5Rrb6GE7Oxs4UGFQI7gv9iHVRgfmjVrFhkZSUXRgVB/NrU0gSphC1tigs4aQnPv3r1INUXvzrTopP9TItxC6+vROsQWhCZ3BMEkbFPB44+Yoos7UigfXqE7olsAhwArMsAdXb9+XVi4Ae4IvkW7O8IO5I6wG7kjFFipOxI2gRvvjhhjx47F/qqxWEK4TlIsWLBAKIf3799va2uLdMHFxQXb7ezshAs6njt3ztPTE9sdHR3pNRBb/AgPAK3lhJ/jV/Xq1UtOTq5pl1dy8HjjUrdp00b7brgvjRo1qlu3rrOzM24KMlf22KiuFUCLVLD1BGg9dmSE+EsNuQ0aNCBfQ3uqnR0fTziOiLtMv+rRowfzWbQWwaZNm3x8fOhXiB/CQsgCkX1aKyFLQ80Re4QnhVTJ1dUVJ4Ud8BdhHh6TmiWE0It8VQWDo7Pa5uXlubm5YR8UBduuU6dOYmIiM86aoJOWLVuGymt/0YNHeMSIEVbKNRxsbGxwa4SLTqguXUKWQ5/JVGbNmtWrVy9Va6FFJ4RQAgabobVHyJ/ABoSrp9EqFuy31J6neutpzRmUQGuzREREIJ6xQhCAUQi2w35wXuwOMmsnaLkM1UYvUePlxIkTYTw4EA6H7b6+vjAt4SXSpJNUoZVchQtomD8GuyMmoVTdkeLXy5vQXYZ7EbojSFKFzO5o+/btQneE0xRN8A1pCB+Cu0/uCDYAba26hIgWd8QaL1Xd0fjx4/V1R4z4+HhURtN6gpJQE3USe+8GMjIycMPCw8PZdcjNzYU0pqnoi4qKhg0bBtNhbiIoKCgsLIxyL3jV8+fPs2lMoYqwJwrEduQWpLJN0xJbjaHVEKdNm6ZlH6Qj7u7ubdu2pdt05swZfMWNpiRYF50E/9K8efOff/5ZoZzsHybRpUsXtr/qM4+sC55i8uTJFO3gGnBENlcbOSZIHBgDDIkavUSrNSmUy2iz3qyPHz9GoEIkY94NKTsOMXDgQFq4AF4AforaQtS+d9Ouk27evAlBTzkigiiFQ0hD+m9N0Em4vLie2sdtQOXQM4vnF1dp5MiR+MrEqy46CQkS/ACOgjsFSYEtbAETVQkCn9O5c2fkXRRacIvHjBkDU2QuBTaMAiGkCgoKUCZZAk5EpEUWLlxIGTkMHkaFnwiXxEHIRLRGHMVJ4euNGzfYOu2q790q1UkIt6yBBLlEKyWsvUQvnUQN+XhaddzfHNDFHeER9vDwELmjwMBATe5IoU4n4TIK3VG7du2EO+vijkSLD5I7Ki8v1+SOjhw5cvz4ceaO+vfvr9YdkaXBVmFR1GKk9r2bdp0kcke03LJe7gghGOEb13b+/PmomOpizNJSE3WSSP+GhoZqabLDXYTgxY2kr/A4EyZMUN3txYsXkLSi5yc2NjYgIEDS6tc4qH1Y+3t0Cm/C1mY8hNhCCy3popOsfr0K48yZMxGu2DsF1WceGRjUtnALsjHsRk6EHJPoJ6qOSQRcEqV97BCIoOzFihADdJIq8LxwhcK6VW+dhPuFhFvLDlC0Dg4OwomJEdiaNGnCQpQuOqlTp07sv+Q6UlNT6auqBEFKZvXrNzjwxr6+vmylLTgrlC969a+qk0RMmjTJy8uLPiPy4RDr169Xu6cBOkkEvTtjMVJ3nQT5iKxS2t5RJkAXd7R06VKRbti5c6cWd6RQp5OE6wMa7I6o75dp3JFeOkkVfd0Ra1avU6fO2LFjhe+F5aAm6iQofXqTmpeXB9vFFjhQZGxsHzz8cFWwjDZKIFfZLR88eDB839ChQ3EXhT2QyF9AQq0XEBUVhbto6jOsXujSiQGxDdFFuAX5EH6FhFWhm07CLaZsm6DGZBafRM884h/279atm/Bek1aDG1V8cEzHjh0TVknVMeHR27dvX1xcXIcOHcjSWK2QoMPMNC26bphOunr1akJCAqpNx0IAZi+ga4JOCgkJ0d5f+8aNGzi7devWCTeOGzcOjzA14+mik0QXB/9lt0BVgkBCYcuSJUuEhtSyZcuwsDDaAa4J90tUT1WdBGtHUX379qU727BhQ3YgMktNo9YN0ElQkxs2bEAGiMCGY9HgQdZApaNOunjxoru7O0oQvh+0CHRxR3D7kBTCLSUlJVrckUKdTtLdHcGNQHEa744UyhZug92RvjrJSHeES3r37t0zZ86ghjh9hADej1tKVPsnXb9+HXeFGcG8efPwFY6A+S9bW1t2y1+9epWSksKGFuM204vnHTt24CsUWHcVTHt+1Q16ZoTvEVTBDRV5Z2HQ0rF/kvDn2h0TFQhlpnqvz58/r/jgmOAIVE9E6JigqqG3oLmXLVtGlsZqRY41OTlZ7fkaoJNwXBwLF2r+/Pl0LOGDUBN0EnUDEnXNFnL69GnsgNRfuJGCFlmCLjpJ1P6vXSdRxyNVKxo9ejTtQP2TRPUU6aTbt2+7urr6+/sjNMJucWcjIiLYgegQmk5ZX52E4A2bcXBwgOmuWLECx6LO6cyqddFJMDZUODQ01BLnHDLMHSkEj6eOOkn4X+3uiHyF8e5oypQpmtwR2bZ2d6SXTmLuCNHWYHfEoAa8o0eP6ri/AXCd9G+xbPWhGyN10xO+WauoqIBcVY0Njx49Wrt2rZ2dHbIHxYc8Q9TxjWM8uDtIziBMtRhq//79RQkcOaO5c+cqlIOGrH49IB8O2hidRO1Jal+/EuSYRI5D5JhQOAqhFJOABBfWClaH3E5t+Wp1kuprXw8PDxakw8PDEZmESWrnzp1rlE6iRdGFvaRF3Lp1CzuI5lIaOXIkMmnqrYgQ4u3tLfxvYmKiMTqJ2pOo15FadNFJM2fOFPYjUXwYkEWfKevTdAhVnZSWlob9hV1iN2/ezIzt7NmzVoJ+JApltxW9dNLNmzfd3d1bt26tOo7YItDFHcXExOAchTsUFRVpcUewLmN0ErUnGemO4HxQiDHuSFS+WnfEjE0Sd8SgDEfUEiwtXCf9+005rvLw4cMVH7T5ggUL2H/37NmjJTYgQlOKiR+6uLjgCZGx6jUV8vX4K9r+5MmTc+fOKT44d+HMDkh2WVMzlC5CHbIl9l+6p7rrJKS/ogyya9euCJma3hro4pgKCgpE7nLTpk3CWkVGRsKiXrx4oVo+dZK4cOGCcKO/v7+wbw0djgXpli1bCv/78OFDOL4apZPwhLq5uTVq1Eh1Sj3qOAKvTUM62HbIBezP3nwhigh7giNkUv8h+lqpTlq8eDF2ePr0Kfsv0n1676apzrroJDguYb+rt2/f0rAm+kr9jjX1cg0ODmadQgjqScM6kiuUPQ2YTkIeiM+XLl1i/x01apTuOunOnTsQGYGBgRa96qomdwSpSj2vEbCtft3fkfyJJnd04MABvXSSqjvq1auXGbqj3r17s6/Qx1bKcXb0VRJ3xJg/fz72z83N1XF/A6iJOgm3UPgeF87Rzs6OuQY8xn5+fmfOnCkuLoZfaNy4McyaYgNcJHLKI0eOIELD38G94rdMGyETxd1CAorbDHvKz89PT0/HLayyU60uwPXjkcO1jY+Ph6+5ePEiJNHChQtx8Wk4Ia52kyZNcFuRWOCuZWRk4IYivDHbhqxBzr1v3767d+/injZv3lwvnYRcB6Fo27Zt+C0FCdQBCRMe7OPHj+PoyBFxUGGrcqWOCVEWrg3GBv8CDwsPha/CWuFAdAhoQRzixo0bOGVK9OFWsGe/fv12K6G2BLhORPG1a9fiHOG5kLLj5yxII5rCE2VmZmJnJAYU4HV3TDt27IAYJQ/epUuXNCUWF+3gSWEGkBGIZAhpuIl4hPv27cvu/sqVK3GCM2bMePz4MYI6XDku6cmTJ+m/+An+C2GBRxt3B0+6kxL6b6U6CYHTSjnzDd016pYbGxsL94LE7P79+7jLOMTMmTPZVCO66CRyO7ANeKTr16+jzjRin+0AB4VbD5UGgfjs2TNEZXajR4wY4eDgANujGXEUyq5OMBvk+jAJlAb3SCPbSSfBtOrUqYMK0KQ7c+fOpTHkuugkOE8vLy/sPGnSpDQB7PJaCpW6IzykTZs2FbmjTp06MXeEn2t3R9p1Ejyb3O4IFqjJHSEykjuCRdF8SOSO8ByJ3BFMReSOWJVocQXD3BGsDmaZk5ODs4bx4DMe0pCQEFlXL6lxOgk3w0UAHl34EeG7W7gqMhEA08c9hlSiJlMI9rZt27JJ02EHAwYMEL5lh/Bq0KCB1Qfc3d1NsyRCtQe5PlwqzVzFri0cLnvdgKiGW8PuS3R0tLBhH/+FC6D/BgQEIF7i1rPOmLi5uMXCwyGXwg6s5SAvLy8sLAxHxEa2fBXiCtJxVh94AcQ8+heeYewJVyIsE1+xkfV4VSjDNsqknyN4o0BhrWgH1JYdAlqQpYxwnfDFZMPUqFZSUgIHSnvCCLOysuB9WG3h0RD86L/w2suWLUNtIyIihHUTvk8RgT1dVBCdoEWAW4koxVbPgKm0a9cO0oHtMG/ePJpkiC6jqLsSjBCyBv/C3/Hjx8+ePZtZDqxFdPsA/itc7ywlJcXX15euHllXeXn5lClTEDXZXUaSRt1vFUpnxYyKgS3CFvFffvmFmnyslIv5QBBDaaF8tgMOgaqyNX/wYenSpfQvWAVspmHDhtifHQghll2BgQMH0rPARgRDStIsTQDBCcFMaNWjR48WtdYzUIKqCQFyrZYFuSMWJnRxR8IwAWHRokUL5o6gPETuSHj7FCru6Pbt26ruCE6Ael4b445oBADAqVXqjmDJ7Hx1dEes453QHaGqerkjXA0cWnimKFbCRZzUUuN0ki4gY0DChAxP+AKVAceEf2laEBQ/wWMgnOSUIyHs2qrNHvC04L9quz5g//tKpE076Igo1rBFPcvKyujnmmqFxxMni310bLyhZZ6pP40IHKKgoAD/tbhBRpKDkEMjXkXTIhO4evgXrpXam0IzVqt9AWEwzKUY3ET3+PFj7UsUv3nzRndDpZ2FrwiF4Pni/o0w2B3huTZDd0SWr4s70lGXyOeOYJz0CMs9IwDBdRKHw+FwOByOerhO4nA4HA6Hw1EP10kcDofD4XA46uE6icPhcDgcDkc9Zq2TysrKHjx4IOwy9urVK7VLzIjASb148cI0Pbw45g91b2T28Msvv5SUlOjyw9LSUrVdfTk1EHge7o44xsPdkcVhpjrp5cuXNHmJlWByqvz8fFtb2ytXruhSQseOHbVMUWo8Dx8+RPlhYWG9evXatm1bpcMWUO3hw4e3bdu2f//+R44cEf0XP1+/fn3Xrl3bt28/efJk1ZEmd+/eHTNmTGhoaO/evfms37qDa8UGu7IJrGNiYvr166fLz0+ePOng4IB7LVP1Hj16lJWVNXPmTNxcmqROO/CtK1euDA8P79Chw/Tp01XHN+EZGTlyJMwMj092drbov3jYYas9evSA3SYmJmpZ/pkjBPEJ15MmBDFDd4RAe+HChTVr1vzrX//ScZj99evXR4wYQe5IdTFU7o5kQq07Gjp0aHV1R7dv3yY7weODkkX/FbojPB3m7I7MVCelpqZaW1vD0eNCswSuW7duAwcO1LGE3Nxc+LWbN2/KUT1kAzS3b1JS0qBBg2D0w4YN016Z+vXrBwYGTps2rXv37th/8eLFwh3wqEAUxsXFJSQkoGQvLy/hUgNwao6Ojj4+PlOnTu3bty9+DlOW47yqGW/evKEV4K9du8YSuHPnzlmprHakhS5dusTHx8tRPZpOjSbjsdJh/lk8qvCnsBMooUmTJjk5Ofn7+wt9E4IlIjc2wsz69OljpTLtIayUIj2CH/y1u7s7rU7I0U5aWhoue2Zm5q1bt5g7gl2ZiTuiew1wCF2WodXFHVkplyiAmNbujiCzrCx2inYTo9YdnT9/vk6dOhbtjljYqtQdicIWLT5oEe7ITHUSrX0t3HLp0iVc0zNnzuheCFyGpiWOjQS2bm9vf+fOHfqanJxspbIgMwPJGWzFz8+PJgoj84IKZPkEhDZ+ziZ/gzOFeSHbYyXg2YAZsUm9yLxE86tyVIH3sfr1clQK5b3D9dS9kIyMDIQfOXKdoqKi7du343YjH9DFMdFayxs3bqSvly9fRsXYdM+gdevW0O7MTkh85+fn09cjR47g57NmzaKvMD8oLdGyFRy1IBcKCgoSbqH1QPRyRyhBJncEB3LixImXL1+qXYFVhCTuyMPDg82fRO5Il+aHGk41c0e0iA1b6uTKlSt6uSOIdQtyR2ank/D4wZsgWYEyGKOE5MjEiRM9PT3Z6y0kdviXsCkPj/348eNXrlzJtqSkpEC/q53kyhhKS0thEKNGjWJbSkpK4GjYZKMiaL2CFStWsC20rhOrKrJSZ2dnYT0HDBjAak6LagnXA8IlwhYkc9KeVzVj06ZN8EG4UBERETAVmhj92bNnuHe0vACB+zJhwgQ2161CudoX9meN22VlZYgTCxculK+qtLBApY4JyUODBg2Eb3iRpbEteXl5Vr9edorWVGJbRo4cCSsV9m+gRV4tdEVS04D8WBd3hIe0Une0YMECJFey9i/RRSddvHhRrTtiwgjuCPUUuiNk/JW6I+EWjioid0QNeLq7o9u3b9PX8vJy6AnhCqSSo7s7QtgSTmgZFRXl6OhIDwUek+rkjixGJ3l7e0OQCvfE04vnmTVl4792dnZMrio+LCPMFgFQBfrmhWY09dCkFzewe+HGdu3ahYSEqN2flkUU5luwLRsbG7b8MnI70WT/tIwrPBo+7927F59FfU3go7t27arpvDgKDTqJmmSERoLPsCJmWjAnfBWKYIXyhS/ur6YDIX5osSJdemjq6JiQxLOp/QlakpMeEFrX/dSpU8Id4MjgvOgz0ruWLVsK/7t161b85MSJE5XWsMaiSSf5+vqK3BH+pd0dnTlzRrs7QoQwwB0J0UUnbdiwQeSOENggg9g7xICAgA4dOgh/wt2R8ajVSTq6o8GDBwuL6t27N55lTQfS7o50mUfeYHdE69HSA0KtTUePHhXu4OrqaqHuyOx0EoFEWSgdnjx5gisoWjsJortZs2ZBQUHwIFu2bFHVLtCq2KilYyOEuZVmNC2yvW3bNlV/hwojJqndH5kW9he1lMLzdurUiT7jv4MGDRL+FzaKjYcOHVJ8WJtTuIK3QinLAgMDNZ0Xh6CWPGE3VaT48Dui3eiGwoRgSDAnGBUtN8tITExEoqOpYZJWqdSEaIVdtejimCoqKrCPqM2SPAutYEqa6d69e8IdcC4scOLERX6NjitawoyjisgdPX/+3EplxfjS0tIWLVpocUfYrt0dwScY4I6E6KKTKnVHsBORO4KFVOqORCskclRRdUcJCQmVuqMmTZoIm5cUxrkjq1+vsKsWI90RpWrkjq5fvy7coZUS+gzHKHJHMDCzdUeWoZNope5du3aJdrty5YqNjU10dLSq6CZEb9ZF7N+/f7dmNHW6JEOk4CSssKaISO/vRc2JcEx0grj++K/wta7ig06iJwr+0UqlNxJ+ixI0nReHUHVMeDIhHVT3jIuLgwnBkKytrVVHMNEtYB04RNCi35qAjVVaT10cU0lJiSY7IVOkZcZFlRQ6JivBWC3dj8tRaHBHO3bsEO2GqGBnZ2ewO8LtMMAdCdFFJxngjshOuDsyElV3FBkZWak7unDhgui/aWlpBrsjXQYn6uIWYD/aw1al7sjR0VHkjuj6mKc7sgydRG/QVAcWguXLl1spl1IXiW4C2kV0M4xHjvYk0argqu1Jly5dEu4QGhrK25MqRdUxhYeHqw0kpaWltAa1qM2S0K6TjEf3BE70QpDaLYTtSfCSwh14e5IkiNwR2ZVadwT7MbE7EiJVe5LIHam2J6m6I96eVClq3ZFaN87c0bJly1T/S7fAbN0Rb08yHSLHREMWIVBEu717965r1674FzSK2iGFdevWHT9+vKajQM5310xGRobaX/H+SZaCqmOKiopSm/hiT5qsa9y4car/pWdeODRaCG6NFiuCjVVaT94/ycxR646E3W8JI90RJJQB7kgI759kzqi6I9xxXDq1e8rkjkCl9eT9k1SxDJ30+vVr2A0bQ8hITU2l93GQGm3atBG9skXOpKmFgIBSidGMpjcmNN5NOInFixcv6tevr328mzAzOHv2rJVgvBuOBXFdVlbGdoAxiQaYJCYmis6Lj3erFFXHNHv2bBiSyE6eP3/u5eUFpUvxQLVpeuTIkS4uLpqmEs3JydFiRUwNa0H3ASZubm7CaZ179+4tGu+GE2T/vXHjhpXKABNhv3LUzWwHmJgVIneERxVXctq0aaLdtLujoqIi7e7oX//6lwHuSIju491U3REb74Zj2dnZCd3R4MGDK3VHfLxbpejrjlavXq3WHSHQGOyOQKX11N0dIWwJK4+cUDTeTYs7GjVqlAW5I8vQSQplg41IvUJ4wshoijM8/LjoolyNJgLRfQov3YmNjYUrEc2fdPr0afr65MkT+FD2Yg5XuEWLFr6+vsIJS2xtbVlCQBPbLFmyhL7ShCXCTAInLpo/qU6dOsJREhy1qDom5DeiRhfcDqgN+B1qAEBWjYdf1BgQHBzM0iA50OSYtmzZIgzGoglLaP6khIQEtkP79u2FdjJ06FDswN7EnTx50kplwhK13Wg4IiR0R9QqIxNqdZIc7kh1/iQ53Gw1wwB3NGTIEFV3FBYWJrI9adHujti4S7Jn0fxJursjei1jKe7IYnRSWloaHlc2EOnp06eNGjXCPu/evaMtq1atEqlvKFa4Azmqd+/ePXgKGMGECRPgZUQ92qhZXjhHbW5uro2NTbNmzWBGqLNqo/3w4cPhZCG/xowZ4+rq2rRpU2Sf7L/Xr1/Hk+Pt7T1p0iSaPxdXQ47zqmaoOiZkP25ubsKGSeoUyfqaIL+BzbRt25blSZQuy9S7MCgoyM/Pj5YyaNCggZ8S9l+axJZ9xaMKuQY7gTeBncCtICgK068LFy4g70cJMDN6ASSaZ5lCWv/+/fEBh4NFmfNaAeaDqjtCrq+vO4JsgmlVusCRAaxdu5YsB04G+ow+s1uv1h2h8trdETYiZ4Cd4HnR4o569eoljHYcLRjgjl6/fo3bJHRHkKfwAFXojpjDYe6IhS1Vd+To6Ch0R6KwNXHiREtxR2aqkzIzM0XDSSBLcdG3bt1KX/Go46KznIaAv8ADT2dUVlYGE2SNyZKDQ8P19OjRY8CAARkZGcLLCJ+CuiF9F+4PbwVrgMoZNmyY6itY/Hzz5s2RkZE9e/bEY8M0OAMpBawNP4+JiVHbgZSjCp463AhR1+YpU6YgXFE8g/dZtmyZyOkgM8avWA/E+fPn4xkWvoaQkPT09DQV2H/xFIg8C6oNI+/bty/i09y5c1U7CyP7JzuBlsrJyVE9Ik42OjoadpucnPzkyRM5Tqr6oeqOXrx4YT7uCKm5qhUx/6PWHcFOoNtgJ8jyVe2EuyM5UOuOZs6cqd0d5efnm5U7Er5oq9Qd3bt3j7kjtTOHMXc0bdo0c3ZHZqqT1AKTatGihY4J2cqVK5HhqR11wqnJIPW3t7dXHdStFjgFHx8f+dQ2x3Lh7ohjPM+ePXN2dubuyMyxJJ30+vVrZD86rmsGGbtnzx65q8SxRLZu3Tpjxgxd9jx79uyIESMkX/qGUw3g7ogjCdu2bePuyMyxJJ3E4XA4HA6HY0q4TuJwOBwOh8NRD9dJHA6Hw+FwOOrhOonD4XA4HA5HPVwncTgcDofD4aiH6yQOh8PhcDgc9XCdxOFwOBwOh6MerpM4HA6Hw+Fw1MN1EofD4XA4HI56uE7icDgcDofDUQ/XSRwOh8PhcDjq4TqJw+FwOBwORz1cJ3E4hvDixYtOnTo5OjqGh4cnJydnZWUVFRVVdaU4FkB2dnarVq08PT0HDBiwdOnSM2fO8JVNOfoCK2rZsqWPj09sbGx6evr58+ffvn1b1ZWqtnCdxOHoDQKbv7//jh074JvgoeCn4K3gs2xtbYOCgsaOHbt58+b8/Hz+cHFEXLhwwcnJ6cmTJ8XFxQcPHpw1a1a3bt2cleADvnLBzakUZkUwFRgM8jRka8jZXF1de/bsOWfOnCNHjpSUlFR1NasPXCdxOHrTr1+/uXPnqv3XrVu3tm7dCqkEwWRtbc2bDTgMBDZEshs3bqj+C7YBC4GdwFpgM7AcEtywJViU6avKMVu0WFFZWdnp06fT0tKioqIaNmxoZ2cXGhqakJCQkZFRUFBg+qpWG7hO4nD0Y8qUKZGRkTruLEz4HBwc2rRpAzcna/U45klpaSkEUHZ2ti47wy3n5+dv2rRp1KhRLVq0qF+/PjST3DXkmD9v3ryBFR04cACfy8vLte/8/v37vLy8DRs2xMfHt2rV6uDBg6aoYnWE6yQORw927NgREhLy7t07fM7NzV25cqVeP09NTZ09e7Y8VeOYL3CzEMqrV6+mr0lJSffv39erhEaNGhUWFspQNY7FACvq2LEjWRHSLRcXF91f0V67dq1Tp05y1q46w3USh6Mrp0+fdnNzoxf/N27ccHBw0DfaPX782MPDQ57accyXUaNGjRgxgj7Pnz+/c+fO+jreOXPmpKSkyFA1joxAzfz000/szWlwcPDr168NLi0+Pn7cuHEKPdsmGQ0bNnzz5o3BR6/JcJ3EqYbAqo8fP75x48YjR468f/8eW77//nsjy4Qkcnd3J2H04sUL5PcXLlwwoJymTZvevHnTyMpwZAJ3NiMjY9OmTXSPkLvHxsYaWSYKCQ8PJ0+7d+9ef39/A3qqFRYWwuSMrAnHZOB29+/f/8svvwwNDa1Xr167du0qKio++eQTGJhhBa5cuZLkNcCHJUuW6PhDuCl6T5eUlLR+/XrDjl7D4TqJU90gEePs7BwXF+fh4dGyZUsYea1atYwpE3mYm5sbUkN8hr+jwW56lTBgwIBr167hw7JlyyZPnmxMZTgykZmZ+fnnn3fs2BHa6Ouvv0ZQmT9/vpFvK6DUkfqTMGLDlHT/OYwtMDCQPsPqbt++bUxlOCYjJSXFzs7u1atX+Pz27dtdu3bhg8E6KTs7G/kVWVG8Et1/e+PGjebNm+MDjCc4ONiAo3O4TuJUN2JiYlq3bk2G/f79+ytXruCDMTrp3bt3ISEhTBhFRkYifOpbSEZGBnXFLS4uhoYzuDIcmUAQ+vOf/7xhwwb6WlhY+Pz5cyN1EkJUgwYNSBg9fPjQwcFB7TAl7aACpLCXLFmSlJRkcGU4psTV1RUZkWijYToJNoPSyIpWr17drl07faN2w4YNnz59ig/e3t7wP/pWgMN1Eqe68d133+3evVu00RidFBsbO2PGDPqcnJw8YMAAAwpBGIazo89QXRcvXjS4Phw5OH78+KeffkpvaRnG6CRERAhikjg0TOnw4cMGlAOBzhS2i4uLYZXhmJhvvvnm6NGjoo3QSenp6fHx8ZDjeXl5ImNTC+QRpDbJ6+zsbFiRAX2MZs+evXDhQvqg+ws7DoPrJE5146OPPlJVIdBJqampHTt2nDp16r59+3R/94FIyWYBEA52M4CIiIiTJ0/iw/r160eNGmVYIRyZWLduna2trWgj6aS2bdtGRUWlpaWdPn26rKxMl9Igi5s1a0Y9bWEwwcHBbLCbvqAo1gAZFBR0+fJlw8rhmJLvv/9+7969oo3QSffv3z927Ni8efN69+7t4+Pj6+tLppWbm6sqgGg+W5LXkEqOjo6GzSpSWFjo5+enUDZqokCDTqhGw3USp7rx5ZdfqmZy1J5UUFCQkZGRkJAQGhrq5eUVGBioPbeDomrRogUJo3Pnznl4eBgzYARRMyYmRqFsXbCzszO4HI4cZGVl/fWvfxVtJJ1UUVEB5b1q1aohQ4YEBATAcioV3L169Vq+fDl9jouLGz9+vDF1Q2mksCHmxowZY0xRHNPQvn37wYMHizaqvncj04KGHj58OIS10LQeP37M5pKAmTk5ORk2cIRo2rTpgwcP8KFJkyZ8ggl94TqJU92Ao0FkEm1U+97t1atXwtyucePGffv2XbhwIeV28EqNGjUivyYc7GYw0Fv29vYkyBB9KfJxzISXL19+/PHHP//8s3Cjpvdu2gV3UlIS62lr2CwAIhA1adjd69evucK2CGBI//u//zt79uzr168fP3588eLFCt36JzHTgmyCPqaNZ8+epTFrBrNkyZJZs2bhw6JFi/gUbvrCdRKnugHHVLt27dGjR+/duzc9PZ26vurSPwk65sqVK2vXrqXcztPT8969e/QvRDtjkjlGTEwMvYuBKzR+wDlHWmbMmPG3v/1txYoVmZmZiYmJiEw69k8SCm4PD482bdqQXy0vLx8wYIDx69XAMh0dHZnCPnXqlJEFckzA5cuXIyIimjRp0qpVq6VLl2JLt27ddG+Qxk2XcCaI4uJiODR8ePr0KX3g6A7XSZxqyN27d8eOHdunT5+4uDh6BzdlyhR9C+nfvz8SQWkrhgIpR0TstLa21qUjJ8eU7N+/f+DAgZGRkZDXhYWFyON//PFHvUqgl6qS+1VYIynsHTt2qL7Q4VRLILIl1MSQ7zQrWGBgIJ/CTS+qm04qKChYtGjRwYMH+ehHjpEcO3YMIVPaMvG42dvb08JMvXv3NrItnWOedOnSJTc3V9oyIfe5wq5pIK2SUBNv2rSJZm5bsWJFYmKiVMXWBKqVTqIhlGlpabRau4+PD625vWXLlvz8/Op0phwTAINxc3MzeHSbJuLj47du3apQduvu06ePtIVzzIHMzEzqsC8hsEY7OztS2BBMhw4dkrZ8jhmCm46IJpUmLisra9OmDT6UlJTwCSb0ovropDdv3jRu3FiUxhUXFx88eHD27Nk9e/aEbPLz82Pje0tLS6uqqhxLIS4uLisrS9oyz507FxoaqlDOgWltbf327Vtpy+dUORUVFdA0kjf5DBs2jCnsvn37Sls4xzxBWoUQJnmxISEhknS4rCFUE52Es2jdujU5ES0gJrHxvWwQ5vLly6vHReBIDjQNG3IiIXPmzKEPMTExGRkZkpfPqXJYdyIJuXr16r59+xTKHr5cYdcQ4IIkb3WG/TRv3vzSpUvSFluNqSY6CaKbzeivl/ouKCgIDw+XvLsup9rQoEED48craeLw4cO8YaBakpOTExERIV/5KPzEiRPylc8xHxo2bCitJqZhChIWWO2pDjpJOGOy8LOOQCQZthIFpyYwYcIEfZe81RFkdUFBQWw2Qk51An7VwcFBJoV948aNevXqIceTo3COuQEXJGGrM0Ikz830xdQ6qaio6Keffrp16xZ97dSp0+PHj40pEDHM39+fOtsatqyETN11OdWD69evd+zYUY6SY2Nj9Vr3m2NZ4Obu3LlT8mJfvHhhZ2cn+Xg6jtkCF2TMYsxCKFzK10BeXTGdToIQiYqK+vTTT9u2bYtkqE2bNhUVFd9+++3du3cNLlM4Y/L58+chd169eqX7z8eOHUszuMOj7d+/3+BqcKo3Xl5er1+/lrZMZHXQ9NWgNZejCXgnqcIbAxHOz89vw4YN0hbLMXO8vb2NWTGJEIZLjl6YTictXbq0Tp06z58/VyjHg9CK7sbopPv37zs7O9NSEoYtK5GamkozuMvUXZdTPZgxY8batWslLHDfvn1GLhXHsQjglKS9y3BTvGdJDSQ5OXn9+vXGlIDg6ODgcPv2bYlqVLMwnU7y9/en9WWEGKyTIIrd3Nyo8Zk+Q+voW8jjx48RrugzPtDcJByOiHv37rVu3Vqq0pDVWVtbG7buN8eymDx5spHhTQgUUs+ePaUqjWNBwAWFhISwr9u3bz9z5ozur8/UTprD0R3T6aTvv/9+165doo3QSQsWLOjdu/e8efOOHTum41uzd+/eBQcHU+9afG7RooXBPW2bNm1KM7jL112XUw1o0qSJJDO8Qx7Z2dnxmUtqCPAtwvBmDNu2bfPz8+M9S2osQhe0fPnyqKgoLy8vd3f3zp07T506dd++fdSHRBUKl5VOmsPRgul0EsLDxo0bRRuhk65evQqdu3Dhwr59+zZo0MDe3j4sLAyZU2ZmpqYbHxkZOX36dPY5JSXF4FrB4BISEhTKISQdOnQwuBxO9Wb+/PlLlixhX4uKigwoBFmdh4eH5BNXcswZHx8fFt7ev39vmNqGh3RycuI9S2oycEGIkqKNsKi8vLwNGzbEx8c3a9YM0dPf33/48OEVFRVsH+GkORzDMJ1Oio6OVh2xr/reTbhmO265jY0Nbj/uNEwBBgGzwC1n5Qg/G0ZJSQkcEH2Wo7sup3rw9OlT2CH7OmzYMFtbW4TA2NjY9PT08+fPVzrBCR60jh07wtnJXFOOeZGamkprxSuU8trT0xMZY0hICDVg69Lr4P79+/gJEjmZa8oxa5KTk5s0aeLt7a3deAoLC4WZmAET5XBUMZ1OwnP+6aefzpw58/r16ydPniRprEv/pIKCgoyMjISEhNDQ0Pr167NZAF6+fNm3b1/jx/OzGdwl767LqU60aNFC1MCJsAeXBP8VHh7u6Ojo6uras2fPOXPmHDlyBPpb9HNo/bi4OBPWl2MWPH78uHnz5sItcLn5+fmbNm0aNWpUYGBgvXr1/Pz8hgwZsmrVqosXLwpbAhTKzpewK96zpIYjHM8vdDvI7QMCAjQZT3Z2NrI7Pm+78Zh0/qRr165FRERAFEOaUGKN4KHXKwzYgbW1tcgajAQOi6axkba7LqeakZKSAhkEa9G0pnJZWdnp06fT0tKioqIaNmx4+fJl9q/Vq1cHBwfzObpqJohkSUlJiG2afB30d2ZmJvYJCwtr164d2049S2A8pqopxxyBSnZzc9P01lXodnx9fX18fKi/77p16/gsAFJhefNx9+/ff+/evRIWCDuztbWl6wDNTjMXcDhCnjx54uTktHDhwgkTJkDl29nZeXp6DhgwYOnSpZUOPDl48CB25rMA1Ex27NiB0LV8+fLY2Fh8gKsJCgoaO3bs1q1b2XS7moiOjuY9S2o4NJ5f9ylvWI+lGTNm8BnbpcLydNLRo0e7d+8ubZldunShJd5E3XU5HIWy/zWEjmhZ0+LiYgigWbNmdevWzdnZGb4sPDw8OTlZ1Gxw48YN/OvBgwcmrzWn6lHbEgB5BJEEqQTBZGNjo0lwwxfBokxeZY4ZIZz+hlOFWJ5OQoWRk0k711FmZmb//v0VKt11ORzYW4cOHVasWKF9N0Q4xDlEO8Q8RD5ra2tEwZEjR9rb2/NZAGomOrYECLubYH8nJyco72HDhvH1JWo4uPuwAT5bjTlgeTpJoezVJO1sEBUVFWvWrKHPqt11OTWZeCX6/or11aXZuTg1DYNbAqi7yfbt21WHAnBqFJGRkaozM3OqBIvUSefOnRP2dpSWlJQUCafQ5Vg0ixYt6ty5syU+I5wq5N27d7wloCbTqVOn77//vrS0lL42atQoIyNDrxKMn/KGIyEWqZOAs7Pzy5cvJS+WuuteuXJF8pI5Fkd2draXlxd/98HRF0S45OTkqq4Fp8qATvrmm29GjRpFX/XVSXx4rLlhqTpp4sSJkg+XVdtdl1MzuXDhAhQzX4WNoy+8JYADnZSamlq7du1r164p9NRJubm5fJFsc8NSddKNGzdatGghYYE0XXJ6erqEZXJMTGFh4aJFi1hDI4wkMzPTgHIgjxwdHfkMyDWHnJyc7du3s68wG8Pu/pYtW4KCgnhLQA0HOmnNmjVz58718/NTKHUSDOPBgweVNk7T8FjdZwHgmAZL1UmgYcOGhi2zpRbDuutyzApEu1q1ag0YMIC+wlUZIKZ5s2INJDIy8qOPPjp27Bh9hdmwgR26o30+QE7NgXQS5DLSrU2bNkEnzZ49u2XLlu7u7pBB2NigQYNWrVr16NFj+PDhycnJyM8zMjKgzp2cnPjwWDPEgnXSzJkzFy1aJElRixcv5t11qwHQSXA0P/zww6lTpxQG6SQ+A3LNBDqpQ4cONjY2tMiDATqJtwRwGKSTFErp/Le//Q1OSfTerby8vKCg4Pz58/v27cOeKSkpY8aMCQoKwt8qqjJHGxaskx48eECtmkaSnZ3t6ekp7YRMnCoBOgmp29q1axGxaK4HfXVSfHz8+PHjZaoex2yBTpo/fz4yfpr/Wl+dRLMAIOzJVkGOJcF0EujTp0+tWrVIJxUWFj59+lRTzH348KG0nUk4UmHBOgk0adKEzXQMI9Nx/W0hvLtudYJ0kkK5olZycjLppFmzZk2ZMmXp0qXbt2/HDlevXsXtVmv2iJS8WbFmQjoJ3uOzzz67efMmzGbevHmjR4+G8axatWr37t2nTp26c+fOq1evVH/L5wPkiBg1ahTrGfns2TMPDw94HnyePHly06ZNHT/QsGHD4ODgnj17smYkFxeX9+/fV1m9ORqwbJ20aNEiNhMXvBisEw7O2trax8dn4MCBtBRAWVmZpp/z7rrVDKaTrl+/joA3c+ZM2MPFixfhsxDt8HXkyJHwSkFBQfBQcF6urq74gK/Y2K9fP19fXz4LQM2EdBI+QFIjdMFsli1bduzYMagfuJHExMRBgwaFh4c3a9asQYMGbm5usBxYS4cOHaKjo9u1a0e/5XCI4uLiPn36VLpbaWnpvXv3zp07d+jQIdoCR4SvMteOozeWrZOKioooLqpuz8rKmjFjRrdu3ZycnBwcHDp27Dh16lQYJduHd9etfjCdBMaNG/fNN99U2o4NYUQdBUaMGAEhJX8dOeYI00lv376tV6/en//850rfu7169So/P//EiRPu7u5Pnz41STU5lsHs2bOnTZtmwA/T09PnzJkjeX04RmLZOglap3Hjxt7e3lFRUWlpaSdPnlQ77QR8HwIhTPDOnTu0BWcdEhLCu+tWM4Q6qays7IcffmA6CYIYNnD//n02Sa6I69evyzfJO8fMYToJILmvVasW6SQooYyMjNzcXLiO169fq/3t+PHjt23bZrq6cswbBBc7OzvDpPPNmzdDQ0MlrxLHSCxYJ7179w5aZ8eOHUwGDRkypGnTpg0bNmzfvn1SUlJmZubDhw/V/jY+Pn706NEmrjBHbgoLC1NTU58/f05fz507R70EysvLJ02aFBMT06lTJ39/f3clbm5usJaOHTuylgN7e/sqqzqnSoHCzsrKYl83bdpEr+PPnDkzZsyYfv36wdV4enpStxIXF5fAwMCuXbvSPgcOHBg0aFCVVZ1jZuzbt69Hjx4G/9zBwUHCynAkwYJ1Uv/+/TUtE3j//n1kgQkJCe3atYNsCggIGD58+KpVqy5evFhRUcG761ZjGjVqpHuHs+Li4ry8PNb3PywsDF9lqxrHfMnPz4ej0HFn+BAocjgT6tb95s0bDw8POWvHsSSCg4PPnj1r8M+RuV29elXC+nCMx1J1ErSO7osDwJ0dP3584cKFffv29fLy6t27N++uWy2Be2rVqpXBP09NTV28eLGE9eFYCkOHDjVm9WuoczmWm+RYHEi61HaZ1R2EtrS0NKnqo1DO4RQQEPD999/b2tqOHz+exz4DsEidtGPHDtx4vjgARwQU8J49ewz++c8//9y1a1cJ68OxCEpLS62trY2JH3FxccYYHsfSefDgwYoVKxYtWrR7924jJ9S+ePFily5dpKrYpUuXPvvsM0RMhEtUsnnz5v369ZOq8JqD5ekkWCFfHICjSnFxsYODgzH2/P79e945oAaybNmyCRMmGFPCrl27RowYIVV9OJbFzp07a9euPWTIkISEBGdn59DQUGNyeHgwCb1Q9+7dhetxPXny5OOPPy4sLJSq/BqChemk+/fvw4Zu3bpV1RUxBKSt8+fP79Onz8CBA/fv31/V1aluzJo1y/ghtUFBQfpOVcqxdDw8PDQN+NARpG3e3t5S1YdjQeDW/8///M+JEyfo6y+//OLq6mrki7Pg4GA2NNtI6tatKxqMaW1tbdjq4DUZE+mkmzdvsvHYFRUVt2/fNqCQly9furm55ebmSlkzU/HmzZsGDRp06tQJqeeGDRtsbGz4gDsJoSTM+D4i06dPl2+2iLdv3z5//pz3DzAr4E/wVBpfjru7u5YpbTnVlYyMDCsrK+GWRYsWId0ypszk5OSVK1caV6//zw8//LBz507hFoQexCBJCq85mEgn1apVi71zRb7+ySef6FuCpS9QOm/evMaNG7OvyF9///vfG6YXOars379/wIABxpeDqKnLRLr68v79e8jir776ysnJ6S9/+QsfSWA+dO3alTUGGMPAgQPZrMoSUlRU1K5du9q1a3/77be2trai5VQ5Vc6CBQs8PT2FW9asWWNkV+5Tp07BRRhXLwW9dWnTps3UqVPZRridP/7xj/n5+UYWXtMwnU6yt7cnP2KYToqMjExMTJShaiZCZK8K5RiZ9PT0qqpP9eDcuXPIvaZPnw7TKikpMb7AiooKZ2dn48sRMWvWLBcXl+LiYoXy9WtgYOCwYcMkPwpHRxAtNm3aNGXKFAQ5qWbk37x586RJkyQpSkjDhg2HDBlC/V2g5z7//PMzZ85IfhSOwezYsaN+/frCLUuXLjVgOVuExbZt216+fFlhtBdCTIdtQ73BzjMzM6Gwb968qVBma4MHDxam6xwdMZ1OQsZfr169t2/fGqCTZs+ebekzHnl5ecEpC7fgWeLLQhnDuHHj6tSpM2PGDKgQqPCIiAhJim3atOnjx48lKYrxj3/8Q9gSkJeX94c//IEP2KwSXrx44ejoGBoaiudx5MiRtWvXFr2YMAzYDCzH+HKEnD179k9/+pPQTsaOHStHeyfHYIqKin7/+99fuXKFviJIQYikpqbqXgJiIlJod3f3I0eO0BYaqwT/ZkC3OSRjQUFBgwYNQrEKpTaCbvvmm2/gIf/6179Cij179kzfMjmm00kK5Qxa0Lmkky5evHjq1Cl81rSOBAOC3cfHx9LfU3Tv3h1OWbjFxsZm69atVVUfS+fatWvIrdniAG/evPnqq68kGZs9adKkzZs3G18OA48Y7F/UMfPjjz8WrjbIMRlDhw4VdkiCfv3yyy8lWaTd2dm5oqLC+HIYq1evFs1guWbNGtFbHk6Vs3jxYkiQefPmrV27NiQkpFGjRuXl5devX9flt4cOHYIkmjZtGlnOy5cvIXH8/PwgkXH3Efjat29/+PBhHWvy008/2dnZbdy4kb5CrtEsADDv58+fVxpqOZowqU4qKCj44osv9u3bB50Ek0Ji1Lp164YNGyK9c3BwgKBu1apVjx49aEXSVatWZWZmbtiwwdbW9smTJyaopKzAHX/33Xfs3dDRo0c//fRTms+XYwDwSvAgwi2xsbGSvMyC5xo4cKDx5Qj5j//4D2GfADx0v/vd7x48eCDtUTi6YG1tjdSLfcW9gE4ycs4bAg5N2lEm69atg1cUboFO4gPrzJDTp0+PGzcuLi4OtwyK5927dy1bttS+FO6jR4+6dOnSrl07li+tX78eoRCBTxiUz58/D63ToEGDBQsWaI8XixYtcnFxIX2GPeEeYZB8bIEkmFQngalTp+KWq33vxlZuhzyCrUAqQTA1a9Zs+/btclQpJiZGODxy1KhRmzZtkuNADCSy//jHP5Au9O7d++uvv+aDDowhPj4+KipKuCUpKUn3Kdq1AM8iCk4G8+zZsy1btuCDk5MTFD/bjrSvdu3akhyCoy/ffvstshThFhsbm5ycHONLXr169fTp040vR6HseHfjxo2LFy9+/PHHwlA3ePBgOC5JDsGRFUil/v37R0RE0PsvIe/fv0ea5+zszALQtWvXAgICBgwYQF0YVUGCjZ94eHhgH9VVTd68eRMeHt69e3daBh5mA70lU+dX1PDmzZs1LcM3tU6C0dSpU4fppEr73m7cuHHKlClyVKlFixZsAVTQqVMn+XoLlZaW0nC/vLw8nNGPP/6o6Xng6AhuFlIx4RYIUIhdw0p78OBB586d2cxJSNmNn8j01KlTtra2pPLXrl373XffwX8plHNkIDBrzzU58oGLL5xRhtqTqP+sAezfv79v3770GfZj5IBwYtGiRT4+PtTMEBgY2KtXL4p/u3fv/vTTT3V8ocMxByBuIIDYytwKZQho1KjRuHHj6C0Y7uyIESO8vLx0XBLu4MGDHTp0aNasGRIw6rgG2QTJxRZcgliHSCJXIy2vX78OCwv75ptvmjRpgkemT58+lt4ZRndMpJNCQ0PZm/tDhw5169aNPuOW4x67KmnatCliVWxsbGJi4tKlS6klvLCw0ICxA7pgSp20fPlymvD34cOHot7cHMO4cuXKZ599JuyfhAfYgAHeEO7Tp0+H+bFxT+Xl5W3bth06dCgr3ADmzp3bsGFDNiEqHMqyZcusra3/+Mc//vOf/5w1a5ZFD0qwaIYPHy7qn/TDDz8Y0D8JOgZKvX379uz9KRSwm5sbRJjBPfSRpoeHhws74WILAtJf//rXb7/9tnHjxpJMYcAxJXv37oVVsNfuRUVFbKFuJFFOTk6QOPqaH8JiQkJCgwYN8Bcy69y5cwql44KpwCYlGfmrCvIBxGvSRvC3/v7+NWcKQBPppJUrV86YMUP7PpCrd+7cOX36NL13Y/oaMUySXpYioJNw16d8wN7eXj6dxCb8HTNmjPD9C8cYcDGF493wGMOY9Ro1DW0E65o2bRpLjPbs2QPhjjKR07u7u3fp0kXfyITABrkfGRkJt6VQOq/+/fvLMWKcYxgvX74UjXdDjl5QUKD7Yg6wlqSkJNhJVlYWbSkrK0MiZGtri2weCtvBwQE76Nur8urVq3AUbGwHqoTE/dq1a3oVwjFDLl26BD8jfLcLSd2qVavevXsbk4xBjkNpBQYGIg9HSgbZlJKSIkV91QDXKhzWBw4fPowEQ6bDmRsm0kne3t4Gj7Xu0aPHzz//LG19FEqd1KtXr0UfgB3LpJNyc3OpxzHcKxy06utqjsGw+ZOOHz+uUGoUX19fXQblIgjhpkAos8aAu3fvInZCGAnjJe4dtkAwIeeDjq+0WIQ65I5sNlSU6enpOXPmTN56ZFYI50+CJWAL7AdSW5fe3Pv27cNTDBnEtPXu3buhkBITE9mW0tLSJUuWIG517dr15MmTulQJNtOoUSP2Tm3v3r3wSEgaDTk9jvkBPeTn54f8nyQ1BLFUXf7hl3x8fGBssrY1Is+vVetXauH58+esO021xxQ6CcHMmJUBli1bNnfuXAnrQ5jsvRt8JWUSa9euNXK5TU6lIFZ17969f//+mt59YIepU6ciCB04cIBtQciEGNI0/hY+btq0aQ4ODjExMVry+w0bNqAQ1ssSoQ4/4S9KLAVoFAggiB5NO9BMgK1bt2b92PChjRJNawJCfsGx0IyymkYelZeXR0ZGsqFJ79+/Hz9+PMrkXRirGbjRyM3gE5DISTt3GnIzOV65CCFVRG3kBPLJ//qv/5L1oOaDKXQSXIBogIlewH+JRoBLgml0EkIslD599vb2NnK5TY6OILlv1aqV6qCMrKwsFxeX5ORk1lsuOzsbW2bMmFHpzDfwRLt27UKx/v7+W7ZsEe7/9u3bAQMGdO7cmY6IPceNG9esWTO557O4cePG/v37T58+zaeslISioqLGjRur9iCEkp48ebKdnR0bo0qv3uzt7XWZsuvRo0cJCQnYOS4uTrRU0a1bt7y8vJYvX05fYTCBgYFQ7bK6ZSiwH3/8cePGjXl5efIdhaPKvn37YmNjJS8WQlzaibvU8s033wgzyfXr1zds2FDug5oJsuukFy9eGH81kedJUhkhptFJU6dOpbWjz54926FDB8nL52iC5p65f/8+23LixImOHTsyqYoPuOlhYWH6zmOE2IaAh7A3YcIEFIIo6OPjs2jRIvovlHHz5s0nTpwoa4aHxA7mVL9+/d69e/v6+uIDX7NJEnBhqSe1UHoOHjx4/PjxbJo+aGt4JOGLNl1AJIO8btKkSXBw8N69e+F4d+/eDRNlQ5NycnJcXV3ZpMwygVThiy++6Nq1KwL2d999Fx0dzV8KmwxEHDlW34IrMMFSoampqba2tpcuXXr+/Hlubu7f//53mvSkJiC7TsLFZSHEYNq1a0cr1EjI3bt32bgDhTI1N34ouAhESkRTGtPbo0cP6kPDMRnU6US1ZzciFi24tn//foMLR0BdtWqVl5dX27Ztly1bRhshxZycnKRaMkwLkydP9vf3Z7Ecp4Pjyn3QGgJcImRuUFCQao80yGLEpJCQEE0v2nTh8uXLUVFRuF9jxoyh3lE44syZMwMCAuRugITUo37r9BWuqV69enLPG8dh4DldsmSJ5MWOGDGC9SKQiaKiItjt8uXL3dzcvv/+e/g9Nut3TUB2neTn52f8nFQpKSmSz5oVGRn5+9//nsnwFi1aSL4W986dO5GJKpRtDKL1Bzim4datW87Ozj/++CPbgqwdSTx0hlSTf1D3u5MnTyIlgLVT5JMbRFnhPKUQbf/5n//JpiHgGA9SfzyzrK0R2hpSxsHBQTg5rTGUlJTMnTsXaqy4uLhNmzbQTCZ4ebpv3z47OzvhlqSkJDl6NXDUMnr0aOHcXVKRlpYmh/wSMmnSpDlz5iiUI2Bq4FAkWXQSki1ar3HUqFGqk4cawNmzZ3v27Gl8OUKgkxBsWrVqRV/l0EmBgYHUZDVt2rSlS5dKWzhHR54/f960aVMEucePH3fr1s3IxgC1IKbGKTFBLwHiT3/6k2gquW+//Zb3GZcWSGp7e3vo4CNHjri6uiYkJEg+sR6kGFzl3r17pS1WEwsXLhRNR8cXQjElvXv3PnbsmOTF7t+/3+ApdnUBbq1evXovX77E58aNGxszl4GFIr1Ounz5cu3atZGm4OalpKR8+eWXui/jpwlkWs7OzpJUjwGdBIHMFnuSXCdBIUEnKZRv3yDI+BqEVQgSoC5duiAmybRWDHzf0KFD5ShZEz/88IPoNe4nn3xy6dIlU9ahJpCfnw+zadmypeTamujUqdP58+flKFktmzdv9vLyEm6ZP3++JHOIc3QBSZoc06nfvHnTmBHllbJly5bo6GiFchm7Hj16yHcgs0V6nQRxkJyczL6uXLlSkl7YzZo1e/TokfHlMKCT4COys7P/+te/vnnzRnKd9OzZs40bN2ZlZW3fvt3EQZSjClJ2+SZlePDgATygTIWrpWfPniNGjGBfc3NzP/vss5qzjIAp6datm7Ajo7SMHDlSpvUr1fL48WPoaaEjbd26tUwLQ3FUadSokXANE6lAHujp6Sl5sQxfX19a2Kdr1656TeRbbZBYJ71///53v/udsJ9EcXFxrVq1jG+pS0hIkLa/IekkhTKlg7eCTtq2bZsky/uhkLS0NB8fnwEDBtjb20N+CUddcaqEVatWyTffukL5AkW+wlVBVlq7du2ZM2ciw1u/fv13333HX+zKRPPmzSUf4cFYsmSJfHMoq2X06NEuLi5IG06cODF48OB//vOf8p0dR4S1tbVMJUu1dLcqUEjQSQplL1sENZmOYuZIrJNevnwJVSR68LDF4FZrNrj68OHDAwcONLZ+AphOKiws/Oqrr2xtbefOnevk5BQTE2PwtCIXL16Miory8/OD+6PBMgsXLkxKSpKw2hzDgKTYvHmzfOWzWbJMwMOHDyG+79y5M2zYsHbt2vXt29f4V9scTcg6SUx2djYN9TANkNRPnjzZsGFDly5dwsLCEhMT+WyWpkQ+neTv7y+cBFJCENFoLR1YC7JNOQ5h/kj/3u3zzz8XNs1BIf3mN7+hsfF6gYqlp6dDwJJUKisrk0oyFxQUBAcH9+rVizUwpKamQswh9uBYe/bsCQoKQhK5Y8cOHUegwEBXr17dtGlTlHnq1Cnhv169egUFJvdkqZxKGTlyJBsOLQcwGDla1NUyduxYWiUQEt8E86bUcGRtKbx586bJ3tiWlpbWr1+fXs7m5OTwt7QmpqKiQjTYUF/GjBkjjK3IwHEfsXH69OlsI/J/CfvSlZSU1KtXr0KJi4tLjbUZ6XVS7969+/Tpw77iLiKE6FsItfUNHTqUvQijeZORQBs5kdKBAwcgXI4cObJmzZpDhw7RRughZHXC1Z2QrI8YMcLV1XXq1KlaXhreuHEDVfLy8kpJSdHUfA09LlP3YY7uRERECBdxlJzo6Gi2crOs0CqB5LDwgJiyd0vNRNb2JAo/8pUvZPny5bTAO4Kfvb09T95MDLKaJk2aGFNCo0aNhJ1oaapkbPztb3/Lxrp+++23uixTqCNz5sxJSEhQKLtyk/HUTKTXScXFxcjAmjVrFhcX17p1a4iS+/fv//zzzzq+BUfSEx8f37hxY7b2LcwrPDw8LCzs3r17W7duDQgIgPD68ccf9X3Ocaa45X5+frovDF5eXg5DxE+6d+8uXJMS3g01adWqVadOnZjY0sTFixdbtmypV1U5kgNTlHUSP6R0ppmvb8OGDWPHjlUonxQHBwce7WTlzZs3/v7+sh5CjsUG1AK3TB0lU1NThS0QHNMA+WLkkgyadFJsbKydnR1NSiKhTkLERLHkNqHwEH8lKdYSkWX+JPjuI0eObNy48eDBg3Tz9u/fj6e00vZAGIGTk1NaWhrVCuXMnTvX2dlZNL9IXl4eLAMp0eTJkx8/fqxLlYqKiiBWDJ7h5vz583369PH19V20aNG4ceNgmklJSToeGnh5eck0rpijI7hlskoKiCTTxB4YIU1+uHjxYt71TW5u374t64hr4OPjQzPTyMqZM2fatm2rUAY/+Nhnz57JfUSOiOzsbCO72MKJ9e/ff9EHbGxsSCchbgYHB0+dOlUhqU5CnMXhFMrXO2Q8NRZTrINL4Oa5urr+9NNPav+LRAd3olu3bizpx56wAIgSTetsI9VDqHB3d4cj077O7unTp5F5Gz8R6osXL6Kjo0eNGqVvxIU1jxw50sijc4xB7iUbz549GxUVJeshFMqHqF27dvQZll8DJ3wzMXAdMTExsh6iZ8+eEr4o0URERAQtbYHctXv37nIfjqPKhg0bJk6caEwJCIihoaFxH/j73//OdNKtW7c+++wzyHqpdNLbt283btzo5+fXunXrCRMmyNq50/wxnU5SKKeZ8fLyonkdGWyxLTZmp7i4GDI2ICBAxym5jh8/3qVLF4iwBQsWqA7sh+52c3OTanavR48eGdAO/8svv1hbW5uyE1xhYSGEJl/IgiH3uP3nz58b0A9PX/r27UsOKycnp2vXrnIfjrN79+5JkybJegiUL1xXRw7gUeFgydVDZ4vGmnBMw5w5cxYuXGhMCZreu9HGxMTEsLAw6KS0tLSlS5caPLPx/fv3x4wZY2dnN2LECAgv5AlSrdVjuZhUJymU47+Cg4NppRji2rVrwsW2cOMdHR1pOI9ePHnyZMqUKbi70Fg0KdabN2+gn5A8STsXdvv27Q2Y+Bjyf/369RJWQxPQnT169Pjzn/8Mh1inTh1fX1+5F9c0f5AbmWDmD/mmMCEQ7ZAM0Gc4RL5KiQlIT09H1JH1EKtWrRL6QzlA+ampqQrljBKmnMCCIwT5PAUmg9Guk8rLy+vWrfvb3/720KFD0EwIhUOGDNG9geD9+/d79+4NCQnx9vZeu3Ytm2UAdeYztptaJymUg8uio6NjY2NFo+4hmAICAgYOHFhSUmJw4bjZO3fubNasGeIi9Na4ceOMrq8YWKEBb1hu3rxJs3XJzbRp0zw9PellJW4usoEa/mpZoWxdk+oizJo1S2if8+fPhwzF35ycHPYWTKYJjhHt5s2bp+DRzoTMmDFjy5YtxpeDYCPs5p+fn7969Wr8nTp1akFBQVFRkUL56laOhiU4Achr6gI1fvz45cuXS34IjmnQrpMUyi5QtWrVovduCK/btm1DSEU01D7HzbNnz6ZPn25vbx8ZGan2nV3jxo1reP/aKtBJxMyZM9u0aUOTMZaWlo4ZMwb3W6qR1d27d4fqevToESxJ8h6LuGIuLi4GzNwdGBgox+I+IurXr79//372FRfho48+quFT7p4/fx4uQJKiPvnkE6HLoN4A+Pv1118z/QRXJcmxhAitbuzYscuWLZP8EBxVhg8fDgVsfDmIZ8IFaBHYKLzBVOLj42kj1LYcfcZZXldRUWFjY8MXmrRcHjx4IJyJEOkfHIJo4507d0QdPPLy8pAt29raqg57ys3N7dq1q5OTExIwLc0TsF4EaOnOw/KoMp0Etm7d6u3tjbwK92nhwoUSDkfCvafJcqKjo0+ePClVsYyUlBR9F8FANO3Vqxd7BQbntWTJEskrBn7zm9+ItP8f/vAHE3QUNWeysrJoLL3xaNJJbdu2ZR1+5dBJ0L409oT6uvFoZxp69uyJjMv4cjTpJC8vry+++OLq1asK2XRS+/bt6XXPpk2b+EKTNZbXr18vWrTI1dW1c+fOcCaLFy92c3Pr0KGDLlP5l5eXQ2G/ffvWBPU0T6pSJ4EdO3a0atVK9wH2OjJu3DhqikxOTl63bp20hSt+3VNER1Cfjz76KDw8nL7K5BPB//7v/wo9+7t37/77v//bBO1Y5sz69eulWkULOgm38qcP1K5dm3TSzz///OWXX547d04hj05CwKZot3btWh7tTEZQUJAkgwqhkxo3bnzzA8iRSCdBPCGV9/PzU8jjE54/f96sWTP6jKPIt6Avx1LIyclp06YNkna91pWHzzHN/HDmSRXrpIMHD0ZHR0te7IoVK6jf4tatWxMTEyUvX6GMW3otqgWfCP1ubW2dlZWlkFMnQXcK27pyc3M///zzGj4bIUSSASMD1AKdhAjX5AO//e1vSSfdvXsXwc/d3R2XWnKdhId09+7dLVu2zMzM9PDwyM/Pl7Z8jiakmk4COumzzz5jZmNvb890Em4uzAb2KYdPKC0tTUtL69Onz/nz500wHpNjESCRDg4O1usnyLRJzddMqlgnbd68WY6u1lAwsbGx+ID8PiIiQvLyFcqJVdq3b6/7/tTSvmfPnh9++KGsrEw+nXT8+PEvvvjixx9/RNp64sSJ+vXryz2axvwZO3YsyVPj0fTeDRvxKEHELF++HDrp1KlTkqiZoqKi5ORkJyenqKgoJIII2zW8Q6WJkVAnqX3vRhvhTP7yl79MmTKF5vfXcVlJ7Vy5ciUmJsbT0xOuZsKECUuXLi0oKDC+WE71wN/fX19PAn0vyTtoS6SKddLChQvliOL3799v1aqVQjkzpHwDwhEUHz58qOPO5BkVypb8MWPGyKSTTp48CXl07NgxpAsIrngYTDMZgZkDnWTkiFyGFp2kUHYY//rrr6GTEO0CAgIQBXfv3m1YYx5uZffu3d3d3YWzgsFmhOvncOQmNDRUknK06yTQr1+/r776qmPHjkOHDrW3t09MTNTrtQjjl19+wSMP24OpsB7oT58+NcG8GBwLYuPGjaNGjdLrJ5s2baLWhxpIFeukiRMnSvVCRAgiE1s1CU5H8vKJJUuW6DIHXXl5+bp162bPnk06CQH1iy++iI+Pl0Mnef2/9s48rolr7eP+cW3V3mtba+tSl0u1rQtCWAUEAQFRFBdEtC6gCCKoKFdEQKRataIVEUUrFEEWhSqIgAguLGFTKiBwWUREKKsiGJayGdH30bnNm9IISWYmCzzfT8xnksx58uCcnPM7c855Hi0tIoUT3nWgib51ErBz507OvFtpaen27duhKnp6er548YIf++3t7VCvQIKvWbPm71HmU1NTN2zYQMXfgYiUfnVSY2PjqFGjiDahs7MzMDAQTgDZxP9uu4qKCmdnZ1VVVZ7ZnKA6EYvnEOTNu5ByDAZDoNDHcDKxlWQQImadZG9vT9WESC/k5OSIA2VlZZoCYUOXNmvWrD4Sxj1+/Hj37t0g1Pbt2xccHEzopDfvQhxBd0u5ToL/SSsrqzfvFiVwUsoj1BIVFcW9Cxe6uubmZnjmvNna2gpjNe4ibW1tZ8+eVVFR2bRpUx991cOHD+HnAI2Xh4dHH6FBlZSU+JRciORQVlbGHdQYVHV0dDQ8c78JkigxMZG71G+//bZx40aQPjwzDRC8evUqNjZ28eLFixYtgoP33bwE40TjgCAErq6uAt2kgA5LRkaG09D1CuY0sBGzToL/+ry8PDosz58/n0gXumLFCvp2e23fvv3vaeNAqkdGRhoaGi5YsODq1auEkOLMu715F8gEBBblOklfX59YE+Pj43PixAlqjSPkSU5Ohtqora0dFhbG2WQLBxEREXp6etDVxcXF9TtJBxfX09OTfmcRSYGzRo2TaYCgvr7+0KFDoJudnJz4yVCkpqbGYrHo9BSRJkCmC7Q0GzqsCRMmwMifeIk6SXRA187/Eh+B2Lx5MzFt4ejoSF96Gmi2DAwMOC+h5u3du1deXn7Pnj3l5eXcZzY3N3MvgoM2rqCgwMbGhpI1mwD8sUTQge7ubgUFBSKAJyKB1NTUEJXExcWFOCDyKPFZHCoSg8EQ788WET0goBMSEpYsWQKS+uzZs6ampiC4Q0NDOfkl+gVKURUdAxkYGBsb879wE3QSDNK+/PLL/Pz8N6iTRAl900NHjx4NDg5+8651EDQmpEBAa1VcXEzc+oYmLDw8nP+/CByjKizCokWLiNCaAQEBMMqkxCZCH1BJTp06NX/+fP77OQ6bNm26efMmHV4hkk9lZaWRkZEQyzrb2toUFRVRYSMc4uLitm3bxufJoJMuXrwIfRYR/QR1kuiYMWMGTZahHSEiDty4cYPWuHyXLl2aOXOmg4ODcHsmt2/fTl7G5eTkEBtzoPoqKyvj3XVpQUtLS4iUMnC5ly5dSoc/iFTAZDKtra2FKGhjY8Od1AgZ5EB/wWAw+Jx8IHQSFFFRUTl//jzqJNEBCoMmy1VVVdAiZGRkJCQk0BqNurS01MLCQujir169WrZsGcmZQRMTEyI1XlhYmLOzMxlTiCjx9fX18fERoqC6ujpuaRzMqKqqCqGw8/PzobWhwx9ESjly5Mgvv/zSxwlPnz49fPgw1DczMzPQSW/eJWweP368oqIi6iRR0NraOnv2bJqMZ2VlTZw40djY2NLScurUqaCFqVoJ1Ivnz5/Dt5Cx0NLSAtpc6BRshYWFRLAoIrBvH1ulEEmjra1NTU1NiIIBAQF79+6l3B9EWgB5TaQcEJS5c+fCGJJyfxAp5dmzZzx7YehNkpOTQRtB3xQYGNjR0UHcTyI+3bFjx5AhQ1AniYLHjx8LGj2dT9hstoyMDGcKv729ncFg0JR3FuQXebVXXV0ttMRZs2ZNRkYGHMTGxnJSsSLSgq2tbWpqqqCloNmaNm0ahn4YtMDgStAUkwShoaGosBFuVq9efe/ePc5LFovl7e2trKxsZWVFTFMQuLq6cuY9WltbQXDHxcUJcVNTGhGnTsrKytq4cSNNlkeNGsW9xTo4OFhfX5+O73rz7h44eSNQU3V0dLhj8/ADaE3OhjtOkElEiigoKIB2StBSDx488PDw4NTwtLQ0jCI42Ni8eXNKSoqgpcLCwq5du8Z5GRgY+L7ITMgggclkmpubv3kXr8vS0hIUko+PDz8CKCIiYt68eYNhtCZOnXT9+nVOMAZqiY2NnTVrVq/vkpWVpeO73lCkk4DIyMjvvvuu7yvCZrOfPXtWUlKSnp4eExPz888/u7m5JSYmcoJMIlKHrq6uoLcSjxw5MmTIEM4d0y1btsA7NLiGSC55eXkCpZgkgGbwiy++4Gz16BVfHhmcKCoqqqurw4BN0Hvb0OwIvTy3trMt+unjsNqH91h1bMnO1C5OnQRDmePHj9NhGUTD5MmTud+JioqiSs38HRDgwuXw+jtQ7aDPCwoK8vLyAgFkZ2e3atUqAwMDJSUlBoOhoKCgoqJiaGgIcmrbtm3u7u7e3t7BwcGampo//vgjppGXUkJDQwVVOXD+4sWLJ06cSAz7UCcNTrS1tevr6wUqAjppyZIltra2xEvUScgbchshra2tBW18Xvb02BcmyTFDvko6P+GO30xmkEraxSwWLZEUKUGcOglEEkglOizDaGn48OHcG/U3btzo5OREx3cBoGOeP39OiSkYI4LoOXnyJKif69evZ2ZmlpaWgvG+ddiTJ0/4396JSBpdXV2CSm1omPbs2QMtFCikN6iTBishISGCBksDnZSenj5p0iQioTLqJATYv3//rVu3hCvb3d09b968Xsma+qDn9WuT7Jh/J/qPv+PH/ZiREpTeVCOcD3QjTp3U0dFB39Smp6fn9OnTY2Njs7Ky9u7dC+3C33NDUoWZmZlwwZN6AT0liCThErn4+vpSFbISET2Ojo5xcXH8n0/opMbGxi+++OLu3buokwYnoLAVFBQE2skLOqmgoCAqKkpJSQkKok5CgFOnToWFhQldvLm5WVVVlXsxeB9E1T/+Njmwl0giHqrplyQzDqqY4yfRSkxMjLm5uampqbu7O1X3e3gCAiUzM5O8nXPnzkF/KVxZuI6GhoZCjwkQ8VJWVsZ/dInU1NRDhw6BToLjCxcuQAtlY2ODOmlwsnv37ujoaH7OhHEpNFOETnrz7i746dOnUSchQHh4OEglMhaqqqqmT5/OT11a+FsUT5EEj+kpFx60SGJcm4Gsk0SGm5sb9xYS4Xj27Jm8vDyZubPq6mpoBDEYt5QCMrfvVgYGbdCWKSsrW1paQpUjdBL8fufOnTthwgTUSYOT8vLyhQsX9n1OaWnpzp07GQyGt7c3RyfBm2PGjBk2bBjqJOT27dtE+goy3Lt3733hT0GjQ/eUl5d3586dSd/bfbz9u39ZLPlo2bxhuiofO23g6CSZRP+r9WUk3aAD1EkUcOLEiYCAAJJG1q5dGxsbS9JIUFDQ+vXrSRpBxMLVq1ddXV15fnT//n1ivy7oJKIZIubdiE+Li4uHDh2KOmnQYmRkxHMPB5vNjoyMNDAwgBOgbSEWwHF0EgBVaMiQIaiTkNzc3K1bt5K3Ex0draenB6ZWr14NFU/hTzQ0NIyNjTds2LBr166Jdms+cbT49IDdZ167R/vv/1BpxmeeuwidNCUp4FZDJXk3KAd1EgVcuHCB5Ma9xMREIkEbeZYuXQqNIyWmEFECvZqioiL3ir329nZ/f/85c+ZAo8NkMrlPfvDgQVZWFudlfHw8dIR43QcnMTExvebr6+rqfvjhB3l5eScnpydPnnB/dOXKlaamJuK4ra3N19c3MDAQ464NcqACrFy5krydGzdumJmZZWRkPHz48Pnz5zzVhUtJ2gSuubYx4Uf/MWXi2JhTcDyLGcx6KXBecBGAOokCoIvav39/QEBAbW2tEMWJ7U41NdQs9X/69Om0adPgmRJriChxd3cnQiIVFRVt376dwWB4eHjwuf8ABJahoSEIbpp9RCSOnp4eGLJ3dnZCY56UlGRqaqqlpRUcHAwNCz/FCwoKQIsPksDKCE86Ojr09PRIGoEaqKqq2tjY2PdpT7vaQQ9xL0v6xGXTcEONqUkBu4sFzkwgGlAnkcXFxUVOTu7IkSPOzs4wOBPCAmgskmvoegFDRpoSwiC0AqM6FRUVXV1duHzx8fGCBuWCrg6Kl5aWkvHhdUcH++FD9uPHr9lsMnYQUXL48GFzc3MYbllbWwsRmT0mJgaqHMkMmLWdbfktDfBMxggiLjQ0NEha2Ldv3/nz5/k58+6LOkZqyJdcUulf2iq6J79/9VpCo02iTiLL559/zud+SJ48evQIBnOU5+iF+tr9jvLycu57S7W1tdypUerr6zFrgUQBAzIykyBlZWVqamrCJQp81dDQevhw87ZtLDs71tatcPCHr+9r/u5JIOIlOzvbyMiIzD0hT09PTvBJQbnT8LtGRvgsZvBMZpAsM1gtPezGsyf9F0MkCXV1dTLFoSODAR7/cqKpu9O5JA2qjUraxSX3oyMf5snLy9O6LZ0MqJPIMnv2bGNjY+Fm3ID58+fn5ORQ6xLByZMnx48fr6OjM336dPgNEMsUQJNxJ3mGtpWTAhqRBKCt6ezsJGMhLS1NU1OTzzkXDq9+/73Z3p61YcNfHpaWLS4urwXMOYiInrq6OmhJSBqxsrI6e/asoKW8nuRMS7nQa4P3t8kXjpRl9V8YkRhI3k9asGBBfn4+GQvQMZmYmJCxQB+ok8gCCsnMzGz48OHz5s2rrq6Gly9fvuSz7KVLl3bs2EGHV1FRUVOmTOHkNDh69OiMGTPgWqNOknBWrFhRVVVF0khoaOjatWv5/2m/fvmy2cGht0j6Uyq1eniQ9Aehm+7ubmVlZfJG9PX1uduHfsloqp2REvS+WDiJz3EnndTg5+eXnJwsaBocgvDwcAcHB/I+bNq0KSQkhLwdykGdRA0dHR22trZEyhE1NTU9PT13d/fExMQ+4iGxWCwlJSWapr1WrVrl5eXFeclms0ePHl1YWIg6ScLZsmVLdnY2eTt79+7lBA7oly4mk7V5M2+dtGFD8/btr3BbgMQjLy9P3khDQ4OioiIncEC/GGZFvi9mIDzmZvKbywIRI6CPDQwM4LqbmprCcFrQcVpLS4uKigolHVlra6uCgoIE7r5EnUQZ8fHxMjIyxPGLFy9iYmJ27dqloaEB0sTR0RFecrbjEoCuioqKoskZqG29xoXq6urwDjgzZcoUxT8ZOXIk6iSJws3N7ebNm+TtwO96zZo1oaGh/Jzcdvr0+0TS28fGjZ24jU7igZ8zJXZKSkqgs+RnlyW7p0f2rxuXej3g064eildeIpQD3RAx2yBccXt7+4iICKqcuXv3blFRUU9PD4zqc3JyOKtpQYdx3+uC94Ve6yIEqJNIwWazFy1adPLkybNnz8rKyvIMaQoXOCEhwcXFRUtLS0lJyc7OLiwsDCTL0qVL6XMM9FCvugvN6K1bt+D98PDwF38CwwjUSRIFkQKZElMdHR2amprckQKgKlZWVubm5oIUg0ro4+Pzww8/QDNnxmAYfPnlnLFj4aE5duwKGZleUqmTdLh5hG6UlZXZFG1RvH37NgyruDd8dHV11dTU5OfnJyUlQQNy5syZAwcO2Gy1+1hf/UPlGUO/njR06tvHsDmML0J+5OikWczgFjZdGTwRqkhJSYEBs3Crix48eAA9ILX+3L9/f/LkyXp6ekuWLBk7dqynpye8Cf2UkZER5xxizE/t9/YB6iSyFBQUwIX08PCIjY3t9z8Tui6olNDEyMjIGBsb839/W1D+85//cK98qqur++ijjxobG3HeTcIJDQ09ceIEVdYaGhpUVVWJe4fQj+ro6JiZmdna2u7bt8/b2xsuPSh4GLQ9/Omn2nXr3ns/ydq6m8SOTkQ0LFiwgMJU39CgQW2BOsNgMBQUFNTU1BYvXmxhYQENC3zk7+9/7dq1tLS0r4M9xkR4jrt1jhBGo31cPmB8y3kpywyW2J3eCIeenp6dO3eOGDECxDGfuQI5BbW1tXnGghca6CLHjx/PcaO+vh6kUlZWFuqkQUd5efn8+fPz8vJWrly5fPlykM+UfwXU3dGjRwcGBj5//rywsFBfX3/Xrl1vcL+bxHPz5k1nZ2eqrF25cmXDhg39nsYuLW3euvW965Ps7XHLm+Rjbm5eUlJClbW1a9feuHGj33glFg8Ses21/XPtopE2psSx7t0rVPmD0E1raysM0j799FNoNEAWr1q16ueffy4qKuqjiK+vL4z5qXUDFNL06dO533F1dbWxsUGdNOg4dOgQZ26luLh4/fr1UANSUykORQqN5rp16xQVFefOnevt7U00eW5ubtxhCI4cOQKDQmq/FyFDdna2paUlJaba2tpmzZrFZyyl1qNHWZs28dBJdnYdOOkmDezcuTM9PZ0SU4mJidB08HNmZUdLr9jK4xLODp3x1ef+++F4JjOoqZtUkAtExMC4ncgUWVlZGRQUtHHjRnV1dVNT09OnT//3v//lVgvQsMyePVvQ+CP9cubMmV4TeaDeiPH88OHDZf5kzJgxqJMGOMrKyr12Bzx58sTa2lpfX//WrVvi8gqRBCoqKqhauObg4MB/gPjXnZ2tBw6wtmzpJZLaAwMpcQahm8OHD1+jQtFCzwf9H/+Jj1Iba3qt5gaR9IHsVBBMcGyVjw2apHPv3j0/Pz8YocXExHzyySd/HzlXV1eDWLGysgLNBEIKRt15eXkWFhZ09Fb+/v46Ojrc74BvJiYmoJMMDAw4K2vDw8NRJw1kcnJy1qxZw/MjqI729vba2trR0dF4XQYn7e3tampq5O3k5+dramoKlPnkdU9PV3p66/79zQ4O8Gg9duzlw4fkPUFEA3QnAQEB5O0cOnQIxvQCFanpbNtZmKyeHjYt+X8BJ0duWfnP9YuJ48j6MvJeIfRRVlbm6Ohoamq6bt26frdg19XVhYWFwcmTJ08+duxYa2srtc4UFhaOHDmSew/BihUrvLy8cN5tcAGj/Pj4+D5OePbsmZOTE7ExTdAMX8gAQFZWlqQF+FHPnTtXiDxfiPQSGRl5/PhxkkbKy8tBXpNJo7S9MOnt7Nutcx8oTBt9xpUIOFnX+d4wcog0Arrq0qVLJ06cgMZq3759/ea+FQiQawYGBtnZ2SUlJe7u7lOnTgU1hjppEEFk9uZn+25TU9OBAwfU1NQuXLhA1XZfRCogn5Dy/PnzNMV5RySW9PT0gwcPkjSyePFikttKWC+7lNIugjz6IvTHodNkxt04A8ff5d7AjmbAAL2YnJxcd/fbiA/w7OfnBy9h/N8roBHUBNeH6cppF+WYwarplw48ustnkAiQ6adPn160aJG+vr6TkxMRNiktLY1YOEWQk5Pj5uZG6Z/VF6iTREpiYqJAHRjoaA8PD2NjY/pcQiSKwsJCGKtt3bqVyGQshAUY20Gz1dLSQrlviMQCVcXHx2fLli3Ozs5ZWUImVouIiBA6FS43zMZqYsbtE0eLj0z0iOOg6r52TiFSREpKirW1Nfc7oGwuXryopKRkY2NDJBJ90t4MCmninV84q9bgWCXtUkW7VLZLqJNEioWFBSVZKZABSWlp6Weffebt7X358mUXFxf+EwVyY2Vl9euvv1LuGyLJ7N69W1dXNzw8/MKFC8Jd/ba2NkVFRRaLRYk/e0rSiN5xmIb8Z567iOOZzCC1jLDj5dndGKRbmrG0tOS5Sxq0xLVr1zQ0NNasWcMI+YlniHaNjHC2FC4mQZ0kOjo7O2fPni1uLxDJ5ezZs/r6+mQsZGZmGhoaUuUPIi3IyspevXqVjAUHBwcKU5C2v3oJPSL0i2OuHB/6zeSxMac4PaVM0nm19LDaTlryWiJ009XVxWAw+pYNB6+EDFecPkyDQSxQ4358kxyY0FAhKmcpA3WS6Lhy5crhw4fF7QUiuaSnp48YMeLYsWP878rmhs1mgxB/9OgR5Y4hEo65ubmcnFx0dLRwc7V5eXl6enrU9gW/seqJrvHT77eMWKjZq7+ckxH+UgrvKyAgx11dXfs+x6bgztvg7KecP1SX+1BpxmgfF+5Lv6MwWSSeUgnqJNGxfPnyyspKcXuBSDQglYyNjUEt2dvbt7a2ZmZm8j/75uXlxTPDIDLggUpy4sQJBQWFUaNGXb9+vbCwkP+mhtgdWVxcTK1LYPab5ECiaxxuoDbq0DbuznJKUkBwNcXfiIgAExOTfsO+r3tw4/+Dafm5fyD/LfelBxUlGlcpBHWSiGhqaiI5pYIMHurr68eNGxceHr5z504tLS1DQ8ODBw+mpaX1Ef22pqZGUVGxsxPDHw9qzp07N2nSpLi4uFWrVqmpqa1fv97f37+srK8IRn5+fnv27KHck6LWRk6o7rHXTr6dfbt6gru/NMyKpPxLEVphsVj87MY9VfGAewX3P6ZMHHfzZ85q7p8rhUm4K15QJ4kIX19faI/E7QUiNaiqqkZG/q8jaWlpuX79uqOjo7a2Nqhtd3f3pKSkjo4O7vPNzMwSEhLE4SkiQeTk5IwaNYrz8tGjR6CT1q1bB5pp9erVf8/Y1dDQoKCg0E5D/r7bz3//9s/7SfD47JjDp99v4dZJimmhlH8pQitQl06ePNnvaU+72mcygzgX+gOFaWOuHOes5W/okr5kkaiTRISBgQFVe0mQgcrx48eNjIycnJyWLVv27bff8ox129bWdvPmTRcXF9137N2799atWzExMStXrhS9w4gkAG04qOq1a9fu2LFj4sSJP/30E8/TKioqOBm7TExMTp06lZ+fb2FhIVCKeP7JYtX3ymfS66GVibsypQzoxfhcOun3e8GMlP9JpWHayp8HHCAWcYfXSmWIf9RJoqCqqgq7MaRf4MeYmZl5+fLl69ev87Mgt729PTExcd++fVOmTDE1NaV8iQkiLYCkjo+Ph5oD0oef82tray9evLhq1apJkybRkX0C6Op5JZ8a8j6RNPHOL4cf3aP8SxH6qK6uXrhwIf/nRz99/O9Ef7jWHy3T/cxrNxy4Pcygzz1aQZ0kCqAZgkombi+QgUlRUZGxsTGTyYRWbMWKFbm5ueL2CJEOXF1dg4KCiOwT7u7uTU1N1Nr/4dHdqUkBPHWSXGpIY3dH/yYQiQH0NGhrgYoQSWz+ZW786QFbOPD9vYAm3+gGdRKCSDd79uy5fPkycZyTkwNSycjIiGcgOAThAC0/yCNilVtXV5evr6+cnNyuXbvq6uqo+opXr3tW58Z9zbVKiXjIMoOZjThulDLmzJnzxx+C5enb/+guXO6Pt333iaMFHHg8/o0m3+gGdRKCSDE9PT3Q2/Xa5lZcXGxhYaGnp4cru5H3kZqaCpWE+x02mx0aGqqoqGhra1tRUUHJt0D/4lmeLccMnsUMln33vCDraukfLygxjoiMoqKidevWCVrqdMWDtwG03DaP3GwKB3tKpHXwhjoJQaSYlJQUS0tLnh9VVlba2dlpampGRUX1YEw/5K9YW1snJib+/X2oKlBh1NTUzM3N+42Uwyc9r1+XtzcXtjayXr43sAUiyTQ1NQkhnS/VlhBbHT8ymw8H1vm3aXBNFKBOQhApxsrKKikpqY8Tnj596uTkBN1eSEgIm80WmWOIJNPV1SUrK9u3ek5ISNDR0cEVb4jQxDdUvA01eW7fiAVz4GBlznVxeyQkqJMQRFrhp7cjYLFYBw8eVFVV9fX17SNYJTJIuHr1qqOjIz9npqenL3wHHNDtFTLAyHqXu2ZM+LFhcxhwoH8vQtweCQnqJASRViIiInbv3s3/+X/88YeXlxeoJarmUxApZfny5Xl5efyfn5ubu2LFisWLF9PnEjLwSH5eBfJo3I0zH8h9DQcT7vj9WlsqbqeEAXUSgkgry5YtKygQeKttd3f3q1ev6PAHkQpYLJaSkpIQBSkPHIAMYMr+YM38M9Tk0G8mEwfTki8ce3xf3K4JDOokBJFKoNNSVlYWtxeI9OHr63v06FFxe4EMZHpev56TEc6JBDF0+lec4xkpQYWtjeJ2UDBQJyGIVAK93bFjx8TtBSJ96OjoVFVVidsLZCCTxarnTvE2dMZX3AG0LPKkLF4J6iQEkUq0tLRqamrE7QUiZVRWVurq6orbC2SAE1hV+CWXMBqmpTg29hTn5ZyMcHE7KBiokxBE+qioqJg3b564vUCkjx9//NHf31/cXiADnNCa4kmJvwyYFMiokxBE+jh06FBgYKC4vUCkDwUFhZaWFnF7gQxwStqaZJnB79NJu4qY4nZQMFAnIYj0gb0dIgS5ubmmpqbi9gIZFCy7H/MlL5EE+qmms03c3gkG6iQEkTKys7PNzMzE7QUifTg4OERHR4vbC2RQ8OJlp1p6WK/ZN1lmUNyzJ+J2TWBQJyGIlBEXF8czMxeC9I2zs3N3d7e4vUAGC23s7r0PM5TSLs5iBjNSQ5bdj5G6iAAEqJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDeokxAEQRAEQXiDOglBEARBEIQ3qJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDeokxAEQRAEQXiDOglBEARBEIQ3qJMQBEEQBEF4gzoJQRAEQRCEN6iTEARBEARBeIM6CUEQBEEQhDdD4N9rBEEQBEEQ5K+ARvo/4tmi0XNhvG0AAAAASUVORK5CYII=\"}},{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,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OR5WXORZILbMZ+lKAZ0CvF4xwUhJ1EcD+iiSPooIWg9B0mYRV+cT1xTiteSY9XLUOinuH4XEryXAxhzShhyiVgF+nRyvXYzbUITfVImxUFG9mmJ3doTv6gnZ3RsS3BeCGA/eWUB1zULbM9BmKIJuJlWfQLKgoO2L0+wrUuwUKXYlECdhontSrHN2gnNngmPnwpCSR2cMctQjfdgzpH93aP8ur44om4ZUm6YUqwqoEYDVSyRvgJPX0inrOOQNWUQdCmUDnK6XQNdNZhjwSWb1WN1y3MZi4mYh1VJEccshmQkBfRZVn08zLqSalSGCOsIiOwMDOsI2l6G/LgBATtKT8oylWZaFYju5hNDdUXnk8MVTV4qptU85iVKT3zywlJNAL1scsKIV/WL0X81JL6+GhoYfZJJX1Y+ad7ty5Upubq6zs7Onp2dpaenL4M5r6ykncVnLbEjE745b4aRX0IMHDz744IOlF+vKg1uS4x1uiUFfvaGzyEmg3/r1+2+88cZv33p31Ud/fuejz9/+1h/+4cu/frUW9J+/+vorHa21G3U26+rqLdHq1av//ir64m9/+vzLT0B/+PFH77z30dvvfPT22x+/8+7/fPjRHz/99LNP//DnT/74b3/w6R8++cufPvniqf/85V++f8I/ffHFx3/+7MPP/vDhZ598+Nmn4PbfXqIbf/rrXz75y2caf/j5Hz74/NOPP//jO598tOqjj1Z98NHb73/8zgcff/zpH553+F+//Nsnf/7ze59+8t4nn7z/Px//7vdv/upXv3r7nbff/eCd9z545/0P3v3www8+XKIP/vVf8J933n//7ffeAx+/02KJ3vsAPMV7736gafDB2++9/ebbq0D/btWqN1e9/fu331n17ntvv/ve4uGr3nv3d+++Dfo376x66rff+s1b3/GvV70F7vz1v7x0+9erVn3rhe3fvrPqtwuHg4+//927by769++9+da7v38T3Lnq9799663fak67Cmz/+wW//ftf//Y3b/zn6c033wQ/xffeAT/u9xY23n8f/OgWDV6F51yBX5Q+//zzV/oJ/UVq48aNev/fKC0t7Z8rnPQj9KM46f79++BH7+vra2trGxUVZWRk1N/f/5N2799a4CQk4u8c1jIbElY46dXU1dVlaWm5dM/Y9RPZU21eeOj7v//U/g1vDSRZv7H1d79eZeAX88GfV7/13idfGe809qWZ+DF3QqWiit7cmgHQN19iadv3Nf/kUefl/QWn2kF3XTkw+2hm4kbhwRnJ0Hkht4qYQZFFphRkYsulhb11Dfvu3H1Q13NoMT6J3l2Xf6Jt0dXnBpee+eL9S0PXR7L2NpF727kDA4u+P//Dy5rKzgyLj3VojNpfFjeSzxqrccdRHTLIdmlklyjG1igWmlt0ePLCwwfz16/dmXu4MPBw7PaVwSsnj964fGL6GlBSAWHlp7KloKFCWbiY9P4fP7aI2RYjYafTmBg6p61l7+37p1vPd2RNNfMn28QL8e+XOWOtkP7s0B5GWJcAM1Bz5+HDGw+Pnp/tP3Gr9sTt+jN32m/PLSSYfvLkm7O3Z8avnZu8eXnm4Y2e8wP01vK4/GKkvFnQ1J/VMgh6/+mny99yDw17NxX6tckNKlmbyum6lQz9SpoBQNVDUgxQFAM4dTMKWF+EsShJ31SI0l4YT0JblUHdqhN0i4ANQtoGAX0jnwbaUMwIrFTq5nH+kUM1UCFcmxPcWuI922P9uiNjhiPSRoNCG6M8c1KdyAhnCsIGoFiIsOYKuKUg046V6shPchQkOaUnuyYkeDTHOjYmO7Ym27VBbGtTbUrSbEqh9tUpdjUpNjVQc0XGJiSwIYO6HkrXjSKbbSeYBiwklrSOwRhjibpIysY0+qZ0mh6VZMQnBfUKKEMNkQoFqqLRjCHQoTK1+fS1XIYOh71FIvWSFjpwxUZ03mYqW4dGX5/P3JTL3V4BI/ZB8vdjBGPiviv7Bq4dOH//aZTbg/lHitH9mpEksrq76fjU5dmfMvXwnTt3fvyA4n+7Tp069dqDzb8MHT9+fM//qc6eXfgdssJJr63X5KSpqSkcDmdgYBAREdHZ2amZCFSr1SEhIT9t/xa1wEkIxD9YrGU2xOODVjjpVYRAIMBrt3TPgRtnEF2l0ZX5n/zjq09+95fNb1hseMPk3d98rGWyxUvKNU2g6zjFffDH1X/T8zQPYMfgStBZDSAkNQ+9Zuz24LUj0pNtix65PjX/5N6V+/su3x+/N3fzwtVbIH7duDE7eeLS2YszmoKmpy5cP3Ds/PVbs7XTw0s5qePygcXTnrx7ShNnnXukPLZFSupp00BS/eRLBSd1XJpY5CTWRGP6eDGxtcqPzgIhyT6F4hbO9IplM3Nq5fL+4ryeotwuWW4HurEkZlAcrBB54XiB6FzfFE4gihlFRURTU8PImaGFtLAa/J+0//7ZunVbE+AJcEJ4FBnOpEbVAL61hO1NjJC+nN19wtAe6tYOpEs7zL0Dvr2DhB9jVB6nVh5PrTsTrD6fuP969sGZvLFD4xRV867ivGCFBN9Xrzy+Z/7J44s37mjwaNET05e/+eabzsMnyE2dtnKxXYnYpiYLhCTzOrZpHdOyirVFILIls40BuqEMZ1SOcq5OsitLsa2AbG+Iimzf5dsQZ65g6mZTTcUssxymcQ7dIo9lJRPriDhfZdH+IaIaKRD21amO9RCHppTQwajU0V0pg2GhDQme/DQXAOmejXRVpNvVpTmrkhw4EHt2iiMv2SMl1gWX4F6dsKUo2VKZ7tiYZKZKM6MhTZBoQzjOjI8wlsN02EQtDFUbSl8PpZrvIJj7EuzCEaCtAnCWGWiDDIpeBlU3g2pAJ1lwKDuq+bnH1NS9VVE1Mm0RbbWQ/rWAvoZD16azLThiI6bAlCnYTGFvILM2kpnrhUzfCjSiK1qyDy7am55zOEl+glt8phn0mdmn4Q5PvvnmxNXrWWNDjNEezp5+0EMXViqfrOgXqP9POAkEEpBPftpzvmYct7GxMZ1On56eXrr/9u3bSqXyp+zdEj3lJCZrmQ1xK5z0ajI1NdVkLF3U/UdzSTXymGpZRGnuZr/t//P5V599tn57UmrqnoKwLpEznWUbw7YOZznHCBKJZQh2HVbYOHbk7GuXZC8/17eUkyrO9S1rMDf/qK77kKRyALS8YfTitduLT126f0N+qlMDScrT3Tfn/j172HZJvbgkTXS4DNtXmTs62nHy5Nzjl+rn7fn7ytODGk4qOtk3fv0ko6MhViTzQrF8klh+iZzIzDy2oI2MqwIhCXQaTbYDy/TL5mzBkxyxeFcYySUY2IVICQfiIykJYUBcaH6UXw3cMy9j9Rbjtz/+0MUzysuf4BCOt5RiLPNQNhS0PYXoICPYNiPtWuAaO7XC4wfDCw+7SCetsvY7FB11U19I65wU0/Pzdkh5HgiKWzzZI5GcmCUdu3T2yZPHqpG6nF6JuLM0q6W/sGv8wdyjA2cvZrUNgoaU13nLi/xLFZG9JVvbcgK7ZHF9ZdyDvfCB+l0NEu9Khl0JzbYMBhJMWFtIar9vcq+fWwPUu4ltnM2yy2M6SQTGuQwjCWNjFllLQFrDJX/Fon6VRVmTDazNIVlXpQf0RUP3+GWOByQ0RsVUxYSUx+ysTHFRpjrVQFzaEpyVifYciAs+YQc3wqcj3KU80ZYDtyChjdhofTlcT4LYRCCtR1G0cdSv6LS/M+lfA/TVAH1jOmDhh7fyx7qkQZ0h6dZBaOsUlDGMZAAjG2GJ5kyMBYfgIScihmUx7QzTMuLX+cDqbPLXWZTVHNo6MsOIKjTA8TZj2ZuILC0yU4fG2shjpTYnZ+/JrDsOFExAuWNRtMGEdHWe8HBl7fmeu/P3Gi/05xyrSRqWuDYxnWqYW8vFcXVVpP6O23MrOQJW9EvT/yec9HPodThpbm5ufHx86Z6TJ0/euHHjp+zX9wRykh0c8RWdtcxG2BVOegXdvXv3ww8/fPS9YNW86n50ZVVmVSlQ0SAp62/vn7z36CF3so43Wc/ZV+dPzdmOFkUz5Jql8h2DP4rW684PL+Wk+vPDyxrsnZwGCUlc3ocRNkAZVSRxy8zNf/PQ/cdzE7fOTt6ennvynXfRcKFpaYqjzivPqLv8Ys0/eXxu9vrZ2WuaOsF3Zh/Iq4YR5Cqv8CzXcK57HC+OXCDit4CQJMluiwFEO9AMdxjFCUcAOckFQ/SIwu1ITgUJKZwcH0KMC6sJC2hIdBdkeogzjOO833r3XS2zrVaxOAMJyiwNbQ3F2KbhrDKw1llPOcm2GWbbnJ4wtJs14pZYFRxREhmljMRVh6PLmb75DHMWxT6N5JJEAL0TSRNVqk/dbtx7NadhilF+kNw4UaDJotSwbxKEJE5LL76uKam8IrGsuu3sUU0RmPOzt8aunhucPsPrHAgpK/VUCt0ULP/K5KTugIS+QJ/2RP8eYsQQJa4tJ7ikIFChcJYLTHKYenSSDoO4hg+s4QFfk6ladMoGJuAoTw/oiQobDE0fDkhqCEmuiYpSpflXJ7goUl1VEJ+WaK+WGK+6GJ/m6MDe0G31cdZshC0TYUNHGAJ4EwFSLxu7gUbaQAN0WIA2j6QjImgJSVocQJsKWATiHGJhrrBUZ3yqCx/iIk+2y8k0pWJMWBgLNtoYIBryKRZSslE+YKjE6pagdKT4r/mUr9m0NQyaLVNkhOJtRDDXUpir6cyvGUxtASehAV6yD1tyGIvpCkf1hOD74yAtOamtueKpaspEQfI4e1sPxroFblqPMqvGmpQA9oX8QGXJ4KnlyxIfPXkyefPS+PVzF+6t5A5Y0X+lVjjptfWa40nLSt5isdiXSf79Y7TASTDkVzT2MhthCCuc9PKqr693c3P7/v6xg2cWMwZJywePTV+ef/yo6GSH+FhT/ok29nB9Yq4cLanOLuourhm58a/0j6+nE3cvyk49hSRw48zslWUNWgaOgJyUxqyOJag0llUOzT4/yeTTtzDznazZR26/1HTbi3Xm3HUYqcI3NdsbmrWbmBtOzE8D5CAn5YnbEyg53ki6KxJwxj/lpB1YbCAMEgkkRFHi0spCYgd27W6GeEqQICr5CuE2cQnv/c+f/6Cz2RCbaZaKNk8FOQlvnYazgWFsmmDWLZk2LTCHlnTIwM6YsogIZWRgdtw2NNSGjLKhEm1oVEMGSZ+Kt8vEbElBeyJxZKH84Iyk4xSn5hC14Qh99JLo0r2JwWvtrIGi5EppuCo/qqwIdHyl4sr97/wB88033yjHDlDbuoNLSr0V+aE1hZSDRZgD2bADbMRBDmjiRHbv+cPo/hq/ZoF1LtWIBWykEddyARCV1gKUdXjaJixlS3bajvKE3f2xsb3hvuB2dmaoPMOvMsGtJGVLcYpPfYxfa6RXXaxPU7RvS5R1FsyKibShIq2pSCMa1piO0RNidRl4PTpRiwXo5mP0ZJgNeTgdMWG9BG8JwByhaQ6pma7cFNfCRNeWhC11SQ5yqBkdbUrDbGQR7YsytpYk+jTEGCgRphWZRqVwbTFhNYeylkMxZDAtSVnrcezVVObXNOZqGlOHx/WSCxh9KbxhaEZncFpXoG9N+o4GSmAFO6KdEzlICx7CbeuBuHclOrZCLGoRZlVY8yKmR0G+oLkf/KDm5x49TfD2zZPyU+OCiS6NQVr6/q0CQvbI6dMDx0/ee86i5RWt6P9WK5z02nplTgIh6fz5876+vrf+pRs3boSHhw8MDPxsnVzQAidlIr+msJfZGE0Iil3hpJdVRkYGh8N55lMTxy7Wdxys6twnGe/KPaaGjBXu6OFs66Lt6ufxpuoo5RV0oIoN1FYpBo8cPn/zxnPXNt5/MH/0zJUzF2deUIX0/L1rfVcPg75wf+b7zw7uP8VXdi9CUhK5PK9s4MDkcwvravToyaPBa8PV07XV5+vGb+x9sJDd9MeWQZ06eomQUxvPky86mVWYm92WxWsJhYt8yExnHt6ZQHDCEbyxNH8CHd4SxNkbSBv2pY74JgyGRNQDcVWc6GJGWC7ZBUWyzMB+ZmTw9qef6gbHWqZg7JJxjmkkSyLOvB5u0Zxh2Qy3aoQjO0OCimNDCqO3oqHuiHRdBs6ATjXBUo2YWJCTTAk4t3R0IA7HK5DWH6FLBzEaF45g68+KWi6VV58pDSnn+RSzdkkk3mRxOF/Ka218+N3qHBdu3CLWdKQo6uFlLerDx+vOdyjP1LOmZNhDAtC5J8rANjXnRsMHsqxzKKYcQI9B1GERtRik9XDyBgRND0VxEMK8FNCwrtT08ei42tRdEkRoPsxXkeRVmuiihDgVpljxEaZsjEU2wrQQZsjGGqEJFliMORxvxkCbMjD6ErQhC7cZAAwZOEMJ2igfZaaEGRXBTaVwOzLcOgJnm4SyR8CdmOnuzbFuLXFu0niniFS7oIxAdkR40+7YzoDUfh+PujhTBcy4EGEgRa1hUdZyydpMymYadz2Ts5bGXMNgrBMDWnmU9XmMsHoBrg8aVxe7VYEwlZLtigkuhTSLCoJxBcpdnejWlbS1J9FFneTcCjGtxmwGyEaxdLNolgOEmwqRkqCKGsXAvmvTi5AEOutIz+yj78DQzL3ZtLqqkBI56PiK0pOXf7hUzopW9L+sFU56bb0yJ7m7u+vr62tpaRksUUBAwPNSP/1UespJZPYyG6NWOOkVBF6sF6wFAMlGdXoAhCTYXuUWNdmpneTRSXNVk7er6BmUgkxKURIyb+cOdpAvH5Iiz85vn7o1fXb2ylIeunD1lqx2WBNaVNWxX1OJ9lV1997D3IoBDSTFEUvpee0gJ+2dmH7BIY8ePR49cLq5+3D38NT05Zn67kN5FQPyupGJ4xdfowOLOjs9Q8ypA/EoilEYjMsPxueT1HWj+0+Qc5uR4rpd+RKvQoYrDx9IZUElufR2eceFNsFEIn08gDgYgmzkZjZkZzSIcg5XdJ4aSylTugu5LnzGuu1ev1v1traDl1sK4JVBt84lmlUABmUE42qSbT1+R0uyoyTTMTvDBZ1pgcCsY5G1OTQ9HtMsF2vOwDnTcDEAGkqn89WF3C5Ybj9Kw0mSYbjkoADkJND4/ZzwauYOmiBKIEvMLYTmKRu7v1PjrLh/ryaGid3cF19Sk9imhI7mcI+oSs42gB65vnf20c0Hj+bIB1UucoY5DzBg4Y3Y+I0AUTeBsh5G20igGzBotlLilnJ80hAkdTAivDIpohAWU5Hor4xyEkIMcHhdOHETmbSZSdrMJuoL0QYoklEyYBxHtkahLXJghiWZJly0AZRsR0KaSRAm+UjQ5lK4izzZFoKxicRZJ2Dt0XAHLMw1H+JeHesmj7dHprgnJCVkBcRJA+O6/VMGfJO7dzgoU42LEEZFyHU8khaNosWmrKYx17KZ65gUrSziOhFRJ4dopURtq0fvrksOr4r1KcgwIDCtCGx9GUVfCVjVZnio47d0JLl1JXqAVkOs5AijGKpxHEM/iWYQRbUMp0PCcsL9+ZFoaUJzJXW8bRGVLn539i2rt0cDSRqjaut/zF23ohX9HFrhpNfW68y73bt3j0Qi/Tz9ea5ATrJPR64msZfZBLnCSS+rmZmZjz766AVZSm/MzYKQJJhs3tJBtmjBaOzQTnTiELYjaMEYvudOurs3xceLEZ6U6wfjZVYVEQ6V8Kfqrzx4+rWhatlDq2qhVjWLK3tBVBo59Nz00y/Wg4fzwuIeQNwikHeDkCStGLp5+0U5CBo7D+WX9muMYNaIVb2LdXbPXfpRkXNVLeOR5ALvlGxvSLYfIic+u6R1ZFLQPBAvrApnl4IOExSlKQubJgaP3DojP9mbc7RddKRF0TVYoBpQ1AwMTU2eu3P93O1bJ25cjS6X71JKQiukW5GY9//nj19vMgsgZLmWs2xKaeYlZNsaqlUD0bON4lqS6ZCLMCbjNyMp2mSaNoeqx2cZFdHcKijIai65XABvZAGdpQnFAkJLqrgfKR3EZasLs/flNFwoLTurZE+J4quZkdnZICSBRskqwA/w9t2nNeDuPniogSTQ0crqXYWliTW18BFl8nB29tGK8rOlnZeVXVeUo9cbZx5elR9v9ymk2LNxjlTSTi7VhUwzp9GN6TwLPt88j26ZBViy8G65GSHlsRE10UEVkIBCtDGA1kshbUqkbCCRN9FIm+gkPQ5en40zTCeZJpK2EDIdpamOpan2uRmW6XgXIsxLnuhenOwqWygJ5yKHGEWQjOJIxokEGyTSDoNwYGU41SRvKU+yyUt3lcaFq3aHKYLDOndDBnygvT5+NVGWJekmUpg2m6TFBLTzCGuEwBomdS2VvE5EAq2dRfQohWytTdlWkRJWFRtWGevMwdvgGZuLgc3FFIsK5HZ1rIc60b0z2b8/3b8zzQpL0E+lridR1uPJOjjy5nSKnz9rpzdrZxAvoFAeUqli7VeDkCSe7J17/J3YOFh97VJOilApfswtt6IV/Rxa4aTX1s9b3+0n1FNOIrKX2QSxwkkvK/DnxNPT8wUN7j16KJxqCR8S2bbhzFpQJs1I8NGmDW+TjfVG0L3T6e7bKSAnuW4jO8YANslEWxp+Vw8nflRMPlxx8ublCzM3kmqKAxXZ2/P4PrlCmKiqZeD1677N3nvY0ntEXjNS1bp/+uKLWOfK9TvCgi66qEUg6+RI1bszCpCc2kVO6hl7/Zoq/1woPviEIWuLIBWFUgt2AbIYYgmUVRXFKw9hlmg4aRdRHk9QMfJamWMNIGWKJtvo4/XcA0135xfQpPvsac7IAGj+6FD35Im8pgFhRbe8frRvbNLIyvEvq7Xss3E2KpplCdWungJykleb0KGV7FRDMxJR9XBUXRRFj0Y3EnGtlSJIt6j5Yjl1VEDqFQNt5UHFgl2FlJRqvKAjN7u+XzZRnjomSh7JShwWhJWzE3IWBpPS8kqyVT0gJ92ZfcpJ848fi9XD38Z694GQBDqtqYk93s/a06s82gUS0qLVlyqzJrsYh6rgoyzQjEO89mOS4CJesKzYVZHlwhdZkDh6aKoxnqyPoG2ikY1y8XaleD0JQQugaWFpOmTKeip5M4Wkz8Ab8TEWJLQNHuVCzXATp3ioEi3EMHMYwZUEc6VnbMuHeBYkOYuhenScfizZIIkE2iQZb52JsmLBfWsjgxtDQPu3R4R0BAdVhgb1BEcNBsT17jRVZm4SEkBC+ppJW0OjaucTtLJI2gB5E5K0QYjbnI2xyM50VyZ6Vid5V6ZEVMVGVsVuL840kOC1c4jrOZSNXPK2ytSd7Skpg7j68yXFhwuMoIAWkaxFImvjAZCT1uMobmF0kJOCw7LiFZW+qiL/uuKQNhV3T9/NB/+m9sdPniBa6r0UeTuVMg0nZVRV/5hbbkUr+jm0wkmvrVfjJIlEkpSUdPfuXbvvaWho6Ofs5wInOaQh1xDYy2wCX+Gkl1VMTIxQKHxxm6KT3cEDAtdOsnkLWsNJ1m04t2baDjzTB8bw8KG6epFt/YlWUKJlGsGch7GuxQT1c+M7c9IrFOjSiu05PA8xZ1suF7SPMKuw8ue9KzRqaTuYCFOCDkzKd4sW2YfxXWNE0biSnNI+kJOG9p9+3oGPHj85ff768bNXH869qFpFUe0IeJ4Mdk0sUQUayqhCSBq8CQULkESQ+0Ak8UhlmrA0TJUbXpXvpxQFV0iia2WS7t4TMzOs4T5ob01kpzKmS0UcbJ+dmwORZf7R430TZ/Or+rcGxK/64EN9ZLRTLcuugeLQTPbrEO7s4gf085ya6Q4lbAsBx02S51+mCquuPH3z+szDq9yuophGin8D1qcWtq0CHaKiCAaoTZP12ZM92L0q+J4C1F4FcbCeIm/mKTskpf0gJLX2fSekfezkNMhJvNb+3YWloYpy6nAPyEmgZZO1Szmp8KSQf6RVcKQTv0+CGGeD7r4koQ+VQNXV7iUiWyrPjMg2wNAMccBmGNWAgzOUog0VKP0S1EYeaQ2Brk2lalMpmxmAkRBjlo1yYmfaU5BWOIybDOJdGm8vTTfCAlZonAsAc6elb2WmmfGQG3DARixgkLzASYaJJJNEvKU4M0AeFVYRuqslzF8dsasjNLQ9OKQ3OGQwyK4xaaMQpy/CbObh19IoqylULSp5rRDQxRK3wtK25iXYylLtZKnulfHupQnh1fHRNfGRtXHuFVADAV6HSFtHoOvQKHp8ipsSW3qy4uCNse1Cli6BsA4A1gHkdSRAG3xfANk2g+AZSYrC5lPbu33KFV5lct9ypV+FKr6xbuLKwvqDI+MnccU1UUXFdgVCG7nQUyGJVCn2nnpGoPeKVvR/qxVOem29Giddvnz55MmTjx8/PvQ9vUxN3B+jp5yEZy/zCie9vNasWTP5Q0kXB65O4Q+U+fVyvHtYzmrAuhXr001A7+WGdfDjCiWRuKxURhhJ7olXeoVmRVmUoiyq0c7NxJBqYVJlAbRcsV3EdebSNZzkKxHKVYMvfrkfrxszs7K8HiiqNCZd7hQmdAjhO0cKPeLFnom5CG4diDiLU07LNHt/rqxlr2bMSV43cnXm6Q0892R+bGay8cJg/7WDdx8tDBu0DkyCbZKpFRpOwmY1SCoH0LlNiNyGKLQChCQIthSdWw2+ZScBw13GA727LJda3ULqatvelOfelOXfnh/UURDUUTh48RR4wvy6vlhGcQyjOI6pSMVn/emLLwwCvQNauds7KJ6dpIghbsoeKeGgMr1fhextIPZ1Ens7O8+cBA988vgqrYe2u5HkV4/wrYOBTuqm9V0pajqvXBpoDLrxyOH6zkPlTXuH95+en1+eQerc9Zs9k6eEA4P0kV4NJAn2DY5c7V/KScWnxYIjauFkl+BIB/1QJbC/mFGnCOQLzDgMIxHZjMQ0A1hGOLIBFtCFUww4eJCT9JUo/VKUnhKlRaetITK0GJRNfJIhi2gFJ23BkGwQJBsC3opOsM7D6klJZoUcWx7Hiop15GW6lSdt5uLXA4AOjaTDI2wkETcRiIYUrF0RNKgoIrwofFdzOMhJ/upw9/pE50qIU0OySX2aS3Wye0WSW0WSBRulA6NuSKHqwQF9LMGHkOQLT9kGS3PHQ3cURkeVBgVIYn2kSb6yJO/CRF0GSRtLX4diaKHpIDB55EkOXT7HGugyBEgbqITVAuJaFlGbQ9iQhbUSkFwRlAAyK7YhJ6mx2ktV7FUm21Yu8CjnupVxktuKGjq76MyyUJ4U9G5eXnilKrax8uSVlSDuFf0naoWTXlv/TfNuDlDkWix7mU0zCUExK5z0wzp79uxf/vKXH2w2eHWKdKgcc0AVOyKJHhZHDqHphzHS4xjeEUA8VZazH0Nt3ApUuQONbsRBF7+2KJCTtjSQYivzkGWlqNJyv1zBNiE7qFgcosxJLVOUV4393O/r5IkrhdJecXZHPFwBQpJjqGAnVBoEL/KDSlG8ulvPr6zSv/fk4twc6Cr1/n9+G8lef2Gg6HSLxmXnOh8+nrt9935F274M1sJ4UjqzOrt0IfSqdXDywpVbrJw2Cr+JI20LwkqduUzTLLKlhGHFY24TC9KqKkLr5PZ1XMsapmk1zaWR71UrJrY28Eo6AzCSSGphzLeoBAJTR/8+E3uLv5qsc6/N8OzB+fQScQfl//x2jmz/lYv902eOzTz96p2f219wmLy7hehQi7KuQbg1wqAjxP6r8p7LFcIj3Us56dCNC08/n6szNXsnKvYcGj9zftkKxMdPngxfOldx/HDDqanL9+7ef3Sn/2rFIicdurlXNNUNchJo3kRnRLbEhUB1xlPssYA1h2gKkKzpFBPKQnld3UyKYQ7GsABtWIjWXxhSQq8TUL6mMteRmAYwnjk8yx6W7UWQ+nKFvlm0cAktMJ8V3sq1rmBsVFK1ikk6coJZFWI9C9ChAjpksraApJVF3Egj6hMILpy08MJwkJOC60JBTtrZFuFSm2xXmm5dmrGlJd6tNtGtMslJmmZFQxviiRvSaZtTyZtRJE9sqh8hyR+TuBOT5E+J9+InbRcke2aleIig7qLUbWKIFghJKIY2mqGNYejRaHa1NPsK3noCYZ0Iv7EYpVcON6zMNK1Jt2/KiBrGpw1JID15CW2q7eUyawXZWgHYqrDWJSjHUvRuCTRaDGg4CXRycRl7T/+Fu7f/uaIV/edphZNeW6/GSW1tbajn6CfPFL5MC5yUilyLYS+zacYKJ72UpFLp7t27X9AA/BJtvDAuOd5OOlQRPyrBHlDlHSvqupi951q+xqNX8/OGg7h9XpROd6DXjdTnCun2c6wihbeL0yqKc4u7xYquyMI8bxE3tkKaWFEoUKgPTfzAYv7X1v37c5OTF45MnD975hrISaCzstU+CRKvuJxwtEKzVk6DPs+TZk3cUv9zoSTwDd5ILaxUma5QEJrKZceb9l052TI2JWsekdQPseQdi1nCNRE/ew6cEck7Y7lFHilZNiiOAUAxS6VaJNIto+lbkjnhfJltJdO4igraXEGz5dC3IgSeSVm2CTTndKYfVhRNl4eTC7PKuvCDRRuiHFb94X17UaRXMdw7GyYX1J2burCsz48fna09QQnuwe/oQG9Xp/t2pgf0ELsvF52/N6G+MLUIScqTY1fv352evTl55UpW55CwcxA0Va1mjDcXnOhpOL/35tzTDFjgRb9x9/7N2ac0+eDx3ZN39x+7MzZ958y1O7MXZm82TB9UnRomqes8KWyQkxxxZFssyQ5FsKMQbXmAFY2ih6FtZlF0CzCbCnB6UoyhDGVYjNTikLUQzA0Qpn4SxzCNZ5LJs8eId/BEPlxuXJ4gMJu7tZ5mVEbSVQHrFYCOnGRcStTLIWymkjYA5A046iY42RyCswwm2fnhQwRREYVh4XUhoU3B2+ri7UrSLUsyN8nQW9ti3Rrj3aqS7MWZVlS0GQm3Hk3WopFtUCgvfOo2fKoHNs0Tl7oNl2pORjsS4e6sNLdsqFsWdJs4WRtN13CSFoahDVA3FhH0iylaXIJuMdKyCurcnGjfmLxVHRPYExEwAEkaY0tO1OIHa+0r6CZyvEkx2lQJt1AiHFTIXXmJgfkQfz7fm5HrThP7ZckYw70vmf99RSv6X9YKJ722Xo2TDhw4oHqOLlxY/jv9pxXISY4pyHUo9jKbpa9w0kspICCgqKjoBQ2O3r4AQpLGucfaco637Z9p7b6UNXJVAkJS8zRHehTHGvSlDXtQh9yBAVdgwC25KyBlJL/q+HBRyYCsuB90XnFPUXu/tK23pmXvkakftSb/Bbp1616paqhQ1gtaXtTX1npwYVvaC8WXBabJNJCEFzW9eIlcz9hxkqAJTqsm8BqyVb1V7QtQdXD6bFJeUaLkqdHVKlpdK72qU1jbJ64fFNcN7j92/vi5q4v5Dp48+UZQ3e6Tke2WKDAkMc3i6WZxNItIulU0wy6aEUbMd2Ux7ZroVg0kSzrRJonkEkF3S6JY7wKsEkl2UPKWdKZHqhCTW+ctp9nXwI1YAW999N46D2t3ApSJkMlJlVenr/9zIb5+burW5aO3Lj+Yn2s9VBDcgdvdjQ/sRvt14ZKHs0ev7X16BW8tFOU9MHNefX5SA0zJnZX4tjYQktgdPRGthVHtheJjatDFp/rnnzy+PzdfNnCA39yfWFMT3VApODAwdGmhtNnw8bOi9qGstsHC3vF9F0+Vn2tJahVuFRKdyERnPMUWQ7RGERzJpG31lO1NdEcpZ72YvlZE0RKRtAWkDWySHh7QJ5N0oXSDJLZREkcvhaMPYVsis5xIIk8W11/ACytguTfDzCrRRuVow3I0SEvmpVQ7JdUyB++Qh7bnoa0oGPNgkpUX2dKLbOELuMAzPbIgtly4EZ6wCQ2+EFFbgndtjnevSHCrTXDIT7eioYxJOB0ieR2DYoeHg3jkjk9zw6VvxaR5oNP10CRjCGCSSrIBkC4iqJsoRRtH18bStXD0tcBCIu91QvJaAVUrFzAqgdnVQba2x/p2R/j1RAT2hnp2JbqqkRGDwnh1mXcL3boMYVKMNFPCLFSZ25oTQ5pjgxXxXiyqA1lkBwi2CLNiq2S9F3ou3bt24969F+QPWxTYRtbZR65uGD/2mitDV7Sil9QKJ722/pvm3UBO0kKyl9ksbYWTXkqfffbZuXMvCi8dvX58kZNAo/creZNSyVFk3jGU4Egmbl88dCw5siuCPOxKHXanjrhTRl0j1JkZe2UL6932VzQM7esdODp9/hl5I39y9XRPaiAJtDS/O7+w9+iJy8eOXrp27c6BYxfKWva2D039YP7u6po9afjyBFQJaBi58tLVhemSnj3HUvIUi5y0i5MTklcULlNGFpQQyltAVDp4ajn8sWrb/EUyX2G+CZ1lHs8wi6bZJjCcU9hO0UzfUJZrBM2RQ7bJw9lDSI7RgFMkaUsC3iqaaBVBsk0FbNMAT4wwNrvYgU+xLIfbKDItM0I++vLPf/j877G7iEWEip66kenZ65KjfcIjXfTepnBCfjhS5p3BDc3jIcbkjIOtIAydvnt9aX/A/y4OLMV3lAU3FnM7+jDqxrBW2Y6m3MiBovD+osyxitapSXH7ELOuG4SkgAol6OS2Ws7+vvYTxxYTBwjaBlJrFcoz9endOTsLKU40ghMRsMcS7AVwdxXSsx0V3MrcUSUwlLF1BAwtDmVhGIlD3kwg66fRDFE042SOYQJHD8IxzuDbk8Q2hGx7ksBfyMf147fWZBqXoA1VKOMKpHEFdkttNna0PqGX5tuSsa0iw6M43RGHNPOlme2gGoTQ9CNputE0vUyyPoKsjyLrZBO0CnEGOeit8iSPykS3ykQrFkoXDugAlLU0qgkHtQ2f6orNAO2GyPCgQvWSAEMoYJwKmKYT7Olwm9y0dUT6OoC2jkpdzaCtZlNXc6lrmLS1fKqBHLmlJWHHt5Dk1xuxqzfEozPBqhHp3Mh1buDbNODc1UnODRDXpkTvrujAgfAdnfE76+O8OaQgUn5AljChWhJWk+3bxPFrYQXXKRjqrnPXboJX5M78ndGZ8b5rQxO3px5/8+/Rptv37nswuVZYisbEipWsSyv6GbXCSa+tVx5PUqvVc3Nz/zfjSRCkFpy9zGbQFU76YU1MTKxevfrFbU7fvbIIScyJmvjRXPGxFsmxLPZhaOaeSNTepF39ZJcO8q72eGjPTkifv3d70s5eetxoNshJMSNZvMmGmw/vDl07mjXSymhoqO4fu/Xjypt8X3dnH44dODO871RZ+bAGkgSidgiuNAapwGY3sYo6OkaOjk2cvXrj7u35u4duHT9069jNuWcHi1y4cAM8XJbfwxW0svkt+Xndx49fBvf3jh0XqrpgsjIQkiCS4l3s/FBpYUQ5L6KKFVkq5NV2q8ePNfQfrus9NHl6of2xc1f9qIXWGKE9PduEw7OAMKygVIdMhjWE4hQPuAUBzu5E1whMAAVw20VxDKE4hpOc4rCOMTi7TJxbDnHH/2PvvaPayvJ8379mvXd7+nZPT787M73uzJs793aFLkeMTTCYnKPBJhswOWcQCOWcc84JSSiAyDnnaBuMExjjHHHGAWM871Cqpl2UK3mqut/06LO+1pKlo3OO0BHnw95n/7YcHwfn+rB4TgyaHRPjQwP5x2cFhGV9/rnD3/7iV9HHc7I4+ORxcs4EnzHflQAXhZfzokGiiHJ+eBkPYrEAJqRZmtz8ervF2L3lbU+CTbQktmoI3X2InraoNlFoOz9xSBHfL/M1c/Oa6jIldSeFxgidyupJKQ1GwJPww33bnkRrH8g2qWQXG6lzupxWlh8V5wTCu7LgPiJYiAR9zISLbEX41RE8LAw7Du0LBsGa/TiCPYjkBCcH4gX+MEEISuaKE7hIhE4sjgObVdnThBvixuirXLXQw1qokw7iWAf1MtN678yarjdS5gXlw/hUCyqEXeWeTnBOIDpkkg7mUQ4Ukw8SsYepKE82ys8Mc9LD7fhoByTSnQV25kP3krC7UbhdEMKnZOIndEKArCiEVRLKLAkVFh2uhh/Ixx/MxjsV4JyLMa5Q+L8KCP/GInxGJf6BSviESvw9g/h7NukTFun3LPJuMcq9qTQQUKXejITu1MjmbLcWkHsz1rWO4dZM3GNCHaiDeLSWRgxkRQ1nnBhJix7IjeqsCNHjjkuVETJ+mlkYWEf3rcNHdKBjWlknmhXsrpFbz1ep51XVZ7ios0LZsmF8dWr7k6o2mKyGdAROOFJFOAIiXrp696f9ytiwsY3Nkz6aH+dJTU1NDAbj5cuXhd9gYWHhgy/5qQA8ya8I8kUVfUdcSm2e9P1wudy8vLzvXWzo3nmrJ2HPmkgL9dKlbiDgWUn8MOrkKDd2mBnaTwzoxQX34Y8PksMGsEcH8QmjtPgRyrEhfO4Uv/KUAtVpKmCrreGou39CVVp9tKYyj0v0w2xVXypYcxKkKkWbcmDazOqa41WCcC7dA072h7MqxPXEmg7KgEl3rRVI7bX2e6++auK6c+fxtWsPXr7cKhy/snJ/u0XKmoWFrXrft+49kZnGpKZRIHhNR6mxNrcDn9GKtAbULOCZh8QNo/yGIW7DYH3/XDpV71zMOljAOFTEcCdyXVA0XzDVu5zkm48LLcOFolHJsayEeEQaFhddQAhMIfokEnyzEX7ZyCAkPFqEShYTQyq4nmyeM5PuRsUHMaoCUwqOHs2PO152xCXiv/3il0fyjh5vwYXLsAkiRmgJF/CkYyBhJlQdUyku5Op7bl20TqBxfe3B9OrSwuNr65sb5x/f2fYk1kJf1WijcGhcODQR3y07MSgHPCm0Wehn5Kc06woUjScFRm+Z2OpJ2a31gCexJkeskoRu7UmuM/jWcAuGVeJFSzaH55mCO3IC78mGeEkQgXL0cQ0h1IhL7OYcbZV7KUW7aWSrJx1CExxgBDccJUrMj2NJjxEV3lyJs5JzUE07UksPNjNjdMgobWWIrsxLB/bQVYcZ0FUd8o7bQ+YbTX9MY56FEgymHc4mHc4iOeVSnFF0JzYlsAaVMlSdOVgU3FzqLoe606FuCJgbDHYIjj5Qhf0CSv6MQPiUgf+MgT8ghzjUVO3hou3K8PZZhIPJJPuTpP3ZxN0VJECS/hePsDV7LoPwe8qWJ33OIe7i0T9jUT9nUw8IEE4KsKeowoMCdsSh93OxdiqyvZHs2kDZrcd8oUcB8WgtC24vOtGXE9kCDW9C+GhRDiTOQRzTgUE/oiMFtUKOdlVFdmCC29DHGrhJ/dzsCXJqP/5EOyq9Cys4q3m6/vTGkyfXHz+O5fFdIfjDYPzhPOLhbKJLDqmcUb+w+KcGy3fv3t2++uDm8r23b7+1NqwNGz8Qmyd9NP+Z+t22PKmSviNbnpRl86TvITQ01GL5QbXvVl8/u/L83plHK1ZJAgI/Uxs3zEobE6aMCsL6SX69mJhh+skxdtQQKWKQEDKAjhzCx49S8qYFKWPMBAZ325OqBaaB4Q9f3X/t9sPWoYXG/vlTF278wMs4JPqRAkRtHlSXAFKkI3RxpfJsmC6iUHSsku+FIrmUEp0LSK7VBO9KeiSOHUVmoQcVNSstgCpZrvZceXjB1NuiUHeLNS0EnVA9Yli4cUGnHd2WJI16eFvprtxYres8XdM0ZRk9TZ6rhZ2mFA3gcjrRhX1Y9DCT29RZ3WBJb1Ql1ks84DSXEpp7FdazGuUJxriBKeFSabpOfILJOIbBHcUjA9GwuOPEzHgKhoYhCNBx1eSwXHJIDiUEio4QIGJ4uBy0PJqm8uEKXOh0HwIuCAULp0EicqpCI8G+scUByPR//Oyf/s3pMx94dQAM55tKDy3mxFaKc+FaIHLTiHWH5x5d3f6wTNdGX26sm1dOAZJUPll/ol9VMdFoWp57+nJRcJabNUTMGGZFt8jiGtWpzXp8Qx/gSWFCZZxJe6JOjxnvYc+NXH3ysGbkFKV9IMGsB+QprU2f1i/LMIiiSuieSQSvZLIHC+rBhXrLkYkG6rEGclanvHyo7WidypHNtmfSjpDoPlhmKJ1FHjXCWvWVDdpomeRYrSqwkR7USA9tZ/roqYFcanRt9VFzaWRdabwenK5gM2ZMw/dOU+ZU1RNCyLgwr4eR0Eh0Q3APltJdC6leJHpwCze+WxQjpYeAUJFVlUmY4nRVbq6lMFFdHMkHhfHLwox5uyjEL/DEXXjCHiL+CBXiyIPaceH2lVjHJOLBJJJdJmlvEekTPOl/cwmfcnCfsgifM7F/oGO+oOH20gh7uaTPWbR9QvpuOmUX8F80YV8ZdS+UvAtN/IxG/IJK2s0k7xKRDhnwBwwol/rqwOayhF5UQjcupAnuyqfsQzB3Q+m70OR9YrR3U0Vwe2VgK9KvFR7TjozspgS3VgeYKv31Ff66iqPKyki5yE8p8eDz7XAkJzDucAnBOZMIBPAkmqJHYR5/9eV8fK9erLcoh2ooLUAsot7HD37ewis2/uqxedJH8/GeNDExweFwaDRac3Pzq1cfLlHzE7LlSQWQXRX0HXEtRifbPOk7efv27d/93d89fvz4h79kY/Nt/fUJ66mXd7EdO19XdUqXOS5JGROkjfPLZpXoeSN23hAzTAnsRyaMUHOmeMUz4twxfhSJmU1X5DCUgCdBBKb27rPz525oTRNK3Wh3/znrhKzX7zyS1o9ZB44BmZj//itYz168WUmsz4Pp06o04QWi2HJ5NqaWrOqKh0s9K0nOEKxTMd4xl+CUR3QFE4KxtOMkVkkDnzKpRfVKSrvh+Hok2ggndyLLDOAcWXWBEkrooDaO9pqMkwJZb5m0AdrSIZmZuvJoZ9VvzZVWxDzVGuZFPn1cgGo2pjUqE+pFPjqCQxkpGFbtBUV4Q5E+UJQ/GhnEZRyvYRxX0fwp8KMkRDgcHhNKqIbm6DuyDX0njWdz8/jMFKruJFUbh5FWUOoxoo5CVWMYSeZTQPeroISXwQILsKE4RgCf5KqBuNTAD7Kh/+xx6Bf/8Nt9RcV+pazgbFYWTANIUjHWsHxjq1jA67dv5Jd7tz0JyOlHV96+29Rcmk7o0Zzs0VeOtdDPtHFOk3Cz2JhedFwvIqmDEt2gArU2V8ibT1J1yUQtorZNdXamZeXCjedb88+8eL0un5ku7mqCDnUyTg3jprvyJOqYYp5PAuVIDPEwHOXOhnhK4Sn1jLgmekm7hT47QpwayNSZiiUWrKoLU9NGHvqqPQ8Ic6EupUMT08VLHhCHdjD9m6j+PJankuqmQroqEJ4yYmWfsuZqZ9OFs/jhJtCIILObFmJAR8ol3gyZJ13qyRYVtNWlNRs8xDxvOD28gnq0DBVaCslCZaXoio4pytNNBZiB7DhLtX0NdY+IuIeLd1KjIvqqjqiqjwghTgycXSVlXwllD4j0KYH0f1ikP9CI+wnkXSjAfnD7iSh7DMarGuvKxh4Qke3EzL0MKmBF+8AUuzLq/mryLgjxMyxpH56ym0jaTabYyahuZpq7gemtpZWNiKLaKB4qph2WbYdh70EydiGp9kKUkw7iUw/xbIKGtcOz+hFBjSwfM8hHW+6rKfPRlHkKQPsRmF0MzOdY3B+qiPuQOKd8nNWTwir4UuMokLsPtjqLxzvmrJJkTafuZy9FZuOvG5snfTQf6UlIJNLLywu4xePx8fHxISEhz58//xl270985Unl9B1xLbJ50vcAGO3Bgwd/7KuAc+3i09tzj1Zuv3z06u2buUfXJu4v3X355Mp7lzHxL3VAzqhBp+WwObVoqRl2Sh1GpRyHciIh7Egkq4RTI2sakNUMy2tGrOno2eqc7Z28tC1JQOQN42+/fco5K619ZzHsVsCT0sFbnnS0QFxCNZco1bFEnksVzgmCcSrHOeYRHPIJzlWEMBQzmsaqamMgO8Do/kJQR0VVDRikqCw0F6VpC1LElUDKjChKG/fFy3Xu+Gh+Z21amyq9TQ3ua3r48mtD5B6uryqvqIRLUtWKquVWnfqcHtRgSm1QhhronlrcEQQuGlsaggR7A6oEQQaioelMVLSIfVRB9aQh3QhQ/3JIKqaAa0iUtqfXzsTULxxTzBxLMaDja9gVem2lqSbVxCtskYcR6AHlJN8yQkgJKSyf6l2N91TDvHQwByl8Lx17iI/YlRL8N7/8230nYwpEQqy0kaXuW7j8Ve/Mw9fP35ckIGP3L9578Tyv3xLbUWNNTr8grhtLOoPJGABHdIEjOsGxdbJcaV063ZDDNLFVfXLdyPDE4vtvfPruDcCQtgM3NWeWywBP8ogmOp4kOVdhPFjYqg4dsaOTOzNurVTZfOXC1bsPgX+X7t3aliRrlBdHM0fkKUP80B50RB/SrxXjpaN5q1ieanpir6B8RnX52TXeyARrcBTa1xahkbkxhYEchS9LvuVJdGl8rT7KpHVkMZ3wVBcsNawcHVKEDMmEnGCXJMqK01UVvAl0XkddVqcls9/k1SgI7xBF9XJ9DZwgjbysucVfJN3DZH3KpnzCIX/OpewlMvYTGPvA1L3VBMcqXEQx8mgRIoVd4KlGfSGg7WHTDiIYh0rpjhV0lwragWrqPgTVAcdyxjH3ECn72NSgekF6o1E+Ot16+WJ2tyVQpXQi8PehWF/AGX+A0R3wBA8FJLiuOqIVnD4ASRtEO2lYDly4l6rCR13mLgU5liGdilEHeDA7HnwvCvtFBcE5HeORS4uulGEE7YAkKesmrNXhmxWD73uSgd35HV+Q549f3Fm5v/76Y6adtvFfBJsnfTQf40k3b950dXV9vwB3YWGhVvvzTv0IeJJ/HmR3CX1HXAtsnvQ94HC4ysrKn3CFi89ui5e6iAv1+pXhO88eyhY6FUvtqisd4C5lea02ASsIBtHDy1gnGKJUiayMU7vtSQrtyMbbza7xC+97krR+bOP7Lr/oHj4v0Q9DqQ25UN3xYml0maxKYSxUKE/wuR54wmEUxglIJd6hgHC4nBiRz0/noCg9CbTeOMZwJHcgskqfnyUoS5YXperyUiSgFEllvg4Ot1DOXr1d0GkAJGk75oszOzZ97cWVjjtNLbfr+u51LD26DmlvCtfx/HWUwAZ8WBPqJDMvFldyHFUWXgmOBZdHAQJRzHHFMffhSXYsnD2L4MhG+khB2f3JFeNJoIGUzIbMeGOln4rkZ0H4GZGRRkpKOzNYAXdjYJxp6MN0jGM11g5KPMjDOonR9jzUXsaWJ3mJwYdgWb/4x98eOOpquVr38PWfBrhtvtvUrQxZDYmz0E6cbR6/fblz+VJ6uymmTWP1pJBmRmw3FjENLRkttwY5VZdE14DZjXzVACBJQIS1vcvPrz1a/2o+47U368L5iW1P0p87RcE3RCQxA0/QfBOoviXcBKzaMHzm/tPnm+/e3X+59vj111qU++9NAXokX2oiz5oF820v1l+P3b1UMM3MnqTGDmEDu3AhXdT4bjn2dBvitK58RtB8qw41Js7q0iZ2qAN0ooMclgdXGCmsASTJnSGO0GsAT/ISCe1RFDsk2b2CGJCJicgmHGUS4sTEFJk432BhTIzKTs+YluZyB+viu2syBoxVEy01p08xBkZSGo12MtZnIsrnYvIXLOpuEvMwi2uPZO6HkO0gpOBSdFgBLEdZVNgO9eJJXOjCJKEhgiYPYfN8KVQHNNUey3TEs/wwQg8MP4Anp3QONM6eW3u9dVnY9N2bxMmBAK7cnko6KEAd4mHsSeRAOTy5sSqtuzp9CBHXIXVXC/fCsfsQmP1gjGM+yjkL7VyEBDzpAA/uzILsLiW4paADIbRYnKiQpgOR62fmvmpe7TRPYCo1VcVSNEilIjW1qoa++b3Y2Hx6+XFNy+k8WXsOX8LW0ZquXvi5KpbZ+M+OzZM+mo/0pB0VC6VSqVKp/Cn36xtYPWlPMX1Hjtg86fvw8vLq6ur6CVc4fO+89cRMmLaUNmu5dQNkc0fT2WmeqU9qGEnFqD3zGc5FZBcUyZtF8UcywNwGqyepdKObm+8Wr91/35N6J7//q3v73hO5cVRmGOFrBsjSTk3zJKHRguvQ404pQgQUdxLelYh1I+GPYAmhxczCMg1FUsGtS6dpT3JbEwQDEfTO+AxuRSyzPLWmAJCkbDU0Xw+HaYTXHj58X5KASM72fXPrgIu82Vx/8vKVaGSK2j+Y2qUO66RE9JEih/BFnRnZ+tQEZkESCpQEA7kXEl1BlL2YL8dP0UhfIEn7sLgDBHQYpTStI81PWx6qKQnRlrvWQh0tUDcL1KsG7dMEda2FOEihh+gIBwrSDobfDyfsY+IcRWg7DtqOhXEUIjxF1W58qCsD9HuP3Z87fG6eNX3th/PyUc2VAcxk08lGbVlbY1VDXaxYES3VeAvE4SYF4ElhLaLiERxsqtoqSVn9yHit9ihamo7S5uEMDGk3UmqAqlXGa81Apu8szJy5OjZ9+dzK7baVi7qLp4duXnn9dmNqbAmPqS+AaIqxejynWSXuf7H2gcoL7969OzVx2awaobDrcnkqSGczY3BENjFzZvUyblZZoGUWyNipNazjvYzUAUXOsDJjlIWelwKehJwVHO+iAp4U36pyFnCcuGw/hsyXJjupNhZ2NFUPdHqpJI54xiEU1QNED0ihlRC0+RpLktQAJF1lBjxJcHqCcWaYcmqgaqytfKxJutitXunQXe2WnR4KlUodJKx9UtouJn0Xke7OFbrSRPsRdECVgstRkeTqiu4S8EAdbXQYPzCgPjWLONWYPCw/1srzUFIcKHQXHAfwpKMMRdeFxR3v99S9W+DBOo8a1GE53FkOP6xCePDYx+TirBZ1UX9DgFm2X8naW00+lExwTMC7ZKE8C6COCMSWJ/HhHhyQYzrCAw9J0rGOopkeKSSvk9TAVLbcOLK+8Zag7fAPQXp6Qbx8YVHxpCuLOwcUb757s/SQ2baYqh05BkQ1EMeUcPW05lcf+lxs2LB50kfzkf1uhYWFHR0dm192lywvL8fGxj548PPOagR4UkAuZG8RfUfc8m2e9F28ePHiN7/5zcuX31Vx8Ufx/M0r2eUeQJLYZ1tzmuU5TXK8pVVcPyprHJcaRzMQOvcMplMG1TGd7JRHPoKieqMp8XiZUDUAeNLkzBXrSuYXb+naZjQtUwPTS+tvvmsO2m3uPnjaMHAaWdeI628RL/Zbrg8ZrrUol+uLJlkBcrI7hezHYsQLJERGM4HUrKgHGbvL2boMhj6d3x3N7o0uU1cnEYkFIlqeBpGvQ+QL6Z2jZwEBKh+o3Zak7E5N/51T37YDg0tXOANjQABVKujRxvZQIrtx+2VodyXYjQZ3xWLcywjOIPw+GPFzNOkTBvFzLPEPcNIfMIR9BIwvttIfX+UiqnbmQx1kMHstzN4EcQBsyQjYUpVjI9hBDrFnIA6SkHZwnD2YYEfBu0jxrhKUowB1mItxF8LcRTD/GnBsZ7Vzfsgvfv1L4debb5+/fk0ZHCT19UHaJMf5zGAWI5jHjJIoQ0SKzE4z89SweqkZPUssGq3OGcFHmaUn1LUJfG02Rp+D0ecStGUCOW/UBEiS8Lwho4mWI6sF8Rto4u7TC38quPXk8QudYkgt7rdmbPDDV+jPz6xo+H1AKmC6/CoVXNLEHhpjDAwXdImjMZgYCOYEAp+CpBylEWM6RdHdzPheImNhy5Po55UnhxlZ/dq8AUN6S02wUnhCrAWrWviWYcrYYEVPW7RJ56uWubK5UURZMklDaehntQ7nqLZUqdDY1Lp4kTM3AniSNdlDWvB0rXXymZwmlZdY4CERekkFXnzeASI7jKf24ygOUfiOVE6ClnO0hprcriaPDjLHR4EIzw7zLvYUj+miDOwgIdGfRU7Bq0qBQ3xx5YNvuXJAldctDDIQvGswnjWYYB29uq2LMzNW0N181KxxqREeULAOICguOST/YmggDhyirHSXgkL4+cnIVL+cqgQ+sbhO5plO8kzbim8yMyiFbek77VXKdkonucRgXKIxh3MpBMvX/tR5uv5q6Hafcia1kJaaBsnJxWaQjVGMhgo1wXJz2VZcwMYHsHnSR/PjPInL5R78Ejs7u08//XTXrl379+8H7uzZs2d4ePjn3M8vPSkHsreAviNuuejkTJsnfStdXV2enp4/4Qrvvny83ZgESBIQZEMDcBIBomgYDy0QemSynDIojhlkpyzq4TJqoIGeJlEb2mbOXfgPVdh69+5dzfKo4FKfNfyLvY03BwFVEl8wZ8olOWpNhb4Ow2str66VSftrm1h1vRWyhnxFe7GkuYBtgrMM9ZK6EalljK7pISs6LX1nrOPsZlYvISdNxX266lGD5GJL95lzrWPnZi/e2NjYOftEz8XLVk8CUt5fc7Qb5mSAHlAh9iuQe6m43UjSXgjxAAS/C0H+A5r0KYn0OYL0CYb0CY70GYFoj0a7QeEOPISDEHZQAd8rQh+ogTkCnlQPOWKucmqqcrRA7VWwA1LYATTOsZLkCaIkaCjpBmoaT3FUhA+SV4caSkPrSsMs1UeboYkC+P/4l3/JLU5feaS5+kR853njtUe3WUNjuJ7aQjP7GI8JJFbMjJFy4qV6WFO7eW6688bZ+muzqFMt5ROWTHNdssaIaOiCatsr+Y15HJ1o2gxIkmrZktFBjzXjw4icIIg4CqooI9Q9ef4nw360+nyo91xP29z8qavXnl3jTNeDu2uYY+1LD/7UD9igG7d6UhFYA3hSCUYHeFKGRRvBJUeAUGEViOAyGJDAXFQcX1XYrqgeZ8AnWY03zYplXdGUgH2+h32+N7VBnW7R8CxbJRiAmMfmUIM9cWZ9Yp0B3r5VXpzSPsjvGOd3jAGR9U7dffLszeZb5h8liTjbmzKgqJjSA5Iku9wWbZE4ClluEgEQD7EgmCXL0zVm1zama+vBHR2k0X7S1ABmoBdc11ZR20Lo6KtbmeFf6CnWybKkfCA5MkGHYeTbDsv1jY2SXllhrzijk3eskRrZSE1qEYxfu3758cPkZlNkXQ3gSS4aoY9OGlArLek3aOc5zZe5DctM+RCWKdRzuxsVyx3RDJZVkqye5JfMLMTVHs6nOmVTtnOCotje6PM3r2WXRquM5IzqrOSS/OTS/OSK/FRwLkhaoiLVP1ndOTLu3bvNzbf3320+3th880OGl9r4q8TmSR/Nj/OkV69ePfkW3rz58CWEm5uby8vLS0tLm99+re7Tp09v3vyebnWrJ+3Lp++Iu82TvpPKykosFvsTrnBj861yuQ/wJMqpRqsnUS1dVk9qHjybCFH55/Fcs+mAJDllU11KaQndEsRE26uNrcPj7ebms7VXP+o39a3rDxdOX7t76/HD12vbkmTN8L1LaxsvJi5etvbfMdR9Baja2FRBbrEagtFx9FXytiJdf7m+Dy8z99a2zD568uLR0xcXVu5eu/O1cW1Lz2+MPDgzdv+sqG2IXzcsahwF0jRydseeXFl9ZJUkcn9PbB8usKvKQYuwVyMOqOD7xOg9WMJuGHE/hLgLSd5FJn5OJn2KIn+CJgOe9AWGsBdKsEPgDjDQdlTcfgl2jwCzT4hxUqAdzTAvEzSkHuXeiHI0IhyUSEccwaOSHghlIg1qVmN/z+iFDKgioIoWKIIG6SuDaoFgkwwGUmedq+8XTkc+6V3A9l1njd5QcobGUN2K0oavPKmghlWuZqVSalI1siy9orixhnOue+7R9Sv3H5im5qrM7YlKwwmFIVlpxLZ3WXvcSHPqlFZKpAYTBBcAnhQMEWcj9c0DO38O/751eft91JCysE0KpKBVAuky3X761bm5uXbS6klgRC3gSaVYPbl3KEovOc6ihBXi/PJhPgUQ7zyoTzLBFyqIFqpz21iQCWbddWPzrTrj1T7ehX72ud6MhhqCpdMqSUC6py4+fflKMDDO6R21zlVXP7sACMrV+4+u3X/85o/zqdUvn7V6EuVUP+BJlAUL4EmkeUtyjzJcIfGWiDwkQn+JRNw0ePXhY8Dt1tbXrS98tf6GXjcAkjVVK1o55iHpxDBuqB7QI2tKxZIaUvP9WzvHQm6DH2wEPAlIfo8oq4uvPfuVVIkmpwramiPNNUeNmtg6fVpzneLszKs3b569ufl0/frml4W5r63dUyx3npTyrZLknUrx+9KTiPxW13zatiQ5Z1HSmJrtLU7cX4H1WPxTMScKC7c86csklheGFWOme+Z37N7m24evn0v6z500DbiZxw+rTvtrFsVrb36yBmYb/1mwedJH8/PWTwLciM1mUygUFotFIpE2Nj7Qw/L27Vs8Hv+9FxoDnhSYDdmfS98R92ybJ30XBw8eHB8f/2nXeePFqnq5X7LYXd6j3W5M6pq4uHj1HlLYGl4iDijku+UyXHLo/gROwbD+3IOtjoDLNx5oWqeAJWvapq/e/q7pTV6vbyws3p6Zv2YxTGoE/dYM9i4Iv+5Js6sr//5lFx4gSWLzSBHWmIvQZ0FqMkHq43mickKd1NIsb2zpGr1w9ebDS1fvTS1cBW43N/9kaW/fbS49Wxl7MDtz+7xY05+L1OWh9Ahei6hhVNgwcunynbt3n2yX+Lv/9DmjayRFbk7SK2N78eF91c5G6JeehNivQO0VYfeSqfYUwj4mfjeNuItG+BxP+hxB2Y0k7qkk7wUT9+NIrpVUh0qGPZ94iEd05hPdRRQvJTWqhpnSRE7qIPvq0AE8fCSBmknSF1HrKgVNPNMQWz+QBVaHIwVeWJ4jkXq4guRVwgpFS/JkXGgNKSg17Jf/z6+SBNmQMTxlrBXbUwvt5MRImF5UehCT4YVhRPEkmXo54ElAKtpqi+q1ctUgWdYaz1ACkgTkpNpEHB7ouzMlPqUHdXNPNpGDiHSfcj6QALComGjWt++8sP3ft87TI4Ah5bdKTjQwo+vJQISnujbfbf2gFs/dtHoSj94GeBJK1YbrGkjV66MU1KA8rE8WyisT4ZmB9Eok++DE4UxVsqKWfcoy/+TU7Zdbfyk9ffPyxtqjlrGFbUkCYj1aHjxfa52/aJqeH7x05fWH+mpfv91ovHKONTciODsuOdvHbNXSLBrMcG1anxo/2VfV3lra0Fjd2b74cOcVAnNLt97fnKBhmNLdaJWkAqmIRzcDnnTryv1vO1yvrj5E9pmLeyXFvVLmeNubP7ZE3nrylDcywRwcBXd2FrQ2Wy6es/61sIMLT68pLnX5l1G9U6m+yQxAkvJQuqvXHsQU8w9nbUmSSybFN5tmmfjTpM6DdxYzhDLvRIJnNComtzSxqBC49U5GJWNE31z/+pp28HRhbYObecC5fsSpftRJc8qdvcD6trdj468Vmyd9NB/jSWtraxHfYGbmA79Pz5w5g0ajrS1JgCoNDAx8c5m2tjaj0fiDPCkLsj+HviM2T/oOnjx58utf//o7WvI+mo3Nt6uvnz1/8+rs5dtDpy4vXrv/7kv6phar2U2xVYrICkkh39h5ZWFtfeuq0lv3HoNZTfl4YznNwtD2yxrHX75+82T9+bM3XyvYvbbx8tnLl8bWWZlxlCXuLslXkdEN26rUeuH0tiQpLw+/2Nha85NnL2WWcba2H5CkHLguoVIZDZKHF4tPQFQMdZ/UPKpunOyZvCipHwUiMo/UtE5fu/3QOvR64N6k4VoLEHSNKo8gzUFoAVUCghK0gjAmDq9LpRiqM089e/ZyfWNDMjDF7Rnj9IwRO3ti20nH++F+HVWHtFuetE+OtpeRwgVyRw7VSUg4yMfvZxH30YH7TFceyxnFOYTiuCB5weVin2KBF5x7XCc6aZAlyMTpaFUGRllYK07WEEMrCIGZlNA8bliu4CSsJhtbm4bQZiJ0ETmiiAKhVzXvUDH9UAHNLZ/hVcA5gaWha+lxApo3KOO//+OvXLPdykZojYt99efUcSp6IJvuS2ccQXP9xJwUnRSQJMCW4sT8FIOkzKxI0XMjlbRMixrZ200ZH2JMjZhaxkScOoRIGUMWeBSw3QvYbgVMr2JGlUBM0Jm75hbnr99ae/Pizdu3l2+vXrxxz7LcdrKBF1dPj6onHzOTA5SUFJNMMNV14e795+vri+duCaTdIJIJqW6l9A6NLl8V9ozHyWWhdKJPHsozHemdSvKu4vvipUdZ6ky1ZfXFzqLtgAb1zy5p2qZqu09Z54f5Ubx49rKe206HyTFgHg4qxHa2WysXAJGenV5/u7NHder8tfc9CcilxdscponFMCrIDYAkGVgd66++a8j9i9fry/ce3nz0ZEdb6cMXL8evXgcC3Pnufb77+ClS1FyArxWbh6wrmTi9nANXHs9lx1cJ9YNT7y985dlqnlIdkEpyOUY4fHQrLhEEt2Ry3/zOSRHevXv96ildqDtmaHHdkqQvY5lwxM4WnH9kO2X+18LmSR/Nx3jSxsbG6HvweLzY2NiHDz/QQgAIUGNjo/V+b2+vQqHYscCdO3fodPqDBw++6UlrXwePxwdmQuyy6DvikWnzpG+loaEhLCzsz7zR+4+eX7m5+uq9Ui5v326y1APZmNqTRPVRJj+Ey6vSW+RnuwkLhpJZCWJON3j3/P1Xj+pvDGhW2mnTRqzFDHgShdUGeFJpgVrB7bF60srS3YtPb3ffXph4cNkqSVZu3ntc2z5bhDECVpGB0kVVyLY8CaouJJvFphEsrw0nbGdo+gTGoWJKHeAfeHlnIae2SK7NEIqQDTWcMVMZTZxPEkaViaJKJfEV8swKVRFYJ5cNKOSDaGIDgtLIrhuC6zsBT2J1j9C7hso6tClDlMh+aHBPlV8rPKyJgRnqRrb15GhNgSKBm4geoubFN4j99LzQGrk3TexJEMUTa6JhqkiwPI9Wd+vBk/bhhWpSA4TcUI4zR2UKApLIIRnUsFxuQBonMJfnm8M9Bpb75fBC8oTheaKwYpFLGceliOlUwnQuZXkWco+W8E7S0UEUjD8FESHI/d2ef/l/nb4oN0M59d3RUkWsQpGg1PtTJO5MztEaXpROEKHhHZNxY+pZhfWSDAM/UkmNs7CLBo2goVZ4fweFZS6SS9MVwgAc0xvM9CvnBFXRYxGMSCi9Us+u6hCX9IqQo2pok4nZPFBV25qqlcVaSF5atLcW6y4ge/EZR1XcCCU/U1/PGRsfuHyFPTi2HfHo1PLd1UxJfRK/NoQsDUBLfDHSMJIyjW8iNQ10zS/eff586MrK4JWVW08/PBnfj2Wq84wGW7cdFauxefmCbGGmbeXS0/UPjAW7dvfR+5JU0zH9dnNz5fxNE6cTkCSLsPf+n2V252+yufnu6ctX77eAbjN6aym8lO6bTHCNwrtGEtxPkHSDo99cDFCu188ELEm0se1PnlQ/5oSaKZq5f+aby9v4K8bmSR/NT9PvBkhMe3v7Nx+XSCTbbUiTk5NsNvv9Zzc3N6lUKqBKgGN905Myv05eXv6WJ2XSd8TmSd9BTk4Oh8P5s23u+vXVjvY5Tc2IYXC0587c9OrS0rM7l57eunzrHlnSdZwkcpUTDmoxB2tRzvXw432klAF2aj87c4xbNitFzysVyy2y5Sb8mLakRUSva+PIegFPAiJmdqr4vRJWZ339tEI93NY5d/Xa6je3PnH6ShWjAdCgJKg6skyaidVn4WpLMaYypCEPpgOSjzEAzwKPR2B5fhVM71K6ezHZu4CeCEhMFTe2khNXIY4sEgOa4hNDj8sS5YNqyqC1maXK7Ao1QdudxjDkqs0pBi2QbLOhfel0262JlqtTS4/ubJ2NNjbebV0u++7l6/Xlh/f7by8M3Ds7eedKz+XL4u6JUl7DcYgypEISApIUcSxdM5cGJhalxlE0pzWlXBKRSvaJwwcm445mYX1SaB7pLPc0plsBxzmL6ZnBCS8Ue1bwPCv4HqWccITUFyRwL+aGFYqCKtgeGKwfCRWpgvvy0J8fdf/NP/0muRrrT5UmKGpPKA1Rohp3ssBbzvbTMYMMnAAtK6mOA3hSYZ0ktoYR2EQO7+TGdmoyu2qT5IJwKcdHwnJF0N3hjHQGo0LEzqAzk2nM8mZKVie6pFeYrONlaRQFOm2iRH+MofCQ0n3MCBcFxplLDlGywpSsCKUA2Ci6q7e6rZM5MPq+Kt15+mx66Tq9eYjVOlytaU9i1xYpGmktQ51zl5YerHJHx1kjo0A4o2NLqx/4ZH8svbWj73sSkDfr3zOmcvbCdUnjmFWS7j366lor4AP97makvyx3nzwhq5qrGQaRuffFq2+tBfB2/SxLWK6rd68b3pKkuhEn0YAPZY74bP3nrQxs4/9v2Dzpo/lpPInH4wFK9M3H5XJ5T0+P9f74+Diw2PvPAk/p9fr79+8vLS1VVFQAd95/9v7XwWKxQemQA+n0HfFMRydn2Dzpw3z22Wfnzp3782zr5s2HDFbHiWxJAIziQ8FHClhhZnqIhVI6UAPq14Wx2IdY2H1SpL0e6mCpcmytdGmrcG+u9LBAvJvBgc3QsFZwdDs8Y5BSOM4uaOGjGgwy4yie1AQqqYGSNJlQXmIZNxkkKijVlIJ0PHHf8oeuF2non4PxWzCSDoSoLY9kTENqkcQGgbAnH77lSTHF0gyULgYtCYSxvEuY7tk090KKeyE5pIyTgBIE5TGzoJrYEqlbKtMrnh4UzzyWwg+IY0SkcKNzRHlkYyKlJpwhTq5VnDTUZFv0uuVvHQO1A0Ceuicv5pBNmUQDWtkpbB4D0ja0AHhSOb4uuZQJeJJfAiHwJC44BeeTTgA8yS+b65rHdsmmeeWTY0EMDzDPEyr0hYp8IMIjZZwjxRzPAq5rEdexnHEISfIVYbz4mAQlLheb8Ovf/HZXaDxgSAnK2kiBxoMnOllTW9zSgB3vLrZYIk2MLU+ql6Q38eMHOOlDyurJFshEk6uS5i1hAZ7khme4wugRNAZGzyngs3KErIJWnNWT4pTcdLU8RSUNRYk9sNyDdKavnBpgRPurqH4KaqiSFatUA54E7+gGt3USuwe3JYkzOP70y3mNLt160D232Hbq4s2HTzbeblqvv7YsnLNKkjU1p07/xw/F+eEL70tSs6j7h7zqzcbb5y9e/1UOB3v4YAlDqeLrghRdnvT2YOwYcuHRh8s62PgrxuZJH83HeNL6+rr4PRAIxP79+8+fP//NJQETUqlU1vv19fUm09fq41ksFuyXIJHInJyc7x6WRSAQg9Kr7dNoO+KZhjpp86QPcfPmzd/97nc/3+/9iysLfZO9E2curb3Y+lu2s3M+MVcamMJ0J2CcEPiDBPRhMcxRjHThY9z4ODchzoGF2a+GH9BCt1SppdKprcKjo8SjpdytqcLNWO7dWhzQURrSCooZQCQO4HCWOsCTBA392R2sSBUmQooO5aKDykjhGYz4REFxubap7QMn1Ffrbwzdp6y9J5LGsebOMyr5IBAKs60QoY8sEoeWikPAQs8ShlcRwz2b7l1Edy+k+lUwg7HsgErOMZzYJ5/jkcX2TGP5xtD9Y+leCUS/NHIYnBlPlMQT+LFCYno9oaCNzJgzihd71jZ+aEG/cyt3rXq0nTOXbqotkyBifUYVLTKdHJNNCknFh6ThggpwwcWcSJAkEkkKgKNCYNgcEtIfSgzA8GNp9CAkxrmM7JrH8isTupVwXUqYPihiCB0dx6qG1oIlrRIyy/QP//PfPjl0OIosOUZWBdKlngyhG1sQoJBnNtfndujQg3rCmLF6Vps3oYBMN54cUp0YUNjrKC5imreI6YmkuZcxAsCsaikbZWLn6hiZjfjcLjLgSWlGQa5WlSgWe1Xz7LD0PWSqE5ftJaGFqnlBCt5xuQqQpCSViTo4zB4bV0zMbntS76Vl6w9h9fkL5dgsp3+MNzA+fuWrykza02fe9yTRxOR//MjceLPRrR22SpKJ0bL67UPV/uuwsbE5M7syNb384PmTv/S+2PjLYPOkj+ZjPOn169fk92AwGAsLO68ftLK6ulpcXLy0tHT9+nUQCATc/vuXF3e3tbW9v9gH+92+saPE4LTqgym0HfFKtXnSh1Gr1fHx8T/Hmt+92xw+qzANgYAYByH6tiZAlUx1U6GJHN9U2hEcJoxaXtIYU9kdmdOc6CGqdmKgXVkYJzbOXgk7JIDZS2B2ZrBDW8WRjtIjTWWu5goXTeURLcizpcSzqziwoypmBNl78/TUzaXUEYp/e5Vve6VPA8hLAPYjIIJyqbEJ/IQkgVr7gasxANbfbFxYuTu3dOvh0xfXrj6wehIQOrfjJFyTRTKcwKo9S5lHcug+pQyfYqZPCTMYxU/lamLx8kiyxA3M9Mhme2VzggqEnvkkj0KCVxXJF0H1R1HC0HhYP446jwVCO0sQL3a+2dzqzXmx8Wpy9VL/3fnLz26/efv45caNzXc7O2tWn66Jmse3JQm4/+j5y2drrxo6z0CpQjidXIYiZ1QSMyjIdC4uVcEM1dGc+Vh3Htabh/Ni4MMpqAxBZSKj/ASjPIFaHgXDhJZKAqB8LzDrKJ4bTWZksTC4dqxMNyzXjejrx6LiEn/7D/8zE8I9RlYconMO0NiHeQJvmbS4teXy07tjD843Xp8hzXUnDSoTBxVAvBu5HmZWEIUbDOWGw/kZOA2Eq4AM0gq7aPE6TlILvWpYKjxfV9GgjSJK96PpuzDUXUTqbjLNTcCt6mnNMNVl6SypNWZ0Vy9rdOzC/fvrb9/OXr/Vt7h8+cHDPx4z79QTpwBJ2s7l+1tdbINXVt73pPaLP9nv8dXbj+5ee7Dxw6qY2rDxV4/Nkz6an7cuAMC5c+e4XC6bzZ6dnbU+AnxUO4pSrq2t1dXVffd6tjwptfrgSdqOeKXYPOnDJCUlyWSyn2PND9dOmYcrrZ60pUoD0Mm5K/NnrwcnsP3jGMFUMMgYA2o6XtkVWdV9rLgpwZGGcqFg/aqZR0qRzuVIJxDSCYZwMoE824ucGypc9CBXbeVWJFVuunIvAySiH6te7qJfMId3wX1aQV4tIK+mCq9akA8VGpyz5Ukp6RK9YeJ79xM4Nw8PXrB6EobVglN1cRtHsOquLL4uCMULQ3ODQJwohDSRqcqV1WL622K5Ci8Y27uEE1QkDC0Ve6BxXjByMJYRgKL5YYlBUkTGGCxzDA6bRQGqNHhn6xhe23ilWxlgzrZg+yy8KfrQLeTyY87KE/GLNyvAs89fvD59/gYQwCNnF29aVUncMj5/5fb2Ti5fv9bQxVd2ENWzcO1lhOyS7ngj20FFsZfj7EQEZynOS4yL5oCjyKBINCQOX53BAEHF6eGlkkSqNEUkTOQICtVi/TkNb4xnbJrqG74AbOvS1Xux2dX/9y9/fTg615HE3Udh2jM5HgIxuXtw/tbW8LHNd++UixOAIcX1y+L75ZDp+pgmeQRCkICRZxBqiIK2fIYGWlfPv9jHOd9Lnmu1XB+efrjQfvZ0AFZsj2HaY5n78fQDFIYz8NU+PXLj+ZOX628urz5cuHv32wZ2PVx78b4kARlc3CrO/npjo+HceaskmefPvvqWMmw2bNj4D2LzpI/mx3nSxYsX276Fe/fu/Zz7+aUnpVQfSqLtiPdJmyd9mH/+53+2NuD95Fx72LotSdYMTG6NnSmFGQLjWJm44ipjTKUpuqr9GLjzeHVblC8X6l1F889kuCcTXfOQriVIzyqoL7vCtb7CyVzpotuSpMNsqDMS5YxBHCFjQsVU2oIFPCP3aQB7NlV4AGks9zRV+JLhkWmspBQRElV/dv6HvrVHj9Zu33o8PH9F0DK2HUbj4My1lSu3VtvnFgBDYs33cc71oyfaEo2qTIYesBDffL4vHR+Cp0eSOED8ZNij9VDsKVT5NKJ4CtF2lfjm7dYFUtOri4iOumypJk/KL5bBsE3gSw+ZgCpdfSK+dX9VaZmQmkaBKOsn7jx4+uzl65sPnqy9Wn9/9wDTMl0bFV6qR82zMAsc2LQqpUfiYWAd1uH2y8kH5KQwPSWWXeEPg/mB4f7VsERSEbkmNihfeJKoKjFIi42S6g55cYuUOFB/9eHjzXeb06vzmAHVSTUjoBzxt7/93T/sO3KwjOaGE/qTZBBLp372dP/K0sy967P3r+cM6453yeJ7lCn9quxhYYKWlqbjINRGvrw3l66GmOoAT7Jm6O6lV+sbwoaxo1SFC4nrgGUdwrKOkHkJWt2z169v3Xw0O3Pl8tLdD47MsvJi/Q23f/x9T9ruerM+u1310YYNGz8HNk/6aH6cJzU1NRV+C9/W9fZTAXhSSEq1QyJtR3ySUSfTbZ60k8XFxU8++eRnWvmjl1NNk5A/tScNgpdW7gCP37v3BE9rRXFwtNpUlDYRpk6AGeIxxgQ8R0fQtfjnM/3TGQH5VG8Qzg+O9cEjnPUQp1qwi7LKRV7ljEJteRIO4UcnhTFYjMGO9Haejwnm1QjybAJS4WkEpRHEAm6PSj5k0I+/fv3jGh4AO+E2jmBquul1g4Andc1+9ftiY3NTszQJSJI1gtkhgro7l2ICC5uLFPoIBfW4iBElZ4Q04KLq0PkTW5KEOYPqvqmzvrzn2nyOTAN4Ur6UAXgSkL4LVMCTgFh6R6ySZE3r4Ie/ID135iRL3UCI5xTQOXraAPtoO8PBgDugx+xR4b6QkJ0F5EgGLI5ZHEUsiSMUxRMLM5jZKVANWtDGaGgGtSmKm2XV7QZW3whvcKL71jh3Xg/q4Re2smPUWJdi7N//3u6X//S/DuWgA6lSVyQ7nCzxJwrCxdKCwfqIdnlCj/JEryqylxE/yIB0KYstoqJ6IViqj4II0jiqMq2JPNYOeNLFJ7cfPn0hbBpLY9V6MUUeDKE7XRAikFMGBqYmL293bra1nH678a3FuoaWVrYlSToy/fy1TYxs2PjzYfOkj+Zn73f7qdjypJPVDidoO+KTZPOkD8Dj8bKysn6mlW++W79wR9U4Xv2lJ1WNzf9pPNHDh88nZxaGz5LGL2JbxsHGntLmPu7C2Ruz926UycxZBA2QGCw/HMUIIBM9NagjaoirHOwiAjvDUU5IpHM11rmI5lxCC6WKY9SiICPG2wj1MoO9aiGReH7P4LmB/vOT45fXfvyM6ENzy0zzYKmwsYTfWNM9swm8hzcbz1+8vvvo2fjFFdn4WN3i6ZkH1+4/e1bdpEvS8I5JWaFUjlsF1R1FCKRSPWRYrxpceDsmrAd2tB8lXfpqUtKuhbMxTNFxmiCZQ80XQ/JEUM0gYfEh68pjnrZlVGTsZumUDK2YqzfWtk4Dy6+9XB+fX+mdurR0/avxevqVYasnCS61IuY5iUO4wBaKYy16vwq7R4ndKyO5Cvj+VGY4rSKWVRhLL4wilXjiMClMraJmRFk/VihtTGUbs/h1yLpudv8Ia17HOFUDeFJZF++EjhBMI7hksf6PW/Tf/OJXnx3NdKqkHYSRD0JJLjCKJ58d06nJHawrG7UkDXGyxoSCC03QHlVCLfUYmRWLk4ZS+IkseY5Aa1rYKiEL/MQETWNVkpajBLk3XQTYUrGx6c7DJyrF4LYnAVm8dPvbPgKAC3fud5xbHL18dc0mSTZs/HmxedJH8/GeNDMzw+FwqFRqU1PT+s/fZg54UmhytWM8dUd8EpE2T/omERERRqPx51v/u3ebz15fvP1ocu3VzlkgANbfPry31nX7eeOjV1PvvpzH6vSDW4TBnjyaLptUk4ZXhmCY/gJSIJPiSyG6kTGHaQhnCNoLincuIDoXEl0LaX5QvjebF8rmHVdTIvTYOBmtTG4CzGZt49n0vbGBm93zj2duv7y3sbmztvIHub36lFDbC8hECseYyTfj9D2905c4piGouDWbbMogGFLI6lSxANaor+yUe1NJLkTcYQLWGYs9VEFyzWJ6ZLGdhZjDeqSjHu6ohznXwUNayearY6N3z0JNlmN4UTiJF4RnxVOr87hwUW9V3RnwzafD3WOnqBoWVcOwpmGwFpAkTduU2DJqzejc1gU6rTdnrZ4ERLjYXnmGl9TOcmDh7en4g0KsqwjrzxP50lh2KMphHM4Zi9mPJDrS6fF0NeBJKHF7Ksv4VdhGfEsv+6xedN4IeFJuMzNCjvIlYA9nMD3zuHbRFf/Xr377O0dvOzD+AIToACU5YYihWkl2ex399FDumCRvXKJYbsed1eeM8ONZoiyeNp1bc5KtYmn7hqaWbj56wu4aPcHWB+PkseSaFKrBPDAH7Pzdu0+U8gEiuRkMN0KQZha749TMyk95nNmwYeMnwuZJH81HehKLxbK3t4dAIFtljYKCgLPyqy9LpPx8WD3JKY66I74nbJ60k83Nzb//+7//YIX0vxRrb9b5Z8cpkwOotvY4jTRYzz3GYHlAya4VFB8wKxzODYcxvcvIh4sJQFzBOHcU1YPCDKhFH9UjYnSEpDpCRR+H19YObaFUNhAr+pBlI2DqOZbhevfNl181zLx9t/n8zUvrLGNWlp9fG3swO/f4wtjFK2lcUxJbH8NQxzI10eSaRHxNFErpUco9ksv2hzJClKhAFSxEAwkxgo/QUQchhIOVhIMggn0F4WAe7WAZYx+HsFeK2aNBAtmvRB2UEgLqaNgRU45Gc4Iti8aIY7H4JBIEZSzXTGJE/U09C0s3Hw6JGr6SJJGFcf4Oa/r8hW1JAiKxjL18/ebeqyeq5X5AkrgXO/BzjYRZYwyF7VGFd6/Ce0Dw/mRiOFwM6a5zJNDs0dQDGMo+Onk/i1nCM6tqR1nmwWRObSRVHUfXAqpUresQTTShh6SV3fwkA+moDOldSfXK47rlsF1yWYfSsX/3b5//8l//9+5C8KFKokMRyRVEC4GLcuXmgi5NXoeouk9VOCLKGRamclSAJ1kj0A/1jl0SD07lyS0n+cZknuEEu7aqrgU90NFx89z1p48whIakbElMqiA+XZhVpJw9c/UvdIjZsGHju7B50kfzMZ60urp6+PDh7dPwu3fvsrKytucn+ZkAPCkssdo5mrojfvE2T9rJ7Ozs/v37/9J7sZP7L9car5yTLkweNwsyLdI4PccFRDlcRvaoZASAWCF4KiAHrnA0EBckyhWHdudiI/uhJ3qQcW3g2HpoVC002QiJpCCDhZAgXVVkEyh9GCReMimutLx+u35t7V7t1X7Fcidwe23t7pvNjcnVM9a524DQRixxTE0gie+N5noiuQ4ghmsZy72ScTCfdiCbsp+EOyhE2wvRDkKkJwvsjoUdzCXaFZPsy4gHCkgHsqi7INS9dPLnfPynYhyQXXzcbgLZjkBNNciz1WpAlYpU8EwGqIBfzu4tU02DxYO1qv7pntPazjl47xxx6Dxl/iZ15TF7ZO7M+54E5PHzrdFhz9+8Mk6PFak0VQpjtkLrByd7VxM9wAT3SrxHPiMGLVOfO1XR1+gp5TnL2M58XqBQVt9z2jxwOoahieNqI5iqIKrsJKe2iF9fIDFn6cXFzfxUNaNQrvYr4nsX8HwL+X5gQSRO6FRK+le/sL/55X//LCzjcDEpAMQ5AVXFgxXlTAvB0gRp0hU0KsoHDRWGOqskFQgNcuPY1MVr3L6xNKEJ8CQgxyTKY0ZpRruee76ff2EgnaCJTuVHneRFpfCSShTGrlN/6QPNhg0bH2CHJz19+lQsFhcVFYFAIIlEsvplKXylUvltTvBNQkJClpaWgDsQCGRHccTvYHsTwA6cPv0T1JX9JufOnUMgEFAodHuU/Q4GBwfBYHBJSYlGo9nuDROJRNvVjlpaWt5f/mM86eLFi9HR0e8/IpPJgG38iPfx49nypBPVzlHUHfGLs3nSTkgkUllZ2V96Lz7M3QdPSy3azAZJRDPZg0Q5AqW4VzD9IGwfEt61GusKRbnAAE9CuuCQnmr40R6wn7HKkwN3g+C80CiPCow/pzpAU+mvqwjUg8I7SlPHsWWnOILFBs5FCyBJQMRLLcXT3KJJzjEDIYrPzhJJQSY1rF3rTWY6AmJUSrUroewvohwoJjuWUOzzqLtB5L0UnB0fDeRQNda5DO1WhnRIJRxMJR3IJx/IohxModrlUe3A1M/ZhC1P4uK/wJC/QFD3oGmBHOFxriQMJYzHVMYgQbFIUBoFTGgupLZQkLJ2RXOTYbhM0Jqj7i0yj1W0TKKXrk7KG3u3JUnfOfv46cupuasGw1hJpSIPJAESVygIgwh8ymi+JTSPLIZnBus4VaEYmaLPjNCmhzNqzFE8zXGmJpGoK5BbQplyf7wknqdLFhrCqPIEVk0KvxZIKr82iVCTSNFGYZUB5cJAkCgGq8oUGxKkVH8S+XB63n/71d9/4hiQAdPkompjS+WFOJPEPApEbB6pamhgzfdW1VuKpSZV88TKjdV7T58DnlSkarJ6kp+KH2WSZXWry6alBePCUB4zE61Lq9ZkILXZ2FpGTf9f+hCzYcPGB9jhSbGxsRkZGb29vV1dXUgkcmpqa67l8+fPf3BK+w/S1NT0+PFj4E5paalWq/2Br9reBHALmNaPew8/AMBP9u/fr9PpGhoaHB0dz5zZOY/h+Pj4oUOHamtrgTceHh6Ow+Gsj7u7uzOZzNovAZZ5/yUf40lra2tOTk7bK7p3715wcDAgaB/5tn4YW56UAD58jLIjfrHIk2k2T/oafn5+HR0df+m9+DDPnr/CSJoTdOxQC9FXRHbFkt0qWV4ohicF68GGepDhbmikKxnuLqsKskB99RAPFdiNDz0MwjuX410LcJ7caj91BeBJ/oaKgPaS6BF42Sku9Xxt4TiPNFHPm28tnmHHDGKPa6meGIJrFdGtjO5ZwvKtZh8hEx3BVPtysn0Fya6EfKCQbFdG2oMjfEoh/oGOt+OjDlDQDsVYpzKMWynqUDLx0AmSfRr5UAHRsYjgUE5wLqTug1E/JZI/w1G+QFL/gKDtxtBcaAwHKMM1mx5aDvv/2Hvr6DbSNXHzn91z9uye2Xvm3pnbPb3TMxd+05BOjLIsycyMsR0zM7OMYqpSiVmyRWZmO+TEcWI7zOmkw5x0mDnp/Rz1T9etpNOY2Lmp57xHpyx9VfVWSZaeqvrq/eLItfFUYiK9tqK5okLNVfVt0fTPsPRKfm+xbDivbV2FsouzZhPvxAlG5+p+IEm9k3uPnLys751TtU+nFDb5pQrDcsUpZYqEQvkqoiawVumdL/HOE/tWylOkHZXyIe2W7ZyNGwNFOmeO0pEkw5GkLo2yUGlTAFcdJTGWdA9HGgwJktZkcVsQVeNZL3erlgaSmlJFnXFQazy7tVY/duzS1eM3To1tbxO0SEPyGB/99xef/o9NOlGzqkxbAfebPAmEbmDr9Uf3zt+/+WzBFczenQd4q6dzNf3Ak/xbFKljuoI5WfE2ecGcNNzISeUogSGZonfdWzlAREFB+Y0s9KTz589/9tlnd+9ajvFnlpgLFy6sX78eOAePx+vq6nry5Mm5c+fUanVTU5O5j82rngQWODQ0JBAI5HK5eV2mRR07dozP5+/Zs8e8CnA87+zsDKSkr68PLBxYizmNs2fPmkeG/aXQaDTz2B5SqTQ/31IPEAQxn0dYs2aNh4eHaRp4Etje1y7zV/ZPAlaExWLBCjw9PYG7ASN72+MiAU8KS6h1iuRahN8q1JN+APgQ//GPfwQuu9iJvJ7VE/uINV0ppapgJcdPyfFmCIAnuTDZ/mLIR0XyaSH6tFd791e6d1S7t9a4KhtdNXWusgZCFRtfxsHnc9wEDV5aol9blW9PVcDq6pWb66Gv2yibOyI0ojSdNstgCGllR4xSvRkcQjkHX87Gl8LAk5yLhX4wgmvgYIkcTCnkUALZFsHLWcyv5IzPBZzPROwVKjoGoTmWM/AVDOcC2DkTwSfAuAzIMQ9yzIUcCyBCFQdHRJYzka/IfCuqwIoucIRFjo18u3KEkMv3L4CDi2nxDQ3J9HqSgVSjagOSBKIY7s1lduYymxUdPBAtg7yHt/n3b8nu3Jv/olm7+XBz90wtb2hltsI/TeSbJgwrkCSXKuKrNQWCnniqIYaii2O1ZHG7QNCNa6ld6wJ5Oi9OkyNJiq2X2FYKnBoEvkxZGE/NntmQNNqVJGrzqpI7FYlweQLHXIFzmcSrRhkHt9YYx2VrZ2/cm7/G9/jZM92B7clIS3Cl/O8Ovv/PH/4UmcWQtm0ye9L0ruOg2e17D3d+c273sfP3X1Z7evLs2baTZ8f3HxnZ/XXLoe3EnQYgSaao2ijKbxYWsXtKoF5W09prN5foBw8F5QNnoSddv359+fLlOp3OQpVUKhWZTAYTGzduBBKTm5vb0tISFRUFxCIzMxNMp6enFxcXmxqbxcLsSVu2bOFwOIODgxKJBBjCiRMnzItKS0sDbQ4cOGBexUJPun37tq2t7eXLl01Lrq2t1Wq1FvmvW7fu1cKNQMIsmgUHB5t7AW3dutXd3d2iwfT0tL+//40bN54+fVpXV2dKxrQ5RCIR/Nnf3w9eWjjLr7/f7cGDB8AK5+bm3naFSRPznhRf6xzOtQj/GEoa6kkLMH0oFzuL1/PNkYtVFe1lJS0F+bqoKlGgBE7vUQUKhEEt9JhWbpAIduFQPcVkT02Dm67WRVnnLG10EpEIZJpzOQTCqYTtVMtwVTW6aUgehoaQtfU527iqI6NZRn2URpqm1UZy1W4ctqeE4lrPciqHcGVsx0LIo1TkUSKNoGmcyRzHcggLPKkUsquErEmsFUr6Cj3jSzl7mYJjK2BjS9huRQK/aklIjcwtDQgQjM+HcXkQPg/GF0PuDYhbgQhfKVxB5jsyRS5UCbZCiCnlY7N5bnE8jxhOQAojLItVL28V9WwyeVKlYCCD0lbBlUvaELIOQfq4X19AgCq9eD4/In3/mr2azi35tK5VBerwLPn8KaUCSWyxnNe7dsv+Ewzt6nxOdzRRG9dgyIA6eN1TOeo+V4bKmaYAnoSpEtq/HHcFeFK0sLm8s7/z8N50ead7pRRIEi5f6JQrwheI3CrlsVBLuqhLMDxtOpLp2LIzU9oRzzJEQ/JVMrCE3D/+25/IDKRtbEfLyPbNu44/ffb84rXbTWNbTUOsaCe2X7n1g2/Sx8+e8g71AEMq2a6AD+kGz/aoduu71uwenT544Qo6dhgKyhLF4robkAxvb+/PPvssKChIJpM9eVkKf6En2dvbg195ML1v3z7Q7OLF+ZIfV65c+fLLL019el71JBNgrlu3bjEYDD6fb1oUcCBgQqZXzauwuO4G3EgqlX73st8SBoMBHmORP1hgwyuA3Cyaubq6ms9FgfTs7Oxe3RUIgnz2koiICHNi4EnTKLQgq7y8vIWnfn5T/SSws0ZHR8fGxu7fv/9z2v8W5j0prtY5DLYI/2gy6kkLqa+vp1Aoi53F6+numgOSZIqsAu3KYnmqUp2sUofomIE6WqSR4y2i+0oYgVK2M4PiJqt35pMJdSxsJoLP43mWiQPL5R7VYmcmx4XHcELoTlxGTDcvfbXCnycO5SkSRC3RbK0/Q+QtZHixGYQyjlMZRMgX+JUpokn6RFZbUJ0aV8DH5vIwJVwMEXKgcdy1iNMI06Gbbt3MdlEgATxeaIM4i2cskLRFkTSeVQLnQoTwUpVw1WyPKm5ItjyuVu/KENnXCTBEIbZcgC3iO6YjLtGIy0quewwvJl9dQu06fen69O7jyp7NxeSO+JKmUoowik6PhKCyIQjeBm08IXzx8pLW7K4Tmq4tBfSu7Ma2mHxVdJ4yIl+e0WAc23zw1t0HQuOGeKI+rEQNIrWxVT60JVXY6UR5KUkNEusKvn2ZICJTSqL2yBVrelpmnz1/XqsbDSCrnUrEToViXLYQnycEnhTNMpQqBgde3sZ/+MTlSll/eJUqjCyI1JASOujlO8TIJtkKW6uUlBTzf3Hvpn0Lh+wd33bY4n28/PDi0Lm+ofO9Ixf6QBy4hV5rQ0FZ6rz2frdTp04BM8BisVwu97sfelJUVJSpzYULF5ycnMyzAL24c2f+SO9VTzp9+nR0dLSfnx/4PgESZl5UbGysefYf86QDBw6ABT579sxoNJaVlf3qzfTw8DBfwtu/fz/YNIsGINW4uDigR8+fP4dhODEx0aIBUDTgggv31S/zJOCJYEtMogckKTQ01NHREaQFtvbRo19c+u8XATwpPLbWJQS2iIAo1JN+AIFAsBg+b+nQ1fkPTyoqMoRmSHIV+oJmY5JcEdxEj+/jhPdQwgyM1DGuewPTrZHuUY64FvJd80VB5apqxUgypTWwTuNZK8VVIo6ViHO10I3O92eLfevlAfVqjyp5HKslgdkawZGGSCHXBrZrKd+lSOhXKyNqRuDujfSBoVhIHkqReFMFQSyZP18W1qUkjDHdJtjh65CsteLSTUr9keGp49+cv3OD0jwRCanc6hEXIoIjcggNHO8s4coSdRytxata5lgjdKwTYosFuAKBZ7rQM54fmCCKzVEx+CM1cL90YsY4s1vQvLaB2QsirkHtx2aGK2jxbVDuAMTf3Xvn8aOzp65Ort4vUa2vRQYT643RtdrImqYMehukW1cH95c2dlSTu+uRodSG1kxye0KNIb7RGF7XHAHrXelKTL3EvkroVSzNqm+hcgZbFBvBonafvcjt3JBMb3MqkDjmCjFZAky2wLlIHEcx1kiH12+d/58fmzqYSW4NLlOEi2nAkyKbSIWT/K4zQ8MnJ7Kzs5cvXw6+qkAz7cT2hZ7Us8nyiA1w8cH5zVc2TH277tjdIwtrMbwDLl65PbbpYM/q3Vv3nXry9GcV0EJBQXlDXYCmpiaTyiz0JLPcAE8Cv/vmxm/wpNzcXLVabWomkUh+0pOCgoIWpgHMbHJyMjAwcOvW1wzf6e7ujnmFiYkJi2YZGRmtra2m6fHx8YiICIsGOTk5LS0tpukzZ86AzXm1m4qDg8PCe+V+mSft3bsXiJhpemhoCOwmYE5AAJOSkkBCr53l98LkSa7BsEUErCSnpaOe9D137979l3/5F4trq0uHHTtOsJlD5aXznlRe2lrGMVa0t+U3GVYx1ekybbahqbGjL04hTukR+NBZvhX8wEK5V5YExMpyTVCB0jNb7FYiIZSIHIsEuGIhoVKELxN6VsiiWHq/KoV7icS7XJYhNKZCumiaJpKuzG/WF+j0gu39XQenN1zY0X5mrHGovUinj1XI09WGLH1r3GST6wQ7bBIu2iot2y4DsebCrCnVQycvJZGNvkSxG5HnXs2PbWyOJRlCq5p8ixTeBXLPUpkfSe5NlLoViANyZEHJkpxiQ0llG5Hdm1FnLEZ6EugKrxxuUIEkqlztWS/xQiQBYn5Chzqx00DavLpv/U6ZaLVUOKGRrqugdafArQGNKrAhwWR1NslYWN+WUanPKTeWENvJwpHk+pbQYnVcgyGd3pbF7IhlGUNo2vCG5thKbUqNIa+xXaedog2uz5D3xHHb3MvkzkUSxzyhfa7ALo+PKRUGNWjy4J7uqfmbPobW7Y0s0XjmigOEjcGKeuBJ5E3KnrPDw+fne/339/f/+c9/Bt8gE9sPL/Skqb3HF/ND80Ou3rir7Z9r6p0xxZoZy3NdKCgor2WhJ125cmV2dtZ0aenJkyf5+fnAdb77zZ6UkpJiqm9848YNDw+PN3sSmBeLxQJ/ML8EvoLAXL6+vr+lu7PpwpnZTMx34gOBMxUzamxsLCgoMP1Ktre3gxyeP39+4yXfvaxzZDAYrK2tF174+2WetGHDBtPeBNTV1Zl7late8qs37Ocw70kxNa4BkEUERJBQTzIzOjrq7++/2Fn8KA8fPhke3qVSTkola1tbt0yd3Gs4uVp7dDxfawRRqm9X988o+ja3T80Nbd6zsrzJ+6Uk+eZKcUk8EE7JAmw2YpfHdSgUOJYIHYsFDtk8XDbfI1fkkSX0yBV6ZiGZkCyNpwysQ1JFqvrVbfQ9HYLDvV1n1gBJAtF6ahTe1FMz0FIx0iY5uLZxd3/RbGvZNrlJkiq3q8/cuXrjzgMQ127cExs31AkG64VDitYpactUHqc7qkYXVtEUXKYOqdBEkfQhdc3OhRL/cmVaia64orWqrjO+pCkiX7Gylu1RwfQuonrn0HzzBE55AkKdwIcpS2hvjW4xxLUYgUtFlKqiyzQFDFEsjR2GsIP4Ij+SLKBeGVwsya9rya9tLahqLa5uI8NDiZX68DxlZn1bUp0xh9WZQGlJZrSFVjelsTpSaG2ZrE54ZGOysCNN0p3Ab/epVeOBSpZL8JUSbLkYXyv1Zqk5XRsUo7N3Hzyiadd4ZUs8s8R+ZGaooiHZyBDuMABP2nXj+1tnjx49Cr4gUtPTjWu+75/Uv3n/g8e/bCi9t8q2/afNkmSKe/ff7plsFJR/DhZ6ElAfIBM4HC4iIsLBwSE1NfXSpfkxOs3FjTZv3pyRkWFqDF5aeIEMg8GYen+/Wj9p+/btYJnAigIDA2tra19d1Hc/LNEE2ri4uISEhJj+fPjwIUimqanpt2zm48ePKyoqnJ2dXV1dCwsLzeWRQNqmbC9fvhwTEwMagN9K8GjqzPT111/b2NgAS3NycgIzTk9PL1zmLz6fBHYNEC7gX35+foODg6bnBQKBRqP5Ldv2kwBPioipcfOHLCIwHPWkf1BWVoYgyGJn8SbAh+fbb29funTz2bPnD54+6ju7CahSRWdbobaF27UWeBKIvd+cBy13Hz5XLxuhqcfBT7vJkwjJfFwmjMmHsIV8hzw+MCRsBoLP4Dun8N0zBC6psFcy7BMHR1aLU4X8eLEgrl2ePafOmlWVbjSId/a2nhw12RKIndcPHrl9Zsu3+6E9E8xdEzXb2yk7+zqP7B7aclA5PAtCMzCrbJtu7toCgqGcKGR3p5HbCuHeIqg3ocGYTmsPrW/2LJW75oq9C2QrqzS1nIHOge2plNaVVYLgCppLJsclje2RzvTI4Dgn813zhd61MneSFM8VRbF13nkS/3xpAUIsNeSH8GtCRMRgWYMbm+XdIA4skmTW6GtpPTLh6sq6zvRKQ2CmLCRXEVmkiSlrjqzQhFVpfEsUsSRDNtSVye5IIBvDSM0BdZoQsjYeaXctl2GLRQ6lIrtSIQgcSRYmMjJ61ivH5nZ8c65E1L+qXuebJ/PNl4RCrPR2TsfJgZmr2569+MchHTgOS05Otre337Z7/+Ubd972fay/lLm9Jy086fbdtzsSAArKPwevXne7c+fO2bNnzR2Zfxfu378PlvnrhjK7fv068KRXe3D/Cq5cuWK+e+61XL169fz588BkzM+AaTDLxYsXX/3S+2WeBBYUFhYGvkbT09OBNpo7fiYlJb2D+kkR0TXuvhyLCAoDnpT3Vlf9HmFlZfVq//+lzNPnz07cvbDt3FHd2JxJktbMHX76bP6ze/7KLfXAjKhjyiNT/A9PSkNwxWxPIo+QzcNn8dzyBD45ErcUgXuygLAKco/ieMTA3hn8iCphEBcO50vSJhX+AlEAXRbCEEcxpfV9rc2HhzrOjI9f2Nx2egwE40Bz4TZR1U49bV+HbvsmkySB4HdsbBAMmyQph9mZ3Gj0zpe550qCSpTJDS2rGo1+pUqvPFlwqSq0TA0eG+SjXeM7a6XDYeWQbx7TLZPlks52y2K6pLJdMvjBhcqwcnVwmSqqThtYrSZkCXwKOXX6pOyBrBAhEXhSuKLWT0xzh+BguqyY1d4sW9+i2qhVrM9t7EghGoNzFf6ZMo9UUViJukE5mkgyhhObMtidGcz2LGZHFFkHPAmEX63ap17tUirFlAjty4W2VUJnmiIAaob7N67d9c3krqOVsiFgVyn0trgGQwLJqBzcstCQFqLVaj/66KPh4eF3+3H4aS5fu93cN2uWpLHpg4udEQrK+8ESH7dEr9evXLnS1J18qfGL73e7e/euUqkUCARnzpwxPfPw4UOwbe9gfLeIqBp3H45FBIWinvQ933777Z///OeFgvwe8ez584tXb1+//YMbJ8e2HFL2bQkv02BzYEwB7JiDOCbzCHlwGFviVcn3rIfcGqCAapFbBmJfzLYtZWEyOY6rIMcExDEJcS/hhZSIwtK5AbEc73yuU7XAOYPnnMx1z+SnQGr+zg4gSZrjfdV7RSCUxwaMp1ZXrteJhjeaVYmpWQM8qRzpz6J3AMXxL1W654pdckQ+xbJEhiGuTg8MKaRU7Vcg98iWRJZqargDVMlYTIU4rITsn0N2S2a5pzKdEyDvImlsrc6rWBZQqfQskToVi+zKeBgaM1hdFtxZmtBdECatDpXW+MjJeB2UNdpd1TVcox8aH9u97+DZAlpTbDk3OAfyz0LckoVBBQqkdbKM35/D6qSpJ0p5fWCiSjoUwzQCT/KqVPjWAW9TeVbJPBsVnmRlEKSNRVrX7zr65Nmz3cfO87o25sBdQJVA5HF7Dp269IZ3ZPfu3Z999ll1dfVS6+52+sL1njW7W0e2T2795tFSuiaIgrKUWeKeNDExsX79+qX5+/Wb6gK8S4AnRUYSPTzZFhEU3JiWhnrSPO3t7Rbjyby/fH368tCWg32b9ipGN65SNzlW8mwLYdsC2DYf9ikTR1EVQTKGt7LRQ13vpqhfQWV8RWYsa2AtJ7JtcyCHBNghAcGv5LiEc7wiWW6rmIRVNNs89rJarn0G7BKLeBWzwhV0ygat4OvWwllu0hiroF/FmOyt2aCHRieAISmGZpCOjcbVOy5duSUb3FyvGwup1gRWqlyLxS6FIr9qWSxfF1ql9sqWemSInZIFzsmCoHRJSZkxp9JYxFCEldB9MhjB+aTQ4kavNLZ/riyoQonPEmBz+DaFiHUxsqwRsaZxg5sqvI2VAZ1lOavT04cynZsoLk3C2Nb24om+6smhzv27uidXJ9eSfNNYvmlsv3S2dzovrlZPlAwJOjYWQN3Ak4jiIaBK8r7N0t7pWs1oMqM1uc6QUKENL1AGlMhXkXVlwn6KbOzE2aubdx3vXbeHqVvHbl1frxlr0IzN7D/5k+/CrVu3goKC3N3dr1y58g7edBQUlLfHEvekpcx75kmeHiyLCA5qQD3JRGZmplKpXOwsfisvXrzom9pbwO/L4rcny9UhUqFnK4Rlwzb1LOsa9vJqaEURTEAaPXQ1rvoaNxAdFRhdnRVMW0ZlfVXPtqtm4HKZ2GTIKZjl5E93DqPjo+m4lTSHOPqyGvirahibwHVL5/jzSZEyelIrK6ilIbSNHC4QJEpVJR1G8egGUc+mEl5fLrsbMU6ObDqw+8QFVvdkRG2zd7ncrVTsS5QFNyqzm9pDapRBBUrXNBEuHnGK4wUnijLzmvJK9fl8UXA1z7eM61/C9i5gueZx8Ok8XB4fk8Wzz+fb5PNWlCDLqxA7lgCH0IM05b6tVWmj6VFdxXYIx1sqTm2vKhspqpokR3eKkmks/0KGSxrbLY3jk8kOLmBnMzurRIPqwRn14OzBExf3H7ugHdn68s+Z5uE5cftUg2A4obQ5MEMaki1fVdqcT+2kiscqOf3c5nXzw7f1zIjaN+07fuHWPcuzv8+ePd976NzqqYOzu07ce/CPvgXg8I5Op//3f//3hg0b3u0HAQUF5ffEwpN6enrUL9FqtXNzc0vzRM5Czp8/n5uba5oGR26bNm1qbm4+dOiQuUFbW9vPH473F/FeeVIE0dOdZRGoJ5n561//evTo0cXO4ldy8/Hts/cvXnt4s23jtni5NEYLh3eQApoaXaUkexHZto5tUwqBsC6eDxyZ7MRucGmr8hkrDhzPt9fWW3Fo1lUsbD0N20jDldIJxXTnYIqzN40QOi9JuEiaQwIDeBIITBrXKRb2a6CGSimRKjpYRZCEFcGVgCAaeo+c+VbYMUVSjIs7Nmn6ZkDM7D2568S5IlGfb6Xco1LiWycLp6vrRgfTxC35jM7AHLlrHN8jnh+eLIlJkUUWKitkyhKFIIjIcy7lOhZAuGLIoQCxqUBsixBMocC2kGdVhKwo4S6vRawoPAca4grB/nWQe7nQoU5Q1JlZOxwPgrI6vrI/yy2X7ZwB4VNhpzTIMxuOLOVmMzo5+nVta3e2b9rds3X/liOnT1++3rtx78iW+dKUys7pElp3Pqkjp74tPFcZXdTE1awT6TfkUzor2H3mkUm+PvGay22rNx0ydVoH0Tm84+GjH1zPmp2d/c///E8Wi7XUunWjoKD8TCw8KTg4uLS0FHiSQCCIjIz08PBY4mebamtrBwYGTNOpqakZGRkEAmFhHfAbN264urq+jS5A75MnrQyv9nJlWkRIQD3qSd+9LKv66aefLnYWvwzwo3v0wtWpAye69myR7u0Q7GrN6Ob58enuLJq7uMHLWOXbXu6sJFppyMvV1BVyqlUt2zqfa5MNO2ax8flMfAXdv7ksYl2Wo64Ww6Y4zEsSFUNk4AuYjtlspySqsw/NKZiOiwJBA461rI67jAg7l1FD1WXhraUx7eURYlpglSiyRhnHbvInysJqNVTtBKxdJ++aJklHCzk92axOlmHt9Tv3v754OdfY4wfLAiWKpDE9eeNwSVMPU7s6kqhxyeDhsnjuRcKQdHFAniwfaas1ICFMBFsN2xdxHYoRTDnPpoZnU4TYFfJt8hDrHO7yUi5IZjmdZ0fiu9fJfIvkLnni4PrG6r646v444kBcbV9sfXeyWwHLOQMG8VKVuEHFQrJ6XNo3zRualq2dBUHpXlfRPGK6gb93ep+8bVMBucMUq4qa0quNirZpoW7ek4rp3WZPOnDsosUbcePWfbMkmeLAkfMWbcABnI+PT2Bg4LVr197VBwQFBeV341VPWnijBjgK8vPzM3dG3Ldvn0aj6ejoWHg33PHjx/V6vVwuNw1ke/r06U2bNp04cQLIlukQHTxqtVrgLubRzG7evDkyMiISicDaTVWXvnt56/74+LhEItHpdCdPft8B4N69ez09PWClCws8mgFpODg4WNxGFxsbu9CTAEVFRf39/b9yB/0475cnVXm5MCwC9SQTzc3N6enpi53FL2PDvuPy8VloYH20XBqrFkc1M92odFc6FVfDxBKZjiSaA4tqpSMv11KWN1OXN1GWq6hWZWz7VNghDcLlsvBFDHdKY+RgXnRfjjOvHk8nO9FI+BK6UxF9/tUSBnYVGx/KxCaxbMphG4ZweT0wFXZIa0loV3FYT3FYf3FYb4lTDcerUuxZKsXnClwKxaFUTVRtc3KtMaHOEFKhBhFVpy0Q9uVIewq0/eVrh1MnW5LWG0hbxzi9I9EioReN7VzDcSzm4er4+PmKAMpMuDOG2UzgQnZU2K4acSDy7esF9jV8mwKeTT7PNhexyUGALa2oQWxJAlylKKxU5ZkjxmXyIxpq61rjajriKD0JpPa4hs4Ez2q2cyYCPImQBnvk8cuk/aqhmYbm8WxRD6l9Dat/Mk3eHS1vaeibEA9vBqqk65+t4w4WkjuLqF3F1K4CUqesZUrTtaWE0VPHHzZJUnP/3KsFh769dsfCk3YdOPPq+/Xs2bP6+vq///3vO3bseCcfEBQUlN+NN3sSkJgvv/xyz575MYiA1oAjIqPRyGAwgDyZ/AboDg6Hk8lkBoOhtrYWPANm9/LySkxMVCgUBw4cAFIF/gSehCCIs7OzaYTa1tZW8Cd4qaamBhxomU72UKlU8GvV2dkJlmYSncuXL3t6ejKZzJaWFrBq0P7V5NPS0iyefNWTQDOgSr/fPvue98qTQqu8CXSLCPGtS09FPem7uLi49vb2xc7iF3Dt9j3R+EZq70QcT+/HEnqzue4MujOFim+kOdbTsUSGQyXTlkddoaOsmPek78OawsAAT8rkOGRA2GyOawM5pjMvYTQzTFTmR6sNYBPdKilOxXSnUrpTFdU+GXFIRvApPEKBwLqQi0nnuhCpod3FYd3FocCT+opWjeeFaiudaliYTMQhC3HIRrCpPFwqzy9T6p0t9S9WBJWrfKvlESxNEFuVLGpPFbTTRtay103ytozXT8sjFAx3mOohpnhqmDiG0IOlyJJ1RzP0AWQ1hs3D8PjWDMS2bt6THBtETjVSh2KhbT7PLpdnX8jHl4vdq2We1bIUcqtbvsS7SOZeANXpExuMcY0tcfUtcbXtiV5EoVOZ1KVY4lYiDWls4nZMqgZnUtntYQ3Nq1gtfiSNI03kIpLFdrWk9nbwhqb6NuzVds2YREfdPk2XjDeBP7tnukZ39q7dYxze1rdu7/nLN199L549e945vMMsSdrumSvX705tP5ZW2xJb1sxSrF44PMjq1as//vhj8M34Dj8sKCgov5U3e9J3L+trj4+PX7161dra2nxCCPgNcJfnz58DSTKdRjIDZsdisabyQE+ePLG3tz99+rTpJRaLBcOwRQLAjTZu3AgmwsLCLAo5kkgkMItp+uTJkw4ODhaX+CEIotFoFgt81ZO2b98OxO6n9sQv5n3zJDzdIlBPMvHRRx+9uazWkuLJ8yfdx9ZndcsiJGJ/Lt+FhGBrIDyN4sQig0ccjYqnUu0rWLZc6nItZQUwJKBK88JEtmlkYNIgbBZnXpUyOU71lJUdhfFjmQkd2UFwpR+7xqOu0amM7lpPwmazMckINpnnlMR3SuA5JiKEWMS5nB7WXQJUKby3MH19WvamlPQN2XF9BS71VEwh7JAFY1MQEO7JApd0oXO6gFDCx9cgfiyJF0vkQkScsnme0ezgQGZMFimstjpQVe3VWuPTXufXTvJUK2OaW6uMI6mCtmiOzpkmwLP49g2IbRmCqeUHsjWpkq5YfhueJHEoEWBKhA6lQtcqaRTbUMjrDa5SB1WqXHJFoURShSqpThdb2ZwaTmF6V6tWUvVJUHs60lkpH1INzbBb1qWw2oMbmgMamlzIMrsGAZ4uWanVJ/a25fb0Dm4+MDF9yNA7C1xndHL/rTsPbt99ePP2g5/zjly7cW9gzR4wY8fQ9hNnrm7dd8ovXeKdKjZFHvkHh3dnzpxxdHSMj483leVFQUFZ+vykJwHpAR4zNTUFPCnlf2MazvbChQvgSQt3AbObC22DJX/55ZfmuQIDA01Dd+zbty8iIsLX19dU+Nu0xo6ODjs7OzCvVqs1ja0GkgkKCjLPbh4axQwQqVdLKL/qScDkFg6x8nvxPnlSVEiljyPVIkK9a1FP2r9//1dffbXYWfwoj5883Xnk7Pod3xw8een58/n/tH03D7edHI5RSoEnBfEFznQ2pprjhJCAJ+HIVEcSHUehOtTTrSlMKxVlRdPLk0k6ipWWZEtk2udA85IEVCmfjWeRVw7nrezJX6ktWqUvjFSWuFIaHEvYjpkILpnnnCogpApw8QguDsat4uCSIcc4yF9XEdZVHD+alb0xJWNDWtpUbgJYgqbEvgByyHjpSUkILgHBpfLt0hDbfMguG8aUwo5VsH0RhE3l4FcxnSKZoQlVwYkVgaQqbx3Rq43o19kYatQlaTs5Heuz5Z1uXNkKJrKMBi+vhmzyYEcSP1KpLzQOpMm6M9Q9WKoEUy3C1UjcGIokuC2L0e6RI3bNFLpkCx2z+Jgsvksp36VcFs4SpMvY4pH+qX1H95+4OLBpP/AkqnZ1tWI4Ge4IIWmdqTICTeLJVgSKNKs6jeFarap/i3pgxjC67fL1Oz/5pvzYO3Xrzn3DyNbAfLl7ktDsST5p4kvf3vpBy8eP8/PzP//887179/4OHxEUFJS3zJs9CfyIADs5d+7czMwMcKNbC3jw4MH169fBT4xF9yAwe1ZWlmn65MmTVlZWN27cMM9lOs8EDMlcgzo3N9e8RqBBGzZsSE9PB4db4M/IyMjBwcGFK7VwMqFQ2NDQYLFFr3rS3NyceRSU35H3ypOCKn0cqBYR6oV60vy4MYWFhYudxWsAn/WL1241j8wpBraAn3kQY7Pzt3FOXp7tOjOaaWiKlErCJSJnJgtTxiXAVCceybGRjm2g4+hUBxbFqgayqWXaCKnWcoqNphHLbrCvY9rXszBEJqaG6UChO+lrvTRVUdqCWH3RKm1xELPON1/qmSf1KZSFFKvDi9SuSQJCDExYCeHiIFwChI/iOKaxPIT1cQO5KWNZSWMFwJPSVufFt+Y6VtExORA2+aUkJfPsgSSlce0yYfsMyKGAgwFRCDnGA0liECIZXtENwJOCCiv8FdXe+moXGS1d3003rGGLxqIEWlsWfzkVWUbmfkmBlrE4y1kcnETg26yAJjfAQxsDmM3eHE2MrK22fSIb7vLMFhHS+dhUBJvGw6QhmFy+e7UiUUiv7c2q78sePcQ8cavn+Yv5u8/uPXx89OwV5fBsrrA3g9cdxtX5wuoEdVuKviNzoKu4pw9IkinGZw791Dvzei5fvR1Xr3fPl8z7YgLXKYFnVqVvTr7mbGV3d/e///u//8bxmFBQUN4BP+ZJz58/3717d0BAgElEgBXhcDjTBbLvXl5QM3XlDg8Hx2Ja05OmbkYLPQl81Xt5eZn7fphGlgUTK1asMK0UGBiYNq3RfOkDyJmTkxOYkMlkycnJZg97tWDb5s2bV65cafHkq56k0+lMfad+X966J4ENBl+mnZ2d589b3kEDdsr69evBrgfbBt6nNy8HeFJ0YIWvPdkiwjyI6am5v1e27ylBQUFDQ0OLnYUlDx896Z/axzKszYY6C3m9ou5NJlW6fP3O3LXdwJMaJ9rz2/TAloKlfLcaiTNEd5WTXBWNLspGV3UjnkO3r+DYVjLty5iYPAY+mUZoaMTBFGeI40ESepVKvYr4XtlwbLUqiaNaSREElIk8ciUexTLnQolntSKIqIkmaj2zJIRYiJAA4eZPBXHw0RynGMgtkR9NpeUZq4oGa4qnSvKn0tJGMrxYdS5VFMdkGJOEAEmyA5GO2OdABCLVuR4ExYXZiIumEyLo+HC6axglMKTGP6Pan1XnUUch5HKji9XxOcryho4Yqc6Bxl9BQb4CnsSGvhCwVzA5OKEgUKcqGO8Rj29OE3bFcFpWMgzp9BavLKFTMo+QxgOS5JjGw2fwnUolHjWSmp4c4Em04fy5c8JD1xXXH+4379XpfScadRPAk1J5nQnK9pTmzrq14/kDvaL+KbMnta/e+Yb35Q3A+nVAkkDgMwTAk0B4JM+fVVpZqDadCHyVo0ePLlu2DBwp/roRnVBQUN4Nr3qStbU1BoOxtbUF0+BXGCiR6aXt27e7u7sDCwHu4uHhYfp1PnLkCDCh6OjoxMREk7Is9CTAoUOHfHx8QIOUlBQw15o1a757eYMRMKGkpCSwtISEBJMn+fr6giWAZuClrq6u717KAJFIBCsFT0ZERJjrJJkBDQgEws2b33evLC8v/2wB5o5TYBUWPZ9+F96uJ925c6eqqmpubg7saLAXrl69uvDVe/furVu3Drxz4NW6ujrw3rwxUeBJ5b52JIsI86hOT/mgPenp06d//OMff5exA39f5g6cUg/O0LQTwJNAlIsHTJ507tubNx7f6j+3xnhsuG60rbDdkNViSJDqouQyDyXFQ0P2M5IjW6BAnmhVqzCijxHOFa6slgSXCGJheefM3PiOgwdPXz519urlS7fOXr6hGp3jdW+s14xlcTqDa5sS2G0JUFswqTmosTmJ2ZZIMbhVIvg8Fj6b5RTLwsdzCImQazI/sECSo6LktRKzuguzVqfF9Ob78WpcK6kOqRAmiWufxLVL5WJyIFwZ06WO7NZAcq6heHFrXMrJ2Fg2NpaJjyJ7BNd4J1E9Mhi4DMgxEXYL4biHQh6RsAtJiG3kWZERoEpfsDnLGzl25TC+UeChkOLVwkC9xoOt9KlXuRSKCVkCQhLXOQbGJSFOaXzndIFrtsi5VOJWw63uzAGSNPY1C0gSiEv3fvCff+3WveHZg00T2wzrd04cOHLy9vXxuUNmSQKxduuRX/eWFcO9Jk8CAbwNm8h1TeJHF2sOHLUsJbCQ+/fvg283e3t78y2+KCgoS41fVI/72bNn586dO3v27IMH/+jg+Pz583MvAa++dq4XL16cP38ezLWw5+K1a9fAkwuvo4HpCxcugGa3bv3gaj74FQNP/lhHW7lc/uZCyqdOnQoLC3sbNd7eridt2rRJrVabpjs7OwcHB3+s5dDQEGjwhkXNe5J/uZ91o0WEu33onjQ7OwuOCRY7i9cwPH0AeJKoaypnfkCxTvAIJEk3ts1Uw/Du0/uHbh07cOubc7evfHvvVteJGdqGgYxmQ35LC2mgv7DVWNJpbD4ytPvGkY2X9/aenV5zcce1R/Onf09euLb32PmrN7//Pzxy9lv9mh3KkVla69occW+GoNsUafwuzcRW7fg2rzohoYqJr2AQ0hmOiWxcAtcpmeefL/MrlHtXQJ41FKdyuguRSihl4LLZNgWQVSHXKp9rnwU5AE8qZzoTqe4kkhup0YdPdGtstMuA7JPZthm05fVMBw51/vogie6YxHYOYDkHs0FgUzi2NbBVI9eKglhVwtblEPAkQp0AqJINj0vgS+0RIaFe5JIjdErne0Vx3aJgQhzsmIw4pPEwuQLXarlnnSJeROJNNPbvo82eEwBPuvXoJ8qH3rr7oGPNLpMkda/bvbCg9i9C0LrB7EkgvAols3tO/Mx5wVfYJ598MjY29utWjYKC8lZ538ctAcdjGo3mDQ2mp6f379//hga/mrfrSQaDYe3ataZp8HP+WhncuXPnli1b6HQ6EMmFz0//kIaGxmj/Mj+rBosId636wD2JyWQSicTFzuI1TO06ZhpSg21Ym490Fwv62tfuOn/l1o+1v/vk4YMnj7cdPtO3ef/4jkPHr116/PwHVaHBgcLozCHTSSn10OyuI+dMzz9//uLxk6ezh04TtWNmTwLONLb98MWrt4oFvR5FPEIhyzGLhU2EsYnzg+m6586fznHM4jtkw9hcjgOwoixoRSW0vBqyKuauKOZalwFP4uCrGK6NJC92XYCswpdb7VpBsk+G7FNg2wzYhkm3VVJwDAqWTcHSKU6hTOdAlnMQsCUWPpGDKZu/080uE5kfk64Ctq9GQOAaBASRCMMT2tN5PqlCv2Sh/yqefwzPOWq+XxQmm48rExMqpV51qmC6OFlOoq8t5Gwobt2juXr33k/u7WfPn5+9fOP8tzd/7ALZz+HR4ycJDYbvJalIRlWO/6LZ9+zZ85e//KW2tnbpj4GAgvKh8b570iLydj0J2N/U1JRpetu2bWKx+NU2phKcDAbDVJbKDOOHlJWVRfuW+i2rs4hwp8r05A/akzw9PScnJxc7i9dw886DlvHtJlVSD8wePnXpN54RPXbuikmSTKEZnr3/8B8nTh4+fqpfu6NQPgAkKVPYIxrafOf+Q6BlYO3V3L6INKlLIs8xCcGlIPhMPh4YUhqCSZ/vioRJg0HYZUFf1kLLaqCvqqHlpVyrSsiumOPSQA5uLg0xFgepy73pNbhYtsMq2CEOtk+HMBVMexYNRyPjqSQsi+KYy5iXpJeq5BTDxqVyMRlg4Tz7VGQ+0rnYNMSTDLtIYTsExjCBJwnCUySRyZKoVKlfoiCkSu1Tr/asU3rUzodng8qTqkjXqzIMOsbqja073+k9ZX3r94jaNm7edexXzHvz5s2wsDB3d/dLl14zOgoKCspigXrSr+btelJ7e/vExIRpenp6+g33xWzYsEEmk71hUWw2J8anxP+LGosIJ5R/yJ706NGjP/3pT+BxsRN5PcBjDp28dOD4xZt3f1YVnzez7dDphZ4E4tL12wsbPH32/OszlzfuO37swtVnL09pgMeWiR1s/VqffKnphjJsJuKYheCzgSS9VBkgMSkguLYZ8BcN8Jf1EIgv6qFldRwMmeKrqwhWFYdri9yqGrHxbGw07BA7HyZPciAycEwSnkLC08iOhXTHGA4umoONhxzTIMck2NQZHJP4MpIRh1SuWxnXR8VxlLPcIHY8WxiXJc0u1FY3duXRO7idG+LhNn9Sk2edCoRHg9KX1ZSo6Upq6gaeJJqevfvoveklDWyYw+F8+umn5nPJKCgoiw7qSb+at+tJ27dv5/F4pmmNRmPqAP/kyZNXf9c3b94sEAjesKh5T/Iu8f+MaBHhOOBJOb9Ltu8jY2Njb6P86NLk5IVrCyWpaXjOYrjW13Lt1j26djUhV+iQzcfkIPZZCCYT8arkYUu4tqXc5UXcL+rgL+rh5cUvJ0jQl3Vs8Pg5GfqqjkVQ1xEUdfbVdNsstnUuBxvz0pPiYPsU2L6UZV/PxPDIeAYJTyXh4pjAkDBJsE02d0Uh1yaHCwzMJhPBJM17kkMygsuA3Yu4/ggrtolZ3MtQfdPXcXz98dOXT5+7Nrbta8XYLL9/KhZqC6PrIpmGcEgfJW0DkpRt7BdtmpVv2fbkRzpOLll27NjxX//1XyQSCR06FwVlKQA8icvlClF+OW/Xk4AS0Wg008B4DQ0NpqILU1NTpt5Yu3fvBi+Nj4+DV8vKyo4cedNNOvOe5Fnk/7+qLCLcsfRD9qTS0lLw0V/sLN4d63d+Y77odvj0T9QfP3Xnuu6bbcIDm1KkbT6Vcnw5D1MMY3IRuyIY0wDb1kDWpfCKYvirinlPApK0vAReVsX5sob1OZnzJZHzZTX0P1TO/zDgz8jwMiK8ogjGxr30pHjYLoVrm8W1ITGt1FR8A9UtnklYyXFI4ljnca3z5+OrcmRFKc8mA7HLge2KIPsiyLeCE1ELF7UxaJtpzJ1M4obO6g1d28/Nl/k/d+lG55pd6sHZzQdPHj73Ldgw/eSOvNbB4q4R7uRm0fTstjPn3sne/Z25du1aYGCgj4/Pq9VQUFBQ3jH37t27gfKrMNcjsOB3q5/0+PHjbdu2zc3NmW8vBGs11VICL+3Zs2d6enrr1q3Xr19/83K+96S/V1pEOLbkQ/Yka2vrnyw99U/G5et3Tl64duf+wzc3u/34oeTgNH3TGtK68VViHV7AwgmZOBHdVkL7CmatqOFYl0ErymGrci4QIGBIwJaWlcM2aSybVJZ1Bmt5KfQFkfVFDed/KPDntdwVBTAmEXZI4GISYEwSbJfJtSpCPmcgn7MQb4o8qkGDz+NZFwHrmu8DvqIEsSrjWdcIbRtguwoOpgQiVCC+JDhDCAkPUug7aGkDqszBlmSjjqgfEXZMydo2NfXMgGgb2WEepPb2w4czp85sPHby2NVrb3+nvi1evHhBIpE+/fRTi5GhUFBQUN53lmI97hiPQv+/VlhEuENJetIH6kngeP3f/u3f0HuLzDx5+mx673HDxPaeDXtGvj6Q26dPMsgTVRoPKeSopjjqyA5N1OVy+nIay6YABmFVBFvnI9Z5IOb9ZnkR1yoPss7iWOdyrLJZdvFUu2S2bTo8X3MylWuXgjikIDbZ3M/rucuYyBdc5HOE/yWb70VXhJBU+EKe9bwkIStK58Oqiu/MUPgp5b5yiQ8kCYGV6QZj66GR9pNtFesNQJLi1M0JLEMW1BlR3lRM75H+b1Wa23vqzdv4+PHTkyevHD92+f79Jdop7VVGRkY++eQTc4kQFBQUlH8ClqQnuRf4/3epRYTbF32wntTV1RUTE7PYWSwhVm87bLoqJx+azh6QRnWxVvVwAlvIzmqyg4zm0ES2MZKW8xkr6jk2hfOeZF0IW+cgNjkIsKUVJdz56UzEOgu2yYAwK5mYGKZdKmyXzrVLBZ6EYFIQTCrPNhNZVoV8wUa+hJDPebwVTL5brSSoQYkv4dkUwfNnkorAcoB+QS4VoobRAfq28YzB1tQ+Y/pAq3bP7KNnj3mb1hd298YzDWmc9gxWe3iZJp/SSRaNmjxpatubSiXdvfuwt2ebQTcNoq115uqVXzmO27vnzJkzdnZ2iYmJC8vWoaCgoLy/LElPcsv3/7TEIsLtCj9YT8rOzlapVIudxVLh4aMn5i7enLHBrH5hiIEWZKC6KxoIrbW27Y12HSS71savNJQVdRyrMsh0Sskmk2uXhdjmcW2yuMCBQABVsgHPzOvRy0ibP5NklzwvSfbpPLsMnlU+8gUDWQEh9lzEs0GaQm7JpLS51fDsS2GwWNssyCqPY58JhaQKQ7P5ITJZtF6T3GOIbdfWGUbW7z5K6lwbKtC7lko8qmXBVE1crR54Uh1vyORJOw+eOXHx2u17r7+qODt71CRJphge2vWOd/Jv4dGjRwUFBZ9//vmePXsWOxcUFBSU38qS9CTXPP//r8giwm3y05OyFzu7xeFvf/vbsWO/psjNPyUPHz9RD82aPIk23r2qi+NrJHno63HNdXZd9dYdjTZdJOsu0opm8opGjhWJZd3ItC6E7NMRXDqfkMDDpMzfxm/yJOscxDp3XpWwcRx8NIyd77j9csS3DJ5dJg9TzPOg8v0gQUKTJEXZkS/sjWrUu1SI7asRTDHkHMlwiWR6rOKExwl8/ViuGWx3EtetAYlmNKVRWuOZLWW64VCpwY0oA6oUTNZkIh1lrF62ag2QJEnnJrhzg2J4RjU6t+voa/puT4zvXehJIN79fv6N9Pb2/sd//Ider1/sRFBQUFB+E0vSk1zy/D8ptIgP1pNOnjz56aefLnYWi8ypi9e7J/cYJrav2Xb4/sPHkzuPAklqHByJH5J5DdR7ddV76BswLfW2XfVWWoq1kWzTQsa2Ue1FZIyUjBFRHIQUDJuBZbCwDRz7rPl+SPaZPJvc+ctw1jlcxzgIHw3hYyD8yvk73WwzENvseUnCc7jOGggv4YS08H1lvDCewr9W6VQixhTzHQt5bpEs1zCm1yrIL5Dt48P0ieT6JAic4xDXZL5fiSKwVhMG6xKbOuPkbSGNTavo+kxR59rZw2cvXm8ems3mdmXDXYWCPlH/tHJk9tptyzLc27YeXyhJY6Pv5YkZ8NG1srJKS0tbsnW/UFBQUH6SJelJzjn+H+VZRLhVbnrih+hJTU1Nqampi53FYnL5+h3N8Kz5Wtvg9P6nT58Zt23NG2tPGGny7qN5DtS5ddVhWhus9WQrHcVGR7UzUAndFOcOCl5FJSipuDYSwUB25UIENovAYmMzEIcsvm0pz7YWcWnkOudBhDQYlwg7xcG4ZNiaiNjXCh1JQpwGspexHQ0Upy4SHmLhSTC2FMEVCh3yBQ55fJdotnsYyzeW6+vL8g/geCQJnBJ5+HgEn4h4FMr8a9S+FHWcqj2puStW3pau7irpGDx+4erUrmMcwzogSaaokA0BTzr0SuGD+/cf9fftMElSR/vs1avvTf8kCx4+fJiVlWVtbX306E8MXYeCgoKyNFmSnuSU4//nXIsIX5HzYXpSXFyc0Whc7CwWk9kDpyzKc9++97D71E7Z4Y20vcOBvRKsloHV0u0kTCsFzUZLtdPR7Iw0nIHq1w47axkeRqZ7N829jerO4zhz2ASYSSBCLtUCFwghSCA3JsebCHuWcvHZXGw2hM2EbEiINYVnz+ATVIi9lE3oIhG6Ggkipksjy5tOda+nOZVxHQuEbmUSt1QkJFccESeMSJb4ZkrckgVOCYhLqiCoUu1fpnQtlQYwm8IQfRhbm6roaGwdB5lLu6cF7RvNnpTH6wGedOHaa8bCe/bs+blz18+cufr48dN3v89/X4Dr//nPf0aHzkVBQXkfWYqeFI3P8vuTZYR/lZWemLXY2b1rXrx48fHHH1uMiPeh8eowJncfPOo/vRt4kvjr9RmbtbgWyF7JxkOIvYKJ4XPsZCwHiEtgcr1bYHc9x7WFGTTM8etlESAWXsDENFMJCpZfCxzQxwxqEforBRGN4qAaIb4Idsji2OdxllGgryhcKyriLhR5NQs8eqlOXaQATbUvo8GX1uhDJfnTKX4NPP86VY6mh9q+lqQaSyrQROQpfTOAKgn9S5SehTLXTFFQsTKebPSrVObJeuDuSVPm1KYJTf9MjXzY5EnlksG1Oz+IEQa2b9/+t7/9rbGx8dn7VnAcBQXlA2dJehIu0+9fLSP8y8wP0JMOHTr0xRdfLHYWi8yNO/ebR7eaJWn11sPgyZN3rgJPAiE4uDZ+oyZqVJnUa/CrV4BwJkoIFRKHaiFOwiKomVgFza2L7qrn4OUwvpWFa2M6KWB3HSegj7Wql1cwrqkcMMRxpW7liF0hZ1kD9CUVXkaDrZlcd47EVy326mATRLTYlqJYbXGEuDpcQEzS1eQYOUXKgUiGIZ7RkgV1FXK7S6HeIk5POrMjhdHumiv2ypHGVGmzqO0rq5tSqK3m5JUDMy1j24EqcVsmWYZ1O4+cXey9++64efNmQECAu7v7xYsXFzsXFBQUlJ/LkvQkxwy//zfNIsI/T09P+OA8SSwW5+fnL3YWi8+3N+4APRrYtH/u4KmnT78/IXH8zpWBM3v6Tu/a9u2p1kN7BDu3JCk7koUdUZDBsUZiXykCqoSlIlgaN4SrchOKnOU8nJHtpRM4ybmOUjahie6lhvLbdJJdfdkb1PYSZBkdWkaBllHh5XQYw+CHSlWRWlWgSOhaDSW2lWT2l2d2VSbry7NbiXUjogRuW1BjUwanA3gSCKp2dd+m/cKe6XLJoG+eLLRYFV6ijijTxNbq4hsNZk9av+Obx0+efn3y8qETlx78jEHr/sl48eIF+Eh/8skn6NC5KCgo7wtL0pOw6X7/kmoR4Z+nfYCeFBoaOjAwsNhZLALXbt1bu/Vw/9S+LftO/JxBcMEP8JX794wbdzLb1+fxux1KhHYlAocqsWOF2K1a7kaUB1Ga/Ro1OCHXRYngZbCjFPJoQgJV/Fi5vKS9LV1vJIgFX3E5yygwiBVkrg9Xkgw31xDbaqpaMtMUFQpO3QSVtJrOWsuhrmFptowmQe1p7O8lKRPqzGC1j88cmtz5jbJ3c2pjK5AkU8QRdfTmNbzOjUCkWtfs/Dnb8k/P7OzsX/7yFzqdjpaYR0FBWfosSU9ySPP9v5MsIux/paQnZC52du8U8Cvyr//6r7duvaaT7z839x481o9tUw/OmALY0s+c8dCpS/m8niy4y7tKQSiVeNeqQqha9xqFZ60yDmr1qFW6kMSOEhgnhQhyrptIkMprz+R1lSgGM5DOYK7Knse1aoBsqrj4Sr4/Qx4Yj0QliuJSJGnpioQkEaNNzp1EkPXCmRNzYF28tg0mSQKxkqRLorSAVBX9mwuhHsQ4mVRnmPekUnUFr39630n50BbZ0BblyOwH0hvpJ7l27ZqPj4+fn99PDviIgoKCsrgsSU/CpPr+X4kWEfb35PT4D8uTtm/f7uDgsNhZLAJ7vjlvliRTXL52++fMOLP/pLxvM9y6vkjUF0HRBdZrErhtPvWqaKYxQ9gdStOG0XR+ZHUIpPahK/zqVaF1GtdiCQj3YolLodg1T+RcKCQUCtyrxPGwLipRGJ0oApGUIc/MUlGY/WNTB4+fuWpa18mzV4nioWyoK53dEVOvZzWvMaVaIRyga1Zr+mckHVOy7um5A6eBHi2MU5dQM5gHHAbQaLS//OUvc3Nzi50LCgoKyo+yFD0pyi7F5/+Ms4jQvyZ+aJ7EYrGIROJiZ7EI7Dp81sKTLlz9WSfVth48bWqv6N9MVI2kczv5/ZsGZvczOycZHesajavjodZVrJYouj6wocmzQu6UL8Lni8AjIU/omCvA5vCd80SxZH0W0pXMbA2K5gZGccNi+auSxBnZSkgxfvryjYWr+/bK7anZbwbW7IEN682pirunEOMk8KSmgdkte0+c+faGhSftOXb+7ey295Lx8fGPPvpIqVQudiIoKCgor2dJepJtss//scoiQv+S8KF5koeHx4fZ3fXm3QdNQ3Mm3WHoVsOt6y/+vPNJV2/dM81oirUv74wDnLlys29mf6V62L9eE1CvAZIURtUFEdU+ZXKvUrlboQSXK8Bk8rDZfOd8USK9JQfpCq7RBGZL/CNh/0goIBKOzZRB7ZPAcmYPnbZY6bPnzzvW7jKvVDM4e/na7XsPHj16Wffozv2H6tG5hZ70M7flw+HEiRP29vYxMTG3b6N7BgUFZcmxFD0pwTc14ssEi1jllJwen7HY2b07Hjx48Ic//OH+/fuLncjicP7bm53rdlWIB6qkQ5LeadXQzP7jP6uI1MWrt0e3HOyf2jd34NSTp/8o1XP41OUS6UAmrysJak/ktOWJemMohphGvV+F0rlA7JDFd8jk4fOEwJkCq1WxFEMwUR1DMwSUyHwyhAF5ErJutclygPQ8eGzZF/v67ftd63YDSdKNbgMrsnh1/8mLJlVSjc7NfW2pWSjfvRw6t7Cw8LPPPjt48OBi54KCgoLyA5acJ+n1ehqN/toQiUSLnd27Y3Jy0tXVdbGzWEx2f3NuYW3JppG5x09+TWXqew8eX7t1b932IwXiPuBJ5sjh92Qw2wMrVI7pPEwK1yEDcSkUe5fJfcsVfmWKFFprAsWYweookwxkc7uB5cgGtiiGZ8DEkZOXBlfvae3bOrHx4K3bD8wrAum9ePHitTncefDoxMVrN+8+eO2rKCYGBgY+/vhjdOhcFBSUJcWS8yQUE3V1dXQ6fbGzWEw27zthUYb7xp1ffHZtZu/JpoFZTf8Ms3lNCtTuQVS4Vsr869Rp3M6xrV9X8Qeck3i4BMRxFRcXy/UokMTSjP4VyjJhfw670xRV0sFSwUBKmS4mQ5mY30SVjum7Z5o7tpiie3jH8+evdyOUX8E333xjbW2dnZ398OHDxc4FBQUFZR7Uk5YoOBxuZmZmsbNYTA6fvrxQklrX7Hj2C8vtHD93FRiSKWjNq93KpW5VcucKKQi/ek21YiQgW+aWIHBPFLgk8AlxiFMyfxXVkMftVg3M0JpWFyG9Bdweee/m3HJjdLoiKl2xKlOZntvEFI7KW6bMqnTx2w+ucMNbBRhSSkqKjY3NqVOnFjsXFBQUFNSTliR37tz5wx/+8OTJB12T8MWLF1O7j5kkyTCx/ei5K2u2HdaPbxvafODy9Ts/Zwlb9p4we1IOr9u/Th1G1QWSmoAt2WfxcEmIYxTXMRomxPGAJ7km8D1Shcax7dqRreZO2fz2Dfr+uaKyFhD5Jcb8EkNksiwmT53D7KoVDje1bwaedPkq2vv490en03388ccfZpFVFBSUJQXqSUuRkZGRwMDAxc5iSXDzzoMLV289evK0a3K3+dxS8+jW2/d++rrM3m/Omz0pl9/jU6Pyr9f41qrt0xBMAoKNQ7CrYOBJ2GguPoWPzeC7FIgndhw+du6KbmSramCGKBmqkQwx1atXpSpyi/Ql5a1xmaqVqfK44mbgSSAYyonB1XvewU74MNm1a9df//rXsrKyp09/Tb80FBQUlN8F1JOWIiUlJQiCLHYWS4jzV25Z9FU6cOKnx1J9+PhJ97rdJk/iGNf7vvQk52IJJvF7T3KI42JjYEw87JDBx+YI4jmt8onZ3SfOP3z0ZP22I6L2jWBGZe/mtFLdqjRFUVlLVJoiLkcNGyeJ0uEy/oCofQodh+StcuvWraioKBcXl/Pn0aJTKCgoiwPqSUuR5cuX79mDnqj4Bxev3v4VngR49PjpgeMX18wdLuT1ehZKCXki5zyxg+lkEvCkeAQbz7XPQMLI2lR+Z61+HHhS5/ReMOOWPf+4ZifpnComd1JZg4WNHUjrBuXwrCm27D/5lrcbZR4+n//JJ59s3Ljx/2/vToCiuPP+j9fz39rN/jfZbC6PuMn6ZDfRNagxasSI4AFGvO9bRBQWEgURRUHxiKKoaBAVoigIinhFQUURw6FySBBFUcSoIEFBBJFVwJH7+cov6ZrMDMPQzvjrYT6voqxhbHoarfnWu2d6unlvCAAYInSS5Dx48OCDDz7gvRXSUltbd+TsVSGSgk/9VPbsuYY/W1dXZ+MZNtw1YMCcbWYOW/rM9ulv4/uikya/SCXjaZvM5m2btfmgre9h3+MJQiely71nR1+7j6VUVlXfyC3ccfwCi6Q90WlPKzTdBnhJFy5c+Mc//rF69erGzrwAAKAj6CTJCQ4OtrKy4r0VklMhqzx7+fb+Hy+dTskqeaL6BAGUUzmFJTfvF8mfCjLtZh5FEn1Zzt/e/5utJrY+gxy2WczeYjJ1U9/p3013D1my65Sl+84h7gHjV4V8u+/MlZwXJ7Ssqq45EntF6CTh7JEFj56kZuVduZ1P2/MKfmsQPHz4cNCgQcOGDXv06BHvbQEAA4JOkpzp06fjVHsiyCqrDyRc8Y9Kpq9dP6bef/Trx/UvXLvLOom+Bjt/b+awxXy2b7+x3gPGbhw88bu5bvscvA5OWblnlEfgKI+gmWvDnv12yFF1dc3Nu4UZt/IfavbxOtC12tpaDw+P9u3bG/gpMwDgVUInSU67du3y8vJ4b4X+Sfn5FxZJ7Cvs3K8HeNXU1k5dsYciaeiCHf3nbDVz8B0wbuPAhi/LiT4W4zaN/ma7/dqDwtfFG/jHl7Rz5859+OGH69evx3twAPAKoJOk5ebNmx9//DHvrdBLJ9Oy5DuJvip/+zz5nbyibzYeHr4wwNJl+8ylIQN/66TBE76jTvpquq98J91QukAbSE1+fv6XX345fvz4srIy3tsCAC0cOkla/Pz87OzseG+FXkrOypWPpL1nLysskJP/aMexpLW7Tst3kuVEn1F2/kIkrdp1msvGQ3NVVlY6Ozt36tTp2rVrvLcFAFoydJK0jB079uDBg7y3Qi9VPK8MO5fOIikgOuWXolKFBerq6iLOZ1AqjbffTpFkPn7TkIk+46z9rv2cH3A02Wv3mX1RaeXPcHS2Pjl06FDbtm337dvHe0MAoMVCJ0lIbW3te++9V1xczHtD9FVVTc3tgkdZ9x4+beSsAc+rqi9m/fLjTzdXbz4xb0nYqg3Hi4pxdTb9duvWrS5dutjZ2eHSuQCgC+gkCbl8+XLXrl15bwWAnikvL7e3t+/cuXNWVhbvbQGAlgadJCHe3t4uLi68twJAL+3bt69Vq1ZHjhzhvSEA0KKgkyTE0tIyKiqK91YA6KvLly9/8sknixcvxqVzAUBb0ElSQZP9rbfewuecAV7GkydPRo8e3bdv38JCnN8BALQAnSQVCQkJJiYmvLcCQO/V1dV99913H3zwQVxcHO9tAQC9h06SilWrVi1btoz3VgC0EOfPn2/fvv3KlStramp4bwsA6DF0klSYmZmdPXuW91YAtBylpaXDhw/v379/UVER720BAH2FTpKEsrKyN998s7ISJzkE0Kba2tp169a1b9/+/PnzvLcFAPQSOkkSoqKiBg0axHsrAFqmuLi4tm3b+vr68t4QANA/6CRJcHR03LRpE++tAGixcnNzjY2Np02bho+UAkCzoJMkwcjIKD09nfdWALRkVVVVc+fO7dixIy6dCwCaQyfxV1hY+O677/LeCgCDEBER0a5dux07dvDeEADQD+gk/g4cODB58mTeWwFgKLKzs3v06DFz5syKigre2wIAUodO4s/W1nbnzp28twLAgDx//tze3t7IyOj27du8twUAJA2dxN9HH32Uk5PDeysADA7tn7Rp0+bkyZO8NwQApAudxFlVVdWUKVN4bwWAgUpPT//444/nzp2Ls5cBgEroJAAwaI8fPx4/fnzv3r1/+eUX3tsCAJKjZ5107969EBCL/vV4/wcCSJS/v3/btm2jo6N1/UA//PAD70mgr2JjY3X9vwOgTM866eeffw4ODs6G5tu5cyf96/H+DwSQrosXL/7zn//08PDQ6aVzv/vuu4yMDN7zQP9cuHBh3759uvt/AWiM/nUS7Y3x3gq9RCMGnQSg3qNHj8zNzS0tLR8/fqyjh6BO+u9//6ujlbdgv/zyCzoJuEAnGQp0EoAmampqli5d+q9//SsxMVEX60cniYNOAl7QSYYCnQSguejo6Hbt2lHT1NXVaXfN6CRx0EnACzrJUKCTAJrlwYMH/fr1GzVqlHazBp0kDjoJeEEnGQp0EkBzVVdXu7q6dujQQYuXqUYniYNOAl7QSYYCnQQgzvHjx1u1ahUcHKyVtaGTxEEnAS/oJEOBTgIQ7ebNm59++qmtre3LXzoXnSQOOgl4QScZCnQSwMugQrK2tjYyMnrJ5xE6SRx0EvCCTjIU6CSAl7d379527dodOnRI9BrQSeKgk4AXdJKhQCcBaEVmZmaHDh2cnZ2rqqpE/Dg6SRx0EvCCTjIU6CQAbSkrK5s8ebKxsbGIayaik8RBJwEv6CRDgU4C0K6NGze+//77cXFxzfopdJI46CTgBZ1kKNBJAFqXnJzc3EvnopPEQScBL+gkQ4FOAtCFkpKSIUOGDBo0qKioSJPl0UnioJOAF3SSoUAnAehIXV3d2rVrP/zww6SkpCYXRieJg04CXtBJhgKdBKBTsbGxlEpNXjoXnSQOOgl4QScZCnQSgK7l5+f37t171KhRpaWljS2DThIHnQS8oJMMBToJ4BWoqqpauHChmkvnopPEQScBL+gkQ4FOAnhlTpw40bp166CgIOW/QieJg04CXtBJhgKdBPAq5eTk9OjRw9raWuHSuegkcdBJwAs6yVCgkwBeMZlMZmtr261bN2om4U50kjjoJOAFnWQo0EkAXISGhv79738XLp2LThIHnQS8oJMMBToJgJcbN2506NDBxcWlHp0kFjoJeEEnGQp0EgBHZWVl/v7+9egksdBJwAs6yVCgkwCkAJ0kDjoJeEEnGQp0EoAUoJPEQScBL+gkQ4FOApACdJI46CTgBZ1kKNBJAFKAThIHnQS8oJN+VVpaGhsbe/XqVV2sXArQSQBSgE4SB50EvKCTXkhNTR00aFBoaKi7u/vMmTO1vn4pQCcBSAE6SRx0EvCCTnph0qRJQkOMHj36+vXrWn8I7tBJAFKAThIHnQS8oJNeMDExEW4vXrw4MjJS6w/BHToJQArQSeKgk4AXdNILkyZNys7OZrcnTpyI15MAQEd00UlPnz4NCgry9vZOTU3V7pqlA50EvKCTXqDhYmFhERoa6uHhYWNjo/X1SwE6CUAKtN5JdXV15ubmJ06cyMrKGjduXEREhBZXLh3oJOAFnfSrpKQk2iHz9/enoaOL9XOHTgKQAq130vXr14W9u4KCgpEjR2px5dKBTgJe0Em/ioyMzMjI8PLy0sXKpQCdBCAFWu+khISERYsWsds1NTWmpqZaXLl0oJOAF3TSr9BJAPAKaL2TioqKBg4cyG4nJSXZ29trceXSgU4CXtBJv0InAcAroIvjuDdu3Dh69GhnZ+dBgwbdu3dPuyuXCHQS8IJO+hU6CQBeAR2dFyA0NJSGWG5urtbXLBHoJOClhXfS3bt3S0tLNVkyOjo6NjaWdss0XLOGq5UOdBKAFOiok2gfj+3saX3NEoFOAl5abCcVFxcvW7Zsy5Ytrq6u33//fXV1tZqFCwoKVq5cuXPnziVLlkRFRalfMz1dPTw8/Pz8aOHbt283Y+u16vLly87OzsuXLw8PD9dkeXQSgBSgk8RBJwEvLbCTKisrKY9Wr14tvORDSfH111+zAKJ+8vT0dHBwOHXqFH377NmzzQ3oBls4Pj7ezc0tKytLec1lZWXe3t5USHSDlqf2orSi8fSKX1uiqqNE2717d21tLX2bnJxMwUS/o/qfQicBSIGBd9KJwuyBFw73Ttw/I/10SaVM8x9EJwEvLa2Tjh49unDhQpUv89BfRUREmJmZJSYmFhYW2tnZhYSErFmzhrJDYUnqj8DAQPkAontoYWovyixaz5w5c+7fv8/+ipZZvnz5jh071L9kpRUUZxs2bKDNoFBj90RHR1O6PXnyhDbY1dVV+XcRoJMApMCQOyn/WdkXCfvaxQSwL6v0Jl68l4dOAl5aTiex96Hi4+PV/HhSUpKDgwO7/fjx4wEDBqhZmAKIRs/OnTtjYmLc3NwyGzg6Oqp8Y47+av78+U2+ZydaXV1dWFiYk5OTcgJSulE50d/Sb7RkyZJ169YJr43JQycBSIHmnUQjyNPTk/blhP2ixtB8oCHQ2AvhCmhY0c4Vl2MGNmWnUR613uf1ltus96P8O8TvflJdyf7q4fOKK0+Knv72rTJ0EvDScjqJ/oq9D6XGqVOnXF1d2W2aLPKXv21McnIy1VJNTc2yZcuafNFo69atTb7/JQ49tPoEpMddvHhxSkoKDUEXFxflBdBJAFKgSSfRnKGnPM0c2guiPqCpRTtCwt8+fPgwPz9f+PbChQv03KcJQDlFw8rPz6+xMcWO2qQ1y2QydsxAkwWmXYeyM962n/A3p6mtQzzfmGz59rffdDu/d3/+Td+cy58nhFJCfZm0/+TDHJU/i04CXlpOJ2miqKjI1NSUXZkkNjZ21qxZTf6I8ORU+SKNPJpWkZGRCQkJojdPDXbCgiZ3Fm/dukV/0tBU/it0EoAUNNlJtEe0YMEC2uFRuNPZ2ZnunDFjxrx58+g5bmlpmZ2d7eHhofBJjtu3byu/tl1ZWbl58+bVq1dTY9GNwsJCurOkpITuCQkJaXIP8+WxV8Tp4SbFH/wobtdbC63bhqx5d8P818dZtApc+f/79Xzz64nUSe9tcftfJyuVxy2hk4AXw+okQntRgwcPtra2Hjp0KGVTk8tr/uRkxwfotJM0PL0TOglAstR0EiWOmo/cUs1EREQIrxbv3r3b29ubAkjlwseOHaPYYm+usUMqqbGEG/JL0reLFi2i3Tzxv1JThFe82LeRD3N8b1/03OZruXDOP476vPnNpD917/Tnvp+33uf1ro/rX2ePWX8nVXkl6CTgxeA6qbnQSQCgRY11Eo0a2otT/86+n5+fMI6uXLkiHG2pkkwm27Bhw4wZMyi85D/zq1J4ePjmzZs1+w2agTJuxYoVjZ27pLS0dE/4D0ZnQ14z7tJq54o/m3RjnfR1Rozywugk4AWd1AR0EgBo0ct83u3QoUOUPuz2yZMnV65c2eSPsGlAY1NNgdXW1lLQ6OJqBJrMz4mXIqmT2sUEvD7W/I0pQ6iT5lyLFbcqAF1AJzUBnQQAWvQynfT06VNTU1OaMzExMf369aPp1OSPqJwGCtiU010nqV+zW1YC66S2x3z/8PfWf5s9du+9G42tSutbCNAkdFIT0EkAoEUvef6k4uLibdu2bd68OS8vT5Plpd9JRc8r2s+3pk5qc2D9O15O3X08qlQdV45OAl7QSU0QnpzPnz9Xv6Tmn3errKxs7sdx2aDR8PxM6CQAydLReSYbI/1OIqmlDz6ICXhjsqXR2ZD7sqdqVqX1LQRoEjqpCYWFhX5+fjKZzMnJKSwsjJ1ToDE7duzYv3+/+hWyj5zcvXs3JSVF5emzVT7E8uXLG/tgi/BT9NCBgYF0283NTXkBdBKAFKCTVOoYv5s6Sc0ZutFJwAs6qWlRUVHskrfx8fEODg4qP0BLz+FFixaFhob6+/s3dv2QO3fusI+c0KoWLlxI1UXjY9OmTcKZmfbcy2RXPrK5Ei2cl5Z9VJgaSPlEKQLapHnz5tGfmZmZFEnJycnKy6CTAKQAnaSsqra2fewu6iQagOpXpe0NBGgaOkkj7JK369ate/LkSVBQ0Pz584uLi9lfsXPgyudOaWkpxQq7fgjlS2zsi89upKSkBAcHs2uMbNmyRXhxiJ78S5cupQCKLc57e+TA1iGe7WIC3lk376t9vsKFU4QPqrDTkFy9elXYMNZnVFFFRUXqTxmHTgKQAgl2Es2lhIQEDTuppqZG80dncbN79241y9TV1Y1NO96u4X23D2IClt1MUrMqzR8aQFvQSc3w6NEj1iJUS5RHVCT0/F+yZInKV48yMzPt7e0HDhz41VdfyWSyyMhIZ2dndiEC5YUpgDp/Pf2PnT56rXdXmhd/c5r6nt1455XLhAvxCmim7N27l12Rl75NS0ujmevn5+ft7a3+mCd0EoAUvOJO8vDwoD/Xr1+v/sJHZMWKFeqPK7h9+7aTk9NPP/1Ek7DJ6xMw2dnZtGOpfpkd0cdbeTq+OC/ApMH0p3FiWGWtihRDJwEv6KRmY+9tBQYGUvc0eTW3oUOHnjx5klqKOkn97lr/5EOvGXd5Y/qwt9xnUye94znXN6fRlVMSURht27bt8OHDNAc1+XgwOglACl5xJ505c4YdNsDO5a3y8rfszf2dO3eyt++VF3j+/Pny5cs3bNhQVFTk1UCT4zXZEQtr166lHTmVh1fS4KLxtSI4oM0+rzemDXvPdzF1Us+Efc9qVJzqCZ0EvKCTRMrNzdVkMeok+nPSpEk0YtR3Ut+kA9RJ75/y+1OXT960G0ed5H0nTf3KaXBoftlddBKAFLziTqr/7aq6tGfFKmfp0qXCa88Kb+5T99CgcHd3LygoiI6Oph9hi1Hr0D0KL5+z4zVpBBUXF9vZ2bH342htFRUVbGdSeAXrzp07ixYtkv+4LtvTo356cY25tWs+WTD7/Sh/iiT6sr5yWuVvgU4CXtBJusU6iZ7hH374ofpOGnkxgp1s7d0N8//Q+p1Wa5ziH2l0fhQNoZMApODVdxLDDo4MCwujfTyZTMaOuaShpPzmPjvmcsGCBZ06dUpNfXGpNUtLS1dXV+W9MlrJ999/v2bNmvbt2/v4+NQ3TLzNmzerPFCSOsnR0ZG9oHXp0qWHDx8K4VUgK5t1NXpEasTCG+dlql5MqkcnAT/oJN1ycnJiN7Zu3ar+YMbvc6++bmnC9qj+MqJfd7+V1Vq9iDc6CUAKeHUSQ62zePHiwMBA9macmiX9/f0pdwYNGlRTU8P29xpDBePg4DBixIh79+7Rkmp+u8rKSqqo5cuXR0ZG0o+kpKRovuXoJOAFnSQVdXV109Oj2h7zffPriZ+eDbn2tPhpdeV/q5o4uaXm0EkAUsC3kxhNzuVNnUQ1s2vXLrqhSSdlZWVNmDBBfScxBQUFp0+fVn9sk8pHQScBF+gkCblRVtI2YvNfZ4/pem5Pn6QDXc7t6Xwu5MvE/cNSwx0yYn56/OBlVo5OApACKXSSJlgnUc0MGzbM3NxczZKsk+obzkHQpk0bHf126CTgBZ0kFSWVsiEnAtue2Pr2UjuqpTbHfdsc8mZvw9G3bSO3dozfPS7teHa5yBmETgKQAn3ppMOHD7OrMKWnp8+aNUvNkvn5+ezsAxUVFT179nz6VPWFR14SOgl4QSdJQnZ5ab/kQ//z17+85T6bwuivs8e85WHHDutm377jOZfdNk4MS36s4nRNTUInAUiBvnRSc0VHR2dmZupu/egk4AWdxF9NXa1Fyg/UQH80+tef+3zW9uh3ajqJvkyTD5ZUypr7KOgkACloqZ0UGRmZkZGhu/Wjk4AXdBJ/ofdvfNAQQH/q/HGr7R5/sTRhnfSH1u/8Zagpff2x4//KdxJ9LbpxvrmPgk4CkAJ0kjjoJOAFncTfN9di2/3WSS9OCjCq/2vGXdS8nkRfEy9FNvdR0EkAUoBOEgedBLygk/hT6KS2EZv/39tvKnTS28vt/+Zi9c7qOegkAL2GThIHnQS8oJP4E953e3ejC8ugVtuXtd7n9a6P66/fBn373vdL20ZufX2cBd53A9BrLbWTCgoKdPp7oZOAF3QSfzV1teYNx3Gr/2rzw6bXJ35FN/om4ThuAH3VUjtJ19BJwAs6SRKyy0tNkw+qiaRWQd++1r3TW4tn9Yjfg/MCAOgvdJI46CTgBZ0kFSWVsllXozuf26Oyk94/5ffx8W0j4vbfKVO8aKWG0EkAUoBOEgedBLygk6Tl57LH8zPPDksN75N0oPv5UPr6Mmm/5U9Hcd0SgJYBnSQOOgl4QSdJF66DC9DyoJPEQScBL+gkQ4FOApACdJI46CTgBZ1kKNBJAFKAThIHnQS8oJMMBToJQArQSeKgk4AXdJKhQCcBSAE6SRx0EvCCTjIU6CQAKUAniYNOAl7QSYYCnQQgBegkcdBJwAs6yVCgkwCkAJ0kDjoJeEEnGQp0EoAUoJPEQScBL+gkQ4FOApACdJI46CTgBZ1kKNBJAFKAThIHnQS8oJMMBToJQArQSeKgk4AXdJKhQCcBSAE6SRx0EvCCTjIU6CQAKUAniYNOAl7QSYYCnQQgBegkcdBJwAs6yVCgkwCkAJ0kDjoJeEEnGQp0EoAUoJPEQScBL+gkQ4FOApACdJI46CTgBZ1kKNBJAFKAThIHnQS8oJMMBToJQArQSeKgk4AXdJKhQCcBSAE6SRx0EvCCTjIU6CQAKUAniYNOAl7QSYYCnQQgBegkcdBJwAs6yVCgkwCkAJ0kDjoJeEEnGQp0EoAUoJPEQScBL+gkQ4FOApACdJI46CTgBZ1kKNBJAFKAThIHnQS8oJMMBToJQArQSeKgk4AXdJKhQCcBSAE6SRx0EvCCTjIU6CQAKUAniYNOAl70u5Oqq6sDAgKmTp06YcIEJyenhIQEujM/P7979+4artC7Ad2Ij4+fPHmyhj9FD9GvXz92+8cff3z27Jnmv4KG7t+/7+7ubm1t7ePjo3L9N2/edHZ2HjNmjIuLy61bt9id0dHR9C3dOXfu3IyMDPnl0UkAUqDQSZcuXXJ0dKTn7MyZMzds2FBZWUl32tnZHT9+XJO1yY87Gko0FjTcDOEhsrOzr1+/3rzfQQN1dXV79uyxsbGh345+R+UFvLy8nOSEhITI/21MTAzdSb+dcA86CXjR707y9fUdO3Zsamrq3bt3T5w4cfToUbqTqoLaRcMV3mxQ38xOooeg5dltGlLyT2atoFk5ePBgGpqZmZlWVlZubm4KC5SVlRkbG1Mj0ozbvn073a6oqKD7abLQvwMVEv3L9OjR4969e8KPoJMApEC+k+gZ+vnnn1Mi5OTkUEzQU549kdPS0jScKvLjrlmdJDzEjh07VqxY0dzfoknBwcEWFhbp6ekHDx6k37GgoEBhAdqtPfUbExMT+QZ69OgRDcDOnTvL/zroJOBFvztp+PDhERERCss8efKEKoHdphs0gLy9vWkQ0D4T5cXWrVtdXV0vXLjAFjjXoP73nXTo0CF3d3dnZ+cDBw5UV1cLq8rNzaVVbdu2jR6ChgvdeeTIESMjI1o5Dbg7d+7QyouKitjyMpmMFn7+/LmIX5MG34ABA9htmi8dO3YsKSmRX+DWrVtdu3YVvqWBQo+usBLaQ5XfJUUnAUiBfCfRM3TIkCHKy9BguXHjBt1ISUk5c+YMTTkPD489e/bU1tZSXtB02rhxI5st8uNO6CT6c/369fPmzVu9ejVNLfa3bNbRI9J+F+1fsYegUJs2bdqoUaNogoWFhdEC8juZ9NDnz58X92tS6Jw+fZrdpi3x8/NrbEna2i5dutAvItxDy9N20i4oOgmkQL87acGCBRQ3FD3y70zJvxBNN2xsbOiZHxgY+MUXX8ydO5eefocPHxb2b1S+70b30DppQFhZWXl5eQmrmjp1Kg0X+ivhfTcaNJ999hmtMykp6fHjx4sXL96+fTtbPjw8fMaMGQrbTzMuQElUVJTCYjRTnJychG+NjY1TU1PlF6iqqqJGpB21vLw8mm4jRowQeo4pLy+nDaZdRuEedBKAFMh3UkZGBu3k7N+/X+HVI+FNMdof69OnDw2E2NhYKg9bW1tKn7Nnz9KwWrNmTX0j77tRoJw4cYKe/kFBQTT32MPRWDMzM1u3bh2tqrCwkD0E1QlVl729PU2wjAa0TE1NDS1Pf9JthbfvaVdTeYIRhR05GoYdOnR48OAB+5Z+CwcHh8b+QTw9PWmSC99SnP3nP/+pbxi56CSQAv3uJHpyLlq0iJ5ONGtmzZqVmZlZr9RJwktHNGUOHDjAbs+cOfPkyZP1jR+fRM9zeiwqGFNTU2FVwq6V/PFJ8u+7Xb582cLCoq6ujm7T2pQDSMNOWtFA+JYeS3ibTxAdHU21R4OMNiAmJkb+r2gDXFxc5EurHp0EIA0KxyfRQLO0tKSqoNFBWcPulO8kGlbsTnoK0xBj44XG2tixY+sbPz6psrKSdqKuXbs2ZswYCqP6hlknv+cm/xDy04ZWGxcXRzfoT/pZhY3XsJNoq+g3ooWFLaeHU/mvQdvZq1evn376iX1L/zL0O7LAQieBROh3JzE0OO7cuTN//nwaE7QPpNBJQsQMHz5ceDYKM0K5k+h5O3v2bHquOjo6Um3Ir+rRo0fsdmOdxB4lJSWFttPExKSqqkphUym/8pQIb9UJNm3a5OrqKnzbt2/fxMRE+QVo/PXs2ZO910ajhG6zV+kZ2tG0trZmB4QK0EkAUqDy825Pnjw5ceIEDRP6s76RiKF7hNpIS0ujUVPfSCfRrhcNDRsbGzc3N7pTmHXsJSimsU6iActezqE/Dx06pLCd1dXVyhOMKEybhw8fUicVFxezb6n/GuukU6dOffXVVyz+iLu7O00/tk7aDzx37pwQW+gk4KUldBJDtUHPzIKCAjWdJLwPpaaTIiIirKyshIeTX9XTp0/ZbflO+uKLLxQOl16wYMGqVatoGipvJI2kMUo8PT0VFjt69KiwJ0djomPHjvfv35dfgB5l4sSJwrfjx48XDkXy8vKi7VcYW/XoJABpUHNeAGdnZ5YsL9lJPXr0EHacaBoozDpGeIidO3d6eHgI98tkMmNj40uXLtFkKy8vV9hCGrPKE4wIR0ExtbW1vXv3vnjxIvv222+/FQ5gUEA7pexYT2bevHnCOv/9738PGTJEeLkdnQS86Hcn7d27lz0/6Wnp4+NDz8yqqqqX7CS6f9KkSbTbRPNC4fUklZ1Eq42OjqbBx149Yp9EoxHzMh+CKykpoYdLSEig32v9+vXCG4L0+545c4ZuXLlypVu3buz1pKysrM8++4wdRrB27VoLCwu6h+2QCbti9egkAGmQ76T09PS4uDi2V5OTk2NiYrJ///56bXQSe+08MTGRakN9J9GfU6dOLS0tFcYFjRHakpUrV77Mr0n7itRANBWzs7N79ux59epVupPGtfxuIe3WGhkZKb+gzuB9N5AI/e4kaiNzc3N6Evbq1WvkyJGXL1+ub9jjmTZtGluAbghPQtpTEfax6LnKPua2t0F9w9xxd3evbzhEmiZI3759BwwYEBAQIL8qYe+K1ikMLAqs8ePH096PEGGurq7sheuXQQOOpl6XLl0okoTDIWmz2dYS2rY+ffrQ704TLTg4WNhI+Z08+SOf0EkAUiDfSdevX7eysqLdKvZEpo5hx1ALA+rIkSPCyy10jxAZNMpooNX/ftzRUGL7jceOHaPh0L9/f3t7exprCrOOER7i2bNnTk5ONC7YACS0A9ahQ4eXHBe02rlz59IEo99O6BvabGFr2XaqqTFaUv5lKnQS8KLfnSRN48aNYwdOSgo6CUAKpH8+7sjIyOnTp/PeCkXoJOAFnaRNZ86csbW1HTt2LNsplBR0EoAUSLmTZDKZu7t7nz59hI8JSwc6CXhBJ2lTbm5ucnKy8sGPUoBOApACKXdSdXV1UlJSdnY27w1RAZ0EvKCTDAU6CUAKpNxJUoZOAl70u5POnTt3+PBhjtvTpLy8PHt7e3Y7KyuLnucrVqwQTuNU35AvwlHYOoVOApAC+U6SyWQeHh6lpaV8N0k9Jycn9hGZK1eueHl5zZo1a/78+eyi4/UN54SbMGGCLq4FrgCdBLzodyft2LHDxcWF4/Y0iQaKcLJsNzc3d3f3AQMGyD/by8vL+/XrJ39tIx1BJwFIgXwnPX36tEOHDlq/kLYWXbx4UfiEmqenJ43c8+fPh4SEdOnSRUglb2/vgIAAXW8JOgl4aSGdVFZWFhwcXFBQsHbt2vXr1xcWFgrLpKam0tN79erV0dHR9O3t27ejoqJox0h4XScuLm7lypVr1qwRzhqQl5dHT/vly5f7+PgI55CsqKigO2nnj8accAqA+/fv07e05LFjx4RTygqKi4t79eqlcEz35MmTFZ7tixcvDg0N1cY/jzroJAApaKyTaC7RM3T//v3Lli2TP6NHSUkJTR66k/5kk42eyxQNW7du3bZtG31Ld/r6+tIChw8fFi7NRhOJ5h5NtlOnTgmrOnfuHE3CVatW0bRk53ujP8PDw+lnN27cyC55qcDJyUnla/aurq7ffvstu33nzh0zMzPlAahd6CTgpYV0Eg0aIyMjOzs7mg40Bfr378+mAI0Dun38+HGKITZT6LaJiQk9+SMjI2/evEmzZsSIEUeOHAkKCjI1NWUHMNJKaIeJfoSmT58+fdiLPe7u7hQ0SUlJ9IPsOth3797t27cvrZaWnzJlinDVbsHRo0eFN90Eyp1EP67mIpHagk4CkILGOonG1+DBgymGaMTRYKE5U99weqR+/fpR8SQmJu7du5ed4ZruoalFz+iYmJgHDx7Q4KJ10mSzsbFhJ1gqLy+nG/S3NFssLS3ZwMnIyLCwsKDZdfbsWX9/f/ZO2YIFC2bPnk2L0T7hgAEDHj9+LL+plD49e/akfUvl38LKykr+PNrdu3dXuZgWoZOAl5bTSR07dmTjhp7bNGXoSUupRE9ydnFcAU2T3r17sxPgymSyrl27Cq8Y7dq1Szj1bW1t7f379/Py8mbMmMHOWjtmzBh26SWBm5sba6/6hl26zz77TOGlo7Vr1ypfk0S5k9LS0szNzUX9ezQDOglACtR00vr169n9tNtG46W+4VS68+fPV1gDddLBgwfZbZowNGfY7bKyMtpdrKioYN/So9AEo4EpXGlg/PjxNPSE9dCOIg1D4R5XV1eF0VRSUkIrrK6uVtgAGrzDhw+X/2AvrfnHH38U9e+hKXQS8NJyOkk4eX99w7VEaARQ6NAMouKRXwMNC+Gi2bRMp06dhLNX084cO8VtfHw87VpZW1s7OTnRSGJPTpoCX3zxxdChQzds2MDO8U3Th/pG+HFqMvnrhBCqLvkLBTAqO0m4CoruoJMApEBNJ4WHh7P76dnKJhtFkvKb8sL1SYitrS0NK2EK9erV68GDB8+ePXNwcKCBNmfOHCsrK3aFE5pOdLtbt26Ojo7soMljx459/vnnws/SeoQdP4Y2jBZQePSIiAgzMzPhIgEMjTX2ApjuoJOAl5bcSTSMOnbsqNAu8tdIunfvXufOndk7dPJoCghHINEYEp6cdXV1mZmZtJ83atQo+nbmzJk0aNRsLQ0d4VIAAuVOSkxMFK56qzvoJAApUNNJwtWshU5aunSpQrvU/76TKHqU62HXrl3Ozs7sdnJyMuskpqSk5OTJk1RL58+fp1oaOXKkmk2VyWQ0QuU/jkcTz9TUNCcnR2FJajJdn5oSnQS8tOROqm94E93T05O9pMReBJLvJDJhwgRvb2+2AM0sNrB69+596dKl+obPwX766afsyXnt2jV2oGJqaip7+WfPnj3Dhg1j7+jTGuQv2chcvHiRFRVTUVFB85EeMTAwULhubv3vL3WpO+gkACloVifFxcXRtGHHBlRWVrJpI99J4eHhAwcOfPjwYX3DjlxWVhbd8Pf3nzNnDn37/PlzGxsb1knUGexK3nT/2LFj6bFoH7JPnz7Czh6tpLi4WGFracQJAXTq1KlevXrRAPxvA+ENvmfPnhkZGen6pFDoJOBFvzspLCyMHQBUWFg4YsQI4f7Zs2ezI7KpjWhM9O3b19zcnO6ke2gXSv41HvpBW1tbExMTmjW0GLswJO1v9ejRY+jQodOnT3dzc2NzZMqUKWZmZuzV6bNnz9Y3jBs/Pz/au2I/y44nkFdTU0MTTfjwHW3qQDnC9KF10ujR/j/W76GTAKRAvpOoVGgUsBFBc0k4hwj7tBq7HRwczAYUDbGkpKT6htek5U+ZHRQURHOGTSFHR0e6p7S0lE0qCwuLrVu3stHHXgqiOUn3U4SxYzQzMzPHjRtH99OdtAbhM78CGnHC8U9OTk7yE0zYwqioKPYQOoVOAl70u5M0VF5eTvtVahagHSOFi43QEFF4w66+4aT+bIdM4U6aeo19JpZKjsaimoemOfVqLjmJTgKQAhHn466qqlJ/ijXaJaN1KhyLScNK+aACGmuskBTulD++Wx6tdvDgwcrDUJ6VlRU7EaVOoZOAF4PoJI5ofp08eVLNAunp6bm5ua9gS9BJAFKgd9ctSUtLUzOjKKHkz/akO+gk4AWdZCjQSQBSoHedJBHoJOAFnWQo0EkAUoBOEgedBLygkwwFOglACtBJ4qCTgBf966SVIBY6CYA76iTek0BfoZOACz3rJAAAAIBXBp0EAAAAoBo6CQAAAEA1dBIAAACAaugkAAAAANXQSQAAAACqoZMAAAAAVPs/Ey8koHN/pVEAAAAASUVORK5CYII=\"}},{\"type\":\"text\",\"text\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 16-20: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\nthat - gives subgraph importance for small molecule activity prediction. On the\\n\\nother - hand, similarity maps compare model predictions for two or more molecules based - on\\n\\ntheir chemical fingerprints.83 Similarity maps provide atomic weights - or predicted probabil-\\n\\n\\n 9ity difference - between the molecules by removing one atom at a time. These weights can\\n\\nthen - be used to color the molecular graph and give a visual presentation. ChemInformatics\\n\\nModel - Explorer (CIME) is an interactive web based toolkit which allows visualization - and\\n\\ncomparison of different explanation methods for molecular property - prediction models.84\\n\\n\\nSurrogate models\\n\\n\\nOne approach to explain - black box predictions is to fit a self-explaining or interpretable\\n\\nmodel - to the black box model, in the vicinity of one or a few specific examples. These - are\\n\\nknown as surrogate models. Generally, one model per explanation is - trained. However, if we\\n\\ncould find one surrogate model that explained the - whole DL model, then we would simply\\n\\nhave a globally accurate interpretable - model. This means that the black-box model is no\\n\\nlonger needed.79 In the - work by White 79, a weighted least squares linear model is used as\\n\\nthe - surrogate model. This model provides natural language based descriptor explanations - by\\n\\nreplacing input features with chemically interpretable descriptors. - This approach is similar\\n\\nto the concept-based explanations approach used - by McGrath et al. 85, where human under-\\n\\nstandable concepts were used in - place of input features in acquisition of chess knowledge in\\n\\nAlphaZero. - Any of the self-explaining models detailed in the Self-explaining models section\\n\\ncan - be used as a surrogate model.\\n\\n The most commonly used surrogate model - based method is Locally Interpretable Model\\n\\nExplanations (LIME).35 LIME - creates perturbations around the example of interest and fits\\n\\nan interpretable - model to these local perturbations. Ribeiro et al. 35 mathematically define\\n\\nan - explanation \u03BE for an example \u20D7x using Equation 4.\\n\\n\\n\\n \u03BE(\u20D7x) - = arg min L(f, g, \u03C0x) + \u2126(g) (4)\\n g\u2208G\\n\\n - \ Here f is the black box model and g \u2208G is the interpretable explanation - model. G is\\n\\na class of potential interpretable models (e.g.: linear models). - \u03C0x is a similarity measure\\n\\n\\n\\n 10between - original input \u20D7x and it\u2019s perturbed input \u20D7x\u2032. In context - of molecular data, this can\\n\\nbe a chemical similarity metric like Tanimoto86 - similarity between fingerprints. The goal for\\n\\nLIME is to minimize the loss, - L, such that f is closely approximated by g. \u2126is a parameter\\n\\nthat - controls the complexity (sparsity) of g. Ribeiro et al. 35 termed the agreement - (how low\\n\\nthe loss is) between f and g as the \u201Cfidelity\u201D.\\n\\n - \ GraphLIME87 and LIMEtree88 are modifications to LIME as applicable to graph - neural\\n\\nnetworks and regression trees, respectively. LIME has been used - in chemistry previously,\\n\\nsuch as Whitmore et al. 89 who used LIME to explain - octane number predictions of molecules\\n\\nfrom a random forest classifier. - Mehdi and Tiwary 90 used LIME to explain thermodynamic\\n\\ncontributions of - features. Gandhi and White 10 use an approach similar to GraphLIME,\\n\\nbut - use chemistry specific fragmentation and descriptors to explain molecular property - pre-\\n\\ndiction. Some examples are highlighted in the Applications section. - \ In recent work by\\n\\nMehdi and Tiwary 90, a thermodynamic-based surrogate - model approach was used to inter-\\n\\npret black-box models. The authors define - an \u201Cinterpretation free energy\u201D which can be\\n\\nachieved by minimizing - the surrogate model\u2019s uncertainty and maximizing simplicity.\\n\\n\\nCounterfactual - explanations\\n\\n\\nCounterfactual explanations can be found in many fields - such as statistics, mathematics and\\n\\nphilosophy.91\u201394 According to - Woodward and Hitchcock 92, a counterfactual is an example\\n\\nwith minimum - deviation from the initial instance but with a contrasting outcome. They\\n\\ncan - be used to answer the question, \u201Cwhich smallest change could alter the - outcome of an\\n\\ninstance of interest?\u201D While the difference between - the two instances is based on the exis-\\n\\ntence of similar worlds in philosophy,95 - a distance metric based on molecular similarity is\\n\\nemployed in XAI for - chemistry. For example, in the work by Wellawatte et al. 9 distance\\n\\nbetween - two molecules is defined as the Tanimoto distance96 between ECFP4 fingerprints.97\\n\\nAdditionally, - Mohapatra et al. 98 introduced a chemistry-informed graph representation for\\n\\ncomputing - macromolecular similarity. Contrastive explanations are peripheral to counterfac-\\n\\n\\n - \ 11tual explanations. Unlike the counterfactual - approach, contrastive approach employ a dual\\n\\noptimization method, which - works by generating a similar and a dissimilar (counterfactuals)\\n\\nexample. - Contrastive explanations can interpret the model by identifying contribution - of\\n\\npresence \\n\\n----\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\nssion + challenge and is\\n\\nimportant for chemical process design, drug design and + crystallization.133\u2013136 In our previous\\n\\nworks,9,10 we implemented + and trained an RNN model in Keras to predict solubilities (log\\n\\nmolarity) + of small molecules.127 The AqSolDB curated database137 was used to train the\\n\\nRNN + model.\\n\\n In this task, counterfactuals are based on equation 6. Figure + 3 illustrates the generated\\n\\nlocal chemical space and the top four counterfactuals. + Based on the counterfactuals, we ob-\\n\\nserve that the modifications to the + ester group and other heteroatoms play an important role\\n\\nin solubility. + These findings align with known experimental and basic chemical intuition.134\\n\\nFigure + 4 shows a quantitative measurement of how substructures are contributing to + the pre-\\n\\n\\n\\n 16Figure 2: Descriptor + explanations along with natural language explanation obtained for BBB\\npermeability + of Alprozolam molecule. The green and red bars show descriptors that influ-\\nence + predictions positively and negatively, respectively. Dotted yellow lines show + significance\\nthreshold (\u03B1 = 0.05) for the t-statistic. Molecular descriptors + show molecule-level proper-\\nties that are important for the prediction. ECFP + and MACCS descriptors indicate which\\nsubstructures influence model predictions. + MACCS explanations lead to text explanations\\nas shown. Republished from Ref.10 + with permission from authors. SMARTS annotations for\\nMACCS descriptors were + created using SMARTSviewer (smartsview.zbh.uni-hamburg.de,\\nCopyright: ZBH, + Center for Bioinformatics Hamburg) developed by Schomburg et al. 132.\\n\\n\\n\\n\\n\\n + \ 17diction. For example, we see that adding + acidic and basic groups as well as hydrogen bond\\n\\nacceptors, increases solubility. + Substructure importance from ECFP97 and MACCS138 de-\\n\\nscriptors indicate + that adding heteroatoms increases solubility, while adding rings structures\\n\\nmakes + the molecule less soluble. Although these are established hypotheses, it is + interesting\\n\\nto see they can be derived purely from the data via DL and + XAI.\\n\\n\\n\\n\\n\\nFigure 3: Generated chemical space for solubility prediction + using the RNN model. The\\nchemical space is a 2D projection of the pairwise + Tanimoto similarities of the local coun-\\nterfactuals. Each data point is colored + by solubility. Top 4 counterfactuals are shown here.\\nRepublished from Ref.9 + with permission from the Royal Society of Chemistry.\\n\\n\\n\\nGeneralizing + XAI \u2013 interpreting scent-structure relationships\\n\\n\\nIn this example, + we show how non-local structure-property relationships can be learned with\\n\\nXAI + across multiple molecules. Molecular scent prediction is a multi-label classification + task\\n\\nbecause a molecule can be described by more than one scent. For example, + the molecule\\n\\njasmone can be described as having \u2018jasmine,\u2019 \u2018woody,\u2019 + \u2018floral,\u2019 and \u2019herbal\u2019 scents.139 The\\n\\nscent-structure + relationship is not very well understood,140 although some relationships are\\n\\nknown. + \ For example, molecules with an ester functional group are often associated + with\\n\\n\\n 18Figure 4: Descriptor explanations + for solubility prediction model. The green and red bars\\nshow descriptors that + influence predictions positively and negatively, respectively. Dotted\\nyellow + lines show significance threshold (\u03B1 = 0.05) for the t-statistic. The MACCS + and\\nECFP descriptors indicate which substructures influence model predictions. + MACCS sub-\\nstructures may either be present in the molecule as is or may represent + a modification. ECFP\\nfingerprints are substructures in the molecule that affect + the prediction. MACCS descriptor\\nare used to obtain text explanations as shown. + Republished from Ref.10 with permission from\\nauthors. SMARTS annotations for + MACCS descriptors were created using SMARTSviewer\\n(smartsview.zbh.uni-hamburg.de, + Copyright: ZBH, Center for Bioinformatics Hamburg) de-\\nveloped by Schomburg + et al. 132.\\n\\n\\n\\n\\n\\n 19the \u2018fruity\u2019 + scent. There are some exceptions though, like tert-amyl acetate which has a\\n\\n\u2018camphoraceous\u2019 + rather than \u2018fruity\u2019 scent.140,141\\n\\n In Seshadri et al. 31, + we trained a GNN model to predict the scent of molecules and utilized\\n\\ncounterfactuals9 + and descriptor explanations10 to quantify scent-structure relationships. The\\n\\nMMACE + method was modified to account for the multi-label aspect of scent prediction. + This\\n\\nmodification defines molecules that differed from the instance molecule + by only the selected\\n\\nscent as counterfactuals. For instance, counterfactuals + of the jasmone molecule would be false\\n\\nfor the \u2018jasmine\u2019 scent + but would still be positive for \u2018woody,\u2019 \u2018floral\u2019 and \u2018herbal\u2019 + scents.\\n\\n\\n\\n\\n\\nFigure 5: Counterfactual for the 2,4 decadienal molecule. + \ The counterfactual indicates\\nstructural changes to ethyl benzoate that would + result in the model predicting the molecule\\nto not contain the \u2018fruity\u2019 + scent. The Tanimoto96 similarity between the counterfactual and\\n2,4 decadienal + is also\\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}]}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4051,13 +4068,13 @@ interactions: connection: - keep-alive content-length: - - "6077" + - "188629" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4067,7 +4084,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4083,22 +4100,23 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNb9tIDL37VxBzloPYcZLGx+0lXWC3e0hbFHVh0DOUxWQ+1CGVxAjy - 34uRlUjdZoG96DCPfOR7JPU0AzDszBqMbVBtaP38j8Nfdfvx3fn1l7+vPq0+frq+lX/Szef0Ve/+ - /GGqkpF2t2T1JevEptB6Uk7xCNtMqFRYF5fnZ5fLi/Ozyx4IyZEvaftW56s0X54uV/PFYr48HRKb - xJbErOHbDADgqf+WFqOjR7OG0+rlJZAI7smsX4MATE6+vBgUYVGMaqoRtCkqxb7rp00E2BjpQsB8 - 2Jg1bMz71EWlXKPVDj3QY+sxYhElgJnAkdjMO3KAAvSIRbLAA2sDgSMH9ODonvsMqHMKoA1Byrzn - iB44loYswa7TYxZC6SijKMc9pE5tCnQCNw0dADmAJsAoD5R7oh8dSU+danhoUEECek+iYBuMewKb - Ou8AvQ4JA2GJxziWTzVw0UmiJ/Ah9qG9M49asJA82c5jhjaTY9uX7McmVSkxsUigEwIExwN1IM1s - K5DONsWkQn2DkUPSNEbtSB+I4qRSzXFPuc0cVaoi25FSDhwJhAN7zKyH3hih3+eCfY+48zTUPECb - 0z07AmnJcs12sKigqINRntD1FoPjuqZMUV8sqyDgXZmJNhSKyLrzUKcMXXSUiwxXUIwO2lRWitH7 - Q3GJ60NBRuvkZGOq47Jl8nRfHNiKTZnK0l1t4vN0QzPVnWA5kNh5PwEwxqRHzeU2vg/I8+s1+LRv - c9rJv1JNzZGl2WZCSbFsvmhqTY8+zwC+91fX/XJIps0ptLrVdEd9ucVy9e5IaMZDn8CLiwHVpOgn - wNnFqnqDcutIkb1MTtdYtA25MXe8c+wcpwkwmwj/vZ+3uI/iOe7/D/0IWEutktuOw3wrLFP5E/5X - 2KvRfcNGKN+zpa0y5TIMRzV2/viTMnIQpbCdHMMwzNnz7CcAAAD//wMA983HQacFAAA= + H4sIAAAAAAAAA3RUTY8bNwy9+1cQOtuGv4JtfSsCBC16aZEWRVsHNi1xZrjVSLMitba72P8eaPw1 + ySaXOczj48d7Il9GAIadWYOxDaptOz95P//VHd3Hp39+nzXptw/4w89Pj4env//6Bauf/jTjwoj7 + R7J6ZU1tbDtPyjGcYZsIlUrW+cO71Wq5fJg/9EAbHflCqzudrOJkMVusJvP5ZDG7EJvIlsSs4d8R + AMBL/y0tBkdHs4bZ+PqnJRGsyaxvQQAmRV/+GBRhUQxqxnfQxqAU+q53u92jxLAJL5sAsDGS2xbT + aWPWsDHvYw5KqUKrGb0AJgK0ZTrcewIOoA1Bn+2oECtooyebPSboEjnuQ6EfVabwR0PQpfjMjhxU + XOdEAhgc9GxHbQyiCZWgiQewX9W2GKDO7AhEU7aaE/qSmiu2WOoIaAS0DdMzgSPhRK7U6ygpk4xB + sm0ABTgUV4QcSPR5z571BDEBeqXCEUtBC7NiTzKFDzEBHbEYO35bkUQpQZ1i7s7TNKSUImpsBQ6U + CKSJh1BCOVQ+U7A0LHwXSsaAnuvAoYYDawN07ChxS0HR96ltQy1b9MBBMxfOFD5yyx6TP43fSNZX + z2XQUtxRUK5OQ/lsg6EmAW1QAauKrN6mH3R1Fa4XqHRXXK9SLu2fw2MFeDWfeqeFrpoJNFw3nutG + e2KXyhMqU2S9aF+9aZ3PZpdit6GLp3XohYidcsv/9y5MN2Z8fruJPD1jsLQVGxOVNzyfXbAiw5Zb + rEnKf02ZNuF1E3a73XAzElVZsCxmyN4PAAwh6tn1spOfLsjrbQt9rLsU9/IV1VQcWJpteXExlI0T + jZ3p0dcRwKd+2/MXC2y6FNtOtxr/o77cYjG7rLu5H5g7PF+tLqhGRT/gLW/IFym3jhTZy+BkGIu2 + ITdI+uPifmIwO453bDYazP62pW+lP8/PoR5k+W76O2AtdUpue3+P3wpLVI7w98JuWvcNG6H0zJa2 + ypSKH44qzP58H42cRKndVhxqSl3i85Gsuu27fbVc2jnZlRm9jj4DAAD//wMAhxL9sS0GAAA= headers: CF-RAY: - - 96665ceb69a4cefd-SJC + - 96a9ce0b6d29f93d-SJC Connection: - keep-alive Content-Encoding: @@ -4106,9 +4124,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:39 GMT + - Tue, 05 Aug 2025 22:42:00 GMT Server: - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4122,29 +4142,33 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "1869" + - "2984" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "1874" + - "2669" + x-ratelimit-limit-input-images: + - "250000" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: - "30000000" + x-ratelimit-remaining-input-images: + - "249998" x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998546" + - "29996944" + x-ratelimit-reset-input-images: + - 0s x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 6ms x-request-id: - - req_c31bdf1c31ce474267efebbfc009fcde + - req_7f07fd7807af9a299a314d9a46e66349 status: code: 200 message: OK @@ -4152,78 +4176,83 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 14-16: Geemi P. Wellawatte, Heta + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 33-35: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\nsame - optimization problem.100 Grabocka\\n\\net al. 111 have developed a method named - Adversarial Training on EXplanations (ATEX)\\n\\nwhich improves model robustness - via exposure to adversarial examples. While there are\\n\\nconceptual disparities, - we note that the counterfactual and adversarial explanations are\\n\\nequivalent - mathematical objects.\\n\\n Matched molecular pairs (MMPs) are pairs of molecules - that differ structurally at only\\n\\none site by a known transformation.112,113 - MMPs are widely used in drug discovery and\\n\\nmedicinal chemistry as these - facilitate fast and easy understanding of structure-activity re-\\n\\nlationships.114\u2013116 - Counterfactuals and MMP examples intersect if the structural change is\\n\\nassociated - with a significant change in the properties. In the case the associated changes - in\\n\\nthe properties are non-significant, the two molecules are known as bioisosteres.117,118 - The con-\\n\\nnection between MMPs and adversarial training examples has been - explored by van Tilborg\\n\\net al. 119. MMPs which belong to the counterfactual - category are commonly used in outlier\\n\\nand activity cliff detection.113 - This approach is analogous to counterfactual explanations,\\n\\nas the common - objective is to uncover learned knowledge pertaining to structure-property\\n\\nrelationships.70\\n\\n\\nApplications\\n\\n\\nModel - interpretation is certainly not new and a common step in ML in chemistry, but - XAI for\\n\\nDL models is becoming more important60,66\u201369,73,88,104,105 - Here we illustrate some practical\\n\\nexamples drawn from our published work - on how model-agnostic XAI can be utilized to\\n\\n\\n\\n 14interpret - black-box models and connect the explanations to structure-property relationships.\\n\\nThe - methods are \u201CMolecular Model Agnostic Counterfactual Explanations\u201D - (MMACE)9\\n\\nand \u201CExplaining molecular properties with natural language\u201D.10 - Then we demonstrate how\\n\\ncounterfactuals and descriptor explanations can - propose structure-property relationships in\\n\\nthe domain of molecular scent.31\\n\\n\\nBlood-brain - barrier permeation prediction\\n\\n\\nThe passive diffusion of drugs from the - blood stream to the brain is a critical aspect in drug\\n\\ndevelopment and - discovery.120 Small molecule blood-brain barrier (BBB) permeation is a\\n\\nclassification - problem routinely assessed with DL models.121,122 To explain why DL models\\n\\nwork, - we trained two models a random forest (RF) model123 and a Gated Recurrent Unit\\n\\nRecurrent - Neural Network (GRU-RNN). Then we explained the RF model with generated\\n\\ncounterfactuals - explanations using the MMACE9 and the GRU-RNN with descriptor expla-\\n\\nnations.10 - Both the models were trained on the dataset developed by Martins et al. 124. - The\\n\\nRF model was implemented in Scikit-learn125 using Mordred molecular - descriptors126 as the\\n\\ninput features. The GRU-RNN model was implemented - in Keras.127 See Wellawatte et al. 9\\n\\nand Gandhi and White 10 for more details.\\n\\n - \ According to the counterfactuals of the instance molecule in figure 1, we - observe that the\\n\\nmodifications to the carboxylic acid group enable the - negative example molecule to permeate\\n\\nthe BBB. Experimental findings by - Fischer et al. 120 show that the BBB permeation of\\n\\nmolecules are governed - by hydrophobic interactions and surface area. The carboxylic group is\\n\\na - hydrophilic functional group which hinders hydrophobic interactions and addition - of atoms\\n\\nenhances the surface area. This proves the advantage of using - counterfactual explanations,\\n\\nas they suggest actionable modification to - the molecule to make it cross the BBB.\\n\\n In Figure 2 we show descriptor - explanations generated for Alprozolam, a molecule that\\n\\npermeates the BBB, - using the method described by Gandhi and White 10. We see that\\n\\npredicted - permeability is positively correlated with the aromaticity of the molecule, - while\\n\\n\\n 15negatively correlated - with the number of hydrogen bonds donors and acceptors. A similar\\n\\nstructure-property - relationship for BBB permeability is proposed in more mechanistic stud-\\n\\nies.128\u2013130 - The substructure attributions indicates a reduction in hydrogen bond donors - and\\n\\nacceptors. These descriptor explanations are quantitative and interpretable - by chemists.\\n\\nFinally, we can use a natural language model to summarize - the findings into a written\\n\\nexplanation, as shown in the printed text in - Figure 2.\\n\\n\\n\\n\\n\\nFigure 1: Counterfactuals of a molecule which cannot - permeate the blood-brain barrier.\\nSimilarity is the Tanimoto similarity of - ECFP4 fingerprints.131 Red indicates deletions and\\ngreen indicates substitutions - and addition of atoms. Republished from Ref.9 with permission\\nfrom the Royal - Society of Chemistry.\\n\\n\\n\\nSolubility prediction\\n\\n\\nSmall molecule - solubility prediction is a classic cheminformatics regression challenge and - is\\n\\nimportant for chemical process design, drug design and crystallization.133\u2013136 - In our previous\\n\\nworks,9,10 we implemented and trained an RNN model in Keras - to predict solubilities (log\\n\\nmolarity) of small molecules.127 The AqS\\n\\n----\\n\\nQuestion: + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\n13,\\n\\n + \ 1\u201320.\\n\\n\\n(78) Mastropietro, A.; Pasculli, G.; Feldmann, C.; Rodr\xB4\u0131guez-P\xB4erez, + R.; Bajorath, J. Edge-\\n\\n SHAPer: Bond-Centric Shapley Value-Based Explanation + Method for Graph Neural\\n\\n Networks. iScience 2022, 25, 105043.\\n\\n\\n(79) + White, A. D. Deep learning for molecules and materials. Living Journal of Computa-\\n\\n + \ tional Molecular Science 2022, 3.\\n\\n(80) \u02D8Strumbelj, E.; Kononenko, + I. Explaining prediction models and individual predictions\\n\\n with feature + contributions. Knowledge and Information Systems 2014, 41, 647\u2013665.\\n\\n\\n(81) + Erhan, D.; Bengio, Y.; Courville, A.; Vincent, P. Visualizing Higher-Layer Features + of\\n\\n a Deep Network. Technical Report, Univerist\xB4e de Montr\xB4eal + 2009,\\n\\n\\n(82) Weber, J. K.; Morrone, J. A.; Bagchi, S.; Pabon, J. D.; gu + Kang, S.; Zhang, L.;\\n\\n Cornell, W. D. Simplified, interpretable graph + convolutional neural networks for small\\n\\n molecule activity prediction. + Journal of Computer-Aided Molecular Design 2022, 36,\\n\\n 391\u2013404.\\n\\n\\n(83) + Riniker, S.; Landrum, G. A. Similarity maps - A visualization strategy for molecular\\n\\n + \ fingerprints and machine-learning methods. Journal of Cheminformatics 2013, + 5, 1\u20137.\\n\\n\\n(84) Humer, C.; Heberle, H.; Montanari, F.; Wolf, T.; Huber, + F.; Henderson, R.; Hein-\\n\\n rich, J.; Streit, M. ChemInformatics Model + Explorer (CIME): exploratory analysis of\\n\\n chemical model explanations. + Journal of Cheminformatics 2022, 14, 1\u201314.\\n\\n\\n(85) McGrath, T.; Kapishnikov, + A.; Toma\u02C7sev, N.; Pearce, A.; Wattenberg, M.; Hass-\\n\\n abis, D.; + Kim, B.; Paquet, U.; Kramnik, V. Acquisition of chess knowledge in Al-\\n\\n + \ phaZero. Proceedings of the National Academy of Sciences 2022, 119, e2206625119.\\n\\n\\n\\n\\n + \ 33(86) Bajusz, D.; R\xB4acz, A.; H\xB4eberger, + K. Why is Tanimoto index an appropriate choice for\\n\\n fingerprint-based + similarity calculations? Journal of Cheminformatics 2015, 7, 1\u201313.\\n\\n\\n(87) + Huang, Q.; Yamada, M.; Tian, Y.; Singh, D.; Yin, D.; Chang, Y. GraphLIME:\\n\\n + \ Local Interpretable Model Explanations for Graph Neural Networks. CoRR + 2020,\\n\\n abs/2001.06216.\\n\\n\\n(88) Sokol, K.; Flach, P. A. LIMEtree: + Interactively Customisable Explanations Based on\\n\\n Local Surrogate Multi-output + Regression Trees. CoRR 2020, abs/2005.01427.\\n\\n\\n(89) Whitmore, L. S.; George, + A.; Hudson, C. M. Mapping chemical performance on molec-\\n\\n ular structures + using locally interpretable explanations. 2016; https://arxiv.org/\\n\\n abs/1611.07443.\\n\\n\\n(90) + Mehdi, S.; Tiwary, P. Thermodynamics of Interpretation. 2022,\\n\\n\\n(91) H\xA8ofler, + M. Causal inference based on counterfactuals. BMC Medical Research Method-\\n\\n + \ ology 2005, 5, 1\u201312.\\n\\n\\n(92) Woodward, J.; Hitchcock, C. Explanatory + Generalizations, Part I: A Counterfactual\\n\\n Account. No\u02C6us 2003, + 37, 1\u201324.\\n\\n\\n(93) Frisch, M. F. Theories, models, and explanation; + University of California, Berkeley,\\n\\n 1998.\\n\\n\\n(94) Reutlinger, + A. Is There A Monist Theory of Causal and Non-Causal Explanations?\\n\\n The + Counterfactual Theory of Scientific Explanation. Philosophy of Science 2016, + 83,\\n\\n 733\u2013745.\\n\\n\\n(95) Lewis, D. Causation. The journal of + philosophy 1974, 70, 556\u2013567.\\n\\n\\n(96) Tanimoto, T. T. Elementary mathematical + theory of classification and prediction.\\n\\n Internal IBM Technical Report + 1958,\\n\\n\\n 34 (97) Rogers, D.; Hahn, + M. Extended-Connectivity Fingerprints. Journal of Chemical In-\\n\\n formation + and Modeling 2010, 50, 742\u2013754, PMID: 20426451.\\n\\n\\n (98) Mohapatra, + S.; An, J.; G\xB4omez-Bombarelli, R. Chemistry-informed macromolecule\\n\\n + \ graph representation for similarity computation, unsupervised and supervised + learn-\\n\\n ing. Machine Learning: Science and Technology 2022, 3, 015028.\\n\\n\\n + (99) Doshi-Velez, F.; Kortz, M.; Budish, R.; Bavitz, C.; Gershman, S.; O\u2019Brien, + D.;\\n\\n Scott, K.; Schieber, S.; Waldo, J.; Weinberger, D.; Weller, + A.; Wood, A. Account-\\n\\n ability of AI Under the Law: The Role of Explanation. + SSRN Electronic Journal\\n\\n 2017,\\n\\n\\n(100) Wachter, S.; Mittelstadt, + B.; Russell, C. Counterfactual explanations without opening\\n\\n the black + box: Automated decisions and the GDPR. Harv. JL & Tech. 2017, 31, 841.\\n\\n\\n(101) + Jim\xB4enez-Luna, J.; Grisoni, F.; Schneider, G. Drug discovery with explainable + artificial\\n\\n intelligence. Nature Machine Intelligence 2020 2:10 2020, + 2, 573\u2013584.\\n\\n\\n(102) Fu, T.; Gao, W.; Xiao, C.; Yasonik, J.; Coley, + C. W.; Sun, J. Differentiable Scaffold-\\n\\n ing Tree for Molecule Optimization. + International Conference on Learning Represen-\\n\\n tations. 2022.\\n\\n\\n(103) + Shen, C.; Krenn, M.; Eppel, S.; Aspuru-Guzik, A. Deep molecular dreaming: inverse\\n\\n + \ machine learning for de-novo molecular design and interpretability with + surjective\\n\\n representations. Machine Learning: Science and Technology + 2021, 2, 03LT02.\\n\\n\\n(104) Lucic, A.; ter Hoeve, M.; Tolomei, G.; + \ Rijke, M.; Silvestri, F. CF-\\n\\n GNNExplainer: Counterfactual + Explanations for Graph Neural Networks. arXiv\\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -4233,13 +4262,13 @@ interactions: connection: - keep-alive content-length: - - "6062" + - "6390" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4249,7 +4278,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4265,23 +4294,23 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNiyM3EL37VxQ6JdA2Y89OZvHRA4Ec8kVCQogXUy1Vd9dGrVKkktdm - mP++qO0Ze3YnkIsN/aqe3tOr0uMMwLAzazB2QLVj9PPN8cfu379+/emj/Lba93/yLxFx/0dfHh5+ - uP/ZNLVD2o9k9blrYWWMnpQlnGCbCJUq6/L+7vZ+9d3d7fsJGMWRr2191Pk7ma9uVu/my+V8dXNu - HIQtZbOGv2cAAI/Tb5UYHB3MGm6a5y8j5Yw9mfVLEYBJ4usXgzlzVgxqmgtoJSiFSfXjNgBsTS7j - iOm4NWvYmgcpQSl1aLWgz4CJAG01ha0nwAw60BFikj07ghzJcscWRnH1H2tlBhUYxZMtHhNkTcVq - SVR7UcFiAE/oapWjzIkc2AFDTxk4VOpISZnyAr6XBHTAeq9NxXQgmAwcFKSD1ou4eZuQA7SYElOC - bzabzbcQKY00iYGYyPHkoAH7yh3QIXoMZ8259D1lJfe1l+lYTK0cjp4toGUHfZISqwh8tkoNUL0l - Dj2w1r6zCpoINpvNAn4fKL+6UA6Z+0EzoOc+wCfWocqixCMFRQ8dB8ehzw04GiVkTaj1hEE+wXB0 - SeIgLVvgauxEnAGDg1yqT6oJInDofKFgJxlnXS171uMCvoxch5JBuo4SxInRooe+sMPa30m6yrbm - 1wdop4mIkquy5yxfwkY7MO2vhkWKWhkpL7amOc1gIk/7yr/LVhLVWVzebMPT9eQm6krGujiheH8F - YAiip7Tqznw4I08vW+Klj0na/EWr6ThwHnaJMEuoG5FVopnQpxnAh2kby6sFMzHJGHWn8g9Nxy1X - d3cnQnN5AK7h2zOqouivgNv7980blDtHiuzz1Uobi3Ygd+m97D8Wx3IFzK6Mf63nLe6TeQ79/6G/ - ANZSVHK7y3a9VZaovpD/VfZy0ZNgkynt2dJOmVINw1GHxZ8eL5OPWWncdRx6SjHx9ILVMGdPs88A - AAD//wMA2J8Vr78FAAA= + H4sIAAAAAAAAA3xUTW8bNxC961cMeChaQBIkWZZd3YIURQojKNqkCIoqWNHk7O5EXJLgzNpSDf/3 + gruWtHKSXniYN/M4b76eRgCKrFqDMrUW00Q3eTu/s4c/36xWv//91y/Rvr97++EP2f96935X7h/U + OEeE+y9o5Bg1NaGJDoWC72GTUAtm1vnN9XJ5dXUzv+2AJlh0OayKMlmGyWK2WE7m88li9hJYBzLI + ag3/jAAAnro3p+gt7tUaZuOjpUFmXaFan5wAVAouW5RmJhbtRY3PoAle0HdZb7fbLxz8xj9tPMBG + cds0Oh02ag0b9bFGwL3BFAUSlpjQG2RoWicUHcJjSDuGhC5rBAlgQusFU6mNtNoB7qPTXudyMGhv + QWqkBDpGR6Y3j4G8ca0lX4HRLWsH5F9+6kJeUWrTGRjIAxtCL1SSufhpCh8immzWzh3GQAJN9stJ + 9Bk72iG8axtMgALaTeHHxWyx+AmCB1NjkyOh69AF8Rg+aVPLRdT8po/6H+HkQbcSmq5IFg1xT5bV + fQrBPupk4Qd4R2JqE8wu086uOtojT0gHqNBj0o7+faFtuavZxcc8hY81MgJLawkZuK0qZAGptbz2 + BZ0QWu47F1N4IItft4w8U1ULjyHqJGRap5M7ZFFvfuscBl3o5mqffR9rMjVQE13Oom97DHnoqGti + 5tf35Eg6qmNVJo3eZVWZt/UWUx7dfja6xdoDH1iw4elGjfuBTejwQXuDBZuQsB/c2xOc9RXU6Ao5 + Q6V2jBv/vPHb7Xa4EgnLPHxqDb51bgBo74P09cjL+PkFeT6tnwtVTOGeX4WqkjxxXSTUHHxeNZYQ + VYc+jwA+d2veXmyuiik0UQoJO+y+m99c3/aE6nxZBvDyiEoQ7QbAz7PV+BuUhUXR5HhwK5TRpkY7 + iF2tlicRurUUzthsNND+dUrfou/1k68GLN+lPwPGYBS0RUxoyVzKPrslzNf3e26nWncJK8b0QAYL + IUy5HxZL3br+MKp+roqSfIUpJuqvYxmLxXyFq+ulWVo1eh79BwAA//8DADU7JUMmBgAA headers: CF-RAY: - - 96665cf25822fa86-SJC + - 96a9ce150d30eb20-SJC Connection: - keep-alive Content-Encoding: @@ -4289,7 +4318,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:40 GMT + - Tue, 05 Aug 2025 22:42:00 GMT Server: - cloudflare Transfer-Encoding: @@ -4305,7 +4334,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2029" + - "1870" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -4313,7 +4342,7 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2038" + - "1873" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4321,13 +4350,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998552" + - "29998478" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - req_ba4bbca77fa7440662f0f273117ecbbf + - req_0defd0dfb3532c527294e7c3adf60abf status: code: 200 message: OK @@ -4335,14 +4364,17 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt from wellawatteUnknownyearaperspectiveon pages 3-5: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\n + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\n a passive characteristic of a model, whereas explainability\\n\\nis an active characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, an explanation is extra information that gives the context and a cause for one @@ -4407,7 +4439,8 @@ interactions: \ We present an example evaluation of the SHAP explanation method based on the above\\n\\nattributes.44 Shapley values were proposed as a local explanation method based on feature\\n\\nattribution, as they offer a complete explanation - - each feature i\\n\\n----\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + - each feature i\\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? + [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4416,13 +4449,13 @@ interactions: connection: - keep-alive content-length: - - "6081" + - "6357" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4432,7 +4465,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4448,23 +4481,23 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNbxs3EL3rVwx4SQtIhiXHda2bE/TgtjkUKNKkVSCNuLO7k3JJgjOU - tDX83wvuKpLcpkAvC+y8mcc3n08TAMOVWYKxLartopu96d/V6ffHd98ffr57/KV/89Purbu9f998 - 9P7HazMtEWH7max+ibqyoYuOlIMfYZsIlQrr/O725m7x3e3N/QB0oSJXwpqos9dhtrhevJ7N57PF - kde2gS2JWcIfEwCAp+FbJPqKDmYJ19Mvlo5EsCGzPDkBmBRcsRgUYVH0aqZn0Aav5AfVm83mswS/ - 8k8rD7AykrsOU78yS1iZtyF7pVSj1YxOABOBRaUmJP6LKkABFyw64OIWEymW1AXYww+H6JA9bh3B - wyN88+Hh8VvYksUsBNpSDzR6gESyXLMF9kWpJbmCX1sCpYNCxWKzCAmgauJtVhKoQwLaocuo7JuR - yI9PT4G9dbkq9lcPttiKhOkr2LdsW8DCVej2LWlLCViBBawjTNCGPbCPWaEm1JxIwKKHLYFt0TdU - gQboQsV1X1KAkDVmvYLfWnYE9ivV8kEHeWxZXQ8Ot+TGwuFJW6lWYaODpRR1Wn44QcwpBiloS4l8 - CWe/C25HAlyRV677kuUoTYq0QbuAtqiwD9lV4AgH0RXX9cBSNNvQkUwBHTe+MOxZ20GBDd5SVAj1 - SR471v5qZabjeCRytCs9WosNicqY3K/888pvNpvLCUtUZ8Ey4D47dwGg9+E4JWW2Px2R59M0u9DE - FLbyj1BTs2dp14lQgi+TKxqiGdDnCcCnYWvyi0UwMYUu6lrDnzQ8N19c34+E5ryoF/B8fkQ1KLoL - 4GZxXLeXlOuKFNnJxeoZi7al6hx73lPMFYcLYHKR+L/1fI17TJ5983/oz4AtTaVqHRNVbF/mfHZL - VC7Zf7mdCj0INkJpx5bWypRKMyqqMbvxyBjpRalb1+ybchV4uDSlmZPnyd8AAAD//wMA0YvWlGcF - AAA= + H4sIAAAAAAAAAwAAAP//dFRNbxs5DL37VxC6dAvYQcZxPta3tKd0b4si221d2LLEmWFWIwkiFccb + 5L8vNOPY0256GWD0yKf3KJLPEwBFVi1BmVaL6aKbfaz+sPuHvz80F3fb+0/X91+vPny6/9MZN7df + d2paMsL2AY28Zp2Z0EWHQsEPsEmoBQtrdX25WFxcXFc3PdAFi66kNVFmizCbn88Xs6qazc8PiW0g + g6yW8G0CAPDcf4tEb/FJLeF8+nrSIbNuUC2PQQAqBVdOlGYmFu1FTU+gCV7Q96o3m80DB7/yzysP + sFKcu06n/UotYaU+huwFU62NZO0YdEIwWrAJif5FC5rBBaMdUAmLCUUX6wzkAZ+i0+T11iHc3sFv + X27v3sMWjc6MIC3uXyOAIxqqyQD5otQgn8HnFkHwScASm8yMDFok0TYLMtQhAT5ql7WQbwYif7r6 + y+3dFMgbl22B32lToKJk+g52LZkWEtaYGCTArkVpMQEJEINxqBO0YQfkYxaoUUtOyGC0hy2CabVv + 0JbELliq98UKhCwxyxn81ZJDMG9UzQfpZZIhcXtweotuKOBJXJFe2PDJYIoyLT+UIOYUAyNoR41n + 2JG0fdgo8VgaYPLmUN6YwiPZwsrUtFIqI6G3NpjoSzW4NCE7Cw51b8xSXWNCL8WXCR3y2UpNh/ZI + 6PCxvNGaTUg4tMnvRzgz2jV1ukEuUK0d48q/rPxmsxk3YMI6sy7977NzI0B7Hw5NVFr/+wF5OTa7 + C01MYcs/paqaPHG7Tqg5+NLYLCGqHn2ZAHzvhyr/MCcqptBFWUv4B/vrqvnV9UCoTnM8hqsDKkG0 + GwEXNzfTNyjXFkWT49FkKqNNi3aUW13OjyZ0thRO2Plk5P3/kt6iH/yTb0Ysv6Q/AcZgFLTrmNCS + +dH2KSxh2XW/CjvWuhesGNMjGVwLYSrvYbHW2Q1rSPGeBbt1Tb4pe4OGXVTH9by6wqvLhVlYNXmZ + /AcAAP//AwDGIos0lAUAAA== headers: CF-RAY: - - 96665cf75e95eb35-SJC + - 96a9ce1508f8cce4-SJC Connection: - keep-alive Content-Encoding: @@ -4472,7 +4505,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:41 GMT + - Tue, 05 Aug 2025 22:42:00 GMT Server: - cloudflare Transfer-Encoding: @@ -4488,7 +4521,7 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "2341" + - "2112" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: @@ -4496,7 +4529,7 @@ interactions: strict-transport-security: - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "2371" + - "2118" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4504,13 +4537,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998546" + - "29998479" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - req_99bd26d935838897a0f3e188c1a097ec + - req_4a744289de7c02c4b8eddd5c8e6cb19a status: code: 200 message: OK @@ -4518,81 +4551,274 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 33-35: Geemi P. Wellawatte, Heta + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":[{\"type\":\"image_url\",\"image_url\":{\"url\":\"data:image/png;base64,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\"}},{\"type\":\"text\",\"text\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 14-16: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\n13,\\n\\n - \ 1\u201320.\\n\\n\\n(78) Mastropietro, A.; Pasculli, G.; Feldmann, C.; Rodr\xB4\u0131guez-P\xB4erez, - R.; Bajorath, J. Edge-\\n\\n SHAPer: Bond-Centric Shapley Value-Based Explanation - Method for Graph Neural\\n\\n Networks. iScience 2022, 25, 105043.\\n\\n\\n(79) - White, A. D. Deep learning for molecules and materials. Living Journal of Computa-\\n\\n - \ tional Molecular Science 2022, 3.\\n\\n(80) \u02D8Strumbelj, E.; Kononenko, - I. Explaining prediction models and individual predictions\\n\\n with feature - contributions. Knowledge and Information Systems 2014, 41, 647\u2013665.\\n\\n\\n(81) - Erhan, D.; Bengio, Y.; Courville, A.; Vincent, P. Visualizing Higher-Layer Features - of\\n\\n a Deep Network. Technical Report, Univerist\xB4e de Montr\xB4eal - 2009,\\n\\n\\n(82) Weber, J. K.; Morrone, J. A.; Bagchi, S.; Pabon, J. D.; gu - Kang, S.; Zhang, L.;\\n\\n Cornell, W. D. Simplified, interpretable graph - convolutional neural networks for small\\n\\n molecule activity prediction. - Journal of Computer-Aided Molecular Design 2022, 36,\\n\\n 391\u2013404.\\n\\n\\n(83) - Riniker, S.; Landrum, G. A. Similarity maps - A visualization strategy for molecular\\n\\n - \ fingerprints and machine-learning methods. Journal of Cheminformatics 2013, - 5, 1\u20137.\\n\\n\\n(84) Humer, C.; Heberle, H.; Montanari, F.; Wolf, T.; Huber, - F.; Henderson, R.; Hein-\\n\\n rich, J.; Streit, M. ChemInformatics Model - Explorer (CIME): exploratory analysis of\\n\\n chemical model explanations. - Journal of Cheminformatics 2022, 14, 1\u201314.\\n\\n\\n(85) McGrath, T.; Kapishnikov, - A.; Toma\u02C7sev, N.; Pearce, A.; Wattenberg, M.; Hass-\\n\\n abis, D.; - Kim, B.; Paquet, U.; Kramnik, V. Acquisition of chess knowledge in Al-\\n\\n - \ phaZero. Proceedings of the National Academy of Sciences 2022, 119, e2206625119.\\n\\n\\n\\n\\n - \ 33(86) Bajusz, D.; R\xB4acz, A.; H\xB4eberger, - K. Why is Tanimoto index an appropriate choice for\\n\\n fingerprint-based - similarity calculations? Journal of Cheminformatics 2015, 7, 1\u201313.\\n\\n\\n(87) - Huang, Q.; Yamada, M.; Tian, Y.; Singh, D.; Yin, D.; Chang, Y. GraphLIME:\\n\\n - \ Local Interpretable Model Explanations for Graph Neural Networks. CoRR - 2020,\\n\\n abs/2001.06216.\\n\\n\\n(88) Sokol, K.; Flach, P. A. LIMEtree: - Interactively Customisable Explanations Based on\\n\\n Local Surrogate Multi-output - Regression Trees. CoRR 2020, abs/2005.01427.\\n\\n\\n(89) Whitmore, L. S.; George, - A.; Hudson, C. M. Mapping chemical performance on molec-\\n\\n ular structures - using locally interpretable explanations. 2016; https://arxiv.org/\\n\\n abs/1611.07443.\\n\\n\\n(90) - Mehdi, S.; Tiwary, P. Thermodynamics of Interpretation. 2022,\\n\\n\\n(91) H\xA8ofler, - M. Causal inference based on counterfactuals. BMC Medical Research Method-\\n\\n - \ ology 2005, 5, 1\u201312.\\n\\n\\n(92) Woodward, J.; Hitchcock, C. Explanatory - Generalizations, Part I: A Counterfactual\\n\\n Account. No\u02C6us 2003, - 37, 1\u201324.\\n\\n\\n(93) Frisch, M. F. Theories, models, and explanation; - University of California, Berkeley,\\n\\n 1998.\\n\\n\\n(94) Reutlinger, - A. Is There A Monist Theory of Causal and Non-Causal Explanations?\\n\\n The - Counterfactual Theory of Scientific Explanation. Philosophy of Science 2016, - 83,\\n\\n 733\u2013745.\\n\\n\\n(95) Lewis, D. Causation. The journal of - philosophy 1974, 70, 556\u2013567.\\n\\n\\n(96) Tanimoto, T. T. Elementary mathematical - theory of classification and prediction.\\n\\n Internal IBM Technical Report - 1958,\\n\\n\\n 34 (97) Rogers, D.; Hahn, - M. Extended-Connectivity Fingerprints. Journal of Chemical In-\\n\\n formation - and Modeling 2010, 50, 742\u2013754, PMID: 20426451.\\n\\n\\n (98) Mohapatra, - S.; An, J.; G\xB4omez-Bombarelli, R. Chemistry-informed macromolecule\\n\\n - \ graph representation for similarity computation, unsupervised and supervised - learn-\\n\\n ing. Machine Learning: Science and Technology 2022, 3, 015028.\\n\\n\\n - (99) Doshi-Velez, F.; Kortz, M.; Budish, R.; Bavitz, C.; Gershman, S.; O\u2019Brien, - D.;\\n\\n Scott, K.; Schieber, S.; Waldo, J.; Weinberger, D.; Weller, - A.; Wood, A. Account-\\n\\n ability of AI Under the Law: The Role of Explanation. - SSRN Electronic Journal\\n\\n 2017,\\n\\n\\n(100) Wachter, S.; Mittelstadt, - B.; Russell, C. Counterfactual explanations without opening\\n\\n the black - box: Automated decisions and the GDPR. Harv. JL & Tech. 2017, 31, 841.\\n\\n\\n(101) - Jim\xB4enez-Luna, J.; Grisoni, F.; Schneider, G. Drug discovery with explainable - artificial\\n\\n intelligence. Nature Machine Intelligence 2020 2:10 2020, - 2, 573\u2013584.\\n\\n\\n(102) Fu, T.; Gao, W.; Xiao, C.; Yasonik, J.; Coley, - C. W.; Sun, J. Differentiable Scaffold-\\n\\n ing Tree for Molecule Optimization. - International Conference on Learning Represen-\\n\\n tations. 2022.\\n\\n\\n(103) - Shen, C.; Krenn, M.; Eppel, S.; Aspuru-Guzik, A. Deep molecular dreaming: inverse\\n\\n - \ machine learning for de-novo molecular design and interpretability with - surjective\\n\\n representations. Machine Learning: Science and Technology - 2021, 2, 03LT02.\\n\\n\\n(104) Lucic, A.; ter Hoeve, M.; Tolomei, G.; - \ Rijke, M.; Silvestri, F. CF-\\n\\n GNNExplainer: Counterfactual - Explanations for Graph Neural Networks. arXiv\\n\\n----\\n\\nQuestion: Are counterfactuals - actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\nsame + optimization problem.100 Grabocka\\n\\net al. 111 have developed a method named + Adversarial Training on EXplanations (ATEX)\\n\\nwhich improves model robustness + via exposure to adversarial examples. While there are\\n\\nconceptual disparities, + we note that the counterfactual and adversarial explanations are\\n\\nequivalent + mathematical objects.\\n\\n Matched molecular pairs (MMPs) are pairs of molecules + that differ structurally at only\\n\\none site by a known transformation.112,113 + MMPs are widely used in drug discovery and\\n\\nmedicinal chemistry as these + facilitate fast and easy understanding of structure-activity re-\\n\\nlationships.114\u2013116 + Counterfactuals and MMP examples intersect if the structural change is\\n\\nassociated + with a significant change in the properties. In the case the associated changes + in\\n\\nthe properties are non-significant, the two molecules are known as bioisosteres.117,118 + The con-\\n\\nnection between MMPs and adversarial training examples has been + explored by van Tilborg\\n\\net al. 119. MMPs which belong to the counterfactual + category are commonly used in outlier\\n\\nand activity cliff detection.113 + This approach is analogous to counterfactual explanations,\\n\\nas the common + objective is to uncover learned knowledge pertaining to structure-property\\n\\nrelationships.70\\n\\n\\nApplications\\n\\n\\nModel + interpretation is certainly not new and a common step in ML in chemistry, but + XAI for\\n\\nDL models is becoming more important60,66\u201369,73,88,104,105 + Here we illustrate some practical\\n\\nexamples drawn from our published work + on how model-agnostic XAI can be utilized to\\n\\n\\n\\n 14interpret + black-box models and connect the explanations to structure-property relationships.\\n\\nThe + methods are \u201CMolecular Model Agnostic Counterfactual Explanations\u201D + (MMACE)9\\n\\nand \u201CExplaining molecular properties with natural language\u201D.10 + Then we demonstrate how\\n\\ncounterfactuals and descriptor explanations can + propose structure-property relationships in\\n\\nthe domain of molecular scent.31\\n\\n\\nBlood-brain + barrier permeation prediction\\n\\n\\nThe passive diffusion of drugs from the + blood stream to the brain is a critical aspect in drug\\n\\ndevelopment and + discovery.120 Small molecule blood-brain barrier (BBB) permeation is a\\n\\nclassification + problem routinely assessed with DL models.121,122 To explain why DL models\\n\\nwork, + we trained two models a random forest (RF) model123 and a Gated Recurrent Unit\\n\\nRecurrent + Neural Network (GRU-RNN). Then we explained the RF model with generated\\n\\ncounterfactuals + explanations using the MMACE9 and the GRU-RNN with descriptor expla-\\n\\nnations.10 + Both the models were trained on the dataset developed by Martins et al. 124. + The\\n\\nRF model was implemented in Scikit-learn125 using Mordred molecular + descriptors126 as the\\n\\ninput features. The GRU-RNN model was implemented + in Keras.127 See Wellawatte et al. 9\\n\\nand Gandhi and White 10 for more details.\\n\\n + \ According to the counterfactuals of the instance molecule in figure 1, we + observe that the\\n\\nmodifications to the carboxylic acid group enable the + negative example molecule to permeate\\n\\nthe BBB. Experimental findings by + Fischer et al. 120 show that the BBB permeation of\\n\\nmolecules are governed + by hydrophobic interactions and surface area. The carboxylic group is\\n\\na + hydrophilic functional group which hinders hydrophobic interactions and addition + of atoms\\n\\nenhances the surface area. This proves the advantage of using + counterfactual explanations,\\n\\nas they suggest actionable modification to + the molecule to make it cross the BBB.\\n\\n In Figure 2 we show descriptor + explanations generated for Alprozolam, a molecule that\\n\\npermeates the BBB, + using the method described by Gandhi and White 10. We see that\\n\\npredicted + permeability is positively correlated with the aromaticity of the molecule, + while\\n\\n\\n 15negatively correlated + with the number of hydrogen bonds donors and acceptors. A similar\\n\\nstructure-property + relationship for BBB permeability is proposed in more mechanistic stud-\\n\\nies.128\u2013130 + The substructure attributions indicates a reduction in hydrogen bond donors + and\\n\\nacceptors. These descriptor explanations are quantitative and interpretable + by chemists.\\n\\nFinally, we can use a natural language model to summarize + the findings into a written\\n\\nexplanation, as shown in the printed text in + Figure 2.\\n\\n\\n\\n\\n\\nFigure 1: Counterfactuals of a molecule which cannot + permeate the blood-brain barrier.\\nSimilarity is the Tanimoto similarity of + ECFP4 fingerprints.131 Red indicates deletions and\\ngreen indicates substitutions + and addition of atoms. Republished from Ref.9 with permission\\nfrom the Royal + Society of Chemistry.\\n\\n\\n\\nSolubility prediction\\n\\n\\nSmall molecule + solubility prediction is a classic cheminformatics regression challenge and + is\\n\\nimportant for chemical process design, drug design and crystallization.133\u2013136 + In our previous\\n\\nworks,9,10 we implemented and trained an RNN model in Keras + to predict solubilities (log\\n\\nmolarity) of small molecules.127 The AqS\\n\\n------------\\n\\nQuestion: + Are counterfactuals actionable? [yes/no]\\n\\n\"}]}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + headers: + accept: + - application/json + accept-encoding: + - gzip, deflate + connection: + - keep-alive + content-length: + - "51101" + content-type: + - application/json + host: + - api.openai.com + user-agent: + - AsyncOpenAI/Python 1.99.0 + x-stainless-arch: + - arm64 + x-stainless-async: + - async:asyncio + x-stainless-lang: + - python + x-stainless-os: + - MacOS + x-stainless-package-version: + - 1.99.0 + x-stainless-raw-response: + - "true" + x-stainless-read-timeout: + - "60.0" + x-stainless-retry-count: + - "0" + x-stainless-runtime: + - CPython + x-stainless-runtime-version: + - 3.13.5 + method: POST + uri: https://api.openai.com/v1/chat/completions + response: + body: + string: !!binary | + H4sIAAAAAAAAA3RUTY/jNgy951cQOrVAMognmc40xxRoge6hlxbFolk4tMTY3MqioI/ZBIP574Xs + fHh2Ohcb4NOjHh9JvcwAFBu1AaU7TLr3dvFL9cmcPvvKbH9fN+Zn/E3//Zft3OoPcZ9Wal4Y0nwl + nS6sOy29t5RY3AjrQJioZK0eH9br1eqxehqAXgzZQmt9Wqxlcb+8Xy+qanG/PBM7YU1RbeCfGQDA + y/AtEp2ho9rAcn6J9BQjtqQ210MAKogtEYUxckzokprfQC0ukRtU7/f7r1Hczr3sHMBOxdz3GE47 + tYGd+kxxDlqySxQOqFNGGwEDAepSIjaW7uDPjiDRMQEdvUV2EVKH6TvaCDostAgxty3FBNGT5gNr + 6MWU/xlOAr1Y0tligJhC1ikHGuKoO6ZnAkORAxnwQTyFxEVozLoDjEBFGLsW8JKGCtVT6EszIHUE + jRUxiyYgO2gwBKYAP2y32x/v4FcJQEcsfZy/F1bIGkMjx5NlDajZQBske2A3vfAbBYLYyTdXWOQ6 + dJpgu91edLA4aE7AroxILHK7kwniO2lYAxfvRpcjoDMQc7GSivtYPOcIhnpxMQVMxZuOwA8MjRZy + YsvpBHJ41z520GY2gz/XLoLu0LX0ofV3OzUf5yOQpedSSx21BCpzUi3PWI5kau6xpVjiKWTauded + 2+/30+kLdMgRy/C7bO0EQOckjVaXuf9yRl6vk26l9UGa+B1VHdhx7OpipLgy1TGJVwP6OgP4MmxU + frMkygfpfaqT/EvDddXj6mlMqG5LPIHvzwunkiS0E+Dp4cJ7k7I2lJBtnKyl0qg7MhPuw+qnaxGY + DcsNW84mtb+X9H/px/rZtZMsH6a/AVqTT2RqH8iwflv27Vig8tB9dOzq9SBYRQrPrKlOTKH0w9AB + sx3fIBVPMVFfH9i1FHzg8SE6+PqhOaxWuiK9VrPX2X8AAAD//wMAHY72+JEFAAA= + headers: + CF-RAY: + - 96a9ce14dd01a63b-SJC + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - application/json + Date: + - Tue, 05 Aug 2025 22:42:00 GMT + Server: + - cloudflare + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + Transfer-Encoding: + - chunked + X-Content-Type-Options: + - nosniff + access-control-expose-headers: + - X-Request-ID + alt-svc: + - h3=":443"; ma=86400 + cf-cache-status: + - DYNAMIC + openai-organization: + - future-house-xr4tdh + openai-processing-ms: + - "2232" + openai-project: + - proj_RpeV6PrPclPHBb5GlExPXSBj + openai-version: + - "2020-10-01" + x-envoy-upstream-service-time: + - "2204" + x-ratelimit-limit-input-images: + - "250000" + x-ratelimit-limit-requests: + - "10000" + x-ratelimit-limit-tokens: + - "30000000" + x-ratelimit-remaining-input-images: + - "249999" + x-ratelimit-remaining-requests: + - "9999" + x-ratelimit-remaining-tokens: + - "29997718" + x-ratelimit-reset-input-images: + - 0s + x-ratelimit-reset-requests: + - 6ms + x-ratelimit-reset-tokens: + - 4ms + x-request-id: + - req_22213f9243df4e028f4282e7daecc86d + status: + code: 200 + message: OK + - request: + body: + "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of + the relevant information that could help answer the question based on the excerpt. + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt + from wellawatteUnknownyearaperspectiveon pages 5-8: Geemi P. Wellawatte, Heta + A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations + of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\nnct?\\n\\n\\n + \ We present an example evaluation of the SHAP explanation method based on the + above\\n\\nattributes.44 Shapley values were proposed as a local explanation + method based on feature\\n\\nattribution, as they offer a complete explanation + - each feature is assigned a fraction of\\n\\nthe prediction value.44,45 Completeness + is a clearly measurable and well-defined metric, but\\n\\nyields explanations + with many components. Yet Shapley values are not actionable nor sparse.\\n\\nThey + are non-sparse as every feature has a non-zero attribution and not-actionable + because\\n\\nthey do not provide a set of features which changes the outcome.46 + Ribeiro et al. 35 proposed\\n\\na surrogate model method that aims to provide + sparse/succinct explanations that have high\\n\\n\\n 5fidelity + to the original model. In Wellawatte et al. 9 we argue that counterfactuals + are \u201Cbet-\\n\\nter\u201D explanations because they are actionable and sparse. + We highlight that, evaluation of\\n\\nexplanations is a difficult task because + explanations are fundamentally for and by humans.\\n\\nTherefore, these evaluations + are subjective, as they depend on \u201Ccomplex human factors and\\n\\napplication + scenarios.\u201D37\\n\\n\\nSelf-explaining models\\n\\nA self-explanatory model + is one that is intrinsically interpretable to an expert.47 Two com-\\n\\nmon + examples found in the literature are linear regression models and decision trees + (DT).\\n\\nIntrinsic models can be found in other XAI applications acting as + surrogate models (proxy\\n\\nmodels) due to their transparent nature.48,49 A + linear model is described by the equation\\n\\n1 where, W\u2019s are the weight + parameters and x\u2019s are the input features associated with the\\n\\nprediction + \u02C6y. Therefore, we observe that the weights can be used to derive a complete + expla-\\n\\nnation of the model - trained weights quantify the importance of + each feature.47 DT models\\n\\nare another type of self-explaining models which + have been used in classification and high-\\n\\nthroughput screening tasks. + \ Gajewicz et al. 50 used DT models to classify nanomaterials\\n\\nthat identify + structural features responsible for surface activity. In another study by Han\\n\\net + al. 51, a DT model was developed to filter compounds by their bioactivity based + on the\\n\\nchemical fingerprints.\\n\\n\\n\\n \u02C6y + = \u03A3iWixi (1)\\n\\n\\n Regularization + techniques such as EXPO52 and RRR53 are designed to enhance the black-\\n\\nbox + model interpretability.54 Although one can argue that \u201Csimplicity\u201D + of models are posi-\\n\\ntively correlated with interpretability, this is based + on how the interpretability is evaluated.\\n\\nFor example, Lipton 55 argue + that, from the notion of \u201Csimulatability\u201D (the degree to which a\\n\\nhuman + can predict the outcome based on inputs), self-explanatory linear models, rule-based\\n\\n\\n\\n + \ 6systems, and DT\u2019s can be claimed + uninterpretable. A human can predict the outcome given\\n\\nthe inputs only + if the input features are interpretable. Therefore, a linear model which takes\\n\\nin + non-descriptive inputs may not be as transparent. On the other hand, a linear + model\\n\\nis not innately accurate as they fail to capture non-linear relationships + in data, limiting is\\n\\napplicability. Similarly, a DT is a rule-based model + and lacks physics informed knowledge.\\n\\nTherefore, an existing drawback is + the trade-offbetween the degree of understandability and\\n\\nthe accuracy of + a model. For example, an intrinsic model (linear regression or decision trees)\\n\\ncan + be described through the trainable parameters, but it may fail to \u201Ccorrectly\u201D + capture\\n\\nnon-linear relations in the data.\\n\\n\\nAttribution methods\\n\\n\\nFeature + attribution methods explain black box predictions by assigning each input feature\\n\\na + numerical value, which indicates its importance or contribution to the prediction. + Feature\\n\\nattributions provide local explanations, but can be averaged or + combined to explain multi-\\n\\nple instances. Atom-based numerical assignments + are commonly referred to as heatmaps.56\\n\\nSheridan 57 describes an atom-wise + attribution method for interpreting QSAR models. Re-\\n\\ncently, Rasmussen + et al. 58 showed that Crippen logP models serve as a benchmark for\\n\\nheatmap + approaches. Other most widely used feature attribution approaches in the litera-\\n\\nture + are gradient based methods,59,60 Shapley Additive exPlanations (SHAP),44 and + layer-\\n\\nwise relevance prorogation.61\\n\\n Gradient based approaches + are based on the hypothesis that gradients for neural net-\\n\\nworks are analogous + to coefficients for regression models.62 Class activation maps (CAM),63\\n\\ngradCAM,64 + smoothGrad,,65 and integrated gradients62 are examples of this method. The\\n\\nmain + idea behind feature attributions with gradients can be represented with equation + \ 2.\\n\\n \u2206\u02C6f(\u20D7x) \u2248\u2202\u02C6f(\u20D7x) + \ (2)\\n \u2206xi + \ \u2202xi\\n\\n\\n\\n 7 \\n\\n------------\\n\\nQuestion: + Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -4601,13 +4827,13 @@ interactions: connection: - keep-alive content-length: - - "6114" + - "6361" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4617,7 +4843,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4633,23 +4859,21 @@ interactions: response: body: string: !!binary | - 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 headers: CF-RAY: - - 96665cf63f01f555-SJC + - 96a9ce21ba2deb20-SJC Connection: - keep-alive Content-Encoding: @@ -4657,11 +4881,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:42 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4675,13 +4897,15 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "3114" + - "1510" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "3116" + - "1513" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4689,13 +4913,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998546" + - "29998477" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - b852a502-afe3-4058-88ad-292c2aa4aa0b + - req_3a358a30dd7dd7795b149a312a752763 status: code: 200 message: OK @@ -4703,14 +4927,17 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt from wellawatteUnknownyearaperspectiveon pages 25-28: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\n2021, + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\n2021, 25, 1315\u20131360.\\n\\n\\n (9) Wellawatte, G. P.; Seshadri, A.; White, A. D. Model agnostic generation of counter-\\n\\n factual explanations for molecules. Chemical Science 2022, 13, 3697\u20133705.\\n\\n\\n(10) Gandhi, H. @@ -4777,7 +5004,7 @@ interactions: Ribeiro, M. T.; Singh, S.; Guestrin, C. \u201D Why should i trust you?\u201D Explaining the\\n\\n predictions of any classifier. Proceedings of the 22nd ACM SIGKDD international\\n\\n\\n 27 conference - on knowledge discovery and data \\n\\n----\\n\\nQuestion: Are counterfactuals + on knowledge discovery and data \\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: @@ -4787,13 +5014,13 @@ interactions: connection: - keep-alive content-length: - - "6122" + - "6398" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -4803,7 +5030,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -4819,23 +5046,23 @@ interactions: response: body: string: !!binary | - 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 + AP//AwC5glpHvQUAAA== headers: CF-RAY: - - 96665cf81b01cefd-SJC + - 96a9ce208f0cf93d-SJC Connection: - keep-alive Content-Encoding: @@ -4843,11 +5070,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:42 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare - Strict-Transport-Security: - - max-age=31536000; includeSubDomains; preload Transfer-Encoding: - chunked X-Content-Type-Options: @@ -4861,13 +5086,15 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "3345" + - "1809" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-envoy-upstream-service-time: - - "3359" + - "1813" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -4875,13 +5102,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998542" + - "29998475" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - de9b0e57-8a4d-455b-be71-7af502c53792 + - req_6bd8d38b79bc2a199e5e9aed27088ac6 status: code: 200 message: OK @@ -4889,14 +5116,17 @@ interactions: body: "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt + Your summary, combined with many others, will be given to the model to generate + an answer. Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": + \\\"...\\\",\\n \\\"relevance_score\\\": \\\"...\\\"\\n \\\"used_images\\\"\\n}\\n\\nwhere + `summary` is relevant information from the text - about 100 words words. `relevance_score` + is an integer 1-10 for the relevance of `summary` to the question. `used_images` + is a boolean flag indicating if any images present in a multimodal message were + used, and if no images were present it should be false.\"},{\"role\":\"user\",\"content\":\"Excerpt from wellawatteUnknownyearaperspectiveon pages 1-3: Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\n + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n------------\\n\\n A Perspective on Explanations of Molecular\\n\\n Prediction Models\\n\\n\\nGeemi P. Wellawatte,\u2020 Heta A. Gandhi,\u2021 Aditi Seshadri,\u2021 and Andrew\\n\\n \ D. White\u2217,\u2021\\n\\n\\n \u2020Department @@ -4963,191 +5193,8 @@ interactions: a passive characteristic of a model, whereas explainability\\n\\nis an active characteristic which is used to clarify the internal decision-making process.\\n\\nNamely, an explanation is extra information that gives the context and a cause for one - or\\n\\nmore \\n\\n----\\n\\nQuestion: Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" - headers: - accept: - - application/json - accept-encoding: - - gzip, deflate - connection: - - keep-alive - content-length: - - "6106" - content-type: - - application/json - host: - - api.openai.com - user-agent: - - AsyncOpenAI/Python 1.97.1 - x-stainless-arch: - - arm64 - x-stainless-async: - - async:asyncio - x-stainless-lang: - - python - x-stainless-os: - - MacOS - x-stainless-package-version: - - 1.97.1 - x-stainless-raw-response: - - "true" - x-stainless-read-timeout: - - "60.0" - x-stainless-retry-count: - - "0" - x-stainless-runtime: - - CPython - x-stainless-runtime-version: - - 3.13.5 - method: POST - uri: https://api.openai.com/v1/chat/completions - response: - body: - string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNbxNJEL37V5T6Akh2FJsAi28EFikIbkiAdpDd7q6ZKdzT3aqqcWxF - +e+oZ0LsQJD2Mod59d6rj666mQAY8mYJxrVWXZfD7PLwqe6/fPjq9PJbPd99O3zBy2779v2ir/sr - My2MtPmBTn+xzlzqckClFEfYMVrFojp/9eL5q8XLFxeLAeiSx1BoTdbZRZotzhcXs/l8tji/I7aJ - HIpZwn8TAICb4VtSjB73Zgnn019/OhSxDZrlfRCA4RTKH2NFSNRGNdMj6FJUjEPW6/X6h6RYxZsq - AlRG+q6zfKjMEirzuUXAvUPOCp7E9SIo8O8+B0vRbgLCG1aqyZENcBUVQ6AGo0N4+vXN1TOgCNoi - DHZ7hVSDR8wQ0HKk2MDTdx+fwdAJgToxuBY7EuXDGVwptNS0gZpWZVChLidWW9RTDRQVOTOq3VAg - PYCNHrBkFm1pvxTzPnrkUr0vbk82wbrtbJP2T+5Mz6BUaHttEwt0GAsTOtQ2eYFAWxxTcjaAS32x - rK3T3gYZ/DyKY8qa+IH1FK5bci1kTjvyCBRlLIOiJhDl3mnPOMucMrIegDGMzJayHCuhCO8+Qmb0 - 5Ab4DN7+ngVjCRCMih6sgIVrewBN9wondNgcQNp0XZphgyKXfHcI4jBapiQwzMDGBkvLrZaigy/z - 8kXSU10jY1RIvbrUoUyhs9sipy12YAeb4V380fxSFGNNw9yH7j8orDLT8f0xBtyVIa/EJcbxHb6u - TBVvq7her0+fMWPdiy1bFPsQTgAbY9Kxo2WBvt8ht/crE1KTOW3kN6op+Um7YrSSYlkP0ZTNgN5O - AL4Pq9k/2DaTOXVZV5q2ONjNF4uXo6A5XoMH8B2qSW04AZ5f/DN9RHLlUS0FOdlv46xr0R+5x2Ng - e0/pBJicFP5nPo9pj8VTbP6P/BFwDrOiXx2n+lgYYzmXfwu7b/SQsBHkHTlcKSGXYXisbR/GS2bk - IIrdqqbYlENAwzkrw5zcTn4CAAD//wMAVWAS/MwFAAA= - headers: - CF-RAY: - - 96665d070f3eeb35-SJC - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Mon, 28 Jul 2025 18:15:44 GMT - Server: - - cloudflare - Transfer-Encoding: - - chunked - X-Content-Type-Options: - - nosniff - access-control-expose-headers: - - X-Request-ID - alt-svc: - - h3=":443"; ma=86400 - cf-cache-status: - - DYNAMIC - openai-organization: - - future-house-xr4tdh - openai-processing-ms: - - "2141" - openai-project: - - proj_RpeV6PrPclPHBb5GlExPXSBj - openai-version: - - "2020-10-01" - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-envoy-upstream-service-time: - - "2145" - x-ratelimit-limit-requests: - - "10000" - x-ratelimit-limit-tokens: - - "30000000" - x-ratelimit-remaining-requests: - - "9999" - x-ratelimit-remaining-tokens: - - "29998540" - x-ratelimit-reset-requests: - - 6ms - x-ratelimit-reset-tokens: - - 2ms - x-request-id: - - req_3416fe1b58726521ab94a5b97a03cb7b - status: - code: 200 - message: OK - - request: - body: - "{\"messages\":[{\"role\":\"system\",\"content\":\"Provide a summary of - the relevant information that could help answer the question based on the excerpt. - Respond with the following JSON format:\\n\\n{\\n \\\"summary\\\": \\\"...\\\",\\n - \ \\\"relevance_score\\\": \\\"...\\\"\\n}\\n\\nwhere `summary` is relevant - information from the text - about 100 words words. `relevance_score` is an integer - 1-10 for the relevance of `summary` to the question.\"},{\"role\":\"user\",\"content\":\"Excerpt - from wellawatteUnknownyearaperspectiveon pages 5-8: Geemi P. Wellawatte, Heta - A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations - of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\\n\\n----\\n\\nnct?\\n\\n\\n - \ We present an example evaluation of the SHAP explanation method based on the - above\\n\\nattributes.44 Shapley values were proposed as a local explanation - method based on feature\\n\\nattribution, as they offer a complete explanation - - each feature is assigned a fraction of\\n\\nthe prediction value.44,45 Completeness - is a clearly measurable and well-defined metric, but\\n\\nyields explanations - with many components. Yet Shapley values are not actionable nor sparse.\\n\\nThey - are non-sparse as every feature has a non-zero attribution and not-actionable - because\\n\\nthey do not provide a set of features which changes the outcome.46 - Ribeiro et al. 35 proposed\\n\\na surrogate model method that aims to provide - sparse/succinct explanations that have high\\n\\n\\n 5fidelity - to the original model. In Wellawatte et al. 9 we argue that counterfactuals - are \u201Cbet-\\n\\nter\u201D explanations because they are actionable and sparse. - We highlight that, evaluation of\\n\\nexplanations is a difficult task because - explanations are fundamentally for and by humans.\\n\\nTherefore, these evaluations - are subjective, as they depend on \u201Ccomplex human factors and\\n\\napplication - scenarios.\u201D37\\n\\n\\nSelf-explaining models\\n\\nA self-explanatory model - is one that is intrinsically interpretable to an expert.47 Two com-\\n\\nmon - examples found in the literature are linear regression models and decision trees - (DT).\\n\\nIntrinsic models can be found in other XAI applications acting as - surrogate models (proxy\\n\\nmodels) due to their transparent nature.48,49 A - linear model is described by the equation\\n\\n1 where, W\u2019s are the weight - parameters and x\u2019s are the input features associated with the\\n\\nprediction - \u02C6y. Therefore, we observe that the weights can be used to derive a complete - expla-\\n\\nnation of the model - trained weights quantify the importance of - each feature.47 DT models\\n\\nare another type of self-explaining models which - have been used in classification and high-\\n\\nthroughput screening tasks. - \ Gajewicz et al. 50 used DT models to classify nanomaterials\\n\\nthat identify - structural features responsible for surface activity. In another study by Han\\n\\net - al. 51, a DT model was developed to filter compounds by their bioactivity based - on the\\n\\nchemical fingerprints.\\n\\n\\n\\n \u02C6y - = \u03A3iWixi (1)\\n\\n\\n Regularization - techniques such as EXPO52 and RRR53 are designed to enhance the black-\\n\\nbox - model interpretability.54 Although one can argue that \u201Csimplicity\u201D - of models are posi-\\n\\ntively correlated with interpretability, this is based - on how the interpretability is evaluated.\\n\\nFor example, Lipton 55 argue - that, from the notion of \u201Csimulatability\u201D (the degree to which a\\n\\nhuman - can predict the outcome based on inputs), self-explanatory linear models, rule-based\\n\\n\\n\\n - \ 6systems, and DT\u2019s can be claimed - uninterpretable. A human can predict the outcome given\\n\\nthe inputs only - if the input features are interpretable. Therefore, a linear model which takes\\n\\nin - non-descriptive inputs may not be as transparent. On the other hand, a linear - model\\n\\nis not innately accurate as they fail to capture non-linear relationships - in data, limiting is\\n\\napplicability. Similarly, a DT is a rule-based model - and lacks physics informed knowledge.\\n\\nTherefore, an existing drawback is - the trade-offbetween the degree of understandability and\\n\\nthe accuracy of - a model. For example, an intrinsic model (linear regression or decision trees)\\n\\ncan - be described through the trainable parameters, but it may fail to \u201Ccorrectly\u201D - capture\\n\\nnon-linear relations in the data.\\n\\n\\nAttribution methods\\n\\n\\nFeature - attribution methods explain black box predictions by assigning each input feature\\n\\na - numerical value, which indicates its importance or contribution to the prediction. - Feature\\n\\nattributions provide local explanations, but can be averaged or - combined to explain multi-\\n\\nple instances. Atom-based numerical assignments - are commonly referred to as heatmaps.56\\n\\nSheridan 57 describes an atom-wise - attribution method for interpreting QSAR models. Re-\\n\\ncently, Rasmussen - et al. 58 showed that Crippen logP models serve as a benchmark for\\n\\nheatmap - approaches. Other most widely used feature attribution approaches in the litera-\\n\\nture - are gradient based methods,59,60 Shapley Additive exPlanations (SHAP),44 and - layer-\\n\\nwise relevance prorogation.61\\n\\n Gradient based approaches - are based on the hypothesis that gradients for neural net-\\n\\nworks are analogous - to coefficients for regression models.62 Class activation maps (CAM),63\\n\\ngradCAM,64 - smoothGrad,,65 and integrated gradients62 are examples of this method. The\\n\\nmain - idea behind feature attributions with gradients can be represented with equation - \ 2.\\n\\n \u2206\u02C6f(\u20D7x) \u2248\u2202\u02C6f(\u20D7x) - \ (2)\\n \u2206xi - \ \u2202xi\\n\\n\\n\\n 7 \\n\\n----\\n\\nQuestion: - Are counterfactuals actionable? [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" + or\\n\\nmore \\n\\n------------\\n\\nQuestion: Are counterfactuals actionable? + [yes/no]\\n\\n\"}],\"model\":\"gpt-4o-2024-11-20\",\"n\":1,\"temperature\":0.0}" headers: accept: - application/json @@ -5156,13 +5203,13 @@ interactions: connection: - keep-alive content-length: - - "6085" + - "6382" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -5172,7 +5219,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -5188,22 +5235,24 @@ interactions: response: body: string: !!binary | - H4sIAAAAAAAAAwAAAP//jFRNbxoxEL3zK0a+pJUAZQltUm60aiQUpZfkUKlEMNizrBOvvfXMEmjE - f69skkA+KvXiwzzPm/c8M37oAChr1AiUrlB03bje181lKRfn3tCPyZ8v366+n51eTIbLy/H4vP2t - uikjLG5Jy1NWX4e6cSQ2+B2sI6FQYi1OP52cDj5/GhYZqIMhl9KWjfSGoTc4Hgx7RdEbHD8mVsFq - YjWCXx0AgId8Jone0FqN4Lj7FKmJGZekRs+XAFQMLkUUMlsW9KK6e1AHL+Sz6vl8fsvBT/3D1ANM - Fbd1jXEzVSOYquuKgNaaYiNgLOuWmRh0aL1QLFFLiw5o3Tj0mDwzWA9SEeQCa4FQ7mDrceEIxhP4 - 8HM8+diHiQALCjFIhfKKkgFj5mBrKJKBowWJUDx6WWtBGlumVHCTMxZBKkCd0FwOvQFuMDL1YbwP - vyBpYlhZQ4DAlPWWhNLGZ2HoQVfol7kMhFZ0qKkLNd5Zv0yxGlqmsnVQhgiGtGUbfG+H9+G6spxf - IyILw72VCq4qbBxtYIWuJe7CfWV1lQ0YYh3tggwggw++d2DmhVsTwIckt6QICNoRxrcGAqATill5 - E8nYzPZkoj9V3V3PIzlaodc0Yx0ipd4Xx1O/nfr5fH44N5HKljGNrW+dOwDQ+yC7F00Te/OIbJ9n - 1IVlE8OCX6Wq0nrL1SwScvBpHllCozK67QDc5F1oX4y3amKoG5lJuKNcrhgUpztCtV+/A7goHlEJ - gu4AOBmcdd+hnBkStI4PFkpp1BWZfe5++7A1NhwAnQPjb/W8x70zb/3yf+j3gNbUCJnZvrPvXYuU - /qd/XXt+6CxYMcWV1TQTSzE1w1CJrdt9HYo3LFTPSuuXFJto8/+RmtnZdv4CAAD//wMAGgP9KD0F - AAA= + H4sIAAAAAAAAA3RUTW8bNxC961cMeEoAyZBkOal9M5IANZpLgAAtWgXCiJxdTswlCc7QthD4vxfc + dWU5dS4LLN/MmzefP2YAhp25AmM9qh1yWHxY/UHL5fUX+XP998Un/93H+9hd7tfpy+/3ezNvHmn/ + naz+53Vm05ADKac4wbYQKjXW1fuLzeb8/P16OQJDchSaW591sUmL9XK9WaxWi/XyydEntiTmCv6Z + AQD8GL9NYnT0YK5gpBlfBhLBnszV0QjAlBTai0ERFsWoZv4M2hSV4qj6xzYCbI3UYcBy2Jor2Jqv + noAeLJWs4FhsFSEB9QRVCFIHnx5yQI64DwTXRbljyxjgJiqFwD1FS/Dmr+ubt8ARrKeBRcthDhmL + sq0BSzg0iKNSyYWUYw+OKEMgLLH9vfn4+S2MRZIzuFHw3PvAvVeBgdQnJxD4liZ2iwFsqo2tQ6sV + gwBGB47EFs6aClCTHLF1RuZw79l6yCXdsSPgKBMzR00gWqrVWmiRS8pU9ACFwuTpOU/MNFUAPn6G + XMixHeEz+PCzikLNQCgqOUABhHs8gKYjw4k77A8gPt23/DEolab3jkAsRSycBFIB6zH2YztQW9LB + taK5Rum466hQVEhVbRpIzuCrZwHMuSS0HjyF3NKEGh2VNheuBWutLWOGGAj25Dm6F8JayhYj9LXV + yx9yUk9CMocBb58YBsDRepwKjiPpOGgP2maGh7HcsZ+6Clqq6FTLKLU04EXEQhCTwh6FHKQIkmvh + VAVsKsd+nG3NfBrgQoHuMFraiU2FpkG+PMJVyO14wJ6kQR0GoW18PF2KQl0VbDsZawgnAMaYdIrX + 1vHbE/J4XMCQ+lzSXn5yNR1HFr8rhJJiWzbRlM2IPs4Avo2LXl/srsklDVl3mm5pDLda/7aZCM3z + bTmBzy+eUE2K4QTYrC7nr1DuHClykJNrYSxaT+7Ed3WxPiaB1XF6xpazk9z/L+k1+il/jv0Jyy/p + nwFrKSu53fNUvGZWqN3fX5kdaz0KNkLlji3tlKm0fjjqsIbpNBo5iNKw6zj27SjxdB+7vFuv3tG7 + i43dODN7nP0LAAD//wMAq4kznigGAAA= headers: CF-RAY: - - 96665cfffe8dfa86-SJC + - 96a9ce232d60cce4-SJC Connection: - keep-alive Content-Encoding: @@ -5211,7 +5260,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:44 GMT + - Tue, 05 Aug 2025 22:42:02 GMT Server: - cloudflare Strict-Transport-Security: @@ -5229,13 +5278,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "3301" + - "1653" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "3307" + - "1659" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -5243,13 +5292,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998545" + - "29998472" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - - 2ms + - 3ms x-request-id: - - 87d657dc-16e4-4ead-80ee-55454fe55ee8 + - req_3caebfb7fd944922aa5a727237b4c52d status: code: 200 message: OK @@ -5258,65 +5307,64 @@ interactions: '{"messages":[{"role":"system","content":"Answer in a direct and concise tone. Your audience is an expert, so be highly specific. If there are ambiguous terms or acronyms, first define them."},{"role":"user","content":"Answer the - question below with the context.\n\nContext:\n\npqac-e186cea0: Counterfactual - explanations are actionable as they provide local, instance-level explanations - that suggest which features can be altered to change the outcome. For example, - in chemistry, changing a hydrophobic functional group in a molecule to a hydrophilic - group can increase solubility. This actionability allows users to understand - how specific changes in features can lead to different predictions or outcomes.\nFrom - Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A - perspective on explanations of molecular prediction models. ChemRxiv, Unknown - year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, doi:10.26434/chemrxiv-2022-qfv02. - This article has 1 citations.\n\npqac-c65669a0: Counterfactuals are actionable - as they provide specific modifications to molecular structures that can lead - to desired changes in properties. For example, in the context of blood-brain - barrier (BBB) permeation prediction, counterfactual explanations suggested modifications - to the carboxylic acid group of a molecule, enabling it to permeate the BBB. - These actionable insights align with experimental findings, demonstrating how - hydrophobic interactions and surface area influence BBB permeability. Counterfactuals - thus offer practical guidance for molecular design by proposing changes that - can achieve specific outcomes.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi - Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction - models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\n\npqac-135a48bc: - The excerpt discusses the use of molecular counterfactuals in explaining black-box - models for molecular property predictions. Counterfactuals are described as - actionable because they are represented as chemical structures familiar to domain - experts, are sparse, and provide actionable insights. They are defined as molecules - with minimal distance from a base molecule but with contrasting chemical properties. - The text highlights their utility in understanding and modifying molecular properties, - making them a practical tool for domain experts.\nFrom Geemi P. Wellawatte, - Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations - of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\n\npqac-931e8443: - The excerpt discusses counterfactual explanations in the context of explainable - AI (XAI). It states that counterfactuals are considered ''better'' explanations - because they are both actionable and sparse. Actionable explanations provide - a set of features that can change the outcome, making them useful for decision-making. - This contrasts with Shapley values, which are described as non-actionable because - they do not offer a clear set of features to alter the prediction outcome.\nFrom + question below with the context.\n\nContext:\n\npqac-32f352e9: Counterfactuals + are actionable as they provide local, instance-level explanations that suggest + which features can be altered to change the outcome. For example, in chemistry, + counterfactuals can indicate modifications like changing a hydrophobic functional + group to a hydrophilic one to increase solubility. This actionability makes + counterfactual explanations a useful tool in explainable AI (XAI) for chemistry, + enabling intuitive understanding of predictions and uncovering spurious relationships + in training data.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, + and Andrew D. White. A perspective on explanations of molecular prediction models. + ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, doi:10.26434/chemrxiv-2022-qfv02. + This article has 1 citations.\n\npqac-2b58b2c3: Yes, counterfactuals are actionable. + The text explains that counterfactual explanations suggest specific modifications + to molecular structures to achieve desired properties, such as enabling a molecule + to permeate the blood-brain barrier (BBB). For example, modifications to the + carboxylic acid group in a molecule were shown to enhance BBB permeation by + increasing hydrophobic interactions and surface area. This demonstrates the + practical utility of counterfactuals in guiding actionable changes to molecular + structures.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew + D. White. A perspective on explanations of molecular prediction models. ChemRxiv, + Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, doi:10.26434/chemrxiv-2022-qfv02. + This article has 1 citations.\n\npqac-ce1c5876: Counterfactuals are actionable + in the context of molecular prediction models. The provided figures and text + demonstrate how counterfactuals can guide structural modifications to achieve + desired properties, such as increased solubility or altered scent profiles. + For example, modifications to ester groups and heteroatoms were shown to influence + solubility predictions, aligning with experimental and chemical intuition. Similarly, + counterfactuals were used to identify structural changes that affect scent predictions, + such as altering the fruity scent of a molecule. These examples highlight the + practical utility of counterfactuals in guiding chemical design and optimization.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, doi:10.26434/chemrxiv-2022-qfv02. - This article has 1 citations.\n\npqac-462019b7: The excerpt discusses Explainable - Artificial Intelligence (XAI) in the context of deep learning (DL) models for - chemistry. It highlights the importance of interpretability and explanations - in understanding ''black-box'' models. The authors mention methods like chemical - counterfactuals and descriptor explanations, which provide insights into structure-property - relationships and explain DL predictions. Counterfactuals are presented as a - way to explain predictions by showing alternative scenarios or changes that - could lead to different outcomes, making them actionable in understanding and - refining model predictions.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi + This article has 1 citations.\n\npqac-1276964c: Counterfactuals are described + as actionable in the excerpt. They are molecular structures with minimal distance + from a base molecule but with contrasting chemical properties. These explanations + are represented as chemical structures, which are familiar to domain experts, + and are sparse and actionable. The excerpt highlights the utility of counterfactual + explanations in explaining black-box models and their potential for practical + applications in chemistry.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, and Andrew D. White. A perspective on explanations of molecular prediction models. ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, - doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\n\nValid Keys: - pqac-e186cea0, pqac-c65669a0, pqac-135a48bc, pqac-931e8443, pqac-462019b7\n\n----\n\nQuestion: - Are counterfactuals actionable? [yes/no]\n\nWrite an answer based on the context. - If the context provides insufficient information reply \"I cannot answer.\" - For each part of your answer, indicate which sources most support it via citation - keys at the end of sentences, like (pqac-0f650d59). Only cite from the context - above and only use the citation keys from the context. ## Valid citation examples, - only use comma/space delimited parentheticals: \n- (pqac-d79ef6fa, pqac-0f650d59) + doi:10.26434/chemrxiv-2022-qfv02. This article has 1 citations.\n\npqac-c566bbf3: + The excerpt discusses counterfactuals as a type of explanation in molecular + prediction models. It states that counterfactuals are considered ''better'' + explanations because they are both actionable and sparse. Actionable explanations + provide a set of features that can change the outcome, making them useful for + decision-making. This contrasts with Shapley values, which are complete but + not actionable or sparse.\nFrom Geemi P. Wellawatte, Heta A. Gandhi, Aditi Seshadri, + and Andrew D. White. A perspective on explanations of molecular prediction models. + ChemRxiv, Unknown year. URL: https://doi.org/10.26434/chemrxiv-2022-qfv02, doi:10.26434/chemrxiv-2022-qfv02. + This article has 1 citations.\n\nValid Keys: pqac-32f352e9, pqac-2b58b2c3, pqac-ce1c5876, + pqac-1276964c, pqac-c566bbf3\n\n------------\n\nQuestion: Are counterfactuals + actionable? [yes/no]\n\nWrite an answer based on the context. If the context + provides insufficient information reply \"I cannot answer.\" For each part of + your answer, indicate which sources most support it via citation keys at the + end of sentences, like (pqac-0f650d59). Only cite from the context above and + only use the citation keys from the context. ## Valid citation examples, only + use comma/space delimited parentheticals: \n- (pqac-d79ef6fa, pqac-0f650d59) \n- (pqac-d79ef6fa) \n## Invalid citation examples: \n- (pqac-d79ef6fa and pqac-0f650d59) \n- (pqac-d79ef6fa;pqac-0f650d59) \n- (pqac-d79ef6fa-pqac-0f650d59) \n- pqac-d79ef6fa and pqac-0f650d59 \n- Example''s work (pqac-d79ef6fa) \n- (pages pqac-d79ef6fa) @@ -5332,13 +5380,13 @@ interactions: connection: - keep-alive content-length: - - "5629" + - "5548" content-type: - application/json host: - api.openai.com user-agent: - - AsyncOpenAI/Python 1.97.1 + - AsyncOpenAI/Python 1.99.0 x-stainless-arch: - arm64 x-stainless-async: @@ -5348,7 +5396,7 @@ interactions: x-stainless-os: - MacOS x-stainless-package-version: - - 1.97.1 + - 1.99.0 x-stainless-raw-response: - "true" x-stainless-read-timeout: @@ -5364,28 +5412,29 @@ interactions: response: body: string: !!binary | - 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 + JJM8CgkAAA== headers: CF-RAY: - - 96665d15ac10fa86-SJC + - 96a9ce2e682feb20-SJC Connection: - keep-alive Content-Encoding: @@ -5393,7 +5442,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 28 Jul 2025 18:15:48 GMT + - Tue, 05 Aug 2025 22:42:05 GMT Server: - cloudflare Strict-Transport-Security: @@ -5411,13 +5460,13 @@ interactions: openai-organization: - future-house-xr4tdh openai-processing-ms: - - "4298" + - "3259" openai-project: - proj_RpeV6PrPclPHBb5GlExPXSBj openai-version: - "2020-10-01" x-envoy-upstream-service-time: - - "4301" + - "3265" x-ratelimit-limit-requests: - "10000" x-ratelimit-limit-tokens: @@ -5425,13 +5474,13 @@ interactions: x-ratelimit-remaining-requests: - "9999" x-ratelimit-remaining-tokens: - - "29998630" + - "29998651" x-ratelimit-reset-requests: - 6ms x-ratelimit-reset-tokens: - 2ms x-request-id: - - 15f7d53f-6f1c-4e3b-a97f-8599930c37aa + - req_ae5d15c879504263be1b624dbe004b3b status: code: 200 message: OK diff --git a/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.bbcan.2023.188947-1].yaml b/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.bbcan.2023.188947-1].yaml index 415b24c79..1bfbb32ab 100644 --- a/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.bbcan.2023.188947-1].yaml +++ b/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.bbcan.2023.188947-1].yaml @@ -140,7 +140,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 25 Jul 2025 21:35:32 GMT + - Mon, 11 Aug 2025 22:50:09 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -149,9 +149,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -182,7 +182,7 @@ interactions: Connection: - keep-alive Date: - - Fri, 25 Jul 2025 21:35:32 GMT + - Mon, 11 Aug 2025 22:50:09 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -191,9 +191,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.semcdb.2016.08.024-1].yaml b/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.semcdb.2016.08.024-1].yaml index 280785eb5..57cae8ead 100644 --- a/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.semcdb.2016.08.024-1].yaml +++ b/tests/cassettes/test_tricky_journal_quality_results[10.1016-j.semcdb.2016.08.024-1].yaml @@ -229,7 +229,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 25 Jul 2025 21:35:29 GMT + - Mon, 11 Aug 2025 22:50:07 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -238,9 +238,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -270,7 +270,7 @@ interactions: Connection: - keep-alive Date: - - Fri, 25 Jul 2025 21:35:29 GMT + - Mon, 11 Aug 2025 22:50:08 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -279,9 +279,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/cassettes/test_tricky_journal_quality_results[10.1038-s41598-018-27044-6-1].yaml b/tests/cassettes/test_tricky_journal_quality_results[10.1038-s41598-018-27044-6-1].yaml index b3818e319..36841435c 100644 --- a/tests/cassettes/test_tricky_journal_quality_results[10.1038-s41598-018-27044-6-1].yaml +++ b/tests/cassettes/test_tricky_journal_quality_results[10.1038-s41598-018-27044-6-1].yaml @@ -313,7 +313,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 25 Jul 2025 21:35:24 GMT + - Mon, 11 Aug 2025 22:50:05 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -322,9 +322,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -356,7 +356,7 @@ interactions: Connection: - keep-alive Date: - - Fri, 25 Jul 2025 21:35:24 GMT + - Mon, 11 Aug 2025 22:50:05 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -365,9 +365,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/cassettes/test_tricky_journal_quality_results[10.1073-pnas.1205508109-3].yaml b/tests/cassettes/test_tricky_journal_quality_results[10.1073-pnas.1205508109-3].yaml index 6f8321ee3..5bdecec97 100644 --- a/tests/cassettes/test_tricky_journal_quality_results[10.1073-pnas.1205508109-3].yaml +++ b/tests/cassettes/test_tricky_journal_quality_results[10.1073-pnas.1205508109-3].yaml @@ -7,7 +7,7 @@ interactions: response: body: string: - '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,7,16]],"date-time":"2025-07-16T12:53:39Z","timestamp":1752670419394},"reference-count":37,"publisher":"Proceedings + '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,8,6]],"date-time":"2025-08-06T12:08:59Z","timestamp":1754482139670},"reference-count":37,"publisher":"Proceedings of the National Academy of Sciences","issue":"38","content-domain":{"domain":["www.pnas.org"],"crossmark-restriction":true},"short-container-title":["Proc. Natl. Acad. Sci. U.S.A."],"published-print":{"date-parts":[[2012,9,18]]},"abstract":"\n The p110\u03b1 catalytic subunit (\n PIK3CA<\/jats:italic>\n ) @@ -61,11 +61,11 @@ interactions: Content-Encoding: - gzip Content-Length: - - "2581" + - "2578" Content-Type: - application/json Date: - - Fri, 25 Jul 2025 21:35:26 GMT + - Mon, 11 Aug 2025 22:50:06 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -74,9 +74,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -108,7 +108,7 @@ interactions: Connection: - keep-alive Date: - - Fri, 25 Jul 2025 21:35:26 GMT + - Mon, 11 Aug 2025 22:50:06 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -117,9 +117,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/cassettes/test_tricky_journal_quality_results[10.1146-annurev.pathol.4.110807.092311-2].yaml b/tests/cassettes/test_tricky_journal_quality_results[10.1146-annurev.pathol.4.110807.092311-2].yaml index 39912dc93..0add2dc55 100644 --- a/tests/cassettes/test_tricky_journal_quality_results[10.1146-annurev.pathol.4.110807.092311-2].yaml +++ b/tests/cassettes/test_tricky_journal_quality_results[10.1146-annurev.pathol.4.110807.092311-2].yaml @@ -7,7 +7,7 @@ interactions: response: body: string: - '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,7,25]],"date-time":"2025-07-25T10:32:43Z","timestamp":1753439563230},"reference-count":120,"publisher":"Annual + '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2025,8,6]],"date-time":"2025-08-06T13:07:30Z","timestamp":1754485650155},"reference-count":120,"publisher":"Annual Reviews","issue":"1","content-domain":{"domain":[],"crossmark-restriction":false},"short-container-title":["Annu. Rev. Pathol. Mech. Dis."],"published-print":{"date-parts":[[2009,2,1]]},"abstract":" PI3-kinase and PTEN are major positive and negative regulators, respectively, @@ -22,7 +22,7 @@ interactions: in the regulation of PTEN and PI3K activity, potential novel functions for PTEN, and feedback regulation within the pathway. The significance and complexity of PI3K signaling make it an important but challenging therapeutic target - for cancer. <\/jats:p>","DOI":"10.1146\/annurev.pathol.4.110807.092311","type":"journal-article","created":{"date-parts":[[2008,9,3]],"date-time":"2008-09-03T18:23:28Z","timestamp":1220466208000},"page":"127-150","source":"Crossref","is-referenced-by-count":1003,"title":["PTEN + for cancer. <\/jats:p>","DOI":"10.1146\/annurev.pathol.4.110807.092311","type":"journal-article","created":{"date-parts":[[2008,9,3]],"date-time":"2008-09-03T18:23:28Z","timestamp":1220466208000},"page":"127-150","source":"Crossref","is-referenced-by-count":1005,"title":["PTEN and the PI3-Kinase Pathway in Cancer"],"prefix":"10.1146","volume":"4","author":[{"given":"Nader","family":"Chalhoub","sequence":"first","affiliation":[{"name":"Department of Developmental Neurobiology, St. Jude Children''s Research Hospital, Memphis, Tennessee 38105-2794;"}]},{"given":"Suzanne J.","family":"Baker","sequence":"additional","affiliation":[{"name":"Department @@ -49,11 +49,11 @@ interactions: Content-Encoding: - gzip Content-Length: - - "3229" + - "3228" Content-Type: - application/json Date: - - Fri, 25 Jul 2025 21:35:31 GMT + - Mon, 11 Aug 2025 22:50:08 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -62,9 +62,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -94,7 +94,7 @@ interactions: Connection: - keep-alive Date: - - Fri, 25 Jul 2025 21:35:31 GMT + - Mon, 11 Aug 2025 22:50:08 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -103,9 +103,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/cassettes/test_tricky_journal_quality_results[10.1186-1471-2148-11-4-2].yaml b/tests/cassettes/test_tricky_journal_quality_results[10.1186-1471-2148-11-4-2].yaml index 9333942fa..594d8c938 100644 --- a/tests/cassettes/test_tricky_journal_quality_results[10.1186-1471-2148-11-4-2].yaml +++ b/tests/cassettes/test_tricky_journal_quality_results[10.1186-1471-2148-11-4-2].yaml @@ -207,7 +207,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 25 Jul 2025 21:35:28 GMT + - Mon, 11 Aug 2025 22:50:07 GMT Server: - Jetty(9.4.40.v20210413) Vary: @@ -216,9 +216,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 @@ -250,7 +250,7 @@ interactions: Connection: - keep-alive Date: - - Fri, 25 Jul 2025 21:35:28 GMT + - Mon, 11 Aug 2025 22:50:07 GMT Server: - Jetty(9.4.40.v20210413) Transfer-Encoding: @@ -259,9 +259,9 @@ interactions: - interest-cohort=() x-api-pool: - plus - x-ratelimit-interval: + x-rate-limit-interval: - 1s - x-ratelimit-limit: + x-rate-limit-limit: - "150" status: code: 200 diff --git a/tests/stub_data/influence.pdf b/tests/stub_data/influence.pdf new file mode 100644 index 000000000..95c333730 Binary files /dev/null and b/tests/stub_data/influence.pdf differ diff --git a/tests/stub_data/sf_districts.png b/tests/stub_data/sf_districts.png new file mode 100644 index 000000000..70dccf614 Binary files /dev/null and b/tests/stub_data/sf_districts.png differ diff --git a/tests/test_agents.py b/tests/test_agents.py index 58b2733f6..430834e12 100644 --- a/tests/test_agents.py +++ b/tests/test_agents.py @@ -89,11 +89,11 @@ async def test_get_directory_index( "year", ], "Incorrect fields in index" assert not index.changed, "Expected index to not have changes at this point" - # bates.txt + empty.txt + flag_day.html + gravity_hill.md + obama.txt + paper.pdf + pasa.pdf, + # bates.txt + empty.txt + flag_day.html + gravity_hill.md + influence.pdf + obama.txt + paper.pdf + pasa.pdf, # but empty.txt fails to be added path_to_id = await index.index_files assert ( - sum(id_ != FAILED_DOCUMENT_ADD_ID for id_ in path_to_id.values()) == 6 + sum(id_ != FAILED_DOCUMENT_ADD_ID for id_ in path_to_id.values()) == 7 ), "Incorrect number of parsed index files" with subtests.test(msg="check-txt-query"): @@ -254,6 +254,7 @@ async def test_getting_manifest( "empty.txt", "flag_day.html", "gravity_hill.md", + "influence.pdf", "obama.txt", "paper.pdf", "pasa.pdf", diff --git a/tests/test_clients.py b/tests/test_clients.py index 0cf13c9a1..cd7f18c45 100644 --- a/tests/test_clients.py +++ b/tests/test_clients.py @@ -155,10 +155,10 @@ async def test_title_search(paper_attributes: dict[str, str]) -> None: " editing" ), "source": ["semantic_scholar", "crossref"], - "key": "herger2024highthroughputscreeningof", - "doi": "10.1101/2024.04.01.587366", - "doc_id": "8e7669b50f31c52b", - "journal": "BioRxiv", + "key": "herger2025highthroughputscreeningof", + "doi": "10.1016/j.xgen.2025.100814", + "doc_id": "17ba73198ea7230c", # spellchecker: disable-line + "journal": "Cell Genomics", "authors": [ "Michael Herger", "Christina M. Kajba", @@ -170,9 +170,10 @@ async def test_title_search(paper_attributes: dict[str, str]) -> None: "formatted_citation": ( "Michael Herger, Christina M. Kajba, Megan Buckley, Ana Cunha, Molly" " Strom, and Gregory M. Findlay. High-throughput screening of human" - " genetic variants by pooled prime editing. BioRxiv, Apr 2024. URL:" - " https://doi.org/10.1101/2024.04.01.587366," - " doi:10.1101/2024.04.01.587366. This article has 1 citations." + " genetic variants by pooled prime editing. Cell Genomics, 5:100814, Apr 2025. URL:" + " https://doi.org/10.1016/j.xgen.2025.100814," + " doi:10.1016/j.xgen.2025.100814." + " This article has 5 citations and is from a peer-reviewed journal." ), "is_oa": True, }, @@ -242,6 +243,22 @@ async def test_title_search(paper_attributes: dict[str, str]) -> None: "dockey": "35c80e22e6d9a7bc", "doi_url": "https://doi.org/10.1016/j.addr.2015.01.008", }, + { + "publication_date": datetime(2014, 10, 27), + "year": 2014, + "volume": "111", + "pages": "E4832-E4841", + "journal": "Proceedings of the National Academy of Sciences", + "title": ( + "Developing functional musculoskeletal tissues through hypoxia" + " and lysyl oxidase-induced collagen cross-linking" + ), + "source": ["semantic_scholar", "crossref"], + "doi": "10.1073/pnas.1414271111", + "doc_id": "048586195b7e92fd", + "dockey": "048586195b7e92fd", + "doi_url": "https://doi.org/10.1073/pnas.1414271111", + }, ], ) @pytest.mark.asyncio @@ -458,6 +475,7 @@ async def test_crossref_journalquality_fields_filtering() -> None: "Beta-Blocker Interruption or Continuation after Myocardial" " Infarction" # codespell:ignore ), + authors=["Johanne Silvain"], fields=["title", "doi", "authors", "journal"], ) assert nejm_crossref_details, "Assertions require successful query" diff --git a/tests/test_clinical_trials.py b/tests/test_clinical_trials.py index 010ab66fe..c0caa9ccc 100644 --- a/tests/test_clinical_trials.py +++ b/tests/test_clinical_trials.py @@ -35,8 +35,8 @@ def mock_bucket_client(): yield mock_client -@pytest.fixture -def mock_session(): +@pytest.fixture(name="mock_session") +def fixture_mock_session() -> ClientSession: return AsyncMock(spec=ClientSession) @@ -93,14 +93,9 @@ def test_format_to_doc_details(): @pytest.mark.asyncio -async def test_add_clinical_trials_to_docs(): - mock_session = AsyncMock(spec=ClientSession) - mock_docs = Mock(spec=Docs) - mock_docs.aadd_texts = AsyncMock() - mock_docs.texts = [] - - mock_response = AsyncMock() - mock_response.raise_for_status.return_value = None +async def test_add_clinical_trials_to_docs(mock_session) -> None: + mock_docs = Mock(spec=Docs, aadd_texts=AsyncMock(), texts=[]) + mock_response = AsyncMock(raise_for_status=Mock(return_value=None)) mock_response.json.return_value = { "studies": [ {"protocolSection": {"identificationModule": {"nctId": "NCT12345678"}}} @@ -108,20 +103,16 @@ async def test_add_clinical_trials_to_docs(): } mock_session.get.return_value.__aenter__.return_value = mock_response - with patch( - "paperqa.sources.clinical_trials.search_retrieve_clinical_trials", - return_value=([SAMPLE_TRIAL_DATA], 1), - ): - await add_clinical_trials_to_docs( - "test query", mock_docs, Settings(), session=mock_session - ) - - assert ( - mock_docs.aadd_texts.call_count == 2 - ), "One for the metadata and one for the trial" - call_args = mock_docs.aadd_texts.call_args[1] - assert "doc" in call_args - assert isinstance(call_args["doc"].citation, str) + await add_clinical_trials_to_docs( + "test query", mock_docs, Settings(), session=mock_session + ) + + assert ( + mock_docs.aadd_texts.call_count == 2 + ), "One for the metadata and one for the trial" + call_args = mock_docs.aadd_texts.call_args[1] + assert "doc" in call_args + assert isinstance(call_args["doc"].citation, str) def test_parse_clinical_trial(): diff --git a/tests/test_paperqa.py b/tests/test_paperqa.py index c83368f72..8cb21e2d0 100644 --- a/tests/test_paperqa.py +++ b/tests/test_paperqa.py @@ -1,5 +1,8 @@ +import asyncio +import base64 import contextlib import csv +import io import os import pathlib import pickle @@ -11,9 +14,11 @@ from io import BytesIO from pathlib import Path from typing import cast +from unittest.mock import MagicMock, call from uuid import UUID import httpx +import litellm import numpy as np import pytest import pytest_asyncio @@ -51,10 +56,11 @@ from paperqa.core import llm_parse_json from paperqa.prompts import CANNOT_ANSWER_PHRASE from paperqa.prompts import qa_prompt as default_qa_prompt -from paperqa.readers import PDFParserFn, read_doc +from paperqa.readers import PDFParserFn, parse_image, read_doc from paperqa.settings import AsyncContextSerializer -from paperqa.types import ChunkMetadata, Context +from paperqa.types import ChunkMetadata, Context, ParsedMedia from paperqa.utils import ( + bytes_to_string, clean_possessives, encode_id, extract_score, @@ -62,8 +68,10 @@ maybe_is_html, maybe_is_text, name_in_text, + string_to_bytes, strings_similarity, strip_citations, + validate_image, ) THIS_MODULE = pathlib.Path(__file__) @@ -1222,17 +1230,28 @@ async def test_parser_only_reader(pdf_parser: PDFParserFn, stub_data_dir: Path) Doc(docname="foo", citation="Foo et al, 2002", dockey="1"), parsed_text_only=True, parse_pdf=pdf_parser, + full_page=True, # Simple to support across many parsers ) assert parsed_text.metadata.parse_type == "pdf" assert parsed_text.metadata.chunk_metadata is None - assert parsed_text.metadata.total_parsed_text_length == sum( - len(t) for t in parsed_text.content.values() # type: ignore[misc,union-attr] - ) + assert isinstance(parsed_text.content, dict) + num_chars = 0 + for value in parsed_text.content.values(): + assert isinstance(value, tuple) + num_chars += len(value[0]) + assert parsed_text.metadata.count_parsed_media > 1 + assert parsed_text.metadata.count_parsed_media == len( + parsed_text.content + ), "Full parsing should have one screenshot per page" + assert parsed_text.metadata.total_parsed_text_length == num_chars @pytest.mark.asyncio @pytest.mark.parametrize( - "pdf_parser", [pypdf_parse_pdf_to_pages, pymupdf_parse_pdf_to_pages] + "pdf_parser", + [ + pymupdf_parse_pdf_to_pages # TODO: add PyPDF when it supports multiple images/page + ], ) async def test_chunk_metadata_reader( pdf_parser: PDFParserFn, stub_data_dir: Path @@ -1274,6 +1293,10 @@ async def test_chunk_metadata_reader( assert ( int(last_page) - int(stlast_page) <= 2 ), "Incorrect page range if last chunk is a partial chunk" + assert metadata.count_parsed_media > 1, "Expected media to be parsed" + assert ( + sum(len(t.media) for t in chunk_text) == metadata.count_parsed_media + ), "Expected chunks' media to match parsed media" chunk_text, metadata = await read_doc( stub_data_dir / "flag_day.html", @@ -1321,6 +1344,127 @@ async def test_chunk_metadata_reader( ) +@pytest.mark.asyncio +async def test_image_aggregation(stub_data_dir: Path) -> None: + png_path = stub_data_dir / "sf_districts.png" + + # Test how self-comparisons work + ((_, (parsed_image,)),) = cast(dict, (await parse_image(png_path)).content).values() + assert parsed_image == parsed_image, "Expected equality" # noqa: PLR0124 + assert parsed_image.to_id() == parsed_image.to_id(), "Expected same ID" + assert len({parsed_image, parsed_image}) == 1, "Expected shared hash" + assert not parsed_image.text, "Expected no text for later assertions to make sense" + assert ( + parsed_image.info.get("type") != "table" + ), "Expected no table for later assertions to make sense" + + # Test how self-comparisons work + ((_, (parsed_image2,)),) = cast( + dict, (await parse_image(png_path)).content + ).values() + assert parsed_image == parsed_image2, "Expected equality to persist across reads" + assert ( + parsed_image.to_id() == parsed_image2.to_id() + ), "Expected ID to persist across reads" + assert ( + len({parsed_image, parsed_image2}) == 1 + ), "Expected hash to persist across reads" + + # Test different read details + ((_, (parsed_image3,)),) = cast( + dict, (await parse_image(png_path)).content + ).values() + parsed_image3.text = "Golden Gate" + parsed_image3.info["type"] = "table" + assert parsed_image != parsed_image3, "Expected tables to be differentiable" + assert ( + parsed_image.to_id() != parsed_image3.to_id() + ), "Expected ID to mismatch between tables and images" + assert ( + len({parsed_image, parsed_image3}) == 2 + ), "Expected tables to be hashed differently" + + +@pytest.mark.asyncio +async def test_read_doc_images_metadata(stub_data_dir: Path) -> None: + png_path = stub_data_dir / "sf_districts.png" + doc = Doc(docname="stub", citation="stub", dockey="stub") + + # Test parsing only + parsed_text = await read_doc(png_path, doc, parsed_text_only=True) + assert isinstance(parsed_text.content, dict) + assert "1" in parsed_text.content + page_content = parsed_text.content["1"] + assert isinstance(page_content, tuple) + text_content, (parsed_image,) = page_content + assert not text_content, "Expected no text content for an image" + assert isinstance(parsed_image, ParsedMedia) + assert parsed_image.index == 0 + assert isinstance(parsed_image.data, bytes) + assert len(parsed_image.data) > 0 + assert not parsed_image.text, "Expected no text content for a standalone image" + assert parsed_image.info["suffix"] == ".png" + image_id = parsed_image.to_id() + assert image_id.version == 4, "Expected a uuid4-compatible ID" + assert image_id == UUID("f6426bc3-382a-45a4-8677-08744044864f") + assert parsed_text.metadata.parse_type == "image" + assert parsed_text.metadata.count_parsed_media == 1 + assert parsed_text.metadata.total_parsed_text_length == 0 + assert parsed_text.metadata.chunk_metadata is None + + # Test parsing + 'chunking' + (text,) = await read_doc(png_path, doc) + assert isinstance(text, Text) + assert text.doc == doc + (image,) = text.media + assert image == parsed_image + + # Test including metadata + texts_with_metadata = await read_doc(png_path, doc, include_metadata=True) + assert isinstance(texts_with_metadata, tuple) + texts, metadata = texts_with_metadata + assert len(texts) == 1 + assert texts[0] == text + assert metadata.parse_type == "image" + assert metadata.count_parsed_media == 1 + assert metadata.total_parsed_text_length == 0 + assert metadata.chunk_metadata is not None + assert not metadata.chunk_metadata.chunk_chars + assert not metadata.chunk_metadata.overlap + assert metadata.chunk_metadata.chunk_type == "no_chunk" + + +@pytest.mark.asyncio +async def test_read_doc_images_concurrency(stub_data_dir: Path) -> None: + png_path = stub_data_dir / "sf_districts.png" + doc = Doc(docname="stub", citation="stub", dockey="stub") + validation_mock = MagicMock() + + async def validate(data: bytes) -> None: # noqa: RUF029 + validate_image(io.BytesIO(data)) + validation_mock(data) + + # Check we can concurrently read in the same image many times + concurrent_call_count = 10 + seen_media = set() + bulk_texts = await asyncio.gather( + *( + read_doc(png_path, doc, validator=validate) + for _ in range(concurrent_call_count) + ) + ) + for (text,) in bulk_texts: + assert text.doc == doc + assert len(text.media) == 1 + seen_media.add(text.media[0]) + assert ( + len(seen_media) == 1 + ), "Expected the concurrent reads to all have the same parsed result" + validation_mock.assert_has_calls( + [call(next(iter(seen_media)).data)] * concurrent_call_count + ) + + @pytest.mark.asyncio async def test_code() -> None: settings = Settings.from_name("fast") @@ -1334,6 +1478,140 @@ async def test_code() -> None: assert "test_paperqa.py" in session.answer +@pytest.mark.asyncio +async def test_querying_tables(stub_data_dir: Path) -> None: + settings = Settings.from_name("fast") + + docs = Docs() + assert await docs.aadd(stub_data_dir / "influence.pdf", settings=settings) + # Now, let's modify the system so any tables housed in the Text.text get removed, + # and the system can only rely on table images or markdown + texts_with_tables = { + t + for t in docs.texts + if t.media and any(m.info.get("type") == "table" for m in t.media) + } + assert texts_with_tables, "Expected some texts to have parsed tables" + for t in texts_with_tables: + # Wipe text but keep embedding (for retrieval), to confirm tables get used + t.text = "Placeholder" + # Wipe non-table media (e.g. images) + t.media = [m for m in t.media if m.info.get("type") == "table"] + docs.texts = list(texts_with_tables) + session = await docs.aquery( + "What osteotomy gap (mm) has the bone volume per slice?", settings=settings + ) + assert session.used_contexts + used_texts = [c.text for c in session.contexts if c.id in session.used_contexts] + assert all( + [m.data for m in t.media] for t in used_texts + ), "Expected image data to be present in the used contexts" + assert any(x in session.answer for x in ("1.0 mm", "1.0-mm")) + assert session.cost > 0 + + # Filter contexts for HTTP requests, and ensure no images are present + session.filter_content_for_user() + assert session.used_contexts + used_texts_after_filter = [ + c.text for c in session.contexts if c.id in session.used_contexts + ] + assert all( + not t.media for t in used_texts_after_filter + ), "Expected no media for lightweight HTTP requests" + + +@pytest.mark.asyncio +async def test_images(stub_data_dir: Path) -> None: + settings = Settings.from_name("fast") + # Let's use default prompting set up, so we can get JSON summary-support + settings.prompts = type(settings.prompts)() + # We don't support image embeddings yet, so disable embedding + settings.answer.evidence_retrieval = False + settings.parsing.defer_embedding = True + + docs = Docs() + districts_docname = await docs.aadd( + stub_data_dir / "sf_districts.png", + citation=( + '"File:San francisco districts.png." Wikimedia Commons.' + " 7 Sep 2023, 07:38 UTC." + " " + " July 2025." + ), + settings=settings, + ) + assert districts_docname, "Expected successful image addition" + (districts_doc,) = (d for d in docs.docs.values() if d.docname == districts_docname) + session = await docs.aquery( + "What districts neighbor the Western Addition?", settings=settings + ) + assert ( + sum( + district in session.answer + for district in ("The Avenues", "Golden Gate", "Civic Center", "Haight") + ) + >= 2 + ), "Expected at least two neighbors to be matched" + assert session.cost > 0 + contexts_used = [ + c + for c in session.contexts + if c.id in session.used_contexts and c.text.doc == districts_doc + ] + assert contexts_used + assert all(c.used_images for c in contexts_used) # type: ignore[attr-defined] + + +@pytest.mark.asyncio +async def test_images_corrupt(stub_data_dir: Path) -> None: + settings = Settings.from_name("fast") + # Let's use default prompting set up, so we can get JSON summary-support + settings.prompts = type(settings.prompts)() + # We don't support image embeddings yet, so disable embedding + settings.answer.evidence_retrieval = False + settings.parsing.defer_embedding = True + + docs = Docs() + districts_docname = await docs.aadd( + stub_data_dir / "sf_districts.png", + citation=( + '"File:San francisco districts.png." Wikimedia Commons.' + " 7 Sep 2023, 07:38 UTC." + " " + " July 2025." + ), + settings=settings, + ) + assert districts_docname, "Expected successful image addition" + (districts_doc,) = (d for d in docs.docs.values() if d.docname == districts_docname) + for media in (t.media for t in docs.texts if t.doc == districts_doc and t.media): + for m in media: + # Validate the image, then chop the image in half (breaking it), and + # confirm it's no longer valid (and that we can detect it's no longer valid) + validate_image(io.BytesIO(m.data)) + m.data = m.data[: len(m.data) // 2] + with pytest.raises(OSError, match="truncated"): + validate_image(io.BytesIO(m.data)) + with pytest.raises(litellm.BadRequestError, match="unsupported image"): + await docs.aquery( + "What districts neighbor the Western Addition?", settings=settings + ) + settings.answer.evidence_text_only_fallback = True + # The answer will be garbage, but let's make sure we didn't claim to use images + session = await docs.aquery( + "What districts neighbor the Western Addition?", settings=settings + ) + assert session.used_contexts + assert session.cost > 0 + contexts_used = [ + c + for c in session.contexts + if c.id in session.used_contexts and c.text.doc == districts_doc + ] + assert contexts_used + assert all(not c.used_images for c in contexts_used) # type: ignore[attr-defined] + + def test_zotero() -> None: from paperqa.contrib import ZoteroDB @@ -2152,3 +2430,23 @@ def test_maybe_get_date(): ) def test_clean_possessives(raw_text: str, cleaned_text: str) -> None: assert clean_possessives(raw_text) == cleaned_text + + +@pytest.mark.parametrize( + "value", + [ + pytest.param(b"Hello, World!", id="simple-text"), + pytest.param(b"", id="empty-bytes"), + pytest.param(bytes([0, 1, 2, 255, 128, 64]), id="binary-data"), + pytest.param(b"Test data for base64 encoding", id="base64-validation"), + pytest.param("Hello 世界 🌍".encode(), id="utf8-text"), + ], +) +def test_str_bytes_conversions(value: bytes) -> None: + # Test round-trip conversion + encoded_string = bytes_to_string(value) + decoded_bytes = string_to_bytes(encoded_string) + assert decoded_bytes == value + + # Validate that encoded string is valid base64 + assert base64.b64decode(encoded_string) == value diff --git a/uv.lock b/uv.lock index 2af3428d3..8fac9f17c 100644 --- a/uv.lock +++ b/uv.lock @@ -477,23 +477,23 @@ wheels = [ [[package]] name = "debugpy" -version = "1.8.15" +version = "1.8.16" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8c/8b/3a9a28ddb750a76eaec445c7f4d3147ea2c579a97dbd9e25d39001b92b21/debugpy-1.8.15.tar.gz", hash = "sha256:58d7a20b7773ab5ee6bdfb2e6cf622fdf1e40c9d5aef2857d85391526719ac00", size = 1643279, upload-time = "2025-07-15T16:43:29.135Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/d4/722d0bcc7986172ac2ef3c979ad56a1030e3afd44ced136d45f8142b1f4a/debugpy-1.8.16.tar.gz", hash = "sha256:31e69a1feb1cf6b51efbed3f6c9b0ef03bc46ff050679c4be7ea6d2e23540870", size = 1643809, upload-time = "2025-08-06T18:00:02.647Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/b3/1c44a2ed311199ab11c2299c9474a6c7cd80d19278defd333aeb7c287995/debugpy-1.8.15-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:babc4fb1962dd6a37e94d611280e3d0d11a1f5e6c72ac9b3d87a08212c4b6dd3", size = 2183442, upload-time = "2025-07-15T16:43:36.733Z" }, - { url = "https://files.pythonhosted.org/packages/f6/69/e2dcb721491e1c294d348681227c9b44fb95218f379aa88e12a19d85528d/debugpy-1.8.15-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f778e68f2986a58479d0ac4f643e0b8c82fdd97c2e200d4d61e7c2d13838eb53", size = 3134215, upload-time = "2025-07-15T16:43:38.116Z" }, - { url = "https://files.pythonhosted.org/packages/17/76/4ce63b95d8294dcf2fd1820860b300a420d077df4e93afcaa25a984c2ca7/debugpy-1.8.15-cp311-cp311-win32.whl", hash = "sha256:f9d1b5abd75cd965e2deabb1a06b0e93a1546f31f9f621d2705e78104377c702", size = 5154037, upload-time = "2025-07-15T16:43:39.471Z" }, - { url = "https://files.pythonhosted.org/packages/c2/a7/e5a7c784465eb9c976d84408873d597dc7ce74a0fc69ed009548a1a94813/debugpy-1.8.15-cp311-cp311-win_amd64.whl", hash = "sha256:62954fb904bec463e2b5a415777f6d1926c97febb08ef1694da0e5d1463c5c3b", size = 5178133, upload-time = "2025-07-15T16:43:40.969Z" }, - { url = "https://files.pythonhosted.org/packages/ab/4a/4508d256e52897f5cdfee6a6d7580974811e911c6d01321df3264508a5ac/debugpy-1.8.15-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:3dcc7225cb317469721ab5136cda9ff9c8b6e6fb43e87c9e15d5b108b99d01ba", size = 2511197, upload-time = "2025-07-15T16:43:42.343Z" }, - { url = "https://files.pythonhosted.org/packages/99/8d/7f6ef1097e7fecf26b4ef72338d08e41644a41b7ee958a19f494ffcffc29/debugpy-1.8.15-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:047a493ca93c85ccede1dbbaf4e66816794bdc214213dde41a9a61e42d27f8fc", size = 4229517, upload-time = "2025-07-15T16:43:44.14Z" }, - { url = "https://files.pythonhosted.org/packages/3f/e8/e8c6a9aa33a9c9c6dacbf31747384f6ed2adde4de2e9693c766bdf323aa3/debugpy-1.8.15-cp312-cp312-win32.whl", hash = "sha256:b08e9b0bc260cf324c890626961dad4ffd973f7568fbf57feb3c3a65ab6b6327", size = 5276132, upload-time = "2025-07-15T16:43:45.529Z" }, - { url = "https://files.pythonhosted.org/packages/e9/ad/231050c6177b3476b85fcea01e565dac83607b5233d003ff067e2ee44d8f/debugpy-1.8.15-cp312-cp312-win_amd64.whl", hash = "sha256:e2a4fe357c92334272eb2845fcfcdbec3ef9f22c16cf613c388ac0887aed15fa", size = 5317645, upload-time = "2025-07-15T16:43:46.968Z" }, - { url = "https://files.pythonhosted.org/packages/28/70/2928aad2310726d5920b18ed9f54b9f06df5aa4c10cf9b45fa18ff0ab7e8/debugpy-1.8.15-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:f5e01291ad7d6649aed5773256c5bba7a1a556196300232de1474c3c372592bf", size = 2495538, upload-time = "2025-07-15T16:43:48.927Z" }, - { url = "https://files.pythonhosted.org/packages/9e/c6/9b8ffb4ca91fac8b2877eef63c9cc0e87dd2570b1120054c272815ec4cd0/debugpy-1.8.15-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94dc0f0d00e528d915e0ce1c78e771475b2335b376c49afcc7382ee0b146bab6", size = 4221874, upload-time = "2025-07-15T16:43:50.282Z" }, - { url = "https://files.pythonhosted.org/packages/55/8a/9b8d59674b4bf489318c7c46a1aab58e606e583651438084b7e029bf3c43/debugpy-1.8.15-cp313-cp313-win32.whl", hash = "sha256:fcf0748d4f6e25f89dc5e013d1129ca6f26ad4da405e0723a4f704583896a709", size = 5275949, upload-time = "2025-07-15T16:43:52.079Z" }, - { url = "https://files.pythonhosted.org/packages/72/83/9e58e6fdfa8710a5e6ec06c2401241b9ad48b71c0a7eb99570a1f1edb1d3/debugpy-1.8.15-cp313-cp313-win_amd64.whl", hash = "sha256:73c943776cb83e36baf95e8f7f8da765896fd94b05991e7bc162456d25500683", size = 5317720, upload-time = "2025-07-15T16:43:53.703Z" }, - { url = "https://files.pythonhosted.org/packages/07/d5/98748d9860e767a1248b5e31ffa7ce8cb7006e97bf8abbf3d891d0a8ba4e/debugpy-1.8.15-py2.py3-none-any.whl", hash = "sha256:bce2e6c5ff4f2e00b98d45e7e01a49c7b489ff6df5f12d881c67d2f1ac635f3d", size = 5282697, upload-time = "2025-07-15T16:44:07.996Z" }, + { url = "https://files.pythonhosted.org/packages/63/d6/ad70ba8b49b23fa286fb21081cf732232cc19374af362051da9c7537ae52/debugpy-1.8.16-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:67371b28b79a6a12bcc027d94a06158f2fde223e35b5c4e0783b6f9d3b39274a", size = 2184063, upload-time = "2025-08-06T18:00:11.885Z" }, + { url = "https://files.pythonhosted.org/packages/aa/49/7b03e88dea9759a4c7910143f87f92beb494daaae25560184ff4ae883f9e/debugpy-1.8.16-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2abae6dd02523bec2dee16bd6b0781cccb53fd4995e5c71cc659b5f45581898", size = 3134837, upload-time = "2025-08-06T18:00:13.782Z" }, + { url = "https://files.pythonhosted.org/packages/5d/52/b348930316921de7565fbe37a487d15409041713004f3d74d03eb077dbd4/debugpy-1.8.16-cp311-cp311-win32.whl", hash = "sha256:f8340a3ac2ed4f5da59e064aa92e39edd52729a88fbde7bbaa54e08249a04493", size = 5159142, upload-time = "2025-08-06T18:00:15.391Z" }, + { url = "https://files.pythonhosted.org/packages/d8/ef/9aa9549ce1e10cea696d980292e71672a91ee4a6a691ce5f8629e8f48c49/debugpy-1.8.16-cp311-cp311-win_amd64.whl", hash = "sha256:70f5fcd6d4d0c150a878d2aa37391c52de788c3dc680b97bdb5e529cb80df87a", size = 5183117, upload-time = "2025-08-06T18:00:17.251Z" }, + { url = "https://files.pythonhosted.org/packages/61/fb/0387c0e108d842c902801bc65ccc53e5b91d8c169702a9bbf4f7efcedf0c/debugpy-1.8.16-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:b202e2843e32e80b3b584bcebfe0e65e0392920dc70df11b2bfe1afcb7a085e4", size = 2511822, upload-time = "2025-08-06T18:00:18.526Z" }, + { url = "https://files.pythonhosted.org/packages/37/44/19e02745cae22bf96440141f94e15a69a1afaa3a64ddfc38004668fcdebf/debugpy-1.8.16-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64473c4a306ba11a99fe0bb14622ba4fbd943eb004847d9b69b107bde45aa9ea", size = 4230135, upload-time = "2025-08-06T18:00:19.997Z" }, + { url = "https://files.pythonhosted.org/packages/f3/0b/19b1ba5ee4412f303475a2c7ad5858efb99c90eae5ec627aa6275c439957/debugpy-1.8.16-cp312-cp312-win32.whl", hash = "sha256:833a61ed446426e38b0dd8be3e9d45ae285d424f5bf6cd5b2b559c8f12305508", size = 5281271, upload-time = "2025-08-06T18:00:21.281Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e0/bc62e2dc141de53bd03e2c7cb9d7011de2e65e8bdcdaa26703e4d28656ba/debugpy-1.8.16-cp312-cp312-win_amd64.whl", hash = "sha256:75f204684581e9ef3dc2f67687c3c8c183fde2d6675ab131d94084baf8084121", size = 5323149, upload-time = "2025-08-06T18:00:23.033Z" }, + { url = "https://files.pythonhosted.org/packages/62/66/607ab45cc79e60624df386e233ab64a6d8d39ea02e7f80e19c1d451345bb/debugpy-1.8.16-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:85df3adb1de5258dca910ae0bb185e48c98801ec15018a263a92bb06be1c8787", size = 2496157, upload-time = "2025-08-06T18:00:24.361Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a0/c95baae08a75bceabb79868d663a0736655e427ab9c81fb848da29edaeac/debugpy-1.8.16-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bee89e948bc236a5c43c4214ac62d28b29388453f5fd328d739035e205365f0b", size = 4222491, upload-time = "2025-08-06T18:00:25.806Z" }, + { url = "https://files.pythonhosted.org/packages/5b/2f/1c8db6ddd8a257c3cd2c46413b267f1d5fa3df910401c899513ce30392d6/debugpy-1.8.16-cp313-cp313-win32.whl", hash = "sha256:cf358066650439847ec5ff3dae1da98b5461ea5da0173d93d5e10f477c94609a", size = 5281126, upload-time = "2025-08-06T18:00:27.207Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ba/c3e154ab307366d6c5a9c1b68de04914e2ce7fa2f50d578311d8cc5074b2/debugpy-1.8.16-cp313-cp313-win_amd64.whl", hash = "sha256:b5aea1083f6f50023e8509399d7dc6535a351cc9f2e8827d1e093175e4d9fa4c", size = 5323094, upload-time = "2025-08-06T18:00:29.03Z" }, + { url = "https://files.pythonhosted.org/packages/52/57/ecc9ae29fa5b2d90107cd1d9bf8ed19aacb74b2264d986ae9d44fe9bdf87/debugpy-1.8.16-py2.py3-none-any.whl", hash = "sha256:19c9521962475b87da6f673514f7fd610328757ec993bf7ec0d8c96f9a325f9e", size = 5287700, upload-time = "2025-08-06T18:00:42.333Z" }, ] [[package]] @@ -635,7 +635,7 @@ llm = [ [[package]] name = "fhlmi" -version = "0.30.0" +version = "0.31.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "coredis" }, @@ -646,9 +646,9 @@ dependencies = [ { name = "tiktoken" }, { name = "typing-extensions", marker = "python_full_version < '3.12'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7f/a5/6fae68fa2b7bce5271c67b526ccf46740609f5e34250287ee9427ab9dd12/fhlmi-0.30.0.tar.gz", hash = "sha256:2bba2e39a93b0d222896b141668377d54659adb675cc56a42f2af0a6c67abae6", size = 225681, upload-time = "2025-07-09T19:39:51.985Z" } +sdist = { url = "https://files.pythonhosted.org/packages/07/5b/5744a7862717ea594a8acff6430531d01e2dec8d54e184b28c8b6cbf3f78/fhlmi-0.31.0.tar.gz", hash = "sha256:db9c63e16f1c897061f1902449cf46b674d2823d9a4b62439882adc36739b1f1", size = 225744, upload-time = "2025-08-08T20:44:49.111Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0d/bf/3914ddc0fd98e9a55c835d3e801491ebbd244b59f95670e95727d0b4fd56/fhlmi-0.30.0-py3-none-any.whl", hash = "sha256:13303bc06f88cfff92645309128e5ea7a7d2946353f48b30c864ac6f29882bbe", size = 39417, upload-time = "2025-07-09T19:39:51.153Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2e/20fcfbe56f0e6bd825d1b71b40ff2925b8f371de55b941792bbd2d4652d5/fhlmi-0.31.0-py3-none-any.whl", hash = "sha256:6e1e8faec6fe8a1595915f34b81a31c03f4e93e1fa339dbd5e15dd07168f4d8f", size = 39539, upload-time = "2025-08-08T20:44:48.229Z" }, ] [[package]] @@ -850,17 +850,17 @@ wheels = [ [[package]] name = "hf-xet" -version = "1.1.5" +version = "1.1.7" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ed/d4/7685999e85945ed0d7f0762b686ae7015035390de1161dcea9d5276c134c/hf_xet-1.1.5.tar.gz", hash = "sha256:69ebbcfd9ec44fdc2af73441619eeb06b94ee34511bbcf57cd423820090f5694", size = 495969, upload-time = "2025-06-20T21:48:38.007Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/0a/a0f56735940fde6dd627602fec9ab3bad23f66a272397560abd65aba416e/hf_xet-1.1.7.tar.gz", hash = "sha256:20cec8db4561338824a3b5f8c19774055b04a8df7fff0cb1ff2cb1a0c1607b80", size = 477719, upload-time = "2025-08-06T00:30:55.741Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/00/89/a1119eebe2836cb25758e7661d6410d3eae982e2b5e974bcc4d250be9012/hf_xet-1.1.5-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:f52c2fa3635b8c37c7764d8796dfa72706cc4eded19d638331161e82b0792e23", size = 2687929, upload-time = "2025-06-20T21:48:32.284Z" }, - { url = "https://files.pythonhosted.org/packages/de/5f/2c78e28f309396e71ec8e4e9304a6483dcbc36172b5cea8f291994163425/hf_xet-1.1.5-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:9fa6e3ee5d61912c4a113e0708eaaef987047616465ac7aa30f7121a48fc1af8", size = 2556338, upload-time = "2025-06-20T21:48:30.079Z" }, - { url = "https://files.pythonhosted.org/packages/6d/2f/6cad7b5fe86b7652579346cb7f85156c11761df26435651cbba89376cd2c/hf_xet-1.1.5-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc874b5c843e642f45fd85cda1ce599e123308ad2901ead23d3510a47ff506d1", size = 3102894, upload-time = "2025-06-20T21:48:28.114Z" }, - { url = "https://files.pythonhosted.org/packages/d0/54/0fcf2b619720a26fbb6cc941e89f2472a522cd963a776c089b189559447f/hf_xet-1.1.5-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dbba1660e5d810bd0ea77c511a99e9242d920790d0e63c0e4673ed36c4022d18", size = 3002134, upload-time = "2025-06-20T21:48:25.906Z" }, - { url = "https://files.pythonhosted.org/packages/f3/92/1d351ac6cef7c4ba8c85744d37ffbfac2d53d0a6c04d2cabeba614640a78/hf_xet-1.1.5-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ab34c4c3104133c495785d5d8bba3b1efc99de52c02e759cf711a91fd39d3a14", size = 3171009, upload-time = "2025-06-20T21:48:33.987Z" }, - { url = "https://files.pythonhosted.org/packages/c9/65/4b2ddb0e3e983f2508528eb4501288ae2f84963586fbdfae596836d5e57a/hf_xet-1.1.5-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:83088ecea236d5113de478acb2339f92c95b4fb0462acaa30621fac02f5a534a", size = 3279245, upload-time = "2025-06-20T21:48:36.051Z" }, - { url = "https://files.pythonhosted.org/packages/f0/55/ef77a85ee443ae05a9e9cba1c9f0dd9241eb42da2aeba1dc50f51154c81a/hf_xet-1.1.5-cp37-abi3-win_amd64.whl", hash = "sha256:73e167d9807d166596b4b2f0b585c6d5bd84a26dea32843665a8b58f6edba245", size = 2738931, upload-time = "2025-06-20T21:48:39.482Z" }, + { url = "https://files.pythonhosted.org/packages/b1/7c/8d7803995caf14e7d19a392a486a040f923e2cfeff824e9b800b92072f76/hf_xet-1.1.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:60dae4b44d520819e54e216a2505685248ec0adbdb2dd4848b17aa85a0375cde", size = 2761743, upload-time = "2025-08-06T00:30:50.634Z" }, + { url = "https://files.pythonhosted.org/packages/51/a3/fa5897099454aa287022a34a30e68dbff0e617760f774f8bd1db17f06bd4/hf_xet-1.1.7-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:b109f4c11e01c057fc82004c9e51e6cdfe2cb230637644ade40c599739067b2e", size = 2624331, upload-time = "2025-08-06T00:30:49.212Z" }, + { url = "https://files.pythonhosted.org/packages/86/50/2446a132267e60b8a48b2e5835d6e24fd988000d0f5b9b15ebd6d64ef769/hf_xet-1.1.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6efaaf1a5a9fc3a501d3e71e88a6bfebc69ee3a716d0e713a931c8b8d920038f", size = 3183844, upload-time = "2025-08-06T00:30:47.582Z" }, + { url = "https://files.pythonhosted.org/packages/20/8f/ccc670616bb9beee867c6bb7139f7eab2b1370fe426503c25f5cbb27b148/hf_xet-1.1.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:751571540f9c1fbad9afcf222a5fb96daf2384bf821317b8bfb0c59d86078513", size = 3074209, upload-time = "2025-08-06T00:30:45.509Z" }, + { url = "https://files.pythonhosted.org/packages/21/0a/4c30e1eb77205565b854f5e4a82cf1f056214e4dc87f2918ebf83d47ae14/hf_xet-1.1.7-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:18b61bbae92d56ae731b92087c44efcac216071182c603fc535f8e29ec4b09b8", size = 3239602, upload-time = "2025-08-06T00:30:52.41Z" }, + { url = "https://files.pythonhosted.org/packages/f5/1e/fc7e9baf14152662ef0b35fa52a6e889f770a7ed14ac239de3c829ecb47e/hf_xet-1.1.7-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:713f2bff61b252f8523739969f247aa354ad8e6d869b8281e174e2ea1bb8d604", size = 3348184, upload-time = "2025-08-06T00:30:54.105Z" }, + { url = "https://files.pythonhosted.org/packages/a3/73/e354eae84ceff117ec3560141224724794828927fcc013c5b449bf0b8745/hf_xet-1.1.7-cp37-abi3-win_amd64.whl", hash = "sha256:2e356da7d284479ae0f1dea3cf5a2f74fdf925d6dca84ac4341930d892c7cb34", size = 2820008, upload-time = "2025-08-06T00:30:57.056Z" }, ] [[package]] @@ -916,7 +916,7 @@ http2 = [ [[package]] name = "huggingface-hub" -version = "0.34.3" +version = "0.34.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, @@ -928,9 +928,9 @@ dependencies = [ { name = "tqdm" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/91/b4/e6b465eca5386b52cf23cb6df8644ad318a6b0e12b4b96a7e0be09cbfbcc/huggingface_hub-0.34.3.tar.gz", hash = "sha256:d58130fd5aa7408480681475491c0abd7e835442082fbc3ef4d45b6c39f83853", size = 456800, upload-time = "2025-07-29T08:38:53.885Z" } +sdist = { url = "https://files.pythonhosted.org/packages/45/c9/bdbe19339f76d12985bc03572f330a01a93c04dffecaaea3061bdd7fb892/huggingface_hub-0.34.4.tar.gz", hash = "sha256:a4228daa6fb001be3f4f4bdaf9a0db00e1739235702848df00885c9b5742c85c", size = 459768, upload-time = "2025-08-08T09:14:52.365Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/59/a8/4677014e771ed1591a87b63a2392ce6923baf807193deef302dcfde17542/huggingface_hub-0.34.3-py3-none-any.whl", hash = "sha256:5444550099e2d86e68b2898b09e85878fbd788fc2957b506c6a79ce060e39492", size = 558847, upload-time = "2025-07-29T08:38:51.904Z" }, + { url = "https://files.pythonhosted.org/packages/39/7b/bb06b061991107cd8783f300adff3e7b7f284e330fd82f507f2a1417b11d/huggingface_hub-0.34.4-py3-none-any.whl", hash = "sha256:9b365d781739c93ff90c359844221beef048403f1bc1f1c123c191257c3c890a", size = 561452, upload-time = "2025-08-08T09:14:50.159Z" }, ] [[package]] @@ -1275,7 +1275,7 @@ wheels = [ [[package]] name = "ldp" -version = "0.30.0" +version = "0.31.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiofiles" }, @@ -1292,23 +1292,23 @@ dependencies = [ { name = "typing-extensions", marker = "python_full_version < '3.12'" }, { name = "usearch" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1f/f5/634068f11aff3b509697ec78cce36034d36d8473c0973ec04c840f973d43/ldp-0.30.0.tar.gz", hash = "sha256:ec732be6da37b8a28962e6c27f087d318a1efe120a3809879c0503f13fc21028", size = 4480675, upload-time = "2025-07-09T19:39:47.421Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/63/3dfa4448a2a72d8faea02c9dd5c2593c0224d4bbef9c8c4b85c052484920/ldp-0.31.0.tar.gz", hash = "sha256:780cc0b3aaf73732f0a927ba68987fbdc257df6f7553bb3454fe1b05f2ad5fd3", size = 4458001, upload-time = "2025-08-08T20:44:44.9Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ed/50/257875f5e4178f779943b1aa6934d5880e6796c2a4743f02b70167418e9e/ldp-0.30.0-py3-none-any.whl", hash = "sha256:9b2faf94570e9e6a5d8db1dfceff0aeb0accc9ea3139d5f824b161eedc6c85cc", size = 139653, upload-time = "2025-07-09T19:39:46.336Z" }, + { url = "https://files.pythonhosted.org/packages/b0/0f/c19900ea7c15acefba2252db33b60b15969d98e0e117ed8e9db2342001f5/ldp-0.31.0-py3-none-any.whl", hash = "sha256:d52c9b3872a24dadb7dbc3a1b97fdd9f437bdcdab0d59e57c2208e0d63778741", size = 139986, upload-time = "2025-08-08T20:44:43.355Z" }, ] [[package]] name = "limits" -version = "5.4.0" +version = "5.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "deprecated" }, { name = "packaging" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/79/32/95d4908a730213a5db40462b0e20c1b93a688b33eade8c4981bbf0ca08de/limits-5.4.0.tar.gz", hash = "sha256:27ebf55118e3c9045f0dbc476f4559b26d42f4b043db670afb8963f36cf07fd9", size = 95423, upload-time = "2025-06-16T16:18:53.03Z" } +sdist = { url = "https://files.pythonhosted.org/packages/76/17/7a2e9378c8b8bd4efe3573fd18d2793ad2a37051af5ccce94550a4e5d62d/limits-5.5.0.tar.gz", hash = "sha256:ee269fedb078a904608b264424d9ef4ab10555acc8d090b6fc1db70e913327ea", size = 95514, upload-time = "2025-08-05T18:23:54.771Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9f/aa/b84c06700735332017bc095182756ee9fb71db650d89b50b6d63549c6fcd/limits-5.4.0-py3-none-any.whl", hash = "sha256:1afb03c0624cf004085532aa9524953f2565cf8b0a914e48dda89d172c13ceb7", size = 60950, upload-time = "2025-06-16T16:18:51.593Z" }, + { url = "https://files.pythonhosted.org/packages/bf/68/ee314018c28da75ece5a639898b4745bd0687c0487fc465811f0c4b9cd44/limits-5.5.0-py3-none-any.whl", hash = "sha256:57217d01ffa5114f7e233d1f5e5bdc6fe60c9b24ade387bf4d5e83c5cf929bae", size = 60948, upload-time = "2025-08-05T18:23:53.335Z" }, ] [[package]] @@ -1742,81 +1742,77 @@ wheels = [ [[package]] name = "nvidia-cublas-cu12" -version = "12.6.4.1" +version = "12.8.4.1" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/eb/ff4b8c503fa1f1796679dce648854d58751982426e4e4b37d6fce49d259c/nvidia_cublas_cu12-12.6.4.1-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:08ed2686e9875d01b58e3cb379c6896df8e76c75e0d4a7f7dace3d7b6d9ef8eb", size = 393138322, upload-time = "2024-11-20T17:40:25.65Z" }, + { url = "https://files.pythonhosted.org/packages/dc/61/e24b560ab2e2eaeb3c839129175fb330dfcfc29e5203196e5541a4c44682/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8ac4e771d5a348c551b2a426eda6193c19aa630236b418086020df5ba9667142", size = 594346921, upload-time = "2025-03-07T01:44:31.254Z" }, ] [[package]] name = "nvidia-cuda-cupti-cu12" -version = "12.6.80" +version = "12.8.90" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/49/60/7b6497946d74bcf1de852a21824d63baad12cd417db4195fc1bfe59db953/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6768bad6cab4f19e8292125e5f1ac8aa7d1718704012a0e3272a6f61c4bce132", size = 8917980, upload-time = "2024-11-20T17:36:04.019Z" }, - { url = "https://files.pythonhosted.org/packages/a5/24/120ee57b218d9952c379d1e026c4479c9ece9997a4fb46303611ee48f038/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a3eff6cdfcc6a4c35db968a06fcadb061cbc7d6dde548609a941ff8701b98b73", size = 8917972, upload-time = "2024-10-01T16:58:06.036Z" }, + { url = "https://files.pythonhosted.org/packages/f8/02/2adcaa145158bf1a8295d83591d22e4103dbfd821bcaf6f3f53151ca4ffa/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea0cb07ebda26bb9b29ba82cda34849e73c166c18162d3913575b0c9db9a6182", size = 10248621, upload-time = "2025-03-07T01:40:21.213Z" }, ] [[package]] name = "nvidia-cuda-nvrtc-cu12" -version = "12.6.77" +version = "12.8.93" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/75/2e/46030320b5a80661e88039f59060d1790298b4718944a65a7f2aeda3d9e9/nvidia_cuda_nvrtc_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:35b0cc6ee3a9636d5409133e79273ce1f3fd087abb0532d2d2e8fff1fe9efc53", size = 23650380, upload-time = "2024-10-01T17:00:14.643Z" }, + { url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" }, ] [[package]] name = "nvidia-cuda-runtime-cu12" -version = "12.6.77" +version = "12.8.90" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/23/e717c5ac26d26cf39a27fbc076240fad2e3b817e5889d671b67f4f9f49c5/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ba3b56a4f896141e25e19ab287cd71e52a6a0f4b29d0d31609f60e3b4d5219b7", size = 897690, upload-time = "2024-11-20T17:35:30.697Z" }, - { url = "https://files.pythonhosted.org/packages/f0/62/65c05e161eeddbafeca24dc461f47de550d9fa8a7e04eb213e32b55cfd99/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a84d15d5e1da416dd4774cb42edf5e954a3e60cc945698dc1d5be02321c44dc8", size = 897678, upload-time = "2024-10-01T16:57:33.821Z" }, + { url = "https://files.pythonhosted.org/packages/0d/9b/a997b638fcd068ad6e4d53b8551a7d30fe8b404d6f1804abf1df69838932/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adade8dcbd0edf427b7204d480d6066d33902cab2a4707dcfc48a2d0fd44ab90", size = 954765, upload-time = "2025-03-07T01:40:01.615Z" }, ] [[package]] name = "nvidia-cudnn-cu12" -version = "9.5.1.17" +version = "9.10.2.21" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "nvidia-cublas-cu12" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/78/4535c9c7f859a64781e43c969a3a7e84c54634e319a996d43ef32ce46f83/nvidia_cudnn_cu12-9.5.1.17-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:30ac3869f6db17d170e0e556dd6cc5eee02647abc31ca856634d5a40f82c15b2", size = 570988386, upload-time = "2024-10-25T19:54:26.39Z" }, + { url = "https://files.pythonhosted.org/packages/ba/51/e123d997aa098c61d029f76663dedbfb9bc8dcf8c60cbd6adbe42f76d049/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:949452be657fa16687d0930933f032835951ef0892b37d2d53824d1a84dc97a8", size = 706758467, upload-time = "2025-06-06T21:54:08.597Z" }, ] [[package]] name = "nvidia-cufft-cu12" -version = "11.3.0.4" +version = "11.3.3.83" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "nvidia-nvjitlink-cu12" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/8f/16/73727675941ab8e6ffd86ca3a4b7b47065edcca7a997920b831f8147c99d/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ccba62eb9cef5559abd5e0d54ceed2d9934030f51163df018532142a8ec533e5", size = 200221632, upload-time = "2024-11-20T17:41:32.357Z" }, - { url = "https://files.pythonhosted.org/packages/60/de/99ec247a07ea40c969d904fc14f3a356b3e2a704121675b75c366b694ee1/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.whl", hash = "sha256:768160ac89f6f7b459bee747e8d175dbf53619cfe74b2a5636264163138013ca", size = 200221622, upload-time = "2024-10-01T17:03:58.79Z" }, + { url = "https://files.pythonhosted.org/packages/1f/13/ee4e00f30e676b66ae65b4f08cb5bcbb8392c03f54f2d5413ea99a5d1c80/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d2dd21ec0b88cf61b62e6b43564355e5222e4a3fb394cac0db101f2dd0d4f74", size = 193118695, upload-time = "2025-03-07T01:45:27.821Z" }, ] [[package]] name = "nvidia-cufile-cu12" -version = "1.11.1.6" +version = "1.13.1.3" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b2/66/cc9876340ac68ae71b15c743ddb13f8b30d5244af344ec8322b449e35426/nvidia_cufile_cu12-1.11.1.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc23469d1c7e52ce6c1d55253273d32c565dd22068647f3aa59b3c6b005bf159", size = 1142103, upload-time = "2024-11-20T17:42:11.83Z" }, + { url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" }, ] [[package]] name = "nvidia-curand-cu12" -version = "10.3.7.77" +version = "10.3.9.90" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/73/1b/44a01c4e70933637c93e6e1a8063d1e998b50213a6b65ac5a9169c47e98e/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a42cd1344297f70b9e39a1e4f467a4e1c10f1da54ff7a85c12197f6c652c8bdf", size = 56279010, upload-time = "2024-11-20T17:42:50.958Z" }, - { url = "https://files.pythonhosted.org/packages/4a/aa/2c7ff0b5ee02eaef890c0ce7d4f74bc30901871c5e45dee1ae6d0083cd80/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:99f1a32f1ac2bd134897fc7a203f779303261268a65762a623bf30cc9fe79117", size = 56279000, upload-time = "2024-10-01T17:04:45.274Z" }, + { url = "https://files.pythonhosted.org/packages/fb/aa/6584b56dc84ebe9cf93226a5cde4d99080c8e90ab40f0c27bda7a0f29aa1/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:b32331d4f4df5d6eefa0554c565b626c7216f87a06a4f56fab27c3b68a830ec9", size = 63619976, upload-time = "2025-03-07T01:46:23.323Z" }, ] [[package]] name = "nvidia-cusolver-cu12" -version = "11.7.1.2" +version = "11.7.3.90" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "nvidia-cublas-cu12" }, @@ -1824,58 +1820,55 @@ dependencies = [ { name = "nvidia-nvjitlink-cu12" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/f0/6e/c2cf12c9ff8b872e92b4a5740701e51ff17689c4d726fca91875b07f655d/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e9e49843a7707e42022babb9bcfa33c29857a93b88020c4e4434656a655b698c", size = 158229790, upload-time = "2024-11-20T17:43:43.211Z" }, - { url = "https://files.pythonhosted.org/packages/9f/81/baba53585da791d043c10084cf9553e074548408e04ae884cfe9193bd484/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6cf28f17f64107a0c4d7802be5ff5537b2130bfc112f25d5a30df227058ca0e6", size = 158229780, upload-time = "2024-10-01T17:05:39.875Z" }, + { url = "https://files.pythonhosted.org/packages/85/48/9a13d2975803e8cf2777d5ed57b87a0b6ca2cc795f9a4f59796a910bfb80/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4376c11ad263152bd50ea295c05370360776f8c3427b30991df774f9fb26c450", size = 267506905, upload-time = "2025-03-07T01:47:16.273Z" }, ] [[package]] name = "nvidia-cusparse-cu12" -version = "12.5.4.2" +version = "12.5.8.93" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "nvidia-nvjitlink-cu12" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/06/1e/b8b7c2f4099a37b96af5c9bb158632ea9e5d9d27d7391d7eb8fc45236674/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7556d9eca156e18184b94947ade0fba5bb47d69cec46bf8660fd2c71a4b48b73", size = 216561367, upload-time = "2024-11-20T17:44:54.824Z" }, - { url = "https://files.pythonhosted.org/packages/43/ac/64c4316ba163e8217a99680c7605f779accffc6a4bcd0c778c12948d3707/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:23749a6571191a215cb74d1cdbff4a86e7b19f1200c071b3fcf844a5bea23a2f", size = 216561357, upload-time = "2024-10-01T17:06:29.861Z" }, + { url = "https://files.pythonhosted.org/packages/c2/f5/e1854cb2f2bcd4280c44736c93550cc300ff4b8c95ebe370d0aa7d2b473d/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ec05d76bbbd8b61b06a80e1eaf8cf4959c3d4ce8e711b65ebd0443bb0ebb13b", size = 288216466, upload-time = "2025-03-07T01:48:13.779Z" }, ] [[package]] name = "nvidia-cusparselt-cu12" -version = "0.6.3" +version = "0.7.1" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/9a/72ef35b399b0e183bc2e8f6f558036922d453c4d8237dab26c666a04244b/nvidia_cusparselt_cu12-0.6.3-py3-none-manylinux2014_x86_64.whl", hash = "sha256:e5c8a26c36445dd2e6812f1177978a24e2d37cacce7e090f297a688d1ec44f46", size = 156785796, upload-time = "2024-10-15T21:29:17.709Z" }, + { url = "https://files.pythonhosted.org/packages/56/79/12978b96bd44274fe38b5dde5cfb660b1d114f70a65ef962bcbbed99b549/nvidia_cusparselt_cu12-0.7.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:f1bb701d6b930d5a7cea44c19ceb973311500847f81b634d802b7b539dc55623", size = 287193691, upload-time = "2025-02-26T00:15:44.104Z" }, ] [[package]] name = "nvidia-nccl-cu12" -version = "2.26.2" +version = "2.27.3" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/67/ca/f42388aed0fddd64ade7493dbba36e1f534d4e6fdbdd355c6a90030ae028/nvidia_nccl_cu12-2.26.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:694cf3879a206553cc9d7dbda76b13efaf610fdb70a50cba303de1b0d1530ac6", size = 201319755, upload-time = "2025-03-13T00:29:55.296Z" }, + { url = "https://files.pythonhosted.org/packages/5c/5b/4e4fff7bad39adf89f735f2bc87248c81db71205b62bcc0d5ca5b606b3c3/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adf27ccf4238253e0b826bce3ff5fa532d65fc42322c8bfdfaf28024c0fbe039", size = 322364134, upload-time = "2025-06-03T21:58:04.013Z" }, ] [[package]] name = "nvidia-nvjitlink-cu12" -version = "12.6.85" +version = "12.8.93" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/d7/c5383e47c7e9bf1c99d5bd2a8c935af2b6d705ad831a7ec5c97db4d82f4f/nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:eedc36df9e88b682efe4309aa16b5b4e78c2407eac59e8c10a6a47535164369a", size = 19744971, upload-time = "2024-11-20T17:46:53.366Z" }, + { url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836, upload-time = "2025-03-07T01:49:55.661Z" }, ] [[package]] name = "nvidia-nvtx-cu12" -version = "12.6.77" +version = "12.8.90" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/56/9a/fff8376f8e3d084cd1530e1ef7b879bb7d6d265620c95c1b322725c694f4/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b90bed3df379fa79afbd21be8e04a0314336b8ae16768b58f2d34cb1d04cd7d2", size = 89276, upload-time = "2024-11-20T17:38:27.621Z" }, - { url = "https://files.pythonhosted.org/packages/9e/4e/0d0c945463719429b7bd21dece907ad0bde437a2ff12b9b12fee94722ab0/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6574241a3ec5fdc9334353ab8c479fe75841dbe8f4532a8fc97ce63503330ba1", size = 89265, upload-time = "2024-10-01T17:00:38.172Z" }, + { url = "https://files.pythonhosted.org/packages/a2/eb/86626c1bbc2edb86323022371c39aa48df6fd8b0a1647bc274577f72e90b/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b17e2001cc0d751a5bc2c6ec6d26ad95913324a4adb86788c944f8ce9ba441f", size = 89954, upload-time = "2025-03-07T01:42:44.131Z" }, ] [[package]] name = "openai" -version = "1.99.0" +version = "1.99.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, @@ -1887,9 +1880,9 @@ dependencies = [ { name = "tqdm" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c5/72/3f49a3d0452019febd70fcf258743e01dc1ca43a95cc97a4b5b773d2d0a5/openai-1.99.0.tar.gz", hash = "sha256:7b985693da4dc9783394b785212bb67a65352cb6b867b1756b0e5e8321b4aba9", size = 497020, upload-time = "2025-08-05T17:02:02.834Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/4a/16b1b6ee8a62cbfb59057f97f6d9b7bb5ce529047d80bc0b406f65dfdc48/openai-1.99.5.tar.gz", hash = "sha256:aa97ac3326cac7949c5e4ac0274c454c1d19c939760107ae0d3948fc26a924ca", size = 505144, upload-time = "2025-08-08T16:44:46.865Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/18/f3fc5b111d0bc51111beb2b049571974df952a5f7f466126823124b77368/openai-1.99.0-py3-none-any.whl", hash = "sha256:9d762c299eba9b0b3a55c3905e8457520e73a7601a258b763aa046475fac2b98", size = 767800, upload-time = "2025-08-05T17:02:00.274Z" }, + { url = "https://files.pythonhosted.org/packages/e6/f2/2472ae020f5156a994710bf926a76915c71bc7b5debf7b81a11506ec8414/openai-1.99.5-py3-none-any.whl", hash = "sha256:4e870f9501b7c36132e2be13313ce3c4d6915a837e7a299c483aab6a6d4412e9", size = 786246, upload-time = "2025-08-08T16:44:45.062Z" }, ] [[package]] @@ -1992,7 +1985,8 @@ dev = [ { name = "litellm" }, { name = "mypy" }, { name = "paper-qa-pymupdf" }, - { name = "paper-qa-pypdf" }, + { name = "paper-qa-pypdf", extra = ["media"] }, + { name = "pillow" }, { name = "pre-commit" }, { name = "pydantic" }, { name = "pylint-pydantic" }, @@ -2015,6 +2009,9 @@ dev = [ { name = "types-setuptools" }, { name = "vcrpy" }, ] +image = [ + { name = "pillow" }, +] ldp = [ { name = "ldp" }, ] @@ -2030,6 +2027,9 @@ pymupdf = [ pypdf = [ { name = "paper-qa-pypdf" }, ] +pypdf-media = [ + { name = "paper-qa-pypdf", extra = ["media"] }, +] qdrant = [ { name = "qdrant-client" }, ] @@ -2064,11 +2064,13 @@ requires-dist = [ { name = "mypy", marker = "extra == 'dev'", specifier = ">=1.8" }, { name = "numpy" }, { name = "openreview-py", marker = "extra == 'openreview'" }, - { name = "paper-qa", extras = ["ldp", "local", "pymupdf", "pypdf", "qdrant", "typing", "zotero"], marker = "extra == 'dev'", editable = "." }, + { name = "paper-qa", extras = ["image", "ldp", "local", "pymupdf", "pypdf-media", "qdrant", "typing", "zotero"], marker = "extra == 'dev'", editable = "." }, { name = "paper-qa-pymupdf", marker = "extra == 'pymupdf'", editable = "packages/paper-qa-pymupdf" }, { name = "paper-qa-pymupdf", marker = "extra == 'zotero'", editable = "packages/paper-qa-pymupdf" }, { name = "paper-qa-pypdf", editable = "packages/paper-qa-pypdf" }, { name = "paper-qa-pypdf", marker = "extra == 'pypdf'", editable = "packages/paper-qa-pypdf" }, + { name = "paper-qa-pypdf", extras = ["media"], marker = "extra == 'pypdf-media'", editable = "packages/paper-qa-pypdf" }, + { name = "pillow", marker = "extra == 'image'", specifier = ">=10.3.0" }, { name = "pre-commit", marker = "extra == 'dev'", specifier = ">=3.4" }, { name = "pybtex" }, { name = "pydantic", specifier = "~=2.0,>=2.10.1" }, @@ -2099,7 +2101,7 @@ requires-dist = [ { name = "types-setuptools", marker = "extra == 'typing'" }, { name = "vcrpy", marker = "extra == 'dev'", specifier = ">=6" }, ] -provides-extras = ["dev", "ldp", "local", "openreview", "pymupdf", "pypdf", "qdrant", "typing", "zotero"] +provides-extras = ["dev", "image", "ldp", "local", "openreview", "pymupdf", "pypdf", "pypdf-media", "qdrant", "typing", "zotero"] [package.metadata.requires-dev] dev = [{ name = "paper-qa", extras = ["dev"], editable = "." }] @@ -2126,11 +2128,18 @@ dependencies = [ { name = "pypdf" }, ] +[package.optional-dependencies] +media = [ + { name = "pypdfium2" }, +] + [package.metadata] requires-dist = [ { name = "paper-qa", editable = "." }, { name = "pypdf", specifier = ">=3" }, + { name = "pypdfium2", marker = "extra == 'media'", specifier = ">=4.22.0" }, ] +provides-extras = ["media"] [[package]] name = "parso" @@ -2682,6 +2691,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/48/d9/6cff57c80a6963e7dd183bf09e9f21604a77716644b1e580e97b259f7612/pypdf-5.9.0-py3-none-any.whl", hash = "sha256:be10a4c54202f46d9daceaa8788be07aa8cd5ea8c25c529c50dd509206382c35", size = 313193, upload-time = "2025-07-27T14:04:50.53Z" }, ] +[[package]] +name = "pypdfium2" +version = "4.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/14/838b3ba247a0ba92e4df5d23f2bea9478edcfd72b78a39d6ca36ccd84ad2/pypdfium2-4.30.0.tar.gz", hash = "sha256:48b5b7e5566665bc1015b9d69c1ebabe21f6aee468b509531c3c8318eeee2e16", size = 140239, upload-time = "2024-05-09T18:33:17.552Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/9a/c8ff5cc352c1b60b0b97642ae734f51edbab6e28b45b4fcdfe5306ee3c83/pypdfium2-4.30.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:b33ceded0b6ff5b2b93bc1fe0ad4b71aa6b7e7bd5875f1ca0cdfb6ba6ac01aab", size = 2837254, upload-time = "2024-05-09T18:32:48.653Z" }, + { url = "https://files.pythonhosted.org/packages/21/8b/27d4d5409f3c76b985f4ee4afe147b606594411e15ac4dc1c3363c9a9810/pypdfium2-4.30.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4e55689f4b06e2d2406203e771f78789bd4f190731b5d57383d05cf611d829de", size = 2707624, upload-time = "2024-05-09T18:32:51.458Z" }, + { url = "https://files.pythonhosted.org/packages/11/63/28a73ca17c24b41a205d658e177d68e198d7dde65a8c99c821d231b6ee3d/pypdfium2-4.30.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e6e50f5ce7f65a40a33d7c9edc39f23140c57e37144c2d6d9e9262a2a854854", size = 2793126, upload-time = "2024-05-09T18:32:53.581Z" }, + { url = "https://files.pythonhosted.org/packages/d1/96/53b3ebf0955edbd02ac6da16a818ecc65c939e98fdeb4e0958362bd385c8/pypdfium2-4.30.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3d0dd3ecaffd0b6dbda3da663220e705cb563918249bda26058c6036752ba3a2", size = 2591077, upload-time = "2024-05-09T18:32:55.99Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ee/0394e56e7cab8b5b21f744d988400948ef71a9a892cbeb0b200d324ab2c7/pypdfium2-4.30.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc3bf29b0db8c76cdfaac1ec1cde8edf211a7de7390fbf8934ad2aa9b4d6dfad", size = 2864431, upload-time = "2024-05-09T18:32:57.911Z" }, + { url = "https://files.pythonhosted.org/packages/65/cd/3f1edf20a0ef4a212a5e20a5900e64942c5a374473671ac0780eaa08ea80/pypdfium2-4.30.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1f78d2189e0ddf9ac2b7a9b9bd4f0c66f54d1389ff6c17e9fd9dc034d06eb3f", size = 2812008, upload-time = "2024-05-09T18:32:59.886Z" }, + { url = "https://files.pythonhosted.org/packages/c8/91/2d517db61845698f41a2a974de90762e50faeb529201c6b3574935969045/pypdfium2-4.30.0-py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:5eda3641a2da7a7a0b2f4dbd71d706401a656fea521b6b6faa0675b15d31a163", size = 6181543, upload-time = "2024-05-09T18:33:02.597Z" }, + { url = "https://files.pythonhosted.org/packages/ba/c4/ed1315143a7a84b2c7616569dfb472473968d628f17c231c39e29ae9d780/pypdfium2-4.30.0-py3-none-musllinux_1_1_i686.whl", hash = "sha256:0dfa61421b5eb68e1188b0b2231e7ba35735aef2d867d86e48ee6cab6975195e", size = 6175911, upload-time = "2024-05-09T18:33:05.376Z" }, + { url = "https://files.pythonhosted.org/packages/7a/c4/9e62d03f414e0e3051c56d5943c3bf42aa9608ede4e19dc96438364e9e03/pypdfium2-4.30.0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:f33bd79e7a09d5f7acca3b0b69ff6c8a488869a7fab48fdf400fec6e20b9c8be", size = 6267430, upload-time = "2024-05-09T18:33:08.067Z" }, + { url = "https://files.pythonhosted.org/packages/90/47/eda4904f715fb98561e34012826e883816945934a851745570521ec89520/pypdfium2-4.30.0-py3-none-win32.whl", hash = "sha256:ee2410f15d576d976c2ab2558c93d392a25fb9f6635e8dd0a8a3a5241b275e0e", size = 2775951, upload-time = "2024-05-09T18:33:10.567Z" }, + { url = "https://files.pythonhosted.org/packages/25/bd/56d9ec6b9f0fc4e0d95288759f3179f0fcd34b1a1526b75673d2f6d5196f/pypdfium2-4.30.0-py3-none-win_amd64.whl", hash = "sha256:90dbb2ac07be53219f56be09961eb95cf2473f834d01a42d901d13ccfad64b4c", size = 2892098, upload-time = "2024-05-09T18:33:13.107Z" }, + { url = "https://files.pythonhosted.org/packages/be/7a/097801205b991bc3115e8af1edb850d30aeaf0118520b016354cf5ccd3f6/pypdfium2-4.30.0-py3-none-win_arm64.whl", hash = "sha256:119b2969a6d6b1e8d55e99caaf05290294f2d0fe49c12a3f17102d01c441bd29", size = 2752118, upload-time = "2024-05-09T18:33:15.489Z" }, +] + [[package]] name = "pytest" version = "8.4.1" @@ -3088,125 +3117,132 @@ wheels = [ [[package]] name = "rpds-py" -version = "0.26.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a5/aa/4456d84bbb54adc6a916fb10c9b374f78ac840337644e4a5eda229c81275/rpds_py-0.26.0.tar.gz", hash = "sha256:20dae58a859b0906f0685642e591056f1e787f3a8b39c8e8749a45dc7d26bdb0", size = 27385, upload-time = "2025-07-01T15:57:13.958Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/09/4c/4ee8f7e512030ff79fda1df3243c88d70fc874634e2dbe5df13ba4210078/rpds_py-0.26.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9e8cb77286025bdb21be2941d64ac6ca016130bfdcd228739e8ab137eb4406ed", size = 372610, upload-time = "2025-07-01T15:53:58.844Z" }, - { url = "https://files.pythonhosted.org/packages/fa/9d/3dc16be00f14fc1f03c71b1d67c8df98263ab2710a2fbd65a6193214a527/rpds_py-0.26.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e09330b21d98adc8ccb2dbb9fc6cb434e8908d4c119aeaa772cb1caab5440a0", size = 358032, upload-time = "2025-07-01T15:53:59.985Z" }, - { url = "https://files.pythonhosted.org/packages/e7/5a/7f1bf8f045da2866324a08ae80af63e64e7bfaf83bd31f865a7b91a58601/rpds_py-0.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c9c1b92b774b2e68d11193dc39620d62fd8ab33f0a3c77ecdabe19c179cdbc1", size = 381525, upload-time = "2025-07-01T15:54:01.162Z" }, - { url = "https://files.pythonhosted.org/packages/45/8a/04479398c755a066ace10e3d158866beb600867cacae194c50ffa783abd0/rpds_py-0.26.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:824e6d3503ab990d7090768e4dfd9e840837bae057f212ff9f4f05ec6d1975e7", size = 397089, upload-time = "2025-07-01T15:54:02.319Z" }, - { url = "https://files.pythonhosted.org/packages/72/88/9203f47268db488a1b6d469d69c12201ede776bb728b9d9f29dbfd7df406/rpds_py-0.26.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8ad7fd2258228bf288f2331f0a6148ad0186b2e3643055ed0db30990e59817a6", size = 514255, upload-time = "2025-07-01T15:54:03.38Z" }, - { url = "https://files.pythonhosted.org/packages/f5/b4/01ce5d1e853ddf81fbbd4311ab1eff0b3cf162d559288d10fd127e2588b5/rpds_py-0.26.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0dc23bbb3e06ec1ea72d515fb572c1fea59695aefbffb106501138762e1e915e", size = 402283, upload-time = "2025-07-01T15:54:04.923Z" }, - { url = "https://files.pythonhosted.org/packages/34/a2/004c99936997bfc644d590a9defd9e9c93f8286568f9c16cdaf3e14429a7/rpds_py-0.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d80bf832ac7b1920ee29a426cdca335f96a2b5caa839811803e999b41ba9030d", size = 383881, upload-time = "2025-07-01T15:54:06.482Z" }, - { url = "https://files.pythonhosted.org/packages/05/1b/ef5fba4a8f81ce04c427bfd96223f92f05e6cd72291ce9d7523db3b03a6c/rpds_py-0.26.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0919f38f5542c0a87e7b4afcafab6fd2c15386632d249e9a087498571250abe3", size = 415822, upload-time = "2025-07-01T15:54:07.605Z" }, - { url = "https://files.pythonhosted.org/packages/16/80/5c54195aec456b292f7bd8aa61741c8232964063fd8a75fdde9c1e982328/rpds_py-0.26.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d422b945683e409000c888e384546dbab9009bb92f7c0b456e217988cf316107", size = 558347, upload-time = "2025-07-01T15:54:08.591Z" }, - { url = "https://files.pythonhosted.org/packages/f2/1c/1845c1b1fd6d827187c43afe1841d91678d7241cbdb5420a4c6de180a538/rpds_py-0.26.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77a7711fa562ba2da1aa757e11024ad6d93bad6ad7ede5afb9af144623e5f76a", size = 587956, upload-time = "2025-07-01T15:54:09.963Z" }, - { url = "https://files.pythonhosted.org/packages/2e/ff/9e979329dd131aa73a438c077252ddabd7df6d1a7ad7b9aacf6261f10faa/rpds_py-0.26.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:238e8c8610cb7c29460e37184f6799547f7e09e6a9bdbdab4e8edb90986a2318", size = 554363, upload-time = "2025-07-01T15:54:11.073Z" }, - { url = "https://files.pythonhosted.org/packages/00/8b/d78cfe034b71ffbe72873a136e71acc7a831a03e37771cfe59f33f6de8a2/rpds_py-0.26.0-cp311-cp311-win32.whl", hash = "sha256:893b022bfbdf26d7bedb083efeea624e8550ca6eb98bf7fea30211ce95b9201a", size = 220123, upload-time = "2025-07-01T15:54:12.382Z" }, - { url = "https://files.pythonhosted.org/packages/94/c1/3c8c94c7dd3905dbfde768381ce98778500a80db9924731d87ddcdb117e9/rpds_py-0.26.0-cp311-cp311-win_amd64.whl", hash = "sha256:87a5531de9f71aceb8af041d72fc4cab4943648d91875ed56d2e629bef6d4c03", size = 231732, upload-time = "2025-07-01T15:54:13.434Z" }, - { url = "https://files.pythonhosted.org/packages/67/93/e936fbed1b734eabf36ccb5d93c6a2e9246fbb13c1da011624b7286fae3e/rpds_py-0.26.0-cp311-cp311-win_arm64.whl", hash = "sha256:de2713f48c1ad57f89ac25b3cb7daed2156d8e822cf0eca9b96a6f990718cc41", size = 221917, upload-time = "2025-07-01T15:54:14.559Z" }, - { url = "https://files.pythonhosted.org/packages/ea/86/90eb87c6f87085868bd077c7a9938006eb1ce19ed4d06944a90d3560fce2/rpds_py-0.26.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:894514d47e012e794f1350f076c427d2347ebf82f9b958d554d12819849a369d", size = 363933, upload-time = "2025-07-01T15:54:15.734Z" }, - { url = "https://files.pythonhosted.org/packages/63/78/4469f24d34636242c924626082b9586f064ada0b5dbb1e9d096ee7a8e0c6/rpds_py-0.26.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc921b96fa95a097add244da36a1d9e4f3039160d1d30f1b35837bf108c21136", size = 350447, upload-time = "2025-07-01T15:54:16.922Z" }, - { url = "https://files.pythonhosted.org/packages/ad/91/c448ed45efdfdade82348d5e7995e15612754826ea640afc20915119734f/rpds_py-0.26.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e1157659470aa42a75448b6e943c895be8c70531c43cb78b9ba990778955582", size = 384711, upload-time = "2025-07-01T15:54:18.101Z" }, - { url = "https://files.pythonhosted.org/packages/ec/43/e5c86fef4be7f49828bdd4ecc8931f0287b1152c0bb0163049b3218740e7/rpds_py-0.26.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:521ccf56f45bb3a791182dc6b88ae5f8fa079dd705ee42138c76deb1238e554e", size = 400865, upload-time = "2025-07-01T15:54:19.295Z" }, - { url = "https://files.pythonhosted.org/packages/55/34/e00f726a4d44f22d5c5fe2e5ddd3ac3d7fd3f74a175607781fbdd06fe375/rpds_py-0.26.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9def736773fd56b305c0eef698be5192c77bfa30d55a0e5885f80126c4831a15", size = 517763, upload-time = "2025-07-01T15:54:20.858Z" }, - { url = "https://files.pythonhosted.org/packages/52/1c/52dc20c31b147af724b16104500fba13e60123ea0334beba7b40e33354b4/rpds_py-0.26.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cdad4ea3b4513b475e027be79e5a0ceac8ee1c113a1a11e5edc3c30c29f964d8", size = 406651, upload-time = "2025-07-01T15:54:22.508Z" }, - { url = "https://files.pythonhosted.org/packages/2e/77/87d7bfabfc4e821caa35481a2ff6ae0b73e6a391bb6b343db2c91c2b9844/rpds_py-0.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82b165b07f416bdccf5c84546a484cc8f15137ca38325403864bfdf2b5b72f6a", size = 386079, upload-time = "2025-07-01T15:54:23.987Z" }, - { url = "https://files.pythonhosted.org/packages/e3/d4/7f2200c2d3ee145b65b3cddc4310d51f7da6a26634f3ac87125fd789152a/rpds_py-0.26.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d04cab0a54b9dba4d278fe955a1390da3cf71f57feb78ddc7cb67cbe0bd30323", size = 421379, upload-time = "2025-07-01T15:54:25.073Z" }, - { url = "https://files.pythonhosted.org/packages/ae/13/9fdd428b9c820869924ab62236b8688b122baa22d23efdd1c566938a39ba/rpds_py-0.26.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:79061ba1a11b6a12743a2b0f72a46aa2758613d454aa6ba4f5a265cc48850158", size = 562033, upload-time = "2025-07-01T15:54:26.225Z" }, - { url = "https://files.pythonhosted.org/packages/f3/e1/b69686c3bcbe775abac3a4c1c30a164a2076d28df7926041f6c0eb5e8d28/rpds_py-0.26.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f405c93675d8d4c5ac87364bb38d06c988e11028a64b52a47158a355079661f3", size = 591639, upload-time = "2025-07-01T15:54:27.424Z" }, - { url = "https://files.pythonhosted.org/packages/5c/c9/1e3d8c8863c84a90197ac577bbc3d796a92502124c27092413426f670990/rpds_py-0.26.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dafd4c44b74aa4bed4b250f1aed165b8ef5de743bcca3b88fc9619b6087093d2", size = 557105, upload-time = "2025-07-01T15:54:29.93Z" }, - { url = "https://files.pythonhosted.org/packages/9f/c5/90c569649057622959f6dcc40f7b516539608a414dfd54b8d77e3b201ac0/rpds_py-0.26.0-cp312-cp312-win32.whl", hash = "sha256:3da5852aad63fa0c6f836f3359647870e21ea96cf433eb393ffa45263a170d44", size = 223272, upload-time = "2025-07-01T15:54:31.128Z" }, - { url = "https://files.pythonhosted.org/packages/7d/16/19f5d9f2a556cfed454eebe4d354c38d51c20f3db69e7b4ce6cff904905d/rpds_py-0.26.0-cp312-cp312-win_amd64.whl", hash = "sha256:cf47cfdabc2194a669dcf7a8dbba62e37a04c5041d2125fae0233b720da6f05c", size = 234995, upload-time = "2025-07-01T15:54:32.195Z" }, - { url = "https://files.pythonhosted.org/packages/83/f0/7935e40b529c0e752dfaa7880224771b51175fce08b41ab4a92eb2fbdc7f/rpds_py-0.26.0-cp312-cp312-win_arm64.whl", hash = "sha256:20ab1ae4fa534f73647aad289003f1104092890849e0266271351922ed5574f8", size = 223198, upload-time = "2025-07-01T15:54:33.271Z" }, - { url = "https://files.pythonhosted.org/packages/6a/67/bb62d0109493b12b1c6ab00de7a5566aa84c0e44217c2d94bee1bd370da9/rpds_py-0.26.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:696764a5be111b036256c0b18cd29783fab22154690fc698062fc1b0084b511d", size = 363917, upload-time = "2025-07-01T15:54:34.755Z" }, - { url = "https://files.pythonhosted.org/packages/4b/f3/34e6ae1925a5706c0f002a8d2d7f172373b855768149796af87bd65dcdb9/rpds_py-0.26.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1e6c15d2080a63aaed876e228efe4f814bc7889c63b1e112ad46fdc8b368b9e1", size = 350073, upload-time = "2025-07-01T15:54:36.292Z" }, - { url = "https://files.pythonhosted.org/packages/75/83/1953a9d4f4e4de7fd0533733e041c28135f3c21485faaef56a8aadbd96b5/rpds_py-0.26.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:390e3170babf42462739a93321e657444f0862c6d722a291accc46f9d21ed04e", size = 384214, upload-time = "2025-07-01T15:54:37.469Z" }, - { url = "https://files.pythonhosted.org/packages/48/0e/983ed1b792b3322ea1d065e67f4b230f3b96025f5ce3878cc40af09b7533/rpds_py-0.26.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7da84c2c74c0f5bc97d853d9e17bb83e2dcafcff0dc48286916001cc114379a1", size = 400113, upload-time = "2025-07-01T15:54:38.954Z" }, - { url = "https://files.pythonhosted.org/packages/69/7f/36c0925fff6f660a80be259c5b4f5e53a16851f946eb080351d057698528/rpds_py-0.26.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4c5fe114a6dd480a510b6d3661d09d67d1622c4bf20660a474507aaee7eeeee9", size = 515189, upload-time = "2025-07-01T15:54:40.57Z" }, - { url = "https://files.pythonhosted.org/packages/13/45/cbf07fc03ba7a9b54662c9badb58294ecfb24f828b9732970bd1a431ed5c/rpds_py-0.26.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3100b3090269f3a7ea727b06a6080d4eb7439dca4c0e91a07c5d133bb1727ea7", size = 406998, upload-time = "2025-07-01T15:54:43.025Z" }, - { url = "https://files.pythonhosted.org/packages/6c/b0/8fa5e36e58657997873fd6a1cf621285ca822ca75b4b3434ead047daa307/rpds_py-0.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c03c9b0c64afd0320ae57de4c982801271c0c211aa2d37f3003ff5feb75bb04", size = 385903, upload-time = "2025-07-01T15:54:44.752Z" }, - { url = "https://files.pythonhosted.org/packages/4b/f7/b25437772f9f57d7a9fbd73ed86d0dcd76b4c7c6998348c070d90f23e315/rpds_py-0.26.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5963b72ccd199ade6ee493723d18a3f21ba7d5b957017607f815788cef50eaf1", size = 419785, upload-time = "2025-07-01T15:54:46.043Z" }, - { url = "https://files.pythonhosted.org/packages/a7/6b/63ffa55743dfcb4baf2e9e77a0b11f7f97ed96a54558fcb5717a4b2cd732/rpds_py-0.26.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9da4e873860ad5bab3291438525cae80169daecbfafe5657f7f5fb4d6b3f96b9", size = 561329, upload-time = "2025-07-01T15:54:47.64Z" }, - { url = "https://files.pythonhosted.org/packages/2f/07/1f4f5e2886c480a2346b1e6759c00278b8a69e697ae952d82ae2e6ee5db0/rpds_py-0.26.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5afaddaa8e8c7f1f7b4c5c725c0070b6eed0228f705b90a1732a48e84350f4e9", size = 590875, upload-time = "2025-07-01T15:54:48.9Z" }, - { url = "https://files.pythonhosted.org/packages/cc/bc/e6639f1b91c3a55f8c41b47d73e6307051b6e246254a827ede730624c0f8/rpds_py-0.26.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4916dc96489616a6f9667e7526af8fa693c0fdb4f3acb0e5d9f4400eb06a47ba", size = 556636, upload-time = "2025-07-01T15:54:50.619Z" }, - { url = "https://files.pythonhosted.org/packages/05/4c/b3917c45566f9f9a209d38d9b54a1833f2bb1032a3e04c66f75726f28876/rpds_py-0.26.0-cp313-cp313-win32.whl", hash = "sha256:2a343f91b17097c546b93f7999976fd6c9d5900617aa848c81d794e062ab302b", size = 222663, upload-time = "2025-07-01T15:54:52.023Z" }, - { url = "https://files.pythonhosted.org/packages/e0/0b/0851bdd6025775aaa2365bb8de0697ee2558184c800bfef8d7aef5ccde58/rpds_py-0.26.0-cp313-cp313-win_amd64.whl", hash = "sha256:0a0b60701f2300c81b2ac88a5fb893ccfa408e1c4a555a77f908a2596eb875a5", size = 234428, upload-time = "2025-07-01T15:54:53.692Z" }, - { url = "https://files.pythonhosted.org/packages/ed/e8/a47c64ed53149c75fb581e14a237b7b7cd18217e969c30d474d335105622/rpds_py-0.26.0-cp313-cp313-win_arm64.whl", hash = "sha256:257d011919f133a4746958257f2c75238e3ff54255acd5e3e11f3ff41fd14256", size = 222571, upload-time = "2025-07-01T15:54:54.822Z" }, - { url = "https://files.pythonhosted.org/packages/89/bf/3d970ba2e2bcd17d2912cb42874107390f72873e38e79267224110de5e61/rpds_py-0.26.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:529c8156d7506fba5740e05da8795688f87119cce330c244519cf706a4a3d618", size = 360475, upload-time = "2025-07-01T15:54:56.228Z" }, - { url = "https://files.pythonhosted.org/packages/82/9f/283e7e2979fc4ec2d8ecee506d5a3675fce5ed9b4b7cb387ea5d37c2f18d/rpds_py-0.26.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f53ec51f9d24e9638a40cabb95078ade8c99251945dad8d57bf4aabe86ecee35", size = 346692, upload-time = "2025-07-01T15:54:58.561Z" }, - { url = "https://files.pythonhosted.org/packages/e3/03/7e50423c04d78daf391da3cc4330bdb97042fc192a58b186f2d5deb7befd/rpds_py-0.26.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab504c4d654e4a29558eaa5bb8cea5fdc1703ea60a8099ffd9c758472cf913f", size = 379415, upload-time = "2025-07-01T15:54:59.751Z" }, - { url = "https://files.pythonhosted.org/packages/57/00/d11ee60d4d3b16808432417951c63df803afb0e0fc672b5e8d07e9edaaae/rpds_py-0.26.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd0641abca296bc1a00183fe44f7fced8807ed49d501f188faa642d0e4975b83", size = 391783, upload-time = "2025-07-01T15:55:00.898Z" }, - { url = "https://files.pythonhosted.org/packages/08/b3/1069c394d9c0d6d23c5b522e1f6546b65793a22950f6e0210adcc6f97c3e/rpds_py-0.26.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b312fecc1d017b5327afa81d4da1480f51c68810963a7336d92203dbb3d4f1", size = 512844, upload-time = "2025-07-01T15:55:02.201Z" }, - { url = "https://files.pythonhosted.org/packages/08/3b/c4fbf0926800ed70b2c245ceca99c49f066456755f5d6eb8863c2c51e6d0/rpds_py-0.26.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c741107203954f6fc34d3066d213d0a0c40f7bb5aafd698fb39888af277c70d8", size = 402105, upload-time = "2025-07-01T15:55:03.698Z" }, - { url = "https://files.pythonhosted.org/packages/1c/b0/db69b52ca07413e568dae9dc674627a22297abb144c4d6022c6d78f1e5cc/rpds_py-0.26.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc3e55a7db08dc9a6ed5fb7103019d2c1a38a349ac41901f9f66d7f95750942f", size = 383440, upload-time = "2025-07-01T15:55:05.398Z" }, - { url = "https://files.pythonhosted.org/packages/4c/e1/c65255ad5b63903e56b3bb3ff9dcc3f4f5c3badde5d08c741ee03903e951/rpds_py-0.26.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9e851920caab2dbcae311fd28f4313c6953993893eb5c1bb367ec69d9a39e7ed", size = 412759, upload-time = "2025-07-01T15:55:08.316Z" }, - { url = "https://files.pythonhosted.org/packages/e4/22/bb731077872377a93c6e93b8a9487d0406c70208985831034ccdeed39c8e/rpds_py-0.26.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dfbf280da5f876d0b00c81f26bedce274e72a678c28845453885a9b3c22ae632", size = 556032, upload-time = "2025-07-01T15:55:09.52Z" }, - { url = "https://files.pythonhosted.org/packages/e0/8b/393322ce7bac5c4530fb96fc79cc9ea2f83e968ff5f6e873f905c493e1c4/rpds_py-0.26.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:1cc81d14ddfa53d7f3906694d35d54d9d3f850ef8e4e99ee68bc0d1e5fed9a9c", size = 585416, upload-time = "2025-07-01T15:55:11.216Z" }, - { url = "https://files.pythonhosted.org/packages/49/ae/769dc372211835bf759319a7aae70525c6eb523e3371842c65b7ef41c9c6/rpds_py-0.26.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dca83c498b4650a91efcf7b88d669b170256bf8017a5db6f3e06c2bf031f57e0", size = 554049, upload-time = "2025-07-01T15:55:13.004Z" }, - { url = "https://files.pythonhosted.org/packages/6b/f9/4c43f9cc203d6ba44ce3146246cdc38619d92c7bd7bad4946a3491bd5b70/rpds_py-0.26.0-cp313-cp313t-win32.whl", hash = "sha256:4d11382bcaf12f80b51d790dee295c56a159633a8e81e6323b16e55d81ae37e9", size = 218428, upload-time = "2025-07-01T15:55:14.486Z" }, - { url = "https://files.pythonhosted.org/packages/7e/8b/9286b7e822036a4a977f2f1e851c7345c20528dbd56b687bb67ed68a8ede/rpds_py-0.26.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff110acded3c22c033e637dd8896e411c7d3a11289b2edf041f86663dbc791e9", size = 231524, upload-time = "2025-07-01T15:55:15.745Z" }, - { url = "https://files.pythonhosted.org/packages/55/07/029b7c45db910c74e182de626dfdae0ad489a949d84a468465cd0ca36355/rpds_py-0.26.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:da619979df60a940cd434084355c514c25cf8eb4cf9a508510682f6c851a4f7a", size = 364292, upload-time = "2025-07-01T15:55:17.001Z" }, - { url = "https://files.pythonhosted.org/packages/13/d1/9b3d3f986216b4d1f584878dca15ce4797aaf5d372d738974ba737bf68d6/rpds_py-0.26.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ea89a2458a1a75f87caabefe789c87539ea4e43b40f18cff526052e35bbb4fdf", size = 350334, upload-time = "2025-07-01T15:55:18.922Z" }, - { url = "https://files.pythonhosted.org/packages/18/98/16d5e7bc9ec715fa9668731d0cf97f6b032724e61696e2db3d47aeb89214/rpds_py-0.26.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feac1045b3327a45944e7dcbeb57530339f6b17baff154df51ef8b0da34c8c12", size = 384875, upload-time = "2025-07-01T15:55:20.399Z" }, - { url = "https://files.pythonhosted.org/packages/f9/13/aa5e2b1ec5ab0e86a5c464d53514c0467bec6ba2507027d35fc81818358e/rpds_py-0.26.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b818a592bd69bfe437ee8368603d4a2d928c34cffcdf77c2e761a759ffd17d20", size = 399993, upload-time = "2025-07-01T15:55:21.729Z" }, - { url = "https://files.pythonhosted.org/packages/17/03/8021810b0e97923abdbab6474c8b77c69bcb4b2c58330777df9ff69dc559/rpds_py-0.26.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a8b0dd8648709b62d9372fc00a57466f5fdeefed666afe3fea5a6c9539a0331", size = 516683, upload-time = "2025-07-01T15:55:22.918Z" }, - { url = "https://files.pythonhosted.org/packages/dc/b1/da8e61c87c2f3d836954239fdbbfb477bb7b54d74974d8f6fcb34342d166/rpds_py-0.26.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6d3498ad0df07d81112aa6ec6c95a7e7b1ae00929fb73e7ebee0f3faaeabad2f", size = 408825, upload-time = "2025-07-01T15:55:24.207Z" }, - { url = "https://files.pythonhosted.org/packages/38/bc/1fc173edaaa0e52c94b02a655db20697cb5fa954ad5a8e15a2c784c5cbdd/rpds_py-0.26.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24a4146ccb15be237fdef10f331c568e1b0e505f8c8c9ed5d67759dac58ac246", size = 387292, upload-time = "2025-07-01T15:55:25.554Z" }, - { url = "https://files.pythonhosted.org/packages/7c/eb/3a9bb4bd90867d21916f253caf4f0d0be7098671b6715ad1cead9fe7bab9/rpds_py-0.26.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a9a63785467b2d73635957d32a4f6e73d5e4df497a16a6392fa066b753e87387", size = 420435, upload-time = "2025-07-01T15:55:27.798Z" }, - { url = "https://files.pythonhosted.org/packages/cd/16/e066dcdb56f5632713445271a3f8d3d0b426d51ae9c0cca387799df58b02/rpds_py-0.26.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:de4ed93a8c91debfd5a047be327b7cc8b0cc6afe32a716bbbc4aedca9e2a83af", size = 562410, upload-time = "2025-07-01T15:55:29.057Z" }, - { url = "https://files.pythonhosted.org/packages/60/22/ddbdec7eb82a0dc2e455be44c97c71c232983e21349836ce9f272e8a3c29/rpds_py-0.26.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:caf51943715b12af827696ec395bfa68f090a4c1a1d2509eb4e2cb69abbbdb33", size = 590724, upload-time = "2025-07-01T15:55:30.719Z" }, - { url = "https://files.pythonhosted.org/packages/2c/b4/95744085e65b7187d83f2fcb0bef70716a1ea0a9e5d8f7f39a86e5d83424/rpds_py-0.26.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:4a59e5bc386de021f56337f757301b337d7ab58baa40174fb150accd480bc953", size = 558285, upload-time = "2025-07-01T15:55:31.981Z" }, - { url = "https://files.pythonhosted.org/packages/37/37/6309a75e464d1da2559446f9c811aa4d16343cebe3dbb73701e63f760caa/rpds_py-0.26.0-cp314-cp314-win32.whl", hash = "sha256:92c8db839367ef16a662478f0a2fe13e15f2227da3c1430a782ad0f6ee009ec9", size = 223459, upload-time = "2025-07-01T15:55:33.312Z" }, - { url = "https://files.pythonhosted.org/packages/d9/6f/8e9c11214c46098b1d1391b7e02b70bb689ab963db3b19540cba17315291/rpds_py-0.26.0-cp314-cp314-win_amd64.whl", hash = "sha256:b0afb8cdd034150d4d9f53926226ed27ad15b7f465e93d7468caaf5eafae0d37", size = 236083, upload-time = "2025-07-01T15:55:34.933Z" }, - { url = "https://files.pythonhosted.org/packages/47/af/9c4638994dd623d51c39892edd9d08e8be8220a4b7e874fa02c2d6e91955/rpds_py-0.26.0-cp314-cp314-win_arm64.whl", hash = "sha256:ca3f059f4ba485d90c8dc75cb5ca897e15325e4e609812ce57f896607c1c0867", size = 223291, upload-time = "2025-07-01T15:55:36.202Z" }, - { url = "https://files.pythonhosted.org/packages/4d/db/669a241144460474aab03e254326b32c42def83eb23458a10d163cb9b5ce/rpds_py-0.26.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:5afea17ab3a126006dc2f293b14ffc7ef3c85336cf451564a0515ed7648033da", size = 361445, upload-time = "2025-07-01T15:55:37.483Z" }, - { url = "https://files.pythonhosted.org/packages/3b/2d/133f61cc5807c6c2fd086a46df0eb8f63a23f5df8306ff9f6d0fd168fecc/rpds_py-0.26.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:69f0c0a3df7fd3a7eec50a00396104bb9a843ea6d45fcc31c2d5243446ffd7a7", size = 347206, upload-time = "2025-07-01T15:55:38.828Z" }, - { url = "https://files.pythonhosted.org/packages/05/bf/0e8fb4c05f70273469eecf82f6ccf37248558526a45321644826555db31b/rpds_py-0.26.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:801a71f70f9813e82d2513c9a96532551fce1e278ec0c64610992c49c04c2dad", size = 380330, upload-time = "2025-07-01T15:55:40.175Z" }, - { url = "https://files.pythonhosted.org/packages/d4/a8/060d24185d8b24d3923322f8d0ede16df4ade226a74e747b8c7c978e3dd3/rpds_py-0.26.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:df52098cde6d5e02fa75c1f6244f07971773adb4a26625edd5c18fee906fa84d", size = 392254, upload-time = "2025-07-01T15:55:42.015Z" }, - { url = "https://files.pythonhosted.org/packages/b9/7b/7c2e8a9ee3e6bc0bae26bf29f5219955ca2fbb761dca996a83f5d2f773fe/rpds_py-0.26.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bc596b30f86dc6f0929499c9e574601679d0341a0108c25b9b358a042f51bca", size = 516094, upload-time = "2025-07-01T15:55:43.603Z" }, - { url = "https://files.pythonhosted.org/packages/75/d6/f61cafbed8ba1499b9af9f1777a2a199cd888f74a96133d8833ce5eaa9c5/rpds_py-0.26.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9dfbe56b299cf5875b68eb6f0ebaadc9cac520a1989cac0db0765abfb3709c19", size = 402889, upload-time = "2025-07-01T15:55:45.275Z" }, - { url = "https://files.pythonhosted.org/packages/92/19/c8ac0a8a8df2dd30cdec27f69298a5c13e9029500d6d76718130f5e5be10/rpds_py-0.26.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac64f4b2bdb4ea622175c9ab7cf09444e412e22c0e02e906978b3b488af5fde8", size = 384301, upload-time = "2025-07-01T15:55:47.098Z" }, - { url = "https://files.pythonhosted.org/packages/41/e1/6b1859898bc292a9ce5776016c7312b672da00e25cec74d7beced1027286/rpds_py-0.26.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:181ef9b6bbf9845a264f9aa45c31836e9f3c1f13be565d0d010e964c661d1e2b", size = 412891, upload-time = "2025-07-01T15:55:48.412Z" }, - { url = "https://files.pythonhosted.org/packages/ef/b9/ceb39af29913c07966a61367b3c08b4f71fad841e32c6b59a129d5974698/rpds_py-0.26.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:49028aa684c144ea502a8e847d23aed5e4c2ef7cadfa7d5eaafcb40864844b7a", size = 557044, upload-time = "2025-07-01T15:55:49.816Z" }, - { url = "https://files.pythonhosted.org/packages/2f/27/35637b98380731a521f8ec4f3fd94e477964f04f6b2f8f7af8a2d889a4af/rpds_py-0.26.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:e5d524d68a474a9688336045bbf76cb0def88549c1b2ad9dbfec1fb7cfbe9170", size = 585774, upload-time = "2025-07-01T15:55:51.192Z" }, - { url = "https://files.pythonhosted.org/packages/52/d9/3f0f105420fecd18551b678c9a6ce60bd23986098b252a56d35781b3e7e9/rpds_py-0.26.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c1851f429b822831bd2edcbe0cfd12ee9ea77868f8d3daf267b189371671c80e", size = 554886, upload-time = "2025-07-01T15:55:52.541Z" }, - { url = "https://files.pythonhosted.org/packages/6b/c5/347c056a90dc8dd9bc240a08c527315008e1b5042e7a4cf4ac027be9d38a/rpds_py-0.26.0-cp314-cp314t-win32.whl", hash = "sha256:7bdb17009696214c3b66bb3590c6d62e14ac5935e53e929bcdbc5a495987a84f", size = 219027, upload-time = "2025-07-01T15:55:53.874Z" }, - { url = "https://files.pythonhosted.org/packages/75/04/5302cea1aa26d886d34cadbf2dc77d90d7737e576c0065f357b96dc7a1a6/rpds_py-0.26.0-cp314-cp314t-win_amd64.whl", hash = "sha256:f14440b9573a6f76b4ee4770c13f0b5921f71dde3b6fcb8dabbefd13b7fe05d7", size = 232821, upload-time = "2025-07-01T15:55:55.167Z" }, - { url = "https://files.pythonhosted.org/packages/51/f2/b5c85b758a00c513bb0389f8fc8e61eb5423050c91c958cdd21843faa3e6/rpds_py-0.26.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f61a9326f80ca59214d1cceb0a09bb2ece5b2563d4e0cd37bfd5515c28510674", size = 373505, upload-time = "2025-07-01T15:56:34.716Z" }, - { url = "https://files.pythonhosted.org/packages/23/e0/25db45e391251118e915e541995bb5f5ac5691a3b98fb233020ba53afc9b/rpds_py-0.26.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:183f857a53bcf4b1b42ef0f57ca553ab56bdd170e49d8091e96c51c3d69ca696", size = 359468, upload-time = "2025-07-01T15:56:36.219Z" }, - { url = "https://files.pythonhosted.org/packages/0b/73/dd5ee6075bb6491be3a646b301dfd814f9486d924137a5098e61f0487e16/rpds_py-0.26.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:941c1cfdf4799d623cf3aa1d326a6b4fdb7a5799ee2687f3516738216d2262fb", size = 382680, upload-time = "2025-07-01T15:56:37.644Z" }, - { url = "https://files.pythonhosted.org/packages/2f/10/84b522ff58763a5c443f5bcedc1820240e454ce4e620e88520f04589e2ea/rpds_py-0.26.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72a8d9564a717ee291f554eeb4bfeafe2309d5ec0aa6c475170bdab0f9ee8e88", size = 397035, upload-time = "2025-07-01T15:56:39.241Z" }, - { url = "https://files.pythonhosted.org/packages/06/ea/8667604229a10a520fcbf78b30ccc278977dcc0627beb7ea2c96b3becef0/rpds_py-0.26.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:511d15193cbe013619dd05414c35a7dedf2088fcee93c6bbb7c77859765bd4e8", size = 514922, upload-time = "2025-07-01T15:56:40.645Z" }, - { url = "https://files.pythonhosted.org/packages/24/e6/9ed5b625c0661c4882fc8cdf302bf8e96c73c40de99c31e0b95ed37d508c/rpds_py-0.26.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aea1f9741b603a8d8fedb0ed5502c2bc0accbc51f43e2ad1337fe7259c2b77a5", size = 402822, upload-time = "2025-07-01T15:56:42.137Z" }, - { url = "https://files.pythonhosted.org/packages/8a/58/212c7b6fd51946047fb45d3733da27e2fa8f7384a13457c874186af691b1/rpds_py-0.26.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4019a9d473c708cf2f16415688ef0b4639e07abaa569d72f74745bbeffafa2c7", size = 384336, upload-time = "2025-07-01T15:56:44.239Z" }, - { url = "https://files.pythonhosted.org/packages/aa/f5/a40ba78748ae8ebf4934d4b88e77b98497378bc2c24ba55ebe87a4e87057/rpds_py-0.26.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:093d63b4b0f52d98ebae33b8c50900d3d67e0666094b1be7a12fffd7f65de74b", size = 416871, upload-time = "2025-07-01T15:56:46.284Z" }, - { url = "https://files.pythonhosted.org/packages/d5/a6/33b1fc0c9f7dcfcfc4a4353daa6308b3ece22496ceece348b3e7a7559a09/rpds_py-0.26.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2abe21d8ba64cded53a2a677e149ceb76dcf44284202d737178afe7ba540c1eb", size = 559439, upload-time = "2025-07-01T15:56:48.549Z" }, - { url = "https://files.pythonhosted.org/packages/71/2d/ceb3f9c12f8cfa56d34995097f6cd99da1325642c60d1b6680dd9df03ed8/rpds_py-0.26.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:4feb7511c29f8442cbbc28149a92093d32e815a28aa2c50d333826ad2a20fdf0", size = 588380, upload-time = "2025-07-01T15:56:50.086Z" }, - { url = "https://files.pythonhosted.org/packages/c8/ed/9de62c2150ca8e2e5858acf3f4f4d0d180a38feef9fdab4078bea63d8dba/rpds_py-0.26.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e99685fc95d386da368013e7fb4269dd39c30d99f812a8372d62f244f662709c", size = 555334, upload-time = "2025-07-01T15:56:51.703Z" }, +version = "0.27.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/d9/991a0dee12d9fc53ed027e26a26a64b151d77252ac477e22666b9688bc16/rpds_py-0.27.0.tar.gz", hash = "sha256:8b23cf252f180cda89220b378d917180f29d313cd6a07b2431c0d3b776aae86f", size = 27420, upload-time = "2025-08-07T08:26:39.624Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/c1/49d515434c1752e40f5e35b985260cf27af052593378580a2f139a5be6b8/rpds_py-0.27.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:dbc2ab5d10544eb485baa76c63c501303b716a5c405ff2469a1d8ceffaabf622", size = 371577, upload-time = "2025-08-07T08:23:25.379Z" }, + { url = "https://files.pythonhosted.org/packages/e1/6d/bf2715b2fee5087fa13b752b5fd573f1a93e4134c74d275f709e38e54fe7/rpds_py-0.27.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7ec85994f96a58cf7ed288caa344b7fe31fd1d503bdf13d7331ead5f70ab60d5", size = 354959, upload-time = "2025-08-07T08:23:26.767Z" }, + { url = "https://files.pythonhosted.org/packages/a3/5c/e7762808c746dd19733a81373c10da43926f6a6adcf4920a21119697a60a/rpds_py-0.27.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:190d7285cd3bb6d31d37a0534d7359c1ee191eb194c511c301f32a4afa5a1dd4", size = 381485, upload-time = "2025-08-07T08:23:27.869Z" }, + { url = "https://files.pythonhosted.org/packages/40/51/0d308eb0b558309ca0598bcba4243f52c4cd20e15fe991b5bd75824f2e61/rpds_py-0.27.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c10d92fb6d7fd827e44055fcd932ad93dac6a11e832d51534d77b97d1d85400f", size = 396816, upload-time = "2025-08-07T08:23:29.424Z" }, + { url = "https://files.pythonhosted.org/packages/5c/aa/2d585ec911d78f66458b2c91252134ca0c7c70f687a72c87283173dc0c96/rpds_py-0.27.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd2c1d27ebfe6a015cfa2005b7fe8c52d5019f7bbdd801bc6f7499aab9ae739e", size = 514950, upload-time = "2025-08-07T08:23:30.576Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ef/aced551cc1148179557aed84343073adadf252c91265263ee6203458a186/rpds_py-0.27.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4790c9d5dd565ddb3e9f656092f57268951398cef52e364c405ed3112dc7c7c1", size = 402132, upload-time = "2025-08-07T08:23:32.428Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ac/cf644803d8d417653fe2b3604186861d62ea6afaef1b2284045741baef17/rpds_py-0.27.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4300e15e7d03660f04be84a125d1bdd0e6b2f674bc0723bc0fd0122f1a4585dc", size = 383660, upload-time = "2025-08-07T08:23:33.829Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ec/caf47c55ce02b76cbaeeb2d3b36a73da9ca2e14324e3d75cf72b59dcdac5/rpds_py-0.27.0-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:59195dc244fc183209cf8a93406889cadde47dfd2f0a6b137783aa9c56d67c85", size = 401730, upload-time = "2025-08-07T08:23:34.97Z" }, + { url = "https://files.pythonhosted.org/packages/0b/71/c1f355afdcd5b99ffc253422aa4bdcb04ccf1491dcd1bda3688a0c07fd61/rpds_py-0.27.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fae4a01ef8c4cb2bbe92ef2063149596907dc4a881a8d26743b3f6b304713171", size = 416122, upload-time = "2025-08-07T08:23:36.062Z" }, + { url = "https://files.pythonhosted.org/packages/38/0f/f4b5b1eda724ed0e04d2b26d8911cdc131451a7ee4c4c020a1387e5c6ded/rpds_py-0.27.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e3dc8d4ede2dbae6c0fc2b6c958bf51ce9fd7e9b40c0f5b8835c3fde44f5807d", size = 558771, upload-time = "2025-08-07T08:23:37.478Z" }, + { url = "https://files.pythonhosted.org/packages/93/c0/5f8b834db2289ab48d5cffbecbb75e35410103a77ac0b8da36bf9544ec1c/rpds_py-0.27.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:c3782fb753aa825b4ccabc04292e07897e2fd941448eabf666856c5530277626", size = 587876, upload-time = "2025-08-07T08:23:38.662Z" }, + { url = "https://files.pythonhosted.org/packages/d2/dd/1a1df02ab8eb970115cff2ae31a6f73916609b900dc86961dc382b8c2e5e/rpds_py-0.27.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:887ab1f12b0d227e9260558a4a2320024b20102207ada65c43e1ffc4546df72e", size = 554359, upload-time = "2025-08-07T08:23:39.897Z" }, + { url = "https://files.pythonhosted.org/packages/a1/e4/95a014ab0d51ab6e3bebbdb476a42d992d2bbf9c489d24cff9fda998e925/rpds_py-0.27.0-cp311-cp311-win32.whl", hash = "sha256:5d6790ff400254137b81b8053b34417e2c46921e302d655181d55ea46df58cf7", size = 218084, upload-time = "2025-08-07T08:23:41.086Z" }, + { url = "https://files.pythonhosted.org/packages/49/78/f8d5b71ec65a0376b0de31efcbb5528ce17a9b7fdd19c3763303ccfdedec/rpds_py-0.27.0-cp311-cp311-win_amd64.whl", hash = "sha256:e24d8031a2c62f34853756d9208eeafa6b940a1efcbfe36e8f57d99d52bb7261", size = 230085, upload-time = "2025-08-07T08:23:42.143Z" }, + { url = "https://files.pythonhosted.org/packages/e7/d3/84429745184091e06b4cc70f8597408e314c2d2f7f5e13249af9ffab9e3d/rpds_py-0.27.0-cp311-cp311-win_arm64.whl", hash = "sha256:08680820d23df1df0a0260f714d12966bc6c42d02e8055a91d61e03f0c47dda0", size = 222112, upload-time = "2025-08-07T08:23:43.233Z" }, + { url = "https://files.pythonhosted.org/packages/cd/17/e67309ca1ac993fa1888a0d9b2f5ccc1f67196ace32e76c9f8e1dbbbd50c/rpds_py-0.27.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:19c990fdf5acecbf0623e906ae2e09ce1c58947197f9bced6bbd7482662231c4", size = 362611, upload-time = "2025-08-07T08:23:44.773Z" }, + { url = "https://files.pythonhosted.org/packages/93/2e/28c2fb84aa7aa5d75933d1862d0f7de6198ea22dfd9a0cca06e8a4e7509e/rpds_py-0.27.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6c27a7054b5224710fcfb1a626ec3ff4f28bcb89b899148c72873b18210e446b", size = 347680, upload-time = "2025-08-07T08:23:46.014Z" }, + { url = "https://files.pythonhosted.org/packages/44/3e/9834b4c8f4f5fe936b479e623832468aa4bd6beb8d014fecaee9eac6cdb1/rpds_py-0.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09965b314091829b378b60607022048953e25f0b396c2b70e7c4c81bcecf932e", size = 384600, upload-time = "2025-08-07T08:23:48Z" }, + { url = "https://files.pythonhosted.org/packages/19/78/744123c7b38865a965cd9e6f691fde7ef989a00a256fa8bf15b75240d12f/rpds_py-0.27.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:14f028eb47f59e9169bfdf9f7ceafd29dd64902141840633683d0bad5b04ff34", size = 400697, upload-time = "2025-08-07T08:23:49.407Z" }, + { url = "https://files.pythonhosted.org/packages/32/97/3c3d32fe7daee0a1f1a678b6d4dfb8c4dcf88197fa2441f9da7cb54a8466/rpds_py-0.27.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6168af0be75bba990a39f9431cdfae5f0ad501f4af32ae62e8856307200517b8", size = 517781, upload-time = "2025-08-07T08:23:50.557Z" }, + { url = "https://files.pythonhosted.org/packages/b2/be/28f0e3e733680aa13ecec1212fc0f585928a206292f14f89c0b8a684cad1/rpds_py-0.27.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab47fe727c13c09d0e6f508e3a49e545008e23bf762a245b020391b621f5b726", size = 406449, upload-time = "2025-08-07T08:23:51.732Z" }, + { url = "https://files.pythonhosted.org/packages/95/ae/5d15c83e337c082d0367053baeb40bfba683f42459f6ebff63a2fd7e5518/rpds_py-0.27.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fa01b3d5e3b7d97efab65bd3d88f164e289ec323a8c033c5c38e53ee25c007e", size = 386150, upload-time = "2025-08-07T08:23:52.822Z" }, + { url = "https://files.pythonhosted.org/packages/bf/65/944e95f95d5931112829e040912b25a77b2e7ed913ea5fe5746aa5c1ce75/rpds_py-0.27.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:6c135708e987f46053e0a1246a206f53717f9fadfba27174a9769ad4befba5c3", size = 406100, upload-time = "2025-08-07T08:23:54.339Z" }, + { url = "https://files.pythonhosted.org/packages/21/a4/1664b83fae02894533cd11dc0b9f91d673797c2185b7be0f7496107ed6c5/rpds_py-0.27.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fc327f4497b7087d06204235199daf208fd01c82d80465dc5efa4ec9df1c5b4e", size = 421345, upload-time = "2025-08-07T08:23:55.832Z" }, + { url = "https://files.pythonhosted.org/packages/7c/26/b7303941c2b0823bfb34c71378249f8beedce57301f400acb04bb345d025/rpds_py-0.27.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e57906e38583a2cba67046a09c2637e23297618dc1f3caddbc493f2be97c93f", size = 561891, upload-time = "2025-08-07T08:23:56.951Z" }, + { url = "https://files.pythonhosted.org/packages/9b/c8/48623d64d4a5a028fa99576c768a6159db49ab907230edddc0b8468b998b/rpds_py-0.27.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f4f69d7a4300fbf91efb1fb4916421bd57804c01ab938ab50ac9c4aa2212f03", size = 591756, upload-time = "2025-08-07T08:23:58.146Z" }, + { url = "https://files.pythonhosted.org/packages/b3/51/18f62617e8e61cc66334c9fb44b1ad7baae3438662098efbc55fb3fda453/rpds_py-0.27.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b4c4fbbcff474e1e5f38be1bf04511c03d492d42eec0babda5d03af3b5589374", size = 557088, upload-time = "2025-08-07T08:23:59.6Z" }, + { url = "https://files.pythonhosted.org/packages/bd/4c/e84c3a276e2496a93d245516be6b49e20499aa8ca1c94d59fada0d79addc/rpds_py-0.27.0-cp312-cp312-win32.whl", hash = "sha256:27bac29bbbf39601b2aab474daf99dbc8e7176ca3389237a23944b17f8913d97", size = 221926, upload-time = "2025-08-07T08:24:00.695Z" }, + { url = "https://files.pythonhosted.org/packages/83/89/9d0fbcef64340db0605eb0a0044f258076f3ae0a3b108983b2c614d96212/rpds_py-0.27.0-cp312-cp312-win_amd64.whl", hash = "sha256:8a06aa1197ec0281eb1d7daf6073e199eb832fe591ffa329b88bae28f25f5fe5", size = 233235, upload-time = "2025-08-07T08:24:01.846Z" }, + { url = "https://files.pythonhosted.org/packages/c9/b0/e177aa9f39cbab060f96de4a09df77d494f0279604dc2f509263e21b05f9/rpds_py-0.27.0-cp312-cp312-win_arm64.whl", hash = "sha256:e14aab02258cb776a108107bd15f5b5e4a1bbaa61ef33b36693dfab6f89d54f9", size = 223315, upload-time = "2025-08-07T08:24:03.337Z" }, + { url = "https://files.pythonhosted.org/packages/81/d2/dfdfd42565a923b9e5a29f93501664f5b984a802967d48d49200ad71be36/rpds_py-0.27.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:443d239d02d9ae55b74015234f2cd8eb09e59fbba30bf60baeb3123ad4c6d5ff", size = 362133, upload-time = "2025-08-07T08:24:04.508Z" }, + { url = "https://files.pythonhosted.org/packages/ac/4a/0a2e2460c4b66021d349ce9f6331df1d6c75d7eea90df9785d333a49df04/rpds_py-0.27.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b8a7acf04fda1f30f1007f3cc96d29d8cf0a53e626e4e1655fdf4eabc082d367", size = 347128, upload-time = "2025-08-07T08:24:05.695Z" }, + { url = "https://files.pythonhosted.org/packages/35/8d/7d1e4390dfe09d4213b3175a3f5a817514355cb3524593380733204f20b9/rpds_py-0.27.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d0f92b78cfc3b74a42239fdd8c1266f4715b573204c234d2f9fc3fc7a24f185", size = 384027, upload-time = "2025-08-07T08:24:06.841Z" }, + { url = "https://files.pythonhosted.org/packages/c1/65/78499d1a62172891c8cd45de737b2a4b84a414b6ad8315ab3ac4945a5b61/rpds_py-0.27.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ce4ed8e0c7dbc5b19352b9c2c6131dd23b95fa8698b5cdd076307a33626b72dc", size = 399973, upload-time = "2025-08-07T08:24:08.143Z" }, + { url = "https://files.pythonhosted.org/packages/10/a1/1c67c1d8cc889107b19570bb01f75cf49852068e95e6aee80d22915406fc/rpds_py-0.27.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fde355b02934cc6b07200cc3b27ab0c15870a757d1a72fd401aa92e2ea3c6bfe", size = 515295, upload-time = "2025-08-07T08:24:09.711Z" }, + { url = "https://files.pythonhosted.org/packages/df/27/700ec88e748436b6c7c4a2262d66e80f8c21ab585d5e98c45e02f13f21c0/rpds_py-0.27.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13bbc4846ae4c993f07c93feb21a24d8ec637573d567a924b1001e81c8ae80f9", size = 406737, upload-time = "2025-08-07T08:24:11.182Z" }, + { url = "https://files.pythonhosted.org/packages/33/cc/6b0ee8f0ba3f2df2daac1beda17fde5cf10897a7d466f252bd184ef20162/rpds_py-0.27.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be0744661afbc4099fef7f4e604e7f1ea1be1dd7284f357924af12a705cc7d5c", size = 385898, upload-time = "2025-08-07T08:24:12.798Z" }, + { url = "https://files.pythonhosted.org/packages/e8/7e/c927b37d7d33c0a0ebf249cc268dc2fcec52864c1b6309ecb960497f2285/rpds_py-0.27.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:069e0384a54f427bd65d7fda83b68a90606a3835901aaff42185fcd94f5a9295", size = 405785, upload-time = "2025-08-07T08:24:14.906Z" }, + { url = "https://files.pythonhosted.org/packages/5b/d2/8ed50746d909dcf402af3fa58b83d5a590ed43e07251d6b08fad1a535ba6/rpds_py-0.27.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4bc262ace5a1a7dc3e2eac2fa97b8257ae795389f688b5adf22c5db1e2431c43", size = 419760, upload-time = "2025-08-07T08:24:16.129Z" }, + { url = "https://files.pythonhosted.org/packages/d3/60/2b2071aee781cb3bd49f94d5d35686990b925e9b9f3e3d149235a6f5d5c1/rpds_py-0.27.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2fe6e18e5c8581f0361b35ae575043c7029d0a92cb3429e6e596c2cdde251432", size = 561201, upload-time = "2025-08-07T08:24:17.645Z" }, + { url = "https://files.pythonhosted.org/packages/98/1f/27b67304272521aaea02be293fecedce13fa351a4e41cdb9290576fc6d81/rpds_py-0.27.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d93ebdb82363d2e7bec64eecdc3632b59e84bd270d74fe5be1659f7787052f9b", size = 591021, upload-time = "2025-08-07T08:24:18.999Z" }, + { url = "https://files.pythonhosted.org/packages/db/9b/a2fadf823164dd085b1f894be6443b0762a54a7af6f36e98e8fcda69ee50/rpds_py-0.27.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0954e3a92e1d62e83a54ea7b3fdc9efa5d61acef8488a8a3d31fdafbfb00460d", size = 556368, upload-time = "2025-08-07T08:24:20.54Z" }, + { url = "https://files.pythonhosted.org/packages/24/f3/6d135d46a129cda2e3e6d4c5e91e2cc26ea0428c6cf152763f3f10b6dd05/rpds_py-0.27.0-cp313-cp313-win32.whl", hash = "sha256:2cff9bdd6c7b906cc562a505c04a57d92e82d37200027e8d362518df427f96cd", size = 221236, upload-time = "2025-08-07T08:24:22.144Z" }, + { url = "https://files.pythonhosted.org/packages/c5/44/65d7494f5448ecc755b545d78b188440f81da98b50ea0447ab5ebfdf9bd6/rpds_py-0.27.0-cp313-cp313-win_amd64.whl", hash = "sha256:dc79d192fb76fc0c84f2c58672c17bbbc383fd26c3cdc29daae16ce3d927e8b2", size = 232634, upload-time = "2025-08-07T08:24:23.642Z" }, + { url = "https://files.pythonhosted.org/packages/70/d9/23852410fadab2abb611733933401de42a1964ce6600a3badae35fbd573e/rpds_py-0.27.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b3a5c8089eed498a3af23ce87a80805ff98f6ef8f7bdb70bd1b7dae5105f6ac", size = 222783, upload-time = "2025-08-07T08:24:25.098Z" }, + { url = "https://files.pythonhosted.org/packages/15/75/03447917f78512b34463f4ef11066516067099a0c466545655503bed0c77/rpds_py-0.27.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:90fb790138c1a89a2e58c9282fe1089638401f2f3b8dddd758499041bc6e0774", size = 359154, upload-time = "2025-08-07T08:24:26.249Z" }, + { url = "https://files.pythonhosted.org/packages/6b/fc/4dac4fa756451f2122ddaf136e2c6aeb758dc6fdbe9ccc4bc95c98451d50/rpds_py-0.27.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:010c4843a3b92b54373e3d2291a7447d6c3fc29f591772cc2ea0e9f5c1da434b", size = 343909, upload-time = "2025-08-07T08:24:27.405Z" }, + { url = "https://files.pythonhosted.org/packages/7b/81/723c1ed8e6f57ed9d8c0c07578747a2d3d554aaefc1ab89f4e42cfeefa07/rpds_py-0.27.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9ce7a9e967afc0a2af7caa0d15a3e9c1054815f73d6a8cb9225b61921b419bd", size = 379340, upload-time = "2025-08-07T08:24:28.714Z" }, + { url = "https://files.pythonhosted.org/packages/98/16/7e3740413de71818ce1997df82ba5f94bae9fff90c0a578c0e24658e6201/rpds_py-0.27.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aa0bf113d15e8abdfee92aa4db86761b709a09954083afcb5bf0f952d6065fdb", size = 391655, upload-time = "2025-08-07T08:24:30.223Z" }, + { url = "https://files.pythonhosted.org/packages/e0/63/2a9f510e124d80660f60ecce07953f3f2d5f0b96192c1365443859b9c87f/rpds_py-0.27.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb91d252b35004a84670dfeafadb042528b19842a0080d8b53e5ec1128e8f433", size = 513017, upload-time = "2025-08-07T08:24:31.446Z" }, + { url = "https://files.pythonhosted.org/packages/2c/4e/cf6ff311d09776c53ea1b4f2e6700b9d43bb4e99551006817ade4bbd6f78/rpds_py-0.27.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:db8a6313dbac934193fc17fe7610f70cd8181c542a91382531bef5ed785e5615", size = 402058, upload-time = "2025-08-07T08:24:32.613Z" }, + { url = "https://files.pythonhosted.org/packages/88/11/5e36096d474cb10f2a2d68b22af60a3bc4164fd8db15078769a568d9d3ac/rpds_py-0.27.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce96ab0bdfcef1b8c371ada2100767ace6804ea35aacce0aef3aeb4f3f499ca8", size = 383474, upload-time = "2025-08-07T08:24:33.767Z" }, + { url = "https://files.pythonhosted.org/packages/db/a2/3dff02805b06058760b5eaa6d8cb8db3eb3e46c9e452453ad5fc5b5ad9fe/rpds_py-0.27.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:7451ede3560086abe1aa27dcdcf55cd15c96b56f543fb12e5826eee6f721f858", size = 400067, upload-time = "2025-08-07T08:24:35.021Z" }, + { url = "https://files.pythonhosted.org/packages/67/87/eed7369b0b265518e21ea836456a4ed4a6744c8c12422ce05bce760bb3cf/rpds_py-0.27.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:32196b5a99821476537b3f7732432d64d93a58d680a52c5e12a190ee0135d8b5", size = 412085, upload-time = "2025-08-07T08:24:36.267Z" }, + { url = "https://files.pythonhosted.org/packages/8b/48/f50b2ab2fbb422fbb389fe296e70b7a6b5ea31b263ada5c61377e710a924/rpds_py-0.27.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a029be818059870664157194e46ce0e995082ac49926f1423c1f058534d2aaa9", size = 555928, upload-time = "2025-08-07T08:24:37.573Z" }, + { url = "https://files.pythonhosted.org/packages/98/41/b18eb51045d06887666c3560cd4bbb6819127b43d758f5adb82b5f56f7d1/rpds_py-0.27.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3841f66c1ffdc6cebce8aed64e36db71466f1dc23c0d9a5592e2a782a3042c79", size = 585527, upload-time = "2025-08-07T08:24:39.391Z" }, + { url = "https://files.pythonhosted.org/packages/be/03/a3dd6470fc76499959b00ae56295b76b4bdf7c6ffc60d62006b1217567e1/rpds_py-0.27.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:42894616da0fc0dcb2ec08a77896c3f56e9cb2f4b66acd76fc8992c3557ceb1c", size = 554211, upload-time = "2025-08-07T08:24:40.6Z" }, + { url = "https://files.pythonhosted.org/packages/bf/d1/ee5fd1be395a07423ac4ca0bcc05280bf95db2b155d03adefeb47d5ebf7e/rpds_py-0.27.0-cp313-cp313t-win32.whl", hash = "sha256:b1fef1f13c842a39a03409e30ca0bf87b39a1e2a305a9924deadb75a43105d23", size = 216624, upload-time = "2025-08-07T08:24:42.204Z" }, + { url = "https://files.pythonhosted.org/packages/1c/94/4814c4c858833bf46706f87349c37ca45e154da7dbbec9ff09f1abeb08cc/rpds_py-0.27.0-cp313-cp313t-win_amd64.whl", hash = "sha256:183f5e221ba3e283cd36fdfbe311d95cd87699a083330b4f792543987167eff1", size = 230007, upload-time = "2025-08-07T08:24:43.329Z" }, + { url = "https://files.pythonhosted.org/packages/0e/a5/8fffe1c7dc7c055aa02df310f9fb71cfc693a4d5ccc5de2d3456ea5fb022/rpds_py-0.27.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:f3cd110e02c5bf17d8fb562f6c9df5c20e73029d587cf8602a2da6c5ef1e32cb", size = 362595, upload-time = "2025-08-07T08:24:44.478Z" }, + { url = "https://files.pythonhosted.org/packages/bc/c7/4e4253fd2d4bb0edbc0b0b10d9f280612ca4f0f990e3c04c599000fe7d71/rpds_py-0.27.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8d0e09cf4863c74106b5265c2c310f36146e2b445ff7b3018a56799f28f39f6f", size = 347252, upload-time = "2025-08-07T08:24:45.678Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c8/3d1a954d30f0174dd6baf18b57c215da03cf7846a9d6e0143304e784cddc/rpds_py-0.27.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f689ab822f9b5eb6dfc69893b4b9366db1d2420f7db1f6a2adf2a9ca15ad64", size = 384886, upload-time = "2025-08-07T08:24:46.86Z" }, + { url = "https://files.pythonhosted.org/packages/e0/52/3c5835f2df389832b28f9276dd5395b5a965cea34226e7c88c8fbec2093c/rpds_py-0.27.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e36c80c49853b3ffda7aa1831bf175c13356b210c73128c861f3aa93c3cc4015", size = 399716, upload-time = "2025-08-07T08:24:48.174Z" }, + { url = "https://files.pythonhosted.org/packages/40/73/176e46992461a1749686a2a441e24df51ff86b99c2d34bf39f2a5273b987/rpds_py-0.27.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6de6a7f622860af0146cb9ee148682ff4d0cea0b8fd3ad51ce4d40efb2f061d0", size = 517030, upload-time = "2025-08-07T08:24:49.52Z" }, + { url = "https://files.pythonhosted.org/packages/79/2a/7266c75840e8c6e70effeb0d38922a45720904f2cd695e68a0150e5407e2/rpds_py-0.27.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4045e2fc4b37ec4b48e8907a5819bdd3380708c139d7cc358f03a3653abedb89", size = 408448, upload-time = "2025-08-07T08:24:50.727Z" }, + { url = "https://files.pythonhosted.org/packages/e6/5f/a7efc572b8e235093dc6cf39f4dbc8a7f08e65fdbcec7ff4daeb3585eef1/rpds_py-0.27.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9da162b718b12c4219eeeeb68a5b7552fbc7aadedf2efee440f88b9c0e54b45d", size = 387320, upload-time = "2025-08-07T08:24:52.004Z" }, + { url = "https://files.pythonhosted.org/packages/a2/eb/9ff6bc92efe57cf5a2cb74dee20453ba444b6fdc85275d8c99e0d27239d1/rpds_py-0.27.0-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:0665be515767dc727ffa5f74bd2ef60b0ff85dad6bb8f50d91eaa6b5fb226f51", size = 407414, upload-time = "2025-08-07T08:24:53.664Z" }, + { url = "https://files.pythonhosted.org/packages/fb/bd/3b9b19b00d5c6e1bd0f418c229ab0f8d3b110ddf7ec5d9d689ef783d0268/rpds_py-0.27.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:203f581accef67300a942e49a37d74c12ceeef4514874c7cede21b012613ca2c", size = 420766, upload-time = "2025-08-07T08:24:55.917Z" }, + { url = "https://files.pythonhosted.org/packages/17/6b/521a7b1079ce16258c70805166e3ac6ec4ee2139d023fe07954dc9b2d568/rpds_py-0.27.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7873b65686a6471c0037139aa000d23fe94628e0daaa27b6e40607c90e3f5ec4", size = 562409, upload-time = "2025-08-07T08:24:57.17Z" }, + { url = "https://files.pythonhosted.org/packages/8b/bf/65db5bfb14ccc55e39de8419a659d05a2a9cd232f0a699a516bb0991da7b/rpds_py-0.27.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:249ab91ceaa6b41abc5f19513cb95b45c6f956f6b89f1fe3d99c81255a849f9e", size = 590793, upload-time = "2025-08-07T08:24:58.388Z" }, + { url = "https://files.pythonhosted.org/packages/db/b8/82d368b378325191ba7aae8f40f009b78057b598d4394d1f2cdabaf67b3f/rpds_py-0.27.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d2f184336bc1d6abfaaa1262ed42739c3789b1e3a65a29916a615307d22ffd2e", size = 558178, upload-time = "2025-08-07T08:24:59.756Z" }, + { url = "https://files.pythonhosted.org/packages/f6/ff/f270bddbfbc3812500f8131b1ebbd97afd014cd554b604a3f73f03133a36/rpds_py-0.27.0-cp314-cp314-win32.whl", hash = "sha256:d3c622c39f04d5751408f5b801ecb527e6e0a471b367f420a877f7a660d583f6", size = 222355, upload-time = "2025-08-07T08:25:01.027Z" }, + { url = "https://files.pythonhosted.org/packages/bf/20/fdab055b1460c02ed356a0e0b0a78c1dd32dc64e82a544f7b31c9ac643dc/rpds_py-0.27.0-cp314-cp314-win_amd64.whl", hash = "sha256:cf824aceaeffff029ccfba0da637d432ca71ab21f13e7f6f5179cd88ebc77a8a", size = 234007, upload-time = "2025-08-07T08:25:02.268Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a8/694c060005421797a3be4943dab8347c76c2b429a9bef68fb2c87c9e70c7/rpds_py-0.27.0-cp314-cp314-win_arm64.whl", hash = "sha256:86aca1616922b40d8ac1b3073a1ead4255a2f13405e5700c01f7c8d29a03972d", size = 223527, upload-time = "2025-08-07T08:25:03.45Z" }, + { url = "https://files.pythonhosted.org/packages/1e/f9/77f4c90f79d2c5ca8ce6ec6a76cb4734ee247de6b3a4f337e289e1f00372/rpds_py-0.27.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:341d8acb6724c0c17bdf714319c393bb27f6d23d39bc74f94221b3e59fc31828", size = 359469, upload-time = "2025-08-07T08:25:04.648Z" }, + { url = "https://files.pythonhosted.org/packages/c0/22/b97878d2f1284286fef4172069e84b0b42b546ea7d053e5fb7adb9ac6494/rpds_py-0.27.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6b96b0b784fe5fd03beffff2b1533dc0d85e92bab8d1b2c24ef3a5dc8fac5669", size = 343960, upload-time = "2025-08-07T08:25:05.863Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b0/dfd55b5bb480eda0578ae94ef256d3061d20b19a0f5e18c482f03e65464f/rpds_py-0.27.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c431bfb91478d7cbe368d0a699978050d3b112d7f1d440a41e90faa325557fd", size = 380201, upload-time = "2025-08-07T08:25:07.513Z" }, + { url = "https://files.pythonhosted.org/packages/28/22/e1fa64e50d58ad2b2053077e3ec81a979147c43428de9e6de68ddf6aff4e/rpds_py-0.27.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20e222a44ae9f507d0f2678ee3dd0c45ec1e930f6875d99b8459631c24058aec", size = 392111, upload-time = "2025-08-07T08:25:09.149Z" }, + { url = "https://files.pythonhosted.org/packages/49/f9/43ab7a43e97aedf6cea6af70fdcbe18abbbc41d4ae6cdec1bfc23bbad403/rpds_py-0.27.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:184f0d7b342967f6cda94a07d0e1fae177d11d0b8f17d73e06e36ac02889f303", size = 515863, upload-time = "2025-08-07T08:25:10.431Z" }, + { url = "https://files.pythonhosted.org/packages/38/9b/9bd59dcc636cd04d86a2d20ad967770bf348f5eb5922a8f29b547c074243/rpds_py-0.27.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a00c91104c173c9043bc46f7b30ee5e6d2f6b1149f11f545580f5d6fdff42c0b", size = 402398, upload-time = "2025-08-07T08:25:11.819Z" }, + { url = "https://files.pythonhosted.org/packages/71/bf/f099328c6c85667aba6b66fa5c35a8882db06dcd462ea214be72813a0dd2/rpds_py-0.27.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7a37dd208f0d658e0487522078b1ed68cd6bce20ef4b5a915d2809b9094b410", size = 384665, upload-time = "2025-08-07T08:25:13.194Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c5/9c1f03121ece6634818490bd3c8be2c82a70928a19de03467fb25a3ae2a8/rpds_py-0.27.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:92f3b3ec3e6008a1fe00b7c0946a170f161ac00645cde35e3c9a68c2475e8156", size = 400405, upload-time = "2025-08-07T08:25:14.417Z" }, + { url = "https://files.pythonhosted.org/packages/b5/b8/e25d54af3e63ac94f0c16d8fe143779fe71ff209445a0c00d0f6984b6b2c/rpds_py-0.27.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a1b3db5fae5cbce2131b7420a3f83553d4d89514c03d67804ced36161fe8b6b2", size = 413179, upload-time = "2025-08-07T08:25:15.664Z" }, + { url = "https://files.pythonhosted.org/packages/f9/d1/406b3316433fe49c3021546293a04bc33f1478e3ec7950215a7fce1a1208/rpds_py-0.27.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5355527adaa713ab693cbce7c1e0ec71682f599f61b128cf19d07e5c13c9b1f1", size = 556895, upload-time = "2025-08-07T08:25:17.061Z" }, + { url = "https://files.pythonhosted.org/packages/5f/bc/3697c0c21fcb9a54d46ae3b735eb2365eea0c2be076b8f770f98e07998de/rpds_py-0.27.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:fcc01c57ce6e70b728af02b2401c5bc853a9e14eb07deda30624374f0aebfe42", size = 585464, upload-time = "2025-08-07T08:25:18.406Z" }, + { url = "https://files.pythonhosted.org/packages/63/09/ee1bb5536f99f42c839b177d552f6114aa3142d82f49cef49261ed28dbe0/rpds_py-0.27.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3001013dae10f806380ba739d40dee11db1ecb91684febb8406a87c2ded23dae", size = 555090, upload-time = "2025-08-07T08:25:20.461Z" }, + { url = "https://files.pythonhosted.org/packages/7d/2c/363eada9e89f7059199d3724135a86c47082cbf72790d6ba2f336d146ddb/rpds_py-0.27.0-cp314-cp314t-win32.whl", hash = "sha256:0f401c369186a5743694dd9fc08cba66cf70908757552e1f714bfc5219c655b5", size = 218001, upload-time = "2025-08-07T08:25:21.761Z" }, + { url = "https://files.pythonhosted.org/packages/e2/3f/d6c216ed5199c9ef79e2a33955601f454ed1e7420a93b89670133bca5ace/rpds_py-0.27.0-cp314-cp314t-win_amd64.whl", hash = "sha256:8a1dca5507fa1337f75dcd5070218b20bc68cf8844271c923c1b79dfcbc20391", size = 230993, upload-time = "2025-08-07T08:25:23.34Z" }, + { url = "https://files.pythonhosted.org/packages/59/64/72ab5b911fdcc48058359b0e786e5363e3fde885156116026f1a2ba9a5b5/rpds_py-0.27.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e6491658dd2569f05860bad645569145c8626ac231877b0fb2d5f9bcb7054089", size = 371658, upload-time = "2025-08-07T08:26:02.369Z" }, + { url = "https://files.pythonhosted.org/packages/6c/4b/90ff04b4da055db53d8fea57640d8d5d55456343a1ec9a866c0ecfe10fd1/rpds_py-0.27.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:bec77545d188f8bdd29d42bccb9191682a46fb2e655e3d1fb446d47c55ac3b8d", size = 355529, upload-time = "2025-08-07T08:26:03.83Z" }, + { url = "https://files.pythonhosted.org/packages/a4/be/527491fb1afcd86fc5ce5812eb37bc70428ee017d77fee20de18155c3937/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a4aebf8ca02bbb90a9b3e7a463bbf3bee02ab1c446840ca07b1695a68ce424", size = 382822, upload-time = "2025-08-07T08:26:05.52Z" }, + { url = "https://files.pythonhosted.org/packages/e0/a5/dcdb8725ce11e6d0913e6fcf782a13f4b8a517e8acc70946031830b98441/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:44524b96481a4c9b8e6c46d6afe43fa1fb485c261e359fbe32b63ff60e3884d8", size = 397233, upload-time = "2025-08-07T08:26:07.179Z" }, + { url = "https://files.pythonhosted.org/packages/33/f9/0947920d1927e9f144660590cc38cadb0795d78fe0d9aae0ef71c1513b7c/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45d04a73c54b6a5fd2bab91a4b5bc8b426949586e61340e212a8484919183859", size = 514892, upload-time = "2025-08-07T08:26:08.622Z" }, + { url = "https://files.pythonhosted.org/packages/1d/ed/d1343398c1417c68f8daa1afce56ef6ce5cc587daaf98e29347b00a80ff2/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:343cf24de9ed6c728abefc5d5c851d5de06497caa7ac37e5e65dd572921ed1b5", size = 402733, upload-time = "2025-08-07T08:26:10.433Z" }, + { url = "https://files.pythonhosted.org/packages/1d/0b/646f55442cd14014fb64d143428f25667a100f82092c90087b9ea7101c74/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7aed8118ae20515974650d08eb724150dc2e20c2814bcc307089569995e88a14", size = 384447, upload-time = "2025-08-07T08:26:11.847Z" }, + { url = "https://files.pythonhosted.org/packages/4b/15/0596ef7529828e33a6c81ecf5013d1dd33a511a3e0be0561f83079cda227/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:af9d4fd79ee1cc8e7caf693ee02737daabfc0fcf2773ca0a4735b356c8ad6f7c", size = 402502, upload-time = "2025-08-07T08:26:13.537Z" }, + { url = "https://files.pythonhosted.org/packages/c3/8d/986af3c42f8454a6cafff8729d99fb178ae9b08a9816325ac7a8fa57c0c0/rpds_py-0.27.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f0396e894bd1e66c74ecbc08b4f6a03dc331140942c4b1d345dd131b68574a60", size = 416651, upload-time = "2025-08-07T08:26:14.923Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9a/b4ec3629b7b447e896eec574469159b5b60b7781d3711c914748bf32de05/rpds_py-0.27.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:59714ab0a5af25d723d8e9816638faf7f4254234decb7d212715c1aa71eee7be", size = 559460, upload-time = "2025-08-07T08:26:16.295Z" }, + { url = "https://files.pythonhosted.org/packages/61/63/d1e127b40c3e4733b3a6f26ae7a063cdf2bc1caa5272c89075425c7d397a/rpds_py-0.27.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:88051c3b7d5325409f433c5a40328fcb0685fc04e5db49ff936e910901d10114", size = 588072, upload-time = "2025-08-07T08:26:17.776Z" }, + { url = "https://files.pythonhosted.org/packages/04/7e/8ffc71a8f6833d9c9fb999f5b0ee736b8b159fd66968e05c7afc2dbcd57e/rpds_py-0.27.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:181bc29e59e5e5e6e9d63b143ff4d5191224d355e246b5a48c88ce6b35c4e466", size = 555083, upload-time = "2025-08-07T08:26:19.301Z" }, ] [[package]] name = "safetensors" -version = "0.5.3" +version = "0.6.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/71/7e/2d5d6ee7b40c0682315367ec7475693d110f512922d582fef1bd4a63adc3/safetensors-0.5.3.tar.gz", hash = "sha256:b6b0d6ecacec39a4fdd99cc19f4576f5219ce858e6fd8dbe7609df0b8dc56965", size = 67210, upload-time = "2025-02-26T09:15:13.155Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ac/cc/738f3011628920e027a11754d9cae9abec1aed00f7ae860abbf843755233/safetensors-0.6.2.tar.gz", hash = "sha256:43ff2aa0e6fa2dc3ea5524ac7ad93a9839256b8703761e76e2d0b2a3fa4f15d9", size = 197968, upload-time = "2025-08-08T13:13:58.654Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/18/ae/88f6c49dbd0cc4da0e08610019a3c78a7d390879a919411a410a1876d03a/safetensors-0.5.3-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bd20eb133db8ed15b40110b7c00c6df51655a2998132193de2f75f72d99c7073", size = 436917, upload-time = "2025-02-26T09:15:03.702Z" }, - { url = "https://files.pythonhosted.org/packages/b8/3b/11f1b4a2f5d2ab7da34ecc062b0bc301f2be024d110a6466726bec8c055c/safetensors-0.5.3-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:21d01c14ff6c415c485616b8b0bf961c46b3b343ca59110d38d744e577f9cce7", size = 418419, upload-time = "2025-02-26T09:15:01.765Z" }, - { url = "https://files.pythonhosted.org/packages/5d/9a/add3e6fef267658075c5a41573c26d42d80c935cdc992384dfae435feaef/safetensors-0.5.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11bce6164887cd491ca75c2326a113ba934be596e22b28b1742ce27b1d076467", size = 459493, upload-time = "2025-02-26T09:14:51.812Z" }, - { url = "https://files.pythonhosted.org/packages/df/5c/bf2cae92222513cc23b3ff85c4a1bb2811a2c3583ac0f8e8d502751de934/safetensors-0.5.3-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4a243be3590bc3301c821da7a18d87224ef35cbd3e5f5727e4e0728b8172411e", size = 472400, upload-time = "2025-02-26T09:14:53.549Z" }, - { url = "https://files.pythonhosted.org/packages/58/11/7456afb740bd45782d0f4c8e8e1bb9e572f1bf82899fb6ace58af47b4282/safetensors-0.5.3-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8bd84b12b1670a6f8e50f01e28156422a2bc07fb16fc4e98bded13039d688a0d", size = 522891, upload-time = "2025-02-26T09:14:55.717Z" }, - { url = "https://files.pythonhosted.org/packages/57/3d/fe73a9d2ace487e7285f6e157afee2383bd1ddb911b7cb44a55cf812eae3/safetensors-0.5.3-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:391ac8cab7c829452175f871fcaf414aa1e292b5448bd02620f675a7f3e7abb9", size = 537694, upload-time = "2025-02-26T09:14:57.036Z" }, - { url = "https://files.pythonhosted.org/packages/a6/f8/dae3421624fcc87a89d42e1898a798bc7ff72c61f38973a65d60df8f124c/safetensors-0.5.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cead1fa41fc54b1e61089fa57452e8834f798cb1dc7a09ba3524f1eb08e0317a", size = 471642, upload-time = "2025-02-26T09:15:00.544Z" }, - { url = "https://files.pythonhosted.org/packages/ce/20/1fbe16f9b815f6c5a672f5b760951e20e17e43f67f231428f871909a37f6/safetensors-0.5.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1077f3e94182d72618357b04b5ced540ceb71c8a813d3319f1aba448e68a770d", size = 502241, upload-time = "2025-02-26T09:14:58.303Z" }, - { url = "https://files.pythonhosted.org/packages/5f/18/8e108846b506487aa4629fe4116b27db65c3dde922de2c8e0cc1133f3f29/safetensors-0.5.3-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:799021e78287bac619c7b3f3606730a22da4cda27759ddf55d37c8db7511c74b", size = 638001, upload-time = "2025-02-26T09:15:05.79Z" }, - { url = "https://files.pythonhosted.org/packages/82/5a/c116111d8291af6c8c8a8b40628fe833b9db97d8141c2a82359d14d9e078/safetensors-0.5.3-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:df26da01aaac504334644e1b7642fa000bfec820e7cef83aeac4e355e03195ff", size = 734013, upload-time = "2025-02-26T09:15:07.892Z" }, - { url = "https://files.pythonhosted.org/packages/7d/ff/41fcc4d3b7de837963622e8610d998710705bbde9a8a17221d85e5d0baad/safetensors-0.5.3-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:32c3ef2d7af8b9f52ff685ed0bc43913cdcde135089ae322ee576de93eae5135", size = 670687, upload-time = "2025-02-26T09:15:09.979Z" }, - { url = "https://files.pythonhosted.org/packages/40/ad/2b113098e69c985a3d8fbda4b902778eae4a35b7d5188859b4a63d30c161/safetensors-0.5.3-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:37f1521be045e56fc2b54c606d4455573e717b2d887c579ee1dbba5f868ece04", size = 643147, upload-time = "2025-02-26T09:15:11.185Z" }, - { url = "https://files.pythonhosted.org/packages/0a/0c/95aeb51d4246bd9a3242d3d8349c1112b4ee7611a4b40f0c5c93b05f001d/safetensors-0.5.3-cp38-abi3-win32.whl", hash = "sha256:cfc0ec0846dcf6763b0ed3d1846ff36008c6e7290683b61616c4b040f6a54ace", size = 296677, upload-time = "2025-02-26T09:15:16.554Z" }, - { url = "https://files.pythonhosted.org/packages/69/e2/b011c38e5394c4c18fb5500778a55ec43ad6106126e74723ffaee246f56e/safetensors-0.5.3-cp38-abi3-win_amd64.whl", hash = "sha256:836cbbc320b47e80acd40e44c8682db0e8ad7123209f69b093def21ec7cafd11", size = 308878, upload-time = "2025-02-26T09:15:14.99Z" }, + { url = "https://files.pythonhosted.org/packages/4d/b1/3f5fd73c039fc87dba3ff8b5d528bfc5a32b597fea8e7a6a4800343a17c7/safetensors-0.6.2-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:9c85ede8ec58f120bad982ec47746981e210492a6db876882aa021446af8ffba", size = 454797, upload-time = "2025-08-08T13:13:52.066Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c9/bb114c158540ee17907ec470d01980957fdaf87b4aa07914c24eba87b9c6/safetensors-0.6.2-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d6675cf4b39c98dbd7d940598028f3742e0375a6b4d4277e76beb0c35f4b843b", size = 432206, upload-time = "2025-08-08T13:13:50.931Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8e/f70c34e47df3110e8e0bb268d90db8d4be8958a54ab0336c9be4fe86dac8/safetensors-0.6.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d2d2b3ce1e2509c68932ca03ab8f20570920cd9754b05063d4368ee52833ecd", size = 473261, upload-time = "2025-08-08T13:13:41.259Z" }, + { url = "https://files.pythonhosted.org/packages/2a/f5/be9c6a7c7ef773e1996dc214e73485286df1836dbd063e8085ee1976f9cb/safetensors-0.6.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:93de35a18f46b0f5a6a1f9e26d91b442094f2df02e9fd7acf224cfec4238821a", size = 485117, upload-time = "2025-08-08T13:13:43.506Z" }, + { url = "https://files.pythonhosted.org/packages/c9/55/23f2d0a2c96ed8665bf17a30ab4ce5270413f4d74b6d87dd663258b9af31/safetensors-0.6.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:89a89b505f335640f9120fac65ddeb83e40f1fd081cb8ed88b505bdccec8d0a1", size = 616154, upload-time = "2025-08-08T13:13:45.096Z" }, + { url = "https://files.pythonhosted.org/packages/98/c6/affb0bd9ce02aa46e7acddbe087912a04d953d7a4d74b708c91b5806ef3f/safetensors-0.6.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fc4d0d0b937e04bdf2ae6f70cd3ad51328635fe0e6214aa1fc811f3b576b3bda", size = 520713, upload-time = "2025-08-08T13:13:46.25Z" }, + { url = "https://files.pythonhosted.org/packages/fe/5d/5a514d7b88e310c8b146e2404e0dc161282e78634d9358975fd56dfd14be/safetensors-0.6.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8045db2c872db8f4cbe3faa0495932d89c38c899c603f21e9b6486951a5ecb8f", size = 485835, upload-time = "2025-08-08T13:13:49.373Z" }, + { url = "https://files.pythonhosted.org/packages/7a/7b/4fc3b2ba62c352b2071bea9cfbad330fadda70579f617506ae1a2f129cab/safetensors-0.6.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:81e67e8bab9878bb568cffbc5f5e655adb38d2418351dc0859ccac158f753e19", size = 521503, upload-time = "2025-08-08T13:13:47.651Z" }, + { url = "https://files.pythonhosted.org/packages/5a/50/0057e11fe1f3cead9254315a6c106a16dd4b1a19cd247f7cc6414f6b7866/safetensors-0.6.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b0e4d029ab0a0e0e4fdf142b194514695b1d7d3735503ba700cf36d0fc7136ce", size = 652256, upload-time = "2025-08-08T13:13:53.167Z" }, + { url = "https://files.pythonhosted.org/packages/e9/29/473f789e4ac242593ac1656fbece6e1ecd860bb289e635e963667807afe3/safetensors-0.6.2-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:fa48268185c52bfe8771e46325a1e21d317207bcabcb72e65c6e28e9ffeb29c7", size = 747281, upload-time = "2025-08-08T13:13:54.656Z" }, + { url = "https://files.pythonhosted.org/packages/68/52/f7324aad7f2df99e05525c84d352dc217e0fa637a4f603e9f2eedfbe2c67/safetensors-0.6.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:d83c20c12c2d2f465997c51b7ecb00e407e5f94d7dec3ea0cc11d86f60d3fde5", size = 692286, upload-time = "2025-08-08T13:13:55.884Z" }, + { url = "https://files.pythonhosted.org/packages/ad/fe/cad1d9762868c7c5dc70c8620074df28ebb1a8e4c17d4c0cb031889c457e/safetensors-0.6.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:d944cea65fad0ead848b6ec2c37cc0b197194bec228f8020054742190e9312ac", size = 655957, upload-time = "2025-08-08T13:13:57.029Z" }, + { url = "https://files.pythonhosted.org/packages/59/a7/e2158e17bbe57d104f0abbd95dff60dda916cf277c9f9663b4bf9bad8b6e/safetensors-0.6.2-cp38-abi3-win32.whl", hash = "sha256:cab75ca7c064d3911411461151cb69380c9225798a20e712b102edda2542ddb1", size = 308926, upload-time = "2025-08-08T13:14:01.095Z" }, + { url = "https://files.pythonhosted.org/packages/2c/c3/c0be1135726618dc1e28d181b8c442403d8dbb9e273fd791de2d4384bcdd/safetensors-0.6.2-cp38-abi3-win_amd64.whl", hash = "sha256:c7b214870df923cbc1593c3faee16bec59ea462758699bd3fee399d00aac072c", size = 320192, upload-time = "2025-08-08T13:13:59.467Z" }, ] [[package]] @@ -3310,7 +3346,7 @@ wheels = [ [[package]] name = "sentence-transformers" -version = "5.0.0" +version = "5.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "huggingface-hub" }, @@ -3322,9 +3358,9 @@ dependencies = [ { name = "transformers" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/99/69/2a29773b43a24ee04eb26af492d85d520b30a86cfef22a0885e77e9c4a16/sentence_transformers-5.0.0.tar.gz", hash = "sha256:e5a411845910275fd166bacb01d28b7f79537d3550628ae42309dbdd3d5670d1", size = 366847, upload-time = "2025-07-01T13:01:33.04Z" } +sdist = { url = "https://files.pythonhosted.org/packages/46/b8/1b99379b730bc403d8e9ddc2db56f8ac9ce743734b44a1dbeebb900490d4/sentence_transformers-5.1.0.tar.gz", hash = "sha256:70c7630697cc1c64ffca328d6e8688430ebd134b3c2df03dc07cb3a016b04739", size = 370745, upload-time = "2025-08-06T13:48:55.226Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6f/ff/178f08ea5ebc1f9193d9de7f601efe78c01748347875c8438f66f5cecc19/sentence_transformers-5.0.0-py3-none-any.whl", hash = "sha256:346240f9cc6b01af387393f03e103998190dfb0826a399d0c38a81a05c7a5d76", size = 470191, upload-time = "2025-07-01T13:01:31.619Z" }, + { url = "https://files.pythonhosted.org/packages/6d/70/2b5b76e98191ec3b8b0d1dde52d00ddcc3806799149a9ce987b0d2d31015/sentence_transformers-5.1.0-py3-none-any.whl", hash = "sha256:fc803929f6a3ce82e2b2c06e0efed7a36de535c633d5ce55efac0b710ea5643e", size = 483377, upload-time = "2025-08-06T13:48:53.627Z" }, ] [[package]] @@ -3502,32 +3538,32 @@ wheels = [ [[package]] name = "tiktoken" -version = "0.10.0" +version = "0.11.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "regex" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fd/6a/e0f66d5cf612979fec2c18f9069962c73ed51949403967ba0de9ea6859e5/tiktoken-0.10.0.tar.gz", hash = "sha256:7cd88c11699b18081822e6ae1beee55e8f20ea361d73c507d33f5a89a1898f1c", size = 36451, upload-time = "2025-08-05T17:58:07.619Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/ba/d392a2ffa94dbbcf1cd187b70df18f61a96f76d1de9d5d2bc8414b402d05/tiktoken-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:29f55c6b7c9a6a7ea953691c3962ee8fe4ee2f0ceb2a3fded3925acfc45e4b0a", size = 1047150, upload-time = "2025-08-05T17:57:37.459Z" }, - { url = "https://files.pythonhosted.org/packages/98/e0/86b36df9ab5f014ef976f75b000b9daf06c6edff229186e05e56b94f4cdf/tiktoken-0.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f641d0735059b48252c4409d6546b6a62edeb4c4e48306499db11bbe403b872f", size = 988709, upload-time = "2025-08-05T17:57:38.828Z" }, - { url = "https://files.pythonhosted.org/packages/c7/43/24813c6e7db16314229b5cd13bc23719a58401242dd42be2bac3b36516d4/tiktoken-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad76e03676b36c2a5e5304b428cff48eb86a033af55212d41a6ac6faec25b2ad", size = 1120621, upload-time = "2025-08-05T17:57:40.209Z" }, - { url = "https://files.pythonhosted.org/packages/e5/94/fd4156ccc20d4c7986352353385d768307e4c6d8e2502c3d6ee061847474/tiktoken-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6420ecbd4dc4db3b82ca3421f50d1207d750de1a2856e6ca0544294fe58d2853", size = 1175233, upload-time = "2025-08-05T17:57:41.354Z" }, - { url = "https://files.pythonhosted.org/packages/f4/db/32f4b4f1c13f84118924258b7a92c2a20a1d72f974abcdd73c3cd6308983/tiktoken-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d2e032cd44700a9ed511c50b9f302bb9e9e77e2ebf8e2d9b8ec12ce64ebf00c6", size = 1237489, upload-time = "2025-08-05T17:57:42.556Z" }, - { url = "https://files.pythonhosted.org/packages/d1/a4/dc6558ce48a6c339a30a9e532bb5767e0ff511f8f948bca1340f57aa2fea/tiktoken-0.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:eb520960fa1788caf033489e3b63bb675c0f321db40569b2d3ca24d7fab5ca72", size = 876253, upload-time = "2025-08-05T17:57:43.91Z" }, - { url = "https://files.pythonhosted.org/packages/2f/8a/2dad6ea056f88f12602bdbdba19ed1d29a574bb8dbe034af0842eb2ee29f/tiktoken-0.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:25c27021a605b2778af07f84a33fe7c74b5c960a8cfac5d2a7a1075ed592cbe4", size = 1046690, upload-time = "2025-08-05T17:57:45.213Z" }, - { url = "https://files.pythonhosted.org/packages/84/88/b0ec9383e7126f7cf033971dac81c4dea0954607db8c2fbfe109061bf730/tiktoken-0.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:45d654f049b4f7ed617ad0c66462c15cc41e5db120f37f122d5b57ffa2aec062", size = 988269, upload-time = "2025-08-05T17:57:46.645Z" }, - { url = "https://files.pythonhosted.org/packages/28/83/ed1900dd68890c891f55ded1f760f7878c5e16c8c68e576145105d66aa63/tiktoken-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34f73d93641b9cc73e19b18dbf9ce1baf086f1c4e18cfa36b952956843bca23c", size = 1118515, upload-time = "2025-08-05T17:57:48.043Z" }, - { url = "https://files.pythonhosted.org/packages/9a/a8/84ad6c23cfd51d2c39ba1bfbc70b6208c6be3e5cd15132a9d11cc93bfdd5/tiktoken-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fbfc5dda624c0f85c56bbf8f2ffb42964c798fc6fc1c321a452bf31d4ba21f5", size = 1174193, upload-time = "2025-08-05T17:57:49.486Z" }, - { url = "https://files.pythonhosted.org/packages/7b/b5/7be4c78a10566ae068d88788a6fdf3a8b1162e7f78997999c46c919cdb69/tiktoken-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:853671af10636b581d632fe7b64b755301c73bc1f2ce837a8cdd9a44ab51f846", size = 1235834, upload-time = "2025-08-05T17:57:50.503Z" }, - { url = "https://files.pythonhosted.org/packages/55/da/a0e90c85f36bd21ef4dbe881f9e259403c6fd6287841ff3691c1d2a5baab/tiktoken-0.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:56c4e7544be63c78265c82857b9f2a4e2190ae29541fe3467708fc7aabcb1522", size = 875661, upload-time = "2025-08-05T17:57:52.091Z" }, - { url = "https://files.pythonhosted.org/packages/1a/44/03c259d8df262181f0efab0159373435284f1074adf966418663879023e1/tiktoken-0.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:10e779827ddb0490a415d09d95f8e7a982fd8e14f88c4c2348358f722af3c415", size = 1046536, upload-time = "2025-08-05T17:57:53.162Z" }, - { url = "https://files.pythonhosted.org/packages/e3/16/98ee535d30f7abf528ac25e78d67171cc2dfc1366d762cf79eb0dcc9054d/tiktoken-0.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:783892cdbec0d33f0f51373d8969e059ab1244af531a52338f702131a032a116", size = 987947, upload-time = "2025-08-05T17:57:54.266Z" }, - { url = "https://files.pythonhosted.org/packages/2f/bd/c3847b55e4fd6c6ab89ab75d258c725c67890734a4e58e28315ae2208ee1/tiktoken-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:43f38d62b6a62a7c82be3770fcdc24cdf5bff3bdf718909d038b804ac774a025", size = 1118091, upload-time = "2025-08-05T17:57:55.383Z" }, - { url = "https://files.pythonhosted.org/packages/8c/07/9a2c6e1d1ef138f79a6c943bf1c7c7e7cc159e2b7fbbe6ce5d176f963232/tiktoken-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72d0b30e08f1e856fa76ee423a3d3f0b1bc984cb6e86a21dbd7c5eee8f67f8f5", size = 1174129, upload-time = "2025-08-05T17:57:56.739Z" }, - { url = "https://files.pythonhosted.org/packages/ba/4f/ae9e36e43c0abbeb631b848697b22662cca5dbbe90a1b692b5c0ceda0fac/tiktoken-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa840eba09a0c1db0b436baf6cfe1ab7906f33fb663cf96f772a818bad5856a6", size = 1236097, upload-time = "2025-08-05T17:57:58.007Z" }, - { url = "https://files.pythonhosted.org/packages/10/74/c6f69e46f98e42d6727853e4017d6287b57075905ff715fae0f35fa53173/tiktoken-0.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:642b8d9f266004629ea2457aa29a9eed4f1a031fd804f8c489edbf32df7026c3", size = 876020, upload-time = "2025-08-05T17:57:59.52Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/a7/86/ad0155a37c4f310935d5ac0b1ccf9bdb635dcb906e0a9a26b616dd55825a/tiktoken-0.11.0.tar.gz", hash = "sha256:3c518641aee1c52247c2b97e74d8d07d780092af79d5911a6ab5e79359d9b06a", size = 37648, upload-time = "2025-08-08T23:58:08.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/91/912b459799a025d2842566fe1e902f7f50d54a1ce8a0f236ab36b5bd5846/tiktoken-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:4ae374c46afadad0f501046db3da1b36cd4dfbfa52af23c998773682446097cf", size = 1059743, upload-time = "2025-08-08T23:57:37.516Z" }, + { url = "https://files.pythonhosted.org/packages/8c/e9/6faa6870489ce64f5f75dcf91512bf35af5864583aee8fcb0dcb593121f5/tiktoken-0.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:25a512ff25dc6c85b58f5dd4f3d8c674dc05f96b02d66cdacf628d26a4e4866b", size = 999334, upload-time = "2025-08-08T23:57:38.595Z" }, + { url = "https://files.pythonhosted.org/packages/a1/3e/a05d1547cf7db9dc75d1461cfa7b556a3b48e0516ec29dfc81d984a145f6/tiktoken-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2130127471e293d385179c1f3f9cd445070c0772be73cdafb7cec9a3684c0458", size = 1129402, upload-time = "2025-08-08T23:57:39.627Z" }, + { url = "https://files.pythonhosted.org/packages/34/9a/db7a86b829e05a01fd4daa492086f708e0a8b53952e1dbc9d380d2b03677/tiktoken-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21e43022bf2c33f733ea9b54f6a3f6b4354b909f5a73388fb1b9347ca54a069c", size = 1184046, upload-time = "2025-08-08T23:57:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/9d/bb/52edc8e078cf062ed749248f1454e9e5cfd09979baadb830b3940e522015/tiktoken-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:adb4e308eb64380dc70fa30493e21c93475eaa11669dea313b6bbf8210bfd013", size = 1244691, upload-time = "2025-08-08T23:57:42.251Z" }, + { url = "https://files.pythonhosted.org/packages/60/d9/884b6cd7ae2570ecdcaffa02b528522b18fef1cbbfdbcaa73799807d0d3b/tiktoken-0.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:ece6b76bfeeb61a125c44bbefdfccc279b5288e6007fbedc0d32bfec602df2f2", size = 884392, upload-time = "2025-08-08T23:57:43.628Z" }, + { url = "https://files.pythonhosted.org/packages/e7/9e/eceddeffc169fc75fe0fd4f38471309f11cb1906f9b8aa39be4f5817df65/tiktoken-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fd9e6b23e860973cf9526544e220b223c60badf5b62e80a33509d6d40e6c8f5d", size = 1055199, upload-time = "2025-08-08T23:57:45.076Z" }, + { url = "https://files.pythonhosted.org/packages/4f/cf/5f02bfefffdc6b54e5094d2897bc80efd43050e5b09b576fd85936ee54bf/tiktoken-0.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6a76d53cee2da71ee2731c9caa747398762bda19d7f92665e882fef229cb0b5b", size = 996655, upload-time = "2025-08-08T23:57:46.304Z" }, + { url = "https://files.pythonhosted.org/packages/65/8e/c769b45ef379bc360c9978c4f6914c79fd432400a6733a8afc7ed7b0726a/tiktoken-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ef72aab3ea240646e642413cb363b73869fed4e604dcfd69eec63dc54d603e8", size = 1128867, upload-time = "2025-08-08T23:57:47.438Z" }, + { url = "https://files.pythonhosted.org/packages/d5/2d/4d77f6feb9292bfdd23d5813e442b3bba883f42d0ac78ef5fdc56873f756/tiktoken-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f929255c705efec7a28bf515e29dc74220b2f07544a8c81b8d69e8efc4578bd", size = 1183308, upload-time = "2025-08-08T23:57:48.566Z" }, + { url = "https://files.pythonhosted.org/packages/7a/65/7ff0a65d3bb0fc5a1fb6cc71b03e0f6e71a68c5eea230d1ff1ba3fd6df49/tiktoken-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61f1d15822e4404953d499fd1dcc62817a12ae9fb1e4898033ec8fe3915fdf8e", size = 1244301, upload-time = "2025-08-08T23:57:49.642Z" }, + { url = "https://files.pythonhosted.org/packages/f5/6e/5b71578799b72e5bdcef206a214c3ce860d999d579a3b56e74a6c8989ee2/tiktoken-0.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:45927a71ab6643dfd3ef57d515a5db3d199137adf551f66453be098502838b0f", size = 884282, upload-time = "2025-08-08T23:57:50.759Z" }, + { url = "https://files.pythonhosted.org/packages/cc/cd/a9034bcee638716d9310443818d73c6387a6a96db93cbcb0819b77f5b206/tiktoken-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a5f3f25ffb152ee7fec78e90a5e5ea5b03b4ea240beed03305615847f7a6ace2", size = 1055339, upload-time = "2025-08-08T23:57:51.802Z" }, + { url = "https://files.pythonhosted.org/packages/f1/91/9922b345f611b4e92581f234e64e9661e1c524875c8eadd513c4b2088472/tiktoken-0.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7dc6e9ad16a2a75b4c4be7208055a1f707c9510541d94d9cc31f7fbdc8db41d8", size = 997080, upload-time = "2025-08-08T23:57:53.442Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9d/49cd047c71336bc4b4af460ac213ec1c457da67712bde59b892e84f1859f/tiktoken-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a0517634d67a8a48fd4a4ad73930c3022629a85a217d256a6e9b8b47439d1e4", size = 1128501, upload-time = "2025-08-08T23:57:54.808Z" }, + { url = "https://files.pythonhosted.org/packages/52/d5/a0dcdb40dd2ea357e83cb36258967f0ae96f5dd40c722d6e382ceee6bba9/tiktoken-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fb4effe60574675118b73c6fbfd3b5868e5d7a1f570d6cc0d18724b09ecf318", size = 1182743, upload-time = "2025-08-08T23:57:56.307Z" }, + { url = "https://files.pythonhosted.org/packages/3b/17/a0fc51aefb66b7b5261ca1314afa83df0106b033f783f9a7bcbe8e741494/tiktoken-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:94f984c9831fd32688aef4348803b0905d4ae9c432303087bae370dc1381a2b8", size = 1244057, upload-time = "2025-08-08T23:57:57.628Z" }, + { url = "https://files.pythonhosted.org/packages/50/79/bcf350609f3a10f09fe4fc207f132085e497fdd3612f3925ab24d86a0ca0/tiktoken-0.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:2177ffda31dec4023356a441793fed82f7af5291120751dee4d696414f54db0c", size = 883901, upload-time = "2025-08-08T23:57:59.359Z" }, ] [[package]] @@ -3575,7 +3611,7 @@ wheels = [ [[package]] name = "torch" -version = "2.7.1" +version = "2.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, @@ -3602,41 +3638,41 @@ dependencies = [ { name = "typing-extensions" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/11/56/2eae3494e3d375533034a8e8cf0ba163363e996d85f0629441fa9d9843fe/torch-2.7.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:236f501f2e383f1cb861337bdf057712182f910f10aeaf509065d54d339e49b2", size = 99093039, upload-time = "2025-06-04T17:39:06.963Z" }, - { url = "https://files.pythonhosted.org/packages/e5/94/34b80bd172d0072c9979708ccd279c2da2f55c3ef318eceec276ab9544a4/torch-2.7.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:06eea61f859436622e78dd0cdd51dbc8f8c6d76917a9cf0555a333f9eac31ec1", size = 821174704, upload-time = "2025-06-04T17:37:03.799Z" }, - { url = "https://files.pythonhosted.org/packages/50/9e/acf04ff375b0b49a45511c55d188bcea5c942da2aaf293096676110086d1/torch-2.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:8273145a2e0a3c6f9fd2ac36762d6ee89c26d430e612b95a99885df083b04e52", size = 216095937, upload-time = "2025-06-04T17:39:24.83Z" }, - { url = "https://files.pythonhosted.org/packages/5b/2b/d36d57c66ff031f93b4fa432e86802f84991477e522adcdffd314454326b/torch-2.7.1-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:aea4fc1bf433d12843eb2c6b2204861f43d8364597697074c8d38ae2507f8730", size = 68640034, upload-time = "2025-06-04T17:39:17.989Z" }, - { url = "https://files.pythonhosted.org/packages/87/93/fb505a5022a2e908d81fe9a5e0aa84c86c0d5f408173be71c6018836f34e/torch-2.7.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:27ea1e518df4c9de73af7e8a720770f3628e7f667280bce2be7a16292697e3fa", size = 98948276, upload-time = "2025-06-04T17:39:12.852Z" }, - { url = "https://files.pythonhosted.org/packages/56/7e/67c3fe2b8c33f40af06326a3d6ae7776b3e3a01daa8f71d125d78594d874/torch-2.7.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:c33360cfc2edd976c2633b3b66c769bdcbbf0e0b6550606d188431c81e7dd1fc", size = 821025792, upload-time = "2025-06-04T17:34:58.747Z" }, - { url = "https://files.pythonhosted.org/packages/a1/37/a37495502bc7a23bf34f89584fa5a78e25bae7b8da513bc1b8f97afb7009/torch-2.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:d8bf6e1856ddd1807e79dc57e54d3335f2b62e6f316ed13ed3ecfe1fc1df3d8b", size = 216050349, upload-time = "2025-06-04T17:38:59.709Z" }, - { url = "https://files.pythonhosted.org/packages/3a/60/04b77281c730bb13460628e518c52721257814ac6c298acd25757f6a175c/torch-2.7.1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:787687087412c4bd68d315e39bc1223f08aae1d16a9e9771d95eabbb04ae98fb", size = 68645146, upload-time = "2025-06-04T17:38:52.97Z" }, - { url = "https://files.pythonhosted.org/packages/66/81/e48c9edb655ee8eb8c2a6026abdb6f8d2146abd1f150979ede807bb75dcb/torch-2.7.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:03563603d931e70722dce0e11999d53aa80a375a3d78e6b39b9f6805ea0a8d28", size = 98946649, upload-time = "2025-06-04T17:38:43.031Z" }, - { url = "https://files.pythonhosted.org/packages/3a/24/efe2f520d75274fc06b695c616415a1e8a1021d87a13c68ff9dce733d088/torch-2.7.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:d632f5417b6980f61404a125b999ca6ebd0b8b4bbdbb5fbbba44374ab619a412", size = 821033192, upload-time = "2025-06-04T17:38:09.146Z" }, - { url = "https://files.pythonhosted.org/packages/dd/d9/9c24d230333ff4e9b6807274f6f8d52a864210b52ec794c5def7925f4495/torch-2.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:23660443e13995ee93e3d844786701ea4ca69f337027b05182f5ba053ce43b38", size = 216055668, upload-time = "2025-06-04T17:38:36.253Z" }, - { url = "https://files.pythonhosted.org/packages/95/bf/e086ee36ddcef9299f6e708d3b6c8487c1651787bb9ee2939eb2a7f74911/torch-2.7.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:0da4f4dba9f65d0d203794e619fe7ca3247a55ffdcbd17ae8fb83c8b2dc9b585", size = 68925988, upload-time = "2025-06-04T17:38:29.273Z" }, - { url = "https://files.pythonhosted.org/packages/69/6a/67090dcfe1cf9048448b31555af6efb149f7afa0a310a366adbdada32105/torch-2.7.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:e08d7e6f21a617fe38eeb46dd2213ded43f27c072e9165dc27300c9ef9570934", size = 99028857, upload-time = "2025-06-04T17:37:50.956Z" }, - { url = "https://files.pythonhosted.org/packages/90/1c/48b988870823d1cc381f15ec4e70ed3d65e043f43f919329b0045ae83529/torch-2.7.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:30207f672328a42df4f2174b8f426f354b2baa0b7cca3a0adb3d6ab5daf00dc8", size = 821098066, upload-time = "2025-06-04T17:37:33.939Z" }, - { url = "https://files.pythonhosted.org/packages/7b/eb/10050d61c9d5140c5dc04a89ed3257ef1a6b93e49dd91b95363d757071e0/torch-2.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:79042feca1c634aaf6603fe6feea8c6b30dfa140a6bbc0b973e2260c7e79a22e", size = 216336310, upload-time = "2025-06-04T17:36:09.862Z" }, - { url = "https://files.pythonhosted.org/packages/b1/29/beb45cdf5c4fc3ebe282bf5eafc8dfd925ead7299b3c97491900fe5ed844/torch-2.7.1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:988b0cbc4333618a1056d2ebad9eb10089637b659eb645434d0809d8d937b946", size = 68645708, upload-time = "2025-06-04T17:34:39.852Z" }, + { url = "https://files.pythonhosted.org/packages/8f/c4/3e7a3887eba14e815e614db70b3b529112d1513d9dae6f4d43e373360b7f/torch-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:220a06fd7af8b653c35d359dfe1aaf32f65aa85befa342629f716acb134b9710", size = 102073391, upload-time = "2025-08-06T14:53:20.937Z" }, + { url = "https://files.pythonhosted.org/packages/5a/63/4fdc45a0304536e75a5e1b1bbfb1b56dd0e2743c48ee83ca729f7ce44162/torch-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c12fa219f51a933d5f80eeb3a7a5d0cbe9168c0a14bbb4055f1979431660879b", size = 888063640, upload-time = "2025-08-06T14:55:05.325Z" }, + { url = "https://files.pythonhosted.org/packages/84/57/2f64161769610cf6b1c5ed782bd8a780e18a3c9d48931319f2887fa9d0b1/torch-2.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:8c7ef765e27551b2fbfc0f41bcf270e1292d9bf79f8e0724848b1682be6e80aa", size = 241366752, upload-time = "2025-08-06T14:53:38.692Z" }, + { url = "https://files.pythonhosted.org/packages/a4/5e/05a5c46085d9b97e928f3f037081d3d2b87fb4b4195030fc099aaec5effc/torch-2.8.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:5ae0524688fb6707c57a530c2325e13bb0090b745ba7b4a2cd6a3ce262572916", size = 73621174, upload-time = "2025-08-06T14:53:25.44Z" }, + { url = "https://files.pythonhosted.org/packages/49/0c/2fd4df0d83a495bb5e54dca4474c4ec5f9c62db185421563deeb5dabf609/torch-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e2fab4153768d433f8ed9279c8133a114a034a61e77a3a104dcdf54388838705", size = 101906089, upload-time = "2025-08-06T14:53:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/99/a8/6acf48d48838fb8fe480597d98a0668c2beb02ee4755cc136de92a0a956f/torch-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2aca0939fb7e4d842561febbd4ffda67a8e958ff725c1c27e244e85e982173c", size = 887913624, upload-time = "2025-08-06T14:56:44.33Z" }, + { url = "https://files.pythonhosted.org/packages/af/8a/5c87f08e3abd825c7dfecef5a0f1d9aa5df5dd0e3fd1fa2f490a8e512402/torch-2.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:2f4ac52f0130275d7517b03a33d2493bab3693c83dcfadf4f81688ea82147d2e", size = 241326087, upload-time = "2025-08-06T14:53:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/be/66/5c9a321b325aaecb92d4d1855421e3a055abd77903b7dab6575ca07796db/torch-2.8.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:619c2869db3ada2c0105487ba21b5008defcc472d23f8b80ed91ac4a380283b0", size = 73630478, upload-time = "2025-08-06T14:53:57.144Z" }, + { url = "https://files.pythonhosted.org/packages/10/4e/469ced5a0603245d6a19a556e9053300033f9c5baccf43a3d25ba73e189e/torch-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2b2f96814e0345f5a5aed9bf9734efa913678ed19caf6dc2cddb7930672d6128", size = 101936856, upload-time = "2025-08-06T14:54:01.526Z" }, + { url = "https://files.pythonhosted.org/packages/16/82/3948e54c01b2109238357c6f86242e6ecbf0c63a1af46906772902f82057/torch-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:65616ca8ec6f43245e1f5f296603e33923f4c30f93d65e103d9e50c25b35150b", size = 887922844, upload-time = "2025-08-06T14:55:50.78Z" }, + { url = "https://files.pythonhosted.org/packages/e3/54/941ea0a860f2717d86a811adf0c2cd01b3983bdd460d0803053c4e0b8649/torch-2.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:659df54119ae03e83a800addc125856effda88b016dfc54d9f65215c3975be16", size = 241330968, upload-time = "2025-08-06T14:54:45.293Z" }, + { url = "https://files.pythonhosted.org/packages/de/69/8b7b13bba430f5e21d77708b616f767683629fc4f8037564a177d20f90ed/torch-2.8.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:1a62a1ec4b0498930e2543535cf70b1bef8c777713de7ceb84cd79115f553767", size = 73915128, upload-time = "2025-08-06T14:54:34.769Z" }, + { url = "https://files.pythonhosted.org/packages/15/0e/8a800e093b7f7430dbaefa80075aee9158ec22e4c4fc3c1a66e4fb96cb4f/torch-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:83c13411a26fac3d101fe8035a6b0476ae606deb8688e904e796a3534c197def", size = 102020139, upload-time = "2025-08-06T14:54:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/4a/15/5e488ca0bc6162c86a33b58642bc577c84ded17c7b72d97e49b5833e2d73/torch-2.8.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:8f0a9d617a66509ded240add3754e462430a6c1fc5589f86c17b433dd808f97a", size = 887990692, upload-time = "2025-08-06T14:56:18.286Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a8/6a04e4b54472fc5dba7ca2341ab219e529f3c07b6941059fbf18dccac31f/torch-2.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a7242b86f42be98ac674b88a4988643b9bc6145437ec8f048fea23f72feb5eca", size = 241603453, upload-time = "2025-08-06T14:55:22.945Z" }, + { url = "https://files.pythonhosted.org/packages/04/6e/650bb7f28f771af0cb791b02348db8b7f5f64f40f6829ee82aa6ce99aabe/torch-2.8.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:7b677e17f5a3e69fdef7eb3b9da72622f8d322692930297e4ccb52fefc6c8211", size = 73632395, upload-time = "2025-08-06T14:55:28.645Z" }, ] [[package]] name = "tornado" -version = "6.5.1" +version = "6.5.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/51/89/c72771c81d25d53fe33e3dca61c233b665b2780f21820ba6fd2c6793c12b/tornado-6.5.1.tar.gz", hash = "sha256:84ceece391e8eb9b2b95578db65e920d2a61070260594819589609ba9bc6308c", size = 509934, upload-time = "2025-05-22T18:15:38.788Z" } +sdist = { url = "https://files.pythonhosted.org/packages/09/ce/1eb500eae19f4648281bb2186927bb062d2438c2e5093d1360391afd2f90/tornado-6.5.2.tar.gz", hash = "sha256:ab53c8f9a0fa351e2c0741284e06c7a45da86afb544133201c5cc8578eb076a0", size = 510821, upload-time = "2025-08-08T18:27:00.78Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/89/f4532dee6843c9e0ebc4e28d4be04c67f54f60813e4bf73d595fe7567452/tornado-6.5.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d50065ba7fd11d3bd41bcad0825227cc9a95154bad83239357094c36708001f7", size = 441948, upload-time = "2025-05-22T18:15:20.862Z" }, - { url = "https://files.pythonhosted.org/packages/15/9a/557406b62cffa395d18772e0cdcf03bed2fff03b374677348eef9f6a3792/tornado-6.5.1-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9e9ca370f717997cb85606d074b0e5b247282cf5e2e1611568b8821afe0342d6", size = 440112, upload-time = "2025-05-22T18:15:22.591Z" }, - { url = "https://files.pythonhosted.org/packages/55/82/7721b7319013a3cf881f4dffa4f60ceff07b31b394e459984e7a36dc99ec/tornado-6.5.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b77e9dfa7ed69754a54c89d82ef746398be82f749df69c4d3abe75c4d1ff4888", size = 443672, upload-time = "2025-05-22T18:15:24.027Z" }, - { url = "https://files.pythonhosted.org/packages/7d/42/d11c4376e7d101171b94e03cef0cbce43e823ed6567ceda571f54cf6e3ce/tornado-6.5.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:253b76040ee3bab8bcf7ba9feb136436a3787208717a1fb9f2c16b744fba7331", size = 443019, upload-time = "2025-05-22T18:15:25.735Z" }, - { url = "https://files.pythonhosted.org/packages/7d/f7/0c48ba992d875521ac761e6e04b0a1750f8150ae42ea26df1852d6a98942/tornado-6.5.1-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:308473f4cc5a76227157cdf904de33ac268af770b2c5f05ca6c1161d82fdd95e", size = 443252, upload-time = "2025-05-22T18:15:27.499Z" }, - { url = "https://files.pythonhosted.org/packages/89/46/d8d7413d11987e316df4ad42e16023cd62666a3c0dfa1518ffa30b8df06c/tornado-6.5.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:caec6314ce8a81cf69bd89909f4b633b9f523834dc1a352021775d45e51d9401", size = 443930, upload-time = "2025-05-22T18:15:29.299Z" }, - { url = "https://files.pythonhosted.org/packages/78/b2/f8049221c96a06df89bed68260e8ca94beca5ea532ffc63b1175ad31f9cc/tornado-6.5.1-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:13ce6e3396c24e2808774741331638ee6c2f50b114b97a55c5b442df65fd9692", size = 443351, upload-time = "2025-05-22T18:15:31.038Z" }, - { url = "https://files.pythonhosted.org/packages/76/ff/6a0079e65b326cc222a54720a748e04a4db246870c4da54ece4577bfa702/tornado-6.5.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5cae6145f4cdf5ab24744526cc0f55a17d76f02c98f4cff9daa08ae9a217448a", size = 443328, upload-time = "2025-05-22T18:15:32.426Z" }, - { url = "https://files.pythonhosted.org/packages/49/18/e3f902a1d21f14035b5bc6246a8c0f51e0eef562ace3a2cea403c1fb7021/tornado-6.5.1-cp39-abi3-win32.whl", hash = "sha256:e0a36e1bc684dca10b1aa75a31df8bdfed656831489bc1e6a6ebed05dc1ec365", size = 444396, upload-time = "2025-05-22T18:15:34.205Z" }, - { url = "https://files.pythonhosted.org/packages/7b/09/6526e32bf1049ee7de3bebba81572673b19a2a8541f795d887e92af1a8bc/tornado-6.5.1-cp39-abi3-win_amd64.whl", hash = "sha256:908e7d64567cecd4c2b458075589a775063453aeb1d2a1853eedb806922f568b", size = 444840, upload-time = "2025-05-22T18:15:36.1Z" }, - { url = "https://files.pythonhosted.org/packages/55/a7/535c44c7bea4578e48281d83c615219f3ab19e6abc67625ef637c73987be/tornado-6.5.1-cp39-abi3-win_arm64.whl", hash = "sha256:02420a0eb7bf617257b9935e2b754d1b63897525d8a289c9d65690d580b4dcf7", size = 443596, upload-time = "2025-05-22T18:15:37.433Z" }, + { url = "https://files.pythonhosted.org/packages/f6/48/6a7529df2c9cc12efd2e8f5dd219516184d703b34c06786809670df5b3bd/tornado-6.5.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:2436822940d37cde62771cff8774f4f00b3c8024fe482e16ca8387b8a2724db6", size = 442563, upload-time = "2025-08-08T18:26:42.945Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b5/9b575a0ed3e50b00c40b08cbce82eb618229091d09f6d14bce80fc01cb0b/tornado-6.5.2-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:583a52c7aa94ee046854ba81d9ebb6c81ec0fd30386d96f7640c96dad45a03ef", size = 440729, upload-time = "2025-08-08T18:26:44.473Z" }, + { url = "https://files.pythonhosted.org/packages/1b/4e/619174f52b120efcf23633c817fd3fed867c30bff785e2cd5a53a70e483c/tornado-6.5.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0fe179f28d597deab2842b86ed4060deec7388f1fd9c1b4a41adf8af058907e", size = 444295, upload-time = "2025-08-08T18:26:46.021Z" }, + { url = "https://files.pythonhosted.org/packages/95/fa/87b41709552bbd393c85dd18e4e3499dcd8983f66e7972926db8d96aa065/tornado-6.5.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b186e85d1e3536d69583d2298423744740986018e393d0321df7340e71898882", size = 443644, upload-time = "2025-08-08T18:26:47.625Z" }, + { url = "https://files.pythonhosted.org/packages/f9/41/fb15f06e33d7430ca89420283a8762a4e6b8025b800ea51796ab5e6d9559/tornado-6.5.2-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e792706668c87709709c18b353da1f7662317b563ff69f00bab83595940c7108", size = 443878, upload-time = "2025-08-08T18:26:50.599Z" }, + { url = "https://files.pythonhosted.org/packages/11/92/fe6d57da897776ad2e01e279170ea8ae726755b045fe5ac73b75357a5a3f/tornado-6.5.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:06ceb1300fd70cb20e43b1ad8aaee0266e69e7ced38fa910ad2e03285009ce7c", size = 444549, upload-time = "2025-08-08T18:26:51.864Z" }, + { url = "https://files.pythonhosted.org/packages/9b/02/c8f4f6c9204526daf3d760f4aa555a7a33ad0e60843eac025ccfd6ff4a93/tornado-6.5.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:74db443e0f5251be86cbf37929f84d8c20c27a355dd452a5cfa2aada0d001ec4", size = 443973, upload-time = "2025-08-08T18:26:53.625Z" }, + { url = "https://files.pythonhosted.org/packages/ae/2d/f5f5707b655ce2317190183868cd0f6822a1121b4baeae509ceb9590d0bd/tornado-6.5.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b5e735ab2889d7ed33b32a459cac490eda71a1ba6857b0118de476ab6c366c04", size = 443954, upload-time = "2025-08-08T18:26:55.072Z" }, + { url = "https://files.pythonhosted.org/packages/e8/59/593bd0f40f7355806bf6573b47b8c22f8e1374c9b6fd03114bd6b7a3dcfd/tornado-6.5.2-cp39-abi3-win32.whl", hash = "sha256:c6f29e94d9b37a95013bb669616352ddb82e3bfe8326fccee50583caebc8a5f0", size = 445023, upload-time = "2025-08-08T18:26:56.677Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2a/f609b420c2f564a748a2d80ebfb2ee02a73ca80223af712fca591386cafb/tornado-6.5.2-cp39-abi3-win_amd64.whl", hash = "sha256:e56a5af51cc30dd2cae649429af65ca2f6571da29504a07995175df14c18f35f", size = 445427, upload-time = "2025-08-08T18:26:57.91Z" }, + { url = "https://files.pythonhosted.org/packages/5e/4f/e1f65e8f8c76d73658b33d33b81eed4322fb5085350e4328d5c956f0c8f9/tornado-6.5.2-cp39-abi3-win_arm64.whl", hash = "sha256:d6c33dc3672e3a1f3618eb63b7ef4683a7688e7b9e6e8f0d9aa5726360a004af", size = 444456, upload-time = "2025-08-08T18:26:59.207Z" }, ] [[package]] @@ -3683,16 +3719,16 @@ wheels = [ [[package]] name = "triton" -version = "3.3.1" +version = "3.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "setuptools" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/21/2f/3e56ea7b58f80ff68899b1dbe810ff257c9d177d288c6b0f55bf2fe4eb50/triton-3.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b31e3aa26f8cb3cc5bf4e187bf737cbacf17311e1112b781d4a059353dfd731b", size = 155689937, upload-time = "2025-05-29T23:39:44.182Z" }, - { url = "https://files.pythonhosted.org/packages/24/5f/950fb373bf9c01ad4eb5a8cd5eaf32cdf9e238c02f9293557a2129b9c4ac/triton-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9999e83aba21e1a78c1f36f21bce621b77bcaa530277a50484a7cb4a822f6e43", size = 155669138, upload-time = "2025-05-29T23:39:51.771Z" }, - { url = "https://files.pythonhosted.org/packages/74/1f/dfb531f90a2d367d914adfee771babbd3f1a5b26c3f5fbc458dee21daa78/triton-3.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b89d846b5a4198317fec27a5d3a609ea96b6d557ff44b56c23176546023c4240", size = 155673035, upload-time = "2025-05-29T23:40:02.468Z" }, - { url = "https://files.pythonhosted.org/packages/28/71/bd20ffcb7a64c753dc2463489a61bf69d531f308e390ad06390268c4ea04/triton-3.3.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3198adb9d78b77818a5388bff89fa72ff36f9da0bc689db2f0a651a67ce6a42", size = 155735832, upload-time = "2025-05-29T23:40:10.522Z" }, + { url = "https://files.pythonhosted.org/packages/7d/39/43325b3b651d50187e591eefa22e236b2981afcebaefd4f2fc0ea99df191/triton-3.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b70f5e6a41e52e48cfc087436c8a28c17ff98db369447bcaff3b887a3ab4467", size = 155531138, upload-time = "2025-07-30T19:58:29.908Z" }, + { url = "https://files.pythonhosted.org/packages/d0/66/b1eb52839f563623d185f0927eb3530ee4d5ffe9d377cdaf5346b306689e/triton-3.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31c1d84a5c0ec2c0f8e8a072d7fd150cab84a9c239eaddc6706c081bfae4eb04", size = 155560068, upload-time = "2025-07-30T19:58:37.081Z" }, + { url = "https://files.pythonhosted.org/packages/30/7b/0a685684ed5322d2af0bddefed7906674f67974aa88b0fae6e82e3b766f6/triton-3.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00be2964616f4c619193cb0d1b29a99bd4b001d7dc333816073f92cf2a8ccdeb", size = 155569223, upload-time = "2025-07-30T19:58:44.017Z" }, + { url = "https://files.pythonhosted.org/packages/20/63/8cb444ad5cdb25d999b7d647abac25af0ee37d292afc009940c05b82dda0/triton-3.4.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7936b18a3499ed62059414d7df563e6c163c5e16c3773678a3ee3d417865035d", size = 155659780, upload-time = "2025-07-30T19:58:51.171Z" }, ] [[package]] @@ -3766,7 +3802,7 @@ wheels = [ [[package]] name = "usearch" -version = "2.19.1" +version = "2.19.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, @@ -3774,42 +3810,42 @@ dependencies = [ { name = "tqdm" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/f7/a1/6b38e916c39ef6e975a0dcda72c489c1239fa4b01e056e5b121a4aef8a20/usearch-2.19.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:20314eff7febfb5ff1d779bf3c5220596fc113eebff9af73de0ccdc8493bf449", size = 767364, upload-time = "2025-07-11T19:44:15.361Z" }, - { url = "https://files.pythonhosted.org/packages/ab/48/f49e1121da423b8ecf32b556eeb72924b325682f9f57a5505a9fd8d7f6ce/usearch-2.19.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fe42af4d0315828445e821679936a208e332d646fd7d8cd2d7df171ee331ac6d", size = 413256, upload-time = "2025-07-11T19:44:17.558Z" }, - { url = "https://files.pythonhosted.org/packages/74/f4/978c7d54fb064d83cee242e2d9f6125b9db1faf94295bea16ec2082a6697/usearch-2.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eb0caf7c95f54134b0c6b05fede94bbaeacc47abd6a0bd79bd363d71438da8ab", size = 397311, upload-time = "2025-07-11T19:44:19.747Z" }, - { url = "https://files.pythonhosted.org/packages/40/28/4866e4d51145cf554c87be29bbc87e05bb4c33844ea83c76262c12fe6761/usearch-2.19.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbb99b88030ebf94f0191c8d442a631e9795c9755860093117eac51b6541fae3", size = 1924178, upload-time = "2025-07-11T19:44:21.227Z" }, - { url = "https://files.pythonhosted.org/packages/a2/59/ce5ec57474853c2d18970e92b362977b9f9e81610eaf9f4cc98f50789dbe/usearch-2.19.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1d711a9a2379bc098c2b7c10a2afe8f81a71d1aae4b74cb8ea0faec46c667643", size = 2125991, upload-time = "2025-07-11T19:44:25.302Z" }, - { url = "https://files.pythonhosted.org/packages/47/70/6493e371d4ce4e577bd95cf4b2b9f82de8c02c39e36094e143733f1ab4a2/usearch-2.19.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5ed858b3ad6e4078173d234e31e9e8ee106ff1765e1bdf0b0332bb8fd72d8729", size = 1982663, upload-time = "2025-07-11T19:44:26.846Z" }, - { url = "https://files.pythonhosted.org/packages/6b/f3/bdf0c622b65382e2ed6fa0953507848481fe573de8f818153d9f699dd045/usearch-2.19.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:12791fd81d41d235eb287f20c5d46e5e848fac0eb25b14e88b27462327b9cace", size = 2082500, upload-time = "2025-07-11T19:44:28.461Z" }, - { url = "https://files.pythonhosted.org/packages/9a/fb/010da797d7fe61ce068e3fddb4d2d49e197d8c0f447952b7552e56555a63/usearch-2.19.1-cp311-cp311-win_amd64.whl", hash = "sha256:26a540737a8f6e36a3643736ce6ece60be7bc5beebafff06231a2de5cdf5eece", size = 297863, upload-time = "2025-07-11T19:44:30.403Z" }, - { url = "https://files.pythonhosted.org/packages/36/71/2d52c480fdd2b8234e2205a639192ca193568ac6d3279e2df87f3c2d19b8/usearch-2.19.1-cp311-cp311-win_arm64.whl", hash = "sha256:ce1775c7d4c4877d6682b21a504d287be0acd3d6979ea7659cce7318ba2ee800", size = 293380, upload-time = "2025-07-11T19:44:32.195Z" }, - { url = "https://files.pythonhosted.org/packages/8d/57/bd89d8eed864c1344fc597f4471548a8a3c8eb85bdb79ff525f4f447f272/usearch-2.19.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4827d3b41471c6c07539dac709a934ec59cf92076fa10e0eba887061a9209b9e", size = 777082, upload-time = "2025-07-11T19:44:39.411Z" }, - { url = "https://files.pythonhosted.org/packages/f1/94/56099c980a8c62fa020f750c47282ffb09bcb2ab16dda322b00e17460956/usearch-2.19.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1779a6a77255cde9a95497e22bc13a1a9a65200174d983f705e42977251f3b72", size = 420288, upload-time = "2025-07-11T19:44:41.441Z" }, - { url = "https://files.pythonhosted.org/packages/93/94/af54f58d672450d83895b849b818582f1caaaece2b9befd8d5569c862dc4/usearch-2.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f66e0c3677a5c51add470d5c26d2fb4537a7d690d7421875c704dc2990811902", size = 399927, upload-time = "2025-07-11T19:44:43.497Z" }, - { url = "https://files.pythonhosted.org/packages/70/e5/ecd1d15ce6a77de0eec13e3e48607967ea1f8400b979592175cc80e44489/usearch-2.19.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:69b066c872ebbd39d7def9a9ed4611d704de77aebde4e08f76507a77b3ee5d09", size = 1934461, upload-time = "2025-07-11T19:44:45.022Z" }, - { url = "https://files.pythonhosted.org/packages/68/6a/13b6d2d8198c0ef248dad3c14b9b0f58018b525be8588e17c314b4d718c3/usearch-2.19.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e1306a5ca007bd723612f269e7063c54a6394fe3f35be787cc6529f87921a9e", size = 2140230, upload-time = "2025-07-11T19:44:46.742Z" }, - { url = "https://files.pythonhosted.org/packages/43/f6/b87fff4543efff3215de97c9e1827705288fb3e6405c16eaf865c949be19/usearch-2.19.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:82a16852ad76f41187ad588d772f0d5ec48b584c1fe1827ecd94bd468941b192", size = 1990910, upload-time = "2025-07-11T19:44:48.265Z" }, - { url = "https://files.pythonhosted.org/packages/2e/8e/43fdf53b3ae9a5d22f29960ddb55af5e52064ed45f0352c4dce77ae95bfb/usearch-2.19.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c35d243af2f09c21e7d88cc13850bd1e0060999c4a09811971dff6dc3cc6da38", size = 2094858, upload-time = "2025-07-11T19:44:49.782Z" }, - { url = "https://files.pythonhosted.org/packages/c9/ab/b5de54ee2903728781a0053ecd150f38602542722ea789599edd882dfcda/usearch-2.19.1-cp312-cp312-win_amd64.whl", hash = "sha256:f26b89855c9fac6c6d7da3135c28e7d4b7eb54ab533563b6fe9472ebb0281925", size = 300069, upload-time = "2025-07-11T19:44:51.482Z" }, - { url = "https://files.pythonhosted.org/packages/ed/73/abe720026ed1d51f6cc4eeb4afec8fc11ab7331acbd164ed33dd1d2701f3/usearch-2.19.1-cp312-cp312-win_arm64.whl", hash = "sha256:693eccf9885828231febff3319747badd12ab18ea438a618cfdc1b7ae7186135", size = 293878, upload-time = "2025-07-11T19:44:52.956Z" }, - { url = "https://files.pythonhosted.org/packages/ae/b1/3f296f8b1c361c430abe733a64e2659c62122b4a4bd1316f5dff2385ac77/usearch-2.19.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8546f4787e3d2ad345aaf6dc7022c46b6a526df84694a2707676d3a43dd27428", size = 777417, upload-time = "2025-07-11T19:44:54.564Z" }, - { url = "https://files.pythonhosted.org/packages/3d/4f/c9d31714820233d31cf017c9d804db9f888498d981c59ccc05a4dd7e971f/usearch-2.19.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4b5d53fd3e90e535e0566afa7ba4cda02098810cc7ec7be24760fb1cf691ebbc", size = 420372, upload-time = "2025-07-11T19:44:56.132Z" }, - { url = "https://files.pythonhosted.org/packages/a0/ba/c44bb80346b7897f2055ab0399d48e45e53e7aa17ecc6b4dd0db8042762e/usearch-2.19.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:375103f06909a0d8df9973f25e73ffd4f66e1fc9b6079746a95bf09a1fce9102", size = 399954, upload-time = "2025-07-11T19:44:57.783Z" }, - { url = "https://files.pythonhosted.org/packages/7e/00/1539fbfb9c4d21b5886a4b0786003621e565a64ed26a1deca91f1a0fc7dd/usearch-2.19.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c933202c23f824b7fd597129d29dec0685878798b78e517783edeed37bad2697", size = 1934927, upload-time = "2025-07-11T19:44:59.373Z" }, - { url = "https://files.pythonhosted.org/packages/88/4e/7594ba795ccb1f0133150045e9ca68ae7ac712ed4a639ef12cbb708c34d1/usearch-2.19.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7bdbf86ed2e5a3bd9137062b5d7c1d0e3d4fd8175372d7bbec6148c50577449e", size = 2141682, upload-time = "2025-07-11T19:45:01.057Z" }, - { url = "https://files.pythonhosted.org/packages/62/b2/e77058953d9ac00d8b983b820a5a995763afc347906153307559d27eb607/usearch-2.19.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4729a9f0f9460aab27d5d55af84eea99734ef661057d7755651105e5d7c98acf", size = 1991425, upload-time = "2025-07-11T19:45:02.633Z" }, - { url = "https://files.pythonhosted.org/packages/35/01/8271c311b8f145648f10a8c72bf9435b3ea0c0131db11118e809aa340207/usearch-2.19.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b9bd17065e962b5d53cc06b7465b5dbd7e7711148bec7947013a8c4d16d40225", size = 2096530, upload-time = "2025-07-11T19:45:04.322Z" }, - { url = "https://files.pythonhosted.org/packages/49/b5/3dff5e9a2bfa70556065a5b9686471cdc8949d72808c126ae49f61ec695d/usearch-2.19.1-cp313-cp313-win_amd64.whl", hash = "sha256:2f93997dd3ccf9efc109d904a90dc40bf673bfed72fee40895a471ebe5b9ef5e", size = 300188, upload-time = "2025-07-11T19:45:05.759Z" }, - { url = "https://files.pythonhosted.org/packages/47/24/f7066eace6ce1d91f20f858cd3ea411e6f8cff420ad773ef8a9648105cd3/usearch-2.19.1-cp313-cp313-win_arm64.whl", hash = "sha256:dda1e3dba54078d05346df37f17b5c0157c0af85688c9594e1816da369742bb4", size = 293885, upload-time = "2025-07-11T19:45:07.588Z" }, - { url = "https://files.pythonhosted.org/packages/0a/af/787757006f3bfd774e6122f6071d79f0bdb9b3b31b7078a51c0ffaacfc04/usearch-2.19.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b10febca2d0c4ee52010a9ff8cc75abcf78a564f4bfb676e3f798a3c72d05423", size = 810462, upload-time = "2025-07-11T19:45:09.081Z" }, - { url = "https://files.pythonhosted.org/packages/d5/d5/8f5ecd2c6869c9231d16907dad8ceccfa6390cfcb86f6bb385f60a257346/usearch-2.19.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d69b7114bb98f5af94d670e2d434aed9af846df0abca84eba47c184362ff5e33", size = 435312, upload-time = "2025-07-11T19:45:10.677Z" }, - { url = "https://files.pythonhosted.org/packages/47/e1/cb238cadeafb38a2b8e0e047d34b8398e2321d22aef75ba8f5a9b3e4cc4c/usearch-2.19.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:82ee9ae5df035aeb1fc688e519b8a8ba74aa0442a792c4d30cecc0a067680678", size = 418408, upload-time = "2025-07-11T19:45:12.066Z" }, - { url = "https://files.pythonhosted.org/packages/bd/f4/bb989ffaa4c1224a76c0df075c68a7d51122b4cdbb774ebd48608ba056f3/usearch-2.19.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7c6ecc16b3ff7af64e085efcb4bfdea43ddc32d385fb3dd1cd2bf9773a9f6b6e", size = 1946056, upload-time = "2025-07-11T19:45:13.7Z" }, - { url = "https://files.pythonhosted.org/packages/3c/fb/f4174802f6d59f5d342e4f9ddd60ae98a71242cd70388e296ed18be3d553/usearch-2.19.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a43cde13b85773011b66a617f36d976b5b50fb946500ae0ed628513d799203da", size = 2154743, upload-time = "2025-07-11T19:45:15.755Z" }, - { url = "https://files.pythonhosted.org/packages/7f/27/580d7d745b8c365011043bebb4c60a840986636778877631db6044da4a65/usearch-2.19.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:7ee86a5cd9c564336321f2deb469d38b1e3870ccdd76dbe6c14b4b49f3952cfd", size = 2004153, upload-time = "2025-07-11T19:45:17.31Z" }, - { url = "https://files.pythonhosted.org/packages/da/45/c5bb38cf69e03e5d859aa4ebfb3793df2087dd0d707c026614b0bd58ac6c/usearch-2.19.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6cad97c0ea452b84676a2c4e95634eaee3b97279e4fae8947c50d45f47b893d2", size = 2110273, upload-time = "2025-07-11T19:45:19.045Z" }, - { url = "https://files.pythonhosted.org/packages/82/6b/fd57a70a490e330d83a4f800979cfd0660927d0517f2e2b5813dd6da31c6/usearch-2.19.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a76b5df5ffffa329287371b2d826b753908951d5bfd652d36d7b02e04d9a9fff", size = 315161, upload-time = "2025-07-11T19:45:20.929Z" }, - { url = "https://files.pythonhosted.org/packages/d1/5a/f52af0450856ed1c6bfe3387072dc9c996fd5ab668ba6a342b4f38cc6198/usearch-2.19.1-cp313-cp313t-win_arm64.whl", hash = "sha256:3e2c4aa3936967fe94568aa7c5833d5ff6c01b9ad3e446a8f87dd6c2941b5841", size = 304001, upload-time = "2025-07-11T19:45:22.712Z" }, + { url = "https://files.pythonhosted.org/packages/bd/6b/4cd3bc7f4cc8758130d6bb8de6248cc760107192a266c310d10040bd3c1f/usearch-2.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fae9c0a29d6b4019bece999a47c0a835935a87dd1b0b2f6366275c2fde64ff1a", size = 767354, upload-time = "2025-08-08T19:40:20.369Z" }, + { url = "https://files.pythonhosted.org/packages/00/53/f8aa8f63cf7090e50a5c2917881b8f883549b32e16c3cb24a6fe0e7d9cae/usearch-2.19.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fd08124001209e1b6e44cf45131940cbfa0b483e5c5c62c688610c11c23f53cd", size = 413286, upload-time = "2025-08-08T19:40:21.957Z" }, + { url = "https://files.pythonhosted.org/packages/e5/35/36c970a9e6afe21dd09aba2d400ea6e17eac7ae08e72aa1135f65e371be3/usearch-2.19.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8c7bc673644b47f4c809f4f8f595cb3e2816561eff1059bbdecdcff3b44f92a3", size = 397343, upload-time = "2025-08-08T19:40:23.837Z" }, + { url = "https://files.pythonhosted.org/packages/dc/42/2bbd491c3c78605c9062dc473a118c56865c7f3f86a9bd7a2e23a409867c/usearch-2.19.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e40f7405333a56079e858c5778a3d5e2ad36588b78a618b71739386af7d2c63", size = 1924382, upload-time = "2025-08-08T19:40:26.021Z" }, + { url = "https://files.pythonhosted.org/packages/f7/1e/4e099cace5cb3a6dcdac1c2c94085bbd01ed37b34dd6b22f3491ab786fc5/usearch-2.19.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f1430b068c2a4eac196a002f966b216d02b20547f2afce64494a1b45183712d", size = 2126212, upload-time = "2025-08-08T19:40:28.32Z" }, + { url = "https://files.pythonhosted.org/packages/51/5d/d61f60cdd42d5a4f37ab6ba7fabbe14389d5316262906f9d3d3e93cceab1/usearch-2.19.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:903fd8319b891c5b009e8c02fd88a4040041f6d5eddda59ab00abe03eda83a9b", size = 1982576, upload-time = "2025-08-08T19:40:30.381Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e8/27e65b90efdea247e6a44ee419d5bcd5d9aa39e708c45a226dd82d8ddc8a/usearch-2.19.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:679e5d704a73ba58fd689455a574600a28a2568fcb995411275eed60e435b208", size = 2082590, upload-time = "2025-08-08T19:40:32.409Z" }, + { url = "https://files.pythonhosted.org/packages/30/51/b2421498f62c466579907d57d427c2f434274e939da5607077d8a9eff942/usearch-2.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:b443fe03ca929d82b7401dc60ad387f4dd2f120516d773436f347ac1c4502e06", size = 298141, upload-time = "2025-08-08T19:40:34.023Z" }, + { url = "https://files.pythonhosted.org/packages/29/59/1bb03cd8c2b451a2c70f582934946578bfd2ffc0d03da1b1811ffdeb36a5/usearch-2.19.3-cp311-cp311-win_arm64.whl", hash = "sha256:876bebd70a6096a28f24a6dcdf9d8a1db80cf690fbae62b7ecf26c6884c478d5", size = 293449, upload-time = "2025-08-08T19:40:35.506Z" }, + { url = "https://files.pythonhosted.org/packages/e1/6d/f353b617e36673af6c03c043eeb24586d9bf90e3d921bdd2fc92908b4452/usearch-2.19.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b587dc8d729aacd8d8bedd450f3139af8fe986439ccd8b4301c0f316b4ebb766", size = 777396, upload-time = "2025-08-08T19:40:37.203Z" }, + { url = "https://files.pythonhosted.org/packages/73/1f/17c009a74707003ce0df58050bac00e7c7913ba8b50879a7f596114a1fb6/usearch-2.19.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2340a73d1afe9bed204778a4e0011dd25b35fc82e5da439a00f474d006202151", size = 420384, upload-time = "2025-08-08T19:40:38.68Z" }, + { url = "https://files.pythonhosted.org/packages/e3/10/d5ca0b9041cc418c71c8604680f4ba3aae8e853d4e419843e3d29694b5a6/usearch-2.19.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d7e799e05dfe8825704985142a3cd59c07807b9f6ee4e28dc5167bf38dc4bb2f", size = 399976, upload-time = "2025-08-08T19:40:40.267Z" }, + { url = "https://files.pythonhosted.org/packages/0f/2a/93f484cbe9c6159b16321f69e5dd5d54c716174d416c353c775ea89f71b7/usearch-2.19.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7b2a8d69fc72544e2ce83287e0b43e4aa8788efc69319726eb0b48fb4381057e", size = 1934702, upload-time = "2025-08-08T19:40:42.451Z" }, + { url = "https://files.pythonhosted.org/packages/3b/5d/777fbbcaa8f01b2a86dd551b4235f83604883700a9b7808cdf7427491bf8/usearch-2.19.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2d89fd5ac867c55862e45094cce11107c9a92e2baf6ca45d7b85e2c7a32d1a1b", size = 2140974, upload-time = "2025-08-08T19:40:44.299Z" }, + { url = "https://files.pythonhosted.org/packages/da/e3/05dcb120c65db0b17b6bd38b5d607ec2b982927c97543deff5f3627881a2/usearch-2.19.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:449e633c54265d5747aa1e27224dc5a2c313655fda2c377af1734ee31068c452", size = 1991513, upload-time = "2025-08-08T19:40:46.447Z" }, + { url = "https://files.pythonhosted.org/packages/fe/c7/0129e778587553603457c859693f00bc2b7197b85899235c92cd8392a8e8/usearch-2.19.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:da4205d60452a458257e5cc5843394f7511621662e655b8a990ae2273fa0bfb9", size = 2095039, upload-time = "2025-08-08T19:40:48.296Z" }, + { url = "https://files.pythonhosted.org/packages/6f/58/048b7bedb5652598eac8da8d3067a7ac0fbff3a7d07302284acc22386bc1/usearch-2.19.3-cp312-cp312-win_amd64.whl", hash = "sha256:d5e02ca224a04d9b7682a66aa7042d27665ef4c288df6f97f3336e0d493dd2e9", size = 300166, upload-time = "2025-08-08T19:40:49.734Z" }, + { url = "https://files.pythonhosted.org/packages/fd/4a/66ffc5d53ced37c50ac1945dda0592bdaad3e797fe0baf0e85f48b9c929d/usearch-2.19.3-cp312-cp312-win_arm64.whl", hash = "sha256:653650d12d79e498cb3e9722ec1e6b0c9aa20e613167347ca0e9881d5315b180", size = 293942, upload-time = "2025-08-08T19:40:51.286Z" }, + { url = "https://files.pythonhosted.org/packages/bb/91/7d1a0b418fd2b8159b32157b6f8f5a7718c3628ec6bbff53a55a9c9f0811/usearch-2.19.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:eec3884caed064bd8fc488ea9c631ff390b2cde7e5846597a0982e059733bafe", size = 777750, upload-time = "2025-08-08T19:40:53.246Z" }, + { url = "https://files.pythonhosted.org/packages/bb/1b/0844f3540dd0230f85e169b64a452f96c7b00df922b431fc9519d4f3b253/usearch-2.19.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bca277183a1590ffd07092c0d677b854ad6d2dbf07d465cc0b928f8461ceafea", size = 420502, upload-time = "2025-08-08T19:40:54.78Z" }, + { url = "https://files.pythonhosted.org/packages/d6/3e/7a2295a93289f4eed460b4ec7ef04f7b50e1789998e9a502ea11a8a12f46/usearch-2.19.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7263aa4005754dbf3c034476d8bcc4059e4a59882ac7b830b556262c977d4946", size = 399986, upload-time = "2025-08-08T19:40:56.383Z" }, + { url = "https://files.pythonhosted.org/packages/73/fc/38f569686657937bfaa0a46decb72553a15a45485df85e88e6e0acfd6ee2/usearch-2.19.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0a925ae223e4be775bf4dad17b59e99850e6c644fbaa6720d5671620fac67490", size = 1935413, upload-time = "2025-08-08T19:40:58.113Z" }, + { url = "https://files.pythonhosted.org/packages/66/8c/d1ca31731e29b232e7e26362ebc5b091a4d1ae95e9b9f4f263852ac7b0c0/usearch-2.19.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc335be2bc442e89bf5fb533f94f6affb1900d5593e001603e1855a3165582f8", size = 2142573, upload-time = "2025-08-08T19:40:59.95Z" }, + { url = "https://files.pythonhosted.org/packages/3a/9e/cf6ff6d30ee6eecf1f68aeaa630ee0606d7322b923e1ceee54e44432b60b/usearch-2.19.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ad8ab5fa2ebf3bb15b1ba191f9847a78bd539657c5bae1f14b3458d1efd94232", size = 1991952, upload-time = "2025-08-08T19:41:01.771Z" }, + { url = "https://files.pythonhosted.org/packages/be/d0/7b59bc951af6bb098ea33dacd1f36fa4794e9a849530e874f04fc2e725b7/usearch-2.19.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:557319a2f9090f4b3c5e2b1aaf19003bc2a8c18ae849f119fff0fc5feba5efdb", size = 2095640, upload-time = "2025-08-08T19:41:04.015Z" }, + { url = "https://files.pythonhosted.org/packages/a2/ec/cb25cd5fa4b2b8199dfc6dd81ec8009626f9c33cca95376b286e5a12a369/usearch-2.19.3-cp313-cp313-win_amd64.whl", hash = "sha256:a668a79a75338a4e236a781135b72f685a572fea9025307278f88e745ffdcf81", size = 300207, upload-time = "2025-08-08T19:41:05.668Z" }, + { url = "https://files.pythonhosted.org/packages/23/de/2a9e54a7a93258eb776f4f9b1e5c41eed50330976e8ad6dabfec7a755d2a/usearch-2.19.3-cp313-cp313-win_arm64.whl", hash = "sha256:f9a167ba4621f1b5d65a5608ecab9cf67858d6bdd3364e28362a1cae7e25f8e6", size = 293945, upload-time = "2025-08-08T19:41:07.223Z" }, + { url = "https://files.pythonhosted.org/packages/10/be/9c37a4d121083439b369dbc438a6c990dcb799c6c1c6c8c1bf63a751dbca/usearch-2.19.3-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:0f14faf8e5d724124ed195e8224be2e40fde92593381a29e6643d8b6efa2a64b", size = 810716, upload-time = "2025-08-08T19:41:08.984Z" }, + { url = "https://files.pythonhosted.org/packages/f0/49/3f4d5d657d2d13f4345f5687b53acfebcd5d7065613755bb6976133c5c45/usearch-2.19.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:72e2d7bc2b23e1b13a1e97220c82f2146128df1ce26551fbec6a12e81945eeef", size = 435365, upload-time = "2025-08-08T19:41:11.442Z" }, + { url = "https://files.pythonhosted.org/packages/06/9c/b86be894540cd8ae1219f32070745ad2924b2a441ddbca073cb515a2e2af/usearch-2.19.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e09efc51d3b634c3f3e42ab61fb857d665ff36606591d3e61df25a86c59473fd", size = 418564, upload-time = "2025-08-08T19:41:13.067Z" }, + { url = "https://files.pythonhosted.org/packages/50/87/83e9671121f69b57b545b416996a330925286ca306dcb5d9d0057ab52307/usearch-2.19.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:43c3650e7a884c27ad9570e0ed978ae8fe88404521631e79c884dd0080b128c0", size = 1946245, upload-time = "2025-08-08T19:41:15.146Z" }, + { url = "https://files.pythonhosted.org/packages/5d/5e/55449d95bfedf1f7b49934d9b19ae4629394f4fe4d92a4eba08b0da5bfd7/usearch-2.19.3-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6d56b156640143e10c45cf46fbe6bbff31f781e13e95f9e484a116a6b24761c0", size = 2155255, upload-time = "2025-08-08T19:41:17.064Z" }, + { url = "https://files.pythonhosted.org/packages/e5/36/67b0049287b650991cc814470c010f55931c028c1cd66096edd49d181ffa/usearch-2.19.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:afbc45403a66ab68a0d28cae8c49d0988372ced3ac9a18144e47f07ef56bcf4f", size = 2003657, upload-time = "2025-08-08T19:41:18.892Z" }, + { url = "https://files.pythonhosted.org/packages/fd/f6/75f9ce122d7ad8912e664d3a821ca64d42c4fbbce511b8b6bea9c425c59a/usearch-2.19.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d83f1ef87a3a536a6d54259779f6a48befb7c86dab7c210cd245bd78a0766966", size = 2109148, upload-time = "2025-08-08T19:41:20.912Z" }, + { url = "https://files.pythonhosted.org/packages/f0/b2/07f9e5ae5b5c68abf5c1f146a05ad9d83bf96ac0fd0a8871e1f729a46d38/usearch-2.19.3-cp313-cp313t-win_amd64.whl", hash = "sha256:97ad4eed829706fc6eeb83f732ab746c7a774877f281083586515a3e4a75dace", size = 315241, upload-time = "2025-08-08T19:41:23.032Z" }, + { url = "https://files.pythonhosted.org/packages/05/18/8fb90dbcf77b1fc120b39d1291e896fc43809998784a22dee14e755019a9/usearch-2.19.3-cp313-cp313t-win_arm64.whl", hash = "sha256:fbd040df493e8fe676e18e9a365c0921647fab701908d549da2936109a09b061", size = 304037, upload-time = "2025-08-08T19:41:24.707Z" }, ] [[package]]